diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-18 00:02:17 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-18 00:02:17 +0000 |
commit | 3260fae5d6d6525ca50276ac604d60b35b73d8b9 (patch) | |
tree | 07653d52b627662aac5f68a045b4d9004cef8871 /target-alpha/helper.h | |
parent | c19e4a99159e0b264746dd5cecc7d5124e9ddd2a (diff) | |
download | qemu-3260fae5d6d6525ca50276ac604d60b35b73d8b9.tar.gz qemu-3260fae5d6d6525ca50276ac604d60b35b73d8b9.tar.bz2 qemu-3260fae5d6d6525ca50276ac604d60b35b73d8b9.zip |
target-alpha: switch a few helpers to TCG
Switch a few helpers to TCG and implement RC and RS instructions
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5247 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha/helper.h')
-rw-r--r-- | target-alpha/helper.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-alpha/helper.h b/target-alpha/helper.h index d82bf4344d..c3979994b9 100644 --- a/target-alpha/helper.h +++ b/target-alpha/helper.h @@ -4,7 +4,12 @@ DEF_HELPER(void, helper_tb_flush, (void)) +DEF_HELPER(void, helper_excp, (int, int)) DEF_HELPER(uint64_t, helper_amask, (uint64_t)) +DEF_HELPER(uint64_t, helper_load_pcc, (void)) +DEF_HELPER(uint64_t, helper_load_implver, (void)) +DEF_HELPER(uint64_t, helper_rc, (void)) +DEF_HELPER(uint64_t, helper_rs, (void)) DEF_HELPER(uint64_t, helper_ctpop, (uint64_t)) DEF_HELPER(uint64_t, helper_ctlz, (uint64_t)) |