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

12

/external/llvm/lib/CodeGen/
H A DEdgeBundles.cpp42 EC.grow(2 * MF->getNumBlockIDs());
61 for (unsigned i = 0, e = MF->getNumBlockIDs(); i != e; ++i) {
H A DSlotIndexes.cpp67 MBBRanges.resize(mf->getNumBlockIDs());
H A DInterferenceCache.cpp81 Blocks.resize(MF->getNumBlockIDs());
H A DLiveRangeCalc.cpp21 unsigned N = MF->getNumBlockIDs();
H A DSpillPlacement.cpp179 BlockFrequency.resize(mf.getNumBlockIDs());
H A DStackSlotColoring.cpp297 SmallVector<SmallSet<unsigned, 4>, 4> NewDefs(MF.getNumBlockIDs());
H A DSplitKit.cpp51 LastSplitPoint(MF.getNumBlockIDs()) {}
173 ThroughBlocks.resize(MF.getNumBlockIDs());
H A DLiveVariables.cpp512 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h46 CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {}
/external/clang/lib/Analysis/
H A DCFGReachabilityAnalysis.cpp23 : analyzed(cfg.getNumBlockIDs(), false) {}
H A DPostOrderCFGView.cpp21 Blocks.reserve(cfg->getNumBlockIDs());
H A DReachableCode.cpp299 llvm::BitVector reachable(cfg->getNumBlockIDs());
301 if (numReachable == cfg->getNumBlockIDs())
311 if (numReachable == cfg->getNumBlockIDs())
326 if (numReachable == cfg->getNumBlockIDs())
H A DUninitializedValues.cpp135 unsigned n = cfg.getNumBlockIDs();
143 unsigned n = cfg.getNumBlockIDs();
287 DataflowWorklist(const CFG &cfg) : enqueuedBlocks(cfg.getNumBlockIDs()) {}
700 llvm::BitVector previouslyVisited(cfg.getNumBlockIDs());
702 llvm::BitVector wasAnalyzed(cfg.getNumBlockIDs(), false);
H A DLiveVariables.cpp26 : enqueuedBlocks(cfg.getNumBlockIDs()),
494 llvm::BitVector everAnalyzedBlock(cfg->getNumBlockIDs());
H A DThreadSafety.cpp742 CtxIndices.resize(CFGraph->getNumBlockIDs());
1488 std::vector<CFGBlockInfo> BlockInfo(CFGraph->getNumBlockIDs(),
/external/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp163 BBState.resize(MF.getNumBlockIDs(), 0);
164 BBSolved.resize(MF.getNumBlockIDs(), 0);
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp59 BlockSizes.resize(Fn.getNumBlockIDs());
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp60 BlockSizes.resize(Fn.getNumBlockIDs());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp40 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
51 if (!cfg.getNumBlockIDs())
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp98 llvm::BitVector live(cfg->getNumBlockIDs());
103 if (!AddEHEdges && count != cfg->getNumBlockIDs())
977 NumCFGBlocks += cfg->getNumBlockIDs();
979 cfg->getNumBlockIDs());
/external/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp179 L->getCFG()->getNumBlockIDs());
291 LC->getCFG()->getNumBlockIDs());
H A DExprEngineCallAndReturn.cpp149 if (CalleeCFG->getNumBlockIDs() > AMgr.InlineMaxFunctionSize)
/external/llvm/include/llvm/CodeGen/
H A DMachineFunction.h241 /// getNumBlockIDs - Return the number of MBB ID's allocated.
243 unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
/external/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp649 BBInfo.resize(MF->getNumBlockIDs());
1086 for(unsigned i = BBNum + 1, e = MF->getNumBlockIDs(); i < e; ++i) {
/external/clang/include/clang/Analysis/
H A DCFG.h745 /// getNumBlockIDs - Returns the total number of BlockIDs allocated (which
747 unsigned getNumBlockIDs() const { return NumBlockIDs; } function in class:clang::CFGBlock::CFG
750 /// This is simply a renaming of the getNumBlockIDs(). This is necessary

Completed in 218 milliseconds

12