Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
HDReachableCode.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()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
HDThreadSafetyTraverse.h491 SS << BB->blockID(); in printBlockLabel()
840 SS << "BB_" << E->blockID() << ":"; in printBasicBlock()
842 SS << " BB_" << E->parent()->blockID(); in printBasicBlock()
HDThreadSafetyTIL.h1540 int blockID() const { return BlockID; } in blockID() function