mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
Add support for PowerPC Altivec/VSX intrinsics
This commit is contained in:
parent
bae663b236
commit
9ed8cf87a6
21
src/etc/platform-intrinsics/powerpc.json
Normal file
21
src/etc/platform-intrinsics/powerpc.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"platform": "powerpc",
|
||||
"intrinsic_prefix": "_vec_",
|
||||
"llvm_prefix": "llvm.ppc.altivec.",
|
||||
"number_info": {
|
||||
"unsigned": {},
|
||||
"signed": {}
|
||||
},
|
||||
"width_info": {
|
||||
"128": { "width": "" }
|
||||
},
|
||||
"intrinsics": [
|
||||
{
|
||||
"intrinsic": "perm",
|
||||
"width": [128],
|
||||
"llvm": "vperm",
|
||||
"ret": "s32",
|
||||
"args": ["0", "0", "s8"]
|
||||
}
|
||||
]
|
||||
}
|
@ -113,6 +113,7 @@ mod arm;
|
||||
mod aarch64;
|
||||
mod nvptx;
|
||||
mod hexagon;
|
||||
mod powerpc;
|
||||
|
||||
impl Intrinsic {
|
||||
pub fn find(name: &str) -> Option<Intrinsic> {
|
||||
@ -126,6 +127,8 @@ impl Intrinsic {
|
||||
nvptx::find(name)
|
||||
} else if name.starts_with("Q6_") {
|
||||
hexagon::find(name)
|
||||
} else if name.starts_with("powerpc_") {
|
||||
powerpc::find(name)
|
||||
} else {
|
||||
None
|
||||
}
|
||||
|
32
src/librustc_platform_intrinsics/powerpc.rs
Normal file
32
src/librustc_platform_intrinsics/powerpc.rs
Normal file
@ -0,0 +1,32 @@
|
||||
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// DO NOT EDIT: autogenerated by etc/platform-intrinsics/generator.py
|
||||
// ignore-tidy-linelength
|
||||
|
||||
#![allow(unused_imports)]
|
||||
|
||||
use {Intrinsic, Type};
|
||||
use IntrinsicDef::Named;
|
||||
|
||||
// The default inlining settings trigger a pathological behaviour in
|
||||
// LLVM, which causes makes compilation very slow. See #28273.
|
||||
#[inline(never)]
|
||||
pub fn find(name: &str) -> Option<Intrinsic> {
|
||||
if !name.starts_with("powerpc") { return None }
|
||||
Some(match &name["powerpc".len()..] {
|
||||
"_vec_perm" => Intrinsic {
|
||||
inputs: { static INPUTS: [&'static Type; 3] = [&::I32x4, &::I32x4, &::I8x16]; &INPUTS },
|
||||
output: &::I32x4,
|
||||
definition: Named("llvm.ppc.altivec.vperm")
|
||||
},
|
||||
_ => return None,
|
||||
})
|
||||
}
|
Loading…
Reference in New Issue
Block a user