-
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: suboptimal compilation of struct-valued switch statements #15164
Comments
I think shouldn't be too tough to improve this a lot for pointer-free AMEM16, AMEM32, and AMEM64 values—I'm happy to look into that when it comes around on the guitar. General AMEM values should be doable, albeit more complicated. For specialized alg-type values, I suspect the only improvements will be in the back end. This particular case is AMEM16, no? |
Moved part of this to #15303. Leaving this for the binary search vs linear search, since that is the part that is actually about switch statements, not struct ==. |
Thinking out loud, there are at least three options for binary search over
I'll do some experimenting. |
The mechanics for binary search in expression switch statements was spread out across the code generation. Refactor it out and document it. This will make it easier to extend binary search to more types. Passes toolstash -cmp. (TODO) TODO: perf Update golang#15164. Change-Id: I8d8f0213781e36484e179396a21e45fe3058281f
This is on hold until SSA is the default everywhere. See CL 22277 and CL 22339. FWIW, I now think the best way forward is to decompose and do an elem-wise comparison. Simple, obvious, straightforward, optimizable, and still better than a linear search. |
DO NOT REVIEW [There’s no real point doing this until we generate better equality checks for composite literals, and that’s on hold for a while. See CL 22277.] The mechanics for binary search in expression switch statements was spread out across the code generation. Refactor it out and document it. This will make it easier to extend binary search to more types, using isStaticCompositeLiteral. Passes toolstash -cmp. (TODO) Update golang#15164. Change-Id: I8d8f0213781e36484e179396a21e45fe3058281f
DO NOT REVIEW [There’s no real point doing this until we generate better equality checks for composite literals, and that’s on hold for a while. See CL 22277.] The mechanics for binary search in expression switch statements was spread out across the code generation. Refactor it out and document it. This will make it easier to extend binary search to more types, using isStaticCompositeLiteral. Passes toolstash -cmp. (TODO) Update golang#15164. Change-Id: I8d8f0213781e36484e179396a21e45fe3058281f
DO NOT REVIEW [There’s no real point doing this until we generate better equality checks for composite literals, and that’s on hold for a while. See CL 22277.] The mechanics for binary search in expression switch statements was spread out across the code generation. Refactor it out and document it. This will make it easier to extend binary search to more types, using isStaticCompositeLiteral. Passes toolstash -cmp. (TODO) Update golang#15164. Change-Id: I8d8f0213781e36484e179396a21e45fe3058281f
For CL 21627, I evaluated replacing the switch statement in cmd/link/internal/ld.relSize with:
But this ends up compiling into much less efficient code than the existing idiom of combining into integer constants:
The text was updated successfully, but these errors were encountered: