-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lair compiler steps #361
Lair compiler steps #361
Conversation
02aa068
to
66b6bd4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a fine refactor to me. Small nit below
let block_return_idents = std::mem::take(&mut ctx.return_idents); | ||
// sanity check |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Can this sanity check (the assert below this comment) be moved to the check
function on BlockE
instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As the code approaches stability and correctness, we should be striving for more docstrings, especially on more involved functions.
check
, expand
and compile
would be perfect candidates for this. Also, due to the relevance of toplevel.rs
, a module docstring would be really good.
src/lair/toplevel.rs
Outdated
/// A map from `Var` to its compiled indices and block identifier | ||
type BindMap = FxHashMap<Var, (List<usize>, usize)>; | ||
type BindMap = FxHashMap<Var, usize>; | ||
|
||
type LinkMap = FxHashMap<Var, List<usize>>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The docstring for BindMap
needs an update
Also, the value type for LinkMap
is a bit cryptic. Adding a docstring should help.
30caddb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a bunch!
This PR substitutes
check_and_link
by a 3-staged approach. First a check, then an expansion (translates complex operations into simple ones), then a compilation into bytecode. This approach, although slightly more inefficient, is much more principled and robustPS: the reason the traces of if statements changed is that the true/false selectors flipped. In the original, it was identifying the true branch as the first branch, now it is the false which is the first. The reason is that the ifs are translated into matches and the true branch is the default case, which appears last