-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #116510 - scottmcm:no-1-simd-v2, r=compiler-errors
Copy 1-element arrays as scalars, not vectors For `[T; 1]` it's silly to copy as `<1 x T>` when we can just copy as `T`. Inspired by #101210 (comment), which pointed out that `Option<[u8; 1]>` was codegenning worse than `Option<u8>`. (I'm not sure *why* LLVM doesn't optimize out `<1 x u8>`, but might as well just not emit it in the first place in this codepath.) --- I think I bit off too much in #116479; let me try just the scalar case first. r? `@ghost`
- Loading branch information
Showing
4 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// assembly-output: emit-asm | ||
// compile-flags: --crate-type=lib -O -C llvm-args=-x86-asm-syntax=intel | ||
// only-x86_64 | ||
// ignore-sgx | ||
// ignore-macos (manipulates rsp too) | ||
|
||
// Depending on various codegen choices, this might end up copying | ||
// a `<2 x i8>`, an `i16`, or two `i8`s. | ||
// Regardless of those choices, make sure the instructions use (2-byte) words. | ||
|
||
// CHECK-LABEL: array_copy_2_elements: | ||
#[no_mangle] | ||
pub fn array_copy_2_elements(a: &[u8; 2], p: &mut [u8; 2]) { | ||
// CHECK-NOT: byte | ||
// CHECK-NOT: mov | ||
// CHECK: mov{{.+}}, word ptr | ||
// CHECK-NEXT: mov word ptr | ||
// CHECK-NEXT: ret | ||
*p = *a; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// compile-flags: -O | ||
|
||
#![crate_type = "lib"] | ||
|
||
// CHECK-LABEL: @array_copy_1_element | ||
#[no_mangle] | ||
pub fn array_copy_1_element(a: &[u8; 1], p: &mut [u8; 1]) { | ||
// CHECK-NOT: alloca | ||
// CHECK: %[[TEMP:.+]] = load i8, ptr %a, align 1 | ||
// CHECK: store i8 %[[TEMP]], ptr %p, align 1 | ||
// CHECK: ret | ||
*p = *a; | ||
} | ||
|
||
// CHECK-LABEL: @array_copy_2_elements | ||
#[no_mangle] | ||
pub fn array_copy_2_elements(a: &[u8; 2], p: &mut [u8; 2]) { | ||
// CHECK-NOT: alloca | ||
// CHECK: %[[TEMP:.+]] = load <2 x i8>, ptr %a, align 1 | ||
// CHECK: store <2 x i8> %[[TEMP]], ptr %p, align 1 | ||
// CHECK: ret | ||
*p = *a; | ||
} | ||
|
||
// CHECK-LABEL: @array_copy_4_elements | ||
#[no_mangle] | ||
pub fn array_copy_4_elements(a: &[u8; 4], p: &mut [u8; 4]) { | ||
// CHECK-NOT: alloca | ||
// CHECK: %[[TEMP:.+]] = load <4 x i8>, ptr %a, align 1 | ||
// CHECK: store <4 x i8> %[[TEMP]], ptr %p, align 1 | ||
// CHECK: ret | ||
*p = *a; | ||
} |