pub fn domtree() -> TimingToken
Dominator tree
243 244 245 246 247 248 249
pub fn compute(&mut self, func: &Function, cfg: &ControlFlowGraph) { let _tt = timing::domtree(); debug_assert!(cfg.is_valid()); self.compute_postorder(func); self.compute_domtree(func, cfg); self.valid = true; }