summaryrefslogtreecommitdiff
path: root/target-ppc/op.c
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-11-30 16:24:05 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-11-30 16:24:05 +0000
commit799a8c8d0a33ee8732407530f1a06a649be3b0bc (patch)
tree08d8b264dfe3c8ed9fe35c298b8c03a1e45946ea /target-ppc/op.c
parentff4a62cd8100f373ce0195d5e888c191a1a07516 (diff)
downloadqemu-799a8c8d0a33ee8732407530f1a06a649be3b0bc.tar.gz
target-ppc: convert dcbz instruction to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5826 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op.c')
-rw-r--r--target-ppc/op.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c
index 16ab58988e..03ba0d7695 100644
--- a/target-ppc/op.c
+++ b/target-ppc/op.c
@@ -273,23 +273,6 @@ void OPPROTO op_srli_T1 (void)
#include "op_mem.h"
#endif
-/* Special op to check and maybe clear reservation */
-void OPPROTO op_check_reservation (void)
-{
- if ((uint32_t)env->reserve == (uint32_t)(T0 & ~0x00000003))
- env->reserve = (target_ulong)-1ULL;
- RETURN();
-}
-
-#if defined(TARGET_PPC64)
-void OPPROTO op_check_reservation_64 (void)
-{
- if ((uint64_t)env->reserve == (uint64_t)(T0 & ~0x00000003))
- env->reserve = (target_ulong)-1ULL;
- RETURN();
-}
-#endif
-
/* Return from interrupt */
#if !defined(CONFIG_USER_ONLY)
void OPPROTO op_rfi (void)