aboutsummaryrefslogtreecommitdiff
path: root/target-ppc/op.c
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-11-27 19:30:47 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-11-27 19:30:47 +0000
commit6a6ae23f3c7c80e66e8e900ed9820c7134997a36 (patch)
tree1a7419541c2e1c9712d6d6f125867b44ac298d1e /target-ppc/op.c
parent38d14952014790c8c7f5c098f8048be594a4385d (diff)
target-ppc: convert SPE load/store to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5804 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op.c')
-rw-r--r--target-ppc/op.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c
index c7b35c756b..5d2cfa1450 100644
--- a/target-ppc/op.c
+++ b/target-ppc/op.c
@@ -914,35 +914,3 @@ void OPPROTO op_store_booke_tsr (void)
}
#endif /* !defined(CONFIG_USER_ONLY) */
-/* SPE extension */
-void OPPROTO op_splatw_T1_64 (void)
-{
- T1_64 = (T1_64 << 32) | (T1_64 & 0x00000000FFFFFFFFULL);
- RETURN();
-}
-
-void OPPROTO op_extsh_T1_64 (void)
-{
- T1_64 = (int32_t)((int16_t)T1_64);
- RETURN();
-}
-
-void OPPROTO op_sli16_T1_64 (void)
-{
- T1_64 = T1_64 << 16;
- RETURN();
-}
-
-void OPPROTO op_sli32_T1_64 (void)
-{
- T1_64 = T1_64 << 32;
- RETURN();
-}
-
-void OPPROTO op_srli32_T1_64 (void)
-{
- T1_64 = T1_64 >> 32;
- RETURN();
-}
-
-