summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/operator-overloading-issue-52025.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/traits/operator-overloading-issue-52025.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/traits/operator-overloading-issue-52025.rs')
-rw-r--r--tests/ui/traits/operator-overloading-issue-52025.rs57
1 files changed, 57 insertions, 0 deletions
diff --git a/tests/ui/traits/operator-overloading-issue-52025.rs b/tests/ui/traits/operator-overloading-issue-52025.rs
new file mode 100644
index 000000000..7ce638832
--- /dev/null
+++ b/tests/ui/traits/operator-overloading-issue-52025.rs
@@ -0,0 +1,57 @@
+// only-x86_64
+// build-pass
+
+use std::arch::x86_64::*;
+use std::fmt::Debug;
+use std::ops::*;
+
+pub trait Simd {
+ type Vf32: Copy + Debug + Add<Self::Vf32, Output = Self::Vf32> + Add<f32, Output = Self::Vf32>;
+
+ unsafe fn set1_ps(a: f32) -> Self::Vf32;
+ unsafe fn add_ps(a: Self::Vf32, b: Self::Vf32) -> Self::Vf32;
+}
+
+#[derive(Copy, Debug, Clone)]
+pub struct F32x4(pub __m128);
+
+impl Add<F32x4> for F32x4 {
+ type Output = F32x4;
+
+ fn add(self, rhs: F32x4) -> F32x4 {
+ F32x4(unsafe { _mm_add_ps(self.0, rhs.0) })
+ }
+}
+
+impl Add<f32> for F32x4 {
+ type Output = F32x4;
+ fn add(self, rhs: f32) -> F32x4 {
+ F32x4(unsafe { _mm_add_ps(self.0, _mm_set1_ps(rhs)) })
+ }
+}
+
+pub struct Sse2;
+impl Simd for Sse2 {
+ type Vf32 = F32x4;
+
+ #[inline(always)]
+ unsafe fn set1_ps(a: f32) -> Self::Vf32 {
+ F32x4(_mm_set1_ps(a))
+ }
+
+ #[inline(always)]
+ unsafe fn add_ps(a: Self::Vf32, b: Self::Vf32) -> Self::Vf32 {
+ F32x4(_mm_add_ps(a.0, b.0))
+ }
+}
+
+unsafe fn test<S: Simd>() -> S::Vf32 {
+ let a = S::set1_ps(3.0);
+ let b = S::set1_ps(2.0);
+ let result = a + b;
+ result
+}
+
+fn main() {
+ println!("{:?}", unsafe { test::<Sse2>() });
+}