-
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
runtime: simplify right shift and zero test #30272
Comments
not that this matters at all, but:
(or I don't know whether it's intentional that both 0 and 1 inputs yield 0. It's irrelevant to the optimization opportunity, though. |
@TuomLarsen w.r.t. to |
@josharian |
Ah, I mistranslated the assembly when checking on the encoding and used the wrong width register. Sigh. We should start generating the shorter version. I’m AFK—would you mind opening a new issue for this so that it can be tracked separately from re-using the flags result of the shift? Thanks. It’d actually make a decent starter issue for someone who wanted to contribute to SSA world, since we also make last minute encoding decisions in a similar way e.g. to use MOVL instead of MOVQ for small constants. cc @martisch |
I've just checked and it seems that Go is indeed generating the shorter (implicit 1) version for the shift so I guess there is no need to open a separate issue. The disassembler says |
What version of Go are you using (
go version
)?1.11
What did you do?
Please consider the following dummy code:
What did you expect to see?
Main part of the loop could compile down to (i.e. without the test for zero):
or even:
What did you see instead?
It compiles down to (on x86):
PS: I've just noticed similar situation occurs with
- 1
, instead of>> 1
:There the:
could also be replaced by:
The text was updated successfully, but these errors were encountered: