2017-04-02 13 views
1

私は、特定のプログラムの中間的なLLVM表現を含むいくつかの.llファイルを持っており、実行される関数呼び出しのリストを取得しようとしています。プログラムの各機能。CallInstコンストラクタはプライベートですか?

これは私の前の投稿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]:

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*’ 

答えて

2

CallInstにはコピーコンストラクタがありません。これは値渡しではないためです。

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

代わりの

CallInst callInst = dyn_cast<CallInst>(I) 
+0

感謝を使用してください!私はすでにそれを試していた。そして、私は次のようなエラーメッセージを出します: 'llvm :: cast_retty :: ret_type {別名const llvm :: CallInst *}'から 'llvm :: CallInst * 'への無効な変換 – Kroka

+0

私は私の答えを編集し、constキーワードを忘れてしまった(dyn_castの入力引数は型const *を持ち、dyn_castはキャスト中にconst修飾子を削除しない)。 – salla

+0

ああああ!できます。どうもありがとうございました! – Kroka

関連する問題