]> git.proxmox.com Git - qemu.git/blame - target-sh4/helper.h
SH4: convert some more arithmetics ops to TCG
[qemu.git] / target-sh4 / helper.h
CommitLineData
988d7eaa
AJ
1#ifndef DEF_HELPER
2#define DEF_HELPER(ret, name, params) ret name params;
3#endif
4
e6afc2f4
AJ
5DEF_HELPER(void, helper_ldtlb, (void))
6DEF_HELPER(void, helper_raise_illegal_instruction, (void))
7DEF_HELPER(void, helper_raise_slot_illegal_instruction, (void))
8DEF_HELPER(void, helper_debug, (void))
9DEF_HELPER(void, helper_sleep, (void))
10DEF_HELPER(void, helper_trapa, (uint32_t))
6f06939b
AJ
11
12DEF_HELPER(uint32_t, helper_addv, (uint32_t, uint32_t))
13DEF_HELPER(uint32_t, helper_addc, (uint32_t, uint32_t))
14DEF_HELPER(uint32_t, helper_subv, (uint32_t, uint32_t))
15DEF_HELPER(uint32_t, helper_subc, (uint32_t, uint32_t))
16DEF_HELPER(uint32_t, helper_negc, (uint32_t))
17DEF_HELPER(void, helper_macl, (uint32_t, uint32_t))
18DEF_HELPER(void, helper_macw, (uint32_t, uint32_t))