Tagged Questions
0
votes
2answers
51 views
VS2010 Express recommends optimizations in debug mode, and fails running the app without them
we have encountered a very weird behaviour of VS2010 Express C++ recently.
Our app which worked flawlessy, suddenly showed unexpected behaviour in debugmode, like somehow rendering to the full ...
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 ...
0
votes
0answers
181 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
3answers
159 views
example of a infinityloop by optimization(done by the compiler) in C++ in Visual Studio2010
I have to do a demonstration of how the compiler produces a infinity-loop while optimizing a program.
I have to show it in C++ in Visual Studio 2010 and I think he best way to show it is with and ...
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 ...
15
votes
3answers
410 views
Crash in C++ code due to undefined behaviour or compiler bug?
I am experiencing strange crashes. And I wonder whether it is a bug in my code, or the compiler.
When I compile the following C++ code with Microsoft Visual Studio 2010 as an optimized release build, ...
2
votes
2answers
192 views
Compiler flags change code behavior (O2, Ox)
The following code works as expected with flags Od, O1 but fails with O2, Ox. Any ideas why?
edit: by "fails" I mean that the function does nothing, and seems to just return.
void thread_sleep()
{
...
2
votes
3answers
242 views
VB 2010 Express: Debug.WriteLine optimized away completely in debug version?
Simple question that does not seem to be covered: If I use a lot of Debug.WriteLine statements in my code, will they be completely absent in my production version?
I mean: Is the compiler smart ...
3
votes
5answers
1k views
How well does the Visual C++ 2008/2010 compiler optimize?
Im just wondering how good the MSVC++ Compiler can optimize code(with Code examples) or what he can't optimize and why.
For example i used the SSE-intrinsics with something like this(var is an __m128 ...
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 ...