Skip to content

Commit

Permalink
Add support for Vector Reciprocal Square Root Estimate 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 8fb0bcb commit 73dd6ae
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 @@ -254,6 +254,13 @@
"llvm": "vrefp",
"ret": "f32",
"args": ["0"]
},
{
"intrinsic": "rsqrte",
"width": [128],
"llvm": "vrsqrtefp",
"ret": "f32",
"args": ["0"]
}
]
}
5 changes: 5 additions & 0 deletions src/librustc_platform_intrinsics/powerpc.rs
Expand Up @@ -422,6 +422,11 @@ pub fn find(name: &str) -> Option<Intrinsic> {
output: &::F32x4,
definition: Named("llvm.ppc.altivec.vrefp")
},
"_vec_rsqrte" => Intrinsic {
inputs: { static INPUTS: [&'static Type; 1] = [&::F32x4]; &INPUTS },
output: &::F32x4,
definition: Named("llvm.ppc.altivec.vrsqrtefp")
},
_ => return None,
})
}

0 comments on commit 73dd6ae

Please sign in to comment.