]> Git Repo - qemu.git/blame - target-alpha/helper.h
Fix neon encoding comment.
[qemu.git] / target-alpha / helper.h
CommitLineData
59df7f62
AJ
1#ifndef DEF_HELPER
2#define DEF_HELPER(ret, name, params) ret name params;
3#endif
4
5DEF_HELPER(void, helper_tb_flush, (void))
ae8ecd42 6
6ad02592 7DEF_HELPER(void, helper_excp, (int, int))
ae8ecd42 8DEF_HELPER(uint64_t, helper_amask, (uint64_t))
6ad02592
AJ
9DEF_HELPER(uint64_t, helper_load_pcc, (void))
10DEF_HELPER(uint64_t, helper_load_implver, (void))
11DEF_HELPER(uint64_t, helper_rc, (void))
12DEF_HELPER(uint64_t, helper_rs, (void))
ae8ecd42 13
04acd307
AJ
14DEF_HELPER(uint64_t, helper_addqv, (uint64_t, uint64_t))
15DEF_HELPER(uint64_t, helper_addlv, (uint64_t, uint64_t))
16DEF_HELPER(uint64_t, helper_subqv, (uint64_t, uint64_t))
17DEF_HELPER(uint64_t, helper_sublv, (uint64_t, uint64_t))
18DEF_HELPER(uint64_t, helper_mullv, (uint64_t, uint64_t))
19DEF_HELPER(uint64_t, helper_mulqv, (uint64_t, uint64_t))
20DEF_HELPER(uint64_t, helper_umulh, (uint64_t, uint64_t))
21
ae8ecd42
AJ
22DEF_HELPER(uint64_t, helper_ctpop, (uint64_t))
23DEF_HELPER(uint64_t, helper_ctlz, (uint64_t))
24DEF_HELPER(uint64_t, helper_cttz, (uint64_t))
b3249f63
AJ
25
26DEF_HELPER(uint64_t, helper_mskbl, (int64_t, uint64_t))
27DEF_HELPER(uint64_t, helper_insbl, (int64_t, uint64_t))
28DEF_HELPER(uint64_t, helper_mskwl, (int64_t, uint64_t))
29DEF_HELPER(uint64_t, helper_inswl, (int64_t, uint64_t))
30DEF_HELPER(uint64_t, helper_mskll, (int64_t, uint64_t))
31DEF_HELPER(uint64_t, helper_insll, (int64_t, uint64_t))
32DEF_HELPER(uint64_t, helper_zap, (int64_t, uint64_t))
33DEF_HELPER(uint64_t, helper_zapnot, (int64_t, uint64_t))
34DEF_HELPER(uint64_t, helper_mskql, (int64_t, uint64_t))
35DEF_HELPER(uint64_t, helper_insql, (int64_t, uint64_t))
36DEF_HELPER(uint64_t, helper_mskwh, (int64_t, uint64_t))
37DEF_HELPER(uint64_t, helper_inswh, (int64_t, uint64_t))
38DEF_HELPER(uint64_t, helper_msklh, (int64_t, uint64_t))
39DEF_HELPER(uint64_t, helper_inslh, (int64_t, uint64_t))
40DEF_HELPER(uint64_t, helper_mskqh, (int64_t, uint64_t))
41DEF_HELPER(uint64_t, helper_insqh, (int64_t, uint64_t))
42
04acd307 43DEF_HELPER(uint64_t, helper_cmpbge, (uint64_t, uint64_t))
This page took 0.030546 seconds and 4 git commands to generate.