-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle not all immediates having
abi::Scalar
s
- Loading branch information
Showing
3 changed files
with
134 additions
and
13 deletions.
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,35 @@ | ||
// compile-flags: -O -C no-prepopulate-passes | ||
// only-x86_64 (it's using arch-specific types) | ||
// min-llvm-version: 15.0 # this test assumes `ptr`s | ||
|
||
#![crate_type = "lib"] | ||
|
||
use std::arch::x86_64::{__m128, __m128i, __m256i}; | ||
use std::mem::transmute; | ||
|
||
// CHECK-LABEL: @check_sse_float_to_int( | ||
#[no_mangle] | ||
pub unsafe fn check_sse_float_to_int(x: __m128) -> __m128i { | ||
// CHECK-NOT: alloca | ||
// CHECK: %1 = load <4 x float>, ptr %x, align 16 | ||
// CHECK: store <4 x float> %1, ptr %0, align 16 | ||
transmute(x) | ||
} | ||
|
||
// CHECK-LABEL: @check_sse_pair_to_avx( | ||
#[no_mangle] | ||
pub unsafe fn check_sse_pair_to_avx(x: (__m128i, __m128i)) -> __m256i { | ||
// CHECK-NOT: alloca | ||
// CHECK: %1 = load <4 x i64>, ptr %x, align 16 | ||
// CHECK: store <4 x i64> %1, ptr %0, align 32 | ||
transmute(x) | ||
} | ||
|
||
// CHECK-LABEL: @check_sse_pair_from_avx( | ||
#[no_mangle] | ||
pub unsafe fn check_sse_pair_from_avx(x: __m256i) -> (__m128i, __m128i) { | ||
// CHECK-NOT: alloca | ||
// CHECK: %1 = load <4 x i64>, ptr %x, align 32 | ||
// CHECK: store <4 x i64> %1, ptr %0, align 16 | ||
transmute(x) | ||
} |
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