-
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: stack overflow accessing large return value #14028
Comments
Simpler example that reproduces the problem:
Without the loop it's fine. |
The following example:
fails to compile with "stack frame too large (>2GB)" error. It looks like compiler and runtime disagree about the maximum stack frame size. |
incorrect example deleted |
cc @randall77 as fun tests to add to the ssa branch too |
Sorry, ignore my last comment. I didn't test it properly ;) |
Did you know that Per the Go ABI, the return value will be passed on stack, |
@minux, |
Simpler repro:
Discussion about the The issue seems to be that when we're warning about stack frames that are >1GB, we're failing to include the space reserved for calling other functions. In the example above, main needs to allocate 1GB of stack space for fn's return values, but we're not including that space in the test. |
We’ve fixed a bunch of similar bugs recently. I’m AFK for a while but I’d wager this is now fixed, if someone wants to double-check. |
They still fail like they did in 1.11.4. |
Taken this toy example, that calculates prime numbers: http://play.golang.org/p/XrUCUvC7In
Building this with go build -gcflags -m shows following output
moved to heap: arr moved to heap: xHowever, running the program I get following error:
runtime: goroutine stack exceeds 1000000000-byte limit
fatal error: stack overflow
runtime stack:
runtime.throw(0x470f80, 0xe)
c:/go/src/runtime/panic.go:527 +0x97
runtime.newstack()
c:/go/src/runtime/stack1.go:800 +0xb25
runtime.morestack()
c:/go/src/runtime/asm_amd64.s:330 +0x87
goroutine 1 [stack growth]:
main.main()
C:/Users/Daniel/Desktop/rensir.go:27 fp=0xc0c202be50 sp=0xc0c202be48
runtime.main()
c:/go/src/runtime/proc.go:111 +0x27e fp=0xc0c202bea0 sp=0xc0c202be50
runtime.goexit()
c:/go/src/runtime/asm_amd64.s:1721 +0x1 fp=0xc0c202bea8 sp=0xc0c202bea0
Is it supposed to get a stackoverflow, if it is a heap object?
Go version: go1.5.3 windows/amd64
OS: windows 7 64 bit
The text was updated successfully, but these errors were encountered: