-
Notifications
You must be signed in to change notification settings - Fork 63
[Sparc] Account for bias in stack readjustment #94
[Sparc] Account for bias in stack readjustment #94
Conversation
Thanks for the PR! Is this in upstream LLVM yet? |
It has been submitted upstream, but not merged yet. |
Ok! Let's hold off on merging until this is upstream? |
That's up to you. We just won't be able to build a working compiler on sparc64/sparcv9 before this fix has been merged. |
Ok yeah it's just standard procedure for us to wait until patches like this are upstream before merging. |
@alexcrichton It has been merged upstream now, see: I have updated the branch to include the changes @jrtc27 made to the testsuite. So the change matches what upstream merged now. Can you pull the change? |
Actually it still hasn't been merged, just approved; I've pinged the review again. |
Since this patch affects sparc64 only and since it unbreaks the Rust compiler on Linux/sparc64, can we maybe get an exception for getting it merged? It's the only things that keeps us from having a working Rust compiler on Linux/sparc64 at the moment. |
@alexcrichton It has been merged now upstream. Could we get this merged here now as well? |
Sure thing, thanks for getting this upstreamed! |
Thanks a lot! I just saw that there is a 6.0 LLVM branch now. Should I open a PR for this branch as well so the patch lands there, too? |
Ah no need! I went ahead an put the commit on the branch |
Wow, you were so fast that it was already there when I just pulled to check whether's it's necessary :D. |
While working on bootstrapping rustc for sparc64, Michael Karcher discovered that LLVM may generate code where the stack alignment on sparc64 is incorrect which results in rustc segfaulting on sparc64 [1].
Michael created a crude hack which fixed the issue and therefore proved his theory. James Clarke later came up with a proper patch which he has submitted upstream [2].
I have tested both Michael's and James' patch and both fix the segfault of rustc on sparc64. Since Michael's patch does deal with alignment larger than 4k and may also not fix corrupted stack pointers, we chose to use
James' patch.
The patch has already been merged into the llvm-toolchain-4.0 package [3].
Thanks,
Adrian