Skip to content

Commit 0c90878

Browse files
committed
---
yaml --- r: 273069 b: refs/heads/beta c: c306853 h: refs/heads/master i: 273067: 1335ed3
1 parent 5bba7c3 commit 0c90878

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-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: 51b5300b3fc83b445cd1e410be4b7d123f10472e
26+
refs/heads/beta: c306853edafb8b740c3e224ce4fa1842a6924dc5
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: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,56 @@ 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_broadcast_ps" => Intrinsic {
502+
inputs: vec![p(true, i(8), None)],
503+
output: v(f(32), 8),
504+
definition: Named("llvm.x86.avx.vbroadcastf128.ps.256")
505+
},
506+
"256_broadcast_pd" => Intrinsic {
507+
inputs: vec![p(true, i(8), None)],
508+
output: v(f(64), 4),
509+
definition: Named("llvm.x86.avx.vbroadcastf128.pd.256")
510+
},
511+
"256_cvtepi32_pd" => Intrinsic {
512+
inputs: vec![v(i(32), 4)],
513+
output: v(f(64), 4),
514+
definition: Named("llvm.x86.avx.cvtdq2.pd.256")
515+
},
516+
"256_cvtepi32_ps" => Intrinsic {
517+
inputs: vec![v(i(32), 8)],
518+
output: v(f(32), 8),
519+
definition: Named("llvm.x86.avx.cvtdq2.ps.256")
520+
},
521+
"256_cvtpd_epi32" => Intrinsic {
522+
inputs: vec![v(f(64), 4)],
523+
output: v(i(32), 4),
524+
definition: Named("llvm.x86.avx.cvt.pd2dq.256")
525+
},
526+
"256_cvtpd_ps" => Intrinsic {
527+
inputs: vec![v(f(64), 4)],
528+
output: v(f(32), 4),
529+
definition: Named("llvm.x86.avx.cvt.pd2.ps.256")
530+
},
531+
"256_cvtps_epi32" => Intrinsic {
532+
inputs: vec![v(f(32), 8)],
533+
output: v(i(32), 8),
534+
definition: Named("llvm.x86.avx.cvt.ps2dq.256")
535+
},
536+
"256_cvtps_pd" => Intrinsic {
537+
inputs: vec![v(f(32), 4)],
538+
output: v(f(64), 4),
539+
definition: Named("llvm.x86.avx.cvt.ps2.pd.256")
540+
},
541+
"256_cvttpd_epi32" => Intrinsic {
542+
inputs: vec![v(f(64), 4)],
543+
output: v(i(32), 4),
544+
definition: Named("llvm.x86.avx.cvtt.pd2dq.256")
545+
},
546+
"256_cvttps_epi32" => Intrinsic {
547+
inputs: vec![v(f(32), 8)],
548+
output: v(i(32), 8),
549+
definition: Named("llvm.x86.avx.cvtt.ps2dq.256")
550+
},
501551
"256_dp_ps" => Intrinsic {
502552
inputs: vec![v(f(32), 8), v(f(32), 8), i_(32, 8)],
503553
output: v(f(32), 8),

0 commit comments

Comments
 (0)