Hi
Is it possible to view the heap and stack during debugging?
|
|
Hi Is it possible to view the heap and stack during debugging?
|
|||
|
|
|
|
AFAIK, the main windows you'd want to use are the Locals (Ctrl + Alt + V, L) and Autos (Ctrl + Alt + V, L) windows which MSDN has as: ...and for the Stack there's the Call Stack window (Debug -> Windows -> Call Stack) or Ctl + Alt + C. However, I get the feeling this isn't what you're after. If you are looking for an "in-memory" view you might be able to make use of Visual Studio's Memory windows which can be accessed from the Debug -> Windows -> Memory -> Memory x menus (where x is 1-4) or Ctrl + Alt + M, 1-4. As a few people have now mentioned, there are a couple of other external tools which are quite useful for memory debugging (I use mainly SysInternals tools and the Debugging Tools for Windows). |
|||
|
|
|
|
You can view the call stack while debugging, but I assume that's not what you're looking for. You might want to try Windbg and SOS, which are GREAT for debugging memory issues. A bit steep on the learning curve, but the payback is HUGE. |
||
|
|
|
|
You need the "Call Stack Window"... http://msdn.microsoft.com/en-us/library/a3694ts5.aspx
And for the Heap, the "Memory Window"... http://msdn.microsoft.com/en-us/library/s3aw423e(VS.80).aspx
"Restoring Hidden Debugger Commands" may also be useful... http://msdn.microsoft.com/en-us/library/9k643651(VS.80).aspx As you get into debugging memory, other debuggers will be more useful. As someone suggested, WinDbg is excellent for memory debugging. I use IDA Pro Disassembler a lot myself. |
||
|
|
|
|
If you actually want to look at the raw memory for some reason you can open the "Memory" debug window from " This is not very useful for actually looking at variables because you'll have a tough time parsing the raw bytes into meaningful values but it can be useful for debugging situations where you suspect there are buffer overruns or memory that is overwritten unexpectedly. It is particularly useful when used in conjunction with data-breakpoints. |
||
|
|