gpt4 book ai didi

c++ - CallInst 构造函数是私有(private)的?

转载 作者:行者123 更新时间:2023-11-30 03:33:10 25 4
gpt4 key购买 nike

我正在尝试使用 LLVM 构建一个简单版本的代码分析工具。我有一些包含某些程序的中间 LLVM 表示的 .ll 文件,我正在尝试获取已执行的函数调用列表在程序的每个函数中。

这是我的代码,由于我之前的帖子 here 的答案而获得.

void getFunctionCalls(const Module *M)
{

for (const Function &F : *M) {
for (const BasicBlock &BB : F) {
for (const Instruction &I : BB) {
if (CallInst callInst = dyn_cast<CallInst>(I)) {
if (Function *calledFunction = callInst->getCalledFunction()) {
if (calledFunction->getName().startswith("llvm.dbg.declare")) {

// Do something

}
}
}
}
}
}


}

当我编译它时,我收到一条错误消息:

home/kike/llvm-3.9.0.src/include/llvm/IR/Instructions.h: In function ‘void getFunctionCalls(const llvm::Module*)’:

/home/kike/llvm-3.9.0.src/include/llvm/IR/Instructions.h:1357:3: error: ‘llvm::CallInst::CallInst(const llvm::CallInst&)’ is private

这意味着 CallInst 构造函数是私有(private)的?在这种情况下,如何获取函数调用列表?

[编辑 1]:

我也试过将 I 作为引用传递,如下所示:

void getFunctionCalls(const Module *M)
{

for (const Function &F : *M) {
for (const BasicBlock &BB : F) {
for (const Instruction &I : BB) {
if (CallInst * callInst = dyn_cast<CallInst>(&I)) {
if (Function *calledFunction = callInst->getCalledFunction()) {
if (calledFunction->getName().startswith("llvm.dbg.declare")) {

// Do something

}
}
}
}
}
}


}

我得到这个错误:

invalid conversion from ‘llvm::cast_retty<llvm::CallInst, const llvm::Instruction*>::ret_type {aka const llvm::CallInst*}’ to ‘llvm::CallInst*’

最佳答案

CallInst 没有复制构造函数,因为它不是按值传递的。使用

const CallInst* callInst = dyn_cast<CallInst>(&I)

代替

CallInst callInst = dyn_cast<CallInst>(I)

关于c++ - CallInst 构造函数是私有(private)的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43167700/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com