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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp935 Instruction *CheckTerm; local
940 CheckTerm = new UnreachableInst(C, ThenBlock);
942 CheckTerm = BranchInst::Create(Tail, ThenBlock);
943 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc());
945 CheckTerm = ThenBlock->getTerminator();
974 return CheckTerm;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp641 Instruction *CheckTerm = local
645 IRB.SetInsertPoint(CheckTerm);
649 SplitBlockAndInsertIfThen(OutOfShortGranuleTagRange, CheckTerm, !Recover,
652 IRB.SetInsertPoint(CheckTerm);
657 SplitBlockAndInsertIfThen(PtrLowBitsOOB, CheckTerm, false,
661 IRB.SetInsertPoint(CheckTerm);
666 SplitBlockAndInsertIfThen(InlineTagMismatch, CheckTerm, false,
695 cast<BranchInst>(CheckFailTerm)->setSuccessor(0, CheckTerm->getParent());
H A DAddressSanitizer.cpp1711 Instruction *CheckTerm = SplitBlockAndInsertIfThen( local
1713 assert(cast<BranchInst>(CheckTerm)->isUnconditional());
1714 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
1715 IRB.SetInsertPoint(CheckTerm);
1718 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false);
1724 ReplaceInstWithInst(CheckTerm, NewTerm);
H A DMemorySanitizer.cpp1151 Instruction *CheckTerm = SplitBlockAndInsertIfThen(
1153 IRBuilder<> IRBNew(CheckTerm);
1233 Instruction *CheckTerm = SplitBlockAndInsertIfThen(
1237 IRB.SetInsertPoint(CheckTerm);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStack.cpp474 Instruction *CheckTerm = local
477 IRBuilder<> IRBFail(CheckTerm);

Completed in 136 milliseconds