Home
last modified time | relevance | path

Searched refs:getNumBlockIDs (Results 1 – 25 of 121) sorted by relevance

12345

/external/llvm/lib/CodeGen/
DEdgeBundles.cpp42 EC.grow(2 * MF->getNumBlockIDs()); in runOnMachineFunction()
59 for (unsigned i = 0, e = MF->getNumBlockIDs(); i != e; ++i) { in runOnMachineFunction()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DEdgeBundles.cpp43 EC.grow(2 * MF->getNumBlockIDs()); in runOnMachineFunction()
60 for (unsigned i = 0, e = MF->getNumBlockIDs(); i != e; ++i) { in runOnMachineFunction()
DLoopTraversal.cpp26 MBBInfos.assign(MF.getNumBlockIDs(), MBBInfo()); in traverse()
/external/llvm-project/llvm/lib/CodeGen/
DEdgeBundles.cpp44 EC.grow(2 * MF->getNumBlockIDs()); in runOnMachineFunction()
61 for (unsigned i = 0, e = MF->getNumBlockIDs(); i != e; ++i) { in runOnMachineFunction()
DBasicBlockSections.cpp212 V.resize(MF.getNumBlockIDs()); in getBBClusterInfoForFunction()
215 if (bbClusterInfo.MBBNumber >= MF.getNumBlockIDs()) in getBBClusterInfoForFunction()
281 MF.getNumBlockIDs()); in sortBasicBlocksAndUpdateBranches()
DLiveRangeCalc.cpp44 unsigned NumBlocks = MF->getNumBlockIDs(); in resetLiveOutMap()
305 unsigned N = MF->getNumBlockIDs(); in findReachingDefs()
439 BitVector DefBlocks(MF.getNumBlockIDs()); in isJointlyDominated()
DLoopTraversal.cpp26 MBBInfos.assign(MF.getNumBlockIDs(), MBBInfo()); in traverse()
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/X86/
DSnippetRepetitorTest.cpp69 ASSERT_EQ(MF->getNumBlockIDs(), 1u); in TEST_F()
78 ASSERT_EQ(MF->getNumBlockIDs(), 3u); in TEST_F()
/external/llvm-project/llvm/lib/Target/ARM/
DARMBasicBlockInfo.cpp126 << " - blocks: " << MF.getNumBlockIDs() << "\n"); in adjustBBOffsetsAfter()
128 for(unsigned i = BBNum + 1, e = MF.getNumBlockIDs(); i < e; ++i) { in adjustBBOffsetsAfter()
DARMBasicBlockInfo.h125 BBInfo.resize(MF.getNumBlockIDs()); in computeAllBlockSizes()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMBasicBlockInfo.cpp126 << " - blocks: " << MF.getNumBlockIDs() << "\n"); in adjustBBOffsetsAfter()
128 for(unsigned i = BBNum + 1, e = MF.getNumBlockIDs(); i < e; ++i) { in adjustBBOffsetsAfter()
DARMBasicBlockInfo.h125 BBInfo.resize(MF.getNumBlockIDs()); in computeAllBlockSizes()
/external/clang/lib/Analysis/
DUninitializedValues.cpp149 unsigned n = cfg.getNumBlockIDs(); in computeSetOfDeclarations()
214 enqueuedBlocks(cfg.getNumBlockIDs(), true) { in DataflowWorklist()
580 SmallVector<unsigned, 32> SuccsVisited(cfg.getNumBlockIDs(), 0); in getUninitUse()
894 llvm::BitVector previouslyVisited(cfg.getNumBlockIDs()); in runUninitializedVariablesAnalysis()
896 llvm::BitVector wasAnalyzed(cfg.getNumBlockIDs(), false); in runUninitializedVariablesAnalysis()
898 PruneBlocksHandler PBH(cfg.getNumBlockIDs()); in runUninitializedVariablesAnalysis()
DCFGReachabilityAnalysis.cpp23 : analyzed(cfg.getNumBlockIDs(), false) {} in CFGReverseBlockReachabilityAnalysis()
DPostOrderCFGView.cpp21 Blocks.reserve(cfg->getNumBlockIDs()); in PostOrderCFGView()
DReachableCode.cpp646 llvm::BitVector reachable(cfg->getNumBlockIDs()); in FindUnreachableCode()
649 if (numReachable == cfg->getNumBlockIDs()) in FindUnreachableCode()
659 if (numReachable == cfg->getNumBlockIDs()) in FindUnreachableCode()
674 if (numReachable == cfg->getNumBlockIDs()) in FindUnreachableCode()
/external/llvm-project/clang/lib/Analysis/
DCFGReachabilityAnalysis.cpp24 : analyzed(cfg.getNumBlockIDs(), false) {} in CFGReverseBlockReachabilityAnalysis()
DPostOrderCFGView.cpp22 Blocks.reserve(cfg->getNumBlockIDs()); in PostOrderCFGView()
DUninitializedValues.cpp164 unsigned n = cfg.getNumBlockIDs(); in computeSetOfDeclarations()
558 SmallVector<unsigned, 32> SuccsVisited(cfg.getNumBlockIDs(), 0); in getUninitUse()
936 llvm::BitVector previouslyVisited(cfg.getNumBlockIDs()); in runUninitializedVariablesAnalysis()
938 llvm::BitVector wasAnalyzed(cfg.getNumBlockIDs(), false); in runUninitializedVariablesAnalysis()
940 PruneBlocksHandler PBH(cfg.getNumBlockIDs()); in runUninitializedVariablesAnalysis()
DReachableCode.cpp688 llvm::BitVector reachable(cfg->getNumBlockIDs()); in FindUnreachableCode()
691 if (numReachable == cfg->getNumBlockIDs()) in FindUnreachableCode()
701 if (numReachable == cfg->getNumBlockIDs()) in FindUnreachableCode()
716 if (numReachable == cfg->getNumBlockIDs()) in FindUnreachableCode()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp380 if (CalleeCFG->getNumBlockIDs() > AMgr.options.getAlwaysInlineSize()) in examineStackFrames()
778 if (CalleeCFG->getNumBlockIDs() > Opts.getMaxInlinableSize()) in mayInlineDecl()
853 ((CalleeCFG->getNumBlockIDs() > Opts.getAlwaysInlineSize()) in shouldInlineCall()
860 CalleeCFG->getNumBlockIDs() >= in shouldInlineCall()
867 (CalleeCFG->getNumBlockIDs() > Opts.getAlwaysInlineSize() in shouldInlineCall()
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyCFGSort.cpp97 unsigned(MBB->getNumber() + 1) < MF->getNumBlockIDs() in maybeUpdateTerminator()
195 SmallVector<unsigned, 16> NumPredsLeft(MF.getNumBlockIDs(), 0); in sortBlocks()
/external/clang/include/clang/Analysis/Analyses/
DPostOrderCFGView.h46 CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {} in CFGBlockSet()
/external/llvm-project/clang/include/clang/Analysis/FlowSensitive/
DDataflowWorklist.h31 : EnqueuedBlocks(Cfg.getNumBlockIDs()), POV(POV), WorkList(C) {} in DataflowWorklistBase()
/external/llvm-project/clang/include/clang/Analysis/Analyses/
DPostOrderCFGView.h47 CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {} in CFGBlockSet()

12345