Searched refs:pred_size (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCFGOptimizer.cpp186 if ((NumSuccs == 2) && LayoutSucc && (LayoutSucc->pred_size() == 1)) {
198 JumpAroundTarget->pred_size() == 1 &&
H A DHexagonEarlyIfConv.cpp286 unsigned TNP = TB->pred_size(), FNP = FB->pred_size();
451 if (B->pred_size() < 2)
533 if (TSB->pred_size() != 2)
1036 if (SB->pred_size() != 1)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLoopTraversal.cpp21 MBBInfos[MBBNumber].IncomingProcessed == MBB->pred_size();
H A DMachineDominators.cpp122 assert(PredBB->pred_size() == 1 && "A basic block resulting from a "
H A DMachineLoopInfo.cpp124 if (HB->pred_size() != 2 || HB->hasAddressTaken())
H A DIfConversion.cpp662 if (TrueBBI.BB->pred_size() > 1) {
688 if (TrueBBI.BB->pred_size() > 1) {
896 if (TrueBBI.BB->pred_size() > 1 || FalseBBI.BB->pred_size() > 1)
986 if (TrueBBI.BB->pred_size() > 1 || FalseBBI.BB->pred_size() > 1)
1547 (CvtBBI->CannotBeCopied && CvtMBB.pred_size() > 1)) {
1575 if (CvtMBB.pred_size() > 1) {
1633 (CvtBBI->CannotBeCopied && CvtMBB.pred_size() > 1)) {
1687 if (CvtMBB.pred_size() >
[all...]
H A DEarlyIfConversion.cpp442 if (Succ0->pred_size() != 1)
445 if (Succ0->pred_size() != 1 || Succ0->succ_size() != 1)
453 if (Succ1->pred_size() != 1 || Succ1->succ_size() != 1 ||
561 assert(Tail->pred_size() == 2 && "Cannot replace PHIs");
646 bool ExtraPreds = Tail->pred_size() != 2;
H A DMachineSink.cpp748 if (MBB->pred_size() != 1)
923 if (SuccToSinkTo->pred_size() > 1) {
1276 if (!SI->livein_empty() && SI->pred_size() == 1)
1349 assert((SuccBB->pred_size() == 1 && *SuccBB->pred_begin() == &CurBB) &&
H A DBranchFolding.cpp1091 if (I->pred_size() < 2) continue;
1348 if (SuccBB->pred_size() == 1)
1443 if (PriorCond.empty() && !PriorTBB && MBB->pred_size() == 1 &&
1553 if (!IsEmptyBlock(MBB) && MBB->pred_size() == 1 && OptForSize) {
1663 while(PI != MBB->pred_size()) {
1950 if (TBB->pred_size() > 1 || FBB->pred_size() > 1)
H A DImplicitNullChecks.cpp500 if (NotNullSucc->pred_size() != 1)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDILCFGStructurizer.cpp398 if (!AllowSideEntry && SrcMBB->pred_size() > 1)
420 bool MultiplePreds = MBB && (MBB->pred_size() > 1);
426 (BlkSize * (MBB->pred_size() - 1) > CloneInstrThreshold));
928 if (childBlk->pred_size() != 1 || isActiveLoophead(childBlk))
990 ((TrueMBB && TrueMBB->pred_size() > 1)
991 || (FalseMBB && FalseMBB->pred_size() > 1))) {
995 if (TrueMBB && TrueMBB->pred_size() > 1) {
1000 if (FalseMBB && FalseMBB->pred_size() > 1) {
1159 << TrueMBB->size() << " numPred = " << TrueMBB->pred_size();
1168 << FalseMBB->size() << " numPred = " << FalseMBB->pred_size();
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp90 if (node->pred_size() != 1 || node->succ_size() != 1)
98 if (succ->pred_size() != 1)
160 assert(node->pred_size() == 1 || node->succ_size() == 1);
287 return pred_size() == 1 && succ_size() == 1 &&
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp223 if (CB->pred_size() > 1)
227 if (CB->pred_size() == 0)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZMachineScheduler.cpp43 if (MBB->pred_size() == 1)
48 if (MBB->pred_size() == 2 && Loop != nullptr && Loop->getHeader() == MBB) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCEarlyReturn.cpp153 if (ReturnMBB.pred_size() == 1) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegBankSelect.h292 DstOrSplit->pred_size() == 1 && DstOrSplit->succ_size() == 1 &&
304 return Src.succ_size() > 1 && DstOrSplit->pred_size() > 1;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h200 unsigned pred_size() const { return Preds.size(); } function in class:clang::ento::ExplodedNode
207 return (pred_size() == 1);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp448 if (Succ0->pred_size() != 1)
452 if (Succ0->pred_size() != 1 || Succ0->succ_size() != 2)
H A DAArch64RedundantCopyElimination.cpp281 if (MBB->pred_size() != 1)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CondBrFolding.cpp173 if (PredMBB->pred_size() != 1 || !PredMBBInfo->CmpBrOnly)
398 if (MBB.pred_size() != 1)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGSort.cpp249 unsigned N = MBB.pred_size();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp97 if (Block->pred_size() == 1 && *Block->pred_begin())
1077 if (Block->pred_size() < 2)
1382 (*CurrBlock->succ_begin())->pred_size() > 1)) {
H A DReachableCode.cpp124 if (Current->pred_size() > 1) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DCFG.h121 inline unsigned pred_size(const BasicBlock *BB) { function in namespace:llvm
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLowOverheadLoops.cpp400 if (MBB->pred_size() > 1)
606 if (MBB->pred_size() == 1)

Completed in 186 milliseconds

123