-
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
char::encode_utf8 crash on nightly #82833
Comments
Compiling with nightly-2021-03-05 on
I am not able to reproduce the crash, though the result is still incorrect: $ RUSTFLAGS="-Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code" cargo +nightly run
Compiling issue_82833 v0.1.0 (/Users/tous/Documents/Dev/rustc_issues/issue_82833)
Finished dev [unoptimized + debuginfo] target(s) in 46.25s
Running `target/debug/issue_82833`
[src/main.rs:8] ch = '😃'
[src/main.rs:10] string = "\u{0}\u{0}\u{0}\u{0}" |
#81451 is indeed the culprit: $ RUSTFLAGS="-Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code" cargo +ec7f258d543e1ac7d0b94435972331e85da8c509 run
Compiling issue_82833 v0.1.0 (/Users/tous/Documents/Dev/rustc_issues/issue_82833)
Finished dev [unoptimized + debuginfo] target(s) in 5.15s
Running `target/debug/issue_82833`
[src/main.rs:8] ch = '😃'
[src/main.rs:10] string = "😃"
$ RUSTFLAGS="-Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code" cargo +409920873cf8a95739a55dc5fe5adb05e1b4758e run
Compiling issue_82833 v0.1.0 (/Users/tous/Documents/Dev/rustc_issues/issue_82833)
Finished dev [unoptimized + debuginfo] target(s) in 16.55s
Running `target/debug/issue_82833`
[src/main.rs:8] ch = '😃'
[src/main.rs:10] string = "\u{0}\u{0}\u{0}\u{0}" |
@rustbot ping llvm |
Hey LLVM ICE-breakers! This bug has been identified as a good cc @camelid @comex @cuviper @DutchGhost @hdhoang @henryboisdequin @heyrutvik @higuoxing @JOE1994 @jryans @mmilenko @nagisa @nikic @Noah-Kennedy @SiavoshZarrasvand @spastorino @vertexclique |
Through an experiment wherein I link a // compile-flags: -Cinline-threshold=0 -Clink-dead-code -g --crate-type=cdylib --emit=link
#[no_mangle]
#[inline(never)]
pub extern "C" fn banana() -> String {
let mut bytes = [0u8; 4];
'😃'.encode_utf8(&mut bytes).into()
} to a test program such as this: // compile-flags: -lrepro -L.
extern "C" {
fn banana() -> String;
}
fn main() {
unsafe {
assert_eq!(banana(), "😃");
}
} I verified that this issue is caused by something in the |
I had to additionally use |
Assigning |
To illustrate what @tmiasko is saying:
you can see that the This won't happen when we compile the LLVM IR with |
Relevant IR: https://gist.github.com/nikic/9731da9ff13f58b0af9891f89326e8eb Under And if you drop the
|
Reducing the assertion failure gives:
Running with
The kill flag on the MOV64mr is not correct. Possibly FastISel related. |
Upstream report: https://bugs.llvm.org/show_bug.cgi?id=49467 Fixing this does seem to fix the original case as well. |
also assigning @nagisa just to doubly-ensure backport (from LLVM upstream to Rust's LLVM fork) for fixing this P-critical bug happens. |
On nightly 2021-03-05, with
RUSTFLAGS="-Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code"
, I am experiencing undefined behaviour which seems to be based aroundchar::encode_utf8
.I ran this code:
I expected to see the following output:
I get the above output on stable 1.50.0, or on the same nightly version if I remove at least one of the three
RUSTFLAGS
listed above.With all three flags present, on nightly 2021-03-05 I see the following output:
The exact bytes count varies, so this looks like UB to me.
Meta
rustc +nightly --version --verbose
:The text was updated successfully, but these errors were encountered: