target-alpha: convert some arith3 instructions to TCG
[qemu] / target-alpha / helper.h
1 #ifndef DEF_HELPER
2 #define DEF_HELPER(ret, name, params) ret name params;
3 #endif
4
5 DEF_HELPER(void, helper_tb_flush, (void))
6
7 DEF_HELPER(uint64_t, helper_amask, (uint64_t))
8
9 DEF_HELPER(uint64_t, helper_ctpop, (uint64_t))
10 DEF_HELPER(uint64_t, helper_ctlz, (uint64_t))
11 DEF_HELPER(uint64_t, helper_cttz, (uint64_t))