diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-02 15:39:04 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-02 15:39:04 +0000 |
commit | 1b351e52918c8eceb2b3dc7a9c5e0b7b342ccd18 (patch) | |
tree | 25c81289768a3f7d20f586f1718b0862c36f9082 /target-mips | |
parent | d325856010ca97e4962aaf3150c5ee7c0d5340bb (diff) | |
download | qemu-1b351e52918c8eceb2b3dc7a9c5e0b7b342ccd18.zip |
moved CALL_FROM_TBx definitions
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1483 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/op.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index df76e8e71e..32f7e4fc9b 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -21,6 +21,30 @@ #include "config.h" #include "exec.h" +#ifndef CALL_FROM_TB0 +#define CALL_FROM_TB0(func) func(); +#endif +#ifndef CALL_FROM_TB1 +#define CALL_FROM_TB1(func, arg0) func(arg0); +#endif +#ifndef CALL_FROM_TB1_CONST16 +#define CALL_FROM_TB1_CONST16(func, arg0) CALL_FROM_TB1(func, arg0); +#endif +#ifndef CALL_FROM_TB2 +#define CALL_FROM_TB2(func, arg0, arg1) func(arg0, arg1); +#endif +#ifndef CALL_FROM_TB2_CONST16 +#define CALL_FROM_TB2_CONST16(func, arg0, arg1) \ +CALL_FROM_TB2(func, arg0, arg1); +#endif +#ifndef CALL_FROM_TB3 +#define CALL_FROM_TB3(func, arg0, arg1, arg2) func(arg0, arg1, arg2); +#endif +#ifndef CALL_FROM_TB4 +#define CALL_FROM_TB4(func, arg0, arg1, arg2, arg3) \ + func(arg0, arg1, arg2, arg3); +#endif + #define REG 1 #include "op_template.c" #undef REG |