12
votes
2answers
161 views

How to find out which optimizations are actually applied when using gcc?

With IBM's XL compiler family it is possible to supply two options (-qreport and -qlist) to generate reports for each source file that include information on which optimizations were applied, or which ...
9
votes
2answers
307 views

Improving build time on XCode 4.5 for a huge game project

Scenario: We have an XCode project for an iOS game which has about 7000+ files. Only 1000+ files are code. Rest of them are images, sounds, level data, XIBs, plists, config files etc. Its a ...
2
votes
4answers
174 views

When I use Conditional Compilation Arguments to Exclude Code, why doesn't VB6 EXE file size change?

Basically, when declaring Windows API functions in my VB6 code, there comes with these many constants that need to be declared or used with this function, in fact, usually most of these constants are ...
1
vote
1answer
104 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 ...
4
votes
2answers
170 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() { ...
2
votes
3answers
102 views

Are there compilers capable of suggesting optimizations that would absolutely require programmer approval?

Can compilers do more than strict semantically-equivalent optimizations, if we keep the human in the loop? There are some potential optimizations that are dismissed outright by compilers, because ...
2
votes
1answer
207 views

Do one-pass compilers still exist?

According to http://gcc.gnu.org/onlinedocs/gcc-2.95.3/gcc_14.html, GCC 2.95 had around 24 different passes, back in the days. Looking at http://llvm.org/docs/Passes.html, LLVM has about a hundred ...
-2
votes
2answers
180 views

C++ optimization

Can we see optimized code in c++.............(not assembly)??
12
votes
6answers
3k views

C Programming: difference between ++i and i=i+1 from an assembler point of view?

This was an interview question. I said they were the same, but this was adjudged an incorrect response. From the assembler point of view, is there any imaginable difference? I have compiled two short ...