Statistics
| Branch: | Revision:

root / target-sh4 / helper.h @ a88790a1

History | View | Annotate | Download (1.6 kB)

1 a7812ae4 pbrook
#include "def-helper.h"
2 988d7eaa aurel32
3 a7812ae4 pbrook
DEF_HELPER_0(ldtlb, void)
4 a7812ae4 pbrook
DEF_HELPER_0(raise_illegal_instruction, void)
5 a7812ae4 pbrook
DEF_HELPER_0(raise_slot_illegal_instruction, void)
6 d8299bcc aurel32
DEF_HELPER_0(raise_fpu_disable, void)
7 d8299bcc aurel32
DEF_HELPER_0(raise_slot_fpu_disable, void)
8 a7812ae4 pbrook
DEF_HELPER_0(debug, void)
9 a7812ae4 pbrook
DEF_HELPER_1(sleep, void, i32)
10 a7812ae4 pbrook
DEF_HELPER_1(trapa, void, i32)
11 6f06939b aurel32
12 852d481f edgar_igl
DEF_HELPER_2(movcal, void, i32, i32)
13 852d481f edgar_igl
DEF_HELPER_0(discard_movcal_backup, void)
14 852d481f edgar_igl
DEF_HELPER_1(ocbi, void, i32)
15 852d481f edgar_igl
16 a7812ae4 pbrook
DEF_HELPER_2(addv, i32, i32, i32)
17 a7812ae4 pbrook
DEF_HELPER_2(addc, i32, i32, i32)
18 a7812ae4 pbrook
DEF_HELPER_2(subv, i32, i32, i32)
19 a7812ae4 pbrook
DEF_HELPER_2(subc, i32, i32, i32)
20 a7812ae4 pbrook
DEF_HELPER_1(negc, i32, i32)
21 a7812ae4 pbrook
DEF_HELPER_2(div1, i32, i32, i32)
22 a7812ae4 pbrook
DEF_HELPER_2(macl, void, i32, i32)
23 a7812ae4 pbrook
DEF_HELPER_2(macw, void, i32, i32)
24 390af821 aurel32
25 a7812ae4 pbrook
DEF_HELPER_1(ld_fpscr, void, i32)
26 cc4ba6a9 aurel32
27 a7812ae4 pbrook
DEF_HELPER_1(fabs_FT, i32, i32)
28 a7812ae4 pbrook
DEF_HELPER_1(fabs_DT, i64, i64)
29 a7812ae4 pbrook
DEF_HELPER_2(fadd_FT, i32, i32, i32)
30 a7812ae4 pbrook
DEF_HELPER_2(fadd_DT, i64, i64, i64)
31 a7812ae4 pbrook
DEF_HELPER_1(fcnvsd_FT_DT, i64, i32)
32 a7812ae4 pbrook
DEF_HELPER_1(fcnvds_DT_FT, i32, i64)
33 cc4ba6a9 aurel32
34 a7812ae4 pbrook
DEF_HELPER_2(fcmp_eq_FT, void, i32, i32)
35 a7812ae4 pbrook
DEF_HELPER_2(fcmp_eq_DT, void, i64, i64)
36 a7812ae4 pbrook
DEF_HELPER_2(fcmp_gt_FT, void, i32, i32)
37 a7812ae4 pbrook
DEF_HELPER_2(fcmp_gt_DT, void, i64, i64)
38 a7812ae4 pbrook
DEF_HELPER_2(fdiv_FT, i32, i32, i32)
39 a7812ae4 pbrook
DEF_HELPER_2(fdiv_DT, i64, i64, i64)
40 a7812ae4 pbrook
DEF_HELPER_1(float_FT, i32, i32)
41 a7812ae4 pbrook
DEF_HELPER_1(float_DT, i64, i32)
42 5b7141a1 aurel32
DEF_HELPER_3(fmac_FT, i32, i32, i32, i32)
43 a7812ae4 pbrook
DEF_HELPER_2(fmul_FT, i32, i32, i32)
44 a7812ae4 pbrook
DEF_HELPER_2(fmul_DT, i64, i64, i64)
45 a7812ae4 pbrook
DEF_HELPER_1(fneg_T, i32, i32)
46 a7812ae4 pbrook
DEF_HELPER_2(fsub_FT, i32, i32, i32)
47 a7812ae4 pbrook
DEF_HELPER_2(fsub_DT, i64, i64, i64)
48 a7812ae4 pbrook
DEF_HELPER_1(fsqrt_FT, i32, i32)
49 a7812ae4 pbrook
DEF_HELPER_1(fsqrt_DT, i64, i64)
50 a7812ae4 pbrook
DEF_HELPER_1(ftrc_FT, i32, i32)
51 a7812ae4 pbrook
DEF_HELPER_1(ftrc_DT, i32, i64)
52 a7812ae4 pbrook
53 a7812ae4 pbrook
#include "def-helper.h"