MSVC 相当于“__builtin_return_address”

发布于 2024-07-21 10:38:00 字数 86 浏览 8 评论 0原文

对于msvc,是否有与gcc的“__builtin_return_address”等效的东西?

我正在寻找调用函数的地址,深度为 1 层。

With msvc, is there an equivalent to gcc's "__builtin_return_address"?

I'm looking to find the address of the calling function, 1 level deep.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

胡渣熟男 2024-07-28 10:38:01

__ReturnAddress

来自 MSDN:

_ReturnAddress 内在函数提供
指令的地址
调用将要执行的函数
控制权返回给调用者后

请注意,在某些平台上,由于尾部折叠,结果可能会产生误导 - 编译器可能会让您的内部函数返回 2 层深度。 对于这样的代码,通常会发生这种情况:

int DoSomething()
{
   return DoSomethingSpecial();
}

编译器可以生成代码,以便 DoSomethingSpecial 直接返回到 DoSomething 的调用者。

此外,返回地址不够可信,不足以做出安全决策,请参阅

__ReturnAddress

From MSDN:

The _ReturnAddress intrinsic provides
the address of the instruction in the
calling function that will be executed
after control returns to the caller

Note that on some platforms, the result could be misleading due to tail folding - the compiler might have your inner function return 2 levels deep. This can commonly occur for code like this:

int DoSomething()
{
   return DoSomethingSpecial();
}

The compiler could generate code so DoSomethingSpecial returns directly to the caller of DoSomething.

Also, the return address is not trustworthy-enough to make security decisions, see here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文