Home
last modified time | relevance | path

Searched refs:CheckTerm (Results 1 – 5 of 5) 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/libbrillo/brillo/
Dasynchronous_signal_handler_unittest.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()