vote up 3 vote down star

I'm not sure how to explain the behavior I'm seeing, but here goes.

I have a function foo that takes three parameters, a pointer, an int, and another pointer. When I break-point inside foo, I can clearly see that all the variables are the values they should be. However, when I step down beyond the local variable declarations, one of the parameters (the int) suddenly changes to zero. However, the rest of the function executes as if it were the original value, so all is well.

This doesn't happen in full debug, but does happen in regular debug. Is this some kind of optimization? If so, what is it called and where can I get the details?

Example:

void foo(void *A, int B, void *C)
{
  // B == 5
  int X = 3;
  char *Y = getSomeStaticString();
  // ... some other variable declarations like the above

  // B, according to the debugger, is now 0
  if (B == 5) {
    // But this still executes
  }
}
flag

1 Answer

vote up 5 vote down check

You're debugging optimized code. Local variables can't be trusted - the compiler is free to reuse their space, cache them in a register, and so on.

What you're probably seeing is B is cached in a register and its stack location is being reused for some other variable.

Similar question here: http://stackoverflow.com/questions/563000/can-optimizations-affect-the-ability-to-debug-a-vc-app-using-its-pdb/567886

link|flag
That was it! Thanks – Sydius Apr 18 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.