summaryrefslogtreecommitdiffstats
path: root/target/ppc/helper.h
diff options
context:
space:
mode:
authorMatheus Ferst2021-11-04 13:37:17 +0100
committerDavid Gibson2021-11-09 00:32:53 +0100
commit788c63998ce6e17b7d7f2e30d28ee5979a6d6cec (patch)
treea3c57410aca4ccbebeb801387c0efd0be7e738a6 /target/ppc/helper.h
parenttarget/ppc: implemented XXSPLTIDP instruction (diff)
downloadqemu-788c63998ce6e17b7d7f2e30d28ee5979a6d6cec.tar.gz
qemu-788c63998ce6e17b7d7f2e30d28ee5979a6d6cec.tar.xz
qemu-788c63998ce6e17b7d7f2e30d28ee5979a6d6cec.zip
target/ppc: Implement xxblendvb/xxblendvh/xxblendvw/xxblendvd instructions
Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Bruno Larsen (billionai) <bruno.larsen@eldorado.org.br> Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br> Message-Id: <20211104123719.323713-24-matheus.ferst@eldorado.org.br> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/helper.h')
-rw-r--r--target/ppc/helper.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/target/ppc/helper.h b/target/ppc/helper.h
index 7ff1d055c4..627811cefc 100644
--- a/target/ppc/helper.h
+++ b/target/ppc/helper.h
@@ -520,6 +520,10 @@ DEF_HELPER_4(xxpermr, void, env, vsr, vsr, vsr)
DEF_HELPER_4(xxextractuw, void, env, vsr, vsr, i32)
DEF_HELPER_4(xxinsertw, void, env, vsr, vsr, i32)
DEF_HELPER_3(xvxsigsp, void, env, vsr, vsr)
+DEF_HELPER_5(XXBLENDVB, void, vsr, vsr, vsr, vsr, i32)
+DEF_HELPER_5(XXBLENDVH, void, vsr, vsr, vsr, vsr, i32)
+DEF_HELPER_5(XXBLENDVW, void, vsr, vsr, vsr, vsr, i32)
+DEF_HELPER_5(XXBLENDVD, void, vsr, vsr, vsr, vsr, i32)
DEF_HELPER_2(efscfsi, i32, env, i32)
DEF_HELPER_2(efscfui, i32, env, i32)