HomeSort by relevance Sort by last modified time
    Searched refs:getBlockID (Results 1 - 22 of 22) 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()];
57 if (visited[block->getBlockID()])
59 visited[block->getBlockID()] = true;
64 DstReachability[block->getBlockID()] = true;
UninitializedValues.cpp 119 return vals[block->getBlockID()];
160 llvm::errs() << block->getBlockID() << " :";
218 enqueuedBlocks[(*PO_I)->getBlockID()] = false;
232 if (!Successor || enqueuedBlocks[Successor->getBlockID()])
235 enqueuedBlocks[Successor->getBlockID()] = true;
257 assert(enqueuedBlocks[B->getBlockID()] == true);
258 enqueuedBlocks[B->getBlockID()] = false;
585 SuccsVisited[block->getBlockID()] = block->succ_size();
614 unsigned &SV = SuccsVisited[Pred->getBlockID()];
636 unsigned BlockID = Block->getBlockID();
    [all...]
LiveVariables.cpp 50 if (block && !enqueuedBlocks[block->getBlockID()]) {
51 enqueuedBlocks[block->getBlockID()] = true;
77 enqueuedBlocks[b->getBlockID()] = false;
547 if (!everAnalyzedBlock[block->getBlockID()])
548 everAnalyzedBlock[block->getBlockID()] = true;
576 return A->getBlockID() < B->getBlockID();
583 llvm::errs() << "\n[ B" << (*it)->getBlockID()
ReachableCode.cpp 278 if (!Reachable[Start->getBlockID()]) {
280 Reachable[Start->getBlockID()] = true;
321 unsigned blockID = B->getBlockID();
376 unsigned blockID = block->getBlockID();
389 unsigned blockID = PredBlock->getBlockID();
453 if (Reachable[Block->getBlockID()])
494 if (Reachable[Block->getBlockID()])
668 if (reachable[block->getBlockID()])
Consumed.cpp 1038 unsigned int CurrBlockOrder = VisitOrder[CurrBlock->getBlockID()];
1041 if (*PI && CurrBlockOrder < VisitOrder[(*PI)->getBlockID()] )
1053 auto &Entry = StateMapsArray[Block->getBlockID()];
    [all...]
ThreadSafety.cpp 694 int CurrBlockID = CurrBlock->getBlockID();
710 int PrevBlockID = (*PI)->getBlockID();
758 Context LoopBegin = BlockInfo[FirstLoopBlock->getBlockID()].EntryContext;
765 unsigned exitID = CFGraph->getExit().getBlockID();
775 CFGBlockInfo *CurrBlockInfo = &BlockInfo[CurrBlock->getBlockID()];
808 BlockInfo[(*CurrBlock->pred_begin())->getBlockID()].ExitLoc;
    [all...]
ThreadSafetyCommon.cpp 773 unsigned ArgIndex = BBInfo[Blk->getBlockID()].ProcessedPredecessors;
800 BlockMap[B->getBlockID()] = BB;
826 CurrentBlockInfo = &BBInfo[B->getBlockID()];
836 CurrentBB->addPredecessor(BlockMap[Pred->getBlockID()]);
837 BlockInfo *PredInfo = &BBInfo[Pred->getBlockID()];
908 ++BBInfo[Succ->getBlockID()].ProcessedPredecessors;
    [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 96 llvm::errs() << "(" << (*I)->getBlockID()
98 << DT->getNode(*I)->getIDom()->getBlock()->getBlockID()
100 else llvm::errs() << "(" << (*I)->getBlockID()
101 << "," << (*I)->getBlockID() << ")\n";
Consumed.h 215 VisitOrder[(*BI)->getBlockID()] = VisitOrderCounter++;
ThreadSafetyCommon.h 364 return BlockMap[B->getBlockID()];
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 80 reachable.insert(CB->getBlockID());
99 if (reachable.count(CB->getBlockID()))
107 if (!visited.count(CB->getBlockID()))
111 if (reachable.count(CB->getBlockID()))
173 visited.insert(CB->getBlockID());
180 if (!reachable.count((*I)->getBlockID())) {
183 reachable.insert(CB->getBlockID());
184 if (!visited.count((*I)->getBlockID()))
TestAfterDivZeroChecker.cpp 155 State->add<DivZeroMap>(ZeroState(SR, C.getBlockID(), C.getStackFrame()));
165 ZeroState ZS(SR, C.getBlockID(), C.getStackFrame());
DeadStoresChecker.cpp 77 return reachable[block->getBlockID()];
91 llvm::BitVector::reference isReachable = reachable[block->getBlockID()];
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 178 unsigned getBlockID() const {
179 return NB.getContext().getBlock()->getBlockID();
CoreEngine.h 197 Block->getBlockID());
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 180 FunctionSummaries->markVisitedBasicBlock(Entry->getBlockID(),
303 FunctionSummaries->markVisitedBasicBlock(Blk->getBlockID(),
340 unsigned BlockId = L.getBlock()->getBlockID();
ExprEngine.cpp     [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 210 const unsigned ExitID = cfg->getExit().getBlockID();
214 States[cfg->getEntry().getBlockID()] = FoundPathWithNoRecursiveCall;
224 unsigned ID = CurBlock->getBlockID();
241 unsigned next_ID = (*I)->getBlockID();
313 if (!live[B->getBlockID()]) {
340 if (!live[B.getBlockID()])
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 638 unsigned getBlockID() const { return BlockID; }
649 OS << "BB#" << getBlockID();
    [all...]
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitstreamReader.h 127 unsigned getBlockID() const { return BlockID; }

Completed in 469 milliseconds