/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblySortRegion.h | 37 virtual unsigned getNumBlocks() const = 0; 52 unsigned getNumBlocks() const override { return Unit->getNumBlocks(); } in getNumBlocks() function
|
H A D | WebAssemblyExceptionInfo.h | 85 unsigned getNumBlocks() const { return Blocks.size(); } in getNumBlocks() function
|
H A D | WebAssemblyCFGSort.cpp | 179 : TheRegion(R), NumBlocksLeft(R->getNumBlocks()) {} in Entry()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | LoopIterator.h | 116 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) { in LoopBlocksDFS() 117 PostBlocks.reserve(Container->getNumBlocks()); in LoopBlocksDFS() 126 bool isComplete() const { return PostBlocks.size() == L->getNumBlocks(); } in isComplete() 218 assert(DFS.L->getNumBlocks() && "po_iterator cannot handle an empty graph"); in begin()
|
H A D | LoopInfoImpl.h | 343 if (VisitedBBs.size() != getNumBlocks()) { in verifyLoop()
|
H A D | LoopInfo.h | 185 unsigned getNumBlocks() const { in getNumBlocks() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/MSF/ |
H A D | MappedBlockStream.h | 73 uint32_t getNumBlocks() const { return StreamLayout.Blocks.size(); } in getNumBlocks() function 143 uint32_t getNumBlocks() const { return ReadInterface.getNumBlocks(); } in getNumBlocks() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | ExpandMemCmp.cpp | 133 unsigned getNumBlocks(); 257 unsigned MemCmpExpansion::getNumBlocks() { in getNumBlocks() function in __anondeba239e0111::MemCmpExpansion 265 for (unsigned i = 0; i < getNumBlocks(); i++) { in createLoadCmpBlocks() 572 for (unsigned I = 0; I < getNumBlocks(); ++I) { in getMemCmpExpansionZeroCase() 624 if (getNumBlocks() != 1) { in getMemCmpExpansion() 651 return getNumBlocks() == 1 ? getMemCmpEqZeroOneBlock() in getMemCmpExpansion() 654 if (getNumBlocks() == 1) in getMemCmpExpansion() 657 for (unsigned I = 0; I < getNumBlocks(); ++I) { in getMemCmpExpansion()
|
H A D | MachinePipeliner.cpp | 321 if (L.getNumBlocks() != 1) { in canPipelineLoop() 326 << ore::NV("NumBlocks", L.getNumBlocks()); in canPipelineLoop()
|
H A D | MachineBlockPlacement.cpp | 2240 if (L.getNumBlocks() == 1) { in findBestLoopExit()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | LoopSimplifyCFG.cpp | 261 assert(L.getNumBlocks() == LiveLoopBlocks.size() + DeadLoopBlocks.size() && in analyze() 574 L.getNumBlocks()) { in run()
|
H A D | LoopIdiomRecognize.cpp | 1360 if (ApplyCodeSizeHeuristics && CurLoop->getNumBlocks() > 1) { in avoidLIRForMultiBlockLoop() 1662 if (CurLoop->getNumBackEdges() != 1 || CurLoop->getNumBlocks() != 1) in recognizeAndInsertFFS() 1765 if (CurLoop->getNumBackEdges() != 1 || CurLoop->getNumBlocks() != 1) in recognizePopcount() 2104 if (CurLoop->getNumBlocks() != 1 || CurLoop->getNumBackEdges() != 1) { in detectShiftUntilBitTestIdiom() 2439 if (CurLoop->getNumBlocks() != 1 || CurLoop->getNumBackEdges() != 1) { in detectShiftUntilZeroIdiom()
|
H A D | LoopRerollPass.cpp | 1665 << Header->getName() << " (" << L->getNumBlocks() in runOnLoop() 1669 if (L->getNumBlocks() > 1) in runOnLoop()
|
H A D | SimpleLoopUnswitch.cpp | 1024 NewBlocks.reserve(L.getNumBlocks() + ExitBlocks.size()); in buildClonedLoopBlocks() 1203 ClonedL.reserveBlocks(OrigL.getNumBlocks()); in cloneLoopNest()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
H A D | HexagonVectorLoopCarriedReuse.cpp | 253 if (CurLoop->getNumBlocks() != 1) in run() 580 assert((CurLoop->getNumBlocks() == 1) && in doVLCR()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorizationLegality.cpp | 984 assert(TheLoop->getNumBlocks() > 1 && "Single block loops are vectorizable"); in canVectorizeWithIfConvert() 1176 unsigned NumBlocks = TheLoop->getNumBlocks(); in canVectorize()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | LoopInfo.cpp | 717 if (Unloop.getNumBlocks()) { in updateBlockParents() 742 assert(NIters < Unloop.getNumBlocks() && "runaway iterative algorithm"); in updateBlockParents()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/ |
H A D | MappedBlockStream.cpp | 175 while (Last < getNumBlocks() - 1) { in readLongestContiguousChunk()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.cpp | 113 L->getNumBlocks() == 1) in getPreferredAddressingMode() 2089 if (L->getNumBlocks() > 1) { in preferPredicateOverEpilogue() 2150 << "Blocks: " << L->getNumBlocks() << "\n" in getUnrollingPreferences() 2160 if (ST->hasBranchPredictor() && L->getNumBlocks() > 4) in getUnrollingPreferences()
|
H A D | ARMLowOverheadLoops.cpp | 407 !CannotTailPredicate && ML.getNumBlocks() == 1; in IsTailPredicationLegal() 991 assert(ML.getNumBlocks() == 1 && "Expected single block loop!"); in ValidateLiveOuts()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDILCFGStructurizer.cpp | 1003 if (ExaminedLoop->getNumBlocks() == 0 || Visited[ExaminedLoop]) in loopendPatternMatch()
|