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.cpp212 JOS.attribute("block", blockID(E.Block->getBlockID())); in endAnalysis()
247 static std::string blockID(unsigned Block) { in blockID() function in clang::dataflow::__anon109acdc30111::HTMLLogger
272 JOS.attribute("block", blockID(Block)); in recordState()
321 JOS.attributeObject(blockID(B.getBlockID()), [&] { in writeBlock()
407 OS << " " << blockID(BB); in writeCode()
415 OS << " data-bb='" << blockID(BB) << "'"; in writeCode()
501 std::string Name = blockID(I); in buildCFGDot()
506 GraphS << " " << blockID(I) << " [id=" << blockID(I) << " label=\"" in buildCFGDot()
512 GraphS << " " << blockID(Block->getBlockID()) << " -> " in buildCFGDot()
513 << blockID(Succ.getReachableBlock()->getBlockID()) << "\n"; in buildCFGDot()
/freebsd/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/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h485 SS << BB->blockID(); in printBlockLabel()
837 SS << "BB_" << E->blockID() << ":"; in printBasicBlock()
839 SS << " BB_" << E->parent()->blockID(); in printBasicBlock()
H A DThreadSafetyTIL.h1546 int blockID() const { return BlockID; } in blockID() function