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

Implement a proper SSA register allocator #54

Closed
polsys opened this issue Mar 2, 2019 · 1 comment · Fixed by #60
Closed

Implement a proper SSA register allocator #54

polsys opened this issue Mar 2, 2019 · 1 comment · Fixed by #60
Labels
area-CodeGen Final code generation. type-Enhancement Improvement to an existing feature.
Milestone

Comments

@polsys
Copy link
Owner

polsys commented Mar 2, 2019

The current allocator is a quick prototype for the initial codegen bringup. It does not support

  • stack (moved over to Support locals on stack #61),
  • interval splitting (this requires rearchitecting how local locations are represented),
  • register preferences (hints) (to be done later, once needed),
  • correctness.

Implement a proper SSA LSRA algorithm, as described by Wimmer et al.

@polsys polsys added type-Enhancement Improvement to an existing feature. area-CodeGen Final code generation. labels Mar 2, 2019
@polsys polsys added this to the 0.1 milestone Apr 9, 2019
@polsys
Copy link
Owner Author

polsys commented Apr 23, 2019

Splitting intervals within a basic block will be done later if the need arises.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-CodeGen Final code generation. type-Enhancement Improvement to an existing feature.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant