Bug fixed with four nops in an if(0), world no longer makes sense. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:59:04Z http://stackoverflow.com/feeds/question/708339 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense 6 Bug fixed with four nops in an if(0), world no longer makes sense. rodarmor 2009-04-02T04:48:56Z 2009-04-08T13:28:07Z <p>I was writing a function to figure out if a given system of linear inequalities has a solution, when all of a sudden it started giving the wrong answers after a seemingly innocuous change.</p> <p>I undid some changes, re-did them, and then proceeded to fiddle for the next two hours, until I had reduced it to absurdity.</p> <p>The following, inserted anywhere into the function body, but nowhere else in the program, fixes it:</p> <pre><code>if(0) { __asm__("nop\n"); __asm__("nop\n"); __asm__("nop\n"); __asm__("nop\n"); } </code></pre> <p>It's for a school assignment, so I probably shouldn't post the function on the web, but this is so ridiculous that I don't think any context is going to help you. And all the function does is a bunch of math and looping. It doesn't even touch memory that isn't allocated on the stack.</p> <p>Please help me make sense of the world! I'm loathe to chalk it up to the GCC, since the first rule of debugging is not to blame the compiler. But heck, I'm about to. I'm running Mac OS 10.5 on a G5 tower, and the compiler in question identifies itself as 'powerpc-apple-darwin9-gcc-4.0.1' but I'm thinking it could be an impostor...</p> <p>UPDATE: Curiouser and curiouser... I diffed the .s files with nops and without. Not only are there too many differences to check, but with no nops the .s file is 196,620 bytes, and with it's 156,719 bytes. (!)</p> <p>UPDATE 2: Wow, should have posted the code! I came back to the code today, with fresh eyes, and immediately saw the error. See my sheepish self-answer below.</p> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/708354#708354 15 Answer by paxdiablo for Bug fixed with four nops in an if(0), world no longer makes sense. paxdiablo 2009-04-02T04:58:17Z 2009-04-02T04:58:17Z <p>Most times when you modify the code inconsequentially and it fixes your problem, it's a memory corruption problem of some sort. We may need to see the actual code to do proper analysis, but that would be my first guess, based on the available information.</p> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/708373#708373 3 Answer by ojblass for Bug fixed with four nops in an if(0), world no longer makes sense. ojblass 2009-04-02T05:07:59Z 2009-04-02T05:07:59Z <p>Does it happen in debug and release mode build (with symbols and without)? Does it behave the same way using a debugger? Is the code moultithreaded? Are you compiling with optimizations? Can you try another machine? </p> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/708391#708391 3 Answer by sigjuice for Bug fixed with four nops in an if(0), world no longer makes sense. sigjuice 2009-04-02T05:19:26Z 2009-04-02T05:19:26Z <p>Can you confirm that you are indeed getting different executables when you add the if(0) {nops}? I don't see nops on my system.</p> <pre><code>$ gcc --version powerpc-apple-darwin9-gcc-4.0.1 (GCC) 4.0.1 (Apple Inc. build 5490) $ cat nop.c void foo() { if (0) { __asm__("nop"); __asm__("nop"); __asm__("nop"); __asm__("nop"); } } $ gcc nop.c -S -O0 -o - . . _foo: stmw r30,-8(r1) stwu r1,-48(r1) mr r30,r1 lwz r1,0(r1) lmw r30,-8(r1) blr $ gcc nop.c -S -O3 -o - . . _foo: blr </code></pre> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/708410#708410 12 Answer by Joel Spolsky for Bug fixed with four nops in an if(0), world no longer makes sense. Joel Spolsky 2009-04-02T05:25:40Z 2009-04-03T04:40:08Z <p>It's faulty pointer arithmetic, either directly (through a pointer) or indirectly (by going past the end of an array). Check all your arrays. Don't forget that if your array is</p> <pre><code> int a[4]; </code></pre> <p>then a[4] doesn't exist.</p> <p>What you're doing is overwriting something on the stack accidentally. The stack contains both locals, parameters, and the return address from your function. You might be damaging the return address in a way that the extra noops cures. </p> <p>For example, if you have some code that is adding something to the return address, inserting those extra 16 bytes of noops would cure the problem, because instead of returning past the next line of code, you return into the middle of some noops. </p> <p>One way you might be adding something to the return address is by going past the end of a local array or a parameter, for example</p> <pre><code> int a[4]; a[4]++; </code></pre> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/708445#708445 2 Answer by smcameron for Bug fixed with four nops in an if(0), world no longer makes sense. smcameron 2009-04-02T05:49:39Z 2009-04-02T05:49:39Z <p>My guess is stack corruption -- though gcc should optimize anything inside an if(0) out, I would have thought.</p> <p>You could try sticking a big array on the stack in your function and see if that also fixes it -- that would also implicate stack corruption.</p> <p>Are you sure you're running what you think you're running? (dumb question, but it happens.)</p> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/710381#710381 2 Answer by Trevor Boyd Smith for Bug fixed with four nops in an if(0), world no longer makes sense. Trevor Boyd Smith 2009-04-02T16:00:35Z 2009-04-02T16:00:35Z <p>=== Looks like you will need to put in some hard work and elbow grease ===</p> <p>Your problem sounds similar to something I have debugged in the past where my app was running regular ... when out of nowhere it jumped to a different part of the app and the callstack got completely messed up ( however this was embedded programming )!</p> <p>It sounds like you are spending your time "thinking" about "what should be happening" ... when you should be "looking" at "what is actually happening". A lot of the times the hardest bugs are things that you would never think "should happen".</p> <p>I would approach the problem like so: </p> <ol> <li>Break out your favorite debugger</li> <li>Start stepping through your code and watch the call stack and local variables and look for suspicious activity</li> <li>Make the system fail</li> <li>Focus in to where the system is failing</li> </ol> <p>Focus on iterating your code changes:</p> <ol> <li>making code changes that will "make the system fail"</li> <li>running/debugging and watching</li> <li>If it runs fine you are looking/trying the wrong thing and you need to try something else. If you make it fail then you have made progress towards finding the bug.</li> <li>If you don't know where or how the system fails you will not be able to solve the problem. </li> </ol> <p><hr /></p> <p>This will be a good opportunity to build your debugging skills. For more help on building your debugging skills read check out the book <a href="http://rads.stackoverflow.com/amzn/click/0814471684" rel="nofollow">"9 rules for debugging".</p> <p>Here is a poster from the book:</p> <p>http://www.debuggingrules.com/debuggingrules.jpg</a>" alt="9 Rules of debugging image" /> ( <a href="http://www.debuggingrules.com/debuggingrules.jpg" rel="nofollow">http://www.debuggingrules.com/debuggingrules.jpg</a> ) </p> <p><hr /></p> <p>=== Concrete suggestions: ===</p> <ol> <li>If you think it is the compiler, then run a different platform/OS/compiler.</li> <li>Once you have ruled out the platform/OS/compiler, then try restructuring the code. Look for the "clever" code parts and see if they are actually doing what the code meant to do... maybe the clever solution wasn't actually clever and is doing something else.</li> </ol> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/712586#712586 0 Answer by Windows programmer for Bug fixed with four nops in an if(0), world no longer makes sense. Windows programmer 2009-04-03T04:53:07Z 2009-04-03T04:53:07Z <p>Break out that one function into a separate .c file (or .cpp or whatever). Compile just that one file with the nops and without them, to .s files and compare them.</p> <p>Try an old version of gcc. Go back 5 or 10 years and see if things get stranger.</p> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/723725#723725 1 Answer by Dave Agans for Bug fixed with four nops in an if(0), world no longer makes sense. Dave Agans 2009-04-07T00:16:51Z 2009-04-07T00:16:51Z <p>I am the author of "Debugging" so kindly referenced above by Trevor Boyd Smith. He has it right -- the key rules here are #2 Make It Fail (which you seem to be doing okay), and #3 Quit Thinking and Look. The conjectures above are very good (demonstrating mastery of rule #1 -- Understand the System -- in this case the way code size can change a bug). But actually watching it fail with a debugger will show you what's actually happening without guesswork.</p> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/726370#726370 5 Answer by rodarmor for Bug fixed with four nops in an if(0), world no longer makes sense. rodarmor 2009-04-07T15:35:46Z 2009-04-08T13:28:07Z <p>I came back to this after a few days busy with other things, and figured it out right away. Sorry I didn't post the code sooner, but it was hard coming up with minimal example that displayed the problem.</p> <p>The root problem was that I left out the return statements in the recursive function. I had:</p> <pre><code>bool function() { /* lots of code */ function() } </code></pre> <p>When it should have been:</p> <pre><code>bool function() { /* lots of code */ return function() } </code></pre> <p>This worked because, through the magic of optimization, the right value happened to be in the right register at the right time, and made it to the right place.</p> <p>The bug was originally introduced when I broke the first call into its own special-cased function. And, at that point, the extra nops were the difference between this first case being inlined directly into the general recursive funtion.</p> <p>Then, for reasons that I don't fully understand, inlining this first case led to the right value not being in the right place at the right time, and the function returning junk.</p>