Skip to content
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

Merged
merged 8 commits into from
Nov 4, 2024
Merged

Lair compiler steps #361

merged 8 commits into from
Nov 4, 2024

Conversation

gabriel-barrett
Copy link
Contributor

@gabriel-barrett gabriel-barrett commented Nov 4, 2024

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 robust

PS: 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

wwared
wwared previously approved these changes Nov 4, 2024
Copy link
Contributor

@wwared wwared left a 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
Copy link
Contributor

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?

arthurpaulino
arthurpaulino previously approved these changes Nov 4, 2024
Copy link
Contributor

@arthurpaulino arthurpaulino left a 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.

Comment on lines 83 to 86
/// 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>>;
Copy link
Contributor

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.

@gabriel-barrett gabriel-barrett dismissed stale reviews from arthurpaulino and wwared via 30caddb November 4, 2024 16:55
Copy link
Contributor

@arthurpaulino arthurpaulino left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a bunch!

@gabriel-barrett gabriel-barrett merged commit 80f3ab0 into main Nov 4, 2024
3 checks passed
@gabriel-barrett gabriel-barrett deleted the lair-compiler-steps branch November 4, 2024 17:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants