mirror of
https://github.com/qemu/qemu.git
synced 2024-12-02 08:13:34 +08:00
ae8ecd4231
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
12 lines
312 B
C
12 lines
312 B
C
#ifndef DEF_HELPER
|
|
#define DEF_HELPER(ret, name, params) ret name params;
|
|
#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))
|