0
votes
0answers
25 views

Bitshifting by negative Value results in the Opposite Shift!! Anywhere Defined in Some Document

I found a way this should be a optimized way. But it should be buggy too. In a way its not portable for Arm (could be ?). So in Gcc (3.4.4) I found that Left shifting a number by a negative value is ...
0
votes
1answer
42 views

Execution Error : Part of C code compiled but not being executed properly in ECM

I am working on ECM (using gcc compiler we generate the hex file and flash it on controller) There is a code x=(a+b)/2, what ever the value of a and b, but the value in x is always zero. I have a ...
-1
votes
2answers
81 views

gcc -O3 flag causes warnings that -O2 doesn't

I'm building a fairly complex application, which built without any errors/warnings with -O0. However when I tried -O3, I got a couple of them which are puzzling. For example: 1: static pinfo_t* ...
0
votes
1answer
45 views

Intel and GNU C compilers contradict themselves w.r.t vectorisation

In class, we were given a simple loop we were supposed to vectorize. This went well enough, but we came across a curious thing. Consider this code: #include<stdio.h> void func(int N, double ...
3
votes
1answer
55 views

Any performance difference between sinf(), cosf() and sin(), cos()

I have code that works mainly with single-precision floating point numbers. Calls to transcendental functions occur fairly often. Right now, I'm using sin(), cos(), sqrt(), etc--functions that accept ...
3
votes
3answers
58 views

Compiler define, redirect function to different name

When using the edk2 (UEFI), functions like memcpy and memset are not available, but they have functions CopyMem and SetMem. Normally that is not too much of a problem, but sometimes the compiler does ...
3
votes
3answers
155 views

Optimization of subsequent calls to integer division and modulo (remainder)

Integer division / and modulo % operations are often used together in programming, sometimes even on the same operands and in subsequent lines. For example, the following C function, which is a simple ...
7
votes
5answers
130 views

Is the compiler allowed to optimize the stack memory usage by reordering local variables?

Consider the following program: #include <stdio.h> void some_func(char*, int*, char*); void stack_alignment(void) { char a = '-'; int i = 1337; char b = '+'; some_func(&a, ...
3
votes
1answer
78 views

Get GCC To Use Carry Logic For Arbitrary Precision Arithmetic Without Inline Assembly?

When working with arbitrary precision arithmetic (e.g. 512-bit integers), is there any way to get GCC to use ADC and similar instructions without using inline assembly? A first glance at GMP's ...
2
votes
1answer
119 views

How can I get GCC to vectorize this simple copy loop with SSE instructions?

This is a follow up to this question about getting GCC to optimize memcpy() in a loop; I've given up and decided to go the direct route of optimizing the loop manually. I'm trying to stay as portable ...
26
votes
3answers
592 views

Forcing GCC to perform loop unswitching of memcpy runtime size checks?

Is there any reliable way to force GCC (or any compiler) to factor out runtime size checks in memcpy() outside of a loop (where that size is not compile-time constant, but constant within that loop), ...
1
vote
2answers
57 views

Compiler -march flag benchmark?

does -march flag in compilers (for example: gcc) really matters? would it be faster if i compile all my programs and kernel using -march=my_architecture instead of -march=i686
1
vote
3answers
95 views

Optimization: .cpp or .obj/.o or .lib/.a

I have this chuck of code that could be placed in a separate library but I'm unsure how that will affect the compiler's ability to optimize. Option 1: include the code directly in the projects and ...
6
votes
2answers
79 views

Dumping registers in stack for conservative stack scanning

I'm writing a non-invasive conservative GC in C and I'm having some concerns about the correctness of its stack scanning phase. Specifically, with no compiler optimizations enabled, it works fine ...
0
votes
4answers
78 views

Is redundant assignment elimination fairly typical optimization?

Given the following: len = strlen(str); /* code that does not read from len */ len = new_len; Can I depend on the compiler to remove the first line? I'm writing a code generating script. The ...
2
votes
2answers
160 views

Will compiler optimize out unused arguments of static function?

I have a group of functions that are all declared static and fastcall. Most of them make use of a pointer to a struct that serves more or less the role of this in C++. Some of the functions don't need ...
3
votes
2answers
99 views

Volatile and compiler optimization

Is it OK to say that 'volatile' keyword makes no difference if the compiler optimization is turned off i.e (gcc -o0 ....)? I had made some sample 'C' program and seeing the difference between ...
2
votes
1answer
114 views

Do compilers have certain optimization heuristics to support branch prediction? If not, why not?

This question is mostly a follow up after reading this article by Aater Suleman on improving branch prediction from the software side. The author provides a way to "unroll" conditional statements such ...
4
votes
1answer
404 views

GCC -Wuninitialized / -Wmaybe-uninitialized issues

I am experiencing a very strange issue using gcc-4.7 (Ubuntu/Linaro 4.7.2-11precise2) 4.7.2. I am unable to compile the following valid code without a warning: extern void dostuff(void); int ...
1
vote
2answers
78 views

Looking for a macro that can manipulate the compiler's optimization feature

Is there a way to mark a block of code or a function as an excluded part of the compiler's optimization feature? I have a bug that occur only when the optimization feature is on. I have some guesses ...
1
vote
0answers
104 views

G++ makes smaller binary than GCC after C++ compatibility changes, but slightly larger than the prior binary?

I made some changes to a C codebase so that it could compile under G++. Seems to be working, with some annoyances and the hack of -fpermissive -fshort-wchar. Out of curiosity I compared the stripped ...
6
votes
2answers
195 views

Are floating point operations in c associative?

Take for example, addition, which mathematically holds the associative property: (a + b) + c = a + (b + c) Now, in the general case, this property does not hold for floating-point numbers because ...
0
votes
2answers
137 views

calling functions in C [closed]

My question is particulary to function calls in C. So, either we can call functions normally or through function pointers. When your interface remainas the same but with different implementations, ...
1
vote
4answers
205 views

Small C Code Optimizations (Hacks): Useless in today? [closed]

20 years ago, there was (almost) no any compilers optimizations. So, we started to use some hacks, such as: Use pointers, not array indexes. Don't use small functions (such as swap()), use macros or ...
5
votes
1answer
152 views

Regarding optimization for 'not a statment' in c?

While Learning compiler Optimisation, I write codes in C under Linux with GCC version gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5.1) To understant not a statement (nop) in C. I written two codes ...
6
votes
3answers
114 views

When consolidating duplicate literals, will a C compiler look in the middle of a string?

I have a lot of literal strings in my source code that are otherwise identical except for leading white-spaces (due to a desire to maintain correct indentation). Are compilers smart enough to see that ...
19
votes
7answers
1k views

Optimization of C code

For an assignment of a course called High Performance Computing, I required to optimize the following code fragment: int foobar(int a, int b, int N) { int i, j, k, x, y; x = 0; y = 0; ...
2
votes
2answers
86 views

gcc builds with -o but not -o3?

My Makefile looks like this: CC=gcc CFLAGS=-Wall -Wextra -std=c99 -pedantic OBJECTS=main.o Scene.o Matrix.o Vector.o Triangle.o Color.o Raster.o render: $(OBJECTS) $(CC) $(CFLAGS) -lm -o render ...
1
vote
1answer
160 views

Persuading the compiler to set registers outside a loop

Firstly, I will prefix this by saying I don't think it is necessary to understand the functioning of the code below to make a sensible attempt to solve my problem. This is primarily an optimisation ...
36
votes
7answers
2k views

Why doesn't a compiler optimize floating-point *2 into an exponent increment?

I've often noticed gcc converting multiplications into shifts in the executable. Something similar might happen when multiplying an int and a float. For example, 2 * f, might simply increment the ...
0
votes
2answers
504 views

Value optimized out in GDB: Can gdb handle decoding it automatically?

1) First I want to know, how to decode such variables ? I know the solutions to this problem, remove optimization flag, make it volatile, I dont want to do all that. Is there any solution which can ...
3
votes
3answers
157 views

Compiler Optimization: const on non-pointer function arguments in C

Modern compilers can optimize code when they see a const. However, I've never seen the C standard library use const for its non-pointer arguments. For example memcmp() is an example of this. It has 2 ...
8
votes
2answers
241 views

strange integer behavior with gcc -O2

#include <stdio.h> #include <limits.h> void sanity_check(int x) { if (x < 0) { x = -x; } if (x == INT_MIN) { printf("%d == %d\n", x, INT_MIN); } ...
1
vote
1answer
103 views

Wrong results with icc -fast flag

Now I'm using icc to compile and run my ANSI C code. When I turn on -O2 optimize, everything is ok. But when I change to -fast, the results diverge (with lots of nan). I googled and tried, and found ...
0
votes
1answer
90 views

Optimizing for conveyor execution

In Conveyor architecture before execution instructions, they are broken down into smaller ones. So they run much faster. But before instruction executed the whole, is not possible to execute the ...
3
votes
1answer
234 views

Why does this code cause a Floating point exception - SIGFPE

Using gcc 4.7: $ gcc --version gcc (GCC) 4.7.0 20120505 (prerelease) Code listing (test.c): #include <stdint.h> struct test { int before; char start[0]; unsigned int v1; ...
4
votes
4answers
159 views

restrict keyword - optimization and aliasing implications

I came across these two sections in C11 standard referring to the restrict qualifier: 1# 6.7.3-8 An object that is accessed through a restrict-qualified pointer has a special association ...
3
votes
2answers
231 views

Why does gcc add this movss instruction only with _mm_set_ss?

Consider these two functions using SSE: #include <xmmintrin.h> int ftrunc1(float f) { return _mm_cvttss_si32(_mm_set1_ps(f)); } int ftrunc2(float f) { return ...
3
votes
3answers
110 views

Need help optimizing function call

I'm trying to implement an image processing function. Here it is: typedef void (*AgFilter)(int*, int*, int*, float*); static void filter(AndroidBitmapInfo* info, void* pixels, AgFilter func, void* ...
18
votes
2answers
447 views

float to double conversion: why so many instructions?

I'm curious if someone can shed some light on this for me. I'm working on some numeric data conversion stuff, and I've got several functions that do data conversions, which I define using two macros: ...
30
votes
4answers
792 views

GCC: vectorization difference between two similar loops

When compiling with gcc -O3, why does the following loop not vectorize (automatically): #define SIZE (65536) int a[SIZE], b[SIZE], c[SIZE]; int foo () { int i, j; for (i=0; i<SIZE; i++){ ...
8
votes
4answers
570 views

How to deal with branch prediction when using a switch case in CPU emulation

I recently read the question here Why is processing a sorted array faster than an unsorted array? and found the answer to be absolutely fascinating and it has completely changed my outlook on ...
1
vote
3answers
307 views

What is the specific GCC flag that turns on immediate value propagation for inline assembly parameters?

Consider the following x86 code example: #include <stdlib.h> static int i; static inline __attribute__((always_inline)) test(int x) { asm volatile("mov %1, %0" : "=r"(i): "i"(x)); } int ...
1
vote
2answers
215 views

Code can stop working with compiler optimization [closed]

I'm using the PellesC C compiler. Sometimes my code randomly stops working. A particular statement can trigger it. For example, I multiplied a variable by sin(c) (c is a double) and my code seemed to ...
20
votes
5answers
936 views

Why can't (or doesn't) the compiler optimize a predictable addition loop into a multiplication?

This is a question that came to mind while reading the brilliant answer by Mysticial to this question. Context for the types involved: const unsigned arraySize = 32768; int data[arraySize]; long ...
0
votes
1answer
176 views

How to change cache write policy for Intel icc compiler

Is there a way to alter the cache write policy while working with the Intel compiler. I discovered that the Intel Core i7 processor 1st-level cache is a write back cache. My question is: Is there any ...
1
vote
0answers
162 views

Suppressing instruction reordering in the WindRiver (Diab) Compiler

I am searching for the proper and accepted way to inhibit instruction reordering in the WindRiver C compiler (AKA Diab C (?)). The problem is that I have to write hardware registers several times ...
13
votes
6answers
543 views

gcc removes inline assembler code

It seems like gcc 4.6.2 removes code it considers unused from functions. test.c int main(void) { goto exit; handler: __asm__ __volatile__("jmp 0x0"); exit: return 0; } Disassembly of ...
6
votes
1answer
158 views

performance impact of “hot” and “inline” combination for a function definition

I have a function which does just few operations such as increments. I have declared that as inline and with the __attribute__((hot)). Gcc Doc suggests following for hot attribute: The hot ...
4
votes
3answers
178 views

Compiler behavior?

I am reviewing some source code and I was wondering if the following was thread safe? I have heard of compiler or CPU instruction/read reordering (would it have something to do with branch ...

1 2 3