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

123

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDILCFGStructurizer.cpp273 /// return true iff src1Blk->succ_size() == 0 && src1Blk and src2Blk are in
394 while (SrcMBB && SrcMBB->succ_size() == 1) {
401 if (SrcMBB && SrcMBB->succ_size()==0)
566 assert(MBB->succ_size() == 2);
645 bool IsReturn = (MBB->succ_size() == 0);
742 assert(MBB->succ_size() <= 2);
836 if (EntryMBB->succ_size() == 0) {
924 if (MBB->succ_size() != 1)
938 if (MBB->succ_size() != 2)
960 if (TrueMBB->succ_size()
[all...]
H A DSIOptimizeExecMaskingPreRA.cpp287 if (Pred->succ_size() == 1)
H A DAMDGPUMachineCFGStructurizer.cpp628 if (ExitMBB->succ_size() == 0) {
1255 if (Entry->succ_size() != 2) {
1266 } else if ((Current->succ_size() == 1) &&
1282 if (MBB->succ_size() == 1) {
1335 if (CI->getMBBMRT()->getMBB()->succ_size() > 1) {
1711 if (MFI.succ_size() == 0) {
1799 unsigned SuccSize = StartMBB->succ_size();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCFGOptimizer.cpp157 unsigned NumSuccs = MBB->succ_size();
199 JumpAroundTarget->succ_size() == 1;
H A DHexagonEarlyIfConv.cpp231 if (B->succ_size() != 1)
287 unsigned TNS = TB->succ_size(), FNS = FB->succ_size();
367 if (B->succ_size() == 0)
573 if (FP.TrueB && FP.TrueB->succ_size() > 0) {
578 if (FP.FalseB && FP.FalseB->succ_size() > 0) {
880 while (FP.SplitB->succ_size() > 0) {
973 while (B->succ_size() > 0)
1034 if (FP.SplitB->succ_size() != 1)
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp89 if (node->pred_size() != 1 || node->succ_size() != 1)
93 if (pred->succ_size() != 1)
159 assert(node->pred_size() == 1 || node->succ_size() == 1);
286 return pred_size() == 1 && succ_size() == 1 &&
288 getFirstPred()->succ_size() == 1;
H A DCoreEngine.cpp88 assert(Entry->succ_size() == 1 && "Entry block must have 1 successor.");
363 assert(B->succ_size() == 1);
411 assert(B->succ_size() == 1 &&
425 assert(B->succ_size() == 2);
437 assert(B->succ_size() == 2);
448 assert(B->succ_size() == 2);
H A DLoopUnrolling.cpp244 if (N->succ_size() > 1)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp712 if (BB.succ_size() != Successors.size())
732 if (BB->succ_size() == 1)
915 if (BB->succ_size() != 2 || ViableSuccs.size() != 2)
1165 if (Succ->succ_size() == 0)
1189 if ((NumDup > Succ->succ_size()) || !Duplicate)
1241 if (BB.succ_size() != 2)
1328 if (BB->succ_size() == 2) {
1861 if (Pred->succ_size() != 2)
2044 << Pred->succ_size() << " successors, ";
2046 if (Pred->succ_size() >
[all...]
H A DTailDuplicator.cpp682 if (TailBB->succ_size() != 1)
703 if (PredBB->succ_size() > 1)
780 assert(PredBB->succ_size() <= 1);
794 if (PredBB->succ_size() > 1)
914 // This has to check PrevBB->succ_size() because EH edges are ignored by
916 if (PrevBB->succ_size() == 1 &&
996 if (PredBB->succ_size() != 1)
H A DBranchFolding.cpp587 (!AfterPlacement || MBB1->succ_size() == 1)) {
618 if (MBB->succ_size() != 0 && !MBB->canFallThrough())
635 (MBB1->succ_size() == 1 || !AfterPlacement) &&
744 const BasicBlock *BB = (SuccBB && MBB->succ_size() == 1) ?
1150 SmallVector<BlockFrequency, 2> EdgeFreqLs(TailMBB.succ_size());
1163 if (TailMBB.succ_size() <= 1)
1175 if (TailMBB.succ_size() <= 1)
1312 if (PredBB->succ_size() == 1)
1402 // This has to check PrevBB->succ_size() because EH edges are ignored by
1405 PrevBB.succ_size()
[all...]
H A DEarlyIfConversion.cpp436 if (Head->succ_size() != 2)
445 if (Succ0->pred_size() != 1 || Succ0->succ_size() != 1)
453 if (Succ1->pred_size() != 1 || Succ1->succ_size() != 1 ||
H A DMIRPrinter.cpp576 if (MBB.succ_size() <= 1)
604 if (GuessedSuccs.size() != MBB.succ_size())
H A DPHIElimination.cpp609 if (PreMBB->succ_size() == 1)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegionInfo.h45 return BB->succ_size();
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DCFG.h257 inline unsigned succ_size(const Instruction *I) { function in namespace:llvm
282 inline unsigned succ_size(const BasicBlock *BB) { function in namespace:llvm
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h199 unsigned succ_size() const { return Succs.size(); } function in class:clang::ento::ExplodedNode
521 return N->succ_size() == 1 && N->getFirstSucc()->isTrivial();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DUninitializedValues.cpp563 SuccsVisited[block->getBlockID()] = block->succ_size();
625 if (++SV == Pred->succ_size())
637 if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() &&
645 if (Succ && SuccsVisited[Succ->getBlockID()] >= Succ->succ_size() &&
H A DReachableCode.cpp118 assert(Current->succ_size() == 2);
120 } else if (!Current->getTerminatorStmt() && Current->succ_size() == 1) {
H A DConsumed.cpp70 if (Block->succ_size() == 1 && *Block->succ_begin())
91 if (Block->succ_size() == 1 && *Block->succ_begin())
1380 if (CurrBlock->succ_size() > 1 ||
1381 (CurrBlock->succ_size() == 1 &&
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp442 if (Head->succ_size() != 2)
452 if (Succ0->pred_size() != 1 || Succ0->succ_size() != 2)
H A DAArch64RedundantCopyElimination.cpp287 if (PredMBB->succ_size() != 2)
H A DAArch64SpeculationHardening.cpp210 assert(MBB.succ_size() == 2);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBranchCoalescing.cpp289 if (Cand.BranchBlock->succ_size() != 2) {

Completed in 400 milliseconds

123