20using namespace std::literals;
24enum Emit { AST, Dot, H, PY, Md,
Mim, NestDot, SExpr, Slotted, Profile, Num_Emits };
29 std::vector<std::string> plugins, search_paths, import_paths, prefix_paths, plugin_args;
30 std::array<Out, Num_Emits> outs;
32 bool sexpr_include_types =
false;
35void emit_help(fe::Cli& cli,
Driver& driver,
const std::vector<std::string>& plugins,
bool md) {
36 for (
auto&& plugin : plugins)
40 cli.section(
"Plugin Arguments");
42 for (
const auto& [plugin, args] : driver.
known_args()) {
43 auto rows = fe::Cli::Rows();
44 for (
const auto& arg : args)
45 rows.emplace_back(arg.syntax, arg.descr);
47 auto title = md ? std::format(
"{0} {{#xarg_{0}}}", plugin) : plugin;
48 cli.section(std::move(title),
"Argument", std::move(rows));
52 cli.section(
"Plugin Environment Variables");
54 for (
const auto& [plugin, envs] : driver.
known_envs()) {
55 auto rows = fe::Cli::Rows();
56 for (
const auto& env : envs)
57 rows.emplace_back(env.name, env.descr);
59 auto title = md ? std::format(
"{0} {{#env_{0}}}", plugin) : std::string(plugin);
60 cli.section(std::move(title),
"Variable", std::move(rows));
65 cli.markdown(std::cout);
70void emit_profile(
Driver& driver, std::ostream& os) {
80int compile(
Driver& driver, Opts& opts) {
81 auto& world = driver.
world();
82 auto& outs = opts.outs;
85 auto name = fs::path(opts.input).filename().replace_extension().string();
90 auto file = parser.import_main(opts.input, opts.plugins, outs[Md].os());
94 fe::throwf(
"could not read file `{}`", opts.input);
97 if (
auto s = outs[AST].os()) {
98 auto tab = fe::Tab::spaces();
99 file->stream(tab, *s);
102 if (
auto h = outs[H].os(), py = outs[PY].os();
h || py) {
105 auto plugin = world.sym(name);
106 if (h)
ast.bootstrap(plugin, *h);
107 if (py)
ast.bootstrap_py(plugin, *py);
114 auto types = opts.sexpr_include_types;
115 if (
auto s = outs[Dot].os()) world.dot(*s, opts.dot);
116 if (
auto s = outs[
Mim].os()) world.dump(*s);
117 if (
auto s = outs[NestDot].os())
mim::Nest(world).
dot(*s);
120 if (
auto s = outs[Profile].os()) emit_profile(driver, *s);
121 }
catch (
const Error::Bail& e) {
131int main(
int argc,
char** argv) {
132 fe::term::resolve_mode();
136 bool show_help =
false;
137 bool show_help_md =
false;
138 bool show_version =
false;
139 bool list_search_paths =
false;
142 auto& flags = driver.
flags();
143 auto& diag = driver.diag();
144 auto inc_verbose = [&](bool) { ++verbose; };
145#ifdef MIM_ENABLE_CHECKS
146 std::vector<uint32_t> breakpoints, watchpoints;
149 auto loc_style = [&](
const std::string& t) -> std::string {
151 if (t ==
"full" ) diag.loc_style = fe::Loc::Style::Full;
152 else if (t ==
"rowcol") diag.loc_style = fe::Loc::Style::RowCol;
153 else if (t ==
"row" ) diag.loc_style = fe::Loc::Style::Row;
154 else if (t ==
"msvc" ) diag.loc_style = fe::Loc::Style::MSVC;
155 else return std::format(
"'{}' is not a location style", t);
160 auto profile = [&](
const std::string& t) -> std::string {
165 else return std::format(
"'{}' is not a profile mode", t);
171 auto cli = fe::Cli(
"mim",
"MimIR is my Intermediate Representation.")
172 .arg(opts.input,
"file",
"Input file.")
174 .opt(show_help_md ,
"" ,
"" ,
"--help-md" ,
"Displays this help as Markdown and exits.")
175 .opt(show_version ,
"" ,
"-v",
"--version" ,
"Displays version info and exits.")
176 .opt(list_search_paths ,
"" ,
"-l",
"--list-search-paths" ,
"Lists the search paths in order and exits.")
177 .opt(opts.plugins ,
"plugin" ,
"-p",
"--plugin" ,
"Dynamically loads a plugin.")
178 .opt(opts.search_paths ,
"path" ,
"-P",
"--plugin-path" ,
"Path to search for plugins; also searched for imports.")
179 .opt(opts.import_paths ,
"path" ,
"-I",
"--import-path" ,
"Path to search for imports.")
180 .opt(opts.prefix_paths ,
"path" ,
"-R",
"--prefix-path" ,
"Install prefix/root to derive plugin, import, and runtime directories from.")
181 .opt(opts.plugin_args ,
"plugin:arg",
"-X",
"--plugin-arg" ,
"Passes an argument to a plugin/phase, e.g. `-X ll:o=output.ll`. Repeatable.")
182 .opt(flags.force_load ,
"" ,
"" ,
"--force-load" ,
"Loads plugins even on version mismatch.")
183 .opt(flags.bootstrap ,
"" ,
"" ,
"--bootstrap" ,
"Bootstrap mode: only read Mim AST, don't compile to MimIR.")
184 .opt(inc_verbose ,
"" ,
"-V",
"--verbose" ,
"Raises the log level from error to warn, info, verbose, debug, trace; repeatable.").cardinality(0, 5)
186 .opt(flags.ascii ,
"" ,
"-a",
"--ascii" ,
"Uses ASCII alternatives in output instead of UTF-8.")
187 .opt(opts.outs[AST].name() ,
"file" ,
"" ,
"--output-ast" ,
"Emits the AST of the input.")
188 .opt(opts.outs[Dot].name() ,
"file" ,
"" ,
"--output-dot" ,
"Emits the Mim program as a MimIR graph using Graphviz' DOT language.")
189 .opt(opts.outs[H].name() ,
"file" ,
"" ,
"--output-h" ,
"Emits a header file to be used to interface with a plugin in C++.")
190 .opt(opts.outs[Md].name() ,
"file" ,
"" ,
"--output-md" ,
"Emits the input formatted as Markdown.")
191 .opt(opts.outs[
Mim].name() ,
"file" ,
"-o",
"--output-mim" ,
"Emits the Mim program again.")
192 .opt(flags.dump_recursive ,
"" ,
"" ,
"--dump-recursive" ,
"Dumps the Mim program with a simple recursive algorithm; the result is not readable again but works for broken programs.")
193 .opt(opts.outs[NestDot].name() ,
"file" ,
"" ,
"--output-nest" ,
"Emits the program's nesting tree using Graphviz' DOT language.")
194 .opt(opts.outs[PY].name() ,
"file" ,
"" ,
"--output-py" ,
"Emits a Python enum to be used to interface with a plugin in Python.")
195 .opt(opts.outs[SExpr].name() ,
"file" ,
"" ,
"--output-sexpr" ,
"Emits the program as symbolic expression.")
196 .opt(opts.outs[Slotted].name() ,
"file" ,
"" ,
"--output-sexpr-slotted",
"Emits the program as symbolic expression that follows the format required by slotted-egraphs.")
197 .opt(opts.sexpr_include_types ,
"" ,
"" ,
"--sexpr-include-types" ,
"Wraps each term of a symbolic expression in a type annotation; types themselves stay unwrapped.")
199 .opt(opts.dot.
all_annexes ,
"" ,
"" ,
"--dot-all-annexes" ,
"Emits all annexes in DOT output - even unused ones.")
200 .opt(opts.dot.
default_filter ,
"" ,
"" ,
"--dot-default-filter" ,
"Always shows a lambda's filter in DOT output - even if it is the default one (`ff` for continuations, `tt` for direct-style functions).")
201 .opt(opts.dot.
follow_types ,
"" ,
"" ,
"--dot-follow-types" ,
"Follows type dependencies in DOT output.")
202 .opt(opts.dot.
inline_consts ,
"" ,
"" ,
"--dot-inline-consts" ,
"Wires up literals, axioms, etc. with normal edges in DOT output instead of detaching them into a separate row; useful for small graphs.")
203 .opt(opts.dot.
show_hidden ,
"" ,
"" ,
"--dot-show-hidden" ,
"Renders otherwise-transparent detached edges in DOT output - back-edges from a Var to its binder, shared literals/axioms, and type edges - in a subtle gray.")
205 .opt(diag.gutter ,
"width" ,
"" ,
"--gutter" ,
"Width of a diagnostic's line-number column.")
206 .opt(loc_style ,
"style" ,
"" ,
"--loc-style" ,
"How a diagnostic spells out a source location: `full` (`path:row:col-row:col`), `rowcol` (`path:row:col`), `row` (`path:row`), or `msvc` (`path(row,col)`).")
207 .opt(diag.max_errors ,
"num" ,
"" ,
"--max-errors" ,
"Maximum number of errors to report before dropping the rest; 0 reports all of them.")
208 .opt(diag.max_rows ,
"num" ,
"" ,
"--max-rows" ,
"Maximum number of rows a diagnostic's snippet renders before eliding its middle; 0 elides nothing.")
209 .opt(diag.no_snippet ,
"" ,
"" ,
"--no-snippet" ,
"Does not render the offending source line and caret underneath a diagnostic.")
210 .opt(diag.werror ,
"" ,
"" ,
"--werror" ,
"Treats warnings as errors.")
212 .opt(opts.outs[Profile].name() ,
"file" ,
"" ,
"--output-profile" ,
"Where to write the profiling information; defaults to stdout and implies --profile trace, if no `<mode>` is given.")
213 .opt(profile ,
"mode" ,
"" ,
"--profile" ,
"Measures how long each phase takes; `<mode>` is `summary`, `tree`, or `trace` (`chrome://tracing` compatible).")
215 .opt(flags.aggressive_lam_spec ,
"" ,
"" ,
"--aggr-lam-spec" ,
"Overrides LamSpec behavior to follow recursive calls.")
216 .opt(flags.max_fp_iters ,
"num" ,
"" ,
"--max-fp-iters" ,
"Maximum number of fixed-point iterations before a phase errors out; guards against non-monotone analyses.")
217 .opt(flags.scalarize_threshold ,
"threshold" ,
"" ,
"--scalarize-threshold" ,
"MimIR will not scalarize tuples/packs/sigmas/arrays with a number of elements greater than or equal this threshold.")
218#ifdef MIM_ENABLE_CHECKS
219 .grp(
"Developer Options")
220 .opt(breakpoints ,
"gid" ,
"-b",
"--break" ,
"Triggers a breakpoint when a node with this global id is created.")
221 .opt(flags.break_on_alpha ,
"" ,
"" ,
"--break-on-alpha" ,
"Triggers a breakpoint as soon as two expressions turn out not to be alpha-equivalent.")
222 .opt(flags.break_on_error ,
"" ,
"" ,
"--break-on-error" ,
"Triggers a breakpoint on an error log.")
223 .opt(flags.break_on_warn ,
"" ,
"" ,
"--break-on-warn" ,
"Triggers a breakpoint on a warning log.")
224 .opt(flags.reeval_breakpoints ,
"" ,
"" ,
"--reeval-breakpoints" ,
"Triggers a breakpoint even upon unifying a node that has already been built.")
225 .opt(flags.trace_gids ,
"" ,
"" ,
"--trace-gids" ,
"Outputs gids during `World::unify`/`insert`.")
226 .opt(watchpoints ,
"gid" ,
"-w",
"--watch" ,
"Triggers a breakpoint when a node with this global id is set.")
228 .section(
"Environment Variables",
"Variable", {
229 {
"MIM_PLUGIN_PATH", std::format(
"{}-separated list of plugin search paths, searched after those given via `-P`.", fe::sys::Path_Sep_Word)},
230 {
"MIM_IMPORT_PATH", std::format(
"{}-separated list of import search paths, searched after those given via `-I`.", fe::sys::Path_Sep_Word)},
231 {
"MIM_PREFIX_PATH", std::format(
"{}-separated list of install prefixes, searched after those given via `--prefix-path`.", fe::sys::Path_Sep_Word)},
232 {
"NO_COLOR" ,
"Disables colored output if set to a non-empty value; wins over the two below."},
233 {
"CLICOLOR_FORCE" ,
"Forces colored output if set to a non-empty value other than 0."},
234 {
"CLICOLOR" ,
"Disables colored output if set to 0."},
236 .epilog(R
"(Every output option accepts "-" to write to stdout.)");
239 if (
auto err = cli.parse(argc, argv))
throw std::invalid_argument(*err);
242 auto& profile_file = opts.outs[Profile].name();
246 for (
auto&& path : opts.search_paths)
249 for (
auto&& path : opts.import_paths)
252 for (
auto&& path : opts.prefix_paths)
255 if (show_help || show_help_md) {
256 emit_help(cli, driver, opts.plugins, show_help_md);
261 std::cout <<
"mim " << driver.
version() << std::endl;
265 for (
auto&& pa : opts.plugin_args) {
266 auto pos = pa.find(
':');
267 if (pos == std::string::npos)
268 throw std::invalid_argument(
"error: --plugin-arg expects <plugin>:<arg>, got '" + pa +
"'");
269 driver.
add_arg(std::string_view(pa).substr(0, pos), pa.substr(pos + 1));
272 if (list_search_paths) {
273 auto list = [](std::string_view kind,
const fe::Vector<fs::path>& paths) {
274 std::cout << kind <<
':' << std::endl;
275 for (
auto&& path : paths | std::views::drop(1))
276 std::cout <<
" " << path << std::endl;
280 list(
"runtimes", driver.
rt_paths());
284 driver.
log().set(&std::cerr).set((fe::Log::Level)verbose);
285#ifdef MIM_ENABLE_CHECKS
286 driver.
log().break_on_error = flags.break_on_error;
287 driver.
log().break_on_warn = flags.break_on_warn;
288 for (
auto b : breakpoints)
290 for (
auto w : watchpoints)
294 if (opts.input.empty())
throw std::invalid_argument(
"error: no input given");
296 return compile(driver, opts);
297 }
catch (
const std::exception& e) {
298 std::println(std::cerr,
"{}", e.what());
301 std::println(std::cerr,
"error: unknown exception");
Some "global" variables needed all over the place.
const auto & known_envs() const
The PluginEnvs each loaded Plugin declares, in load order; only for listing them, see PluginEnv.
void add_prefix_path(fs::path path)
void add_import_path(fs::path path)
void load(std::string_view name)
const Version & version() const
MimIR Version.
const auto & known_args() const
The PluginArgs each loaded Plugin declares, in load order; only for listing them, see PluginArg.
fe::Vector< fs::path > import_paths() const
Where ast::Parser looks for <name>.mim; plugin directories are included, as a plugin ships both halve...
void add_arg(std::string_view plugin, std::string arg)
fe::Vector< fs::path > rt_paths() const
Where a backend looks for its runtime modules.
void add_plugin_path(fs::path path)
fe::Vector< fs::path > plugin_paths() const
Where Driver::load looks for libmim_<name>.
fe::Profiler & profiler()
Builds a nesting tree for all mutables/binders.
void dot(std::ostream &os) const
void watchpoint(u32 gid)
Trigger breakpoint in your debugger when Def::setting a Def with this gid.
void breakpoint(u32 gid)
Trigger breakpoint in your debugger when creating a Def with this gid.
Owns the arena all AST nodes live in as well as the AnnexInfos of all plugins.
int main(int argc, char **argv)
void emit_slotted(World &, std::ostream &)
void emit_typed(World &, std::ostream &)
void emit(World &, std::ostream &)
void emit_slotted_typed(World &, std::ostream &)
bool follow_types
Follow Def::type() dependencies.
bool inline_consts
Wire up literals, axioms, etc. with normal edges instead of detaching them.
void optimize(World &)
Runs _compile or _default_compile, if available (in this order).
bool all_annexes
Include all annexes - even if unused (World::dot only).
bool show_hidden
Render otherwise-transparent detached edges (Var→binder back-edges, shared literals/axioms,...
bool default_filter
Show Lam::filter() even if it has its default value.
@ Summary
Flat table aggregated by Phase name.
@ Tree
Indented tree preserving the order in which Phasees ran.
@ Trace
chrome://tracing compatible output.