What's the best way to view accurate disassembly in VC++ 2010 while in Win32 Release mode?

ぐ巨炮叔叔 提交于 2019-12-01 11:39:38

Compile with /Zi and link with /DEBUG and you'll be able to set breakpoints.

Under a project's Properties dialog:

  • /Zi can be enabled in C++ --> General --> Debug Information Format

  • /DEBUG can be enabled in Linker --> Debugging --> Generate Debug Info

If you want to use the debugger to view the disassembly, you can place a __debugbreak() intrinsic call right before the code which you want to view.

If you're writing straight assembly, you can just use INT 3. When you place a breakpoint using the debugger, it actually changes the code to that (0xCC in binary) so the debugger will get called when it's executed.

You can also call one of the functions that do that for you like zr suggested. The Windows one is DbgBreakPoint(). If you disassemble it, you could easily see it's nothing but INT 3.

These used to be methods of causing breakponts:

_asm
{
  int 3
}

or

_asm
{
  _emit 0xcc
}

or was it

_emit 0xcc

I'm not sure of the syntax (it's been a while) but hopefully something can be made of it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!