-
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: add line numbers for values and blocks at HTML SSA output? #17314
Comments
I find the html output pretty cluttered already. I feel like adding line numbers would only make that worse. I guess I'm not philosophically opposed, but I'd like to see some more arguments for why it is useful. I've never encountered a situation where line numbers might be useful (except maybe for debugging line number generation). |
Could it be switchable? There's a mess of Javascript in there already, this might not be too much. One sometime use of the SSA output is to copy a column out for processing in an editor (e.g., diffing against another compilation of same code), so a mitigating bell/whistle might be a "copy" button for each column, since those line numbers might be mess up the copy (which sometimes requires post-processing anyhow). |
Just now realized, what happens with line numbers when we inline functions, and how would we want to express that, assuming we haven't made a mess of that information already in the compiler? Color-coded? Tool-tips for the function name? Note that once we start inlining calls that contain safepoints, we'll need to get this right anyhow for stack traces and debugging. |
Deferring to @randall77 to decide. Removing proposal label. |
Adding this is ok, but please put it behind a flag that is off by default. |
/cc @ysmolsky |
We already have it in the "genssa" section, and it's pretty simplifies understanding what's going on. I propose to do the same for other sections of the output.
Since writing
(sourcefile.go:42)
will make output noisier it would be better to show just line numbers in the left column and make them gray colored and with smaller font size than the code (so it looks like in editors).If you ok with that I can show my vision of design for approval and then provide CL.
The text was updated successfully, but these errors were encountered: