target-alpha: convert byte manipulation 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))
12
13 DEF_HELPER(uint64_t, helper_mskbl, (int64_t, uint64_t))
14 DEF_HELPER(uint64_t, helper_insbl, (int64_t, uint64_t))
15 DEF_HELPER(uint64_t, helper_mskwl, (int64_t, uint64_t))
16 DEF_HELPER(uint64_t, helper_inswl, (int64_t, uint64_t))
17 DEF_HELPER(uint64_t, helper_mskll, (int64_t, uint64_t))
18 DEF_HELPER(uint64_t, helper_insll, (int64_t, uint64_t))
19 DEF_HELPER(uint64_t, helper_zap, (int64_t, uint64_t))
20 DEF_HELPER(uint64_t, helper_zapnot, (int64_t, uint64_t))
21 DEF_HELPER(uint64_t, helper_mskql, (int64_t, uint64_t))
22 DEF_HELPER(uint64_t, helper_insql, (int64_t, uint64_t))
23 DEF_HELPER(uint64_t, helper_mskwh, (int64_t, uint64_t))
24 DEF_HELPER(uint64_t, helper_inswh, (int64_t, uint64_t))
25 DEF_HELPER(uint64_t, helper_msklh, (int64_t, uint64_t))
26 DEF_HELPER(uint64_t, helper_inslh, (int64_t, uint64_t))
27 DEF_HELPER(uint64_t, helper_mskqh, (int64_t, uint64_t))
28 DEF_HELPER(uint64_t, helper_insqh, (int64_t, uint64_t))
29