You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(I see the same if I run llc on an unoptimized .ll file)
Which is what I expected to get from rustc. Is there some LLVM pass that we are disabling that
prevents LLVM from removing the ud2 instruction? I also observe this behavior when compiling for ARM.
Meta
$ rustc -Vrustc 1.29.0-nightly (97085f9fb 2018-08-01)
$ # the llc is from a Rust build I had around
$ llc -version | head -n5LLVM (http://llvm.org/): LLVM version 7.0.0svn Optimized build. Default target: x86_64-unknown-linux-gnu Host CPU: skylake
I see that there is a target option to disable the unreachable -> trap lowering but disabling it opens my programs to UB in safe code whenever the user defines functions like main to be infinite loops with no side effects.
It seems that the only way to remove these trap instructions is to fix the original issue where LLVM misoptimizes infinite loops with no side effects (#28728).
I'm going to close this issue as it's a consequence of #28728.
The codegen option has little to do with #28728. It doesn't fix the soundness bug (though it does mitigate some simpler instances of it, downgrading them e.g. from wild reads to SIGILL) and the rationale for generating the trap instructions applies to any UB that can cause control to fall off the end of a function, including UB caused by wrong user code. It's a hardening measure, not something ensuring soundness.
STR
$ cat foo.rs
Is the
unreachable
after callingbar
really necessary?bar
isnoreturn nounwind
.The
ud2
instruction is dead code becausebar
never returns.If I manually use
llc
on the optimized.ll
file I get this:(I see the same if I run
llc
on an unoptimized.ll
file)Which is what I expected to get from
rustc
. Is there some LLVM pass that we are disabling thatprevents LLVM from removing the
ud2
instruction? I also observe this behavior when compiling for ARM.Meta
cc @nagisa
The text was updated successfully, but these errors were encountered: