Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCallPromotionUtils.cpp272 Instruction *ThenTerm = nullptr; in versionCallSite() local
274 SplitBlockAndInsertIfThenElse(Cond, CS.getInstruction(), &ThenTerm, &ElseTerm, in versionCallSite()
276 BasicBlock *ThenBlock = ThenTerm->getParent(); in versionCallSite()
286 NewInst->insertBefore(ThenTerm); in versionCallSite()
296 ThenTerm->eraseFromParent(); in versionCallSite()
DLowerMemIntrinsics.cpp305 Instruction *ThenTerm, *ElseTerm; in createMemMoveLoop() local
306 SplitBlockAndInsertIfThenElse(PtrCompare, InsertBefore, &ThenTerm, in createMemMoveLoop()
314 BasicBlock *CopyBackwardsBB = ThenTerm->getParent(); in createMemMoveLoop()
344 BranchInst::Create(ExitBB, LoopBB, CompareN, ThenTerm); in createMemMoveLoop()
345 ThenTerm->eraseFromParent(); in createMemMoveLoop()
DBasicBlockUtils.cpp978 Instruction **ThenTerm, in SplitBlockAndInsertIfThenElse() argument
987 *ThenTerm = BranchInst::Create(Tail, ThenBlock); in SplitBlockAndInsertIfThenElse()
988 (*ThenTerm)->setDebugLoc(SplitBefore->getDebugLoc()); in SplitBlockAndInsertIfThenElse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DBasicBlockUtils.h327 Instruction **ThenTerm,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp1109 Instruction *ThenTerm, Value *ValueIfFalse);
1535 Instruction *ThenTerm = SplitBlockAndInsertIfThen(MaskElem, I, false); in instrumentMaskedLoadOrStore() local
1536 InsertBefore = ThenTerm; in instrumentMaskedLoadOrStore()
2922 Instruction *ThenTerm, in createPHI() argument
2927 BasicBlock *ThenBlock = ThenTerm->getParent(); in createPHI()
3202 Instruction *ThenTerm, *ElseTerm; in processStaticAllocas() local
3203 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm); in processStaticAllocas()
3205 IRBuilder<> IRBPoison(ThenTerm); in processStaticAllocas()
DSanitizerCoverage.cpp900 auto ThenTerm = SplitBlockAndInsertIfThen(IsStackLower, &*IP, false); in InjectCoverageAtBlock() local
901 IRBuilder<> ThenIRB(ThenTerm); in InjectCoverageAtBlock()