pub fn flowgraph() -> TimingToken
Control flow graph
110 111 112 113 114 115 116 117 118 119 120
pub fn compute(&mut self, func: &Function) { let _tt = timing::flowgraph(); self.clear(); self.data.resize(func.dfg.num_blocks()); for block in &func.layout { self.compute_block(func, block); } self.valid = true; }