Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDReachableCode.cpp321 unsigned blockID = B->getBlockID(); in scanFromBlock() local
322 if (!Reachable[blockID]) { in scanFromBlock()
323 Reachable.set(blockID); in scanFromBlock()
376 unsigned blockID = block->getBlockID(); in enqueue() local
377 if (Reachable[blockID] || Visited[blockID]) in enqueue()
379 Visited[blockID] = true; in enqueue()
389 unsigned blockID = PredBlock->getBlockID(); in isDeadCodeRoot() local
390 if (Visited[blockID]) { in isDeadCodeRoot()
394 if (!Reachable[blockID]) { in isDeadCodeRoot()
396 Visited[blockID] = true; in isDeadCodeRoot()
/NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
HDThreadSafetyTraverse.h466 SS << BB->blockID(); in printBlockLabel()
808 SS << "BB_" << E->blockID() << ":"; in printBasicBlock()
810 SS << " BB_" << E->parent()->blockID(); in printBasicBlock()
HDThreadSafetyTIL.h1558 int blockID() const { return BlockID; } in blockID() function