-
Notifications
You must be signed in to change notification settings - Fork 18k
cmd/compile: for range loop reading past slice end [1.13 backport] #40500
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
Comments
This is a rare but serious miscompilation, where loop end conditions aren't respected. |
Change https://golang.org/cl/245957 mentions this issue: |
This has been approved since it is a serious issue without any known workarounds. |
Is this still opened ? @gopherbot |
@BLasan This issue is still open because the change has not been submitted. |
@ianlancetaylor /assign me |
Can I work on this? |
@BLasan Sorry, there's nothing left to do on this particular issue. All that needs to happen is to merge CL 245957 into the release branch. Whoever packages up the next 1.13 point release will do that. The actual work for making inductive variable detection better is #40502 . There's already one CL for that, but if you're interested in the prove code there might be other improvements to be had. Or look at other prove improvement issues. |
Thanks for the update. I'll pickup a issue from the link you provide |
…there is no direct edge from if block to phi block Currently in addLocalInductiveFacts, we only check whether direct edge from if block to phi block exists. If not, the following logic will treat the phi block as the first successor, which is wrong. This patch makes prove pass more conservative, so we disable some cases in test/prove.go. We will do some optimization in the following CL and enable these cases then. Fixes #40500. Change-Id: I27cf0248f3a82312a6f7dabe11c79a1a34cf5412 Reviewed-on: https://go-review.googlesource.com/c/go/+/244579 Reviewed-by: Zach Jones <zachj1@gmail.com> Reviewed-by: Keith Randall <khr@golang.org> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-on: https://go-review.googlesource.com/c/go/+/245957 Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org>
Closed by merging 5ebdfd9 to release-branch.go1.13. |
@randall77 requested issue #40367 to be considered for backport to the next 1.13 minor release.
The text was updated successfully, but these errors were encountered: