reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
   47     CFGBlockSet(const CFG *G) : VisitedBlockIDs(G->getNumBlockIDs(), false) {}
tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
   24     : analyzed(cfg.getNumBlockIDs(), false) {}
tools/clang/lib/Analysis/Consumed.cpp
 1318   BlockInfo = ConsumedBlockInfo(CFGraph->getNumBlockIDs(), SortedGraph);
tools/clang/lib/Analysis/LiveVariables.cpp
   38     : enqueuedBlocks(cfg.getNumBlockIDs()),
  551   if (cfg->getNumBlockIDs() > 300000)
  559   llvm::BitVector everAnalyzedBlock(cfg->getNumBlockIDs());
tools/clang/lib/Analysis/PostOrderCFGView.cpp
   22   Blocks.reserve(cfg->getNumBlockIDs());
tools/clang/lib/Analysis/ReachableCode.cpp
  687   llvm::BitVector reachable(cfg->getNumBlockIDs());
  690   if (numReachable == cfg->getNumBlockIDs())
  700     if (numReachable == cfg->getNumBlockIDs())
  715     if (numReachable == cfg->getNumBlockIDs())
tools/clang/lib/Analysis/ThreadSafety.cpp
  731   CtxIndices.resize(CFGraph->getNumBlockIDs());
 2282   BlockInfo.resize(CFGraph->getNumBlockIDs(),
tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
  813   unsigned NBlocks = Cfg->getNumBlockIDs();
tools/clang/lib/Analysis/UninitializedValues.cpp
  163   unsigned n = cfg.getNumBlockIDs();
  229         enqueuedBlocks(cfg.getNumBlockIDs(), true) {
  605     SmallVector<unsigned, 32> SuccsVisited(cfg.getNumBlockIDs(), 0);
  928   llvm::BitVector previouslyVisited(cfg.getNumBlockIDs());
  930   llvm::BitVector wasAnalyzed(cfg.getNumBlockIDs(), false);
  932   PruneBlocksHandler PBH(cfg.getNumBlockIDs());
tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  284   llvm::BitVector Queued(Body->getNumBlockIDs());
  321   llvm::BitVector Reachable(BodyCFG->getNumBlockIDs());
  403   llvm::BitVector live(cfg->getNumBlockIDs());
  408   if (!AddEHEdges && count != cfg->getNumBlockIDs())
 2249       NumCFGBlocks += cfg->getNumBlockIDs();
 2251                                          cfg->getNumBlockIDs());
tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
   72     : cfg(cfg), reachable(cfg.getNumBlockIDs(), false) {}
   83   if (!cfg.getNumBlockIDs())
tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
   94                                              L->getCFG()->getNumBlockIDs());
  217                                            LC->getCFG()->getNumBlockIDs());
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
  384   return Cfg->getNumBlockIDs() > AMgr.options.MaxInlinableSize;