mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
target-alpha: convert remaining arith3 functions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5254 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
4b2eb8d275
commit
04acd30726
7 changed files with 87 additions and 146 deletions
|
@ -11,6 +11,14 @@ 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_addqv, (uint64_t, uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_addlv, (uint64_t, uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_subqv, (uint64_t, uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_sublv, (uint64_t, uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_mullv, (uint64_t, uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_mulqv, (uint64_t, uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_umulh, (uint64_t, uint64_t))
|
||||
|
||||
DEF_HELPER(uint64_t, helper_ctpop, (uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_ctlz, (uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_cttz, (uint64_t))
|
||||
|
@ -32,3 +40,4 @@ DEF_HELPER(uint64_t, helper_inslh, (int64_t, uint64_t))
|
|||
DEF_HELPER(uint64_t, helper_mskqh, (int64_t, uint64_t))
|
||||
DEF_HELPER(uint64_t, helper_insqh, (int64_t, uint64_t))
|
||||
|
||||
DEF_HELPER(uint64_t, helper_cmpbge, (uint64_t, uint64_t))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue