Home
last modified time | relevance | path

Searched refs:CheckTerm (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp859 Instruction *CheckTerm = in instrumentMemAccessInline() local
863 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
867 SplitBlockAndInsertIfThen(OutOfShortGranuleTagRange, CheckTerm, !Recover, in instrumentMemAccessInline()
870 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
875 SplitBlockAndInsertIfThen(PtrLowBitsOOB, CheckTerm, false, in instrumentMemAccessInline()
880 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
885 SplitBlockAndInsertIfThen(InlineTagMismatch, CheckTerm, false, in instrumentMemAccessInline()
917 cast<BranchInst>(CheckFailTerm)->setSuccessor(0, CheckTerm->getParent()); in instrumentMemAccessInline()
H A DAddressSanitizer.cpp1617 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in instrumentAddress() local
1619 assert(cast<BranchInst>(CheckTerm)->isUnconditional()); in instrumentAddress()
1620 BasicBlock *NextBB = CheckTerm->getSuccessor(0); in instrumentAddress()
1621 IRB.SetInsertPoint(CheckTerm); in instrumentAddress()
1624 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false); in instrumentAddress()
1630 ReplaceInstWithInst(CheckTerm, NewTerm); in instrumentAddress()
H A DMemorySanitizer.cpp1175 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin() local
1177 IRBuilder<> IRBNew(CheckTerm); in storeOrigin()
1249 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in materializeOneCheck() local
1253 IRB.SetInsertPoint(CheckTerm); in materializeOneCheck()
H A DDataFlowSanitizer.cpp2341 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin() local
2343 IRBuilder<> IRBNew(CheckTerm); in storeOrigin()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1395 Instruction *CheckTerm; in SplitBlockAndInsertIfThenImpl() local
1400 CheckTerm = new UnreachableInst(C, ThenBlock); in SplitBlockAndInsertIfThenImpl()
1402 CheckTerm = BranchInst::Create(Tail, ThenBlock); in SplitBlockAndInsertIfThenImpl()
1406 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenImpl()
1408 CheckTerm = ThenBlock->getTerminator(); in SplitBlockAndInsertIfThenImpl()
1441 return CheckTerm; in SplitBlockAndInsertIfThenImpl()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DSafeStack.cpp475 Instruction *CheckTerm = in checkStackGuard() local
477 IRBuilder<> IRBFail(CheckTerm); in checkStackGuard()