The _ReturnAddress intrinsic provides the address of the instruction in the calling function that will be executed after control returns to the caller.
Build the following program and step through it in the debugger. As you step through the program, note the address that is returned from _ReturnAddress. Then, immediately after returning from the function where _ReturnAddress was used, open the How to: Use the Disassembly Window and note that the address of the next instruction to be executed matches the address returned from _ReturnAddress.
Optimizations such as inlining may affect the return address. For example, if the sample program below is compiled with /Ob1, inline_func will be inlined into the calling function, main. Therefore, the calls to _ReturnAddress from inline_func and main will each produce the same value.
When _ReturnAddress is used in a program compiled with /clr, the function containing the _ReturnAddress call will be compiled as a native function. When a function compiled as managed calls into the function containing _ReturnAddress, _ReturnAddress may not behave as expected.
// compiler_intrinsics__ReturnAddress.cpp
#include
#include
#pragma intrinsic(_ReturnAddress)
__declspec(noinline)
void noinline_func(void)
{
printf("Return address from %s: %p/n", __FUNCTION__, _ReturnAddress());
}
__forceinline
void inline_func(void)
{
printf("Return address from %s: %p/n", __FUNCTION__, _ReturnAddress());
}
int main(void)
{
noinline_func();
inline_func();
printf("Return address from %s: %p/n", __FUNCTION__, _ReturnAddress());
return 0;
}
这篇博客介绍了_ReturnAddress内联函数,它提供调用函数返回后将执行的指令地址。文章通过构建示例程序并使用调试器进行步进,展示如何验证_ReturnAddress返回的地址与实际执行的下一条指令地址相符。同时,指出了优化如内联可能影响返回地址,并讨论了在/CLR编译环境下使用_ReturnAddress的注意事项。
2917

被折叠的 条评论
为什么被折叠?



