Implement all MSA Intrinsics

This commit is contained in:
Radovan Birdic
2019-04-04 08:59:43 +00:00
committed by gnzlbg
parent d65a355df5
commit d463a50b5a
3 changed files with 20990 additions and 20 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -67,7 +67,7 @@ pub fn simd_test(
"aarch64" => "is_aarch64_feature_detected", "aarch64" => "is_aarch64_feature_detected",
"powerpc" | "powerpcle" => "is_powerpc_feature_detected", "powerpc" | "powerpcle" => "is_powerpc_feature_detected",
"powerpc64" | "powerpc64le" => "is_powerpc64_feature_detected", "powerpc64" | "powerpc64le" => "is_powerpc64_feature_detected",
"mips" | "mipsel" => { "mips" | "mipsel" | "mipsisa32r6" | "mipsisa32r6el" => {
// FIXME: // FIXME:
// On MIPS CI run-time feature detection always returns false due // On MIPS CI run-time feature detection always returns false due
// to this qemu bug: https://bugs.launchpad.net/qemu/+bug/1754372 // to this qemu bug: https://bugs.launchpad.net/qemu/+bug/1754372
@@ -77,7 +77,7 @@ pub fn simd_test(
force_test = true; force_test = true;
"is_mips_feature_detected" "is_mips_feature_detected"
} }
"mips64" | "mips64el" => { "mips64" | "mips64el" | "mipsisa64r6" | "mipsisa64r6el" => {
// FIXME: see above // FIXME: see above
force_test = true; force_test = true;
"is_mips64_feature_detected" "is_mips64_feature_detected"