diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-31 03:46:19 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-31 03:46:19 +0000 |
commit | 3670669ce25ef337a6e5e99b7a97b83997c06721 (patch) | |
tree | 7b15f6ba52aee927d833ac1aacde641f2631ac17 /target-arm/helpers.h | |
parent | 8f01245ee768775d5fa4f1dd0930e7062eb5dc27 (diff) |
ARM TCG conversion 6/16.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4143 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-arm/helpers.h')
-rw-r--r-- | target-arm/helpers.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-arm/helpers.h b/target-arm/helpers.h index 3b9eca07e3..9f608147a6 100644 --- a/target-arm/helpers.h +++ b/target-arm/helpers.h @@ -29,6 +29,9 @@ DEF_HELPER_1_2(sub_saturate, uint32_t, (uint32_t, uint32_t)) DEF_HELPER_1_2(add_usaturate, uint32_t, (uint32_t, uint32_t)) DEF_HELPER_1_2(sub_usaturate, uint32_t, (uint32_t, uint32_t)) DEF_HELPER_1_1(double_saturate, uint32_t, (int32_t)) +DEF_HELPER_1_2(sdiv, int32_t, (int32_t, int32_t)) +DEF_HELPER_1_2(udiv, uint32_t, (uint32_t, uint32_t)) +DEF_HELPER_1_1(rbit, uint32_t, (uint32_t)) #undef DEF_HELPER #undef DEF_HELPER_1_1 |