You might find inspiration in Go, though, as that compiler is surprisingly simple in structure. The SSA rewrite rules look like
(Add8 (Const8 [c]) (Const8 [d])) => (Const8 [c+d]) (EqPtr x x) => (ConstBool [true])
https://go.dev/src/cmd/compile/README
You might find inspiration in Go, though, as that compiler is surprisingly simple in structure. The SSA rewrite rules look like
https://go.dev/src/cmd/compile/internal/ssa/_gen/generic.rul...https://go.dev/src/cmd/compile/README