Compiler optimization involves adapting a compiler to reduce run-time or object size or both. This can be accomplished using compiler arguments (i.e. CFLAGS, LDFLAGS), compiler plugins (DEHYDRA for instance) or direct modifications to the compiler (such as modifying source code).
0
votes
2answers
507 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 ...
14
votes
2answers
318 views
Does setting the platform when compiling a c# application make any difference?
In VS2012 (and previous versions...), you can specify the target platform when building a project. My understanding, though, is that C# gets "compiled" to CIL and is then JIT compiled when running on ...
1
vote
2answers
434 views
Configuration for optimizing Qt creator compiler
I'm using Qt creator in windows platform(seven).
I want to configure it as it uses third level optimization (-O3) for c++ compiling.
Now here is the question that how can I do this to speed up my ...
44
votes
2answers
1k views
Is this a compiler optimisation bug, or an undefined behaviour?
We have an annoying bug I can't explain around this piece of code:
unsigned char bitmap[K_BITMAP_SIZE] = {0} ;
SetBit(bitmap, K_18); // Sets the bit #18 to 1
for(size_t i = 0; i < K_END; ++i)
{
...
1
vote
1answer
128 views
Visual Studio performance optimization in branching
Consider the following
while(true)
{
if(x>5)
// Run function A
else
// Run function B
}
if x is always less than 5, does visual studio compiler do any optimization? i.e. like ...
3
votes
3answers
158 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
80 views
Template function + functor argument, why the functor is not inlined?
The code below executes 4x faster, if near "REPLACING WITH .." line, the functor compare_swaps() will be replaced with direct reference to my_intcmp(). Apparently the indirect use is not being ...
1
vote
6answers
298 views
Code execution slowing due to header include
We have a very large program here which mixes C++ and FORTRAN (sorry). One of my check-ins has resulted in a dramatic slowdown of the complete application (i.e. by a factor of two or more) - even in ...
0
votes
0answers
62 views
course project on gcc optimization passes
I'm planning on writing an optimization pass for gcc.
Was going through the summer of code ideas for gcc, this project in particular caught my eye:
"Implement code motion of stores towards entry ...
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 ...
1
vote
3answers
408 views
How to optimize R performance
We have a recent performance bench mark that I am trying to understand. We have a large script that performance appears 50% slower on a Redhat Linux machine than a Windows 7 laptop where the specs are ...
2
votes
2answers
73 views
order of print in c++ [duplicate]
Possible Duplicate:
What is the correct answer for cout << c++ << c;?
I have following code -
int a= 7;
const int &b = a;
int &c = a;
if I use
cout << endl ...
6
votes
2answers
221 views
Why does GCC emit “lea” instead of “sub” for subtraction?
I am looking at some assembly that was generated by disassembling some C programs and I am confused by a single optimization that I see repeated frequently.
When I have no optimizations on the GCC ...
3
votes
1answer
108 views
Does the Apple LLVM compiler optimize repeated property access?
Consider this Objective-C code (ARC enabled):
[self.aProperty sendMessage];
if (self.aProperty)
{
[self doSomethingWithProperty:self.aProperty];
}
I'm wondering if rewriting the code to the ...
-1
votes
4answers
128 views
Compiler optimization for variable declaration location
I read from C++ faq that "Locals should be declared near their first use". Also Scott Meyer's Effective C++ Item 26 also suggests it for performance reasons. But I recently happened to hear from ...
0
votes
1answer
58 views
Difference between branching and select instructions
The 'select' instruction is used to choose one value based on a condition, without branching.
I want to know the differences between branching and select instructions (preferably for both x86 ...
0
votes
1answer
91 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
235 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;
...
0
votes
1answer
75 views
Turn off Inline Expansion but let Optimization be there
While doing performance analysis, I have encountered a problem where some functions are not being detected since the compiler is inlining them as part of /Ox optimisation.
So the problem is :
How to ...
0
votes
0answers
180 views
change compiler in visual studio 2010
I am trying to build my first opencv application, I added the include directories and the library directories and then added the linking input which is some opencv.lib files
Igot this error:
The ...
0
votes
2answers
108 views
Is there any list of GCC specific hacks for the Linux kernel?
It seems that there are many GCC-specific hacks (directives/optimisations) for the Linux kernel. I am just wondering, is there an official, consolidated list of them? And is anyone studying or working ...
10
votes
3answers
521 views
crash report using optimization other than -o0 after xcode 4.5 update
I've updated to Xcode 4.5 today and I can't produce a functional release build of my app any longer. I had no trouble producing a release with the previous version of Xcode.
I noticed that it ...
4
votes
2answers
383 views
Bloated EXE sizes, and unwanted dependencies with Qt/MingW
I'm trying to figure out how to shrink the sizes of EXE files compiled under the newest QT SDK (4.8.2) (mingw/g++ based). I was working on a vanilla c++ console app that has a simple loop and only ...
5
votes
1answer
145 views
Performance swapping integers vs double
For some reason my code is able to perform swaps on doubles faster than on the integers. I have no idea why this would be happening.
On my machine the double swap loop completes 11 times faster than ...
1
vote
1answer
65 views
Performace of constant references over non constant reference
Is there any difference in performance when using a constant reference and a non constant reference in C++ ?
If yes than which is better and why ?
There is a statement in systemc manual that passing ...
4
votes
2answers
165 views
Optimization of virtual table lookups
With code like below, can a compiler tell that a is in fact an instance of B and optimize away the virtual table lookup?
#include <iostream>
class A
{
public:
virtual void f()
{
...
1
vote
1answer
128 views
Does clang or gcc take advantage of referencing restrictions for alias analysis
I am wondering if the alias analysis passes inside of clang or gcc treat C++ member reference variables differently than pointer variables. If the compiler could take advantage of some of the more ...
-1
votes
1answer
85 views
New returns null; calling object gains new member…Optimization bug? (MSVC, C++) [SOLVED]
I was hoping someone here could make sense of what I think could be a MSVC 2010 bug.
I have this code (as part of a much larger project):
namespace MyNamespace{
class Foo{
//snip
...
0
votes
2answers
183 views
What is a Shadow Array
What is a shadow array and how is it implemented ?
I came through the term while reading about compiler optimizations but didn't found any substantial reference about it.
6
votes
1answer
117 views
How can a compiler apply function elimination to impure functions?
Often times when writing code, I find myself using a value from a particular function call multiple times. I realized that an obvious optimization would be to capture these repeatedly used values in ...
0
votes
3answers
97 views
Increment optimized away (Visual C Express 2010)
While working on a C++ project with Visual C++ Express 2010 I've found an interesting issue that I'd like to understand. The problem is that the result of my program is different if I compile in Debug ...
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 ...
0
votes
3answers
122 views
Can JIT be prevented from optimising away method calls?
We are building a tool for average case runtime analysis of Java Byte Code programs. One part of this is measuring real runtimes. So we would take an arbitrary, user provided method that may or may ...
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:
...
1
vote
1answer
91 views
Do unused variables and Methods increase App size?
In my Android application that I'm currently developing, I have variables and methods for debugging purposes. If I don't use any of the variables or methods in the application, will they increase the ...
30
votes
4answers
798 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++){
...
0
votes
2answers
104 views
Expression optimization
I have an expression involving REAL as:
xf=w1*x1 + w2*x2 + w3*x3 + w1*y1 + w2*y2 + w3*y3
I want to know if the (Intel Fortran) compiler optimized it to:
xf=w1*(x1+y1) + w2*(x2+y2) + w3*(x3+y3)
...
2
votes
4answers
135 views
compiler optimization for non-called function
I have a function in legacy code, that is no longer being called.
My question is:
would the compiler optimize for a function which is not being called, or would the executable file include the code ...
3
votes
1answer
193 views
Object array alignment with __attribute__aligned() Or alignas()?
Quick Question guys... Are these code spinets have the same alignment ?
struct sse_t {
float sse_data[4];
};
// the array "cacheline" will be aligned to 64-byte boundary
struct sse_t ...
1
vote
1answer
163 views
Why don't LLVM passes optimize floating point instructions?
See above. I wrote to sample functions:
source.ll:
define i32 @bleh(i32 %x) {
entry:
%addtmp = add i32 %x, %x
%addtmp1 = add i32 %addtmp, %x
%addtmp2 = add i32 %addtmp1, %x
%addtmp3 = add ...
4
votes
1answer
215 views
Do modern c++ compilers autovectorize code for 24bit image processing?
Do compilers like gcc, visual studio c++, the intel c++ compiler, clang, etc. vectorize code like the following?
std::vector<unsigned char> img( height * width * 3 );
unsigned char ...
1
vote
1answer
133 views
Compiling with /O2 versus /Ox — which is faster (as a rule of thumb)?
This question and MSDN seem to imply that /O2 would be faster, but if you look at Microsoft's own SafeInt class, you will notice it says:
1) Compile optimized code - /Ox is best, /O2 also performs ...
2
votes
2answers
95 views
Where is the code or executable for CHSC?
I have read many papers on the development of the Cambridge Haskell Supercompiler and want to try it out and look at the code to understand it more, but I cannot seem to find anything about it besides ...
0
votes
1answer
67 views
After I disable g++ return value optimization,Why the last call of constructor for temporary reference?
I compile the c++ code using the follow command to disable return value.
g++ -fno-elide-constructors rvoptimazation.cpp -o test
But the output of ./test is
10
10
10
13
0xbfdf0020
13
I am confused by ...
0
votes
1answer
435 views
How to use objdump to interleave source code in highly optimized object file?
I've got a highly optimized compiled C++ object file (compiled with g++, specifying -O3 -g -march=amdfam10 -Wall) with debug info.
I'm using objdump -S "objname".
Unfortunately interleaving the ...
4
votes
5answers
96 views
Why doesn't Java store the value of the conditional in a loop?
For example:
for(int i = 0; i < 20 * 40 * 60 * 80; i++){ ... }
Compared to:
for(int i = 0; i < 3840000; i++){ ... }
The first loop runs much slower than the second (did some time-trials) ...
0
votes
1answer
76 views
Visual C++ - enable optimizations and browse the optimized code
How I can compile my project with optimizations turned on and see what optimizations changed in my code.
For example:
My original code:
printf("Test: %d",52);
for (int empty=0;i<100000;i++) {
...


