Skip to content
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

Codegen regression in Ipv6Addr [u16; 8] to [u8; 16] conversion #122805

Closed
paolobarbolini opened this issue Mar 21, 2024 · 5 comments · Fixed by #123555
Closed

Codegen regression in Ipv6Addr [u16; 8] to [u8; 16] conversion #122805

paolobarbolini opened this issue Mar 21, 2024 · 5 comments · Fixed by #123555
Labels
A-codegen Area: Code generation A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. C-bug Category: This is a bug. I-slow Issue: Problems and improvements with respect to performance of generated code. llvm-fixed-upstream Issue expected to be fixed by the next major LLVM upgrade, or backported fixes P-medium Medium priority regression-untriaged Untriaged performance or correctness regression.

Comments

@paolobarbolini
Copy link
Contributor

Code

I tried this code:

// Taken from `Ipv6Addr::new`

pub fn convert1(value: [u16; 8]) -> [u8; 16] {
    let addr16 = [
        value[0].to_be(),
        value[1].to_be(),
        value[2].to_be(),
        value[3].to_be(),
        value[4].to_be(),
        value[5].to_be(),
        value[6].to_be(),
        value[7].to_be(),
    ];
    unsafe { std::mem::transmute::<_, [u8; 16]>(addr16) }
}

pub fn convert2(value: [u16; 8]) -> [u8; 16] {
    let addr16 = value.map(|val| val.to_be());
    unsafe { std::mem::transmute::<_, [u8; 16]>(addr16) }
}

I expected to see this happen: these two pieces of code produced the same assembly

Instead, this happened: the first version generates worse code https://rust.godbolt.org/z/qrz7Pn1a7

Version it worked on

It most recently worked on: 1.76

Version with regression

rustc --version --verbose:

rustc 1.78.0-beta.1 (efd9d2df1 2024-03-18)
binary: rustc
commit-hash: efd9d2df12b5e17fac0b4d0fb89f612ecd79f259
commit-date: 2024-03-18
host: x86_64-unknown-linux-gnu
release: 1.78.0-beta.1
LLVM version: 18.1.2
@paolobarbolini paolobarbolini added C-bug Category: This is a bug. regression-untriaged Untriaged performance or correctness regression. labels Mar 21, 2024
@rustbot rustbot added I-prioritize Issue: Indicates that prioritization has been requested for this issue. needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Mar 21, 2024
@workingjubilee workingjubilee added the A-codegen Area: Code generation label Mar 21, 2024
@saethlin saethlin added A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. I-slow Issue: Problems and improvements with respect to performance of generated code. and removed needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Mar 21, 2024
@dianqk
Copy link
Member

dianqk commented Mar 21, 2024

The main branch of LLVM may have fixed this issue: https://llvm.godbolt.org/z/WzM1dvrTb.

@workingjubilee
Copy link
Member

workingjubilee commented Mar 21, 2024

This seems to become much better if one uses infallible destructuring, like so: https://rust.godbolt.org/z/csraMobE8

Whoops, compared against 1.76, my mistake.

@apiraino
Copy link
Contributor

WG-prioritization assigning priority (Zulip discussion).

@rustbot label -I-prioritize +P-medium

@rustbot rustbot added P-medium Medium priority and removed I-prioritize Issue: Indicates that prioritization has been requested for this issue. labels Mar 21, 2024
@dianqk
Copy link
Member

dianqk commented Mar 21, 2024

I have bisected to llvm/llvm-project@1e828f8 (llvm/llvm-project#82279). But I'm not sure if this match the backport rules.

I have submitted a backport request, but it may be rejected.

@dianqk
Copy link
Member

dianqk commented Mar 24, 2024

@rustbot label llvm-fixed-upstream

@rustbot rustbot added the llvm-fixed-upstream Issue expected to be fixed by the next major LLVM upgrade, or backported fixes label Mar 24, 2024
dianqk added a commit to dianqk/rust that referenced this issue Apr 6, 2024
bors added a commit to rust-lang-ci/rust that referenced this issue Apr 7, 2024
Update to LLVM 18.1.3

Fixes rust-lang#122805.

This should work on all targets: https://rust.godbolt.org/z/svW8ha31z.

r? `@cuviper`
dianqk added a commit to dianqk/rust that referenced this issue Apr 7, 2024
@bors bors closed this as completed in 0e3235f Apr 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-codegen Area: Code generation A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. C-bug Category: This is a bug. I-slow Issue: Problems and improvements with respect to performance of generated code. llvm-fixed-upstream Issue expected to be fixed by the next major LLVM upgrade, or backported fixes P-medium Medium priority regression-untriaged Untriaged performance or correctness regression.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants