Home
last modified time | relevance | path

Searched refs:blockID (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.cpp213 JOS.attribute("block", blockID(E.Block->getBlockID())); in endAnalysis()
248 static std::string blockID(unsigned Block) { in blockID() function in clang::dataflow::__anon109acdc30111::HTMLLogger
273 JOS.attribute("block", blockID(Block)); in recordState()
322 JOS.attributeObject(blockID(B.getBlockID()), [&] { in writeBlock()
408 OS << " " << blockID(BB); in writeCode()
416 OS << " data-bb='" << blockID(BB) << "'"; in writeCode()
502 std::string Name = blockID(I); in buildCFGDot()
507 GraphS << " " << blockID(I) << " [id=" << blockID(I) << " label=\"" in buildCFGDot()
513 GraphS << " " << blockID(Block->getBlockID()) << " -> " in buildCFGDot()
514 << blockID(Succ.getReachableBlock()->getBlockID()) << "\n"; in buildCFGDot()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp371 unsigned blockID = B->getBlockID(); in scanFromBlock() local
372 if (!Reachable[blockID]) { in scanFromBlock()
373 Reachable.set(blockID); in scanFromBlock()
427 unsigned blockID = block->getBlockID(); in enqueue() local
428 if (Reachable[blockID] || Visited[blockID]) in enqueue()
430 Visited[blockID] = true; in enqueue()
440 unsigned blockID = PredBlock->getBlockID(); in isDeadCodeRoot() local
441 if (Visited[blockID]) { in isDeadCodeRoot()
445 if (!Reachable[blockID]) { in isDeadCodeRoot()
447 Visited[blockID] = true; in isDeadCodeRoot()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h491 SS << BB->blockID(); in printBlockLabel()
843 SS << "BB_" << E->blockID() << ":"; in printBasicBlock()
845 SS << " BB_" << E->parent()->blockID(); in printBasicBlock()
H A DThreadSafetyTIL.h1549 int blockID() const { return BlockID; } in blockID() function