-
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
runtime: Go 1.17, Windows unexpected return pc for runtime.call16 called #46301
Comments
Thanks for the report and bisecting. Also CC @cherrymui. Marking a release blocker because it appears to be a serious issue and a regression in 1.17. |
cc @thanm maybe there are some relation between those issues. |
You might try patching in https://go-review.googlesource.com/c/go/+/321830 to see if that helps. |
It appears this involves Windows callbacks. cc @mknyszek |
I tried on gomote. It doesn't seem to help, at least for the playground one. |
In particular, the playground example has a callback ( |
It's also strange that the unwinder has a problem getting to |
Oops, no, there's also I think |
Yeah, cgocallback switches stack, so it won't unwind to callbackasm1. But it's odd that it fails at call16 (i.e. reflectcall). |
There must be something deeper going on. A few more (potentially useful) observations:
|
Wait. Why it uses call16? If reflectcall is calling windowProc, which has a good number of args, it should open a larger frame? If the frame is too small, it is not surprising that the return PC is clobbered. |
This is probably some garbage left over on the stack. Just not being touched by the current running frame. (We don't pre-zero the entire stack.) |
Ah hah, good point re: |
Oh, I know why. @cherrymui we have a register ABI now! :P The arguments are passed in registers. |
But we still need to open up frame for the spill slots. I think this is also how it related to David's CL https://go-review.googlesource.com/c/go/+/313212 , which may change where things are spilled. |
@cherrymui Oops. Looks like I forgot to include spill slots in |
Yeah, it is due to dstStackSize. I blindly increase dstStackSize by 100 and it no longer crashes. @mknyszek will have a real fix. Thanks. |
Change https://golang.org/cl/322029 mentions this issue: |
I was trying different things with latest Go (831573c) and a Gio program crashed with:
Easiest way to reproduce the issue is:
hello
crash outputThe issue also happens with https://play.golang.org/p/2JzHDalGN7Q from #34474.
playground
crash outputI'm not sure where the culprit lies.
The text was updated successfully, but these errors were encountered: