How to understand the call stack of Visual Studio?

前端 未结 3 542
不思量自难忘°
不思量自难忘° 2020-12-21 05:13
  VCamD.ax!CFactoryTemplate::CreateInstance()  + 0x3f bytes 
> VCamD.ax!CClassFactory::CreateInstance()  + 0x7f bytes 

What\'s 0x7f

3条回答
  •  不思量自难忘°
    2020-12-21 05:38

    Those values are the offset of the instruction pointer from the start of the listed function.

    It's a way of expressing which assembly instruction is currently being executed in the function. Similar to having the the current source code line highlighted in the editor. Except that the offset is at the assembly level not the source code level.

提交回复
热议问题