HomeSort by relevance Sort by last modified time
    Searched refs:getBlockID (Results 1 - 15 of 15) sorted by null

  /external/clang/lib/Analysis/
CFGReachabilityAnalysis.cpp 28 const unsigned DstBlockID = Dst->getBlockID();
37 return reachable[DstBlockID][Src->getBlockID()];
46 ReachableSet &DstReachability = reachable[Dst->getBlockID()];
58 if (visited[block->getBlockID()])
60 visited[block->getBlockID()] = true;
65 DstReachability[block->getBlockID()] = true;
ReachableCode.cpp 58 unsigned blockID = block->getBlockID();
71 unsigned blockID = PredBlock->getBlockID();
130 if (Reachable[Block->getBlockID()])
171 if (Reachable[block->getBlockID()])
266 if (!Reachable[Start->getBlockID()]) {
268 Reachable[Start->getBlockID()] = true;
281 unsigned blockID = B->getBlockID();
320 if (reachable[block->getBlockID()])
UninitializedValues.cpp 194 unsigned idx = block->getBlockID();
208 unsigned idx = block->getBlockID();
219 llvm::errs() << block->getBlockID() << " :";
299 if (!Successor || enqueuedBlocks[Successor->getBlockID()])
302 enqueuedBlocks[Successor->getBlockID()] = true;
318 enqueuedBlocks[b->getBlockID()] = false;
622 wasAnalyzed[block->getBlockID()] = true;
655 if (wasAnalyzed[pred->getBlockID()]) {
703 wasAnalyzed[cfg.getEntry().getBlockID()] = true;
709 if (changed || !previouslyVisited[block->getBlockID()])
    [all...]
LiveVariables.cpp 41 if (block && !enqueuedBlocks[block->getBlockID()]) {
42 enqueuedBlocks[block->getBlockID()] = true;
82 enqueuedBlocks[b->getBlockID()] = false;
537 if (!everAnalyzedBlock[block->getBlockID()])
538 everAnalyzedBlock[block->getBlockID()] = true;
555 return A->getBlockID() < B->getBlockID();
581 llvm::errs() << "\n[ B" << (*it)->getBlockID()
ThreadSafety.cpp 747 int CurrBlockID = CurrBlock->getBlockID();
763 int PrevBlockID = (*PI)->getBlockID();
811 Context LoopBegin = BlockInfo[FirstLoopBlock->getBlockID()].EntryContext;
818 unsigned exitID = CFGraph->getExit().getBlockID();
830 CFGBlockInfo *CurrBlockInfo = &BlockInfo[CurrBlock->getBlockID()];
    [all...]
CFG.cpp     [all...]
  /external/clang/include/clang/Analysis/Analyses/
PostOrderCFGView.h 57 if (VisitedBlockIDs.test(Block->getBlockID()))
59 VisitedBlockIDs.set(Block->getBlockID());
67 return VisitedBlockIDs.test(Block->getBlockID());
Dominators.h 93 llvm::errs() << "(" << (*I)->getBlockID()
95 << DT->getNode(*I)->getIDom()->getBlock()->getBlockID()
97 else llvm::errs() << "(" << (*I)->getBlockID()
98 << "," << (*I)->getBlockID() << ")\n";
161 OS << "BB#" << BB->getBlockID();
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 81 reachable.insert(CB->getBlockID());
100 if (reachable.count(CB->getBlockID()))
108 if (!visited.count(CB->getBlockID()))
112 if (reachable.count(CB->getBlockID()))
174 visited.insert(CB->getBlockID());
178 if (!reachable.count((*I)->getBlockID())) {
181 reachable.insert(CB->getBlockID());
182 if (!visited.count((*I)->getBlockID()))
DeadStoresChecker.cpp 45 return reachable[block->getBlockID()];
60 llvm::BitVector::reference isReachable = reachable[block->getBlockID()];
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 177 FunctionSummaries->markVisitedBasicBlock(Entry->getBlockID(),
289 FunctionSummaries->markVisitedBasicBlock(Blk->getBlockID(),
326 unsigned BlockId = L.getBlock()->getBlockID();
ExprEngine.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 207 Block->getBlockID());
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 109 if (!live[b.getBlockID()]) {
136 if (!live[B.getBlockID()])
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 494 unsigned getBlockID() const { return BlockID; }
    [all...]

Completed in 308 milliseconds