2 * Tiny Code Generator for QEMU
4 * Copyright (c) 2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 int gen_new_label(void);
28 static inline void tcg_gen_op1_i32(TCGOpcode opc
, TCGv_i32 arg1
)
31 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
34 static inline void tcg_gen_op1_i64(TCGOpcode opc
, TCGv_i64 arg1
)
37 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
40 static inline void tcg_gen_op1i(TCGOpcode opc
, TCGArg arg1
)
43 *gen_opparam_ptr
++ = arg1
;
46 static inline void tcg_gen_op2_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
)
49 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
50 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
53 static inline void tcg_gen_op2_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
)
56 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
57 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
60 static inline void tcg_gen_op2i_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGArg arg2
)
63 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
64 *gen_opparam_ptr
++ = arg2
;
67 static inline void tcg_gen_op2i_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGArg arg2
)
70 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
71 *gen_opparam_ptr
++ = arg2
;
74 static inline void tcg_gen_op2ii(TCGOpcode opc
, TCGArg arg1
, TCGArg arg2
)
77 *gen_opparam_ptr
++ = arg1
;
78 *gen_opparam_ptr
++ = arg2
;
81 static inline void tcg_gen_op3_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
85 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
86 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
87 *gen_opparam_ptr
++ = GET_TCGV_I32(arg3
);
90 static inline void tcg_gen_op3_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
94 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
95 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
96 *gen_opparam_ptr
++ = GET_TCGV_I64(arg3
);
99 static inline void tcg_gen_op3i_i32(TCGOpcode opc
, TCGv_i32 arg1
,
100 TCGv_i32 arg2
, TCGArg arg3
)
102 *gen_opc_ptr
++ = opc
;
103 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
104 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
105 *gen_opparam_ptr
++ = arg3
;
108 static inline void tcg_gen_op3i_i64(TCGOpcode opc
, TCGv_i64 arg1
,
109 TCGv_i64 arg2
, TCGArg arg3
)
111 *gen_opc_ptr
++ = opc
;
112 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
113 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
114 *gen_opparam_ptr
++ = arg3
;
117 static inline void tcg_gen_ldst_op_i32(TCGOpcode opc
, TCGv_i32 val
,
118 TCGv_ptr base
, TCGArg offset
)
120 *gen_opc_ptr
++ = opc
;
121 *gen_opparam_ptr
++ = GET_TCGV_I32(val
);
122 *gen_opparam_ptr
++ = GET_TCGV_PTR(base
);
123 *gen_opparam_ptr
++ = offset
;
126 static inline void tcg_gen_ldst_op_i64(TCGOpcode opc
, TCGv_i64 val
,
127 TCGv_ptr base
, TCGArg offset
)
129 *gen_opc_ptr
++ = opc
;
130 *gen_opparam_ptr
++ = GET_TCGV_I64(val
);
131 *gen_opparam_ptr
++ = GET_TCGV_PTR(base
);
132 *gen_opparam_ptr
++ = offset
;
135 static inline void tcg_gen_qemu_ldst_op_i64_i32(TCGOpcode opc
, TCGv_i64 val
,
136 TCGv_i32 addr
, TCGArg mem_index
)
138 *gen_opc_ptr
++ = opc
;
139 *gen_opparam_ptr
++ = GET_TCGV_I64(val
);
140 *gen_opparam_ptr
++ = GET_TCGV_I32(addr
);
141 *gen_opparam_ptr
++ = mem_index
;
144 static inline void tcg_gen_qemu_ldst_op_i64_i64(TCGOpcode opc
, TCGv_i64 val
,
145 TCGv_i64 addr
, TCGArg mem_index
)
147 *gen_opc_ptr
++ = opc
;
148 *gen_opparam_ptr
++ = GET_TCGV_I64(val
);
149 *gen_opparam_ptr
++ = GET_TCGV_I64(addr
);
150 *gen_opparam_ptr
++ = mem_index
;
153 static inline void tcg_gen_op4_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
154 TCGv_i32 arg3
, TCGv_i32 arg4
)
156 *gen_opc_ptr
++ = opc
;
157 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
158 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
159 *gen_opparam_ptr
++ = GET_TCGV_I32(arg3
);
160 *gen_opparam_ptr
++ = GET_TCGV_I32(arg4
);
163 static inline void tcg_gen_op4_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
164 TCGv_i64 arg3
, TCGv_i64 arg4
)
166 *gen_opc_ptr
++ = opc
;
167 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
168 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
169 *gen_opparam_ptr
++ = GET_TCGV_I64(arg3
);
170 *gen_opparam_ptr
++ = GET_TCGV_I64(arg4
);
173 static inline void tcg_gen_op4i_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
174 TCGv_i32 arg3
, TCGArg arg4
)
176 *gen_opc_ptr
++ = opc
;
177 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
178 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
179 *gen_opparam_ptr
++ = GET_TCGV_I32(arg3
);
180 *gen_opparam_ptr
++ = arg4
;
183 static inline void tcg_gen_op4i_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
184 TCGv_i64 arg3
, TCGArg arg4
)
186 *gen_opc_ptr
++ = opc
;
187 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
188 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
189 *gen_opparam_ptr
++ = GET_TCGV_I64(arg3
);
190 *gen_opparam_ptr
++ = arg4
;
193 static inline void tcg_gen_op4ii_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
194 TCGArg arg3
, TCGArg arg4
)
196 *gen_opc_ptr
++ = opc
;
197 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
198 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
199 *gen_opparam_ptr
++ = arg3
;
200 *gen_opparam_ptr
++ = arg4
;
203 static inline void tcg_gen_op4ii_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
204 TCGArg arg3
, TCGArg arg4
)
206 *gen_opc_ptr
++ = opc
;
207 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
208 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
209 *gen_opparam_ptr
++ = arg3
;
210 *gen_opparam_ptr
++ = arg4
;
213 static inline void tcg_gen_op5_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
214 TCGv_i32 arg3
, TCGv_i32 arg4
, TCGv_i32 arg5
)
216 *gen_opc_ptr
++ = opc
;
217 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
218 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
219 *gen_opparam_ptr
++ = GET_TCGV_I32(arg3
);
220 *gen_opparam_ptr
++ = GET_TCGV_I32(arg4
);
221 *gen_opparam_ptr
++ = GET_TCGV_I32(arg5
);
224 static inline void tcg_gen_op5_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
225 TCGv_i64 arg3
, TCGv_i64 arg4
, TCGv_i64 arg5
)
227 *gen_opc_ptr
++ = opc
;
228 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
229 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
230 *gen_opparam_ptr
++ = GET_TCGV_I64(arg3
);
231 *gen_opparam_ptr
++ = GET_TCGV_I64(arg4
);
232 *gen_opparam_ptr
++ = GET_TCGV_I64(arg5
);
235 static inline void tcg_gen_op5i_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
236 TCGv_i32 arg3
, TCGv_i32 arg4
, TCGArg arg5
)
238 *gen_opc_ptr
++ = opc
;
239 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
240 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
241 *gen_opparam_ptr
++ = GET_TCGV_I32(arg3
);
242 *gen_opparam_ptr
++ = GET_TCGV_I32(arg4
);
243 *gen_opparam_ptr
++ = arg5
;
246 static inline void tcg_gen_op5i_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
247 TCGv_i64 arg3
, TCGv_i64 arg4
, TCGArg arg5
)
249 *gen_opc_ptr
++ = opc
;
250 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
251 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
252 *gen_opparam_ptr
++ = GET_TCGV_I64(arg3
);
253 *gen_opparam_ptr
++ = GET_TCGV_I64(arg4
);
254 *gen_opparam_ptr
++ = arg5
;
257 static inline void tcg_gen_op6_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
258 TCGv_i32 arg3
, TCGv_i32 arg4
, TCGv_i32 arg5
,
261 *gen_opc_ptr
++ = opc
;
262 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
263 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
264 *gen_opparam_ptr
++ = GET_TCGV_I32(arg3
);
265 *gen_opparam_ptr
++ = GET_TCGV_I32(arg4
);
266 *gen_opparam_ptr
++ = GET_TCGV_I32(arg5
);
267 *gen_opparam_ptr
++ = GET_TCGV_I32(arg6
);
270 static inline void tcg_gen_op6_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
271 TCGv_i64 arg3
, TCGv_i64 arg4
, TCGv_i64 arg5
,
274 *gen_opc_ptr
++ = opc
;
275 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
276 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
277 *gen_opparam_ptr
++ = GET_TCGV_I64(arg3
);
278 *gen_opparam_ptr
++ = GET_TCGV_I64(arg4
);
279 *gen_opparam_ptr
++ = GET_TCGV_I64(arg5
);
280 *gen_opparam_ptr
++ = GET_TCGV_I64(arg6
);
283 static inline void tcg_gen_op6i_i32(TCGOpcode opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
284 TCGv_i32 arg3
, TCGv_i32 arg4
,
285 TCGv_i32 arg5
, TCGArg arg6
)
287 *gen_opc_ptr
++ = opc
;
288 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
289 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
290 *gen_opparam_ptr
++ = GET_TCGV_I32(arg3
);
291 *gen_opparam_ptr
++ = GET_TCGV_I32(arg4
);
292 *gen_opparam_ptr
++ = GET_TCGV_I32(arg5
);
293 *gen_opparam_ptr
++ = arg6
;
296 static inline void tcg_gen_op6i_i64(TCGOpcode opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
297 TCGv_i64 arg3
, TCGv_i64 arg4
,
298 TCGv_i64 arg5
, TCGArg arg6
)
300 *gen_opc_ptr
++ = opc
;
301 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
302 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
303 *gen_opparam_ptr
++ = GET_TCGV_I64(arg3
);
304 *gen_opparam_ptr
++ = GET_TCGV_I64(arg4
);
305 *gen_opparam_ptr
++ = GET_TCGV_I64(arg5
);
306 *gen_opparam_ptr
++ = arg6
;
309 static inline void tcg_gen_op6ii_i32(TCGOpcode opc
, TCGv_i32 arg1
,
310 TCGv_i32 arg2
, TCGv_i32 arg3
,
311 TCGv_i32 arg4
, TCGArg arg5
, TCGArg arg6
)
313 *gen_opc_ptr
++ = opc
;
314 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
315 *gen_opparam_ptr
++ = GET_TCGV_I32(arg2
);
316 *gen_opparam_ptr
++ = GET_TCGV_I32(arg3
);
317 *gen_opparam_ptr
++ = GET_TCGV_I32(arg4
);
318 *gen_opparam_ptr
++ = arg5
;
319 *gen_opparam_ptr
++ = arg6
;
322 static inline void tcg_gen_op6ii_i64(TCGOpcode opc
, TCGv_i64 arg1
,
323 TCGv_i64 arg2
, TCGv_i64 arg3
,
324 TCGv_i64 arg4
, TCGArg arg5
, TCGArg arg6
)
326 *gen_opc_ptr
++ = opc
;
327 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
328 *gen_opparam_ptr
++ = GET_TCGV_I64(arg2
);
329 *gen_opparam_ptr
++ = GET_TCGV_I64(arg3
);
330 *gen_opparam_ptr
++ = GET_TCGV_I64(arg4
);
331 *gen_opparam_ptr
++ = arg5
;
332 *gen_opparam_ptr
++ = arg6
;
335 static inline void gen_set_label(int n
)
337 tcg_gen_op1i(INDEX_op_set_label
, n
);
340 static inline void tcg_gen_br(int label
)
342 tcg_gen_op1i(INDEX_op_br
, label
);
345 static inline void tcg_gen_mov_i32(TCGv_i32 ret
, TCGv_i32 arg
)
347 if (!TCGV_EQUAL_I32(ret
, arg
))
348 tcg_gen_op2_i32(INDEX_op_mov_i32
, ret
, arg
);
351 static inline void tcg_gen_movi_i32(TCGv_i32 ret
, int32_t arg
)
353 tcg_gen_op2i_i32(INDEX_op_movi_i32
, ret
, arg
);
356 /* A version of dh_sizemask from def-helper.h that doesn't rely on
357 preprocessor magic. */
358 static inline int tcg_gen_sizemask(int n
, int is_64bit
, int is_signed
)
360 return (is_64bit
<< n
*2) | (is_signed
<< (n
*2 + 1));
364 static inline void tcg_gen_helperN(void *func
, int flags
, int sizemask
,
365 TCGArg ret
, int nargs
, TCGArg
*args
)
368 fn
= tcg_const_ptr((tcg_target_long
)func
);
369 tcg_gen_callN(&tcg_ctx
, fn
, flags
, sizemask
, ret
,
371 tcg_temp_free_ptr(fn
);
374 /* Note: Both tcg_gen_helper32() and tcg_gen_helper64() are currently
375 reserved for helpers in tcg-runtime.c. These helpers are all const
376 and pure, hence the call to tcg_gen_callN() with TCG_CALL_CONST |
377 TCG_CALL_PURE. This may need to be adjusted if these functions
378 start to be used with other helpers. */
379 static inline void tcg_gen_helper32(void *func
, int sizemask
, TCGv_i32 ret
,
380 TCGv_i32 a
, TCGv_i32 b
)
384 fn
= tcg_const_ptr((tcg_target_long
)func
);
385 args
[0] = GET_TCGV_I32(a
);
386 args
[1] = GET_TCGV_I32(b
);
387 tcg_gen_callN(&tcg_ctx
, fn
, TCG_CALL_CONST
| TCG_CALL_PURE
, sizemask
,
388 GET_TCGV_I32(ret
), 2, args
);
389 tcg_temp_free_ptr(fn
);
392 static inline void tcg_gen_helper64(void *func
, int sizemask
, TCGv_i64 ret
,
393 TCGv_i64 a
, TCGv_i64 b
)
397 fn
= tcg_const_ptr((tcg_target_long
)func
);
398 args
[0] = GET_TCGV_I64(a
);
399 args
[1] = GET_TCGV_I64(b
);
400 tcg_gen_callN(&tcg_ctx
, fn
, TCG_CALL_CONST
| TCG_CALL_PURE
, sizemask
,
401 GET_TCGV_I64(ret
), 2, args
);
402 tcg_temp_free_ptr(fn
);
407 static inline void tcg_gen_ld8u_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
409 tcg_gen_ldst_op_i32(INDEX_op_ld8u_i32
, ret
, arg2
, offset
);
412 static inline void tcg_gen_ld8s_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
414 tcg_gen_ldst_op_i32(INDEX_op_ld8s_i32
, ret
, arg2
, offset
);
417 static inline void tcg_gen_ld16u_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
419 tcg_gen_ldst_op_i32(INDEX_op_ld16u_i32
, ret
, arg2
, offset
);
422 static inline void tcg_gen_ld16s_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
424 tcg_gen_ldst_op_i32(INDEX_op_ld16s_i32
, ret
, arg2
, offset
);
427 static inline void tcg_gen_ld_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
429 tcg_gen_ldst_op_i32(INDEX_op_ld_i32
, ret
, arg2
, offset
);
432 static inline void tcg_gen_st8_i32(TCGv_i32 arg1
, TCGv_ptr arg2
, tcg_target_long offset
)
434 tcg_gen_ldst_op_i32(INDEX_op_st8_i32
, arg1
, arg2
, offset
);
437 static inline void tcg_gen_st16_i32(TCGv_i32 arg1
, TCGv_ptr arg2
, tcg_target_long offset
)
439 tcg_gen_ldst_op_i32(INDEX_op_st16_i32
, arg1
, arg2
, offset
);
442 static inline void tcg_gen_st_i32(TCGv_i32 arg1
, TCGv_ptr arg2
, tcg_target_long offset
)
444 tcg_gen_ldst_op_i32(INDEX_op_st_i32
, arg1
, arg2
, offset
);
447 static inline void tcg_gen_add_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
449 tcg_gen_op3_i32(INDEX_op_add_i32
, ret
, arg1
, arg2
);
452 static inline void tcg_gen_addi_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
454 /* some cases can be optimized here */
456 tcg_gen_mov_i32(ret
, arg1
);
458 TCGv_i32 t0
= tcg_const_i32(arg2
);
459 tcg_gen_add_i32(ret
, arg1
, t0
);
460 tcg_temp_free_i32(t0
);
464 static inline void tcg_gen_sub_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
466 tcg_gen_op3_i32(INDEX_op_sub_i32
, ret
, arg1
, arg2
);
469 static inline void tcg_gen_subfi_i32(TCGv_i32 ret
, int32_t arg1
, TCGv_i32 arg2
)
471 TCGv_i32 t0
= tcg_const_i32(arg1
);
472 tcg_gen_sub_i32(ret
, t0
, arg2
);
473 tcg_temp_free_i32(t0
);
476 static inline void tcg_gen_subi_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
478 /* some cases can be optimized here */
480 tcg_gen_mov_i32(ret
, arg1
);
482 TCGv_i32 t0
= tcg_const_i32(arg2
);
483 tcg_gen_sub_i32(ret
, arg1
, t0
);
484 tcg_temp_free_i32(t0
);
488 static inline void tcg_gen_and_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
490 if (TCGV_EQUAL_I32(arg1
, arg2
)) {
491 tcg_gen_mov_i32(ret
, arg1
);
493 tcg_gen_op3_i32(INDEX_op_and_i32
, ret
, arg1
, arg2
);
497 static inline void tcg_gen_andi_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
499 /* some cases can be optimized here */
501 tcg_gen_movi_i32(ret
, 0);
502 } else if (arg2
== 0xffffffff) {
503 tcg_gen_mov_i32(ret
, arg1
);
505 TCGv_i32 t0
= tcg_const_i32(arg2
);
506 tcg_gen_and_i32(ret
, arg1
, t0
);
507 tcg_temp_free_i32(t0
);
511 static inline void tcg_gen_or_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
513 if (TCGV_EQUAL_I32(arg1
, arg2
)) {
514 tcg_gen_mov_i32(ret
, arg1
);
516 tcg_gen_op3_i32(INDEX_op_or_i32
, ret
, arg1
, arg2
);
520 static inline void tcg_gen_ori_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
522 /* some cases can be optimized here */
523 if (arg2
== 0xffffffff) {
524 tcg_gen_movi_i32(ret
, 0xffffffff);
525 } else if (arg2
== 0) {
526 tcg_gen_mov_i32(ret
, arg1
);
528 TCGv_i32 t0
= tcg_const_i32(arg2
);
529 tcg_gen_or_i32(ret
, arg1
, t0
);
530 tcg_temp_free_i32(t0
);
534 static inline void tcg_gen_xor_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
536 if (TCGV_EQUAL_I32(arg1
, arg2
)) {
537 tcg_gen_movi_i32(ret
, 0);
539 tcg_gen_op3_i32(INDEX_op_xor_i32
, ret
, arg1
, arg2
);
543 static inline void tcg_gen_xori_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
545 /* some cases can be optimized here */
547 tcg_gen_mov_i32(ret
, arg1
);
549 TCGv_i32 t0
= tcg_const_i32(arg2
);
550 tcg_gen_xor_i32(ret
, arg1
, t0
);
551 tcg_temp_free_i32(t0
);
555 static inline void tcg_gen_shl_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
557 tcg_gen_op3_i32(INDEX_op_shl_i32
, ret
, arg1
, arg2
);
560 static inline void tcg_gen_shli_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
563 tcg_gen_mov_i32(ret
, arg1
);
565 TCGv_i32 t0
= tcg_const_i32(arg2
);
566 tcg_gen_shl_i32(ret
, arg1
, t0
);
567 tcg_temp_free_i32(t0
);
571 static inline void tcg_gen_shr_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
573 tcg_gen_op3_i32(INDEX_op_shr_i32
, ret
, arg1
, arg2
);
576 static inline void tcg_gen_shri_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
579 tcg_gen_mov_i32(ret
, arg1
);
581 TCGv_i32 t0
= tcg_const_i32(arg2
);
582 tcg_gen_shr_i32(ret
, arg1
, t0
);
583 tcg_temp_free_i32(t0
);
587 static inline void tcg_gen_sar_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
589 tcg_gen_op3_i32(INDEX_op_sar_i32
, ret
, arg1
, arg2
);
592 static inline void tcg_gen_sari_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
595 tcg_gen_mov_i32(ret
, arg1
);
597 TCGv_i32 t0
= tcg_const_i32(arg2
);
598 tcg_gen_sar_i32(ret
, arg1
, t0
);
599 tcg_temp_free_i32(t0
);
603 static inline void tcg_gen_brcond_i32(TCGCond cond
, TCGv_i32 arg1
,
604 TCGv_i32 arg2
, int label_index
)
606 tcg_gen_op4ii_i32(INDEX_op_brcond_i32
, arg1
, arg2
, cond
, label_index
);
609 static inline void tcg_gen_brcondi_i32(TCGCond cond
, TCGv_i32 arg1
,
610 int32_t arg2
, int label_index
)
612 TCGv_i32 t0
= tcg_const_i32(arg2
);
613 tcg_gen_brcond_i32(cond
, arg1
, t0
, label_index
);
614 tcg_temp_free_i32(t0
);
617 static inline void tcg_gen_setcond_i32(TCGCond cond
, TCGv_i32 ret
,
618 TCGv_i32 arg1
, TCGv_i32 arg2
)
620 tcg_gen_op4i_i32(INDEX_op_setcond_i32
, ret
, arg1
, arg2
, cond
);
623 static inline void tcg_gen_setcondi_i32(TCGCond cond
, TCGv_i32 ret
,
624 TCGv_i32 arg1
, int32_t arg2
)
626 TCGv_i32 t0
= tcg_const_i32(arg2
);
627 tcg_gen_setcond_i32(cond
, ret
, arg1
, t0
);
628 tcg_temp_free_i32(t0
);
631 static inline void tcg_gen_mul_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
633 tcg_gen_op3_i32(INDEX_op_mul_i32
, ret
, arg1
, arg2
);
636 static inline void tcg_gen_muli_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
638 TCGv_i32 t0
= tcg_const_i32(arg2
);
639 tcg_gen_mul_i32(ret
, arg1
, t0
);
640 tcg_temp_free_i32(t0
);
643 #ifdef TCG_TARGET_HAS_div_i32
644 static inline void tcg_gen_div_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
646 tcg_gen_op3_i32(INDEX_op_div_i32
, ret
, arg1
, arg2
);
649 static inline void tcg_gen_rem_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
651 tcg_gen_op3_i32(INDEX_op_rem_i32
, ret
, arg1
, arg2
);
654 static inline void tcg_gen_divu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
656 tcg_gen_op3_i32(INDEX_op_divu_i32
, ret
, arg1
, arg2
);
659 static inline void tcg_gen_remu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
661 tcg_gen_op3_i32(INDEX_op_remu_i32
, ret
, arg1
, arg2
);
663 #elif defined(TCG_TARGET_HAS_div2_i32)
664 static inline void tcg_gen_div_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
667 t0
= tcg_temp_new_i32();
668 tcg_gen_sari_i32(t0
, arg1
, 31);
669 tcg_gen_op5_i32(INDEX_op_div2_i32
, ret
, t0
, arg1
, t0
, arg2
);
670 tcg_temp_free_i32(t0
);
673 static inline void tcg_gen_rem_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
676 t0
= tcg_temp_new_i32();
677 tcg_gen_sari_i32(t0
, arg1
, 31);
678 tcg_gen_op5_i32(INDEX_op_div2_i32
, t0
, ret
, arg1
, t0
, arg2
);
679 tcg_temp_free_i32(t0
);
682 static inline void tcg_gen_divu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
685 t0
= tcg_temp_new_i32();
686 tcg_gen_movi_i32(t0
, 0);
687 tcg_gen_op5_i32(INDEX_op_divu2_i32
, ret
, t0
, arg1
, t0
, arg2
);
688 tcg_temp_free_i32(t0
);
691 static inline void tcg_gen_remu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
694 t0
= tcg_temp_new_i32();
695 tcg_gen_movi_i32(t0
, 0);
696 tcg_gen_op5_i32(INDEX_op_divu2_i32
, t0
, ret
, arg1
, t0
, arg2
);
697 tcg_temp_free_i32(t0
);
700 static inline void tcg_gen_div_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
703 /* Return value and both arguments are 32-bit and signed. */
704 sizemask
|= tcg_gen_sizemask(0, 0, 1);
705 sizemask
|= tcg_gen_sizemask(1, 0, 1);
706 sizemask
|= tcg_gen_sizemask(2, 0, 1);
708 tcg_gen_helper32(tcg_helper_div_i32
, sizemask
, ret
, arg1
, arg2
);
711 static inline void tcg_gen_rem_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
714 /* Return value and both arguments are 32-bit and signed. */
715 sizemask
|= tcg_gen_sizemask(0, 0, 1);
716 sizemask
|= tcg_gen_sizemask(1, 0, 1);
717 sizemask
|= tcg_gen_sizemask(2, 0, 1);
719 tcg_gen_helper32(tcg_helper_rem_i32
, sizemask
, ret
, arg1
, arg2
);
722 static inline void tcg_gen_divu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
725 /* Return value and both arguments are 32-bit and unsigned. */
726 sizemask
|= tcg_gen_sizemask(0, 0, 0);
727 sizemask
|= tcg_gen_sizemask(1, 0, 0);
728 sizemask
|= tcg_gen_sizemask(2, 0, 0);
730 tcg_gen_helper32(tcg_helper_divu_i32
, ret
, arg1
, arg2
, 0);
733 static inline void tcg_gen_remu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
736 /* Return value and both arguments are 32-bit and unsigned. */
737 sizemask
|= tcg_gen_sizemask(0, 0, 0);
738 sizemask
|= tcg_gen_sizemask(1, 0, 0);
739 sizemask
|= tcg_gen_sizemask(2, 0, 0);
741 tcg_gen_helper32(tcg_helper_remu_i32
, ret
, arg1
, arg2
, 0);
745 #if TCG_TARGET_REG_BITS == 32
747 static inline void tcg_gen_mov_i64(TCGv_i64 ret
, TCGv_i64 arg
)
749 if (!TCGV_EQUAL_I64(ret
, arg
)) {
750 tcg_gen_mov_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
751 tcg_gen_mov_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg
));
755 static inline void tcg_gen_movi_i64(TCGv_i64 ret
, int64_t arg
)
757 tcg_gen_movi_i32(TCGV_LOW(ret
), arg
);
758 tcg_gen_movi_i32(TCGV_HIGH(ret
), arg
>> 32);
761 static inline void tcg_gen_ld8u_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
762 tcg_target_long offset
)
764 tcg_gen_ld8u_i32(TCGV_LOW(ret
), arg2
, offset
);
765 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
768 static inline void tcg_gen_ld8s_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
769 tcg_target_long offset
)
771 tcg_gen_ld8s_i32(TCGV_LOW(ret
), arg2
, offset
);
772 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_HIGH(ret
), 31);
775 static inline void tcg_gen_ld16u_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
776 tcg_target_long offset
)
778 tcg_gen_ld16u_i32(TCGV_LOW(ret
), arg2
, offset
);
779 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
782 static inline void tcg_gen_ld16s_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
783 tcg_target_long offset
)
785 tcg_gen_ld16s_i32(TCGV_LOW(ret
), arg2
, offset
);
786 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
789 static inline void tcg_gen_ld32u_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
790 tcg_target_long offset
)
792 tcg_gen_ld_i32(TCGV_LOW(ret
), arg2
, offset
);
793 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
796 static inline void tcg_gen_ld32s_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
797 tcg_target_long offset
)
799 tcg_gen_ld_i32(TCGV_LOW(ret
), arg2
, offset
);
800 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
803 static inline void tcg_gen_ld_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
804 tcg_target_long offset
)
806 /* since arg2 and ret have different types, they cannot be the
808 #ifdef TCG_TARGET_WORDS_BIGENDIAN
809 tcg_gen_ld_i32(TCGV_HIGH(ret
), arg2
, offset
);
810 tcg_gen_ld_i32(TCGV_LOW(ret
), arg2
, offset
+ 4);
812 tcg_gen_ld_i32(TCGV_LOW(ret
), arg2
, offset
);
813 tcg_gen_ld_i32(TCGV_HIGH(ret
), arg2
, offset
+ 4);
817 static inline void tcg_gen_st8_i64(TCGv_i64 arg1
, TCGv_ptr arg2
,
818 tcg_target_long offset
)
820 tcg_gen_st8_i32(TCGV_LOW(arg1
), arg2
, offset
);
823 static inline void tcg_gen_st16_i64(TCGv_i64 arg1
, TCGv_ptr arg2
,
824 tcg_target_long offset
)
826 tcg_gen_st16_i32(TCGV_LOW(arg1
), arg2
, offset
);
829 static inline void tcg_gen_st32_i64(TCGv_i64 arg1
, TCGv_ptr arg2
,
830 tcg_target_long offset
)
832 tcg_gen_st_i32(TCGV_LOW(arg1
), arg2
, offset
);
835 static inline void tcg_gen_st_i64(TCGv_i64 arg1
, TCGv_ptr arg2
,
836 tcg_target_long offset
)
838 #ifdef TCG_TARGET_WORDS_BIGENDIAN
839 tcg_gen_st_i32(TCGV_HIGH(arg1
), arg2
, offset
);
840 tcg_gen_st_i32(TCGV_LOW(arg1
), arg2
, offset
+ 4);
842 tcg_gen_st_i32(TCGV_LOW(arg1
), arg2
, offset
);
843 tcg_gen_st_i32(TCGV_HIGH(arg1
), arg2
, offset
+ 4);
847 static inline void tcg_gen_add_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
849 tcg_gen_op6_i32(INDEX_op_add2_i32
, TCGV_LOW(ret
), TCGV_HIGH(ret
),
850 TCGV_LOW(arg1
), TCGV_HIGH(arg1
), TCGV_LOW(arg2
),
854 static inline void tcg_gen_sub_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
856 tcg_gen_op6_i32(INDEX_op_sub2_i32
, TCGV_LOW(ret
), TCGV_HIGH(ret
),
857 TCGV_LOW(arg1
), TCGV_HIGH(arg1
), TCGV_LOW(arg2
),
861 static inline void tcg_gen_and_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
863 tcg_gen_and_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
864 tcg_gen_and_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
867 static inline void tcg_gen_andi_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
869 tcg_gen_andi_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), arg2
);
870 tcg_gen_andi_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), arg2
>> 32);
873 static inline void tcg_gen_or_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
875 tcg_gen_or_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
876 tcg_gen_or_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
879 static inline void tcg_gen_ori_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
881 tcg_gen_ori_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), arg2
);
882 tcg_gen_ori_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), arg2
>> 32);
885 static inline void tcg_gen_xor_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
887 tcg_gen_xor_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
888 tcg_gen_xor_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
891 static inline void tcg_gen_xori_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
893 tcg_gen_xori_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), arg2
);
894 tcg_gen_xori_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), arg2
>> 32);
897 /* XXX: use generic code when basic block handling is OK or CPU
898 specific code (x86) */
899 static inline void tcg_gen_shl_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
902 /* Return value and both arguments are 64-bit and signed. */
903 sizemask
|= tcg_gen_sizemask(0, 1, 1);
904 sizemask
|= tcg_gen_sizemask(1, 1, 1);
905 sizemask
|= tcg_gen_sizemask(2, 1, 1);
907 tcg_gen_helper64(tcg_helper_shl_i64
, sizemask
, ret
, arg1
, arg2
);
910 static inline void tcg_gen_shli_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
912 tcg_gen_shifti_i64(ret
, arg1
, arg2
, 0, 0);
915 static inline void tcg_gen_shr_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
918 /* Return value and both arguments are 64-bit and signed. */
919 sizemask
|= tcg_gen_sizemask(0, 1, 1);
920 sizemask
|= tcg_gen_sizemask(1, 1, 1);
921 sizemask
|= tcg_gen_sizemask(2, 1, 1);
923 tcg_gen_helper64(tcg_helper_shr_i64
, sizemask
, ret
, arg1
, arg2
);
926 static inline void tcg_gen_shri_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
928 tcg_gen_shifti_i64(ret
, arg1
, arg2
, 1, 0);
931 static inline void tcg_gen_sar_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
934 /* Return value and both arguments are 64-bit and signed. */
935 sizemask
|= tcg_gen_sizemask(0, 1, 1);
936 sizemask
|= tcg_gen_sizemask(1, 1, 1);
937 sizemask
|= tcg_gen_sizemask(2, 1, 1);
939 tcg_gen_helper64(tcg_helper_sar_i64
, sizemask
, ret
, arg1
, arg2
);
942 static inline void tcg_gen_sari_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
944 tcg_gen_shifti_i64(ret
, arg1
, arg2
, 1, 1);
947 static inline void tcg_gen_brcond_i64(TCGCond cond
, TCGv_i64 arg1
,
948 TCGv_i64 arg2
, int label_index
)
950 tcg_gen_op6ii_i32(INDEX_op_brcond2_i32
,
951 TCGV_LOW(arg1
), TCGV_HIGH(arg1
), TCGV_LOW(arg2
),
952 TCGV_HIGH(arg2
), cond
, label_index
);
955 static inline void tcg_gen_setcond_i64(TCGCond cond
, TCGv_i64 ret
,
956 TCGv_i64 arg1
, TCGv_i64 arg2
)
958 tcg_gen_op6i_i32(INDEX_op_setcond2_i32
, TCGV_LOW(ret
),
959 TCGV_LOW(arg1
), TCGV_HIGH(arg1
),
960 TCGV_LOW(arg2
), TCGV_HIGH(arg2
), cond
);
961 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
964 static inline void tcg_gen_mul_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
969 t0
= tcg_temp_new_i64();
970 t1
= tcg_temp_new_i32();
972 tcg_gen_op4_i32(INDEX_op_mulu2_i32
, TCGV_LOW(t0
), TCGV_HIGH(t0
),
973 TCGV_LOW(arg1
), TCGV_LOW(arg2
));
975 tcg_gen_mul_i32(t1
, TCGV_LOW(arg1
), TCGV_HIGH(arg2
));
976 tcg_gen_add_i32(TCGV_HIGH(t0
), TCGV_HIGH(t0
), t1
);
977 tcg_gen_mul_i32(t1
, TCGV_HIGH(arg1
), TCGV_LOW(arg2
));
978 tcg_gen_add_i32(TCGV_HIGH(t0
), TCGV_HIGH(t0
), t1
);
980 tcg_gen_mov_i64(ret
, t0
);
981 tcg_temp_free_i64(t0
);
982 tcg_temp_free_i32(t1
);
985 static inline void tcg_gen_div_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
988 /* Return value and both arguments are 64-bit and signed. */
989 sizemask
|= tcg_gen_sizemask(0, 1, 1);
990 sizemask
|= tcg_gen_sizemask(1, 1, 1);
991 sizemask
|= tcg_gen_sizemask(2, 1, 1);
993 tcg_gen_helper64(tcg_helper_div_i64
, sizemask
, ret
, arg1
, arg2
);
996 static inline void tcg_gen_rem_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
999 /* Return value and both arguments are 64-bit and signed. */
1000 sizemask
|= tcg_gen_sizemask(0, 1, 1);
1001 sizemask
|= tcg_gen_sizemask(1, 1, 1);
1002 sizemask
|= tcg_gen_sizemask(2, 1, 1);
1004 tcg_gen_helper64(tcg_helper_rem_i64
, sizemask
, ret
, arg1
, arg2
);
1007 static inline void tcg_gen_divu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1010 /* Return value and both arguments are 64-bit and unsigned. */
1011 sizemask
|= tcg_gen_sizemask(0, 1, 0);
1012 sizemask
|= tcg_gen_sizemask(1, 1, 0);
1013 sizemask
|= tcg_gen_sizemask(2, 1, 0);
1015 tcg_gen_helper64(tcg_helper_divu_i64
, sizemask
, ret
, arg1
, arg2
);
1018 static inline void tcg_gen_remu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1021 /* Return value and both arguments are 64-bit and unsigned. */
1022 sizemask
|= tcg_gen_sizemask(0, 1, 0);
1023 sizemask
|= tcg_gen_sizemask(1, 1, 0);
1024 sizemask
|= tcg_gen_sizemask(2, 1, 0);
1026 tcg_gen_helper64(tcg_helper_remu_i64
, sizemask
, ret
, arg1
, arg2
);
1031 static inline void tcg_gen_mov_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1033 if (!TCGV_EQUAL_I64(ret
, arg
))
1034 tcg_gen_op2_i64(INDEX_op_mov_i64
, ret
, arg
);
1037 static inline void tcg_gen_movi_i64(TCGv_i64 ret
, int64_t arg
)
1039 tcg_gen_op2i_i64(INDEX_op_movi_i64
, ret
, arg
);
1042 static inline void tcg_gen_ld8u_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
1043 tcg_target_long offset
)
1045 tcg_gen_ldst_op_i64(INDEX_op_ld8u_i64
, ret
, arg2
, offset
);
1048 static inline void tcg_gen_ld8s_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
1049 tcg_target_long offset
)
1051 tcg_gen_ldst_op_i64(INDEX_op_ld8s_i64
, ret
, arg2
, offset
);
1054 static inline void tcg_gen_ld16u_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
1055 tcg_target_long offset
)
1057 tcg_gen_ldst_op_i64(INDEX_op_ld16u_i64
, ret
, arg2
, offset
);
1060 static inline void tcg_gen_ld16s_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
1061 tcg_target_long offset
)
1063 tcg_gen_ldst_op_i64(INDEX_op_ld16s_i64
, ret
, arg2
, offset
);
1066 static inline void tcg_gen_ld32u_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
1067 tcg_target_long offset
)
1069 tcg_gen_ldst_op_i64(INDEX_op_ld32u_i64
, ret
, arg2
, offset
);
1072 static inline void tcg_gen_ld32s_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
1073 tcg_target_long offset
)
1075 tcg_gen_ldst_op_i64(INDEX_op_ld32s_i64
, ret
, arg2
, offset
);
1078 static inline void tcg_gen_ld_i64(TCGv_i64 ret
, TCGv_i64 arg2
, tcg_target_long offset
)
1080 tcg_gen_ldst_op_i64(INDEX_op_ld_i64
, ret
, arg2
, offset
);
1083 static inline void tcg_gen_st8_i64(TCGv_i64 arg1
, TCGv_i64 arg2
,
1084 tcg_target_long offset
)
1086 tcg_gen_ldst_op_i64(INDEX_op_st8_i64
, arg1
, arg2
, offset
);
1089 static inline void tcg_gen_st16_i64(TCGv_i64 arg1
, TCGv_i64 arg2
,
1090 tcg_target_long offset
)
1092 tcg_gen_ldst_op_i64(INDEX_op_st16_i64
, arg1
, arg2
, offset
);
1095 static inline void tcg_gen_st32_i64(TCGv_i64 arg1
, TCGv_i64 arg2
,
1096 tcg_target_long offset
)
1098 tcg_gen_ldst_op_i64(INDEX_op_st32_i64
, arg1
, arg2
, offset
);
1101 static inline void tcg_gen_st_i64(TCGv_i64 arg1
, TCGv_i64 arg2
, tcg_target_long offset
)
1103 tcg_gen_ldst_op_i64(INDEX_op_st_i64
, arg1
, arg2
, offset
);
1106 static inline void tcg_gen_add_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1108 tcg_gen_op3_i64(INDEX_op_add_i64
, ret
, arg1
, arg2
);
1111 static inline void tcg_gen_sub_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1113 tcg_gen_op3_i64(INDEX_op_sub_i64
, ret
, arg1
, arg2
);
1116 static inline void tcg_gen_and_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1118 if (TCGV_EQUAL_I64(arg1
, arg2
)) {
1119 tcg_gen_mov_i64(ret
, arg1
);
1121 tcg_gen_op3_i64(INDEX_op_and_i64
, ret
, arg1
, arg2
);
1125 static inline void tcg_gen_andi_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1127 TCGv_i64 t0
= tcg_const_i64(arg2
);
1128 tcg_gen_and_i64(ret
, arg1
, t0
);
1129 tcg_temp_free_i64(t0
);
1132 static inline void tcg_gen_or_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1134 if (TCGV_EQUAL_I64(arg1
, arg2
)) {
1135 tcg_gen_mov_i64(ret
, arg1
);
1137 tcg_gen_op3_i64(INDEX_op_or_i64
, ret
, arg1
, arg2
);
1141 static inline void tcg_gen_ori_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1143 TCGv_i64 t0
= tcg_const_i64(arg2
);
1144 tcg_gen_or_i64(ret
, arg1
, t0
);
1145 tcg_temp_free_i64(t0
);
1148 static inline void tcg_gen_xor_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1150 if (TCGV_EQUAL_I64(arg1
, arg2
)) {
1151 tcg_gen_movi_i64(ret
, 0);
1153 tcg_gen_op3_i64(INDEX_op_xor_i64
, ret
, arg1
, arg2
);
1157 static inline void tcg_gen_xori_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1159 TCGv_i64 t0
= tcg_const_i64(arg2
);
1160 tcg_gen_xor_i64(ret
, arg1
, t0
);
1161 tcg_temp_free_i64(t0
);
1164 static inline void tcg_gen_shl_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1166 tcg_gen_op3_i64(INDEX_op_shl_i64
, ret
, arg1
, arg2
);
1169 static inline void tcg_gen_shli_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1172 tcg_gen_mov_i64(ret
, arg1
);
1174 TCGv_i64 t0
= tcg_const_i64(arg2
);
1175 tcg_gen_shl_i64(ret
, arg1
, t0
);
1176 tcg_temp_free_i64(t0
);
1180 static inline void tcg_gen_shr_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1182 tcg_gen_op3_i64(INDEX_op_shr_i64
, ret
, arg1
, arg2
);
1185 static inline void tcg_gen_shri_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1188 tcg_gen_mov_i64(ret
, arg1
);
1190 TCGv_i64 t0
= tcg_const_i64(arg2
);
1191 tcg_gen_shr_i64(ret
, arg1
, t0
);
1192 tcg_temp_free_i64(t0
);
1196 static inline void tcg_gen_sar_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1198 tcg_gen_op3_i64(INDEX_op_sar_i64
, ret
, arg1
, arg2
);
1201 static inline void tcg_gen_sari_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1204 tcg_gen_mov_i64(ret
, arg1
);
1206 TCGv_i64 t0
= tcg_const_i64(arg2
);
1207 tcg_gen_sar_i64(ret
, arg1
, t0
);
1208 tcg_temp_free_i64(t0
);
1212 static inline void tcg_gen_brcond_i64(TCGCond cond
, TCGv_i64 arg1
,
1213 TCGv_i64 arg2
, int label_index
)
1215 tcg_gen_op4ii_i64(INDEX_op_brcond_i64
, arg1
, arg2
, cond
, label_index
);
1218 static inline void tcg_gen_setcond_i64(TCGCond cond
, TCGv_i64 ret
,
1219 TCGv_i64 arg1
, TCGv_i64 arg2
)
1221 tcg_gen_op4i_i64(INDEX_op_setcond_i64
, ret
, arg1
, arg2
, cond
);
1224 static inline void tcg_gen_mul_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1226 tcg_gen_op3_i64(INDEX_op_mul_i64
, ret
, arg1
, arg2
);
1229 #ifdef TCG_TARGET_HAS_div_i64
1230 static inline void tcg_gen_div_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1232 tcg_gen_op3_i64(INDEX_op_div_i64
, ret
, arg1
, arg2
);
1235 static inline void tcg_gen_rem_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1237 tcg_gen_op3_i64(INDEX_op_rem_i64
, ret
, arg1
, arg2
);
1240 static inline void tcg_gen_divu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1242 tcg_gen_op3_i64(INDEX_op_divu_i64
, ret
, arg1
, arg2
);
1245 static inline void tcg_gen_remu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1247 tcg_gen_op3_i64(INDEX_op_remu_i64
, ret
, arg1
, arg2
);
1249 #elif defined(TCG_TARGET_HAS_div2_i64)
1250 static inline void tcg_gen_div_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1253 t0
= tcg_temp_new_i64();
1254 tcg_gen_sari_i64(t0
, arg1
, 63);
1255 tcg_gen_op5_i64(INDEX_op_div2_i64
, ret
, t0
, arg1
, t0
, arg2
);
1256 tcg_temp_free_i64(t0
);
1259 static inline void tcg_gen_rem_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1262 t0
= tcg_temp_new_i64();
1263 tcg_gen_sari_i64(t0
, arg1
, 63);
1264 tcg_gen_op5_i64(INDEX_op_div2_i64
, t0
, ret
, arg1
, t0
, arg2
);
1265 tcg_temp_free_i64(t0
);
1268 static inline void tcg_gen_divu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1271 t0
= tcg_temp_new_i64();
1272 tcg_gen_movi_i64(t0
, 0);
1273 tcg_gen_op5_i64(INDEX_op_divu2_i64
, ret
, t0
, arg1
, t0
, arg2
);
1274 tcg_temp_free_i64(t0
);
1277 static inline void tcg_gen_remu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1280 t0
= tcg_temp_new_i64();
1281 tcg_gen_movi_i64(t0
, 0);
1282 tcg_gen_op5_i64(INDEX_op_divu2_i64
, t0
, ret
, arg1
, t0
, arg2
);
1283 tcg_temp_free_i64(t0
);
1286 static inline void tcg_gen_div_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1289 /* Return value and both arguments are 64-bit and signed. */
1290 sizemask
|= tcg_gen_sizemask(0, 1, 1);
1291 sizemask
|= tcg_gen_sizemask(1, 1, 1);
1292 sizemask
|= tcg_gen_sizemask(2, 1, 1);
1294 tcg_gen_helper64(tcg_helper_div_i64
, sizemask
, ret
, arg1
, arg2
);
1297 static inline void tcg_gen_rem_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1300 /* Return value and both arguments are 64-bit and signed. */
1301 sizemask
|= tcg_gen_sizemask(0, 1, 1);
1302 sizemask
|= tcg_gen_sizemask(1, 1, 1);
1303 sizemask
|= tcg_gen_sizemask(2, 1, 1);
1305 tcg_gen_helper64(tcg_helper_rem_i64
, sizemask
, ret
, arg1
, arg2
);
1308 static inline void tcg_gen_divu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1311 /* Return value and both arguments are 64-bit and unsigned. */
1312 sizemask
|= tcg_gen_sizemask(0, 1, 0);
1313 sizemask
|= tcg_gen_sizemask(1, 1, 0);
1314 sizemask
|= tcg_gen_sizemask(2, 1, 0);
1316 tcg_gen_helper64(tcg_helper_divu_i64
, sizemask
, ret
, arg1
, arg2
);
1319 static inline void tcg_gen_remu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1322 /* Return value and both arguments are 64-bit and unsigned. */
1323 sizemask
|= tcg_gen_sizemask(0, 1, 0);
1324 sizemask
|= tcg_gen_sizemask(1, 1, 0);
1325 sizemask
|= tcg_gen_sizemask(2, 1, 0);
1327 tcg_gen_helper64(tcg_helper_remu_i64
, sizemask
, ret
, arg1
, arg2
);
1333 static inline void tcg_gen_addi_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1335 /* some cases can be optimized here */
1337 tcg_gen_mov_i64(ret
, arg1
);
1339 TCGv_i64 t0
= tcg_const_i64(arg2
);
1340 tcg_gen_add_i64(ret
, arg1
, t0
);
1341 tcg_temp_free_i64(t0
);
1345 static inline void tcg_gen_subfi_i64(TCGv_i64 ret
, int64_t arg1
, TCGv_i64 arg2
)
1347 TCGv_i64 t0
= tcg_const_i64(arg1
);
1348 tcg_gen_sub_i64(ret
, t0
, arg2
);
1349 tcg_temp_free_i64(t0
);
1352 static inline void tcg_gen_subi_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1354 /* some cases can be optimized here */
1356 tcg_gen_mov_i64(ret
, arg1
);
1358 TCGv_i64 t0
= tcg_const_i64(arg2
);
1359 tcg_gen_sub_i64(ret
, arg1
, t0
);
1360 tcg_temp_free_i64(t0
);
1363 static inline void tcg_gen_brcondi_i64(TCGCond cond
, TCGv_i64 arg1
,
1364 int64_t arg2
, int label_index
)
1366 TCGv_i64 t0
= tcg_const_i64(arg2
);
1367 tcg_gen_brcond_i64(cond
, arg1
, t0
, label_index
);
1368 tcg_temp_free_i64(t0
);
1371 static inline void tcg_gen_setcondi_i64(TCGCond cond
, TCGv_i64 ret
,
1372 TCGv_i64 arg1
, int64_t arg2
)
1374 TCGv_i64 t0
= tcg_const_i64(arg2
);
1375 tcg_gen_setcond_i64(cond
, ret
, arg1
, t0
);
1376 tcg_temp_free_i64(t0
);
1379 static inline void tcg_gen_muli_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1381 TCGv_i64 t0
= tcg_const_i64(arg2
);
1382 tcg_gen_mul_i64(ret
, arg1
, t0
);
1383 tcg_temp_free_i64(t0
);
1387 /***************************************/
1388 /* optional operations */
1390 static inline void tcg_gen_ext8s_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1392 #ifdef TCG_TARGET_HAS_ext8s_i32
1393 tcg_gen_op2_i32(INDEX_op_ext8s_i32
, ret
, arg
);
1395 tcg_gen_shli_i32(ret
, arg
, 24);
1396 tcg_gen_sari_i32(ret
, ret
, 24);
1400 static inline void tcg_gen_ext16s_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1402 #ifdef TCG_TARGET_HAS_ext16s_i32
1403 tcg_gen_op2_i32(INDEX_op_ext16s_i32
, ret
, arg
);
1405 tcg_gen_shli_i32(ret
, arg
, 16);
1406 tcg_gen_sari_i32(ret
, ret
, 16);
1410 static inline void tcg_gen_ext8u_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1412 #ifdef TCG_TARGET_HAS_ext8u_i32
1413 tcg_gen_op2_i32(INDEX_op_ext8u_i32
, ret
, arg
);
1415 tcg_gen_andi_i32(ret
, arg
, 0xffu
);
1419 static inline void tcg_gen_ext16u_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1421 #ifdef TCG_TARGET_HAS_ext16u_i32
1422 tcg_gen_op2_i32(INDEX_op_ext16u_i32
, ret
, arg
);
1424 tcg_gen_andi_i32(ret
, arg
, 0xffffu
);
1428 /* Note: we assume the two high bytes are set to zero */
1429 static inline void tcg_gen_bswap16_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1431 #ifdef TCG_TARGET_HAS_bswap16_i32
1432 tcg_gen_op2_i32(INDEX_op_bswap16_i32
, ret
, arg
);
1434 TCGv_i32 t0
= tcg_temp_new_i32();
1436 tcg_gen_ext8u_i32(t0
, arg
);
1437 tcg_gen_shli_i32(t0
, t0
, 8);
1438 tcg_gen_shri_i32(ret
, arg
, 8);
1439 tcg_gen_or_i32(ret
, ret
, t0
);
1440 tcg_temp_free_i32(t0
);
1444 static inline void tcg_gen_bswap32_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1446 #ifdef TCG_TARGET_HAS_bswap32_i32
1447 tcg_gen_op2_i32(INDEX_op_bswap32_i32
, ret
, arg
);
1450 t0
= tcg_temp_new_i32();
1451 t1
= tcg_temp_new_i32();
1453 tcg_gen_shli_i32(t0
, arg
, 24);
1455 tcg_gen_andi_i32(t1
, arg
, 0x0000ff00);
1456 tcg_gen_shli_i32(t1
, t1
, 8);
1457 tcg_gen_or_i32(t0
, t0
, t1
);
1459 tcg_gen_shri_i32(t1
, arg
, 8);
1460 tcg_gen_andi_i32(t1
, t1
, 0x0000ff00);
1461 tcg_gen_or_i32(t0
, t0
, t1
);
1463 tcg_gen_shri_i32(t1
, arg
, 24);
1464 tcg_gen_or_i32(ret
, t0
, t1
);
1465 tcg_temp_free_i32(t0
);
1466 tcg_temp_free_i32(t1
);
1470 #if TCG_TARGET_REG_BITS == 32
1471 static inline void tcg_gen_ext8s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1473 tcg_gen_ext8s_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1474 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1477 static inline void tcg_gen_ext16s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1479 tcg_gen_ext16s_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1480 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1483 static inline void tcg_gen_ext32s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1485 tcg_gen_mov_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1486 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1489 static inline void tcg_gen_ext8u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1491 tcg_gen_ext8u_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1492 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1495 static inline void tcg_gen_ext16u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1497 tcg_gen_ext16u_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1498 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1501 static inline void tcg_gen_ext32u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1503 tcg_gen_mov_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1504 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1507 static inline void tcg_gen_trunc_i64_i32(TCGv_i32 ret
, TCGv_i64 arg
)
1509 tcg_gen_mov_i32(ret
, TCGV_LOW(arg
));
1512 static inline void tcg_gen_extu_i32_i64(TCGv_i64 ret
, TCGv_i32 arg
)
1514 tcg_gen_mov_i32(TCGV_LOW(ret
), arg
);
1515 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1518 static inline void tcg_gen_ext_i32_i64(TCGv_i64 ret
, TCGv_i32 arg
)
1520 tcg_gen_mov_i32(TCGV_LOW(ret
), arg
);
1521 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1524 /* Note: we assume the six high bytes are set to zero */
1525 static inline void tcg_gen_bswap16_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1527 tcg_gen_mov_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg
));
1528 tcg_gen_bswap16_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1531 /* Note: we assume the four high bytes are set to zero */
1532 static inline void tcg_gen_bswap32_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1534 tcg_gen_mov_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg
));
1535 tcg_gen_bswap32_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1538 static inline void tcg_gen_bswap64_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1541 t0
= tcg_temp_new_i32();
1542 t1
= tcg_temp_new_i32();
1544 tcg_gen_bswap32_i32(t0
, TCGV_LOW(arg
));
1545 tcg_gen_bswap32_i32(t1
, TCGV_HIGH(arg
));
1546 tcg_gen_mov_i32(TCGV_LOW(ret
), t1
);
1547 tcg_gen_mov_i32(TCGV_HIGH(ret
), t0
);
1548 tcg_temp_free_i32(t0
);
1549 tcg_temp_free_i32(t1
);
1553 static inline void tcg_gen_ext8s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1555 #ifdef TCG_TARGET_HAS_ext8s_i64
1556 tcg_gen_op2_i64(INDEX_op_ext8s_i64
, ret
, arg
);
1558 tcg_gen_shli_i64(ret
, arg
, 56);
1559 tcg_gen_sari_i64(ret
, ret
, 56);
1563 static inline void tcg_gen_ext16s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1565 #ifdef TCG_TARGET_HAS_ext16s_i64
1566 tcg_gen_op2_i64(INDEX_op_ext16s_i64
, ret
, arg
);
1568 tcg_gen_shli_i64(ret
, arg
, 48);
1569 tcg_gen_sari_i64(ret
, ret
, 48);
1573 static inline void tcg_gen_ext32s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1575 #ifdef TCG_TARGET_HAS_ext32s_i64
1576 tcg_gen_op2_i64(INDEX_op_ext32s_i64
, ret
, arg
);
1578 tcg_gen_shli_i64(ret
, arg
, 32);
1579 tcg_gen_sari_i64(ret
, ret
, 32);
1583 static inline void tcg_gen_ext8u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1585 #ifdef TCG_TARGET_HAS_ext8u_i64
1586 tcg_gen_op2_i64(INDEX_op_ext8u_i64
, ret
, arg
);
1588 tcg_gen_andi_i64(ret
, arg
, 0xffu
);
1592 static inline void tcg_gen_ext16u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1594 #ifdef TCG_TARGET_HAS_ext16u_i64
1595 tcg_gen_op2_i64(INDEX_op_ext16u_i64
, ret
, arg
);
1597 tcg_gen_andi_i64(ret
, arg
, 0xffffu
);
1601 static inline void tcg_gen_ext32u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1603 #ifdef TCG_TARGET_HAS_ext32u_i64
1604 tcg_gen_op2_i64(INDEX_op_ext32u_i64
, ret
, arg
);
1606 tcg_gen_andi_i64(ret
, arg
, 0xffffffffu
);
1610 /* Note: we assume the target supports move between 32 and 64 bit
1611 registers. This will probably break MIPS64 targets. */
1612 static inline void tcg_gen_trunc_i64_i32(TCGv_i32 ret
, TCGv_i64 arg
)
1614 tcg_gen_mov_i32(ret
, MAKE_TCGV_I32(GET_TCGV_I64(arg
)));
1617 /* Note: we assume the target supports move between 32 and 64 bit
1619 static inline void tcg_gen_extu_i32_i64(TCGv_i64 ret
, TCGv_i32 arg
)
1621 tcg_gen_ext32u_i64(ret
, MAKE_TCGV_I64(GET_TCGV_I32(arg
)));
1624 /* Note: we assume the target supports move between 32 and 64 bit
1626 static inline void tcg_gen_ext_i32_i64(TCGv_i64 ret
, TCGv_i32 arg
)
1628 tcg_gen_ext32s_i64(ret
, MAKE_TCGV_I64(GET_TCGV_I32(arg
)));
1631 /* Note: we assume the six high bytes are set to zero */
1632 static inline void tcg_gen_bswap16_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1634 #ifdef TCG_TARGET_HAS_bswap16_i64
1635 tcg_gen_op2_i64(INDEX_op_bswap16_i64
, ret
, arg
);
1637 TCGv_i64 t0
= tcg_temp_new_i64();
1639 tcg_gen_ext8u_i64(t0
, arg
);
1640 tcg_gen_shli_i64(t0
, t0
, 8);
1641 tcg_gen_shri_i64(ret
, arg
, 8);
1642 tcg_gen_or_i64(ret
, ret
, t0
);
1643 tcg_temp_free_i64(t0
);
1647 /* Note: we assume the four high bytes are set to zero */
1648 static inline void tcg_gen_bswap32_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1650 #ifdef TCG_TARGET_HAS_bswap32_i64
1651 tcg_gen_op2_i64(INDEX_op_bswap32_i64
, ret
, arg
);
1654 t0
= tcg_temp_new_i64();
1655 t1
= tcg_temp_new_i64();
1657 tcg_gen_shli_i64(t0
, arg
, 24);
1658 tcg_gen_ext32u_i64(t0
, t0
);
1660 tcg_gen_andi_i64(t1
, arg
, 0x0000ff00);
1661 tcg_gen_shli_i64(t1
, t1
, 8);
1662 tcg_gen_or_i64(t0
, t0
, t1
);
1664 tcg_gen_shri_i64(t1
, arg
, 8);
1665 tcg_gen_andi_i64(t1
, t1
, 0x0000ff00);
1666 tcg_gen_or_i64(t0
, t0
, t1
);
1668 tcg_gen_shri_i64(t1
, arg
, 24);
1669 tcg_gen_or_i64(ret
, t0
, t1
);
1670 tcg_temp_free_i64(t0
);
1671 tcg_temp_free_i64(t1
);
1675 static inline void tcg_gen_bswap64_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1677 #ifdef TCG_TARGET_HAS_bswap64_i64
1678 tcg_gen_op2_i64(INDEX_op_bswap64_i64
, ret
, arg
);
1680 TCGv_i64 t0
= tcg_temp_new_i64();
1681 TCGv_i64 t1
= tcg_temp_new_i64();
1683 tcg_gen_shli_i64(t0
, arg
, 56);
1685 tcg_gen_andi_i64(t1
, arg
, 0x0000ff00);
1686 tcg_gen_shli_i64(t1
, t1
, 40);
1687 tcg_gen_or_i64(t0
, t0
, t1
);
1689 tcg_gen_andi_i64(t1
, arg
, 0x00ff0000);
1690 tcg_gen_shli_i64(t1
, t1
, 24);
1691 tcg_gen_or_i64(t0
, t0
, t1
);
1693 tcg_gen_andi_i64(t1
, arg
, 0xff000000);
1694 tcg_gen_shli_i64(t1
, t1
, 8);
1695 tcg_gen_or_i64(t0
, t0
, t1
);
1697 tcg_gen_shri_i64(t1
, arg
, 8);
1698 tcg_gen_andi_i64(t1
, t1
, 0xff000000);
1699 tcg_gen_or_i64(t0
, t0
, t1
);
1701 tcg_gen_shri_i64(t1
, arg
, 24);
1702 tcg_gen_andi_i64(t1
, t1
, 0x00ff0000);
1703 tcg_gen_or_i64(t0
, t0
, t1
);
1705 tcg_gen_shri_i64(t1
, arg
, 40);
1706 tcg_gen_andi_i64(t1
, t1
, 0x0000ff00);
1707 tcg_gen_or_i64(t0
, t0
, t1
);
1709 tcg_gen_shri_i64(t1
, arg
, 56);
1710 tcg_gen_or_i64(ret
, t0
, t1
);
1711 tcg_temp_free_i64(t0
);
1712 tcg_temp_free_i64(t1
);
1718 static inline void tcg_gen_neg_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1720 #ifdef TCG_TARGET_HAS_neg_i32
1721 tcg_gen_op2_i32(INDEX_op_neg_i32
, ret
, arg
);
1723 TCGv_i32 t0
= tcg_const_i32(0);
1724 tcg_gen_sub_i32(ret
, t0
, arg
);
1725 tcg_temp_free_i32(t0
);
1729 static inline void tcg_gen_neg_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1731 #ifdef TCG_TARGET_HAS_neg_i64
1732 tcg_gen_op2_i64(INDEX_op_neg_i64
, ret
, arg
);
1734 TCGv_i64 t0
= tcg_const_i64(0);
1735 tcg_gen_sub_i64(ret
, t0
, arg
);
1736 tcg_temp_free_i64(t0
);
1740 static inline void tcg_gen_not_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1742 #ifdef TCG_TARGET_HAS_not_i32
1743 tcg_gen_op2_i32(INDEX_op_not_i32
, ret
, arg
);
1745 tcg_gen_xori_i32(ret
, arg
, -1);
1749 static inline void tcg_gen_not_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1751 #ifdef TCG_TARGET_HAS_not_i64
1752 tcg_gen_op2_i64(INDEX_op_not_i64
, ret
, arg
);
1753 #elif defined(TCG_TARGET_HAS_not_i32) && TCG_TARGET_REG_BITS == 32
1754 tcg_gen_not_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1755 tcg_gen_not_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg
));
1757 tcg_gen_xori_i64(ret
, arg
, -1);
1761 static inline void tcg_gen_discard_i32(TCGv_i32 arg
)
1763 tcg_gen_op1_i32(INDEX_op_discard
, arg
);
1766 #if TCG_TARGET_REG_BITS == 32
1767 static inline void tcg_gen_discard_i64(TCGv_i64 arg
)
1769 tcg_gen_discard_i32(TCGV_LOW(arg
));
1770 tcg_gen_discard_i32(TCGV_HIGH(arg
));
1773 static inline void tcg_gen_discard_i64(TCGv_i64 arg
)
1775 tcg_gen_op1_i64(INDEX_op_discard
, arg
);
1779 static inline void tcg_gen_concat_i32_i64(TCGv_i64 dest
, TCGv_i32 low
, TCGv_i32 high
)
1781 #if TCG_TARGET_REG_BITS == 32
1782 tcg_gen_mov_i32(TCGV_LOW(dest
), low
);
1783 tcg_gen_mov_i32(TCGV_HIGH(dest
), high
);
1785 TCGv_i64 tmp
= tcg_temp_new_i64();
1786 /* This extension is only needed for type correctness.
1787 We may be able to do better given target specific information. */
1788 tcg_gen_extu_i32_i64(tmp
, high
);
1789 tcg_gen_shli_i64(tmp
, tmp
, 32);
1790 tcg_gen_extu_i32_i64(dest
, low
);
1791 tcg_gen_or_i64(dest
, dest
, tmp
);
1792 tcg_temp_free_i64(tmp
);
1796 static inline void tcg_gen_concat32_i64(TCGv_i64 dest
, TCGv_i64 low
, TCGv_i64 high
)
1798 #if TCG_TARGET_REG_BITS == 32
1799 tcg_gen_concat_i32_i64(dest
, TCGV_LOW(low
), TCGV_LOW(high
));
1801 TCGv_i64 tmp
= tcg_temp_new_i64();
1802 tcg_gen_ext32u_i64(dest
, low
);
1803 tcg_gen_shli_i64(tmp
, high
, 32);
1804 tcg_gen_or_i64(dest
, dest
, tmp
);
1805 tcg_temp_free_i64(tmp
);
1809 static inline void tcg_gen_andc_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1811 #ifdef TCG_TARGET_HAS_andc_i32
1812 tcg_gen_op3_i32(INDEX_op_andc_i32
, ret
, arg1
, arg2
);
1815 t0
= tcg_temp_new_i32();
1816 tcg_gen_not_i32(t0
, arg2
);
1817 tcg_gen_and_i32(ret
, arg1
, t0
);
1818 tcg_temp_free_i32(t0
);
1822 static inline void tcg_gen_andc_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1824 #ifdef TCG_TARGET_HAS_andc_i64
1825 tcg_gen_op3_i64(INDEX_op_andc_i64
, ret
, arg1
, arg2
);
1826 #elif defined(TCG_TARGET_HAS_andc_i32) && TCG_TARGET_REG_BITS == 32
1827 tcg_gen_andc_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
1828 tcg_gen_andc_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
1831 t0
= tcg_temp_new_i64();
1832 tcg_gen_not_i64(t0
, arg2
);
1833 tcg_gen_and_i64(ret
, arg1
, t0
);
1834 tcg_temp_free_i64(t0
);
1838 static inline void tcg_gen_eqv_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1840 #ifdef TCG_TARGET_HAS_eqv_i32
1841 tcg_gen_op3_i32(INDEX_op_eqv_i32
, ret
, arg1
, arg2
);
1843 tcg_gen_xor_i32(ret
, arg1
, arg2
);
1844 tcg_gen_not_i32(ret
, ret
);
1848 static inline void tcg_gen_eqv_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1850 #ifdef TCG_TARGET_HAS_eqv_i64
1851 tcg_gen_op3_i64(INDEX_op_eqv_i64
, ret
, arg1
, arg2
);
1852 #elif defined(TCG_TARGET_HAS_eqv_i32) && TCG_TARGET_REG_BITS == 32
1853 tcg_gen_eqv_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
1854 tcg_gen_eqv_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
1856 tcg_gen_xor_i64(ret
, arg1
, arg2
);
1857 tcg_gen_not_i64(ret
, ret
);
1861 static inline void tcg_gen_nand_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1863 #ifdef TCG_TARGET_HAS_nand_i32
1864 tcg_gen_op3_i32(INDEX_op_nand_i32
, ret
, arg1
, arg2
);
1866 tcg_gen_and_i32(ret
, arg1
, arg2
);
1867 tcg_gen_not_i32(ret
, ret
);
1871 static inline void tcg_gen_nand_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1873 #ifdef TCG_TARGET_HAS_nand_i64
1874 tcg_gen_op3_i64(INDEX_op_nand_i64
, ret
, arg1
, arg2
);
1875 #elif defined(TCG_TARGET_HAS_nand_i32) && TCG_TARGET_REG_BITS == 32
1876 tcg_gen_nand_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
1877 tcg_gen_nand_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
1879 tcg_gen_and_i64(ret
, arg1
, arg2
);
1880 tcg_gen_not_i64(ret
, ret
);
1884 static inline void tcg_gen_nor_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1886 #ifdef TCG_TARGET_HAS_nor_i32
1887 tcg_gen_op3_i32(INDEX_op_nor_i32
, ret
, arg1
, arg2
);
1889 tcg_gen_or_i32(ret
, arg1
, arg2
);
1890 tcg_gen_not_i32(ret
, ret
);
1894 static inline void tcg_gen_nor_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1896 #ifdef TCG_TARGET_HAS_nor_i64
1897 tcg_gen_op3_i64(INDEX_op_nor_i64
, ret
, arg1
, arg2
);
1898 #elif defined(TCG_TARGET_HAS_nor_i32) && TCG_TARGET_REG_BITS == 32
1899 tcg_gen_nor_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
1900 tcg_gen_nor_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
1902 tcg_gen_or_i64(ret
, arg1
, arg2
);
1903 tcg_gen_not_i64(ret
, ret
);
1907 static inline void tcg_gen_orc_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1909 #ifdef TCG_TARGET_HAS_orc_i32
1910 tcg_gen_op3_i32(INDEX_op_orc_i32
, ret
, arg1
, arg2
);
1913 t0
= tcg_temp_new_i32();
1914 tcg_gen_not_i32(t0
, arg2
);
1915 tcg_gen_or_i32(ret
, arg1
, t0
);
1916 tcg_temp_free_i32(t0
);
1920 static inline void tcg_gen_orc_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1922 #ifdef TCG_TARGET_HAS_orc_i64
1923 tcg_gen_op3_i64(INDEX_op_orc_i64
, ret
, arg1
, arg2
);
1924 #elif defined(TCG_TARGET_HAS_orc_i32) && TCG_TARGET_REG_BITS == 32
1925 tcg_gen_orc_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
1926 tcg_gen_orc_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
1929 t0
= tcg_temp_new_i64();
1930 tcg_gen_not_i64(t0
, arg2
);
1931 tcg_gen_or_i64(ret
, arg1
, t0
);
1932 tcg_temp_free_i64(t0
);
1936 static inline void tcg_gen_rotl_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1938 #ifdef TCG_TARGET_HAS_rot_i32
1939 tcg_gen_op3_i32(INDEX_op_rotl_i32
, ret
, arg1
, arg2
);
1943 t0
= tcg_temp_new_i32();
1944 t1
= tcg_temp_new_i32();
1945 tcg_gen_shl_i32(t0
, arg1
, arg2
);
1946 tcg_gen_subfi_i32(t1
, 32, arg2
);
1947 tcg_gen_shr_i32(t1
, arg1
, t1
);
1948 tcg_gen_or_i32(ret
, t0
, t1
);
1949 tcg_temp_free_i32(t0
);
1950 tcg_temp_free_i32(t1
);
1954 static inline void tcg_gen_rotl_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1956 #ifdef TCG_TARGET_HAS_rot_i64
1957 tcg_gen_op3_i64(INDEX_op_rotl_i64
, ret
, arg1
, arg2
);
1961 t0
= tcg_temp_new_i64();
1962 t1
= tcg_temp_new_i64();
1963 tcg_gen_shl_i64(t0
, arg1
, arg2
);
1964 tcg_gen_subfi_i64(t1
, 64, arg2
);
1965 tcg_gen_shr_i64(t1
, arg1
, t1
);
1966 tcg_gen_or_i64(ret
, t0
, t1
);
1967 tcg_temp_free_i64(t0
);
1968 tcg_temp_free_i64(t1
);
1972 static inline void tcg_gen_rotli_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
1974 /* some cases can be optimized here */
1976 tcg_gen_mov_i32(ret
, arg1
);
1978 #ifdef TCG_TARGET_HAS_rot_i32
1979 TCGv_i32 t0
= tcg_const_i32(arg2
);
1980 tcg_gen_rotl_i32(ret
, arg1
, t0
);
1981 tcg_temp_free_i32(t0
);
1984 t0
= tcg_temp_new_i32();
1985 t1
= tcg_temp_new_i32();
1986 tcg_gen_shli_i32(t0
, arg1
, arg2
);
1987 tcg_gen_shri_i32(t1
, arg1
, 32 - arg2
);
1988 tcg_gen_or_i32(ret
, t0
, t1
);
1989 tcg_temp_free_i32(t0
);
1990 tcg_temp_free_i32(t1
);
1995 static inline void tcg_gen_rotli_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1997 /* some cases can be optimized here */
1999 tcg_gen_mov_i64(ret
, arg1
);
2001 #ifdef TCG_TARGET_HAS_rot_i64
2002 TCGv_i64 t0
= tcg_const_i64(arg2
);
2003 tcg_gen_rotl_i64(ret
, arg1
, t0
);
2004 tcg_temp_free_i64(t0
);
2007 t0
= tcg_temp_new_i64();
2008 t1
= tcg_temp_new_i64();
2009 tcg_gen_shli_i64(t0
, arg1
, arg2
);
2010 tcg_gen_shri_i64(t1
, arg1
, 64 - arg2
);
2011 tcg_gen_or_i64(ret
, t0
, t1
);
2012 tcg_temp_free_i64(t0
);
2013 tcg_temp_free_i64(t1
);
2018 static inline void tcg_gen_rotr_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
2020 #ifdef TCG_TARGET_HAS_rot_i32
2021 tcg_gen_op3_i32(INDEX_op_rotr_i32
, ret
, arg1
, arg2
);
2025 t0
= tcg_temp_new_i32();
2026 t1
= tcg_temp_new_i32();
2027 tcg_gen_shr_i32(t0
, arg1
, arg2
);
2028 tcg_gen_subfi_i32(t1
, 32, arg2
);
2029 tcg_gen_shl_i32(t1
, arg1
, t1
);
2030 tcg_gen_or_i32(ret
, t0
, t1
);
2031 tcg_temp_free_i32(t0
);
2032 tcg_temp_free_i32(t1
);
2036 static inline void tcg_gen_rotr_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
2038 #ifdef TCG_TARGET_HAS_rot_i64
2039 tcg_gen_op3_i64(INDEX_op_rotr_i64
, ret
, arg1
, arg2
);
2043 t0
= tcg_temp_new_i64();
2044 t1
= tcg_temp_new_i64();
2045 tcg_gen_shr_i64(t0
, arg1
, arg2
);
2046 tcg_gen_subfi_i64(t1
, 64, arg2
);
2047 tcg_gen_shl_i64(t1
, arg1
, t1
);
2048 tcg_gen_or_i64(ret
, t0
, t1
);
2049 tcg_temp_free_i64(t0
);
2050 tcg_temp_free_i64(t1
);
2054 static inline void tcg_gen_rotri_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
2056 /* some cases can be optimized here */
2058 tcg_gen_mov_i32(ret
, arg1
);
2060 tcg_gen_rotli_i32(ret
, arg1
, 32 - arg2
);
2064 static inline void tcg_gen_rotri_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
2066 /* some cases can be optimized here */
2068 tcg_gen_mov_i64(ret
, arg1
);
2070 tcg_gen_rotli_i64(ret
, arg1
, 64 - arg2
);
2074 /***************************************/
2075 /* QEMU specific operations. Their type depend on the QEMU CPU
2077 #ifndef TARGET_LONG_BITS
2078 #error must include QEMU headers
2081 #if TARGET_LONG_BITS == 32
2082 #define TCGv TCGv_i32
2083 #define tcg_temp_new() tcg_temp_new_i32()
2084 #define tcg_global_reg_new tcg_global_reg_new_i32
2085 #define tcg_global_mem_new tcg_global_mem_new_i32
2086 #define tcg_temp_local_new() tcg_temp_local_new_i32()
2087 #define tcg_temp_free tcg_temp_free_i32
2088 #define tcg_gen_qemu_ldst_op tcg_gen_op3i_i32
2089 #define tcg_gen_qemu_ldst_op_i64 tcg_gen_qemu_ldst_op_i64_i32
2090 #define TCGV_UNUSED(x) TCGV_UNUSED_I32(x)
2091 #define TCGV_EQUAL(a, b) TCGV_EQUAL_I32(a, b)
2093 #define TCGv TCGv_i64
2094 #define tcg_temp_new() tcg_temp_new_i64()
2095 #define tcg_global_reg_new tcg_global_reg_new_i64
2096 #define tcg_global_mem_new tcg_global_mem_new_i64
2097 #define tcg_temp_local_new() tcg_temp_local_new_i64()
2098 #define tcg_temp_free tcg_temp_free_i64
2099 #define tcg_gen_qemu_ldst_op tcg_gen_op3i_i64
2100 #define tcg_gen_qemu_ldst_op_i64 tcg_gen_qemu_ldst_op_i64_i64
2101 #define TCGV_UNUSED(x) TCGV_UNUSED_I64(x)
2102 #define TCGV_EQUAL(a, b) TCGV_EQUAL_I64(a, b)
2105 /* debug info: write the PC of the corresponding QEMU CPU instruction */
2106 static inline void tcg_gen_debug_insn_start(uint64_t pc
)
2108 /* XXX: must really use a 32 bit size for TCGArg in all cases */
2109 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
2110 tcg_gen_op2ii(INDEX_op_debug_insn_start
,
2111 (uint32_t)(pc
), (uint32_t)(pc
>> 32));
2113 tcg_gen_op1i(INDEX_op_debug_insn_start
, pc
);
2117 static inline void tcg_gen_exit_tb(tcg_target_long val
)
2119 tcg_gen_op1i(INDEX_op_exit_tb
, val
);
2122 static inline void tcg_gen_goto_tb(int idx
)
2124 tcg_gen_op1i(INDEX_op_goto_tb
, idx
);
2127 #if TCG_TARGET_REG_BITS == 32
2128 static inline void tcg_gen_qemu_ld8u(TCGv ret
, TCGv addr
, int mem_index
)
2130 #if TARGET_LONG_BITS == 32
2131 tcg_gen_op3i_i32(INDEX_op_qemu_ld8u
, ret
, addr
, mem_index
);
2133 tcg_gen_op4i_i32(INDEX_op_qemu_ld8u
, TCGV_LOW(ret
), TCGV_LOW(addr
),
2134 TCGV_HIGH(addr
), mem_index
);
2135 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
2139 static inline void tcg_gen_qemu_ld8s(TCGv ret
, TCGv addr
, int mem_index
)
2141 #if TARGET_LONG_BITS == 32
2142 tcg_gen_op3i_i32(INDEX_op_qemu_ld8s
, ret
, addr
, mem_index
);
2144 tcg_gen_op4i_i32(INDEX_op_qemu_ld8s
, TCGV_LOW(ret
), TCGV_LOW(addr
),
2145 TCGV_HIGH(addr
), mem_index
);
2146 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
2150 static inline void tcg_gen_qemu_ld16u(TCGv ret
, TCGv addr
, int mem_index
)
2152 #if TARGET_LONG_BITS == 32
2153 tcg_gen_op3i_i32(INDEX_op_qemu_ld16u
, ret
, addr
, mem_index
);
2155 tcg_gen_op4i_i32(INDEX_op_qemu_ld16u
, TCGV_LOW(ret
), TCGV_LOW(addr
),
2156 TCGV_HIGH(addr
), mem_index
);
2157 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
2161 static inline void tcg_gen_qemu_ld16s(TCGv ret
, TCGv addr
, int mem_index
)
2163 #if TARGET_LONG_BITS == 32
2164 tcg_gen_op3i_i32(INDEX_op_qemu_ld16s
, ret
, addr
, mem_index
);
2166 tcg_gen_op4i_i32(INDEX_op_qemu_ld16s
, TCGV_LOW(ret
), TCGV_LOW(addr
),
2167 TCGV_HIGH(addr
), mem_index
);
2168 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
2172 static inline void tcg_gen_qemu_ld32u(TCGv ret
, TCGv addr
, int mem_index
)
2174 #if TARGET_LONG_BITS == 32
2175 tcg_gen_op3i_i32(INDEX_op_qemu_ld32
, ret
, addr
, mem_index
);
2177 tcg_gen_op4i_i32(INDEX_op_qemu_ld32
, TCGV_LOW(ret
), TCGV_LOW(addr
),
2178 TCGV_HIGH(addr
), mem_index
);
2179 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
2183 static inline void tcg_gen_qemu_ld32s(TCGv ret
, TCGv addr
, int mem_index
)
2185 #if TARGET_LONG_BITS == 32
2186 tcg_gen_op3i_i32(INDEX_op_qemu_ld32
, ret
, addr
, mem_index
);
2188 tcg_gen_op4i_i32(INDEX_op_qemu_ld32
, TCGV_LOW(ret
), TCGV_LOW(addr
),
2189 TCGV_HIGH(addr
), mem_index
);
2190 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
2194 static inline void tcg_gen_qemu_ld64(TCGv_i64 ret
, TCGv addr
, int mem_index
)
2196 #if TARGET_LONG_BITS == 32
2197 tcg_gen_op4i_i32(INDEX_op_qemu_ld64
, TCGV_LOW(ret
), TCGV_HIGH(ret
), addr
, mem_index
);
2199 tcg_gen_op5i_i32(INDEX_op_qemu_ld64
, TCGV_LOW(ret
), TCGV_HIGH(ret
),
2200 TCGV_LOW(addr
), TCGV_HIGH(addr
), mem_index
);
2204 static inline void tcg_gen_qemu_st8(TCGv arg
, TCGv addr
, int mem_index
)
2206 #if TARGET_LONG_BITS == 32
2207 tcg_gen_op3i_i32(INDEX_op_qemu_st8
, arg
, addr
, mem_index
);
2209 tcg_gen_op4i_i32(INDEX_op_qemu_st8
, TCGV_LOW(arg
), TCGV_LOW(addr
),
2210 TCGV_HIGH(addr
), mem_index
);
2214 static inline void tcg_gen_qemu_st16(TCGv arg
, TCGv addr
, int mem_index
)
2216 #if TARGET_LONG_BITS == 32
2217 tcg_gen_op3i_i32(INDEX_op_qemu_st16
, arg
, addr
, mem_index
);
2219 tcg_gen_op4i_i32(INDEX_op_qemu_st16
, TCGV_LOW(arg
), TCGV_LOW(addr
),
2220 TCGV_HIGH(addr
), mem_index
);
2224 static inline void tcg_gen_qemu_st32(TCGv arg
, TCGv addr
, int mem_index
)
2226 #if TARGET_LONG_BITS == 32
2227 tcg_gen_op3i_i32(INDEX_op_qemu_st32
, arg
, addr
, mem_index
);
2229 tcg_gen_op4i_i32(INDEX_op_qemu_st32
, TCGV_LOW(arg
), TCGV_LOW(addr
),
2230 TCGV_HIGH(addr
), mem_index
);
2234 static inline void tcg_gen_qemu_st64(TCGv_i64 arg
, TCGv addr
, int mem_index
)
2236 #if TARGET_LONG_BITS == 32
2237 tcg_gen_op4i_i32(INDEX_op_qemu_st64
, TCGV_LOW(arg
), TCGV_HIGH(arg
), addr
,
2240 tcg_gen_op5i_i32(INDEX_op_qemu_st64
, TCGV_LOW(arg
), TCGV_HIGH(arg
),
2241 TCGV_LOW(addr
), TCGV_HIGH(addr
), mem_index
);
2245 #define tcg_gen_ld_ptr tcg_gen_ld_i32
2246 #define tcg_gen_discard_ptr tcg_gen_discard_i32
2248 #else /* TCG_TARGET_REG_BITS == 32 */
2250 static inline void tcg_gen_qemu_ld8u(TCGv ret
, TCGv addr
, int mem_index
)
2252 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld8u
, ret
, addr
, mem_index
);
2255 static inline void tcg_gen_qemu_ld8s(TCGv ret
, TCGv addr
, int mem_index
)
2257 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld8s
, ret
, addr
, mem_index
);
2260 static inline void tcg_gen_qemu_ld16u(TCGv ret
, TCGv addr
, int mem_index
)
2262 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld16u
, ret
, addr
, mem_index
);
2265 static inline void tcg_gen_qemu_ld16s(TCGv ret
, TCGv addr
, int mem_index
)
2267 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld16s
, ret
, addr
, mem_index
);
2270 static inline void tcg_gen_qemu_ld32u(TCGv ret
, TCGv addr
, int mem_index
)
2272 #if TARGET_LONG_BITS == 32
2273 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32
, ret
, addr
, mem_index
);
2275 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32u
, ret
, addr
, mem_index
);
2279 static inline void tcg_gen_qemu_ld32s(TCGv ret
, TCGv addr
, int mem_index
)
2281 #if TARGET_LONG_BITS == 32
2282 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32
, ret
, addr
, mem_index
);
2284 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32s
, ret
, addr
, mem_index
);
2288 static inline void tcg_gen_qemu_ld64(TCGv_i64 ret
, TCGv addr
, int mem_index
)
2290 tcg_gen_qemu_ldst_op_i64(INDEX_op_qemu_ld64
, ret
, addr
, mem_index
);
2293 static inline void tcg_gen_qemu_st8(TCGv arg
, TCGv addr
, int mem_index
)
2295 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st8
, arg
, addr
, mem_index
);
2298 static inline void tcg_gen_qemu_st16(TCGv arg
, TCGv addr
, int mem_index
)
2300 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st16
, arg
, addr
, mem_index
);
2303 static inline void tcg_gen_qemu_st32(TCGv arg
, TCGv addr
, int mem_index
)
2305 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st32
, arg
, addr
, mem_index
);
2308 static inline void tcg_gen_qemu_st64(TCGv_i64 arg
, TCGv addr
, int mem_index
)
2310 tcg_gen_qemu_ldst_op_i64(INDEX_op_qemu_st64
, arg
, addr
, mem_index
);
2313 #define tcg_gen_ld_ptr tcg_gen_ld_i64
2314 #define tcg_gen_discard_ptr tcg_gen_discard_i64
2316 #endif /* TCG_TARGET_REG_BITS != 32 */
2318 #if TARGET_LONG_BITS == 64
2319 #define tcg_gen_movi_tl tcg_gen_movi_i64
2320 #define tcg_gen_mov_tl tcg_gen_mov_i64
2321 #define tcg_gen_ld8u_tl tcg_gen_ld8u_i64
2322 #define tcg_gen_ld8s_tl tcg_gen_ld8s_i64
2323 #define tcg_gen_ld16u_tl tcg_gen_ld16u_i64
2324 #define tcg_gen_ld16s_tl tcg_gen_ld16s_i64
2325 #define tcg_gen_ld32u_tl tcg_gen_ld32u_i64
2326 #define tcg_gen_ld32s_tl tcg_gen_ld32s_i64
2327 #define tcg_gen_ld_tl tcg_gen_ld_i64
2328 #define tcg_gen_st8_tl tcg_gen_st8_i64
2329 #define tcg_gen_st16_tl tcg_gen_st16_i64
2330 #define tcg_gen_st32_tl tcg_gen_st32_i64
2331 #define tcg_gen_st_tl tcg_gen_st_i64
2332 #define tcg_gen_add_tl tcg_gen_add_i64
2333 #define tcg_gen_addi_tl tcg_gen_addi_i64
2334 #define tcg_gen_sub_tl tcg_gen_sub_i64
2335 #define tcg_gen_neg_tl tcg_gen_neg_i64
2336 #define tcg_gen_subfi_tl tcg_gen_subfi_i64
2337 #define tcg_gen_subi_tl tcg_gen_subi_i64
2338 #define tcg_gen_and_tl tcg_gen_and_i64
2339 #define tcg_gen_andi_tl tcg_gen_andi_i64
2340 #define tcg_gen_or_tl tcg_gen_or_i64
2341 #define tcg_gen_ori_tl tcg_gen_ori_i64
2342 #define tcg_gen_xor_tl tcg_gen_xor_i64
2343 #define tcg_gen_xori_tl tcg_gen_xori_i64
2344 #define tcg_gen_not_tl tcg_gen_not_i64
2345 #define tcg_gen_shl_tl tcg_gen_shl_i64
2346 #define tcg_gen_shli_tl tcg_gen_shli_i64
2347 #define tcg_gen_shr_tl tcg_gen_shr_i64
2348 #define tcg_gen_shri_tl tcg_gen_shri_i64
2349 #define tcg_gen_sar_tl tcg_gen_sar_i64
2350 #define tcg_gen_sari_tl tcg_gen_sari_i64
2351 #define tcg_gen_brcond_tl tcg_gen_brcond_i64
2352 #define tcg_gen_brcondi_tl tcg_gen_brcondi_i64
2353 #define tcg_gen_setcond_tl tcg_gen_setcond_i64
2354 #define tcg_gen_setcondi_tl tcg_gen_setcondi_i64
2355 #define tcg_gen_mul_tl tcg_gen_mul_i64
2356 #define tcg_gen_muli_tl tcg_gen_muli_i64
2357 #define tcg_gen_div_tl tcg_gen_div_i64
2358 #define tcg_gen_rem_tl tcg_gen_rem_i64
2359 #define tcg_gen_divu_tl tcg_gen_divu_i64
2360 #define tcg_gen_remu_tl tcg_gen_remu_i64
2361 #define tcg_gen_discard_tl tcg_gen_discard_i64
2362 #define tcg_gen_trunc_tl_i32 tcg_gen_trunc_i64_i32
2363 #define tcg_gen_trunc_i64_tl tcg_gen_mov_i64
2364 #define tcg_gen_extu_i32_tl tcg_gen_extu_i32_i64
2365 #define tcg_gen_ext_i32_tl tcg_gen_ext_i32_i64
2366 #define tcg_gen_extu_tl_i64 tcg_gen_mov_i64
2367 #define tcg_gen_ext_tl_i64 tcg_gen_mov_i64
2368 #define tcg_gen_ext8u_tl tcg_gen_ext8u_i64
2369 #define tcg_gen_ext8s_tl tcg_gen_ext8s_i64
2370 #define tcg_gen_ext16u_tl tcg_gen_ext16u_i64
2371 #define tcg_gen_ext16s_tl tcg_gen_ext16s_i64
2372 #define tcg_gen_ext32u_tl tcg_gen_ext32u_i64
2373 #define tcg_gen_ext32s_tl tcg_gen_ext32s_i64
2374 #define tcg_gen_bswap16_tl tcg_gen_bswap16_i64
2375 #define tcg_gen_bswap32_tl tcg_gen_bswap32_i64
2376 #define tcg_gen_bswap64_tl tcg_gen_bswap64_i64
2377 #define tcg_gen_concat_tl_i64 tcg_gen_concat32_i64
2378 #define tcg_gen_andc_tl tcg_gen_andc_i64
2379 #define tcg_gen_eqv_tl tcg_gen_eqv_i64
2380 #define tcg_gen_nand_tl tcg_gen_nand_i64
2381 #define tcg_gen_nor_tl tcg_gen_nor_i64
2382 #define tcg_gen_orc_tl tcg_gen_orc_i64
2383 #define tcg_gen_rotl_tl tcg_gen_rotl_i64
2384 #define tcg_gen_rotli_tl tcg_gen_rotli_i64
2385 #define tcg_gen_rotr_tl tcg_gen_rotr_i64
2386 #define tcg_gen_rotri_tl tcg_gen_rotri_i64
2387 #define tcg_const_tl tcg_const_i64
2388 #define tcg_const_local_tl tcg_const_local_i64
2390 #define tcg_gen_movi_tl tcg_gen_movi_i32
2391 #define tcg_gen_mov_tl tcg_gen_mov_i32
2392 #define tcg_gen_ld8u_tl tcg_gen_ld8u_i32
2393 #define tcg_gen_ld8s_tl tcg_gen_ld8s_i32
2394 #define tcg_gen_ld16u_tl tcg_gen_ld16u_i32
2395 #define tcg_gen_ld16s_tl tcg_gen_ld16s_i32
2396 #define tcg_gen_ld32u_tl tcg_gen_ld_i32
2397 #define tcg_gen_ld32s_tl tcg_gen_ld_i32
2398 #define tcg_gen_ld_tl tcg_gen_ld_i32
2399 #define tcg_gen_st8_tl tcg_gen_st8_i32
2400 #define tcg_gen_st16_tl tcg_gen_st16_i32
2401 #define tcg_gen_st32_tl tcg_gen_st_i32
2402 #define tcg_gen_st_tl tcg_gen_st_i32
2403 #define tcg_gen_add_tl tcg_gen_add_i32
2404 #define tcg_gen_addi_tl tcg_gen_addi_i32
2405 #define tcg_gen_sub_tl tcg_gen_sub_i32
2406 #define tcg_gen_neg_tl tcg_gen_neg_i32
2407 #define tcg_gen_subfi_tl tcg_gen_subfi_i32
2408 #define tcg_gen_subi_tl tcg_gen_subi_i32
2409 #define tcg_gen_and_tl tcg_gen_and_i32
2410 #define tcg_gen_andi_tl tcg_gen_andi_i32
2411 #define tcg_gen_or_tl tcg_gen_or_i32
2412 #define tcg_gen_ori_tl tcg_gen_ori_i32
2413 #define tcg_gen_xor_tl tcg_gen_xor_i32
2414 #define tcg_gen_xori_tl tcg_gen_xori_i32
2415 #define tcg_gen_not_tl tcg_gen_not_i32
2416 #define tcg_gen_shl_tl tcg_gen_shl_i32
2417 #define tcg_gen_shli_tl tcg_gen_shli_i32
2418 #define tcg_gen_shr_tl tcg_gen_shr_i32
2419 #define tcg_gen_shri_tl tcg_gen_shri_i32
2420 #define tcg_gen_sar_tl tcg_gen_sar_i32
2421 #define tcg_gen_sari_tl tcg_gen_sari_i32
2422 #define tcg_gen_brcond_tl tcg_gen_brcond_i32
2423 #define tcg_gen_brcondi_tl tcg_gen_brcondi_i32
2424 #define tcg_gen_setcond_tl tcg_gen_setcond_i32
2425 #define tcg_gen_setcondi_tl tcg_gen_setcondi_i32
2426 #define tcg_gen_mul_tl tcg_gen_mul_i32
2427 #define tcg_gen_muli_tl tcg_gen_muli_i32
2428 #define tcg_gen_div_tl tcg_gen_div_i32
2429 #define tcg_gen_rem_tl tcg_gen_rem_i32
2430 #define tcg_gen_divu_tl tcg_gen_divu_i32
2431 #define tcg_gen_remu_tl tcg_gen_remu_i32
2432 #define tcg_gen_discard_tl tcg_gen_discard_i32
2433 #define tcg_gen_trunc_tl_i32 tcg_gen_mov_i32
2434 #define tcg_gen_trunc_i64_tl tcg_gen_trunc_i64_i32
2435 #define tcg_gen_extu_i32_tl tcg_gen_mov_i32
2436 #define tcg_gen_ext_i32_tl tcg_gen_mov_i32
2437 #define tcg_gen_extu_tl_i64 tcg_gen_extu_i32_i64
2438 #define tcg_gen_ext_tl_i64 tcg_gen_ext_i32_i64
2439 #define tcg_gen_ext8u_tl tcg_gen_ext8u_i32
2440 #define tcg_gen_ext8s_tl tcg_gen_ext8s_i32
2441 #define tcg_gen_ext16u_tl tcg_gen_ext16u_i32
2442 #define tcg_gen_ext16s_tl tcg_gen_ext16s_i32
2443 #define tcg_gen_ext32u_tl tcg_gen_mov_i32
2444 #define tcg_gen_ext32s_tl tcg_gen_mov_i32
2445 #define tcg_gen_bswap16_tl tcg_gen_bswap16_i32
2446 #define tcg_gen_bswap32_tl tcg_gen_bswap32_i32
2447 #define tcg_gen_concat_tl_i64 tcg_gen_concat_i32_i64
2448 #define tcg_gen_andc_tl tcg_gen_andc_i32
2449 #define tcg_gen_eqv_tl tcg_gen_eqv_i32
2450 #define tcg_gen_nand_tl tcg_gen_nand_i32
2451 #define tcg_gen_nor_tl tcg_gen_nor_i32
2452 #define tcg_gen_orc_tl tcg_gen_orc_i32
2453 #define tcg_gen_rotl_tl tcg_gen_rotl_i32
2454 #define tcg_gen_rotli_tl tcg_gen_rotli_i32
2455 #define tcg_gen_rotr_tl tcg_gen_rotr_i32
2456 #define tcg_gen_rotri_tl tcg_gen_rotri_i32
2457 #define tcg_const_tl tcg_const_i32
2458 #define tcg_const_local_tl tcg_const_local_i32
2461 #if TCG_TARGET_REG_BITS == 32
2462 #define tcg_gen_add_ptr tcg_gen_add_i32
2463 #define tcg_gen_addi_ptr tcg_gen_addi_i32
2464 #define tcg_gen_ext_i32_ptr tcg_gen_mov_i32
2465 #else /* TCG_TARGET_REG_BITS == 32 */
2466 #define tcg_gen_add_ptr tcg_gen_add_i64
2467 #define tcg_gen_addi_ptr tcg_gen_addi_i64
2468 #define tcg_gen_ext_i32_ptr tcg_gen_ext_i32_i64
2469 #endif /* TCG_TARGET_REG_BITS != 32 */