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

Missing optimization with transmute_copy on enums #113848

Open
Jarcho opened this issue Jul 19, 2023 · 1 comment
Open

Missing optimization with transmute_copy on enums #113848

Jarcho opened this issue Jul 19, 2023 · 1 comment
Labels
C-bug Category: This is a bug. C-optimization Category: An issue highlighting optimization opportunities or PRs implementing such I-slow Issue: Problems and improvements with respect to performance of generated code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@Jarcho
Copy link
Contributor

Jarcho commented Jul 19, 2023

Similar to #109958, but with transmute_copy. Transmuting a fieldless enum to it's integer type causes the optimizer to lose track of it's possible values.

Example:

#[repr(u32)]
enum E { X = 0 }
fn f(x: E) {
    assert_eq!(unsafe { *core::mem::transmute_copy::<E, i32>(&x) }, 0); // Not optimized out
}

cc Lokathor/bytemuck#175

@Jarcho Jarcho added I-slow Issue: Problems and improvements with respect to performance of generated code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. C-bug Category: This is a bug. labels Jul 19, 2023
@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Jul 19, 2023
@scottmcm
Copy link
Member

One possible "fix" would be to stabilize some kind of wrapper around https://doc.rust-lang.org/nightly/std/intrinsics/fn.transmute_unchecked.html, because arguably code like this never actually wanted to use transmute_copy, and if it were to use transmute_unchecked instead then it would optimize: https://rust.godbolt.org/z/PWW4TE8s3

@saethlin saethlin removed the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Jul 23, 2023
@workingjubilee workingjubilee added the C-optimization Category: An issue highlighting optimization opportunities or PRs implementing such label Oct 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: This is a bug. C-optimization Category: An issue highlighting optimization opportunities or PRs implementing such I-slow Issue: Problems and improvements with respect to performance of generated code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

5 participants