-
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: unnecessary bounds checks are not removed #14808
Comments
CL https://golang.org/cl/20654 mentions this issue. |
Is this a duplicate of #5364 ? Both seem like tracking issues. |
* This the simplest solution I could came up with that doesn't required changing the compiler. * The bound checks become constants now so they are removed during opt phase. Updates #14808 Change-Id: If32c33d7ec08bb400321b465015d152f0a5d3001 Reviewed-on: https://go-review.googlesource.com/20654 Reviewed-by: Russ Cox <rsc@golang.org> Run-TryBot: Alexandru Moșoi <alexandru@mosoi.ro> TryBot-Result: Gobot Gobot <gobot@golang.org>
A case that maybe could be added to the doc above and loopbce.go is when writing to an array/slice from back to front e.g. for integer formatting:
This currently generates bounds checks but when writing the above with i = 0; i < len(buf); i++ the bounds checks are removed. |
https://play.golang.org/p/epAcCz9W-Uu If you have four slice indexing operations in a single expression, with constant indexes, it should be possible to combine them. |
Change https://golang.org/cl/202517 mentions this issue: |
Please answer these questions before submitting your issue. Thanks!
go version
)?go version devel +8ec8017 Sun Mar 13 22:12:01 2016 +0000 linux/amd64
go env
)?GOARCH="amd64"
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
I composed a list of bounds checks that the compiler at tip can and cannot eliminate. For some I provided an alternative implementation.
The text was updated successfully, but these errors were encountered: