mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-27 21:40:49 +00:00
57951c2742
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5668 c046a42c-6fe2-441c-8c8c-71466251a162
29 lines
1.0 KiB
C
29 lines
1.0 KiB
C
#ifndef DEF_HELPER
|
|
#define DEF_HELPER(ret, name, params) ret name params;
|
|
#endif
|
|
|
|
DEF_HELPER(uint32_t, helper_fcmpo, (void))
|
|
DEF_HELPER(uint32_t, helper_fcmpu, (void))
|
|
|
|
DEF_HELPER(uint32_t, helper_load_cr, (void))
|
|
DEF_HELPER(void, helper_store_cr, (target_ulong, uint32_t))
|
|
|
|
#if defined(TARGET_PPC64)
|
|
DEF_HELPER(uint64_t, helper_mulhd, (uint64_t, uint64_t))
|
|
DEF_HELPER(uint64_t, helper_mulhdu, (uint64_t, uint64_t))
|
|
DEF_HELPER(uint64_t, helper_mulldo, (uint64_t, uint64_t))
|
|
#endif
|
|
|
|
DEF_HELPER(target_ulong, helper_cntlzw, (target_ulong t))
|
|
DEF_HELPER(target_ulong, helper_popcntb, (target_ulong val))
|
|
DEF_HELPER(target_ulong, helper_sraw, (target_ulong, target_ulong))
|
|
#if defined(TARGET_PPC64)
|
|
DEF_HELPER(target_ulong, helper_cntlzd, (target_ulong t))
|
|
DEF_HELPER(target_ulong, helper_popcntb_64, (target_ulong val))
|
|
DEF_HELPER(target_ulong, helper_srad, (target_ulong, target_ulong))
|
|
#endif
|
|
|
|
DEF_HELPER(uint32_t, helper_cntlsw32, (uint32_t))
|
|
DEF_HELPER(uint32_t, helper_cntlzw32, (uint32_t))
|
|
DEF_HELPER(uint32_t, helper_brinc, (uint32_t, uint32_t))
|