HomeSort by relevance Sort by last modified time
    Searched refs:getNumBlockIDs (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/lib/CodeGen/
EdgeBundles.cpp 42 EC.grow(2 * MF->getNumBlockIDs());
61 for (unsigned i = 0, e = MF->getNumBlockIDs(); i != e; ++i) {
SlotIndexes.cpp 66 MBBRanges.resize(mf->getNumBlockIDs());
InterferenceCache.cpp 83 Blocks.resize(MF->getNumBlockIDs());
LiveRangeCalc.cpp 31 unsigned N = MF->getNumBlockIDs();
SpillPlacement.cpp 179 BlockFrequency.resize(mf.getNumBlockIDs());
MachineTraceMetrics.cpp 59 BlockInfo.resize(MF->getNumBlockIDs());
307 assert(BlockInfo.size() == MF->getNumBlockIDs() && "Outdated BlockInfo size");
485 assert(BlockInfo.size() == MTM.MF->getNumBlockIDs() &&
    [all...]
StackSlotColoring.cpp 295 SmallVector<SmallSet<unsigned, 4>, 4> NewDefs(MF.getNumBlockIDs());
SplitKit.cpp 51 LastSplitPoint(MF.getNumBlockIDs()) {}
173 ThroughBlocks.resize(MF.getNumBlockIDs());
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
PostOrderCFGView.h 46 CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {}
  /external/clang/lib/Analysis/
CFGReachabilityAnalysis.cpp 23 : analyzed(cfg.getNumBlockIDs(), false) {}
PostOrderCFGView.cpp 21 Blocks.reserve(cfg->getNumBlockIDs());
ReachableCode.cpp 299 llvm::BitVector reachable(cfg->getNumBlockIDs());
301 if (numReachable == cfg->getNumBlockIDs())
311 if (numReachable == cfg->getNumBlockIDs())
326 if (numReachable == cfg->getNumBlockIDs())
UninitializedValues.cpp 148 unsigned n = cfg.getNumBlockIDs();
213 enqueuedBlocks(cfg.getNumBlockIDs(), true) {
523 SmallVector<unsigned, 32> SuccsVisited(cfg.getNumBlockIDs(), 0);
819 llvm::BitVector previouslyVisited(cfg.getNumBlockIDs());
821 llvm::BitVector wasAnalyzed(cfg.getNumBlockIDs(), false);
823 PruneBlocksHandler PBH(cfg.getNumBlockIDs());
LiveVariables.cpp 36 : enqueuedBlocks(cfg.getNumBlockIDs()),
516 if (cfg->getNumBlockIDs() > 300000)
524 llvm::BitVector everAnalyzedBlock(cfg->getNumBlockIDs());
  /external/llvm/lib/Target/X86/
X86VZeroUpper.cpp 172 BBState.resize(MF.getNumBlockIDs(), 0);
173 BBSolved.resize(MF.getNumBlockIDs(), 0);
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 59 BlockSizes.resize(Fn.getNumBlockIDs());
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 69 BlockSizes.resize(Fn.getNumBlockIDs());
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 73 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
84 if (!cfg.getNumBlockIDs())
  /external/llvm/lib/Target/AArch64/
AArch64BranchFixupPass.cpp 257 BBInfo.resize(MF->getNumBlockIDs());
411 for(unsigned i = BBNum + 1, e = MF->getNumBlockIDs(); i < e; ++i) {
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 374 if (CalleeCFG->getNumBlockIDs() > AMgr.options.getAlwaysInlineSize())
704 ((CalleeCFG->getNumBlockIDs() > Opts.getAlwaysInlineSize())
713 if (CalleeCFG->getNumBlockIDs() > Opts.getMaxInlinableSize())
744 CalleeCFG->getNumBlockIDs() > 13) {
    [all...]
CoreEngine.cpp 181 L->getCFG()->getNumBlockIDs());
292 LC->getCFG()->getNumBlockIDs());
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 263 /// getNumBlockIDs - Return the number of MBB ID's allocated.
265 unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 106 llvm::BitVector live(cfg->getNumBlockIDs());
111 if (!AddEHEdges && count != cfg->getNumBlockIDs())
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 636 BBInfo.resize(MF->getNumBlockIDs());
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 779 /// getNumBlockIDs - Returns the total number of BlockIDs allocated (which
781 unsigned getNumBlockIDs() const { return NumBlockIDs; }
784 /// This is simply a renaming of the getNumBlockIDs(). This is necessary
    [all...]

Completed in 660 milliseconds

1 2