更换LLVM IR中的指令

时间:2016-11-17 07:52:16

标签: c++ llvm-clang llvm-ir

我编写了一个代码,通过创建Value *来替换LLVM IR中的add指令和子指令。我正在尝试将%inc = add i8 %2, 1替换为%5 = sub i8 0, %4

我的问题是如何让更改出现在LLVM IR文件中?我可以在屏幕上打印新的Value *,但不能在我的LLVM IR文件中打印。

      for (auto &B : F) {
     for (BasicBlock::iterator DI = B.begin(); DI != B.end(); ) {
      Instruction *Inst = &*DI++;

      if (auto *op = dyn_cast<BinaryOperator>(&*Inst)) {
        // Insert at the point where the instruction `op` appears.
        IRBuilder<> builder(op);
 std::string opcd,opcd_change;
opcd=Inst->getOpcodeName();
        // Make a multiply with the same operands as `op`.
srand((unsigned)time(NULL));

if (opcd=="add"){
errs() <<"instruction ";
Inst->print(errs());
//errs() <<'\n'<<"instruction opcode changed"<<opcd_change<<'\n';
errs() <<" instruction opcode "<<opcd<<'\n';
        Value *lhs = op->getOperand(0);


         Value *rhs = op->getOperand(1);
          Instruction* neg = BinaryOperator::CreateNeg(rhs);

errs() <<"instruction opcode changed "<<opcd_change<<'\n';
Instruction* newInst = BinaryOperator::CreateSub(lhs, neg, "test");
errs() << "NewInst:\n" << *newInst << "\n";
    ReplaceInstWithInst(op,newInst);
    errs()<< "Instruction replaced ";
    errs() <<'\n'<<'\n';
    }
    }
    }
    }

我无法理解错误的含义。我对LLVM相当新,所以我不知道它意味着什么。

**编辑显示使用ReplaceInstWithInst **

后的错误
'opt: /home/zainub/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp:211: void llvm::ReplaceInstWithInst(llvm::BasicBlock::InstListType&, llvm::BasicBlock::iterator&, llvm::Instruction*): Assertion `I->getParent() == nullptr && "ReplaceInstWithInst: Instruction already inserted into basic block!"' failed.
#0 0x00000000027abd3a llvm::sys::PrintStackTrace(llvm::raw_ostream&) (/usr/local/bin/opt+0x27abd3a)
#1 0x00000000027ac08e PrintStackTraceSignalHandler(void*) (/usr/local/bin/opt+0x27ac08e)
#2 0x00000000027aa4e6 llvm::sys::RunSignalHandlers() (/usr/local/bin/opt+0x27aa4e6)
#3 0x00000000027ab687 SignalHandler(int) (/usr/local/bin/opt+0x27ab687)
#4 0x00007fbb71d32d10 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x10d10)
#5 0x00007fbb71160267 gsignal (/lib/x86_64-linux-gnu/libc.so.6+0x35267)
#6 0x00007fbb71161eca abort (/lib/x86_64-linux-gnu/libc.so.6+0x36eca)
#7 0x00007fbb7115903d (/lib/x86_64-linux-gnu/libc.so.6+0x2e03d)
#8 0x00007fbb711590f2 (/lib/x86_64-linux-gnu/libc.so.6+0x2e0f2)
#9 0x00000000027cfa1c llvm::ReplaceInstWithInst(llvm::SymbolTableList<llvm::Instruction>&, llvm::ilist_iterator<llvm::Instruction>&, llvm::Instruction*) (/usr/local/bin/opt+0x27cfa1c)
#10 0x00000000027cfb2b llvm::ReplaceInstWithInst(llvm::Instruction*, llvm::Instruction*) (/usr/local/bin/opt+0x27cfb2b)
#11 0x00007fbb70f1d027 (anonymous namespace)::Fundep::runOnFunction(llvm::Function&) /home/zainub/llvm/lib/Transforms/Fundep/Fundep.cpp:161:0
#12 0x0000000002246841 llvm::FPPassManager::runOnFunction(llvm::Function&) (/usr/local/bin/opt+0x2246841)
#13 0x00000000022469f8 llvm::FPPassManager::runOnModule(llvm::Module&) (/usr/local/bin/opt+0x22469f8)
#14 0x0000000002246db5 (anonymous namespace)::MPPassManager::runOnModule(llvm::Module&) (/usr/local/bin/opt+0x2246db5)
#15 0x0000000002247539 llvm::legacy::PassManagerImpl::run(llvm::Module&) (/usr/local/bin/opt+0x2247539)
#16 0x0000000002247779 llvm::legacy::PassManager::run(llvm::Module&) (/usr/local/bin/opt+0x2247779)
#17 0x00000000010583e9 main (/usr/local/bin/opt+0x10583e9)
#18 0x00007fbb7114ba40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x20a40)
#19 0x0000000001033119 _start (/usr/local/bin/opt+0x1033119)
Stack dump:
0.  Program arguments: /usr/local/bin/opt -load /home/zainub/build/lib/LLVMFundep.so -Fundep 
1.  Running pass 'Function Pass Manager' on module '<stdin>'.
2.  Running pass 'Fundep Pass' on function '@main'

中止(核心倾销)

编辑-2

生成的IR有问题

instruction   %add115 = add i64 %86, 20 instruction opcode add
NewInst:
  %test = sub i64 %86, <badref>
op   %add115 = add i64 %86, 20
Instruction replaced   %test = sub i64 %86, <badref>

0 个答案:

没有答案