Closed
Description
I discovered the cause of a fairly big performance regression (from ~22s to ~29s in a specific benchmark) in my small BF interpreter and I succesfully minified the code:
#[derive(Clone, Copy)]
enum Inner {
A,
B,
C,
}
enum Outer {
X(u32),
Y(Inner)
}
#[inline(never)]
fn print(x: &Outer) {
match *x {
Outer::X(num) => println!("{:?}", num),
// Replace this...
Outer::Y(i) => {
match i {
Inner::A => println!("A"),
Inner::B => println!("B"),
Inner::C => println!("C"),
}
}
// ...with this
// Outer::Y(ref i) => {
// match *i {
// Inner::A => println!("A"),
// Inner::B => println!("B"),
// Inner::C => println!("C"),
// }
// }
}
}
fn main(){
let x = Outer::Y(Inner::B);
print(&x);
}
On stable, both version of this code compiles to the exact same binary (and also on 1.9.0 and 1.10.0, both old-trans and MIR on each version respectively). On beta and nightly, the commented out code becomes slower. My understanding is that this should compile to the same binary, so this is incorrect behavior.
The last correct version is rustc 1.12.0-nightly (7333c4ac2 2016-07-31)
, right before the update to LLVM 3.9.
EDIT: I noticed that the minified example does compile to the same binary (I somehow got confused) so I added the #[inline(never)]
.
Metadata
Metadata
Assignees
Labels
Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues.Category: An issue proposing an enhancement or a PR with one.Issue: Problems and improvements with respect to performance of generated code.Medium priorityRelevant to the compiler team, which will review and decide on the PR/issue.Performance or correctness regression from one stable version to another.