Searched refs:succ_size (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp277 /// return true iff src1Blk->succ_size() == 0 && src1Blk and src2Blk are in
401 while (SrcMBB && SrcMBB->succ_size() == 1) {
408 if (SrcMBB && SrcMBB->succ_size()==0)
583 assert(MBB->succ_size() == 2);
672 bool IsReturn = (MBB->succ_size() == 0);
775 assert(MBB->succ_size() <= 2);
879 if (EntryMBB->succ_size() == 0) {
985 if (MBB->succ_size() != 1)
999 if (MBB->succ_size() != 2)
1021 if (TrueMBB->succ_size()
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/
H A DHexagonCFGOptimizer.cpp145 unsigned NumSuccs = MBB->succ_size();
187 JumpAroundTarget->succ_size() == 1;
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp98 if (node->pred_size() != 1 || node->succ_size() != 1)
102 if (pred->succ_size() != 1)
164 assert(node->pred_size() == 1 || node->succ_size() == 1);
H A DCoreEngine.cpp175 assert (Entry->succ_size() == 1 &&
407 assert (B->succ_size() == 1);
446 assert (B->succ_size() == 1 &&
455 assert(B->succ_size() == 2);
467 assert(B->succ_size() == 2);
H A DExprEngineC.cpp538 assert(SrcBlock->succ_size() == 2);
H A DExprEngineCallAndReturn.cpp50 assert(Entry->succ_size() == 1);
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DMachineBranchProbabilityInfo.cpp36 assert(MBB->succ_size() < UINT32_MAX);
H A DTailDuplication.cpp613 if (TailBB->succ_size() != 1)
645 if (PredBB->succ_size() > 1)
725 unsigned NumSuccessors = PredBB->succ_size();
764 if (PredBB->succ_size() > 1)
851 // This has to check PrevBB->succ_size() because EH edges are ignored by
853 if (PrevBB->succ_size() == 1 &&
930 if (PredBB->succ_size() != 1)
H A DMachineBlockPlacement.cpp578 << Pred->succ_size() << " successors, "
580 if (Pred->succ_size() > 1)
598 (*BestPred->pred_begin())->succ_size() == 1 &&
1182 Statistic &NumBranches = (I->succ_size() > 1) ? NumCondBranches
1184 Statistic &BranchTakenFreq = (I->succ_size() > 1) ? CondBranchTakenFreq
H A DEarlyIfConversion.cpp343 if (Head->succ_size() != 2)
352 if (Succ0->pred_size() != 1 || Succ0->succ_size() != 1)
360 if (Succ1->pred_size() != 1 || Succ1->succ_size() != 1 ||
H A DMachineSink.cpp252 if (MBB.succ_size() <= 1 || MBB.empty()) return false;
434 if (A->succ_size() != 2)
440 if (OtherSuccBlock->succ_size() != 1 ||
H A DMachineVerifier.cpp481 if (MInfo.Succs.size() != I->succ_size())
569 } else if (MBB->succ_size() == LandingPadSuccs.size()) {
573 } else if (MBB->succ_size() != 1+LandingPadSuccs.size()) {
591 if (MBB->succ_size() != 1+LandingPadSuccs.size()) {
614 } else if (MBB->succ_size() == 1) {
622 } else if (MBB->succ_size() != 2) {
642 if (MBB->succ_size() == 1) {
650 } else if (MBB->succ_size() != 2) {
H A DRegisterCoalescer.cpp241 if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
2057 unsigned cl = LHS->MBB->pred_size() + LHS->MBB->succ_size();
2058 unsigned cr = RHS->MBB->pred_size() + RHS->MBB->succ_size();
H A DPHIElimination.cpp560 if (PreMBB->succ_size() == 1)
H A DBranchFolding.cpp684 const BasicBlock *BB = (SuccBB && MBB->succ_size() == 1) ?
1124 // This has to check PrevBB->succ_size() because EH edges are ignored by
1127 PrevBB.succ_size() == 1 &&
H A DMachineBasicBlock.cpp231 if (succ_size() > 2)
H A DMachineLICM.cpp720 if (BB->succ_size() >= 25)
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/
H A DUninitializedValues.cpp527 SuccsVisited[block->getBlockID()] = block->succ_size();
564 if (++SV == Pred->succ_size())
577 if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() &&
585 if (Succ && SuccsVisited[Succ->getBlockID()] >= Succ->succ_size() &&
H A DConsumed.cpp68 if (Block->succ_size() == 1 && *Block->succ_begin())
89 if (Block->succ_size() == 1 && *Block->succ_begin())
1492 if (CurrBlock->succ_size() > 1 ||
1493 (CurrBlock->succ_size() == 1 &&
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h180 unsigned succ_size() const { return Succs.size(); } function in class:clang::ento::ExplodedNode
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h288 unsigned succ_size() const { function in class:llvm::MachineBasicBlock
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCFG.h473 unsigned succ_size() const { return Succs.size(); }
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp891 if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp1058 if (MBB->pred_size() != 1 || MBB->succ_size() != 1)
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp944 while (B->empty() && !Term && B->succ_size() == 1) {

Completed in 254 milliseconds

12