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(int opc
, TCGv_i32 arg1
)
31 *gen_opparam_ptr
++ = GET_TCGV_I32(arg1
);
34 static inline void tcg_gen_op1_i64(int opc
, TCGv_i64 arg1
)
37 *gen_opparam_ptr
++ = GET_TCGV_I64(arg1
);
40 static inline void tcg_gen_op1i(int opc
, TCGArg arg1
)
43 *gen_opparam_ptr
++ = arg1
;
46 static inline void tcg_gen_op2_i32(int 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(int 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(int 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(int 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(int opc
, TCGArg arg1
, TCGArg arg2
)
77 *gen_opparam_ptr
++ = arg1
;
78 *gen_opparam_ptr
++ = arg2
;
81 static inline void tcg_gen_op3_i32(int 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(int 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(int opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
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(int opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
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(int opc
, TCGv_i32 val
, TCGv_ptr base
,
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(int opc
, TCGv_i64 val
, TCGv_ptr base
,
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(int opc
, TCGv_i64 val
, TCGv_i32 addr
,
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(int opc
, TCGv_i64 val
, TCGv_i64 addr
,
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(int 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(int 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(int 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(int 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(int 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(int 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(int 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(int 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(int 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(int 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(int 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(int 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_op6ii_i32(int opc
, TCGv_i32 arg1
, TCGv_i32 arg2
,
284 TCGv_i32 arg3
, TCGv_i32 arg4
, TCGArg arg5
,
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
++ = arg5
;
293 *gen_opparam_ptr
++ = arg6
;
296 static inline void tcg_gen_op6ii_i64(int opc
, TCGv_i64 arg1
, TCGv_i64 arg2
,
297 TCGv_i64 arg3
, TCGv_i64 arg4
, TCGArg arg5
,
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
++ = arg5
;
306 *gen_opparam_ptr
++ = arg6
;
309 static inline void gen_set_label(int n
)
311 tcg_gen_op1i(INDEX_op_set_label
, n
);
314 static inline void tcg_gen_br(int label
)
316 tcg_gen_op1i(INDEX_op_br
, label
);
319 static inline void tcg_gen_mov_i32(TCGv_i32 ret
, TCGv_i32 arg
)
321 if (!TCGV_EQUAL_I32(ret
, arg
))
322 tcg_gen_op2_i32(INDEX_op_mov_i32
, ret
, arg
);
325 static inline void tcg_gen_movi_i32(TCGv_i32 ret
, int32_t arg
)
327 tcg_gen_op2i_i32(INDEX_op_movi_i32
, ret
, arg
);
331 static inline void tcg_gen_helperN(void *func
, int flags
, int sizemask
,
332 TCGArg ret
, int nargs
, TCGArg
*args
)
335 fn
= tcg_const_ptr((tcg_target_long
)func
);
336 tcg_gen_callN(&tcg_ctx
, fn
, flags
, sizemask
, ret
,
338 tcg_temp_free_ptr(fn
);
341 /* FIXME: Should this be pure? */
342 static inline void tcg_gen_helper64(void *func
, TCGv_i64 ret
,
343 TCGv_i64 a
, TCGv_i64 b
)
347 fn
= tcg_const_ptr((tcg_target_long
)func
);
348 args
[0] = GET_TCGV_I64(a
);
349 args
[1] = GET_TCGV_I64(b
);
350 tcg_gen_callN(&tcg_ctx
, fn
, 0, 7, GET_TCGV_I64(ret
), 2, args
);
351 tcg_temp_free_ptr(fn
);
356 static inline void tcg_gen_ld8u_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
358 tcg_gen_ldst_op_i32(INDEX_op_ld8u_i32
, ret
, arg2
, offset
);
361 static inline void tcg_gen_ld8s_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
363 tcg_gen_ldst_op_i32(INDEX_op_ld8s_i32
, ret
, arg2
, offset
);
366 static inline void tcg_gen_ld16u_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
368 tcg_gen_ldst_op_i32(INDEX_op_ld16u_i32
, ret
, arg2
, offset
);
371 static inline void tcg_gen_ld16s_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
373 tcg_gen_ldst_op_i32(INDEX_op_ld16s_i32
, ret
, arg2
, offset
);
376 static inline void tcg_gen_ld_i32(TCGv_i32 ret
, TCGv_ptr arg2
, tcg_target_long offset
)
378 tcg_gen_ldst_op_i32(INDEX_op_ld_i32
, ret
, arg2
, offset
);
381 static inline void tcg_gen_st8_i32(TCGv_i32 arg1
, TCGv_ptr arg2
, tcg_target_long offset
)
383 tcg_gen_ldst_op_i32(INDEX_op_st8_i32
, arg1
, arg2
, offset
);
386 static inline void tcg_gen_st16_i32(TCGv_i32 arg1
, TCGv_ptr arg2
, tcg_target_long offset
)
388 tcg_gen_ldst_op_i32(INDEX_op_st16_i32
, arg1
, arg2
, offset
);
391 static inline void tcg_gen_st_i32(TCGv_i32 arg1
, TCGv_ptr arg2
, tcg_target_long offset
)
393 tcg_gen_ldst_op_i32(INDEX_op_st_i32
, arg1
, arg2
, offset
);
396 static inline void tcg_gen_add_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
398 tcg_gen_op3_i32(INDEX_op_add_i32
, ret
, arg1
, arg2
);
401 static inline void tcg_gen_addi_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
403 /* some cases can be optimized here */
405 tcg_gen_mov_i32(ret
, arg1
);
407 TCGv_i32 t0
= tcg_const_i32(arg2
);
408 tcg_gen_add_i32(ret
, arg1
, t0
);
409 tcg_temp_free_i32(t0
);
413 static inline void tcg_gen_sub_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
415 tcg_gen_op3_i32(INDEX_op_sub_i32
, ret
, arg1
, arg2
);
418 static inline void tcg_gen_subfi_i32(TCGv_i32 ret
, int32_t arg1
, TCGv_i32 arg2
)
420 TCGv_i32 t0
= tcg_const_i32(arg1
);
421 tcg_gen_sub_i32(ret
, t0
, arg2
);
422 tcg_temp_free_i32(t0
);
425 static inline void tcg_gen_subi_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
427 /* some cases can be optimized here */
429 tcg_gen_mov_i32(ret
, arg1
);
431 TCGv_i32 t0
= tcg_const_i32(arg2
);
432 tcg_gen_sub_i32(ret
, arg1
, t0
);
433 tcg_temp_free_i32(t0
);
437 static inline void tcg_gen_and_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
439 if (TCGV_EQUAL_I32(arg1
, arg2
)) {
440 tcg_gen_mov_i32(ret
, arg1
);
442 tcg_gen_op3_i32(INDEX_op_and_i32
, ret
, arg1
, arg2
);
446 static inline void tcg_gen_andi_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
448 /* some cases can be optimized here */
450 tcg_gen_movi_i32(ret
, 0);
451 } else if (arg2
== 0xffffffff) {
452 tcg_gen_mov_i32(ret
, arg1
);
454 TCGv_i32 t0
= tcg_const_i32(arg2
);
455 tcg_gen_and_i32(ret
, arg1
, t0
);
456 tcg_temp_free_i32(t0
);
460 static inline void tcg_gen_or_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
462 if (TCGV_EQUAL_I32(arg1
, arg2
)) {
463 tcg_gen_mov_i32(ret
, arg1
);
465 tcg_gen_op3_i32(INDEX_op_or_i32
, ret
, arg1
, arg2
);
469 static inline void tcg_gen_ori_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
471 /* some cases can be optimized here */
472 if (arg2
== 0xffffffff) {
473 tcg_gen_movi_i32(ret
, 0xffffffff);
474 } else if (arg2
== 0) {
475 tcg_gen_mov_i32(ret
, arg1
);
477 TCGv_i32 t0
= tcg_const_i32(arg2
);
478 tcg_gen_or_i32(ret
, arg1
, t0
);
479 tcg_temp_free_i32(t0
);
483 static inline void tcg_gen_xor_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
485 if (TCGV_EQUAL_I32(arg1
, arg2
)) {
486 tcg_gen_movi_i32(ret
, 0);
488 tcg_gen_op3_i32(INDEX_op_xor_i32
, ret
, arg1
, arg2
);
492 static inline void tcg_gen_xori_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
494 /* some cases can be optimized here */
496 tcg_gen_mov_i32(ret
, arg1
);
498 TCGv_i32 t0
= tcg_const_i32(arg2
);
499 tcg_gen_xor_i32(ret
, arg1
, t0
);
500 tcg_temp_free_i32(t0
);
504 static inline void tcg_gen_shl_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
506 tcg_gen_op3_i32(INDEX_op_shl_i32
, ret
, arg1
, arg2
);
509 static inline void tcg_gen_shli_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
512 tcg_gen_mov_i32(ret
, arg1
);
514 TCGv_i32 t0
= tcg_const_i32(arg2
);
515 tcg_gen_shl_i32(ret
, arg1
, t0
);
516 tcg_temp_free_i32(t0
);
520 static inline void tcg_gen_shr_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
522 tcg_gen_op3_i32(INDEX_op_shr_i32
, ret
, arg1
, arg2
);
525 static inline void tcg_gen_shri_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
528 tcg_gen_mov_i32(ret
, arg1
);
530 TCGv_i32 t0
= tcg_const_i32(arg2
);
531 tcg_gen_shr_i32(ret
, arg1
, t0
);
532 tcg_temp_free_i32(t0
);
536 static inline void tcg_gen_sar_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
538 tcg_gen_op3_i32(INDEX_op_sar_i32
, ret
, arg1
, arg2
);
541 static inline void tcg_gen_sari_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
544 tcg_gen_mov_i32(ret
, arg1
);
546 TCGv_i32 t0
= tcg_const_i32(arg2
);
547 tcg_gen_sar_i32(ret
, arg1
, t0
);
548 tcg_temp_free_i32(t0
);
552 static inline void tcg_gen_brcond_i32(int cond
, TCGv_i32 arg1
, TCGv_i32 arg2
,
555 tcg_gen_op4ii_i32(INDEX_op_brcond_i32
, arg1
, arg2
, cond
, label_index
);
558 static inline void tcg_gen_brcondi_i32(int cond
, TCGv_i32 arg1
, int32_t arg2
,
561 TCGv_i32 t0
= tcg_const_i32(arg2
);
562 tcg_gen_brcond_i32(cond
, arg1
, t0
, label_index
);
563 tcg_temp_free_i32(t0
);
566 static inline void tcg_gen_mul_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
568 tcg_gen_op3_i32(INDEX_op_mul_i32
, ret
, arg1
, arg2
);
571 static inline void tcg_gen_muli_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
573 TCGv_i32 t0
= tcg_const_i32(arg2
);
574 tcg_gen_mul_i32(ret
, arg1
, t0
);
575 tcg_temp_free_i32(t0
);
578 #ifdef TCG_TARGET_HAS_div_i32
579 static inline void tcg_gen_div_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
581 tcg_gen_op3_i32(INDEX_op_div_i32
, ret
, arg1
, arg2
);
584 static inline void tcg_gen_rem_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
586 tcg_gen_op3_i32(INDEX_op_rem_i32
, ret
, arg1
, arg2
);
589 static inline void tcg_gen_divu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
591 tcg_gen_op3_i32(INDEX_op_divu_i32
, ret
, arg1
, arg2
);
594 static inline void tcg_gen_remu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
596 tcg_gen_op3_i32(INDEX_op_remu_i32
, ret
, arg1
, arg2
);
599 static inline void tcg_gen_div_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
602 t0
= tcg_temp_new_i32();
603 tcg_gen_sari_i32(t0
, arg1
, 31);
604 tcg_gen_op5_i32(INDEX_op_div2_i32
, ret
, t0
, arg1
, t0
, arg2
);
605 tcg_temp_free_i32(t0
);
608 static inline void tcg_gen_rem_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
611 t0
= tcg_temp_new_i32();
612 tcg_gen_sari_i32(t0
, arg1
, 31);
613 tcg_gen_op5_i32(INDEX_op_div2_i32
, t0
, ret
, arg1
, t0
, arg2
);
614 tcg_temp_free_i32(t0
);
617 static inline void tcg_gen_divu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
620 t0
= tcg_temp_new_i32();
621 tcg_gen_movi_i32(t0
, 0);
622 tcg_gen_op5_i32(INDEX_op_divu2_i32
, ret
, t0
, arg1
, t0
, arg2
);
623 tcg_temp_free_i32(t0
);
626 static inline void tcg_gen_remu_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
629 t0
= tcg_temp_new_i32();
630 tcg_gen_movi_i32(t0
, 0);
631 tcg_gen_op5_i32(INDEX_op_divu2_i32
, t0
, ret
, arg1
, t0
, arg2
);
632 tcg_temp_free_i32(t0
);
636 #if TCG_TARGET_REG_BITS == 32
638 static inline void tcg_gen_mov_i64(TCGv_i64 ret
, TCGv_i64 arg
)
640 if (!TCGV_EQUAL_I64(ret
, arg
)) {
641 tcg_gen_mov_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
642 tcg_gen_mov_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg
));
646 static inline void tcg_gen_movi_i64(TCGv_i64 ret
, int64_t arg
)
648 tcg_gen_movi_i32(TCGV_LOW(ret
), arg
);
649 tcg_gen_movi_i32(TCGV_HIGH(ret
), arg
>> 32);
652 static inline void tcg_gen_ld8u_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
653 tcg_target_long offset
)
655 tcg_gen_ld8u_i32(TCGV_LOW(ret
), arg2
, offset
);
656 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
659 static inline void tcg_gen_ld8s_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
660 tcg_target_long offset
)
662 tcg_gen_ld8s_i32(TCGV_LOW(ret
), arg2
, offset
);
663 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_HIGH(ret
), 31);
666 static inline void tcg_gen_ld16u_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
667 tcg_target_long offset
)
669 tcg_gen_ld16u_i32(TCGV_LOW(ret
), arg2
, offset
);
670 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
673 static inline void tcg_gen_ld16s_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
674 tcg_target_long offset
)
676 tcg_gen_ld16s_i32(TCGV_LOW(ret
), arg2
, offset
);
677 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
680 static inline void tcg_gen_ld32u_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
681 tcg_target_long offset
)
683 tcg_gen_ld_i32(TCGV_LOW(ret
), arg2
, offset
);
684 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
687 static inline void tcg_gen_ld32s_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
688 tcg_target_long offset
)
690 tcg_gen_ld_i32(TCGV_LOW(ret
), arg2
, offset
);
691 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
694 static inline void tcg_gen_ld_i64(TCGv_i64 ret
, TCGv_ptr arg2
,
695 tcg_target_long offset
)
697 /* since arg2 and ret have different types, they cannot be the
699 #ifdef TCG_TARGET_WORDS_BIGENDIAN
700 tcg_gen_ld_i32(TCGV_HIGH(ret
), arg2
, offset
);
701 tcg_gen_ld_i32(TCGV_LOW(ret
), arg2
, offset
+ 4);
703 tcg_gen_ld_i32(TCGV_LOW(ret
), arg2
, offset
);
704 tcg_gen_ld_i32(TCGV_HIGH(ret
), arg2
, offset
+ 4);
708 static inline void tcg_gen_st8_i64(TCGv_i64 arg1
, TCGv_ptr arg2
,
709 tcg_target_long offset
)
711 tcg_gen_st8_i32(TCGV_LOW(arg1
), arg2
, offset
);
714 static inline void tcg_gen_st16_i64(TCGv_i64 arg1
, TCGv_ptr arg2
,
715 tcg_target_long offset
)
717 tcg_gen_st16_i32(TCGV_LOW(arg1
), arg2
, offset
);
720 static inline void tcg_gen_st32_i64(TCGv_i64 arg1
, TCGv_ptr arg2
,
721 tcg_target_long offset
)
723 tcg_gen_st_i32(TCGV_LOW(arg1
), arg2
, offset
);
726 static inline void tcg_gen_st_i64(TCGv_i64 arg1
, TCGv_ptr arg2
,
727 tcg_target_long offset
)
729 #ifdef TCG_TARGET_WORDS_BIGENDIAN
730 tcg_gen_st_i32(TCGV_HIGH(arg1
), arg2
, offset
);
731 tcg_gen_st_i32(TCGV_LOW(arg1
), arg2
, offset
+ 4);
733 tcg_gen_st_i32(TCGV_LOW(arg1
), arg2
, offset
);
734 tcg_gen_st_i32(TCGV_HIGH(arg1
), arg2
, offset
+ 4);
738 static inline void tcg_gen_add_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
740 tcg_gen_op6_i32(INDEX_op_add2_i32
, TCGV_LOW(ret
), TCGV_HIGH(ret
),
741 TCGV_LOW(arg1
), TCGV_HIGH(arg1
), TCGV_LOW(arg2
),
745 static inline void tcg_gen_sub_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
747 tcg_gen_op6_i32(INDEX_op_sub2_i32
, TCGV_LOW(ret
), TCGV_HIGH(ret
),
748 TCGV_LOW(arg1
), TCGV_HIGH(arg1
), TCGV_LOW(arg2
),
752 static inline void tcg_gen_and_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
754 tcg_gen_and_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
755 tcg_gen_and_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
758 static inline void tcg_gen_andi_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
760 tcg_gen_andi_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), arg2
);
761 tcg_gen_andi_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), arg2
>> 32);
764 static inline void tcg_gen_or_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
766 tcg_gen_or_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
767 tcg_gen_or_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
770 static inline void tcg_gen_ori_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
772 tcg_gen_ori_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), arg2
);
773 tcg_gen_ori_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), arg2
>> 32);
776 static inline void tcg_gen_xor_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
778 tcg_gen_xor_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), TCGV_LOW(arg2
));
779 tcg_gen_xor_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), TCGV_HIGH(arg2
));
782 static inline void tcg_gen_xori_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
784 tcg_gen_xori_i32(TCGV_LOW(ret
), TCGV_LOW(arg1
), arg2
);
785 tcg_gen_xori_i32(TCGV_HIGH(ret
), TCGV_HIGH(arg1
), arg2
>> 32);
788 /* XXX: use generic code when basic block handling is OK or CPU
789 specific code (x86) */
790 static inline void tcg_gen_shl_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
792 tcg_gen_helper64(tcg_helper_shl_i64
, ret
, arg1
, arg2
);
795 static inline void tcg_gen_shli_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
797 tcg_gen_shifti_i64(ret
, arg1
, arg2
, 0, 0);
800 static inline void tcg_gen_shr_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
802 tcg_gen_helper64(tcg_helper_shr_i64
, ret
, arg1
, arg2
);
805 static inline void tcg_gen_shri_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
807 tcg_gen_shifti_i64(ret
, arg1
, arg2
, 1, 0);
810 static inline void tcg_gen_sar_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
812 tcg_gen_helper64(tcg_helper_sar_i64
, ret
, arg1
, arg2
);
815 static inline void tcg_gen_sari_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
817 tcg_gen_shifti_i64(ret
, arg1
, arg2
, 1, 1);
820 static inline void tcg_gen_brcond_i64(int cond
, TCGv_i64 arg1
, TCGv_i64 arg2
,
823 tcg_gen_op6ii_i32(INDEX_op_brcond2_i32
,
824 TCGV_LOW(arg1
), TCGV_HIGH(arg1
), TCGV_LOW(arg2
),
825 TCGV_HIGH(arg2
), cond
, label_index
);
828 static inline void tcg_gen_mul_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
833 t0
= tcg_temp_new_i64();
834 t1
= tcg_temp_new_i32();
836 tcg_gen_op4_i32(INDEX_op_mulu2_i32
, TCGV_LOW(t0
), TCGV_HIGH(t0
),
837 TCGV_LOW(arg1
), TCGV_LOW(arg2
));
839 tcg_gen_mul_i32(t1
, TCGV_LOW(arg1
), TCGV_HIGH(arg2
));
840 tcg_gen_add_i32(TCGV_HIGH(t0
), TCGV_HIGH(t0
), t1
);
841 tcg_gen_mul_i32(t1
, TCGV_HIGH(arg1
), TCGV_LOW(arg2
));
842 tcg_gen_add_i32(TCGV_HIGH(t0
), TCGV_HIGH(t0
), t1
);
844 tcg_gen_mov_i64(ret
, t0
);
845 tcg_temp_free_i64(t0
);
846 tcg_temp_free_i32(t1
);
849 static inline void tcg_gen_div_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
851 tcg_gen_helper64(tcg_helper_div_i64
, ret
, arg1
, arg2
);
854 static inline void tcg_gen_rem_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
856 tcg_gen_helper64(tcg_helper_rem_i64
, ret
, arg1
, arg2
);
859 static inline void tcg_gen_divu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
861 tcg_gen_helper64(tcg_helper_divu_i64
, ret
, arg1
, arg2
);
864 static inline void tcg_gen_remu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
866 tcg_gen_helper64(tcg_helper_remu_i64
, ret
, arg1
, arg2
);
871 static inline void tcg_gen_mov_i64(TCGv_i64 ret
, TCGv_i64 arg
)
873 if (!TCGV_EQUAL_I64(ret
, arg
))
874 tcg_gen_op2_i64(INDEX_op_mov_i64
, ret
, arg
);
877 static inline void tcg_gen_movi_i64(TCGv_i64 ret
, int64_t arg
)
879 tcg_gen_op2i_i64(INDEX_op_movi_i64
, ret
, arg
);
882 static inline void tcg_gen_ld8u_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
883 tcg_target_long offset
)
885 tcg_gen_ldst_op_i64(INDEX_op_ld8u_i64
, ret
, arg2
, offset
);
888 static inline void tcg_gen_ld8s_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
889 tcg_target_long offset
)
891 tcg_gen_ldst_op_i64(INDEX_op_ld8s_i64
, ret
, arg2
, offset
);
894 static inline void tcg_gen_ld16u_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
895 tcg_target_long offset
)
897 tcg_gen_ldst_op_i64(INDEX_op_ld16u_i64
, ret
, arg2
, offset
);
900 static inline void tcg_gen_ld16s_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
901 tcg_target_long offset
)
903 tcg_gen_ldst_op_i64(INDEX_op_ld16s_i64
, ret
, arg2
, offset
);
906 static inline void tcg_gen_ld32u_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
907 tcg_target_long offset
)
909 tcg_gen_ldst_op_i64(INDEX_op_ld32u_i64
, ret
, arg2
, offset
);
912 static inline void tcg_gen_ld32s_i64(TCGv_i64 ret
, TCGv_i64 arg2
,
913 tcg_target_long offset
)
915 tcg_gen_ldst_op_i64(INDEX_op_ld32s_i64
, ret
, arg2
, offset
);
918 static inline void tcg_gen_ld_i64(TCGv_i64 ret
, TCGv_i64 arg2
, tcg_target_long offset
)
920 tcg_gen_ldst_op_i64(INDEX_op_ld_i64
, ret
, arg2
, offset
);
923 static inline void tcg_gen_st8_i64(TCGv_i64 arg1
, TCGv_i64 arg2
,
924 tcg_target_long offset
)
926 tcg_gen_ldst_op_i64(INDEX_op_st8_i64
, arg1
, arg2
, offset
);
929 static inline void tcg_gen_st16_i64(TCGv_i64 arg1
, TCGv_i64 arg2
,
930 tcg_target_long offset
)
932 tcg_gen_ldst_op_i64(INDEX_op_st16_i64
, arg1
, arg2
, offset
);
935 static inline void tcg_gen_st32_i64(TCGv_i64 arg1
, TCGv_i64 arg2
,
936 tcg_target_long offset
)
938 tcg_gen_ldst_op_i64(INDEX_op_st32_i64
, arg1
, arg2
, offset
);
941 static inline void tcg_gen_st_i64(TCGv_i64 arg1
, TCGv_i64 arg2
, tcg_target_long offset
)
943 tcg_gen_ldst_op_i64(INDEX_op_st_i64
, arg1
, arg2
, offset
);
946 static inline void tcg_gen_add_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
948 tcg_gen_op3_i64(INDEX_op_add_i64
, ret
, arg1
, arg2
);
951 static inline void tcg_gen_sub_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
953 tcg_gen_op3_i64(INDEX_op_sub_i64
, ret
, arg1
, arg2
);
956 static inline void tcg_gen_and_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
958 if (TCGV_EQUAL_I64(arg1
, arg2
)) {
959 tcg_gen_mov_i64(ret
, arg1
);
961 tcg_gen_op3_i64(INDEX_op_and_i64
, ret
, arg1
, arg2
);
965 static inline void tcg_gen_andi_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
967 TCGv_i64 t0
= tcg_const_i64(arg2
);
968 tcg_gen_and_i64(ret
, arg1
, t0
);
969 tcg_temp_free_i64(t0
);
972 static inline void tcg_gen_or_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
974 if (TCGV_EQUAL_I64(arg1
, arg2
)) {
975 tcg_gen_mov_i64(ret
, arg1
);
977 tcg_gen_op3_i64(INDEX_op_or_i64
, ret
, arg1
, arg2
);
981 static inline void tcg_gen_ori_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
983 TCGv_i64 t0
= tcg_const_i64(arg2
);
984 tcg_gen_or_i64(ret
, arg1
, t0
);
985 tcg_temp_free_i64(t0
);
988 static inline void tcg_gen_xor_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
990 if (TCGV_EQUAL_I64(arg1
, arg2
)) {
991 tcg_gen_movi_i64(ret
, 0);
993 tcg_gen_op3_i64(INDEX_op_xor_i64
, ret
, arg1
, arg2
);
997 static inline void tcg_gen_xori_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
999 TCGv_i64 t0
= tcg_const_i64(arg2
);
1000 tcg_gen_xor_i64(ret
, arg1
, t0
);
1001 tcg_temp_free_i64(t0
);
1004 static inline void tcg_gen_shl_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1006 tcg_gen_op3_i64(INDEX_op_shl_i64
, ret
, arg1
, arg2
);
1009 static inline void tcg_gen_shli_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1012 tcg_gen_mov_i64(ret
, arg1
);
1014 TCGv_i64 t0
= tcg_const_i64(arg2
);
1015 tcg_gen_shl_i64(ret
, arg1
, t0
);
1016 tcg_temp_free_i64(t0
);
1020 static inline void tcg_gen_shr_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1022 tcg_gen_op3_i64(INDEX_op_shr_i64
, ret
, arg1
, arg2
);
1025 static inline void tcg_gen_shri_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1028 tcg_gen_mov_i64(ret
, arg1
);
1030 TCGv_i64 t0
= tcg_const_i64(arg2
);
1031 tcg_gen_shr_i64(ret
, arg1
, t0
);
1032 tcg_temp_free_i64(t0
);
1036 static inline void tcg_gen_sar_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1038 tcg_gen_op3_i64(INDEX_op_sar_i64
, ret
, arg1
, arg2
);
1041 static inline void tcg_gen_sari_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1044 tcg_gen_mov_i64(ret
, arg1
);
1046 TCGv_i64 t0
= tcg_const_i64(arg2
);
1047 tcg_gen_sar_i64(ret
, arg1
, t0
);
1048 tcg_temp_free_i64(t0
);
1052 static inline void tcg_gen_brcond_i64(int cond
, TCGv_i64 arg1
, TCGv_i64 arg2
,
1055 tcg_gen_op4ii_i64(INDEX_op_brcond_i64
, arg1
, arg2
, cond
, label_index
);
1058 static inline void tcg_gen_mul_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1060 tcg_gen_op3_i64(INDEX_op_mul_i64
, ret
, arg1
, arg2
);
1063 #ifdef TCG_TARGET_HAS_div_i64
1064 static inline void tcg_gen_div_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1066 tcg_gen_op3_i64(INDEX_op_div_i64
, ret
, arg1
, arg2
);
1069 static inline void tcg_gen_rem_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1071 tcg_gen_op3_i64(INDEX_op_rem_i64
, ret
, arg1
, arg2
);
1074 static inline void tcg_gen_divu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1076 tcg_gen_op3_i64(INDEX_op_divu_i64
, ret
, arg1
, arg2
);
1079 static inline void tcg_gen_remu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1081 tcg_gen_op3_i64(INDEX_op_remu_i64
, ret
, arg1
, arg2
);
1084 static inline void tcg_gen_div_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1087 t0
= tcg_temp_new_i64();
1088 tcg_gen_sari_i64(t0
, arg1
, 63);
1089 tcg_gen_op5_i64(INDEX_op_div2_i64
, ret
, t0
, arg1
, t0
, arg2
);
1090 tcg_temp_free_i64(t0
);
1093 static inline void tcg_gen_rem_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1096 t0
= tcg_temp_new_i64();
1097 tcg_gen_sari_i64(t0
, arg1
, 63);
1098 tcg_gen_op5_i64(INDEX_op_div2_i64
, t0
, ret
, arg1
, t0
, arg2
);
1099 tcg_temp_free_i64(t0
);
1102 static inline void tcg_gen_divu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1105 t0
= tcg_temp_new_i64();
1106 tcg_gen_movi_i64(t0
, 0);
1107 tcg_gen_op5_i64(INDEX_op_divu2_i64
, ret
, t0
, arg1
, t0
, arg2
);
1108 tcg_temp_free_i64(t0
);
1111 static inline void tcg_gen_remu_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1114 t0
= tcg_temp_new_i64();
1115 tcg_gen_movi_i64(t0
, 0);
1116 tcg_gen_op5_i64(INDEX_op_divu2_i64
, t0
, ret
, arg1
, t0
, arg2
);
1117 tcg_temp_free_i64(t0
);
1123 static inline void tcg_gen_addi_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1125 /* some cases can be optimized here */
1127 tcg_gen_mov_i64(ret
, arg1
);
1129 TCGv_i64 t0
= tcg_const_i64(arg2
);
1130 tcg_gen_add_i64(ret
, arg1
, t0
);
1131 tcg_temp_free_i64(t0
);
1135 static inline void tcg_gen_subfi_i64(TCGv_i64 ret
, int64_t arg1
, TCGv_i64 arg2
)
1137 TCGv_i64 t0
= tcg_const_i64(arg1
);
1138 tcg_gen_sub_i64(ret
, t0
, arg2
);
1139 tcg_temp_free_i64(t0
);
1142 static inline void tcg_gen_subi_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1144 /* some cases can be optimized here */
1146 tcg_gen_mov_i64(ret
, arg1
);
1148 TCGv_i64 t0
= tcg_const_i64(arg2
);
1149 tcg_gen_sub_i64(ret
, arg1
, t0
);
1150 tcg_temp_free_i64(t0
);
1153 static inline void tcg_gen_brcondi_i64(int cond
, TCGv_i64 arg1
, int64_t arg2
,
1156 TCGv_i64 t0
= tcg_const_i64(arg2
);
1157 tcg_gen_brcond_i64(cond
, arg1
, t0
, label_index
);
1158 tcg_temp_free_i64(t0
);
1161 static inline void tcg_gen_muli_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1163 TCGv_i64 t0
= tcg_const_i64(arg2
);
1164 tcg_gen_mul_i64(ret
, arg1
, t0
);
1165 tcg_temp_free_i64(t0
);
1169 /***************************************/
1170 /* optional operations */
1172 static inline void tcg_gen_ext8s_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1174 #ifdef TCG_TARGET_HAS_ext8s_i32
1175 tcg_gen_op2_i32(INDEX_op_ext8s_i32
, ret
, arg
);
1177 tcg_gen_shli_i32(ret
, arg
, 24);
1178 tcg_gen_sari_i32(ret
, ret
, 24);
1182 static inline void tcg_gen_ext16s_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1184 #ifdef TCG_TARGET_HAS_ext16s_i32
1185 tcg_gen_op2_i32(INDEX_op_ext16s_i32
, ret
, arg
);
1187 tcg_gen_shli_i32(ret
, arg
, 16);
1188 tcg_gen_sari_i32(ret
, ret
, 16);
1192 /* These are currently just for convenience.
1193 We assume a target will recognise these automatically . */
1194 static inline void tcg_gen_ext8u_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1196 tcg_gen_andi_i32(ret
, arg
, 0xffu
);
1199 static inline void tcg_gen_ext16u_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1201 tcg_gen_andi_i32(ret
, arg
, 0xffffu
);
1204 /* Note: we assume the two high bytes are set to zero */
1205 static inline void tcg_gen_bswap16_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1207 #ifdef TCG_TARGET_HAS_bswap16_i32
1208 tcg_gen_op2_i32(INDEX_op_bswap16_i32
, ret
, arg
);
1211 t0
= tcg_temp_new_i32();
1212 t1
= tcg_temp_new_i32();
1214 tcg_gen_shri_i32(t0
, arg
, 8);
1215 tcg_gen_andi_i32(t1
, arg
, 0x000000ff);
1216 tcg_gen_shli_i32(t1
, t1
, 8);
1217 tcg_gen_or_i32(ret
, t0
, t1
);
1218 tcg_temp_free_i32(t0
);
1219 tcg_temp_free_i32(t1
);
1223 static inline void tcg_gen_bswap_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1225 #ifdef TCG_TARGET_HAS_bswap_i32
1226 tcg_gen_op2_i32(INDEX_op_bswap_i32
, ret
, arg
);
1229 t0
= tcg_temp_new_i32();
1230 t1
= tcg_temp_new_i32();
1232 tcg_gen_shli_i32(t0
, arg
, 24);
1234 tcg_gen_andi_i32(t1
, arg
, 0x0000ff00);
1235 tcg_gen_shli_i32(t1
, t1
, 8);
1236 tcg_gen_or_i32(t0
, t0
, t1
);
1238 tcg_gen_shri_i32(t1
, arg
, 8);
1239 tcg_gen_andi_i32(t1
, t1
, 0x0000ff00);
1240 tcg_gen_or_i32(t0
, t0
, t1
);
1242 tcg_gen_shri_i32(t1
, arg
, 24);
1243 tcg_gen_or_i32(ret
, t0
, t1
);
1244 tcg_temp_free_i32(t0
);
1245 tcg_temp_free_i32(t1
);
1249 #if TCG_TARGET_REG_BITS == 32
1250 static inline void tcg_gen_ext8s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1252 tcg_gen_ext8s_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1253 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1256 static inline void tcg_gen_ext16s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1258 tcg_gen_ext16s_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1259 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1262 static inline void tcg_gen_ext32s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1264 tcg_gen_mov_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1265 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1268 static inline void tcg_gen_ext8u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1270 tcg_gen_ext8u_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1271 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1274 static inline void tcg_gen_ext16u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1276 tcg_gen_ext16u_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1277 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1280 static inline void tcg_gen_ext32u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1282 tcg_gen_mov_i32(TCGV_LOW(ret
), TCGV_LOW(arg
));
1283 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1286 static inline void tcg_gen_trunc_i64_i32(TCGv_i32 ret
, TCGv_i64 arg
)
1288 tcg_gen_mov_i32(ret
, TCGV_LOW(arg
));
1291 static inline void tcg_gen_extu_i32_i64(TCGv_i64 ret
, TCGv_i32 arg
)
1293 tcg_gen_mov_i32(TCGV_LOW(ret
), arg
);
1294 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1297 static inline void tcg_gen_ext_i32_i64(TCGv_i64 ret
, TCGv_i32 arg
)
1299 tcg_gen_mov_i32(TCGV_LOW(ret
), arg
);
1300 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1303 static inline void tcg_gen_bswap_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1306 t0
= tcg_temp_new_i32();
1307 t1
= tcg_temp_new_i32();
1309 tcg_gen_bswap_i32(t0
, TCGV_LOW(arg
));
1310 tcg_gen_bswap_i32(t1
, TCGV_HIGH(arg
));
1311 tcg_gen_mov_i32(TCGV_LOW(ret
), t1
);
1312 tcg_gen_mov_i32(TCGV_HIGH(ret
), t0
);
1313 tcg_temp_free_i32(t0
);
1314 tcg_temp_free_i32(t1
);
1318 static inline void tcg_gen_ext8s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1320 #ifdef TCG_TARGET_HAS_ext8s_i64
1321 tcg_gen_op2_i64(INDEX_op_ext8s_i64
, ret
, arg
);
1323 tcg_gen_shli_i64(ret
, arg
, 56);
1324 tcg_gen_sari_i64(ret
, ret
, 56);
1328 static inline void tcg_gen_ext16s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1330 #ifdef TCG_TARGET_HAS_ext16s_i64
1331 tcg_gen_op2_i64(INDEX_op_ext16s_i64
, ret
, arg
);
1333 tcg_gen_shli_i64(ret
, arg
, 48);
1334 tcg_gen_sari_i64(ret
, ret
, 48);
1338 static inline void tcg_gen_ext32s_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1340 #ifdef TCG_TARGET_HAS_ext32s_i64
1341 tcg_gen_op2_i64(INDEX_op_ext32s_i64
, ret
, arg
);
1343 tcg_gen_shli_i64(ret
, arg
, 32);
1344 tcg_gen_sari_i64(ret
, ret
, 32);
1348 static inline void tcg_gen_ext8u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1350 tcg_gen_andi_i64(ret
, arg
, 0xffu
);
1353 static inline void tcg_gen_ext16u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1355 tcg_gen_andi_i64(ret
, arg
, 0xffffu
);
1358 static inline void tcg_gen_ext32u_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1360 tcg_gen_andi_i64(ret
, arg
, 0xffffffffu
);
1363 /* Note: we assume the target supports move between 32 and 64 bit
1364 registers. This will probably break MIPS64 targets. */
1365 static inline void tcg_gen_trunc_i64_i32(TCGv_i32 ret
, TCGv_i64 arg
)
1367 tcg_gen_mov_i32(ret
, MAKE_TCGV_I32(GET_TCGV_I64(arg
)));
1370 /* Note: we assume the target supports move between 32 and 64 bit
1372 static inline void tcg_gen_extu_i32_i64(TCGv_i64 ret
, TCGv_i32 arg
)
1374 tcg_gen_andi_i64(ret
, MAKE_TCGV_I64(GET_TCGV_I32(arg
)), 0xffffffffu
);
1377 /* Note: we assume the target supports move between 32 and 64 bit
1379 static inline void tcg_gen_ext_i32_i64(TCGv_i64 ret
, TCGv_i32 arg
)
1381 tcg_gen_ext32s_i64(ret
, MAKE_TCGV_I64(GET_TCGV_I32(arg
)));
1384 static inline void tcg_gen_bswap_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1386 #ifdef TCG_TARGET_HAS_bswap_i64
1387 tcg_gen_op2_i64(INDEX_op_bswap_i64
, ret
, arg
);
1390 t0
= tcg_temp_new_i32();
1391 t1
= tcg_temp_new_i32();
1393 tcg_gen_shli_i64(t0
, arg
, 56);
1395 tcg_gen_andi_i64(t1
, arg
, 0x0000ff00);
1396 tcg_gen_shli_i64(t1
, t1
, 40);
1397 tcg_gen_or_i64(t0
, t0
, t1
);
1399 tcg_gen_andi_i64(t1
, arg
, 0x00ff0000);
1400 tcg_gen_shli_i64(t1
, t1
, 24);
1401 tcg_gen_or_i64(t0
, t0
, t1
);
1403 tcg_gen_andi_i64(t1
, arg
, 0xff000000);
1404 tcg_gen_shli_i64(t1
, t1
, 8);
1405 tcg_gen_or_i64(t0
, t0
, t1
);
1407 tcg_gen_shri_i64(t1
, arg
, 8);
1408 tcg_gen_andi_i64(t1
, t1
, 0xff000000);
1409 tcg_gen_or_i64(t0
, t0
, t1
);
1411 tcg_gen_shri_i64(t1
, arg
, 24);
1412 tcg_gen_andi_i64(t1
, t1
, 0x00ff0000);
1413 tcg_gen_or_i64(t0
, t0
, t1
);
1415 tcg_gen_shri_i64(t1
, arg
, 40);
1416 tcg_gen_andi_i64(t1
, t1
, 0x0000ff00);
1417 tcg_gen_or_i64(t0
, t0
, t1
);
1419 tcg_gen_shri_i64(t1
, arg
, 56);
1420 tcg_gen_or_i64(ret
, t0
, t1
);
1421 tcg_temp_free_i32(t0
);
1422 tcg_temp_free_i32(t1
);
1428 static inline void tcg_gen_neg_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1430 #ifdef TCG_TARGET_HAS_neg_i32
1431 tcg_gen_op2_i32(INDEX_op_neg_i32
, ret
, arg
);
1433 TCGv_i32 t0
= tcg_const_i32(0);
1434 tcg_gen_sub_i32(ret
, t0
, arg
);
1435 tcg_temp_free_i32(t0
);
1439 static inline void tcg_gen_neg_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1441 #ifdef TCG_TARGET_HAS_neg_i64
1442 tcg_gen_op2_i64(INDEX_op_neg_i64
, ret
, arg
);
1444 TCGv_i64 t0
= tcg_const_i64(0);
1445 tcg_gen_sub_i64(ret
, t0
, arg
);
1446 tcg_temp_free_i64(t0
);
1450 static inline void tcg_gen_not_i32(TCGv_i32 ret
, TCGv_i32 arg
)
1452 #ifdef TCG_TARGET_HAS_not_i32
1453 tcg_gen_op2_i32(INDEX_op_not_i32
, ret
, arg
);
1455 tcg_gen_xori_i32(ret
, arg
, -1);
1459 static inline void tcg_gen_not_i64(TCGv_i64 ret
, TCGv_i64 arg
)
1461 #ifdef TCG_TARGET_HAS_not_i64
1462 tcg_gen_op2_i64(INDEX_op_not_i64
, ret
, arg
);
1464 tcg_gen_xori_i64(ret
, arg
, -1);
1468 static inline void tcg_gen_discard_i32(TCGv_i32 arg
)
1470 tcg_gen_op1_i32(INDEX_op_discard
, arg
);
1473 #if TCG_TARGET_REG_BITS == 32
1474 static inline void tcg_gen_discard_i64(TCGv_i64 arg
)
1476 tcg_gen_discard_i32(TCGV_LOW(arg
));
1477 tcg_gen_discard_i32(TCGV_HIGH(arg
));
1480 static inline void tcg_gen_discard_i64(TCGv_i64 arg
)
1482 tcg_gen_op1_i64(INDEX_op_discard
, arg
);
1486 static inline void tcg_gen_concat_i32_i64(TCGv_i64 dest
, TCGv_i32 low
, TCGv_i32 high
)
1488 #if TCG_TARGET_REG_BITS == 32
1489 tcg_gen_mov_i32(TCGV_LOW(dest
), low
);
1490 tcg_gen_mov_i32(TCGV_HIGH(dest
), high
);
1492 TCGv_i64 tmp
= tcg_temp_new_i64();
1493 /* This extension is only needed for type correctness.
1494 We may be able to do better given target specific information. */
1495 tcg_gen_extu_i32_i64(tmp
, high
);
1496 tcg_gen_shli_i64(tmp
, tmp
, 32);
1497 tcg_gen_extu_i32_i64(dest
, low
);
1498 tcg_gen_or_i64(dest
, dest
, tmp
);
1499 tcg_temp_free_i64(tmp
);
1503 static inline void tcg_gen_concat32_i64(TCGv_i64 dest
, TCGv_i64 low
, TCGv_i64 high
)
1505 #if TCG_TARGET_REG_BITS == 32
1506 tcg_gen_concat_i32_i64(dest
, TCGV_LOW(low
), TCGV_LOW(high
));
1508 TCGv_i64 tmp
= tcg_temp_new_i64();
1509 tcg_gen_ext32u_i64(dest
, low
);
1510 tcg_gen_shli_i64(tmp
, high
, 32);
1511 tcg_gen_or_i64(dest
, dest
, tmp
);
1512 tcg_temp_free_i64(tmp
);
1516 static inline void tcg_gen_andc_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1519 t0
= tcg_temp_new_i32();
1520 tcg_gen_not_i32(t0
, arg2
);
1521 tcg_gen_and_i32(ret
, arg1
, t0
);
1522 tcg_temp_free_i32(t0
);
1525 static inline void tcg_gen_andc_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1528 t0
= tcg_temp_new_i64();
1529 tcg_gen_not_i64(t0
, arg2
);
1530 tcg_gen_and_i64(ret
, arg1
, t0
);
1531 tcg_temp_free_i64(t0
);
1534 static inline void tcg_gen_eqv_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1536 tcg_gen_xor_i32(ret
, arg1
, arg2
);
1537 tcg_gen_not_i32(ret
, ret
);
1540 static inline void tcg_gen_eqv_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1542 tcg_gen_xor_i64(ret
, arg1
, arg2
);
1543 tcg_gen_not_i64(ret
, ret
);
1546 static inline void tcg_gen_nand_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1548 tcg_gen_and_i32(ret
, arg1
, arg2
);
1549 tcg_gen_not_i32(ret
, ret
);
1552 static inline void tcg_gen_nand_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1554 tcg_gen_and_i64(ret
, arg1
, arg2
);
1555 tcg_gen_not_i64(ret
, ret
);
1558 static inline void tcg_gen_nor_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1560 tcg_gen_or_i32(ret
, arg1
, arg2
);
1561 tcg_gen_not_i32(ret
, ret
);
1564 static inline void tcg_gen_nor_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1566 tcg_gen_or_i64(ret
, arg1
, arg2
);
1567 tcg_gen_not_i64(ret
, ret
);
1570 static inline void tcg_gen_orc_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1573 t0
= tcg_temp_new_i32();
1574 tcg_gen_not_i32(t0
, arg2
);
1575 tcg_gen_or_i32(ret
, arg1
, t0
);
1576 tcg_temp_free_i32(t0
);
1579 static inline void tcg_gen_orc_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1582 t0
= tcg_temp_new_i64();
1583 tcg_gen_not_i64(t0
, arg2
);
1584 tcg_gen_or_i64(ret
, arg1
, t0
);
1585 tcg_temp_free_i64(t0
);
1588 static inline void tcg_gen_rotl_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1590 #ifdef TCG_TARGET_HAS_rot_i32
1591 tcg_gen_op3_i32(INDEX_op_rotl_i32
, ret
, arg1
, arg2
);
1595 t0
= tcg_temp_new_i32();
1596 t1
= tcg_temp_new_i32();
1597 tcg_gen_shl_i32(t0
, arg1
, arg2
);
1598 tcg_gen_subfi_i32(t1
, 32, arg2
);
1599 tcg_gen_shr_i32(t1
, arg1
, t1
);
1600 tcg_gen_or_i32(ret
, t0
, t1
);
1601 tcg_temp_free_i32(t0
);
1602 tcg_temp_free_i32(t1
);
1606 static inline void tcg_gen_rotl_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1608 #ifdef TCG_TARGET_HAS_rot_i64
1609 tcg_gen_op3_i64(INDEX_op_rotl_i64
, ret
, arg1
, arg2
);
1613 t0
= tcg_temp_new_i64();
1614 t1
= tcg_temp_new_i64();
1615 tcg_gen_shl_i64(t0
, arg1
, arg2
);
1616 tcg_gen_subfi_i64(t1
, 64, arg2
);
1617 tcg_gen_shr_i64(t1
, arg1
, t1
);
1618 tcg_gen_or_i64(ret
, t0
, t1
);
1619 tcg_temp_free_i64(t0
);
1620 tcg_temp_free_i64(t1
);
1624 static inline void tcg_gen_rotli_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
1626 /* some cases can be optimized here */
1628 tcg_gen_mov_i32(ret
, arg1
);
1630 #ifdef TCG_TARGET_HAS_rot_i32
1631 TCGv_i32 t0
= tcg_const_i32(arg2
);
1632 tcg_gen_rotl_i32(ret
, arg1
, t0
);
1633 tcg_temp_free_i32(t0
);
1636 t0
= tcg_temp_new_i32();
1637 t1
= tcg_temp_new_i32();
1638 tcg_gen_shli_i32(t0
, arg1
, arg2
);
1639 tcg_gen_shri_i32(t1
, arg1
, 32 - arg2
);
1640 tcg_gen_or_i32(ret
, t0
, t1
);
1641 tcg_temp_free_i32(t0
);
1642 tcg_temp_free_i32(t1
);
1647 static inline void tcg_gen_rotli_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1649 /* some cases can be optimized here */
1651 tcg_gen_mov_i64(ret
, arg1
);
1653 #ifdef TCG_TARGET_HAS_rot_i64
1654 TCGv_i64 t0
= tcg_const_i64(arg2
);
1655 tcg_gen_rotl_i64(ret
, arg1
, t0
);
1656 tcg_temp_free_i64(t0
);
1659 t0
= tcg_temp_new_i64();
1660 t1
= tcg_temp_new_i64();
1661 tcg_gen_shli_i64(t0
, arg1
, arg2
);
1662 tcg_gen_shri_i64(t1
, arg1
, 64 - arg2
);
1663 tcg_gen_or_i64(ret
, t0
, t1
);
1664 tcg_temp_free_i64(t0
);
1665 tcg_temp_free_i64(t1
);
1670 static inline void tcg_gen_rotr_i32(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
1672 #ifdef TCG_TARGET_HAS_rot_i32
1673 tcg_gen_op3_i32(INDEX_op_rotr_i32
, ret
, arg1
, arg2
);
1677 t0
= tcg_temp_new_i32();
1678 t1
= tcg_temp_new_i32();
1679 tcg_gen_shr_i32(t0
, arg1
, arg2
);
1680 tcg_gen_subfi_i32(t1
, 32, arg2
);
1681 tcg_gen_shl_i32(t1
, arg1
, t1
);
1682 tcg_gen_or_i32(ret
, t0
, t1
);
1683 tcg_temp_free_i32(t0
);
1684 tcg_temp_free_i32(t1
);
1688 static inline void tcg_gen_rotr_i64(TCGv_i64 ret
, TCGv_i64 arg1
, TCGv_i64 arg2
)
1690 #ifdef TCG_TARGET_HAS_rot_i64
1691 tcg_gen_op3_i64(INDEX_op_rotr_i64
, ret
, arg1
, arg2
);
1695 t0
= tcg_temp_new_i64();
1696 t1
= tcg_temp_new_i64();
1697 tcg_gen_shl_i64(t0
, arg1
, arg2
);
1698 tcg_gen_subfi_i64(t1
, 64, arg2
);
1699 tcg_gen_shl_i64(t1
, arg1
, t1
);
1700 tcg_gen_or_i64(ret
, t0
, t1
);
1701 tcg_temp_free_i64(t0
);
1702 tcg_temp_free_i64(t1
);
1706 static inline void tcg_gen_rotri_i32(TCGv_i32 ret
, TCGv_i32 arg1
, int32_t arg2
)
1708 /* some cases can be optimized here */
1710 tcg_gen_mov_i32(ret
, arg1
);
1712 tcg_gen_rotli_i32(ret
, arg1
, 32 - arg2
);
1716 static inline void tcg_gen_rotri_i64(TCGv_i64 ret
, TCGv_i64 arg1
, int64_t arg2
)
1718 /* some cases can be optimized here */
1720 tcg_gen_mov_i64(ret
, arg1
);
1722 tcg_gen_rotli_i64(ret
, arg1
, 64 - arg2
);
1726 /***************************************/
1727 /* QEMU specific operations. Their type depend on the QEMU CPU
1729 #ifndef TARGET_LONG_BITS
1730 #error must include QEMU headers
1733 #if TARGET_LONG_BITS == 32
1734 #define TCGv TCGv_i32
1735 #define tcg_temp_new() tcg_temp_new_i32()
1736 #define tcg_global_reg_new tcg_global_reg_new_i32
1737 #define tcg_global_mem_new tcg_global_mem_new_i32
1738 #define tcg_temp_local_new() tcg_temp_local_new_i32()
1739 #define tcg_temp_free tcg_temp_free_i32
1740 #define tcg_gen_qemu_ldst_op tcg_gen_op3i_i32
1741 #define tcg_gen_qemu_ldst_op_i64 tcg_gen_qemu_ldst_op_i64_i32
1742 #define TCGV_UNUSED(x) TCGV_UNUSED_I32(x)
1743 #define TCGV_EQUAL(a, b) TCGV_EQUAL_I32(a, b)
1745 #define TCGv TCGv_i64
1746 #define tcg_temp_new() tcg_temp_new_i64()
1747 #define tcg_global_reg_new tcg_global_reg_new_i64
1748 #define tcg_global_mem_new tcg_global_mem_new_i64
1749 #define tcg_temp_local_new() tcg_temp_local_new_i64()
1750 #define tcg_temp_free tcg_temp_free_i64
1751 #define tcg_gen_qemu_ldst_op tcg_gen_op3i_i64
1752 #define tcg_gen_qemu_ldst_op_i64 tcg_gen_qemu_ldst_op_i64_i64
1753 #define TCGV_UNUSED(x) TCGV_UNUSED_I64(x)
1754 #define TCGV_EQUAL(a, b) TCGV_EQUAL_I64(a, b)
1757 /* debug info: write the PC of the corresponding QEMU CPU instruction */
1758 static inline void tcg_gen_debug_insn_start(uint64_t pc
)
1760 /* XXX: must really use a 32 bit size for TCGArg in all cases */
1761 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
1762 tcg_gen_op2ii(INDEX_op_debug_insn_start
,
1763 (uint32_t)(pc
), (uint32_t)(pc
>> 32));
1765 tcg_gen_op1i(INDEX_op_debug_insn_start
, pc
);
1769 static inline void tcg_gen_exit_tb(tcg_target_long val
)
1771 tcg_gen_op1i(INDEX_op_exit_tb
, val
);
1774 static inline void tcg_gen_goto_tb(int idx
)
1776 tcg_gen_op1i(INDEX_op_goto_tb
, idx
);
1779 #if TCG_TARGET_REG_BITS == 32
1780 static inline void tcg_gen_qemu_ld8u(TCGv ret
, TCGv addr
, int mem_index
)
1782 #if TARGET_LONG_BITS == 32
1783 tcg_gen_op3i_i32(INDEX_op_qemu_ld8u
, ret
, addr
, mem_index
);
1785 tcg_gen_op4i_i32(INDEX_op_qemu_ld8u
, TCGV_LOW(ret
), TCGV_LOW(addr
),
1786 TCGV_HIGH(addr
), mem_index
);
1787 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1791 static inline void tcg_gen_qemu_ld8s(TCGv ret
, TCGv addr
, int mem_index
)
1793 #if TARGET_LONG_BITS == 32
1794 tcg_gen_op3i_i32(INDEX_op_qemu_ld8s
, ret
, addr
, mem_index
);
1796 tcg_gen_op4i_i32(INDEX_op_qemu_ld8s
, TCGV_LOW(ret
), TCGV_LOW(addr
),
1797 TCGV_HIGH(addr
), mem_index
);
1798 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1802 static inline void tcg_gen_qemu_ld16u(TCGv ret
, TCGv addr
, int mem_index
)
1804 #if TARGET_LONG_BITS == 32
1805 tcg_gen_op3i_i32(INDEX_op_qemu_ld16u
, ret
, addr
, mem_index
);
1807 tcg_gen_op4i_i32(INDEX_op_qemu_ld16u
, TCGV_LOW(ret
), TCGV_LOW(addr
),
1808 TCGV_HIGH(addr
), mem_index
);
1809 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1813 static inline void tcg_gen_qemu_ld16s(TCGv ret
, TCGv addr
, int mem_index
)
1815 #if TARGET_LONG_BITS == 32
1816 tcg_gen_op3i_i32(INDEX_op_qemu_ld16s
, ret
, addr
, mem_index
);
1818 tcg_gen_op4i_i32(INDEX_op_qemu_ld16s
, TCGV_LOW(ret
), TCGV_LOW(addr
),
1819 TCGV_HIGH(addr
), mem_index
);
1820 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1824 static inline void tcg_gen_qemu_ld32u(TCGv ret
, TCGv addr
, int mem_index
)
1826 #if TARGET_LONG_BITS == 32
1827 tcg_gen_op3i_i32(INDEX_op_qemu_ld32u
, ret
, addr
, mem_index
);
1829 tcg_gen_op4i_i32(INDEX_op_qemu_ld32u
, TCGV_LOW(ret
), TCGV_LOW(addr
),
1830 TCGV_HIGH(addr
), mem_index
);
1831 tcg_gen_movi_i32(TCGV_HIGH(ret
), 0);
1835 static inline void tcg_gen_qemu_ld32s(TCGv ret
, TCGv addr
, int mem_index
)
1837 #if TARGET_LONG_BITS == 32
1838 tcg_gen_op3i_i32(INDEX_op_qemu_ld32u
, ret
, addr
, mem_index
);
1840 tcg_gen_op4i_i32(INDEX_op_qemu_ld32u
, TCGV_LOW(ret
), TCGV_LOW(addr
),
1841 TCGV_HIGH(addr
), mem_index
);
1842 tcg_gen_sari_i32(TCGV_HIGH(ret
), TCGV_LOW(ret
), 31);
1846 static inline void tcg_gen_qemu_ld64(TCGv_i64 ret
, TCGv addr
, int mem_index
)
1848 #if TARGET_LONG_BITS == 32
1849 tcg_gen_op4i_i32(INDEX_op_qemu_ld64
, TCGV_LOW(ret
), TCGV_HIGH(ret
), addr
, mem_index
);
1851 tcg_gen_op5i_i32(INDEX_op_qemu_ld64
, TCGV_LOW(ret
), TCGV_HIGH(ret
),
1852 TCGV_LOW(addr
), TCGV_HIGH(addr
), mem_index
);
1856 static inline void tcg_gen_qemu_st8(TCGv arg
, TCGv addr
, int mem_index
)
1858 #if TARGET_LONG_BITS == 32
1859 tcg_gen_op3i_i32(INDEX_op_qemu_st8
, arg
, addr
, mem_index
);
1861 tcg_gen_op4i_i32(INDEX_op_qemu_st8
, TCGV_LOW(arg
), TCGV_LOW(addr
),
1862 TCGV_HIGH(addr
), mem_index
);
1866 static inline void tcg_gen_qemu_st16(TCGv arg
, TCGv addr
, int mem_index
)
1868 #if TARGET_LONG_BITS == 32
1869 tcg_gen_op3i_i32(INDEX_op_qemu_st16
, arg
, addr
, mem_index
);
1871 tcg_gen_op4i_i32(INDEX_op_qemu_st16
, TCGV_LOW(arg
), TCGV_LOW(addr
),
1872 TCGV_HIGH(addr
), mem_index
);
1876 static inline void tcg_gen_qemu_st32(TCGv arg
, TCGv addr
, int mem_index
)
1878 #if TARGET_LONG_BITS == 32
1879 tcg_gen_op3i_i32(INDEX_op_qemu_st32
, arg
, addr
, mem_index
);
1881 tcg_gen_op4i_i32(INDEX_op_qemu_st32
, TCGV_LOW(arg
), TCGV_LOW(addr
),
1882 TCGV_HIGH(addr
), mem_index
);
1886 static inline void tcg_gen_qemu_st64(TCGv_i64 arg
, TCGv addr
, int mem_index
)
1888 #if TARGET_LONG_BITS == 32
1889 tcg_gen_op4i_i32(INDEX_op_qemu_st64
, TCGV_LOW(arg
), TCGV_HIGH(arg
), addr
,
1892 tcg_gen_op5i_i32(INDEX_op_qemu_st64
, TCGV_LOW(arg
), TCGV_HIGH(arg
),
1893 TCGV_LOW(addr
), TCGV_HIGH(addr
), mem_index
);
1897 #define tcg_gen_ld_ptr tcg_gen_ld_i32
1898 #define tcg_gen_discard_ptr tcg_gen_discard_i32
1900 #else /* TCG_TARGET_REG_BITS == 32 */
1902 static inline void tcg_gen_qemu_ld8u(TCGv ret
, TCGv addr
, int mem_index
)
1904 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld8u
, ret
, addr
, mem_index
);
1907 static inline void tcg_gen_qemu_ld8s(TCGv ret
, TCGv addr
, int mem_index
)
1909 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld8s
, ret
, addr
, mem_index
);
1912 static inline void tcg_gen_qemu_ld16u(TCGv ret
, TCGv addr
, int mem_index
)
1914 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld16u
, ret
, addr
, mem_index
);
1917 static inline void tcg_gen_qemu_ld16s(TCGv ret
, TCGv addr
, int mem_index
)
1919 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld16s
, ret
, addr
, mem_index
);
1922 static inline void tcg_gen_qemu_ld32u(TCGv ret
, TCGv addr
, int mem_index
)
1924 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32u
, ret
, addr
, mem_index
);
1927 static inline void tcg_gen_qemu_ld32s(TCGv ret
, TCGv addr
, int mem_index
)
1929 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32s
, ret
, addr
, mem_index
);
1932 static inline void tcg_gen_qemu_ld64(TCGv_i64 ret
, TCGv addr
, int mem_index
)
1934 tcg_gen_qemu_ldst_op_i64(INDEX_op_qemu_ld64
, ret
, addr
, mem_index
);
1937 static inline void tcg_gen_qemu_st8(TCGv arg
, TCGv addr
, int mem_index
)
1939 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st8
, arg
, addr
, mem_index
);
1942 static inline void tcg_gen_qemu_st16(TCGv arg
, TCGv addr
, int mem_index
)
1944 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st16
, arg
, addr
, mem_index
);
1947 static inline void tcg_gen_qemu_st32(TCGv arg
, TCGv addr
, int mem_index
)
1949 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st32
, arg
, addr
, mem_index
);
1952 static inline void tcg_gen_qemu_st64(TCGv_i64 arg
, TCGv addr
, int mem_index
)
1954 tcg_gen_qemu_ldst_op_i64(INDEX_op_qemu_st64
, arg
, addr
, mem_index
);
1957 #define tcg_gen_ld_ptr tcg_gen_ld_i64
1958 #define tcg_gen_discard_ptr tcg_gen_discard_i64
1960 #endif /* TCG_TARGET_REG_BITS != 32 */
1962 #if TARGET_LONG_BITS == 64
1963 #define TCG_TYPE_TL TCG_TYPE_I64
1964 #define tcg_gen_movi_tl tcg_gen_movi_i64
1965 #define tcg_gen_mov_tl tcg_gen_mov_i64
1966 #define tcg_gen_ld8u_tl tcg_gen_ld8u_i64
1967 #define tcg_gen_ld8s_tl tcg_gen_ld8s_i64
1968 #define tcg_gen_ld16u_tl tcg_gen_ld16u_i64
1969 #define tcg_gen_ld16s_tl tcg_gen_ld16s_i64
1970 #define tcg_gen_ld32u_tl tcg_gen_ld32u_i64
1971 #define tcg_gen_ld32s_tl tcg_gen_ld32s_i64
1972 #define tcg_gen_ld_tl tcg_gen_ld_i64
1973 #define tcg_gen_st8_tl tcg_gen_st8_i64
1974 #define tcg_gen_st16_tl tcg_gen_st16_i64
1975 #define tcg_gen_st32_tl tcg_gen_st32_i64
1976 #define tcg_gen_st_tl tcg_gen_st_i64
1977 #define tcg_gen_add_tl tcg_gen_add_i64
1978 #define tcg_gen_addi_tl tcg_gen_addi_i64
1979 #define tcg_gen_sub_tl tcg_gen_sub_i64
1980 #define tcg_gen_neg_tl tcg_gen_neg_i64
1981 #define tcg_gen_subfi_tl tcg_gen_subfi_i64
1982 #define tcg_gen_subi_tl tcg_gen_subi_i64
1983 #define tcg_gen_and_tl tcg_gen_and_i64
1984 #define tcg_gen_andi_tl tcg_gen_andi_i64
1985 #define tcg_gen_or_tl tcg_gen_or_i64
1986 #define tcg_gen_ori_tl tcg_gen_ori_i64
1987 #define tcg_gen_xor_tl tcg_gen_xor_i64
1988 #define tcg_gen_xori_tl tcg_gen_xori_i64
1989 #define tcg_gen_not_tl tcg_gen_not_i64
1990 #define tcg_gen_shl_tl tcg_gen_shl_i64
1991 #define tcg_gen_shli_tl tcg_gen_shli_i64
1992 #define tcg_gen_shr_tl tcg_gen_shr_i64
1993 #define tcg_gen_shri_tl tcg_gen_shri_i64
1994 #define tcg_gen_sar_tl tcg_gen_sar_i64
1995 #define tcg_gen_sari_tl tcg_gen_sari_i64
1996 #define tcg_gen_brcond_tl tcg_gen_brcond_i64
1997 #define tcg_gen_brcondi_tl tcg_gen_brcondi_i64
1998 #define tcg_gen_mul_tl tcg_gen_mul_i64
1999 #define tcg_gen_muli_tl tcg_gen_muli_i64
2000 #define tcg_gen_discard_tl tcg_gen_discard_i64
2001 #define tcg_gen_trunc_tl_i32 tcg_gen_trunc_i64_i32
2002 #define tcg_gen_trunc_i64_tl tcg_gen_mov_i64
2003 #define tcg_gen_extu_i32_tl tcg_gen_extu_i32_i64
2004 #define tcg_gen_ext_i32_tl tcg_gen_ext_i32_i64
2005 #define tcg_gen_extu_tl_i64 tcg_gen_mov_i64
2006 #define tcg_gen_ext_tl_i64 tcg_gen_mov_i64
2007 #define tcg_gen_ext8u_tl tcg_gen_ext8u_i64
2008 #define tcg_gen_ext8s_tl tcg_gen_ext8s_i64
2009 #define tcg_gen_ext16u_tl tcg_gen_ext16u_i64
2010 #define tcg_gen_ext16s_tl tcg_gen_ext16s_i64
2011 #define tcg_gen_ext32u_tl tcg_gen_ext32u_i64
2012 #define tcg_gen_ext32s_tl tcg_gen_ext32s_i64
2013 #define tcg_gen_concat_tl_i64 tcg_gen_concat32_i64
2014 #define tcg_gen_andc_tl tcg_gen_andc_i64
2015 #define tcg_gen_eqv_tl tcg_gen_eqv_i64
2016 #define tcg_gen_nand_tl tcg_gen_nand_i64
2017 #define tcg_gen_nor_tl tcg_gen_nor_i64
2018 #define tcg_gen_orc_tl tcg_gen_orc_i64
2019 #define tcg_gen_rotl_tl tcg_gen_rotl_i64
2020 #define tcg_gen_rotli_tl tcg_gen_rotli_i64
2021 #define tcg_gen_rotr_tl tcg_gen_rotr_i64
2022 #define tcg_gen_rotri_tl tcg_gen_rotri_i64
2023 #define tcg_const_tl tcg_const_i64
2024 #define tcg_const_local_tl tcg_const_local_i64
2026 #define TCG_TYPE_TL TCG_TYPE_I32
2027 #define tcg_gen_movi_tl tcg_gen_movi_i32
2028 #define tcg_gen_mov_tl tcg_gen_mov_i32
2029 #define tcg_gen_ld8u_tl tcg_gen_ld8u_i32
2030 #define tcg_gen_ld8s_tl tcg_gen_ld8s_i32
2031 #define tcg_gen_ld16u_tl tcg_gen_ld16u_i32
2032 #define tcg_gen_ld16s_tl tcg_gen_ld16s_i32
2033 #define tcg_gen_ld32u_tl tcg_gen_ld_i32
2034 #define tcg_gen_ld32s_tl tcg_gen_ld_i32
2035 #define tcg_gen_ld_tl tcg_gen_ld_i32
2036 #define tcg_gen_st8_tl tcg_gen_st8_i32
2037 #define tcg_gen_st16_tl tcg_gen_st16_i32
2038 #define tcg_gen_st32_tl tcg_gen_st_i32
2039 #define tcg_gen_st_tl tcg_gen_st_i32
2040 #define tcg_gen_add_tl tcg_gen_add_i32
2041 #define tcg_gen_addi_tl tcg_gen_addi_i32
2042 #define tcg_gen_sub_tl tcg_gen_sub_i32
2043 #define tcg_gen_neg_tl tcg_gen_neg_i32
2044 #define tcg_gen_subfi_tl tcg_gen_subfi_i32
2045 #define tcg_gen_subi_tl tcg_gen_subi_i32
2046 #define tcg_gen_and_tl tcg_gen_and_i32
2047 #define tcg_gen_andi_tl tcg_gen_andi_i32
2048 #define tcg_gen_or_tl tcg_gen_or_i32
2049 #define tcg_gen_ori_tl tcg_gen_ori_i32
2050 #define tcg_gen_xor_tl tcg_gen_xor_i32
2051 #define tcg_gen_xori_tl tcg_gen_xori_i32
2052 #define tcg_gen_not_tl tcg_gen_not_i32
2053 #define tcg_gen_shl_tl tcg_gen_shl_i32
2054 #define tcg_gen_shli_tl tcg_gen_shli_i32
2055 #define tcg_gen_shr_tl tcg_gen_shr_i32
2056 #define tcg_gen_shri_tl tcg_gen_shri_i32
2057 #define tcg_gen_sar_tl tcg_gen_sar_i32
2058 #define tcg_gen_sari_tl tcg_gen_sari_i32
2059 #define tcg_gen_brcond_tl tcg_gen_brcond_i32
2060 #define tcg_gen_brcondi_tl tcg_gen_brcondi_i32
2061 #define tcg_gen_mul_tl tcg_gen_mul_i32
2062 #define tcg_gen_muli_tl tcg_gen_muli_i32
2063 #define tcg_gen_discard_tl tcg_gen_discard_i32
2064 #define tcg_gen_trunc_tl_i32 tcg_gen_mov_i32
2065 #define tcg_gen_trunc_i64_tl tcg_gen_trunc_i64_i32
2066 #define tcg_gen_extu_i32_tl tcg_gen_mov_i32
2067 #define tcg_gen_ext_i32_tl tcg_gen_mov_i32
2068 #define tcg_gen_extu_tl_i64 tcg_gen_extu_i32_i64
2069 #define tcg_gen_ext_tl_i64 tcg_gen_ext_i32_i64
2070 #define tcg_gen_ext8u_tl tcg_gen_ext8u_i32
2071 #define tcg_gen_ext8s_tl tcg_gen_ext8s_i32
2072 #define tcg_gen_ext16u_tl tcg_gen_ext16u_i32
2073 #define tcg_gen_ext16s_tl tcg_gen_ext16s_i32
2074 #define tcg_gen_ext32u_tl tcg_gen_mov_i32
2075 #define tcg_gen_ext32s_tl tcg_gen_mov_i32
2076 #define tcg_gen_concat_tl_i64 tcg_gen_concat_i32_i64
2077 #define tcg_gen_andc_tl tcg_gen_andc_i32
2078 #define tcg_gen_eqv_tl tcg_gen_eqv_i32
2079 #define tcg_gen_nand_tl tcg_gen_nand_i32
2080 #define tcg_gen_nor_tl tcg_gen_nor_i32
2081 #define tcg_gen_orc_tl tcg_gen_orc_i32
2082 #define tcg_gen_rotl_tl tcg_gen_rotl_i32
2083 #define tcg_gen_rotli_tl tcg_gen_rotli_i32
2084 #define tcg_gen_rotr_tl tcg_gen_rotr_i32
2085 #define tcg_gen_rotri_tl tcg_gen_rotri_i32
2086 #define tcg_const_tl tcg_const_i32
2087 #define tcg_const_local_tl tcg_const_local_i32
2090 #if TCG_TARGET_REG_BITS == 32
2091 #define tcg_gen_add_ptr tcg_gen_add_i32
2092 #define tcg_gen_addi_ptr tcg_gen_addi_i32
2093 #define tcg_gen_ext_i32_ptr tcg_gen_mov_i32
2094 #else /* TCG_TARGET_REG_BITS == 32 */
2095 #define tcg_gen_add_ptr tcg_gen_add_i64
2096 #define tcg_gen_addi_ptr tcg_gen_addi_i64
2097 #define tcg_gen_ext_i32_ptr tcg_gen_ext_i32_i64
2098 #endif /* TCG_TARGET_REG_BITS != 32 */