-
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: internal compiler error: not lowered: v403, Store SSA UINTPTR INT SSA #28430
Comments
A bisect would be extremely helpful. |
I traced the error back from ssa to the AST after walk. It has this call:
It's passing the wrong type to the first argument. There needs to be a real Here's a simple repro:
|
Given that, possible dup of
#28390? Might check if the CL for that
issue fixes this one too. (We’d want to add a test case for this even if
so.) I’m AFK for a bit though.
…On Sat, Oct 27, 2018 at 2:21 PM Keith Randall ***@***.***> wrote:
I traced the error back from ssa to the AST after walk. It has this call:
. . CALLFUNC l(218) tc(1) hascall
. . . NAME-y.Check2 a(true) l(48) x(0) class(PFUNC) tc(1) used FUNC-func(interface {}, error)
. . CALLFUNC-rlist
. . . CONVNOP l(218) tc(1) int
. . . . NAME-bytes.n a(true) l(299) x(0) class(PAUTO) tc(1) assigned used int
. . . NAME-bytes.err a(true) l(299) x(0) class(PAUTO) tc(1) assigned used error
It's passing the wrong type to the first argument. There needs to be a
real CONV, not a CONVNOP, as it has to convert from an int to an
interface{}.
Here's a simple repro:
package main
func g(_ interface{}, e error)
func h() (int, error)
func f() {
g(h())
}
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#28430 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAEHqL0bfJnPp2H8-YGucZ76yBTzeinpks5upM4-gaJpZM4X89fG>
.
|
@josharian It's your CL https://go-review.googlesource.com/c/114797 that caused it. |
Change https://golang.org/cl/144598 mentions this issue: |
CL 114797 reworked how arguments get written to the stack. Some type conversions got lost in the process. Restore them. Fixes #28390 Updates #28430 Change-Id: Ia0d37428d7d615c865500bbd1a7a4167554ee34f Reviewed-on: https://go-review.googlesource.com/c/144598 Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> Reviewed-by: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
What version of Go are you using (
go version
)?go version devel +18b84cbd42 Fri Oct 26 20:13:40 2018 +0000 linux/amd64
Running
all.bash
passed all tests.Does this issue reproduce with the latest release?
go version go1.11.1 linux/amd64 - No, compile successfully
What operating system and processor architecture are you using (
go env
)?Arch Linux x64, Dell XPS 9560
What did you do?
Attempting to compile dgraph-io/badger at commit 758c4ba9 causes the following internal compile error:
Error happens on the
for
line in the following function (table/builder.go):The text was updated successfully, but these errors were encountered: