Skip to content

Commit 4b7d9eb

Browse files
committed
---
yaml --- r: 227052 b: refs/heads/master c: 9d78efb h: refs/heads/master v: v3
1 parent ea9cec2 commit 4b7d9eb

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 907bbac40fe22113bdf19023f1831faada7b7ec0
2+
refs/heads/master: 9d78efbd601935ec11ce1b5f3dbadb9e3123fe2b
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
44
refs/heads/try: b53c0f93eedcdedd4fd89bccc5a3a09d1c5cd23e
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

trunk/src/librustc_platform_intrinsics/x86.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ pub fn find<'tcx>(_tcx: &ty::ctxt<'tcx>, name: &str) -> Option<Intrinsic> {
5757
"subs_epu16" => p!("sse2.psubus.w", (i16x8, i16x8) -> i16x8),
5858
"subs_epu8" => p!("sse2.psubus.b", (i8x16, i8x16) -> i8x16),
5959

60+
"addsub_pd" => p!("sse3.addsub.pd", (f64x2, f64x2) -> f64x2),
61+
"addsub_ps" => p!("sse3.addsub.ps", (f32x4, f32x4) -> f32x4),
62+
"hadd_pd" => p!("sse3.hadd.pd", (f64x2, f64x2) -> f64x2),
63+
"hadd_ps" => p!("sse3.hadd.ps", (f32x4, f32x4) -> f32x4),
64+
"hsub_pd" => p!("sse3.hsub.pd", (f64x2, f64x2) -> f64x2),
65+
"hsub_ps" => p!("sse3.hsub.ps", (f32x4, f32x4) -> f32x4),
66+
6067
"shuffle_epi8" => p!("ssse3.pshuf.b.128", (i8x16, i8x16) -> i8x16),
6168
_ => return None
6269
})

0 commit comments

Comments
 (0)