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 449 ReplaceInstWithInst(I, C);
465 ReplaceInstWithInst(I, C);
482 ReplaceInstWithInst(I, C);
498 ReplaceInstWithInst(I, C);
504 ReplaceInstWithInst(I, C);
AddressSanitizer.cpp 745 ReplaceInstWithInst(CheckTerm, NewTerm);
    [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 211 /// ReplaceInstWithInst - Replace the instruction specified by BI with the
215 void llvm::ReplaceInstWithInst(BasicBlock::InstListType &BIL,
218 "ReplaceInstWithInst: Instruction already inserted into basic block!");
230 /// ReplaceInstWithInst - Replace the instruction specified by From with the
233 void llvm::ReplaceInstWithInst(Instruction *From, Instruction *To) {
235 ReplaceInstWithInst(From->getParent()->getInstList(), BI, To);
726 ReplaceInstWithInst(HeadOldTerm, HeadNewTerm);

Completed in 59 milliseconds