HomeSort by relevance Sort by last modified time
    Searched refs:ReplaceInstWithInst (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 61 // ReplaceInstWithInst - Replace the instruction specified by BI with the
65 void ReplaceInstWithInst(BasicBlock::InstListType &BIL,
68 // ReplaceInstWithInst - Replace the instruction specified by From with the
71 void ReplaceInstWithInst(Instruction *From, Instruction *To);
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 511 ReplaceInstWithInst(I, C);
527 ReplaceInstWithInst(I, C);
544 ReplaceInstWithInst(I, C);
560 ReplaceInstWithInst(I, C);
566 ReplaceInstWithInst(I, C);
AddressSanitizer.cpp 764 ReplaceInstWithInst(CheckTerm, NewTerm);
    [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 212 /// ReplaceInstWithInst - Replace the instruction specified by BI with the
216 void llvm::ReplaceInstWithInst(BasicBlock::InstListType &BIL,
219 "ReplaceInstWithInst: Instruction already inserted into basic block!");
231 /// ReplaceInstWithInst - Replace the instruction specified by From with the
234 void llvm::ReplaceInstWithInst(Instruction *From, Instruction *To) {
236 ReplaceInstWithInst(From->getParent()->getInstList(), BI, To);
665 ReplaceInstWithInst(HeadOldTerm, HeadNewTerm);

Completed in 510 milliseconds