Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DReachableCode.cpp363 unsigned blockID = B->getBlockID(); in scanFromBlock() local
364 if (!Reachable[blockID]) { in scanFromBlock()
365 Reachable.set(blockID); in scanFromBlock()
419 unsigned blockID = block->getBlockID(); in enqueue() local
420 if (Reachable[blockID] || Visited[blockID]) in enqueue()
422 Visited[blockID] = true; in enqueue()
432 unsigned blockID = PredBlock->getBlockID(); in isDeadCodeRoot() local
433 if (Visited[blockID]) { in isDeadCodeRoot()
437 if (!Reachable[blockID]) { in isDeadCodeRoot()
439 Visited[blockID] = true; in isDeadCodeRoot()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h491 SS << BB->blockID(); in printBlockLabel()
840 SS << "BB_" << E->blockID() << ":"; in printBasicBlock()
842 SS << " BB_" << E->parent()->blockID(); in printBasicBlock()
H A DThreadSafetyTIL.h1542 int blockID() const { return BlockID; } in blockID() function