Home
last modified time | relevance | path

Searched refs:getBlockID (Results 1 – 12 of 12) sorted by relevance

/external/clang/lib/Analysis/
DCFGReachabilityAnalysis.cpp28 const unsigned DstBlockID = Dst->getBlockID(); in isReachable()
37 return reachable[DstBlockID][Src->getBlockID()]; in isReachable()
46 ReachableSet &DstReachability = reachable[Dst->getBlockID()]; in mapReachability()
58 if (visited[block->getBlockID()]) in mapReachability()
60 visited[block->getBlockID()] = true; in mapReachability()
65 DstReachability[block->getBlockID()] = true; in mapReachability()
DReachableCode.cpp163 reachable.set(item->getBlockID()); in MarkLiveTop()
167 unsigned blockID = B->getBlockID(); in MarkLiveTop()
203 Reachable.set(Start.getBlockID()); in ScanReachableFromBlock()
219 unsigned blockID = B->getBlockID(); in ScanReachableFromBlock()
252 if (!reachable[b.getBlockID()]) { in FindUnreachableCode()
265 reachable.set(b.getBlockID()); in FindUnreachableCode()
280 if (!reachable[b.getBlockID()]) in FindUnreachableCode()
DUninitializedValues.cpp200 unsigned idx = block->getBlockID(); in getValueVector()
213 unsigned idx = block->getBlockID(); in hasValues()
219 unsigned idx = block->getBlockID(); in getValueVectors()
237 llvm::errs() << block->getBlockID() << " :";
301 if (!Successor || enqueuedBlocks[Successor->getBlockID()]) in enqueueSuccessors()
304 enqueuedBlocks[Successor->getBlockID()] = true; in enqueueSuccessors()
320 enqueuedBlocks[b->getBlockID()] = false; in dequeue()
602 wasAnalyzed[block->getBlockID()] = true; in runOnBlock()
686 if (changed || !previouslyVisited[block->getBlockID()]) in runUninitializedVariablesAnalysis()
688 previouslyVisited[block->getBlockID()] = true; in runUninitializedVariablesAnalysis()
[all …]
DLiveVariables.cpp386 llvm::errs() << "\n[ B" << I->first->getBlockID() in dumpBlockLiveness()
DCFG.cpp3173 std::pair<unsigned, unsigned> P((*I)->getBlockID(), j); in StmtPrinterHelper()
3454 if (Helper) Helper->setBlockID(B.getBlockID()); in print_block()
3457 OS << "\n [ B" << B.getBlockID(); in print_block()
3546 OS << " B" << (*I)->getBlockID(); in print_block()
3562 OS << " B" << (*I)->getBlockID(); in print_block()
/external/clang/lib/StaticAnalyzer/Checkers/
DUnreachableCodeChecker.cpp77 reachable.insert(CB->getBlockID()); in checkEndAnalysis()
91 if (reachable.count(CB->getBlockID())) in checkEndAnalysis()
99 if (!visited.count(CB->getBlockID())) in checkEndAnalysis()
103 if (reachable.count(CB->getBlockID())) in checkEndAnalysis()
149 visited.insert(CB->getBlockID()); in FindUnreachableEntryPoints()
153 if (!reachable.count((*I)->getBlockID())) { in FindUnreachableEntryPoints()
156 reachable.insert(CB->getBlockID()); in FindUnreachableEntryPoints()
157 if (!visited.count((*I)->getBlockID())) in FindUnreachableEntryPoints()
DDeadStoresChecker.cpp44 return reachable[block->getBlockID()]; in isReachable()
59 llvm::BitVector::reference isReachable = reachable[block->getBlockID()]; in computeReachableBlocks()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCoreEngine.h203 B.getBlockID()); in getCurrentBlockCount()
499 B.getBlockID()); in getCurrentBlockCount()
/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp99 if (!live[b.getBlockID()]) { in CheckFallThrough()
126 if (!live[B.getBlockID()]) in CheckFallThrough()
/external/clang/include/clang/Analysis/
DCFG.h478 unsigned getBlockID() const { return BlockID; } in getBlockID() function
/external/clang/lib/StaticAnalyzer/Core/
DExprEngine.cpp813 block->getBlockID()) >= AMgr.getMaxVisit()) { in processCFGBlockEntrance()
3079 << cast<BlockEntrance>(Loc).getBlock()->getBlockID(); in getNodeLabel()
3145 Out << "Edge: (B" << E.getSrc()->getBlockID() << ", B" in getNodeLabel()
3146 << E.getDst()->getBlockID() << ')'; in getNodeLabel()
DCoreEngine.cpp322 L.getBlock()->getBlockID()); in HandleBlockEntrance()