Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Analysis/
H A DReachableCode.cpp362 unsigned blockID = B->getBlockID(); in scanFromBlock() local
363 if (!Reachable[blockID]) { in scanFromBlock()
364 Reachable.set(blockID); in scanFromBlock()
418 unsigned blockID = block->getBlockID(); in enqueue() local
419 if (Reachable[blockID] || Visited[blockID]) in enqueue()
421 Visited[blockID] = true; in enqueue()
431 unsigned blockID = PredBlock->getBlockID(); in isDeadCodeRoot() local
432 if (Visited[blockID]) { in isDeadCodeRoot()
436 if (!Reachable[blockID]) { in isDeadCodeRoot()
438 Visited[blockID] = true; in isDeadCodeRoot()
/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Serialization/
H A DSerializer.cpp942 uint32_t blockID = getOrCreateBlockID(block); in processBlock() local
946 encodeInstructionInto(functionBody, spirv::Opcode::OpLabel, {blockID}); in processBlock()
966 uint32_t blockID = getNextID(); in processBlock() local
967 encodeInstructionInto(functionBody, spirv::Opcode::OpBranch, {blockID}); in processBlock()
968 encodeInstructionInto(functionBody, spirv::Opcode::OpLabel, {blockID}); in processBlock()
/llvm-project-15.0.7/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