Compute dominator tree.
(&mut self)
| 313 | |
| 314 | /// Compute dominator tree. |
| 315 | pub fn compute_domtree(&mut self) { |
| 316 | self.domtree.compute(&self.func, &self.cfg); |
| 317 | } |
| 318 | |
| 319 | /// Compute the loop analysis. |
| 320 | pub fn compute_loop_analysis(&mut self) { |