Statistics
| Branch: | Revision:

root / target-mips / helper.h @ d9346e81

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