Home
last modified time | relevance | path

Searched refs:SplitBlockAndInsertIfThen (Results 1 – 25 of 27) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DScalarizeMaskedMemIntrin.cpp224 SplitBlockAndInsertIfThen(Predicate, InsertPt, /*Unreachable=*/false, in scalarizeMaskedLoad()
354 SplitBlockAndInsertIfThen(Predicate, InsertPt, /*Unreachable=*/false, in scalarizeMaskedStore()
476 SplitBlockAndInsertIfThen(Predicate, InsertPt, /*Unreachable=*/false, in scalarizeMaskedGather()
603 SplitBlockAndInsertIfThen(Predicate, InsertPt, /*Unreachable=*/false, in scalarizeMaskedScatter()
714 SplitBlockAndInsertIfThen(Predicate, InsertPt, /*Unreachable=*/false, in scalarizeMaskedExpandLoad()
829 SplitBlockAndInsertIfThen(Predicate, InsertPt, /*Unreachable=*/false, in scalarizeMaskedCompressStore()
906 SplitBlockAndInsertIfThen(Predicate, InsertPt, /*Unreachable=*/false, in scalarizeMaskedVectorHistogram()
H A DPartiallyInlineLibCalls.cpp62 Instruction *LibCallTerm = SplitBlockAndInsertIfThen( in optimizeSQRT()
H A DSimpleLoopUnswitch.cpp2719 SplitBlockAndInsertIfThen(SI->getCondition(), SI, false, in turnSelectIntoBranch()
2775 SplitBlockAndInsertIfThen(GI->getArgOperand(0), GI, true, in turnGuardIntoBranch()
2778 // SplitBlockAndInsertIfThen inserts control flow that branches to in turnGuardIntoBranch()
H A DJumpThreading.cpp2971 SplitBlockAndInsertIfThen(Cond, SI, false, BranchWeights); in tryToUnfoldSelectInCurrBB()
H A DSROA.cpp1796 SplitBlockAndInsertIfThen(SI.getCondition(), &I, /*Unreachable=*/false, in rewriteMemOpOfSelect()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DKCFI.cpp111 SplitBlockAndInsertIfThen(Test, Call, false, VeryUnlikelyWeights); in run()
H A DAddressSanitizer.cpp1635 LoopInsertBefore = SplitBlockAndInsertIfThen(IsEVLZero, I, false); in instrumentMaskedLoadOrStore()
1661 Instruction *ThenTerm = SplitBlockAndInsertIfThen( in instrumentMaskedLoadOrStore()
1805 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false); in instrumentAMDGPUAddress()
1821 SplitBlockAndInsertIfThen(ReportCond, &*IRB.GetInsertPoint(), false, in genAMDGPUReportBlock()
1828 Trm = SplitBlockAndInsertIfThen(Cond, Trm, false); in genAMDGPUReportBlock()
1898 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in instrumentAddress()
1905 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false); in instrumentAddress()
1914 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, !Recover); in instrumentAddress()
3507 SplitBlockAndInsertIfThen(UseAfterReturnIsEnabled, InsBefore, false); in processStaticAllocas()
3530 SplitBlockAndInsertIfThen(NoFakeStack, InsBefore, false); in processStaticAllocas()
H A DHWAddressSanitizer.cpp933 R.TagMismatchTerm = SplitBlockAndInsertIfThen( in insertShadowTagCheck()
996 Instruction *CheckFailTerm = SplitBlockAndInsertIfThen( in instrumentMemAccessInline()
1005 SplitBlockAndInsertIfThen(PtrLowBitsOOB, TCI.TagMismatchTerm, false, in instrumentMemAccessInline()
1014 SplitBlockAndInsertIfThen(InlineTagMismatch, TCI.TagMismatchTerm, false, in instrumentMemAccessInline()
H A DSanitizerCoverage.cpp988 auto ThenTerm = SplitBlockAndInsertIfThen( in InjectCoverageAtBlock()
1007 auto ThenTerm = SplitBlockAndInsertIfThen( in InjectCoverageAtBlock()
H A DMemProfiler.cpp443 Instruction *ThenTerm = SplitBlockAndInsertIfThen(MaskElem, I, false); in instrumentMaskedLoadOrStore()
H A DDataFlowSanitizer.cpp1779 BranchInst *BI = cast<BranchInst>(SplitBlockAndInsertIfThen( in runImpl()
2549 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin()
H A DInstrProfiling.cpp763 Instruction *ThenTerm = SplitBlockAndInsertIfThen( in doSampling()
H A DMemorySanitizer.cpp1316 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in storeOrigin()
1414 Instruction *CheckTerm = SplitBlockAndInsertIfThen( in materializeOneCheck()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DGuardUtils.cpp37 SplitBlockAndInsertIfThen(Guard->getArgOperand(0), Guard, true); in makeGuardControlFlowExplicit()
H A DLibCallsShrinkWrap.cpp473 SplitBlockAndInsertIfThen(Cond, CI, false, BranchWeights, &DTU); in shrinkWrapCI()
H A DCallPromotionUtils.cpp296 SplitBlockAndInsertIfThen(Cond, &CB, false, BranchWeights); in versionCallSiteWithCond()
H A DBasicBlockUtils.cpp1608 Instruction *llvm::SplitBlockAndInsertIfThen(Value *Cond, in SplitBlockAndInsertIfThen() function in llvm
H A DSimplifyCFG.cpp4201 auto *T = SplitBlockAndInsertIfThen(CombinedPred, InsertPt, in mergeConditionalStoreToAddress()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h416 Instruction *SplitBlockAndInsertIfThen(Value *Cond, BasicBlock::iterator SplitBefore,
423 inline Instruction *SplitBlockAndInsertIfThen(Value *Cond, Instruction *SplitBefore,
429 return SplitBlockAndInsertIfThen(Cond, SplitBefore->getIterator(),
434 /// Similar to SplitBlockAndInsertIfThen, but the inserted block is on the false
454 /// SplitBlockAndInsertIfThenElse is similar to SplitBlockAndInsertIfThen,
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp312 SplitBlockAndInsertIfThen(cmp, cmp->getNextNode(), false); in lowerPrintfForGpu()
H A DAMDGPUAtomicOptimizer.cpp689 SplitBlockAndInsertIfThen(Cond, &I, false, nullptr, &DTU, nullptr); in optimizeAtomic()
844 SplitBlockAndInsertIfThen(Cond, &I, false, nullptr, &DTU, nullptr); in optimizeAtomic()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackProtector.cpp675 SplitBlockAndInsertIfThen(Cmp, CheckLoc,
H A DSafeStack.cpp476 SplitBlockAndInsertIfThen(Cmp, &RI, /* Unreachable */ true, Weights, DTU); in checkStackGuard()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp1188 SplitBlockAndInsertIfThen(Cond, &CB, /*Unreachable=*/false); in applySingleImplDevirt()
H A DLowerTypeTests.cpp805 IRBuilder<> ThenB(SplitBlockAndInsertIfThen(OffsetInRange, CI, false)); in lowerTypeTestCall()

12