MimIR
MimIR is my Intermediate Representation
Loading...
Searching...
No Matches
optimize.h
Go to the documentation of this file.
1#pragma once
2
3namespace mim {
4
5class World;
6
7/// Runs `_compile` or `_default_compile`, if available (in this order).
8void optimize(World&);
9
10} // namespace mim
The World represents the whole program and manages creation of MimIR nodes (Defs).
Definition world.h:36
Definition ast.h:14
void optimize(World &)
Runs _compile or _default_compile, if available (in this order).
Definition optimize.cpp:8