-
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: inefficient increment of global array #10432
Comments
FTR, the full program is:
build with -l. |
For the reference, today foo compiles to this:
|
I'm surprised that the nil check isn't eliminated. It should be. @cherrymui? Combining the stack load and the zero extension is #15300. |
I don't think we do any nil check removal on non-constant array indexing. We could. |
For the reference: with today's tip (
There is ongoing CL 91415 which teaches nilcheckelim to understand that offsets from non-nil pointers are also non-nil. However it currently works with only fixed offsets, not non-constant indexing. /cc @mrosier-qdt |
/cc @bmakam-qdt |
go version devel +a02d925 Sun Apr 12 12:14:36 2015 +0300 linux/amd64
Program is:
Currently it is compiled to:
While it could be compiled to something along the lines of:
Here are several issues:
The text was updated successfully, but these errors were encountered: