diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-17 14:43:54 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-17 14:43:54 +0000 |
commit | a7812ae412311d7d47f8aa85656faadac9d64b56 (patch) | |
tree | bae5e0d6fe19739e5e6d1cdc75d84312bf175257 /target-mips/op_helper.c | |
parent | 30913bae9a2cf92b5a87363ec1c7d0ad1f82cdcc (diff) |
TCG variable type checking.
Signed-off-by: Paul Brook <paul@codesourcery.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5729 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 3fe62fb25f..390de7bbc1 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -22,6 +22,7 @@ #include "host-utils.h" +#include "helper.h" /*****************************************************************************/ /* Exceptions processing helpers */ @@ -1659,6 +1660,26 @@ void r4k_do_tlbr (void) (tlb->C1 << 3) | (tlb->PFN[1] >> 6); } +void do_tlbwi(void) +{ + env->tlb->do_tlbwi(); +} + +void do_tlbwr(void) +{ + env->tlb->do_tlbwr(); +} + +void do_tlbp(void) +{ + env->tlb->do_tlbp(); +} + +void do_tlbr(void) +{ + env->tlb->do_tlbr(); +} + /* Specials */ target_ulong do_di (void) { |