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

12

/external/llvm/lib/CodeGen/
H A DEdgeBundles.cpp42 EC.grow(2 * MF->getNumBlockIDs());
59 for (unsigned i = 0, e = MF->getNumBlockIDs(); i != e; ++i) {
H A DSlotIndexes.cpp66 MBBRanges.resize(mf->getNumBlockIDs());
H A DInterferenceCache.cpp100 Blocks.resize(MF->getNumBlockIDs());
H A DLiveRangeCalc.cpp32 unsigned N = MF->getNumBlockIDs();
H A DMachineTraceMetrics.cpp62 BlockInfo.resize(MF->getNumBlockIDs());
63 ProcResourceCycles.resize(MF->getNumBlockIDs() *
400 assert(BlockInfo.size() == MF->getNumBlockIDs() && "Outdated BlockInfo size");
577 assert(BlockInfo.size() == MTM.MF->getNumBlockIDs() &&
H A DSpillPlacement.cpp208 BlockFrequencies.resize(mf.getNumBlockIDs());
H A DSplitKit.cpp52 LastSplitPoint(MF.getNumBlockIDs()) {}
172 ThroughBlocks.resize(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.cpp646 llvm::BitVector reachable(cfg->getNumBlockIDs());
649 if (numReachable == cfg->getNumBlockIDs())
659 if (numReachable == cfg->getNumBlockIDs())
674 if (numReachable == cfg->getNumBlockIDs())
H A DUninitializedValues.cpp148 unsigned n = cfg.getNumBlockIDs();
213 enqueuedBlocks(cfg.getNumBlockIDs(), true) {
521 SmallVector<unsigned, 32> SuccsVisited(cfg.getNumBlockIDs(), 0);
835 llvm::BitVector previouslyVisited(cfg.getNumBlockIDs());
837 llvm::BitVector wasAnalyzed(cfg.getNumBlockIDs(), false);
839 PruneBlocksHandler PBH(cfg.getNumBlockIDs());
H A DLiveVariables.cpp36 : enqueuedBlocks(cfg.getNumBlockIDs()),
500 if (cfg->getNumBlockIDs() > 300000)
508 llvm::BitVector everAnalyzedBlock(cfg->getNumBlockIDs());
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp60 BlockSizes.resize(Fn.getNumBlockIDs());
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp377 if (CalleeCFG->getNumBlockIDs() > AMgr.options.getAlwaysInlineSize())
789 if (CalleeCFG->getNumBlockIDs() > Opts.getMaxInlinableSize())
864 ((CalleeCFG->getNumBlockIDs() > Opts.getAlwaysInlineSize())
871 CalleeCFG->getNumBlockIDs() > 13) {
877 (CalleeCFG->getNumBlockIDs() > Opts.getAlwaysInlineSize()
H A DCoreEngine.cpp181 L->getCFG()->getNumBlockIDs());
292 LC->getCFG()->getNumBlockIDs());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp72 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
83 if (!cfg.getNumBlockIDs())
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp70 BlockSizes.resize(Fn.getNumBlockIDs());
/external/llvm/lib/Target/X86/
H A DX86VZeroUpper.cpp275 BlockStates.resize(MF.getNumBlockIDs());
/external/llvm/include/llvm/CodeGen/
H A DMachineFunction.h265 /// getNumBlockIDs - Return the number of MBB ID's allocated.
267 unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp251 llvm::SmallVector<RecursiveState, 16> states(cfg->getNumBlockIDs(),
289 llvm::BitVector live(cfg->getNumBlockIDs());
294 if (!AddEHEdges && count != cfg->getNumBlockIDs())
1972 NumCFGBlocks += cfg->getNumBlockIDs();
1974 cfg->getNumBlockIDs());
/external/llvm/lib/Target/AArch64/
H A DAArch64BranchRelaxation.cpp150 BlockInfo.resize(MF->getNumBlockIDs());
/external/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp656 BBInfo.resize(MF->getNumBlockIDs());
1048 for(unsigned i = BBNum + 1, e = MF->getNumBlockIDs(); i < e; ++i) {
/external/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp637 BBInfo.resize(MF->getNumBlockIDs());
1074 for(unsigned i = BBNum + 1, e = MF->getNumBlockIDs(); i < e; ++i) {
/external/clang/include/clang/Analysis/
H A DCFG.h931 /// getNumBlockIDs - Returns the total number of BlockIDs allocated (which
933 unsigned getNumBlockIDs() const { return NumBlockIDs; } function in class:clang::CFGBlock::CFG
936 /// This is simply a renaming of the getNumBlockIDs(). This is necessary

Completed in 5260 milliseconds

12