pub fn flowgraph() -> TimingToken
Expand description

Control flow graph

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