Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DReachableCode.cpp369 unsigned blockID = B->getBlockID(); in scanFromBlock() local
370 if (!Reachable[blockID]) { in scanFromBlock()
371 Reachable.set(blockID); in scanFromBlock()
425 unsigned blockID = block->getBlockID(); in enqueue() local
426 if (Reachable[blockID] || Visited[blockID]) in enqueue()
428 Visited[blockID] = true; in enqueue()
438 unsigned blockID = PredBlock->getBlockID(); in isDeadCodeRoot() local
439 if (Visited[blockID]) { in isDeadCodeRoot()
443 if (!Reachable[blockID]) { in isDeadCodeRoot()
445 Visited[blockID] = true; in isDeadCodeRoot()
/openbsd-src/gnu/llvm/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.h1540 int blockID() const { return BlockID; } in blockID() function