summaryrefslogtreecommitdiffstats
path: root/target-mips/op_template.c
diff options
context:
space:
mode:
authorths2008-05-06 23:40:48 +0200
committerths2008-05-06 23:40:48 +0200
commitaaa9128a024df25dcd80c62b01fa72a4c0988b07 (patch)
tree7bc38f09782ece4e346420f9afa63100bc1d0de9 /target-mips/op_template.c
parentEnable 64-bit FPU only for NewABI. Spotted by Vince Weaver. (diff)
downloadqemu-aaa9128a024df25dcd80c62b01fa72a4c0988b07.tar.gz
qemu-aaa9128a024df25dcd80c62b01fa72a4c0988b07.tar.xz
qemu-aaa9128a024df25dcd80c62b01fa72a4c0988b07.zip
Convert some MIPS load/store instructions to TCG.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4369 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op_template.c')
-rw-r--r--target-mips/op_template.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/target-mips/op_template.c b/target-mips/op_template.c
index e2802a3cc5..dd4cef0068 100644
--- a/target-mips/op_template.c
+++ b/target-mips/op_template.c
@@ -56,37 +56,3 @@ void glue(op_store_T0_srsgpr_gpr, REG) (void)
FORCE_RET();
}
#endif
-
-#if defined (TN)
-#define SET_RESET(treg, tregname) \
- void glue(op_set, tregname)(void) \
- { \
- treg = (int32_t)PARAM1; \
- FORCE_RET(); \
- } \
- void glue(op_reset, tregname)(void) \
- { \
- treg = 0; \
- FORCE_RET(); \
- } \
-
-SET_RESET(T0, _T0)
-SET_RESET(T1, _T1)
-
-#undef SET_RESET
-
-#if defined(TARGET_MIPS64)
-#define SET64(treg, tregname) \
- void glue(op_set64, tregname)(void) \
- { \
- treg = ((uint64_t)PARAM1 << 32) | (uint32_t)PARAM2; \
- FORCE_RET(); \
- }
-
-SET64(T0, _T0)
-SET64(T1, _T1)
-
-#undef SET64
-
-#endif
-#endif