]> git.proxmox.com Git - qemu.git/blob - target-alpha/helper.h
target-alpha: switch a few helpers to TCG
[qemu.git] / 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(void, helper_excp, (int, int))
8 DEF_HELPER(uint64_t, helper_amask, (uint64_t))
9 DEF_HELPER(uint64_t, helper_load_pcc, (void))
10 DEF_HELPER(uint64_t, helper_load_implver, (void))
11 DEF_HELPER(uint64_t, helper_rc, (void))
12 DEF_HELPER(uint64_t, helper_rs, (void))
13
14 DEF_HELPER(uint64_t, helper_ctpop, (uint64_t))
15 DEF_HELPER(uint64_t, helper_ctlz, (uint64_t))
16 DEF_HELPER(uint64_t, helper_cttz, (uint64_t))
17
18 DEF_HELPER(uint64_t, helper_mskbl, (int64_t, uint64_t))
19 DEF_HELPER(uint64_t, helper_insbl, (int64_t, uint64_t))
20 DEF_HELPER(uint64_t, helper_mskwl, (int64_t, uint64_t))
21 DEF_HELPER(uint64_t, helper_inswl, (int64_t, uint64_t))
22 DEF_HELPER(uint64_t, helper_mskll, (int64_t, uint64_t))
23 DEF_HELPER(uint64_t, helper_insll, (int64_t, uint64_t))
24 DEF_HELPER(uint64_t, helper_zap, (int64_t, uint64_t))
25 DEF_HELPER(uint64_t, helper_zapnot, (int64_t, uint64_t))
26 DEF_HELPER(uint64_t, helper_mskql, (int64_t, uint64_t))
27 DEF_HELPER(uint64_t, helper_insql, (int64_t, uint64_t))
28 DEF_HELPER(uint64_t, helper_mskwh, (int64_t, uint64_t))
29 DEF_HELPER(uint64_t, helper_inswh, (int64_t, uint64_t))
30 DEF_HELPER(uint64_t, helper_msklh, (int64_t, uint64_t))
31 DEF_HELPER(uint64_t, helper_inslh, (int64_t, uint64_t))
32 DEF_HELPER(uint64_t, helper_mskqh, (int64_t, uint64_t))
33 DEF_HELPER(uint64_t, helper_insqh, (int64_t, uint64_t))
34