Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Reachable

11 // job is to delete LLVM basic blocks that are not reachable from the entry
64 SmallPtrSet<BasicBlock*, 8> Reachable;
66 // Mark all reachable blocks.
67 for (BasicBlock *BB : depth_first_ext(&F, Reachable))
68 (void)BB/* Mark all reachable blocks */;
74 if (!Reachable.count(&*I)) {
119 SmallPtrSet<MachineBasicBlock*, 8> Reachable;
126 // Mark all reachable blocks.
127 for (MachineBasicBlock *BB : depth_first_ext(&F, Reachable))
128 (void)BB/* Mark all reachable blocks */;
137 if (!Reachable.count(BB)) {