HomeSort by relevance Sort by last modified time
    Searched refs:getNumBlockIDs (Results 1 - 25 of 28) 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 67 MBBRanges.resize(mf->getNumBlockIDs());
InterferenceCache.cpp 81 Blocks.resize(MF->getNumBlockIDs());
LiveRangeCalc.cpp 21 unsigned N = MF->getNumBlockIDs();
SpillPlacement.cpp 179 BlockFrequency.resize(mf.getNumBlockIDs());
StackSlotColoring.cpp 297 SmallVector<SmallSet<unsigned, 4>, 4> NewDefs(MF.getNumBlockIDs());
SplitKit.cpp 51 LastSplitPoint(MF.getNumBlockIDs()) {}
173 ThroughBlocks.resize(MF.getNumBlockIDs());
    [all...]
LiveVariables.cpp 512 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
  /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 135 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);
LiveVariables.cpp 26 : enqueuedBlocks(cfg.getNumBlockIDs()),
494 llvm::BitVector everAnalyzedBlock(cfg->getNumBlockIDs());
ThreadSafety.cpp 742 CtxIndices.resize(CFGraph->getNumBlockIDs());
    [all...]
  /external/llvm/lib/Target/X86/
X86VZeroUpper.cpp 163 BBState.resize(MF.getNumBlockIDs(), 0);
164 BBSolved.resize(MF.getNumBlockIDs(), 0);
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 59 BlockSizes.resize(Fn.getNumBlockIDs());
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 60 BlockSizes.resize(Fn.getNumBlockIDs());
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 40 : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
51 if (!cfg.getNumBlockIDs())
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 98 llvm::BitVector live(cfg->getNumBlockIDs());
103 if (!AddEHEdges && count != cfg->getNumBlockIDs())
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 179 L->getCFG()->getNumBlockIDs());
291 LC->getCFG()->getNumBlockIDs());
ExprEngineCallAndReturn.cpp 149 if (CalleeCFG->getNumBlockIDs() > AMgr.InlineMaxFunctionSize)
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 241 /// getNumBlockIDs - Return the number of MBB ID's allocated.
243 unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 649 BBInfo.resize(MF->getNumBlockIDs());
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 745 /// getNumBlockIDs - Returns the total number of BlockIDs allocated (which
747 unsigned getNumBlockIDs() const { return NumBlockIDs; }
750 /// This is simply a renaming of the getNumBlockIDs(). This is necessary
    [all...]

Completed in 1354 milliseconds

1 2