Skip to content

Commit 3614659

Browse files
committed
---
yaml --- r: 273110 b: refs/heads/beta c: a394d50 h: refs/heads/master
1 parent b0eec00 commit 3614659

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: e1489caf0b1796db5dc5bc9946db0453838366ea
26+
refs/heads/beta: a394d50490bc1f73afeed1d408f6153d267851b2
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/librustc_platform_intrinsics/x86.rs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,16 @@ pub fn find<'tcx>(_tcx: &TyCtxt<'tcx>, name: &str) -> Option<Intrinsic> {
498498
output: v(f(64), 4),
499499
definition: Named("llvm.x86.avx.addsub.pd.256")
500500
},
501+
"256_blendv_ps" => Intrinsic {
502+
inputs: vec![v(f(32), 8), v(f(32), 8), v(f(32), 8)],
503+
output: v(f(32), 8),
504+
definition: Named("llvm.x86.avx.blendv.ps.256")
505+
},
506+
"256_blendv_pd" => Intrinsic {
507+
inputs: vec![v(f(64), 4), v(f(64), 4), v(f(64), 4)],
508+
output: v(f(64), 4),
509+
definition: Named("llvm.x86.avx.blendv.pd.256")
510+
},
501511
"256_broadcast_ps" => Intrinsic {
502512
inputs: vec![p(true, i(8), None)],
503513
output: v(f(32), 8),
@@ -508,6 +518,16 @@ pub fn find<'tcx>(_tcx: &TyCtxt<'tcx>, name: &str) -> Option<Intrinsic> {
508518
output: v(f(64), 4),
509519
definition: Named("llvm.x86.avx.vbroadcastf128.pd.256")
510520
},
521+
"256_cmp_ps" => Intrinsic {
522+
inputs: vec![v(f(32), 8), v(f(32), 8), i(8)],
523+
output: v(f(32), 8),
524+
definition: Named("llvm.x86.avx.cmp.ps.256")
525+
},
526+
"256_cmp_pd" => Intrinsic {
527+
inputs: vec![v(f(64), 4), v(f(64), 4), i(8)],
528+
output: v(f(64), 4),
529+
definition: Named("llvm.x86.avx.cmp.pd.256")
530+
},
511531
"256_cvtepi32_pd" => Intrinsic {
512532
inputs: vec![v(i(32), 4)],
513533
output: v(f(64), 4),

0 commit comments

Comments
 (0)