Compute the control flow graph and dominator tree.
(&mut self)
| 324 | |
| 325 | /// Compute the control flow graph and dominator tree. |
| 326 | pub fn flowgraph(&mut self) { |
| 327 | self.compute_cfg(); |
| 328 | self.compute_domtree() |
| 329 | } |
| 330 | |
| 331 | /// Perform unreachable code elimination. |
| 332 | pub fn eliminate_unreachable_code<'a, FOI>(&mut self, fisa: FOI) -> CodegenResult<()> |