File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
branches/try/src/librustc_platform_intrinsics Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: edeb4f1c86cbf6af8ef9874d4b3af50f721ea1b8
3
3
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4
- refs/heads/try: 907bbac40fe22113bdf19023f1831faada7b7ec0
4
+ refs/heads/try: 9d78efbd601935ec11ce1b5f3dbadb9e3123fe2b
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
6
6
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
7
7
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -57,6 +57,13 @@ pub fn find<'tcx>(_tcx: &ty::ctxt<'tcx>, name: &str) -> Option<Intrinsic> {
57
57
"subs_epu16" => p ! ( "sse2.psubus.w" , ( i16x8, i16x8) -> i16x8) ,
58
58
"subs_epu8" => p ! ( "sse2.psubus.b" , ( i8x16, i8x16) -> i8x16) ,
59
59
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
+
60
67
"shuffle_epi8" => p ! ( "ssse3.pshuf.b.128" , ( i8x16, i8x16) -> i8x16) ,
61
68
_ => return None
62
69
} )
You can’t perform that action at this time.
0 commit comments