diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-17 22:04:52 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-17 22:04:52 +0000 |
commit | b3249f630e95f3235da438ee1a6cd1b867084e9c (patch) | |
tree | 73e6a9cdd97062c471dd4aaa596abd34316c5b6d /target-alpha/helper.h | |
parent | 9c29504eb71238241f29667bd96fb83c97668e1a (diff) |
target-alpha: convert byte manipulation instructions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5246 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha/helper.h')
-rw-r--r-- | target-alpha/helper.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target-alpha/helper.h b/target-alpha/helper.h index 88b19298e1..d82bf4344d 100644 --- a/target-alpha/helper.h +++ b/target-alpha/helper.h @@ -9,3 +9,21 @@ 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)) + +DEF_HELPER(uint64_t, helper_mskbl, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_insbl, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_mskwl, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_inswl, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_mskll, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_insll, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_zap, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_zapnot, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_mskql, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_insql, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_mskwh, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_inswh, (int64_t, uint64_t)) +DEF_HELPER(uint64_t, helper_msklh, (int64_t, uint64_t)) +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)) + |