Searched refs:CheckTerm (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp722 TerminatorInst *CheckTerm; local
724 CheckTerm = new UnreachableInst(C, ThenBlock);
726 CheckTerm = BranchInst::Create(Tail, ThenBlock);
727 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc());
746 return CheckTerm;
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1100 TerminatorInst *CheckTerm = SplitBlockAndInsertIfThen( local
1102 assert(cast<BranchInst>(CheckTerm)->isUnconditional());
1103 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
1104 IRB.SetInsertPoint(CheckTerm);
1107 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false);
1113 ReplaceInstWithInst(CheckTerm, NewTerm);
H A DMemorySanitizer.cpp723 Instruction *CheckTerm = SplitBlockAndInsertIfThen( local
725 IRBuilder<> IRBNew(CheckTerm);
795 Instruction *CheckTerm = SplitBlockAndInsertIfThen( local
799 IRB.SetInsertPoint(CheckTerm);

Completed in 75 milliseconds