diff options
author | edgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-07 15:24:53 +0000 |
---|---|---|
committer | edgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-07 15:24:53 +0000 |
commit | dceaf394585191ced65ce6a478580ac1655510d7 (patch) | |
tree | e355c9a1cd5b6d328d1ed737f6db312112ffb4e6 /target-cris/helper.h | |
parent | Add a file missing from the previous commit. (diff) | |
download | qemu-kvm-dceaf394585191ced65ce6a478580ac1655510d7.tar.gz qemu-kvm-dceaf394585191ced65ce6a478580ac1655510d7.tar.bz2 qemu-kvm-dceaf394585191ced65ce6a478580ac1655510d7.zip |
CRIS: More TCG conversion.
* Convert moves to/from support function regs (including TLB updates) to TCG.
* SCC no longer requires T0 to strictly be 0 or 1, relaxed to 0 or non-zero.
* Convert the the condition code evaluation to TCG.
* Convert rfe into a helper and TCG.
* Convert evaluate_bcc and setf to TCG.
* Convert clrf to TCG.
* Convert CRIS exception raising to TCG.
* Convert btst to TCG.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4376 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-cris/helper.h')
-rw-r--r-- | target-cris/helper.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target-cris/helper.h b/target-cris/helper.h index d20b9f78d..7aa126df5 100644 --- a/target-cris/helper.h +++ b/target-cris/helper.h @@ -1,11 +1,15 @@ #define TCG_HELPER_PROTO -void TCG_HELPER_PROTO helper_tlb_update(uint32_t T0); + +void TCG_HELPER_PROTO helper_raise_exception(uint32_t index); void TCG_HELPER_PROTO helper_tlb_flush(void); void TCG_HELPER_PROTO helper_dump(uint32_t a0, uint32_t a1, uint32_t a2); void TCG_HELPER_PROTO helper_dummy(void); void TCG_HELPER_PROTO helper_rfe(void); void TCG_HELPER_PROTO helper_store(uint32_t a0); +void TCG_HELPER_PROTO helper_movl_sreg_reg (uint32_t sreg, uint32_t reg); +void TCG_HELPER_PROTO helper_movl_reg_sreg (uint32_t reg, uint32_t sreg); + void TCG_HELPER_PROTO helper_evaluate_flags_muls(void); void TCG_HELPER_PROTO helper_evaluate_flags_mulu(void); void TCG_HELPER_PROTO helper_evaluate_flags_mcp(void); |