HomeSort by relevance Sort by last modified time
    Searched refs:getBlockID (Results 1 - 14 of 14) 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()])
264 if (!Reachable[Start->getBlockID()]) {
266 Reachable[Start->getBlockID()] = true;
279 unsigned blockID = B->getBlockID();
318 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 43 if (VisitedBlockIDs.test(Block->getBlockID()))
45 VisitedBlockIDs.set(Block->getBlockID());
53 return VisitedBlockIDs.test(Block->getBlockID());
138 if (block && !enqueuedBlocks[block->getBlockID()]) {
139 enqueuedBlocks[block->getBlockID()] = true;
180 enqueuedBlocks[b->getBlockID()] = false;
604 if (!everAnalyzedBlock[block->getBlockID()])
605 everAnalyzedBlock[block->getBlockID()] = true;
622 return A->getBlockID() < B->getBlockID();
    [all...]
ThreadSafety.cpp 72 if (VisitedBlockIDs.test(Block->getBlockID()))
74 VisitedBlockIDs.set(Block->getBlockID());
82 return VisitedBlockIDs.test(Block->getBlockID());
740 Lockset &InitialLockset = EntryLocksets[FirstBlock->getBlockID()];
768 int CurrBlockID = CurrBlock->getBlockID();
797 int PrevBlockID = (*PI)->getBlockID();
828 Lockset PreLoop = EntryLocksets[FirstLoopBlock->getBlockID()];
835 Lockset InitialLockset = EntryLocksets[CFGraph->getEntry().getBlockID()];
836 Lockset FinalLockset = ExitLocksets[CFGraph->getExit().getBlockID()];
    [all...]
CFG.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 78 reachable.insert(CB->getBlockID());
92 if (reachable.count(CB->getBlockID()))
100 if (!visited.count(CB->getBlockID()))
104 if (reachable.count(CB->getBlockID()))
158 visited.insert(CB->getBlockID());
162 if (!reachable.count((*I)->getBlockID())) {
165 reachable.insert(CB->getBlockID());
166 if (!visited.count((*I)->getBlockID()))
DeadStoresChecker.cpp 44 return reachable[block->getBlockID()];
59 llvm::BitVector::reference isReachable = reachable[block->getBlockID()];
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 272 C.Block->getBlockID());
574 B.getBlockID());
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 823 block->getBlockID()) >= AMgr.getMaxVisit()) {
    [all...]
BugReporterVisitors.cpp 92 if (block->getBlockID() == 0) {
CoreEngine.cpp 312 L.getBlock()->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 490 unsigned getBlockID() const { return BlockID; }

Completed in 2023 milliseconds