diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-16 22:44:02 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-16 22:44:02 +0000 |
commit | ce5ea051df859e0e580ba8afb37d97afc06cf836 (patch) | |
tree | 2dd1683e07b83d47ed4f2f58e5887f012eb9238f /target-alpha/helper.h | |
parent | f4802a77034c7f41f2af3b33c6b9341668ca6c53 (diff) | |
download | qemu-ce5ea051df859e0e580ba8afb37d97afc06cf836.tar.gz qemu-ce5ea051df859e0e580ba8afb37d97afc06cf836.tar.bz2 qemu-ce5ea051df859e0e580ba8afb37d97afc06cf836.zip |
target-alpha: convert arith2 instructions to TCG
Replace gen_arith2 generic macro and dyngon ops by instruction specific
optimized TCG code.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5235 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha/helper.h')
-rw-r--r-- | target-alpha/helper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target-alpha/helper.h b/target-alpha/helper.h index 91c1b0efca..88b19298e1 100644 --- a/target-alpha/helper.h +++ b/target-alpha/helper.h @@ -3,3 +3,9 @@ #endif DEF_HELPER(void, helper_tb_flush, (void)) + +DEF_HELPER(uint64_t, helper_amask, (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)) |