Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp624 TerminatorInst *CheckTerm; in SplitBlockAndInsertIfThen() local
626 CheckTerm = new UnreachableInst(C, ThenBlock); in SplitBlockAndInsertIfThen()
628 CheckTerm = BranchInst::Create(Tail, ThenBlock); in SplitBlockAndInsertIfThen()
629 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThen()
654 return CheckTerm; in SplitBlockAndInsertIfThen()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp935 Instruction *CheckTerm; in SplitBlockAndInsertIfThen() local
940 CheckTerm = new UnreachableInst(C, ThenBlock); in SplitBlockAndInsertIfThen()
942 CheckTerm = BranchInst::Create(Tail, ThenBlock); in SplitBlockAndInsertIfThen()
943 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThen()
945 CheckTerm = ThenBlock->getTerminator(); in SplitBlockAndInsertIfThen()
974 return CheckTerm; in SplitBlockAndInsertIfThen()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp641 Instruction *CheckTerm = in instrumentMemAccessInline() local
645 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
649 SplitBlockAndInsertIfThen(OutOfShortGranuleTagRange, CheckTerm, !Recover, in instrumentMemAccessInline()
652 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
657 SplitBlockAndInsertIfThen(PtrLowBitsOOB, CheckTerm, false, in instrumentMemAccessInline()
661 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
666 SplitBlockAndInsertIfThen(InlineTagMismatch, CheckTerm, false, in instrumentMemAccessInline()
695 cast<BranchInst>(CheckFailTerm)->setSuccessor(0, CheckTerm->getParent()); in instrumentMemAccessInline()
DAddressSanitizer.cpp1711 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in instrumentAddress() local
1713 assert(cast<BranchInst>(CheckTerm)->isUnconditional()); in instrumentAddress()
1714 BasicBlock *NextBB = CheckTerm->getSuccessor(0); in instrumentAddress()
1715 IRB.SetInsertPoint(CheckTerm); in instrumentAddress()
1718 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false); in instrumentAddress()
1724 ReplaceInstWithInst(CheckTerm, NewTerm); in instrumentAddress()
DMemorySanitizer.cpp1151 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin() local
1153 IRBuilder<> IRBNew(CheckTerm); in storeOrigin()
1233 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in materializeOneCheck() local
1237 IRB.SetInsertPoint(CheckTerm); in materializeOneCheck()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp758 Instruction *CheckTerm = in instrumentMemAccessInline() local
762 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
766 SplitBlockAndInsertIfThen(OutOfShortGranuleTagRange, CheckTerm, !Recover, in instrumentMemAccessInline()
769 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
774 SplitBlockAndInsertIfThen(PtrLowBitsOOB, CheckTerm, false, in instrumentMemAccessInline()
778 IRB.SetInsertPoint(CheckTerm); in instrumentMemAccessInline()
783 SplitBlockAndInsertIfThen(InlineTagMismatch, CheckTerm, false, in instrumentMemAccessInline()
815 cast<BranchInst>(CheckFailTerm)->setSuccessor(0, CheckTerm->getParent()); in instrumentMemAccessInline()
DAddressSanitizer.cpp1698 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in instrumentAddress() local
1700 assert(cast<BranchInst>(CheckTerm)->isUnconditional()); in instrumentAddress()
1701 BasicBlock *NextBB = CheckTerm->getSuccessor(0); in instrumentAddress()
1702 IRB.SetInsertPoint(CheckTerm); in instrumentAddress()
1705 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false); in instrumentAddress()
1711 ReplaceInstWithInst(CheckTerm, NewTerm); in instrumentAddress()
DMemorySanitizer.cpp1186 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin() local
1188 IRBuilder<> IRBNew(CheckTerm); in storeOrigin()
1258 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in materializeOneCheck() local
1262 IRB.SetInsertPoint(CheckTerm); in materializeOneCheck()
/external/llvm-project/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp991 Instruction *CheckTerm; in SplitBlockAndInsertIfThen() local
996 CheckTerm = new UnreachableInst(C, ThenBlock); in SplitBlockAndInsertIfThen()
998 CheckTerm = BranchInst::Create(Tail, ThenBlock); in SplitBlockAndInsertIfThen()
999 CheckTerm->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThen()
1001 CheckTerm = ThenBlock->getTerminator(); in SplitBlockAndInsertIfThen()
1030 return CheckTerm; in SplitBlockAndInsertIfThen()
/external/libbrillo/brillo/
Dasynchronous_signal_handler_test.cc50 TEST_F(AsynchronousSignalHandlerTest, CheckTerm) { in TEST_F() argument
/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp1170 TerminatorInst *CheckTerm = SplitBlockAndInsertIfThen( in instrumentAddress() local
1172 assert(cast<BranchInst>(CheckTerm)->isUnconditional()); in instrumentAddress()
1173 BasicBlock *NextBB = CheckTerm->getSuccessor(0); in instrumentAddress()
1174 IRB.SetInsertPoint(CheckTerm); in instrumentAddress()
1177 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false); in instrumentAddress()
1183 ReplaceInstWithInst(CheckTerm, NewTerm); in instrumentAddress()
DMemorySanitizer.cpp744 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin() local
746 IRBuilder<> IRBNew(CheckTerm); in storeOrigin()
816 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in materializeOneCheck() local
820 IRB.SetInsertPoint(CheckTerm); in materializeOneCheck()
/external/llvm/lib/CodeGen/
DSafeStack.cpp500 Instruction *CheckTerm = in checkStackGuard() local
503 IRBuilder<> IRBFail(CheckTerm); in checkStackGuard()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSafeStack.cpp474 Instruction *CheckTerm = in checkStackGuard() local
477 IRBuilder<> IRBFail(CheckTerm); in checkStackGuard()
/external/llvm-project/llvm/lib/CodeGen/
DSafeStack.cpp479 Instruction *CheckTerm = in checkStackGuard() local
482 IRBuilder<> IRBFail(CheckTerm); in checkStackGuard()