获取 CallInst 的指针?

发布于 2024-12-02 17:25:05 字数 284 浏览 1 评论 0原文

我正在研究 LLVM pass,我对函数指针的调用感兴趣。除了知道指针实际指向什么(或实际将调用什么)之外,我还想拥有函数指针本身。

因此,从 CallInst::getCalledValue() 中,我可以获得将被调用的函数,我想要实际使用的函数指针。

在此示例中,我想获取 ptr1 (地址、变量对象本身、名称等):

int main() {
    int (*ptr1)(int) = &f1;
    ptr1(42);
    return 0;
}

I'm working on a LLVM pass where I'm interested in calls on function pointers. Besides from knowing what the pointer actually points too (or what will actually be called) I would like to have the function pointer itself.

So from CallInst::getCalledValue() I can get the function that will be called, I want the function pointer that was actually used.

In this example, I would like to get ptr1 (address, variable object itself, name, something):

int main() {
    int (*ptr1)(int) = &f1;
    ptr1(42);
    return 0;
}

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

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

发布评论

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

评论(1

小兔几 2024-12-09 17:25:05

那么你就不需要处理pass,而应该修改clang以通过函数指针进行调用并将信息放在某处。

Then you aren't working on a pass and should just modify clang to get you calls through function pointers and put out the information somewhere.

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