-
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: make SSA output more readable #12071
Comments
@griesemer did you close this by accident? Reopening... |
@josharian Apologies - this is happening to me lately. I was about to add something to this issue but then decided that all was said already. For some reason I appear to subconsciously interpret "Close and comment" as "Cancel" I think. (It's really a bad UI layout. Close should be red, and not the biggest button right next to "Comment"). But now that I'm here: I 100% agree with Alan Donovan's sentiment. Probably the single-biggest useful feature of the "C1" (client) compiler in the Java HotSpot VM (written back in the day) was the relatively "pretty" and easy-to-read output of the intermediate representation. It was (basic) block-by-block, with one line for each "instruction". The original code was not based on SSA but had an SSA-like format. The one major piece of code that survived from that time (almost 20yrs back!), even after they transitioned to SSA intermediate representation, is the code printing that output. So, yes, great, readable output for intermediate representation pays over time. |
I was also thinking an HTML-based viewer would be nice to let you visualize the passes. |
Some more nice to have features:
If HTML is chosen, it would still be good if the console output was as nice as possible. I would likely use the console output most of the time and resort to html output for more complex use cases. |
Thanks, @tzneal, good ideas. I'll aim to pull together a quick and dirty HTML prototype that is entirely independent of the console output, and we can see how we feel about it. More input always welcome. |
CL https://golang.org/cl/13472 mentions this issue. |
@alandonovan said during GopherCon that we should make our SSA printer amazing, since we're going to spend a lot of time poring over the output. I see more and more how right he was.
This issue is to discuss ideas for making the output more readable.
A few thoughts:
Perhaps generating HTML might be a good way to achieve this second goal--javascript and links could maybe help with the navigation challenges. It might also help with the first. For example, if every pass was laid out in a new column, and clicking a value highlighted its definition and uses across all passes, then it might be easier to navigate across time. There is an implementation question here: We'd need to have a notion of value/block identity across passes, which is non-trivial. However, we also need that for other purposes, like generating debug info. As for annotation, ideally all relevant annotation would eventually be automatically inserted, once we know what kinds of things we need to know.
What do you want from an SSA printer? Got ideas?
cc @randall77 @tzneal @dr2chase @alandonovan
The text was updated successfully, but these errors were encountered: