Tagged Questions
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)
{
...
0
votes
1answer
76 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 ...
1
vote
1answer
134 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 ...
8
votes
3answers
178 views
Should I wrap calls to Debugger.Log() in #if (DEBUG)?
Is it necessary to wrap calls to Debugger.Log() in the #if (DEBUG) preprocessor directive for the purpose of code optimization, or will the C# compiler still produce optimized code when building the ...
0
votes
1answer
131 views
Visual C Optimization differences between 2008 and 2010
I have a fairly complex algorithm I'm building using both visual c 2008 and visual c 2010. The algorithm is producing bad output when I compile with optimization enabled in VC 2010 (specifically, ...
18
votes
4answers
543 views
How should I detect bottleneck of compile time in a large C++ project?
I want to reduce compile time of a large C++ project.
I tried to use precompiled headers, interface and etc.
But before I move on, I want to know whether any tool which helps detect why compile time ...
7
votes
1answer
335 views
Suppress JIT optimization on module load (managed only)
If I run a release build in VS but WITH debugger attached. So I can set breakpoints and investigate the optimized code disassembly. Usually, in order to see all optimizations I need to run WITHOUT a ...
20
votes
2answers
374 views
Are explicitly Infinite Loops handled in .NET as a special case?
Earlier today, as I was coding a method and it struck me that I wasn't sure exactly why the idiom I was implementing compiles. If everything else is abstracted away, it would look something like ...
8
votes
2answers
295 views
When does the compiler optimize my code
I'm trying to build a code sample to show the optimization of code by the compiler when multiplying with a power of 2 number. Yet when I turn Optimize code on the IL remains mainly the same. Any ...
16
votes
1answer
3k views
What is the difference between the /Ox and /O2 compiler options?
Microsoft's C++ compiler (cl.exe, as included with Visual Studio) offers several optimization switches. The difference between most of them seems self-explanatory, but it's not clear to me what the ...
2
votes
4answers
820 views
Visual Studio C++ compiler optimizations breaking code?
I've a peculiar issue here, which is happening both with VS2005 and 2010. I have a for loop in which an inline function is called, in essence something like this (C++, for illustrative purposes only):
...
0
votes
2answers
1k views
Where can I modify detailed C# compiler optimization settings in Visual Studio?
In Visual Studio C/C++ projects, it's easy to modify compiler's optimization settings in "Property Pages | C/C++ | Optimization". For example, we may give different optimization levels such as /O2 and ...
6
votes
1answer
566 views
C++ defines for a 'better' Release mode build in VS
I currently use the following preprocessor defines, and various optimization settings:
WIN32_LEAN_AND_MEAN
VC_EXTRALEAN
NOMINMAX
_CRT_SECURE_NO_WARNINGS
_SCL_SECURE_NO_WARNINGS
_SECURE_SCL=0
...
11
votes
4answers
4k views
Benefits of 'Optimize code' option in Visual Studio build
Much of our C# release code is built with the 'Optimize code' option turned off. I believe this is to allow code built in Release mode to be debugged more easily.
Given that we are creating fairly ...