-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/compile: merge order/walk/instrument into buildssa #17728
Comments
This sounds great! I see a few things to discuss.
|
I am also in favor of refactoring order/walk/instrumenting e.g. into the ssa backend. How does the new parsers node tree fit into this: Could we move some high level rewriting like in-range checks to a new phase that works on the new parsers node tree and other things into the buildssa backend until walk.go/order.go/... do no changes any more. Then replace the new_ast->old_ast->generic_ssa path by new_ast->generic_ssa? OSQRT: i think is not needed anymore. we should be able to handle this completely just as intrinsic in the ssa backend. (i will do a CL for 1.9). |
Might be interesting:
|
@stemar94 Thanks, we actually already use that algorithm for constructing SSA. :) See the comments at the top of https://github.com/golang/go/blob/master/src/cmd/compile/internal/gc/phi.go This issue is about avoiding some of the intermediate IR rewrite passes that were needed before we switched to the SSA backend. |
We made minor progress on this for 1.9 (e.g. walkmul and walkdiv). Moving to 1.10. |
The bulk of racewalk.go's code has been moved to buildssa, which should allow us to start transitioning more walk.go lowering steps to buildssa. |
CC @TocarIP |
I have some WIP on this for setting up function calls and removing func bounded (and related code) from walk. I remain concerned about buildssa becoming unmanageable. |
Currently the compiler backend performs several stages of Node AST rewrites before generating SSA. We should investigate generating SSA directly from the AST produced by the frontend. Rationale:
/cc @randall77 @josharian
The text was updated successfully, but these errors were encountered: