-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
regression: code is SIGSEGVing after LLVM lifetime intrinsics were implemented #15972
Comments
Further on, this happens only with |
Can't find the relevant chunk in IR, here's the full dump (with -O2, i.e. when it crashes): https://gist.github.com/farcaller/49cd31d3f95126c6bf99 |
cc @dotdash |
@farcaller Could you provide the IR from -O2 before optimizations, i.e. from the |
Thanks, but unfortunately I wasn't paying enough attention and missed the fact that this is just a library and not a program making actual use the code. For generic functions, IR is only generated when there's a concrete user of the code. So, could you please also provide the IR (optimized as well as the .no-opt.bs file) for the program uses the library and causes the crash? |
This is a plugin to rustc, so far I wasn't been able to reproduce the crash on something standalone. Also I think rustc is using the dylib "as is", no? |
Sorry, I jumped to conclusions, the generic parameter is just a lifetime, so the above doesn't apply. Looking through zinc's Rakefile, it looks like you provided the results for the build target |
Could build that myself (had assumed that I'd need a cross-compile toolchain). |
ok, so you don't need anything from me now? |
This is a misoptimization in LLVM's SimplifyCFG pass, same bug as in #16011 which was luckily a bit easier to analyze. |
… intrinsics Fixes rust-lang#15972 and rust-lang#16011.
Previously valid code is now behaving wrong.
Here's the problem description: parser cannot parse input, as it's hitting wrong tokens. Apparently, a bunch of tokens in input are lost. The problem is in line [1], which works as expected when replaced by line [2]. The problem is getting even worse, as line [3] SIGSEGVs the application.
If line [1] is replaced by line [2], the code fails further, as I described in #15931. I think it relates to the same problem (parser reports bad token which isn't even in the input!). It kind of feels like memory corruption (in rust, heh).
Digging deeper, it seems that it doesn't crash at
debug!()
point, it's justdebug!()
somehow altering the program state to allow it to crash further on. gdb can't unwind the stack for some reason, lldb shows this:I did a bisect yesterday, which points at 92d1f15 as the first bad commit.
I will try to provide a smaller test case, but so far I had no luck, all the pieces extracted from the original crate seem to work as expected.
Please advise, we're kind of stuck with this breakage.
The text was updated successfully, but these errors were encountered: