Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp771 Instruction *CheckTerm = in instrumentMemAccessInline() local
775 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
779 SplitBlockAndInsertIfThen(OutOfShortGranuleTagRange, CheckTerm, !Recover, in instrumentMemAccessInline()
782 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
787 SplitBlockAndInsertIfThen(PtrLowBitsOOB, CheckTerm, false, in instrumentMemAccessInline()
792 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
797 SplitBlockAndInsertIfThen(InlineTagMismatch, CheckTerm, false, in instrumentMemAccessInline()
829 cast<BranchInst>(CheckFailTerm)->setSuccessor(0, CheckTerm->getParent()); in instrumentMemAccessInline()
H A DAddressSanitizer.cpp1779 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in instrumentAddress() local
1781 assert(cast<BranchInst>(CheckTerm)->isUnconditional()); in instrumentAddress()
1782 BasicBlock *NextBB = CheckTerm->getSuccessor(0); in instrumentAddress()
1783 IRB.SetInsertPoint(CheckTerm); in instrumentAddress()
1786 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false); in instrumentAddress()
1792 ReplaceInstWithInst(CheckTerm, NewTerm); in instrumentAddress()
H A DMemorySanitizer.cpp1188 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin() local
1190 IRBuilder<> IRBNew(CheckTerm); in storeOrigin()
1262 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in materializeOneCheck() local
1266 IRB.SetInsertPoint(CheckTerm); in materializeOneCheck()
H A DDataFlowSanitizer.cpp2561 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin() local
2563 IRBuilder<> IRBNew(CheckTerm); in storeOrigin()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1369 Instruction *CheckTerm; in SplitBlockAndInsertIfThenImpl() local
1374 CheckTerm = new UnreachableInst(C, ThenBlock); in SplitBlockAndInsertIfThenImpl()
1376 CheckTerm = BranchInst::Create(Tail, ThenBlock); in SplitBlockAndInsertIfThenImpl()
1380 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenImpl()
1382 CheckTerm = ThenBlock->getTerminator(); in SplitBlockAndInsertIfThenImpl()
1415 return CheckTerm; in SplitBlockAndInsertIfThenImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSafeStack.cpp481 Instruction *CheckTerm = in checkStackGuard() local
483 IRBuilder<> IRBFail(CheckTerm); in checkStackGuard()