Statistics
| Branch: | Revision:

root / target-alpha / helper.h @ b3249f63

History | View | Annotate | Download (1.2 kB)

1 59df7f62 aurel32
#ifndef DEF_HELPER
2 59df7f62 aurel32
#define DEF_HELPER(ret, name, params) ret name params;
3 59df7f62 aurel32
#endif
4 59df7f62 aurel32
5 59df7f62 aurel32
DEF_HELPER(void, helper_tb_flush, (void))
6 ae8ecd42 aurel32
7 ae8ecd42 aurel32
DEF_HELPER(uint64_t, helper_amask, (uint64_t))
8 ae8ecd42 aurel32
9 ae8ecd42 aurel32
DEF_HELPER(uint64_t, helper_ctpop, (uint64_t))
10 ae8ecd42 aurel32
DEF_HELPER(uint64_t, helper_ctlz, (uint64_t))
11 ae8ecd42 aurel32
DEF_HELPER(uint64_t, helper_cttz, (uint64_t))
12 b3249f63 aurel32
13 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_mskbl, (int64_t, uint64_t))
14 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_insbl, (int64_t, uint64_t))
15 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_mskwl, (int64_t, uint64_t))
16 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_inswl, (int64_t, uint64_t))
17 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_mskll, (int64_t, uint64_t))
18 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_insll, (int64_t, uint64_t))
19 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_zap, (int64_t, uint64_t))
20 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_zapnot, (int64_t, uint64_t))
21 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_mskql, (int64_t, uint64_t))
22 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_insql, (int64_t, uint64_t))
23 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_mskwh, (int64_t, uint64_t))
24 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_inswh, (int64_t, uint64_t))
25 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_msklh, (int64_t, uint64_t))
26 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_inslh, (int64_t, uint64_t))
27 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_mskqh, (int64_t, uint64_t))
28 b3249f63 aurel32
DEF_HELPER(uint64_t, helper_insqh, (int64_t, uint64_t))