Add Vector Compare Bounds Floating-Point

This commit is contained in:
Luca Barbato 2017-07-26 09:58:17 +00:00
parent ccdfd7f7e6
commit 4f6c03e243
2 changed files with 14 additions and 1 deletions

View File

@ -4,7 +4,8 @@
"llvm_prefix": "llvm.ppc.altivec.",
"number_info": {
"unsigned": {},
"signed": {}
"signed": {},
"float": {}
},
"width_info": {
"128": { "width": "" }
@ -23,6 +24,13 @@
"llvm": "vmhraddshs",
"ret": "s16",
"args": ["0", "0", "0"]
},
{
"intrinsic": "cmpb",
"width": [128],
"llvm": "vcmpbfp",
"ret": "s32",
"args": ["f32", "f32"]
}
]
}

View File

@ -32,6 +32,11 @@ pub fn find(name: &str) -> Option<Intrinsic> {
output: &::I16x8,
definition: Named("llvm.ppc.altivec.vmhraddshs")
},
"_vec_cmpb" => Intrinsic {
inputs: { static INPUTS: [&'static Type; 2] = [&::F32x4, &::F32x4]; &INPUTS },
output: &::I32x4,
definition: Named("llvm.ppc.altivec.vcmpbfp")
},
_ => return None,
})
}