Lines Matching refs:Reachable
11 // job is to delete LLVM basic blocks that are not reachable from the entry
43 SmallPtrSet<BasicBlock*, 8> Reachable;
45 // Mark all reachable blocks.
46 for (BasicBlock *BB : depth_first_ext(&F, Reachable))
47 (void)BB/* Mark all reachable blocks */;
53 if (!Reachable.count(&*I)) {
133 SmallPtrSet<MachineBasicBlock*, 8> Reachable;
140 // Mark all reachable blocks.
141 for (MachineBasicBlock *BB : depth_first_ext(&F, Reachable))
142 (void)BB/* Mark all reachable blocks */;
151 if (!Reachable.count(BB)) {