Skip to content

Commit

Permalink
Add support for Vector Negative Multiply Subtract Float on PowerPC
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-zero committed Sep 27, 2017
1 parent e413814 commit 7bdf013
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/etc/platform-intrinsics/powerpc.json
Expand Up @@ -227,6 +227,13 @@
"ret": "f32",
"args": ["0", "0", "0"]
},
{
"intrinsic": "nmsub",
"width": [128],
"llvm": "vnmsubfp",
"ret": "f32",
"args": ["0", "0", "0"]
},
{
"intrinsic": "expte",
"width": [128],
Expand Down
5 changes: 5 additions & 0 deletions src/librustc_platform_intrinsics/powerpc.rs
Expand Up @@ -402,6 +402,11 @@ pub fn find(name: &str) -> Option<Intrinsic> {
output: &::F32x4,
definition: Named("llvm.ppc.altivec.vmaddfp")
},
"_vec_nmsub" => Intrinsic {
inputs: { static INPUTS: [&'static Type; 3] = [&::F32x4, &::F32x4, &::F32x4]; &INPUTS },
output: &::F32x4,
definition: Named("llvm.ppc.altivec.vnmsubfp")
},
"_vec_expte" => Intrinsic {
inputs: { static INPUTS: [&'static Type; 1] = [&::F32x4]; &INPUTS },
output: &::F32x4,
Expand Down

0 comments on commit 7bdf013

Please sign in to comment.