Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.cpp211 JOS->attribute("block", blockID(E.Block->getBlockID())); in endAnalysis()
240 static std::string blockID(unsigned Block) { in blockID() function in clang::dataflow::__anon475589f90111::HTMLLogger
265 JOS->attribute("block", blockID(Block)); in recordState()
310 JOS->attributeObject(blockID(B.getBlockID()), [&] { in writeBlock()
396 OS << " " << blockID(BB); in writeCode()
404 OS << " data-bb='" << blockID(BB) << "'"; in writeCode()
490 GraphS << " " << blockID(I) << " [id=" << blockID(I) << "]\n"; in buildCFGDot()
494 GraphS << " " << blockID(Block->getBlockID()) << " -> " in buildCFGDot()
495 << blockID(Succ.getReachableBlock()->getBlockID()) << "\n"; in buildCFGDot()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp370 unsigned blockID = B->getBlockID(); in scanFromBlock() local
371 if (!Reachable[blockID]) { in scanFromBlock()
372 Reachable.set(blockID); in scanFromBlock()
426 unsigned blockID = block->getBlockID(); in enqueue() local
427 if (Reachable[blockID] || Visited[blockID]) in enqueue()
429 Visited[blockID] = true; in enqueue()
439 unsigned blockID = PredBlock->getBlockID(); in isDeadCodeRoot() local
440 if (Visited[blockID]) { in isDeadCodeRoot()
444 if (!Reachable[blockID]) { in isDeadCodeRoot()
446 Visited[blockID] = true; in isDeadCodeRoot()
/freebsd-14.2/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