Statistics
| Branch: | Revision:

root / target-mips / helper.h @ 283c7c63

History | View | Annotate | Download (8.1 kB)

1 a7812ae4 pbrook
#include "def-helper.h"
2 a7812ae4 pbrook
3 a7812ae4 pbrook
DEF_HELPER_2(raise_exception_err, void, i32, int)
4 a7812ae4 pbrook
DEF_HELPER_1(raise_exception, void, i32)
5 a7812ae4 pbrook
DEF_HELPER_0(interrupt_restart, void)
6 7dd9e556 ths
7 c8c2227e ths
#ifdef TARGET_MIPS64
8 a7812ae4 pbrook
DEF_HELPER_3(ldl, tl, tl, tl, int)
9 a7812ae4 pbrook
DEF_HELPER_3(ldr, tl, tl, tl, int)
10 a7812ae4 pbrook
DEF_HELPER_3(sdl, void, tl, tl, int)
11 a7812ae4 pbrook
DEF_HELPER_3(sdr, void, tl, tl, int)
12 c8c2227e ths
#endif
13 a7812ae4 pbrook
DEF_HELPER_3(lwl, tl, tl, tl, int)
14 a7812ae4 pbrook
DEF_HELPER_3(lwr, tl, tl, tl, int)
15 a7812ae4 pbrook
DEF_HELPER_3(swl, void, tl, tl, int)
16 a7812ae4 pbrook
DEF_HELPER_3(swr, void, tl, tl, int)
17 c8c2227e ths
18 e7a6965b aurel32
DEF_HELPER_FLAGS_1(clo, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl)
19 e7a6965b aurel32
DEF_HELPER_FLAGS_1(clz, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl)
20 7dd9e556 ths
#ifdef TARGET_MIPS64
21 e7a6965b aurel32
DEF_HELPER_FLAGS_1(dclo, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl)
22 e7a6965b aurel32
DEF_HELPER_FLAGS_1(dclz, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl)
23 a7812ae4 pbrook
DEF_HELPER_2(dmult, void, tl, tl)
24 a7812ae4 pbrook
DEF_HELPER_2(dmultu, void, tl, tl)
25 7dd9e556 ths
#endif
26 f1aa6320 ths
27 a7812ae4 pbrook
DEF_HELPER_2(muls, tl, tl, tl)
28 a7812ae4 pbrook
DEF_HELPER_2(mulsu, tl, tl, tl)
29 a7812ae4 pbrook
DEF_HELPER_2(macc, tl, tl, tl)
30 a7812ae4 pbrook
DEF_HELPER_2(maccu, tl, tl, tl)
31 a7812ae4 pbrook
DEF_HELPER_2(msac, tl, tl, tl)
32 a7812ae4 pbrook
DEF_HELPER_2(msacu, tl, tl, tl)
33 a7812ae4 pbrook
DEF_HELPER_2(mulhi, tl, tl, tl)
34 a7812ae4 pbrook
DEF_HELPER_2(mulhiu, tl, tl, tl)
35 a7812ae4 pbrook
DEF_HELPER_2(mulshi, tl, tl, tl)
36 a7812ae4 pbrook
DEF_HELPER_2(mulshiu, tl, tl, tl)
37 a7812ae4 pbrook
DEF_HELPER_2(macchi, tl, tl, tl)
38 a7812ae4 pbrook
DEF_HELPER_2(macchiu, tl, tl, tl)
39 a7812ae4 pbrook
DEF_HELPER_2(msachi, tl, tl, tl)
40 a7812ae4 pbrook
DEF_HELPER_2(msachiu, tl, tl, tl)
41 92af06d2 ths
42 f1aa6320 ths
#ifndef CONFIG_USER_ONLY
43 0eaef5aa ths
/* CP0 helpers */
44 a7812ae4 pbrook
DEF_HELPER_0(mfc0_mvpcontrol, tl)
45 a7812ae4 pbrook
DEF_HELPER_0(mfc0_mvpconf0, tl)
46 a7812ae4 pbrook
DEF_HELPER_0(mfc0_mvpconf1, tl)
47 a7812ae4 pbrook
DEF_HELPER_0(mfc0_random, tl)
48 a7812ae4 pbrook
DEF_HELPER_0(mfc0_tcstatus, tl)
49 a7812ae4 pbrook
DEF_HELPER_0(mftc0_tcstatus, tl)
50 a7812ae4 pbrook
DEF_HELPER_0(mfc0_tcbind, tl)
51 a7812ae4 pbrook
DEF_HELPER_0(mftc0_tcbind, tl)
52 a7812ae4 pbrook
DEF_HELPER_0(mfc0_tcrestart, tl)
53 a7812ae4 pbrook
DEF_HELPER_0(mftc0_tcrestart, tl)
54 a7812ae4 pbrook
DEF_HELPER_0(mfc0_tchalt, tl)
55 a7812ae4 pbrook
DEF_HELPER_0(mftc0_tchalt, tl)
56 a7812ae4 pbrook
DEF_HELPER_0(mfc0_tccontext, tl)
57 a7812ae4 pbrook
DEF_HELPER_0(mftc0_tccontext, tl)
58 a7812ae4 pbrook
DEF_HELPER_0(mfc0_tcschedule, tl)
59 a7812ae4 pbrook
DEF_HELPER_0(mftc0_tcschedule, tl)
60 a7812ae4 pbrook
DEF_HELPER_0(mfc0_tcschefback, tl)
61 a7812ae4 pbrook
DEF_HELPER_0(mftc0_tcschefback, tl)
62 a7812ae4 pbrook
DEF_HELPER_0(mfc0_count, tl)
63 a7812ae4 pbrook
DEF_HELPER_0(mftc0_entryhi, tl)
64 a7812ae4 pbrook
DEF_HELPER_0(mftc0_status, tl)
65 a7812ae4 pbrook
DEF_HELPER_0(mfc0_lladdr, tl)
66 a7812ae4 pbrook
DEF_HELPER_1(mfc0_watchlo, tl, i32)
67 a7812ae4 pbrook
DEF_HELPER_1(mfc0_watchhi, tl, i32)
68 a7812ae4 pbrook
DEF_HELPER_0(mfc0_debug, tl)
69 a7812ae4 pbrook
DEF_HELPER_0(mftc0_debug, tl)
70 f1aa6320 ths
#ifdef TARGET_MIPS64
71 a7812ae4 pbrook
DEF_HELPER_0(dmfc0_tcrestart, tl)
72 a7812ae4 pbrook
DEF_HELPER_0(dmfc0_tchalt, tl)
73 a7812ae4 pbrook
DEF_HELPER_0(dmfc0_tccontext, tl)
74 a7812ae4 pbrook
DEF_HELPER_0(dmfc0_tcschedule, tl)
75 a7812ae4 pbrook
DEF_HELPER_0(dmfc0_tcschefback, tl)
76 a7812ae4 pbrook
DEF_HELPER_0(dmfc0_lladdr, tl)
77 a7812ae4 pbrook
DEF_HELPER_1(dmfc0_watchlo, tl, i32)
78 f1aa6320 ths
#endif /* TARGET_MIPS64 */
79 f1aa6320 ths
80 a7812ae4 pbrook
DEF_HELPER_1(mtc0_index, void, tl)
81 a7812ae4 pbrook
DEF_HELPER_1(mtc0_mvpcontrol, void, tl)
82 a7812ae4 pbrook
DEF_HELPER_1(mtc0_vpecontrol, void, tl)
83 a7812ae4 pbrook
DEF_HELPER_1(mtc0_vpeconf0, void, tl)
84 a7812ae4 pbrook
DEF_HELPER_1(mtc0_vpeconf1, void, tl)
85 a7812ae4 pbrook
DEF_HELPER_1(mtc0_yqmask, void, tl)
86 a7812ae4 pbrook
DEF_HELPER_1(mtc0_vpeopt, void, tl)
87 a7812ae4 pbrook
DEF_HELPER_1(mtc0_entrylo0, void, tl)
88 a7812ae4 pbrook
DEF_HELPER_1(mtc0_tcstatus, void, tl)
89 a7812ae4 pbrook
DEF_HELPER_1(mttc0_tcstatus, void, tl)
90 a7812ae4 pbrook
DEF_HELPER_1(mtc0_tcbind, void, tl)
91 a7812ae4 pbrook
DEF_HELPER_1(mttc0_tcbind, void, tl)
92 a7812ae4 pbrook
DEF_HELPER_1(mtc0_tcrestart, void, tl)
93 a7812ae4 pbrook
DEF_HELPER_1(mttc0_tcrestart, void, tl)
94 a7812ae4 pbrook
DEF_HELPER_1(mtc0_tchalt, void, tl)
95 a7812ae4 pbrook
DEF_HELPER_1(mttc0_tchalt, void, tl)
96 a7812ae4 pbrook
DEF_HELPER_1(mtc0_tccontext, void, tl)
97 a7812ae4 pbrook
DEF_HELPER_1(mttc0_tccontext, void, tl)
98 a7812ae4 pbrook
DEF_HELPER_1(mtc0_tcschedule, void, tl)
99 a7812ae4 pbrook
DEF_HELPER_1(mttc0_tcschedule, void, tl)
100 a7812ae4 pbrook
DEF_HELPER_1(mtc0_tcschefback, void, tl)
101 a7812ae4 pbrook
DEF_HELPER_1(mttc0_tcschefback, void, tl)
102 a7812ae4 pbrook
DEF_HELPER_1(mtc0_entrylo1, void, tl)
103 a7812ae4 pbrook
DEF_HELPER_1(mtc0_context, void, tl)
104 a7812ae4 pbrook
DEF_HELPER_1(mtc0_pagemask, void, tl)
105 a7812ae4 pbrook
DEF_HELPER_1(mtc0_pagegrain, void, tl)
106 a7812ae4 pbrook
DEF_HELPER_1(mtc0_wired, void, tl)
107 a7812ae4 pbrook
DEF_HELPER_1(mtc0_srsconf0, void, tl)
108 a7812ae4 pbrook
DEF_HELPER_1(mtc0_srsconf1, void, tl)
109 a7812ae4 pbrook
DEF_HELPER_1(mtc0_srsconf2, void, tl)
110 a7812ae4 pbrook
DEF_HELPER_1(mtc0_srsconf3, void, tl)
111 a7812ae4 pbrook
DEF_HELPER_1(mtc0_srsconf4, void, tl)
112 a7812ae4 pbrook
DEF_HELPER_1(mtc0_hwrena, void, tl)
113 a7812ae4 pbrook
DEF_HELPER_1(mtc0_count, void, tl)
114 a7812ae4 pbrook
DEF_HELPER_1(mtc0_entryhi, void, tl)
115 a7812ae4 pbrook
DEF_HELPER_1(mttc0_entryhi, void, tl)
116 a7812ae4 pbrook
DEF_HELPER_1(mtc0_compare, void, tl)
117 a7812ae4 pbrook
DEF_HELPER_1(mtc0_status, void, tl)
118 a7812ae4 pbrook
DEF_HELPER_1(mttc0_status, void, tl)
119 a7812ae4 pbrook
DEF_HELPER_1(mtc0_intctl, void, tl)
120 a7812ae4 pbrook
DEF_HELPER_1(mtc0_srsctl, void, tl)
121 a7812ae4 pbrook
DEF_HELPER_1(mtc0_cause, void, tl)
122 a7812ae4 pbrook
DEF_HELPER_1(mtc0_ebase, void, tl)
123 a7812ae4 pbrook
DEF_HELPER_1(mtc0_config0, void, tl)
124 a7812ae4 pbrook
DEF_HELPER_1(mtc0_config2, void, tl)
125 a7812ae4 pbrook
DEF_HELPER_2(mtc0_watchlo, void, tl, i32)
126 a7812ae4 pbrook
DEF_HELPER_2(mtc0_watchhi, void, tl, i32)
127 a7812ae4 pbrook
DEF_HELPER_1(mtc0_xcontext, void, tl)
128 a7812ae4 pbrook
DEF_HELPER_1(mtc0_framemask, void, tl)
129 a7812ae4 pbrook
DEF_HELPER_1(mtc0_debug, void, tl)
130 a7812ae4 pbrook
DEF_HELPER_1(mttc0_debug, void, tl)
131 a7812ae4 pbrook
DEF_HELPER_1(mtc0_performance0, void, tl)
132 a7812ae4 pbrook
DEF_HELPER_1(mtc0_taglo, void, tl)
133 a7812ae4 pbrook
DEF_HELPER_1(mtc0_datalo, void, tl)
134 a7812ae4 pbrook
DEF_HELPER_1(mtc0_taghi, void, tl)
135 a7812ae4 pbrook
DEF_HELPER_1(mtc0_datahi, void, tl)
136 f1aa6320 ths
137 f1aa6320 ths
/* MIPS MT functions */
138 a7812ae4 pbrook
DEF_HELPER_1(mftgpr, tl, i32);
139 a7812ae4 pbrook
DEF_HELPER_1(mftlo, tl, i32)
140 a7812ae4 pbrook
DEF_HELPER_1(mfthi, tl, i32)
141 a7812ae4 pbrook
DEF_HELPER_1(mftacx, tl, i32)
142 a7812ae4 pbrook
DEF_HELPER_0(mftdsp, tl)
143 a7812ae4 pbrook
DEF_HELPER_2(mttgpr, void, tl, i32)
144 a7812ae4 pbrook
DEF_HELPER_2(mttlo, void, tl, i32)
145 a7812ae4 pbrook
DEF_HELPER_2(mtthi, void, tl, i32)
146 a7812ae4 pbrook
DEF_HELPER_2(mttacx, void, tl, i32)
147 a7812ae4 pbrook
DEF_HELPER_1(mttdsp, void, tl)
148 a7812ae4 pbrook
DEF_HELPER_1(dmt, tl, tl)
149 a7812ae4 pbrook
DEF_HELPER_1(emt, tl, tl)
150 a7812ae4 pbrook
DEF_HELPER_1(dvpe, tl, tl)
151 a7812ae4 pbrook
DEF_HELPER_1(evpe, tl, tl)
152 0eaef5aa ths
#endif /* !CONFIG_USER_ONLY */
153 a7812ae4 pbrook
DEF_HELPER_2(fork, void, tl, tl)
154 a7812ae4 pbrook
DEF_HELPER_1(yield, tl, tl)
155 f1aa6320 ths
156 f1aa6320 ths
/* CP1 functions */
157 a7812ae4 pbrook
DEF_HELPER_1(cfc1, tl, i32)
158 a7812ae4 pbrook
DEF_HELPER_2(ctc1, void, tl, i32)
159 5d0fc900 ths
160 a7812ae4 pbrook
DEF_HELPER_1(float_cvtd_s, i64, i32)
161 a7812ae4 pbrook
DEF_HELPER_1(float_cvtd_w, i64, i32)
162 a7812ae4 pbrook
DEF_HELPER_1(float_cvtd_l, i64, i64)
163 a7812ae4 pbrook
DEF_HELPER_1(float_cvtl_d, i64, i64)
164 a7812ae4 pbrook
DEF_HELPER_1(float_cvtl_s, i64, i32)
165 a7812ae4 pbrook
DEF_HELPER_1(float_cvtps_pw, i64, i64)
166 a7812ae4 pbrook
DEF_HELPER_1(float_cvtpw_ps, i64, i64)
167 a7812ae4 pbrook
DEF_HELPER_1(float_cvts_d, i32, i64)
168 a7812ae4 pbrook
DEF_HELPER_1(float_cvts_w, i32, i32)
169 a7812ae4 pbrook
DEF_HELPER_1(float_cvts_l, i32, i64)
170 a7812ae4 pbrook
DEF_HELPER_1(float_cvts_pl, i32, i32)
171 a7812ae4 pbrook
DEF_HELPER_1(float_cvts_pu, i32, i32)
172 a7812ae4 pbrook
DEF_HELPER_1(float_cvtw_s, i32, i32)
173 a7812ae4 pbrook
DEF_HELPER_1(float_cvtw_d, i32, i64)
174 b6d96bed ths
175 a7812ae4 pbrook
DEF_HELPER_2(float_addr_ps, i64, i64, i64)
176 a7812ae4 pbrook
DEF_HELPER_2(float_mulr_ps, i64, i64, i64)
177 b6d96bed ths
178 a7812ae4 pbrook
#define FOP_PROTO(op)                       \
179 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## l_s, i64, i32) \
180 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## l_d, i64, i64) \
181 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## w_s, i32, i32) \
182 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## w_d, i32, i64)
183 b6d96bed ths
FOP_PROTO(round)
184 b6d96bed ths
FOP_PROTO(trunc)
185 b6d96bed ths
FOP_PROTO(ceil)
186 b6d96bed ths
FOP_PROTO(floor)
187 b6d96bed ths
#undef FOP_PROTO
188 b6d96bed ths
189 a7812ae4 pbrook
#define FOP_PROTO(op)                       \
190 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## _s, i32, i32)  \
191 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## _d, i64, i64)
192 a16336e4 ths
FOP_PROTO(sqrt)
193 5d0fc900 ths
FOP_PROTO(rsqrt)
194 5d0fc900 ths
FOP_PROTO(recip)
195 5d0fc900 ths
#undef FOP_PROTO
196 5d0fc900 ths
197 a7812ae4 pbrook
#define FOP_PROTO(op)                       \
198 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## _s, i32, i32)  \
199 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## _d, i64, i64)  \
200 a7812ae4 pbrook
DEF_HELPER_1(float_ ## op ## _ps, i64, i64)
201 b6d96bed ths
FOP_PROTO(abs)
202 b6d96bed ths
FOP_PROTO(chs)
203 b6d96bed ths
FOP_PROTO(recip1)
204 b6d96bed ths
FOP_PROTO(rsqrt1)
205 b6d96bed ths
#undef FOP_PROTO
206 b6d96bed ths
207 a7812ae4 pbrook
#define FOP_PROTO(op)                             \
208 a7812ae4 pbrook
DEF_HELPER_2(float_ ## op ## _s, i32, i32, i32)   \
209 a7812ae4 pbrook
DEF_HELPER_2(float_ ## op ## _d, i64, i64, i64)   \
210 a7812ae4 pbrook
DEF_HELPER_2(float_ ## op ## _ps, i64, i64, i64)
211 5d0fc900 ths
FOP_PROTO(add)
212 5d0fc900 ths
FOP_PROTO(sub)
213 5d0fc900 ths
FOP_PROTO(mul)
214 5d0fc900 ths
FOP_PROTO(div)
215 b6d96bed ths
FOP_PROTO(recip2)
216 b6d96bed ths
FOP_PROTO(rsqrt2)
217 b6d96bed ths
#undef FOP_PROTO
218 b6d96bed ths
219 a7812ae4 pbrook
#define FOP_PROTO(op)                                 \
220 a7812ae4 pbrook
DEF_HELPER_3(float_ ## op ## _s, i32, i32, i32, i32)  \
221 a7812ae4 pbrook
DEF_HELPER_3(float_ ## op ## _d, i64, i64, i64, i64)  \
222 a7812ae4 pbrook
DEF_HELPER_3(float_ ## op ## _ps, i64, i64, i64, i64)
223 a16336e4 ths
FOP_PROTO(muladd)
224 a16336e4 ths
FOP_PROTO(mulsub)
225 a16336e4 ths
FOP_PROTO(nmuladd)
226 a16336e4 ths
FOP_PROTO(nmulsub)
227 5d0fc900 ths
#undef FOP_PROTO
228 5d0fc900 ths
229 a7812ae4 pbrook
#define FOP_PROTO(op)                               \
230 a7812ae4 pbrook
DEF_HELPER_3(cmp_d_ ## op, void, i64, i64, int)     \
231 a7812ae4 pbrook
DEF_HELPER_3(cmpabs_d_ ## op, void, i64, i64, int)  \
232 a7812ae4 pbrook
DEF_HELPER_3(cmp_s_ ## op, void, i32, i32, int)     \
233 a7812ae4 pbrook
DEF_HELPER_3(cmpabs_s_ ## op, void, i32, i32, int)  \
234 a7812ae4 pbrook
DEF_HELPER_3(cmp_ps_ ## op, void, i64, i64, int)    \
235 a7812ae4 pbrook
DEF_HELPER_3(cmpabs_ps_ ## op, void, i64, i64, int)
236 5d0fc900 ths
FOP_PROTO(f)
237 5d0fc900 ths
FOP_PROTO(un)
238 5d0fc900 ths
FOP_PROTO(eq)
239 5d0fc900 ths
FOP_PROTO(ueq)
240 5d0fc900 ths
FOP_PROTO(olt)
241 5d0fc900 ths
FOP_PROTO(ult)
242 5d0fc900 ths
FOP_PROTO(ole)
243 5d0fc900 ths
FOP_PROTO(ule)
244 5d0fc900 ths
FOP_PROTO(sf)
245 5d0fc900 ths
FOP_PROTO(ngle)
246 5d0fc900 ths
FOP_PROTO(seq)
247 5d0fc900 ths
FOP_PROTO(ngl)
248 5d0fc900 ths
FOP_PROTO(lt)
249 5d0fc900 ths
FOP_PROTO(nge)
250 5d0fc900 ths
FOP_PROTO(le)
251 5d0fc900 ths
FOP_PROTO(ngt)
252 5d0fc900 ths
#undef FOP_PROTO
253 08ba7963 ths
254 08ba7963 ths
/* Special functions */
255 0eaef5aa ths
#ifndef CONFIG_USER_ONLY
256 a7812ae4 pbrook
DEF_HELPER_0(tlbwi, void)
257 a7812ae4 pbrook
DEF_HELPER_0(tlbwr, void)
258 a7812ae4 pbrook
DEF_HELPER_0(tlbp, void)
259 a7812ae4 pbrook
DEF_HELPER_0(tlbr, void)
260 a7812ae4 pbrook
DEF_HELPER_0(di, tl)
261 a7812ae4 pbrook
DEF_HELPER_0(ei, tl)
262 a7812ae4 pbrook
DEF_HELPER_0(eret, void)
263 a7812ae4 pbrook
DEF_HELPER_0(deret, void)
264 0eaef5aa ths
#endif /* !CONFIG_USER_ONLY */
265 a7812ae4 pbrook
DEF_HELPER_0(rdhwr_cpunum, tl)
266 a7812ae4 pbrook
DEF_HELPER_0(rdhwr_synci_step, tl)
267 a7812ae4 pbrook
DEF_HELPER_0(rdhwr_cc, tl)
268 a7812ae4 pbrook
DEF_HELPER_0(rdhwr_ccres, tl)
269 a7812ae4 pbrook
DEF_HELPER_1(pmon, void, int)
270 a7812ae4 pbrook
DEF_HELPER_0(wait, void)
271 a7812ae4 pbrook
272 a7812ae4 pbrook
#include "def-helper.h"