CallInst构造函数是私有的吗?

时间:2017-04-02 11:19:00

标签: c++ llvm

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

这是我的代码,感谢我之前的帖子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构造函数是私有的吗?在这种情况下,如何获取函数调用列表?

[编辑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*’

1 个答案:

答案 0 :(得分:2)

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

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

而不是

CallInst callInst = dyn_cast<CallInst>(I)