pub fn domtree() -> TimingToken
Expand description

Dominator tree

Examples found in repository?
src/dominator_tree.rs (line 244)
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;
    }