dcbaker / meson-plus-plus

An experimental and incomplete implementation of Meson in C++, for solving Meson's bootstrapping issue.
Apache License 2.0
50 stars 7 forks source link

Insert and prune phi nodes #58

Closed dcbaker closed 2 years ago

dcbaker commented 2 years ago

To use a true SSA form we need phi nodes, and this provides that, along with an actual use for value numbering. The end result isn't that useful yet, but it's a big enough series I wanted to land it without const prop and const folding.

closes #54