tcg: generic support for conditional set
[qemu/aliguori-queue.git] / tcg / tcg-op.h
blob70a75a08f4abb86fc00fc43fe5c14aa830f96e30
1 /*
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
22 * THE SOFTWARE.
24 #include "tcg.h"
26 int gen_new_label(void);
28 static inline void tcg_gen_op1_i32(int opc, TCGv_i32 arg1)
30 *gen_opc_ptr++ = opc;
31 *gen_opparam_ptr++ = GET_TCGV_I32(arg1);
34 static inline void tcg_gen_op1_i64(int opc, TCGv_i64 arg1)
36 *gen_opc_ptr++ = opc;
37 *gen_opparam_ptr++ = GET_TCGV_I64(arg1);
40 static inline void tcg_gen_op1i(int opc, TCGArg arg1)
42 *gen_opc_ptr++ = opc;
43 *gen_opparam_ptr++ = arg1;
46 static inline void tcg_gen_op2_i32(int opc, TCGv_i32 arg1, TCGv_i32 arg2)
48 *gen_opc_ptr++ = opc;
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)
55 *gen_opc_ptr++ = opc;
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)
62 *gen_opc_ptr++ = opc;
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)
69 *gen_opc_ptr++ = opc;
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)
76 *gen_opc_ptr++ = opc;
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,
82 TCGv_i32 arg3)
84 *gen_opc_ptr++ = opc;
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,
91 TCGv_i64 arg3)
93 *gen_opc_ptr++ = opc;
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,
100 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(int opc, TCGv_i64 arg1, TCGv_i64 arg2,
109 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(int opc, TCGv_i32 val, TCGv_ptr base,
118 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(int opc, TCGv_i64 val, TCGv_ptr base,
127 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(int opc, TCGv_i64 val, TCGv_i32 addr,
136 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(int opc, TCGv_i64 val, TCGv_i64 addr,
145 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(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,
259 TCGv_i32 arg6)
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,
272 TCGv_i64 arg6)
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(int 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(int 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(int opc, TCGv_i32 arg1, TCGv_i32 arg2,
310 TCGv_i32 arg3, TCGv_i32 arg4, TCGArg arg5,
311 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(int opc, TCGv_i64 arg1, TCGv_i64 arg2,
323 TCGv_i64 arg3, TCGv_i64 arg4, TCGArg arg5,
324 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 /* helper calls */
357 static inline void tcg_gen_helperN(void *func, int flags, int sizemask,
358 TCGArg ret, int nargs, TCGArg *args)
360 TCGv_ptr fn;
361 fn = tcg_const_ptr((tcg_target_long)func);
362 tcg_gen_callN(&tcg_ctx, fn, flags, sizemask, ret,
363 nargs, args);
364 tcg_temp_free_ptr(fn);
367 /* FIXME: Should this be pure? */
368 static inline void tcg_gen_helper64(void *func, TCGv_i64 ret,
369 TCGv_i64 a, TCGv_i64 b)
371 TCGv_ptr fn;
372 TCGArg args[2];
373 fn = tcg_const_ptr((tcg_target_long)func);
374 args[0] = GET_TCGV_I64(a);
375 args[1] = GET_TCGV_I64(b);
376 tcg_gen_callN(&tcg_ctx, fn, 0, 7, GET_TCGV_I64(ret), 2, args);
377 tcg_temp_free_ptr(fn);
380 /* 32 bit ops */
382 static inline void tcg_gen_ld8u_i32(TCGv_i32 ret, TCGv_ptr arg2, tcg_target_long offset)
384 tcg_gen_ldst_op_i32(INDEX_op_ld8u_i32, ret, arg2, offset);
387 static inline void tcg_gen_ld8s_i32(TCGv_i32 ret, TCGv_ptr arg2, tcg_target_long offset)
389 tcg_gen_ldst_op_i32(INDEX_op_ld8s_i32, ret, arg2, offset);
392 static inline void tcg_gen_ld16u_i32(TCGv_i32 ret, TCGv_ptr arg2, tcg_target_long offset)
394 tcg_gen_ldst_op_i32(INDEX_op_ld16u_i32, ret, arg2, offset);
397 static inline void tcg_gen_ld16s_i32(TCGv_i32 ret, TCGv_ptr arg2, tcg_target_long offset)
399 tcg_gen_ldst_op_i32(INDEX_op_ld16s_i32, ret, arg2, offset);
402 static inline void tcg_gen_ld_i32(TCGv_i32 ret, TCGv_ptr arg2, tcg_target_long offset)
404 tcg_gen_ldst_op_i32(INDEX_op_ld_i32, ret, arg2, offset);
407 static inline void tcg_gen_st8_i32(TCGv_i32 arg1, TCGv_ptr arg2, tcg_target_long offset)
409 tcg_gen_ldst_op_i32(INDEX_op_st8_i32, arg1, arg2, offset);
412 static inline void tcg_gen_st16_i32(TCGv_i32 arg1, TCGv_ptr arg2, tcg_target_long offset)
414 tcg_gen_ldst_op_i32(INDEX_op_st16_i32, arg1, arg2, offset);
417 static inline void tcg_gen_st_i32(TCGv_i32 arg1, TCGv_ptr arg2, tcg_target_long offset)
419 tcg_gen_ldst_op_i32(INDEX_op_st_i32, arg1, arg2, offset);
422 static inline void tcg_gen_add_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
424 tcg_gen_op3_i32(INDEX_op_add_i32, ret, arg1, arg2);
427 static inline void tcg_gen_addi_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
429 /* some cases can be optimized here */
430 if (arg2 == 0) {
431 tcg_gen_mov_i32(ret, arg1);
432 } else {
433 TCGv_i32 t0 = tcg_const_i32(arg2);
434 tcg_gen_add_i32(ret, arg1, t0);
435 tcg_temp_free_i32(t0);
439 static inline void tcg_gen_sub_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
441 tcg_gen_op3_i32(INDEX_op_sub_i32, ret, arg1, arg2);
444 static inline void tcg_gen_subfi_i32(TCGv_i32 ret, int32_t arg1, TCGv_i32 arg2)
446 TCGv_i32 t0 = tcg_const_i32(arg1);
447 tcg_gen_sub_i32(ret, t0, arg2);
448 tcg_temp_free_i32(t0);
451 static inline void tcg_gen_subi_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
453 /* some cases can be optimized here */
454 if (arg2 == 0) {
455 tcg_gen_mov_i32(ret, arg1);
456 } else {
457 TCGv_i32 t0 = tcg_const_i32(arg2);
458 tcg_gen_sub_i32(ret, arg1, t0);
459 tcg_temp_free_i32(t0);
463 static inline void tcg_gen_and_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
465 if (TCGV_EQUAL_I32(arg1, arg2)) {
466 tcg_gen_mov_i32(ret, arg1);
467 } else {
468 tcg_gen_op3_i32(INDEX_op_and_i32, ret, arg1, arg2);
472 static inline void tcg_gen_andi_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
474 /* some cases can be optimized here */
475 if (arg2 == 0) {
476 tcg_gen_movi_i32(ret, 0);
477 } else if (arg2 == 0xffffffff) {
478 tcg_gen_mov_i32(ret, arg1);
479 } else {
480 TCGv_i32 t0 = tcg_const_i32(arg2);
481 tcg_gen_and_i32(ret, arg1, t0);
482 tcg_temp_free_i32(t0);
486 static inline void tcg_gen_or_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
488 if (TCGV_EQUAL_I32(arg1, arg2)) {
489 tcg_gen_mov_i32(ret, arg1);
490 } else {
491 tcg_gen_op3_i32(INDEX_op_or_i32, ret, arg1, arg2);
495 static inline void tcg_gen_ori_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
497 /* some cases can be optimized here */
498 if (arg2 == 0xffffffff) {
499 tcg_gen_movi_i32(ret, 0xffffffff);
500 } else if (arg2 == 0) {
501 tcg_gen_mov_i32(ret, arg1);
502 } else {
503 TCGv_i32 t0 = tcg_const_i32(arg2);
504 tcg_gen_or_i32(ret, arg1, t0);
505 tcg_temp_free_i32(t0);
509 static inline void tcg_gen_xor_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
511 if (TCGV_EQUAL_I32(arg1, arg2)) {
512 tcg_gen_movi_i32(ret, 0);
513 } else {
514 tcg_gen_op3_i32(INDEX_op_xor_i32, ret, arg1, arg2);
518 static inline void tcg_gen_xori_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
520 /* some cases can be optimized here */
521 if (arg2 == 0) {
522 tcg_gen_mov_i32(ret, arg1);
523 } else {
524 TCGv_i32 t0 = tcg_const_i32(arg2);
525 tcg_gen_xor_i32(ret, arg1, t0);
526 tcg_temp_free_i32(t0);
530 static inline void tcg_gen_shl_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
532 tcg_gen_op3_i32(INDEX_op_shl_i32, ret, arg1, arg2);
535 static inline void tcg_gen_shli_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
537 if (arg2 == 0) {
538 tcg_gen_mov_i32(ret, arg1);
539 } else {
540 TCGv_i32 t0 = tcg_const_i32(arg2);
541 tcg_gen_shl_i32(ret, arg1, t0);
542 tcg_temp_free_i32(t0);
546 static inline void tcg_gen_shr_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
548 tcg_gen_op3_i32(INDEX_op_shr_i32, ret, arg1, arg2);
551 static inline void tcg_gen_shri_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
553 if (arg2 == 0) {
554 tcg_gen_mov_i32(ret, arg1);
555 } else {
556 TCGv_i32 t0 = tcg_const_i32(arg2);
557 tcg_gen_shr_i32(ret, arg1, t0);
558 tcg_temp_free_i32(t0);
562 static inline void tcg_gen_sar_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
564 tcg_gen_op3_i32(INDEX_op_sar_i32, ret, arg1, arg2);
567 static inline void tcg_gen_sari_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
569 if (arg2 == 0) {
570 tcg_gen_mov_i32(ret, arg1);
571 } else {
572 TCGv_i32 t0 = tcg_const_i32(arg2);
573 tcg_gen_sar_i32(ret, arg1, t0);
574 tcg_temp_free_i32(t0);
578 static inline void tcg_gen_brcond_i32(int cond, TCGv_i32 arg1, TCGv_i32 arg2,
579 int label_index)
581 tcg_gen_op4ii_i32(INDEX_op_brcond_i32, arg1, arg2, cond, label_index);
584 static inline void tcg_gen_brcondi_i32(int cond, TCGv_i32 arg1, int32_t arg2,
585 int label_index)
587 TCGv_i32 t0 = tcg_const_i32(arg2);
588 tcg_gen_brcond_i32(cond, arg1, t0, label_index);
589 tcg_temp_free_i32(t0);
592 static inline void tcg_gen_mul_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
594 tcg_gen_op3_i32(INDEX_op_mul_i32, ret, arg1, arg2);
597 static inline void tcg_gen_muli_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
599 TCGv_i32 t0 = tcg_const_i32(arg2);
600 tcg_gen_mul_i32(ret, arg1, t0);
601 tcg_temp_free_i32(t0);
604 #ifdef TCG_TARGET_HAS_div_i32
605 static inline void tcg_gen_div_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
607 tcg_gen_op3_i32(INDEX_op_div_i32, ret, arg1, arg2);
610 static inline void tcg_gen_rem_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
612 tcg_gen_op3_i32(INDEX_op_rem_i32, ret, arg1, arg2);
615 static inline void tcg_gen_divu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
617 tcg_gen_op3_i32(INDEX_op_divu_i32, ret, arg1, arg2);
620 static inline void tcg_gen_remu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
622 tcg_gen_op3_i32(INDEX_op_remu_i32, ret, arg1, arg2);
624 #else
625 static inline void tcg_gen_div_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
627 TCGv_i32 t0;
628 t0 = tcg_temp_new_i32();
629 tcg_gen_sari_i32(t0, arg1, 31);
630 tcg_gen_op5_i32(INDEX_op_div2_i32, ret, t0, arg1, t0, arg2);
631 tcg_temp_free_i32(t0);
634 static inline void tcg_gen_rem_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
636 TCGv_i32 t0;
637 t0 = tcg_temp_new_i32();
638 tcg_gen_sari_i32(t0, arg1, 31);
639 tcg_gen_op5_i32(INDEX_op_div2_i32, t0, ret, arg1, t0, arg2);
640 tcg_temp_free_i32(t0);
643 static inline void tcg_gen_divu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
645 TCGv_i32 t0;
646 t0 = tcg_temp_new_i32();
647 tcg_gen_movi_i32(t0, 0);
648 tcg_gen_op5_i32(INDEX_op_divu2_i32, ret, t0, arg1, t0, arg2);
649 tcg_temp_free_i32(t0);
652 static inline void tcg_gen_remu_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
654 TCGv_i32 t0;
655 t0 = tcg_temp_new_i32();
656 tcg_gen_movi_i32(t0, 0);
657 tcg_gen_op5_i32(INDEX_op_divu2_i32, t0, ret, arg1, t0, arg2);
658 tcg_temp_free_i32(t0);
660 #endif
662 #if TCG_TARGET_REG_BITS == 32
664 static inline void tcg_gen_mov_i64(TCGv_i64 ret, TCGv_i64 arg)
666 if (!TCGV_EQUAL_I64(ret, arg)) {
667 tcg_gen_mov_i32(TCGV_LOW(ret), TCGV_LOW(arg));
668 tcg_gen_mov_i32(TCGV_HIGH(ret), TCGV_HIGH(arg));
672 static inline void tcg_gen_movi_i64(TCGv_i64 ret, int64_t arg)
674 tcg_gen_movi_i32(TCGV_LOW(ret), arg);
675 tcg_gen_movi_i32(TCGV_HIGH(ret), arg >> 32);
678 static inline void tcg_gen_ld8u_i64(TCGv_i64 ret, TCGv_ptr arg2,
679 tcg_target_long offset)
681 tcg_gen_ld8u_i32(TCGV_LOW(ret), arg2, offset);
682 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
685 static inline void tcg_gen_ld8s_i64(TCGv_i64 ret, TCGv_ptr arg2,
686 tcg_target_long offset)
688 tcg_gen_ld8s_i32(TCGV_LOW(ret), arg2, offset);
689 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_HIGH(ret), 31);
692 static inline void tcg_gen_ld16u_i64(TCGv_i64 ret, TCGv_ptr arg2,
693 tcg_target_long offset)
695 tcg_gen_ld16u_i32(TCGV_LOW(ret), arg2, offset);
696 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
699 static inline void tcg_gen_ld16s_i64(TCGv_i64 ret, TCGv_ptr arg2,
700 tcg_target_long offset)
702 tcg_gen_ld16s_i32(TCGV_LOW(ret), arg2, offset);
703 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
706 static inline void tcg_gen_ld32u_i64(TCGv_i64 ret, TCGv_ptr arg2,
707 tcg_target_long offset)
709 tcg_gen_ld_i32(TCGV_LOW(ret), arg2, offset);
710 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
713 static inline void tcg_gen_ld32s_i64(TCGv_i64 ret, TCGv_ptr arg2,
714 tcg_target_long offset)
716 tcg_gen_ld_i32(TCGV_LOW(ret), arg2, offset);
717 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
720 static inline void tcg_gen_ld_i64(TCGv_i64 ret, TCGv_ptr arg2,
721 tcg_target_long offset)
723 /* since arg2 and ret have different types, they cannot be the
724 same temporary */
725 #ifdef TCG_TARGET_WORDS_BIGENDIAN
726 tcg_gen_ld_i32(TCGV_HIGH(ret), arg2, offset);
727 tcg_gen_ld_i32(TCGV_LOW(ret), arg2, offset + 4);
728 #else
729 tcg_gen_ld_i32(TCGV_LOW(ret), arg2, offset);
730 tcg_gen_ld_i32(TCGV_HIGH(ret), arg2, offset + 4);
731 #endif
734 static inline void tcg_gen_st8_i64(TCGv_i64 arg1, TCGv_ptr arg2,
735 tcg_target_long offset)
737 tcg_gen_st8_i32(TCGV_LOW(arg1), arg2, offset);
740 static inline void tcg_gen_st16_i64(TCGv_i64 arg1, TCGv_ptr arg2,
741 tcg_target_long offset)
743 tcg_gen_st16_i32(TCGV_LOW(arg1), arg2, offset);
746 static inline void tcg_gen_st32_i64(TCGv_i64 arg1, TCGv_ptr arg2,
747 tcg_target_long offset)
749 tcg_gen_st_i32(TCGV_LOW(arg1), arg2, offset);
752 static inline void tcg_gen_st_i64(TCGv_i64 arg1, TCGv_ptr arg2,
753 tcg_target_long offset)
755 #ifdef TCG_TARGET_WORDS_BIGENDIAN
756 tcg_gen_st_i32(TCGV_HIGH(arg1), arg2, offset);
757 tcg_gen_st_i32(TCGV_LOW(arg1), arg2, offset + 4);
758 #else
759 tcg_gen_st_i32(TCGV_LOW(arg1), arg2, offset);
760 tcg_gen_st_i32(TCGV_HIGH(arg1), arg2, offset + 4);
761 #endif
764 static inline void tcg_gen_add_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
766 tcg_gen_op6_i32(INDEX_op_add2_i32, TCGV_LOW(ret), TCGV_HIGH(ret),
767 TCGV_LOW(arg1), TCGV_HIGH(arg1), TCGV_LOW(arg2),
768 TCGV_HIGH(arg2));
771 static inline void tcg_gen_sub_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
773 tcg_gen_op6_i32(INDEX_op_sub2_i32, TCGV_LOW(ret), TCGV_HIGH(ret),
774 TCGV_LOW(arg1), TCGV_HIGH(arg1), TCGV_LOW(arg2),
775 TCGV_HIGH(arg2));
778 static inline void tcg_gen_and_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
780 tcg_gen_and_i32(TCGV_LOW(ret), TCGV_LOW(arg1), TCGV_LOW(arg2));
781 tcg_gen_and_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), TCGV_HIGH(arg2));
784 static inline void tcg_gen_andi_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
786 tcg_gen_andi_i32(TCGV_LOW(ret), TCGV_LOW(arg1), arg2);
787 tcg_gen_andi_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), arg2 >> 32);
790 static inline void tcg_gen_or_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
792 tcg_gen_or_i32(TCGV_LOW(ret), TCGV_LOW(arg1), TCGV_LOW(arg2));
793 tcg_gen_or_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), TCGV_HIGH(arg2));
796 static inline void tcg_gen_ori_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
798 tcg_gen_ori_i32(TCGV_LOW(ret), TCGV_LOW(arg1), arg2);
799 tcg_gen_ori_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), arg2 >> 32);
802 static inline void tcg_gen_xor_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
804 tcg_gen_xor_i32(TCGV_LOW(ret), TCGV_LOW(arg1), TCGV_LOW(arg2));
805 tcg_gen_xor_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), TCGV_HIGH(arg2));
808 static inline void tcg_gen_xori_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
810 tcg_gen_xori_i32(TCGV_LOW(ret), TCGV_LOW(arg1), arg2);
811 tcg_gen_xori_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), arg2 >> 32);
814 /* XXX: use generic code when basic block handling is OK or CPU
815 specific code (x86) */
816 static inline void tcg_gen_shl_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
818 tcg_gen_helper64(tcg_helper_shl_i64, ret, arg1, arg2);
821 static inline void tcg_gen_shli_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
823 tcg_gen_shifti_i64(ret, arg1, arg2, 0, 0);
826 static inline void tcg_gen_shr_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
828 tcg_gen_helper64(tcg_helper_shr_i64, ret, arg1, arg2);
831 static inline void tcg_gen_shri_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
833 tcg_gen_shifti_i64(ret, arg1, arg2, 1, 0);
836 static inline void tcg_gen_sar_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
838 tcg_gen_helper64(tcg_helper_sar_i64, ret, arg1, arg2);
841 static inline void tcg_gen_sari_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
843 tcg_gen_shifti_i64(ret, arg1, arg2, 1, 1);
846 static inline void tcg_gen_brcond_i64(int cond, TCGv_i64 arg1, TCGv_i64 arg2,
847 int label_index)
849 tcg_gen_op6ii_i32(INDEX_op_brcond2_i32,
850 TCGV_LOW(arg1), TCGV_HIGH(arg1), TCGV_LOW(arg2),
851 TCGV_HIGH(arg2), cond, label_index);
854 static inline void tcg_gen_mul_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
856 TCGv_i64 t0;
857 TCGv_i32 t1;
859 t0 = tcg_temp_new_i64();
860 t1 = tcg_temp_new_i32();
862 tcg_gen_op4_i32(INDEX_op_mulu2_i32, TCGV_LOW(t0), TCGV_HIGH(t0),
863 TCGV_LOW(arg1), TCGV_LOW(arg2));
865 tcg_gen_mul_i32(t1, TCGV_LOW(arg1), TCGV_HIGH(arg2));
866 tcg_gen_add_i32(TCGV_HIGH(t0), TCGV_HIGH(t0), t1);
867 tcg_gen_mul_i32(t1, TCGV_HIGH(arg1), TCGV_LOW(arg2));
868 tcg_gen_add_i32(TCGV_HIGH(t0), TCGV_HIGH(t0), t1);
870 tcg_gen_mov_i64(ret, t0);
871 tcg_temp_free_i64(t0);
872 tcg_temp_free_i32(t1);
875 static inline void tcg_gen_div_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
877 tcg_gen_helper64(tcg_helper_div_i64, ret, arg1, arg2);
880 static inline void tcg_gen_rem_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
882 tcg_gen_helper64(tcg_helper_rem_i64, ret, arg1, arg2);
885 static inline void tcg_gen_divu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
887 tcg_gen_helper64(tcg_helper_divu_i64, ret, arg1, arg2);
890 static inline void tcg_gen_remu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
892 tcg_gen_helper64(tcg_helper_remu_i64, ret, arg1, arg2);
895 #else
897 static inline void tcg_gen_mov_i64(TCGv_i64 ret, TCGv_i64 arg)
899 if (!TCGV_EQUAL_I64(ret, arg))
900 tcg_gen_op2_i64(INDEX_op_mov_i64, ret, arg);
903 static inline void tcg_gen_movi_i64(TCGv_i64 ret, int64_t arg)
905 tcg_gen_op2i_i64(INDEX_op_movi_i64, ret, arg);
908 static inline void tcg_gen_ld8u_i64(TCGv_i64 ret, TCGv_i64 arg2,
909 tcg_target_long offset)
911 tcg_gen_ldst_op_i64(INDEX_op_ld8u_i64, ret, arg2, offset);
914 static inline void tcg_gen_ld8s_i64(TCGv_i64 ret, TCGv_i64 arg2,
915 tcg_target_long offset)
917 tcg_gen_ldst_op_i64(INDEX_op_ld8s_i64, ret, arg2, offset);
920 static inline void tcg_gen_ld16u_i64(TCGv_i64 ret, TCGv_i64 arg2,
921 tcg_target_long offset)
923 tcg_gen_ldst_op_i64(INDEX_op_ld16u_i64, ret, arg2, offset);
926 static inline void tcg_gen_ld16s_i64(TCGv_i64 ret, TCGv_i64 arg2,
927 tcg_target_long offset)
929 tcg_gen_ldst_op_i64(INDEX_op_ld16s_i64, ret, arg2, offset);
932 static inline void tcg_gen_ld32u_i64(TCGv_i64 ret, TCGv_i64 arg2,
933 tcg_target_long offset)
935 tcg_gen_ldst_op_i64(INDEX_op_ld32u_i64, ret, arg2, offset);
938 static inline void tcg_gen_ld32s_i64(TCGv_i64 ret, TCGv_i64 arg2,
939 tcg_target_long offset)
941 tcg_gen_ldst_op_i64(INDEX_op_ld32s_i64, ret, arg2, offset);
944 static inline void tcg_gen_ld_i64(TCGv_i64 ret, TCGv_i64 arg2, tcg_target_long offset)
946 tcg_gen_ldst_op_i64(INDEX_op_ld_i64, ret, arg2, offset);
949 static inline void tcg_gen_st8_i64(TCGv_i64 arg1, TCGv_i64 arg2,
950 tcg_target_long offset)
952 tcg_gen_ldst_op_i64(INDEX_op_st8_i64, arg1, arg2, offset);
955 static inline void tcg_gen_st16_i64(TCGv_i64 arg1, TCGv_i64 arg2,
956 tcg_target_long offset)
958 tcg_gen_ldst_op_i64(INDEX_op_st16_i64, arg1, arg2, offset);
961 static inline void tcg_gen_st32_i64(TCGv_i64 arg1, TCGv_i64 arg2,
962 tcg_target_long offset)
964 tcg_gen_ldst_op_i64(INDEX_op_st32_i64, arg1, arg2, offset);
967 static inline void tcg_gen_st_i64(TCGv_i64 arg1, TCGv_i64 arg2, tcg_target_long offset)
969 tcg_gen_ldst_op_i64(INDEX_op_st_i64, arg1, arg2, offset);
972 static inline void tcg_gen_add_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
974 tcg_gen_op3_i64(INDEX_op_add_i64, ret, arg1, arg2);
977 static inline void tcg_gen_sub_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
979 tcg_gen_op3_i64(INDEX_op_sub_i64, ret, arg1, arg2);
982 static inline void tcg_gen_and_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
984 if (TCGV_EQUAL_I64(arg1, arg2)) {
985 tcg_gen_mov_i64(ret, arg1);
986 } else {
987 tcg_gen_op3_i64(INDEX_op_and_i64, ret, arg1, arg2);
991 static inline void tcg_gen_andi_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
993 TCGv_i64 t0 = tcg_const_i64(arg2);
994 tcg_gen_and_i64(ret, arg1, t0);
995 tcg_temp_free_i64(t0);
998 static inline void tcg_gen_or_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1000 if (TCGV_EQUAL_I64(arg1, arg2)) {
1001 tcg_gen_mov_i64(ret, arg1);
1002 } else {
1003 tcg_gen_op3_i64(INDEX_op_or_i64, ret, arg1, arg2);
1007 static inline void tcg_gen_ori_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1009 TCGv_i64 t0 = tcg_const_i64(arg2);
1010 tcg_gen_or_i64(ret, arg1, t0);
1011 tcg_temp_free_i64(t0);
1014 static inline void tcg_gen_xor_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1016 if (TCGV_EQUAL_I64(arg1, arg2)) {
1017 tcg_gen_movi_i64(ret, 0);
1018 } else {
1019 tcg_gen_op3_i64(INDEX_op_xor_i64, ret, arg1, arg2);
1023 static inline void tcg_gen_xori_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1025 TCGv_i64 t0 = tcg_const_i64(arg2);
1026 tcg_gen_xor_i64(ret, arg1, t0);
1027 tcg_temp_free_i64(t0);
1030 static inline void tcg_gen_shl_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1032 tcg_gen_op3_i64(INDEX_op_shl_i64, ret, arg1, arg2);
1035 static inline void tcg_gen_shli_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1037 if (arg2 == 0) {
1038 tcg_gen_mov_i64(ret, arg1);
1039 } else {
1040 TCGv_i64 t0 = tcg_const_i64(arg2);
1041 tcg_gen_shl_i64(ret, arg1, t0);
1042 tcg_temp_free_i64(t0);
1046 static inline void tcg_gen_shr_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1048 tcg_gen_op3_i64(INDEX_op_shr_i64, ret, arg1, arg2);
1051 static inline void tcg_gen_shri_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1053 if (arg2 == 0) {
1054 tcg_gen_mov_i64(ret, arg1);
1055 } else {
1056 TCGv_i64 t0 = tcg_const_i64(arg2);
1057 tcg_gen_shr_i64(ret, arg1, t0);
1058 tcg_temp_free_i64(t0);
1062 static inline void tcg_gen_sar_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1064 tcg_gen_op3_i64(INDEX_op_sar_i64, ret, arg1, arg2);
1067 static inline void tcg_gen_sari_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1069 if (arg2 == 0) {
1070 tcg_gen_mov_i64(ret, arg1);
1071 } else {
1072 TCGv_i64 t0 = tcg_const_i64(arg2);
1073 tcg_gen_sar_i64(ret, arg1, t0);
1074 tcg_temp_free_i64(t0);
1078 static inline void tcg_gen_brcond_i64(int cond, TCGv_i64 arg1, TCGv_i64 arg2,
1079 int label_index)
1081 tcg_gen_op4ii_i64(INDEX_op_brcond_i64, arg1, arg2, cond, label_index);
1084 static inline void tcg_gen_mul_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1086 tcg_gen_op3_i64(INDEX_op_mul_i64, ret, arg1, arg2);
1089 #ifdef TCG_TARGET_HAS_div_i64
1090 static inline void tcg_gen_div_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1092 tcg_gen_op3_i64(INDEX_op_div_i64, ret, arg1, arg2);
1095 static inline void tcg_gen_rem_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1097 tcg_gen_op3_i64(INDEX_op_rem_i64, ret, arg1, arg2);
1100 static inline void tcg_gen_divu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1102 tcg_gen_op3_i64(INDEX_op_divu_i64, ret, arg1, arg2);
1105 static inline void tcg_gen_remu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1107 tcg_gen_op3_i64(INDEX_op_remu_i64, ret, arg1, arg2);
1109 #else
1110 static inline void tcg_gen_div_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1112 TCGv_i64 t0;
1113 t0 = tcg_temp_new_i64();
1114 tcg_gen_sari_i64(t0, arg1, 63);
1115 tcg_gen_op5_i64(INDEX_op_div2_i64, ret, t0, arg1, t0, arg2);
1116 tcg_temp_free_i64(t0);
1119 static inline void tcg_gen_rem_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1121 TCGv_i64 t0;
1122 t0 = tcg_temp_new_i64();
1123 tcg_gen_sari_i64(t0, arg1, 63);
1124 tcg_gen_op5_i64(INDEX_op_div2_i64, t0, ret, arg1, t0, arg2);
1125 tcg_temp_free_i64(t0);
1128 static inline void tcg_gen_divu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1130 TCGv_i64 t0;
1131 t0 = tcg_temp_new_i64();
1132 tcg_gen_movi_i64(t0, 0);
1133 tcg_gen_op5_i64(INDEX_op_divu2_i64, ret, t0, arg1, t0, arg2);
1134 tcg_temp_free_i64(t0);
1137 static inline void tcg_gen_remu_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1139 TCGv_i64 t0;
1140 t0 = tcg_temp_new_i64();
1141 tcg_gen_movi_i64(t0, 0);
1142 tcg_gen_op5_i64(INDEX_op_divu2_i64, t0, ret, arg1, t0, arg2);
1143 tcg_temp_free_i64(t0);
1145 #endif
1147 #endif
1149 static inline void tcg_gen_addi_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1151 /* some cases can be optimized here */
1152 if (arg2 == 0) {
1153 tcg_gen_mov_i64(ret, arg1);
1154 } else {
1155 TCGv_i64 t0 = tcg_const_i64(arg2);
1156 tcg_gen_add_i64(ret, arg1, t0);
1157 tcg_temp_free_i64(t0);
1161 static inline void tcg_gen_subfi_i64(TCGv_i64 ret, int64_t arg1, TCGv_i64 arg2)
1163 TCGv_i64 t0 = tcg_const_i64(arg1);
1164 tcg_gen_sub_i64(ret, t0, arg2);
1165 tcg_temp_free_i64(t0);
1168 static inline void tcg_gen_subi_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1170 /* some cases can be optimized here */
1171 if (arg2 == 0) {
1172 tcg_gen_mov_i64(ret, arg1);
1173 } else {
1174 TCGv_i64 t0 = tcg_const_i64(arg2);
1175 tcg_gen_sub_i64(ret, arg1, t0);
1176 tcg_temp_free_i64(t0);
1179 static inline void tcg_gen_brcondi_i64(int cond, TCGv_i64 arg1, int64_t arg2,
1180 int label_index)
1182 TCGv_i64 t0 = tcg_const_i64(arg2);
1183 tcg_gen_brcond_i64(cond, arg1, t0, label_index);
1184 tcg_temp_free_i64(t0);
1187 static inline void tcg_gen_muli_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1189 TCGv_i64 t0 = tcg_const_i64(arg2);
1190 tcg_gen_mul_i64(ret, arg1, t0);
1191 tcg_temp_free_i64(t0);
1195 /***************************************/
1196 /* optional operations */
1198 static inline void tcg_gen_ext8s_i32(TCGv_i32 ret, TCGv_i32 arg)
1200 #ifdef TCG_TARGET_HAS_ext8s_i32
1201 tcg_gen_op2_i32(INDEX_op_ext8s_i32, ret, arg);
1202 #else
1203 tcg_gen_shli_i32(ret, arg, 24);
1204 tcg_gen_sari_i32(ret, ret, 24);
1205 #endif
1208 static inline void tcg_gen_ext16s_i32(TCGv_i32 ret, TCGv_i32 arg)
1210 #ifdef TCG_TARGET_HAS_ext16s_i32
1211 tcg_gen_op2_i32(INDEX_op_ext16s_i32, ret, arg);
1212 #else
1213 tcg_gen_shli_i32(ret, arg, 16);
1214 tcg_gen_sari_i32(ret, ret, 16);
1215 #endif
1218 static inline void tcg_gen_ext8u_i32(TCGv_i32 ret, TCGv_i32 arg)
1220 #ifdef TCG_TARGET_HAS_ext8u_i32
1221 tcg_gen_op2_i32(INDEX_op_ext8u_i32, ret, arg);
1222 #else
1223 tcg_gen_andi_i32(ret, arg, 0xffu);
1224 #endif
1227 static inline void tcg_gen_ext16u_i32(TCGv_i32 ret, TCGv_i32 arg)
1229 #ifdef TCG_TARGET_HAS_ext16u_i32
1230 tcg_gen_op2_i32(INDEX_op_ext16u_i32, ret, arg);
1231 #else
1232 tcg_gen_andi_i32(ret, arg, 0xffffu);
1233 #endif
1236 /* Note: we assume the two high bytes are set to zero */
1237 static inline void tcg_gen_bswap16_i32(TCGv_i32 ret, TCGv_i32 arg)
1239 #ifdef TCG_TARGET_HAS_bswap16_i32
1240 tcg_gen_op2_i32(INDEX_op_bswap16_i32, ret, arg);
1241 #else
1242 TCGv_i32 t0 = tcg_temp_new_i32();
1244 tcg_gen_ext8u_i32(t0, arg);
1245 tcg_gen_shli_i32(t0, t0, 8);
1246 tcg_gen_shri_i32(ret, arg, 8);
1247 tcg_gen_or_i32(ret, ret, t0);
1248 tcg_temp_free_i32(t0);
1249 #endif
1252 static inline void tcg_gen_bswap32_i32(TCGv_i32 ret, TCGv_i32 arg)
1254 #ifdef TCG_TARGET_HAS_bswap32_i32
1255 tcg_gen_op2_i32(INDEX_op_bswap32_i32, ret, arg);
1256 #else
1257 TCGv_i32 t0, t1;
1258 t0 = tcg_temp_new_i32();
1259 t1 = tcg_temp_new_i32();
1261 tcg_gen_shli_i32(t0, arg, 24);
1263 tcg_gen_andi_i32(t1, arg, 0x0000ff00);
1264 tcg_gen_shli_i32(t1, t1, 8);
1265 tcg_gen_or_i32(t0, t0, t1);
1267 tcg_gen_shri_i32(t1, arg, 8);
1268 tcg_gen_andi_i32(t1, t1, 0x0000ff00);
1269 tcg_gen_or_i32(t0, t0, t1);
1271 tcg_gen_shri_i32(t1, arg, 24);
1272 tcg_gen_or_i32(ret, t0, t1);
1273 tcg_temp_free_i32(t0);
1274 tcg_temp_free_i32(t1);
1275 #endif
1278 #if TCG_TARGET_REG_BITS == 32
1279 static inline void tcg_gen_ext8s_i64(TCGv_i64 ret, TCGv_i64 arg)
1281 tcg_gen_ext8s_i32(TCGV_LOW(ret), TCGV_LOW(arg));
1282 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
1285 static inline void tcg_gen_ext16s_i64(TCGv_i64 ret, TCGv_i64 arg)
1287 tcg_gen_ext16s_i32(TCGV_LOW(ret), TCGV_LOW(arg));
1288 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
1291 static inline void tcg_gen_ext32s_i64(TCGv_i64 ret, TCGv_i64 arg)
1293 tcg_gen_mov_i32(TCGV_LOW(ret), TCGV_LOW(arg));
1294 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
1297 static inline void tcg_gen_ext8u_i64(TCGv_i64 ret, TCGv_i64 arg)
1299 tcg_gen_ext8u_i32(TCGV_LOW(ret), TCGV_LOW(arg));
1300 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
1303 static inline void tcg_gen_ext16u_i64(TCGv_i64 ret, TCGv_i64 arg)
1305 tcg_gen_ext16u_i32(TCGV_LOW(ret), TCGV_LOW(arg));
1306 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
1309 static inline void tcg_gen_ext32u_i64(TCGv_i64 ret, TCGv_i64 arg)
1311 tcg_gen_mov_i32(TCGV_LOW(ret), TCGV_LOW(arg));
1312 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
1315 static inline void tcg_gen_trunc_i64_i32(TCGv_i32 ret, TCGv_i64 arg)
1317 tcg_gen_mov_i32(ret, TCGV_LOW(arg));
1320 static inline void tcg_gen_extu_i32_i64(TCGv_i64 ret, TCGv_i32 arg)
1322 tcg_gen_mov_i32(TCGV_LOW(ret), arg);
1323 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
1326 static inline void tcg_gen_ext_i32_i64(TCGv_i64 ret, TCGv_i32 arg)
1328 tcg_gen_mov_i32(TCGV_LOW(ret), arg);
1329 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
1332 /* Note: we assume the six high bytes are set to zero */
1333 static inline void tcg_gen_bswap16_i64(TCGv_i64 ret, TCGv_i64 arg)
1335 tcg_gen_mov_i32(TCGV_HIGH(ret), TCGV_HIGH(arg));
1336 tcg_gen_bswap16_i32(TCGV_LOW(ret), TCGV_LOW(arg));
1339 /* Note: we assume the four high bytes are set to zero */
1340 static inline void tcg_gen_bswap32_i64(TCGv_i64 ret, TCGv_i64 arg)
1342 tcg_gen_mov_i32(TCGV_HIGH(ret), TCGV_HIGH(arg));
1343 tcg_gen_bswap32_i32(TCGV_LOW(ret), TCGV_LOW(arg));
1346 static inline void tcg_gen_bswap64_i64(TCGv_i64 ret, TCGv_i64 arg)
1348 TCGv_i32 t0, t1;
1349 t0 = tcg_temp_new_i32();
1350 t1 = tcg_temp_new_i32();
1352 tcg_gen_bswap32_i32(t0, TCGV_LOW(arg));
1353 tcg_gen_bswap32_i32(t1, TCGV_HIGH(arg));
1354 tcg_gen_mov_i32(TCGV_LOW(ret), t1);
1355 tcg_gen_mov_i32(TCGV_HIGH(ret), t0);
1356 tcg_temp_free_i32(t0);
1357 tcg_temp_free_i32(t1);
1359 #else
1361 static inline void tcg_gen_ext8s_i64(TCGv_i64 ret, TCGv_i64 arg)
1363 #ifdef TCG_TARGET_HAS_ext8s_i64
1364 tcg_gen_op2_i64(INDEX_op_ext8s_i64, ret, arg);
1365 #else
1366 tcg_gen_shli_i64(ret, arg, 56);
1367 tcg_gen_sari_i64(ret, ret, 56);
1368 #endif
1371 static inline void tcg_gen_ext16s_i64(TCGv_i64 ret, TCGv_i64 arg)
1373 #ifdef TCG_TARGET_HAS_ext16s_i64
1374 tcg_gen_op2_i64(INDEX_op_ext16s_i64, ret, arg);
1375 #else
1376 tcg_gen_shli_i64(ret, arg, 48);
1377 tcg_gen_sari_i64(ret, ret, 48);
1378 #endif
1381 static inline void tcg_gen_ext32s_i64(TCGv_i64 ret, TCGv_i64 arg)
1383 #ifdef TCG_TARGET_HAS_ext32s_i64
1384 tcg_gen_op2_i64(INDEX_op_ext32s_i64, ret, arg);
1385 #else
1386 tcg_gen_shli_i64(ret, arg, 32);
1387 tcg_gen_sari_i64(ret, ret, 32);
1388 #endif
1391 static inline void tcg_gen_ext8u_i64(TCGv_i64 ret, TCGv_i64 arg)
1393 #ifdef TCG_TARGET_HAS_ext8u_i64
1394 tcg_gen_op2_i64(INDEX_op_ext8u_i64, ret, arg);
1395 #else
1396 tcg_gen_andi_i64(ret, arg, 0xffu);
1397 #endif
1400 static inline void tcg_gen_ext16u_i64(TCGv_i64 ret, TCGv_i64 arg)
1402 #ifdef TCG_TARGET_HAS_ext16u_i64
1403 tcg_gen_op2_i64(INDEX_op_ext16u_i64, ret, arg);
1404 #else
1405 tcg_gen_andi_i64(ret, arg, 0xffffu);
1406 #endif
1409 static inline void tcg_gen_ext32u_i64(TCGv_i64 ret, TCGv_i64 arg)
1411 #ifdef TCG_TARGET_HAS_ext32u_i64
1412 tcg_gen_op2_i64(INDEX_op_ext32u_i64, ret, arg);
1413 #else
1414 tcg_gen_andi_i64(ret, arg, 0xffffffffu);
1415 #endif
1418 /* Note: we assume the target supports move between 32 and 64 bit
1419 registers. This will probably break MIPS64 targets. */
1420 static inline void tcg_gen_trunc_i64_i32(TCGv_i32 ret, TCGv_i64 arg)
1422 tcg_gen_mov_i32(ret, MAKE_TCGV_I32(GET_TCGV_I64(arg)));
1425 /* Note: we assume the target supports move between 32 and 64 bit
1426 registers */
1427 static inline void tcg_gen_extu_i32_i64(TCGv_i64 ret, TCGv_i32 arg)
1429 tcg_gen_ext32u_i64(ret, MAKE_TCGV_I64(GET_TCGV_I32(arg)));
1432 /* Note: we assume the target supports move between 32 and 64 bit
1433 registers */
1434 static inline void tcg_gen_ext_i32_i64(TCGv_i64 ret, TCGv_i32 arg)
1436 tcg_gen_ext32s_i64(ret, MAKE_TCGV_I64(GET_TCGV_I32(arg)));
1439 /* Note: we assume the six high bytes are set to zero */
1440 static inline void tcg_gen_bswap16_i64(TCGv_i64 ret, TCGv_i64 arg)
1442 #ifdef TCG_TARGET_HAS_bswap16_i64
1443 tcg_gen_op2_i64(INDEX_op_bswap16_i64, ret, arg);
1444 #else
1445 TCGv_i64 t0 = tcg_temp_new_i64();
1447 tcg_gen_ext8u_i64(t0, arg);
1448 tcg_gen_shli_i64(t0, t0, 8);
1449 tcg_gen_shri_i64(ret, arg, 8);
1450 tcg_gen_or_i64(ret, ret, t0);
1451 tcg_temp_free_i64(t0);
1452 #endif
1455 /* Note: we assume the four high bytes are set to zero */
1456 static inline void tcg_gen_bswap32_i64(TCGv_i64 ret, TCGv_i64 arg)
1458 #ifdef TCG_TARGET_HAS_bswap32_i64
1459 tcg_gen_op2_i64(INDEX_op_bswap32_i64, ret, arg);
1460 #else
1461 TCGv_i64 t0, t1;
1462 t0 = tcg_temp_new_i64();
1463 t1 = tcg_temp_new_i64();
1465 tcg_gen_shli_i64(t0, arg, 24);
1466 tcg_gen_ext32u_i64(t0, t0);
1468 tcg_gen_andi_i64(t1, arg, 0x0000ff00);
1469 tcg_gen_shli_i64(t1, t1, 8);
1470 tcg_gen_or_i64(t0, t0, t1);
1472 tcg_gen_shri_i64(t1, arg, 8);
1473 tcg_gen_andi_i64(t1, t1, 0x0000ff00);
1474 tcg_gen_or_i64(t0, t0, t1);
1476 tcg_gen_shri_i64(t1, arg, 24);
1477 tcg_gen_or_i64(ret, t0, t1);
1478 tcg_temp_free_i64(t0);
1479 tcg_temp_free_i64(t1);
1480 #endif
1483 static inline void tcg_gen_bswap64_i64(TCGv_i64 ret, TCGv_i64 arg)
1485 #ifdef TCG_TARGET_HAS_bswap64_i64
1486 tcg_gen_op2_i64(INDEX_op_bswap64_i64, ret, arg);
1487 #else
1488 TCGv_i64 t0 = tcg_temp_new_i64();
1489 TCGv_i64 t1 = tcg_temp_new_i64();
1491 tcg_gen_shli_i64(t0, arg, 56);
1493 tcg_gen_andi_i64(t1, arg, 0x0000ff00);
1494 tcg_gen_shli_i64(t1, t1, 40);
1495 tcg_gen_or_i64(t0, t0, t1);
1497 tcg_gen_andi_i64(t1, arg, 0x00ff0000);
1498 tcg_gen_shli_i64(t1, t1, 24);
1499 tcg_gen_or_i64(t0, t0, t1);
1501 tcg_gen_andi_i64(t1, arg, 0xff000000);
1502 tcg_gen_shli_i64(t1, t1, 8);
1503 tcg_gen_or_i64(t0, t0, t1);
1505 tcg_gen_shri_i64(t1, arg, 8);
1506 tcg_gen_andi_i64(t1, t1, 0xff000000);
1507 tcg_gen_or_i64(t0, t0, t1);
1509 tcg_gen_shri_i64(t1, arg, 24);
1510 tcg_gen_andi_i64(t1, t1, 0x00ff0000);
1511 tcg_gen_or_i64(t0, t0, t1);
1513 tcg_gen_shri_i64(t1, arg, 40);
1514 tcg_gen_andi_i64(t1, t1, 0x0000ff00);
1515 tcg_gen_or_i64(t0, t0, t1);
1517 tcg_gen_shri_i64(t1, arg, 56);
1518 tcg_gen_or_i64(ret, t0, t1);
1519 tcg_temp_free_i64(t0);
1520 tcg_temp_free_i64(t1);
1521 #endif
1524 #endif
1526 static inline void tcg_gen_neg_i32(TCGv_i32 ret, TCGv_i32 arg)
1528 #ifdef TCG_TARGET_HAS_neg_i32
1529 tcg_gen_op2_i32(INDEX_op_neg_i32, ret, arg);
1530 #else
1531 TCGv_i32 t0 = tcg_const_i32(0);
1532 tcg_gen_sub_i32(ret, t0, arg);
1533 tcg_temp_free_i32(t0);
1534 #endif
1537 static inline void tcg_gen_neg_i64(TCGv_i64 ret, TCGv_i64 arg)
1539 #ifdef TCG_TARGET_HAS_neg_i64
1540 tcg_gen_op2_i64(INDEX_op_neg_i64, ret, arg);
1541 #else
1542 TCGv_i64 t0 = tcg_const_i64(0);
1543 tcg_gen_sub_i64(ret, t0, arg);
1544 tcg_temp_free_i64(t0);
1545 #endif
1548 static inline void tcg_gen_not_i32(TCGv_i32 ret, TCGv_i32 arg)
1550 #ifdef TCG_TARGET_HAS_not_i32
1551 tcg_gen_op2_i32(INDEX_op_not_i32, ret, arg);
1552 #else
1553 tcg_gen_xori_i32(ret, arg, -1);
1554 #endif
1557 static inline void tcg_gen_not_i64(TCGv_i64 ret, TCGv_i64 arg)
1559 #ifdef TCG_TARGET_HAS_not_i64
1560 tcg_gen_op2_i64(INDEX_op_not_i64, ret, arg);
1561 #else
1562 tcg_gen_xori_i64(ret, arg, -1);
1563 #endif
1566 static inline void tcg_gen_discard_i32(TCGv_i32 arg)
1568 tcg_gen_op1_i32(INDEX_op_discard, arg);
1571 #if TCG_TARGET_REG_BITS == 32
1572 static inline void tcg_gen_discard_i64(TCGv_i64 arg)
1574 tcg_gen_discard_i32(TCGV_LOW(arg));
1575 tcg_gen_discard_i32(TCGV_HIGH(arg));
1577 #else
1578 static inline void tcg_gen_discard_i64(TCGv_i64 arg)
1580 tcg_gen_op1_i64(INDEX_op_discard, arg);
1582 #endif
1584 static inline void tcg_gen_concat_i32_i64(TCGv_i64 dest, TCGv_i32 low, TCGv_i32 high)
1586 #if TCG_TARGET_REG_BITS == 32
1587 tcg_gen_mov_i32(TCGV_LOW(dest), low);
1588 tcg_gen_mov_i32(TCGV_HIGH(dest), high);
1589 #else
1590 TCGv_i64 tmp = tcg_temp_new_i64();
1591 /* This extension is only needed for type correctness.
1592 We may be able to do better given target specific information. */
1593 tcg_gen_extu_i32_i64(tmp, high);
1594 tcg_gen_shli_i64(tmp, tmp, 32);
1595 tcg_gen_extu_i32_i64(dest, low);
1596 tcg_gen_or_i64(dest, dest, tmp);
1597 tcg_temp_free_i64(tmp);
1598 #endif
1601 static inline void tcg_gen_concat32_i64(TCGv_i64 dest, TCGv_i64 low, TCGv_i64 high)
1603 #if TCG_TARGET_REG_BITS == 32
1604 tcg_gen_concat_i32_i64(dest, TCGV_LOW(low), TCGV_LOW(high));
1605 #else
1606 TCGv_i64 tmp = tcg_temp_new_i64();
1607 tcg_gen_ext32u_i64(dest, low);
1608 tcg_gen_shli_i64(tmp, high, 32);
1609 tcg_gen_or_i64(dest, dest, tmp);
1610 tcg_temp_free_i64(tmp);
1611 #endif
1614 static inline void tcg_gen_andc_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
1616 TCGv_i32 t0;
1617 t0 = tcg_temp_new_i32();
1618 tcg_gen_not_i32(t0, arg2);
1619 tcg_gen_and_i32(ret, arg1, t0);
1620 tcg_temp_free_i32(t0);
1623 static inline void tcg_gen_andc_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1625 TCGv_i64 t0;
1626 t0 = tcg_temp_new_i64();
1627 tcg_gen_not_i64(t0, arg2);
1628 tcg_gen_and_i64(ret, arg1, t0);
1629 tcg_temp_free_i64(t0);
1632 static inline void tcg_gen_eqv_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
1634 tcg_gen_xor_i32(ret, arg1, arg2);
1635 tcg_gen_not_i32(ret, ret);
1638 static inline void tcg_gen_eqv_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1640 tcg_gen_xor_i64(ret, arg1, arg2);
1641 tcg_gen_not_i64(ret, ret);
1644 static inline void tcg_gen_nand_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
1646 tcg_gen_and_i32(ret, arg1, arg2);
1647 tcg_gen_not_i32(ret, ret);
1650 static inline void tcg_gen_nand_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1652 tcg_gen_and_i64(ret, arg1, arg2);
1653 tcg_gen_not_i64(ret, ret);
1656 static inline void tcg_gen_nor_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
1658 tcg_gen_or_i32(ret, arg1, arg2);
1659 tcg_gen_not_i32(ret, ret);
1662 static inline void tcg_gen_nor_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1664 tcg_gen_or_i64(ret, arg1, arg2);
1665 tcg_gen_not_i64(ret, ret);
1668 static inline void tcg_gen_orc_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
1670 TCGv_i32 t0;
1671 t0 = tcg_temp_new_i32();
1672 tcg_gen_not_i32(t0, arg2);
1673 tcg_gen_or_i32(ret, arg1, t0);
1674 tcg_temp_free_i32(t0);
1677 static inline void tcg_gen_orc_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1679 TCGv_i64 t0;
1680 t0 = tcg_temp_new_i64();
1681 tcg_gen_not_i64(t0, arg2);
1682 tcg_gen_or_i64(ret, arg1, t0);
1683 tcg_temp_free_i64(t0);
1686 static inline void tcg_gen_rotl_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
1688 #ifdef TCG_TARGET_HAS_rot_i32
1689 tcg_gen_op3_i32(INDEX_op_rotl_i32, ret, arg1, arg2);
1690 #else
1691 TCGv_i32 t0, t1;
1693 t0 = tcg_temp_new_i32();
1694 t1 = tcg_temp_new_i32();
1695 tcg_gen_shl_i32(t0, arg1, arg2);
1696 tcg_gen_subfi_i32(t1, 32, arg2);
1697 tcg_gen_shr_i32(t1, arg1, t1);
1698 tcg_gen_or_i32(ret, t0, t1);
1699 tcg_temp_free_i32(t0);
1700 tcg_temp_free_i32(t1);
1701 #endif
1704 static inline void tcg_gen_rotl_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1706 #ifdef TCG_TARGET_HAS_rot_i64
1707 tcg_gen_op3_i64(INDEX_op_rotl_i64, ret, arg1, arg2);
1708 #else
1709 TCGv_i64 t0, t1;
1711 t0 = tcg_temp_new_i64();
1712 t1 = tcg_temp_new_i64();
1713 tcg_gen_shl_i64(t0, arg1, arg2);
1714 tcg_gen_subfi_i64(t1, 64, arg2);
1715 tcg_gen_shr_i64(t1, arg1, t1);
1716 tcg_gen_or_i64(ret, t0, t1);
1717 tcg_temp_free_i64(t0);
1718 tcg_temp_free_i64(t1);
1719 #endif
1722 static inline void tcg_gen_rotli_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
1724 /* some cases can be optimized here */
1725 if (arg2 == 0) {
1726 tcg_gen_mov_i32(ret, arg1);
1727 } else {
1728 #ifdef TCG_TARGET_HAS_rot_i32
1729 TCGv_i32 t0 = tcg_const_i32(arg2);
1730 tcg_gen_rotl_i32(ret, arg1, t0);
1731 tcg_temp_free_i32(t0);
1732 #else
1733 TCGv_i32 t0, t1;
1734 t0 = tcg_temp_new_i32();
1735 t1 = tcg_temp_new_i32();
1736 tcg_gen_shli_i32(t0, arg1, arg2);
1737 tcg_gen_shri_i32(t1, arg1, 32 - arg2);
1738 tcg_gen_or_i32(ret, t0, t1);
1739 tcg_temp_free_i32(t0);
1740 tcg_temp_free_i32(t1);
1741 #endif
1745 static inline void tcg_gen_rotli_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1747 /* some cases can be optimized here */
1748 if (arg2 == 0) {
1749 tcg_gen_mov_i64(ret, arg1);
1750 } else {
1751 #ifdef TCG_TARGET_HAS_rot_i64
1752 TCGv_i64 t0 = tcg_const_i64(arg2);
1753 tcg_gen_rotl_i64(ret, arg1, t0);
1754 tcg_temp_free_i64(t0);
1755 #else
1756 TCGv_i64 t0, t1;
1757 t0 = tcg_temp_new_i64();
1758 t1 = tcg_temp_new_i64();
1759 tcg_gen_shli_i64(t0, arg1, arg2);
1760 tcg_gen_shri_i64(t1, arg1, 64 - arg2);
1761 tcg_gen_or_i64(ret, t0, t1);
1762 tcg_temp_free_i64(t0);
1763 tcg_temp_free_i64(t1);
1764 #endif
1768 static inline void tcg_gen_rotr_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
1770 #ifdef TCG_TARGET_HAS_rot_i32
1771 tcg_gen_op3_i32(INDEX_op_rotr_i32, ret, arg1, arg2);
1772 #else
1773 TCGv_i32 t0, t1;
1775 t0 = tcg_temp_new_i32();
1776 t1 = tcg_temp_new_i32();
1777 tcg_gen_shr_i32(t0, arg1, arg2);
1778 tcg_gen_subfi_i32(t1, 32, arg2);
1779 tcg_gen_shl_i32(t1, arg1, t1);
1780 tcg_gen_or_i32(ret, t0, t1);
1781 tcg_temp_free_i32(t0);
1782 tcg_temp_free_i32(t1);
1783 #endif
1786 static inline void tcg_gen_rotr_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
1788 #ifdef TCG_TARGET_HAS_rot_i64
1789 tcg_gen_op3_i64(INDEX_op_rotr_i64, ret, arg1, arg2);
1790 #else
1791 TCGv_i64 t0, t1;
1793 t0 = tcg_temp_new_i64();
1794 t1 = tcg_temp_new_i64();
1795 tcg_gen_shr_i64(t0, arg1, arg2);
1796 tcg_gen_subfi_i64(t1, 64, arg2);
1797 tcg_gen_shl_i64(t1, arg1, t1);
1798 tcg_gen_or_i64(ret, t0, t1);
1799 tcg_temp_free_i64(t0);
1800 tcg_temp_free_i64(t1);
1801 #endif
1804 static inline void tcg_gen_rotri_i32(TCGv_i32 ret, TCGv_i32 arg1, int32_t arg2)
1806 /* some cases can be optimized here */
1807 if (arg2 == 0) {
1808 tcg_gen_mov_i32(ret, arg1);
1809 } else {
1810 tcg_gen_rotli_i32(ret, arg1, 32 - arg2);
1814 static inline void tcg_gen_rotri_i64(TCGv_i64 ret, TCGv_i64 arg1, int64_t arg2)
1816 /* some cases can be optimized here */
1817 if (arg2 == 0) {
1818 tcg_gen_mov_i64(ret, arg1);
1819 } else {
1820 tcg_gen_rotli_i64(ret, arg1, 64 - arg2);
1824 static inline void tcg_gen_setcond_i32(int cond, TCGv_i32 ret,
1825 TCGv_i32 arg1, TCGv_i32 arg2)
1827 tcg_gen_op4i_i32(INDEX_op_setcond_i32, ret, arg1, arg2, cond);
1830 static inline void tcg_gen_setcond_i64(int cond, TCGv_i64 ret,
1831 TCGv_i64 arg1, TCGv_i64 arg2)
1833 #if TCG_TARGET_REG_BITS == 64
1834 tcg_gen_op4i_i64(INDEX_op_setcond_i64, ret, arg1, arg2, cond);
1835 #else
1836 tcg_gen_op6i_i32(INDEX_op_setcond2_i32, TCGV_LOW(ret),
1837 TCGV_LOW(arg1), TCGV_HIGH(arg1),
1838 TCGV_LOW(arg2), TCGV_HIGH(arg2), cond);
1839 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
1840 #endif
1843 /***************************************/
1844 /* QEMU specific operations. Their type depend on the QEMU CPU
1845 type. */
1846 #ifndef TARGET_LONG_BITS
1847 #error must include QEMU headers
1848 #endif
1850 #if TARGET_LONG_BITS == 32
1851 #define TCGv TCGv_i32
1852 #define tcg_temp_new() tcg_temp_new_i32()
1853 #define tcg_global_reg_new tcg_global_reg_new_i32
1854 #define tcg_global_mem_new tcg_global_mem_new_i32
1855 #define tcg_temp_local_new() tcg_temp_local_new_i32()
1856 #define tcg_temp_free tcg_temp_free_i32
1857 #define tcg_gen_qemu_ldst_op tcg_gen_op3i_i32
1858 #define tcg_gen_qemu_ldst_op_i64 tcg_gen_qemu_ldst_op_i64_i32
1859 #define TCGV_UNUSED(x) TCGV_UNUSED_I32(x)
1860 #define TCGV_EQUAL(a, b) TCGV_EQUAL_I32(a, b)
1861 #else
1862 #define TCGv TCGv_i64
1863 #define tcg_temp_new() tcg_temp_new_i64()
1864 #define tcg_global_reg_new tcg_global_reg_new_i64
1865 #define tcg_global_mem_new tcg_global_mem_new_i64
1866 #define tcg_temp_local_new() tcg_temp_local_new_i64()
1867 #define tcg_temp_free tcg_temp_free_i64
1868 #define tcg_gen_qemu_ldst_op tcg_gen_op3i_i64
1869 #define tcg_gen_qemu_ldst_op_i64 tcg_gen_qemu_ldst_op_i64_i64
1870 #define TCGV_UNUSED(x) TCGV_UNUSED_I64(x)
1871 #define TCGV_EQUAL(a, b) TCGV_EQUAL_I64(a, b)
1872 #endif
1874 /* debug info: write the PC of the corresponding QEMU CPU instruction */
1875 static inline void tcg_gen_debug_insn_start(uint64_t pc)
1877 /* XXX: must really use a 32 bit size for TCGArg in all cases */
1878 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
1879 tcg_gen_op2ii(INDEX_op_debug_insn_start,
1880 (uint32_t)(pc), (uint32_t)(pc >> 32));
1881 #else
1882 tcg_gen_op1i(INDEX_op_debug_insn_start, pc);
1883 #endif
1886 static inline void tcg_gen_exit_tb(tcg_target_long val)
1888 tcg_gen_op1i(INDEX_op_exit_tb, val);
1891 static inline void tcg_gen_goto_tb(int idx)
1893 tcg_gen_op1i(INDEX_op_goto_tb, idx);
1896 #if TCG_TARGET_REG_BITS == 32
1897 static inline void tcg_gen_qemu_ld8u(TCGv ret, TCGv addr, int mem_index)
1899 #if TARGET_LONG_BITS == 32
1900 tcg_gen_op3i_i32(INDEX_op_qemu_ld8u, ret, addr, mem_index);
1901 #else
1902 tcg_gen_op4i_i32(INDEX_op_qemu_ld8u, TCGV_LOW(ret), TCGV_LOW(addr),
1903 TCGV_HIGH(addr), mem_index);
1904 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
1905 #endif
1908 static inline void tcg_gen_qemu_ld8s(TCGv ret, TCGv addr, int mem_index)
1910 #if TARGET_LONG_BITS == 32
1911 tcg_gen_op3i_i32(INDEX_op_qemu_ld8s, ret, addr, mem_index);
1912 #else
1913 tcg_gen_op4i_i32(INDEX_op_qemu_ld8s, TCGV_LOW(ret), TCGV_LOW(addr),
1914 TCGV_HIGH(addr), mem_index);
1915 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
1916 #endif
1919 static inline void tcg_gen_qemu_ld16u(TCGv ret, TCGv addr, int mem_index)
1921 #if TARGET_LONG_BITS == 32
1922 tcg_gen_op3i_i32(INDEX_op_qemu_ld16u, ret, addr, mem_index);
1923 #else
1924 tcg_gen_op4i_i32(INDEX_op_qemu_ld16u, TCGV_LOW(ret), TCGV_LOW(addr),
1925 TCGV_HIGH(addr), mem_index);
1926 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
1927 #endif
1930 static inline void tcg_gen_qemu_ld16s(TCGv ret, TCGv addr, int mem_index)
1932 #if TARGET_LONG_BITS == 32
1933 tcg_gen_op3i_i32(INDEX_op_qemu_ld16s, ret, addr, mem_index);
1934 #else
1935 tcg_gen_op4i_i32(INDEX_op_qemu_ld16s, TCGV_LOW(ret), TCGV_LOW(addr),
1936 TCGV_HIGH(addr), mem_index);
1937 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
1938 #endif
1941 static inline void tcg_gen_qemu_ld32u(TCGv ret, TCGv addr, int mem_index)
1943 #if TARGET_LONG_BITS == 32
1944 tcg_gen_op3i_i32(INDEX_op_qemu_ld32u, ret, addr, mem_index);
1945 #else
1946 tcg_gen_op4i_i32(INDEX_op_qemu_ld32u, TCGV_LOW(ret), TCGV_LOW(addr),
1947 TCGV_HIGH(addr), mem_index);
1948 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
1949 #endif
1952 static inline void tcg_gen_qemu_ld32s(TCGv ret, TCGv addr, int mem_index)
1954 #if TARGET_LONG_BITS == 32
1955 tcg_gen_op3i_i32(INDEX_op_qemu_ld32u, ret, addr, mem_index);
1956 #else
1957 tcg_gen_op4i_i32(INDEX_op_qemu_ld32u, TCGV_LOW(ret), TCGV_LOW(addr),
1958 TCGV_HIGH(addr), mem_index);
1959 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_LOW(ret), 31);
1960 #endif
1963 static inline void tcg_gen_qemu_ld64(TCGv_i64 ret, TCGv addr, int mem_index)
1965 #if TARGET_LONG_BITS == 32
1966 tcg_gen_op4i_i32(INDEX_op_qemu_ld64, TCGV_LOW(ret), TCGV_HIGH(ret), addr, mem_index);
1967 #else
1968 tcg_gen_op5i_i32(INDEX_op_qemu_ld64, TCGV_LOW(ret), TCGV_HIGH(ret),
1969 TCGV_LOW(addr), TCGV_HIGH(addr), mem_index);
1970 #endif
1973 static inline void tcg_gen_qemu_st8(TCGv arg, TCGv addr, int mem_index)
1975 #if TARGET_LONG_BITS == 32
1976 tcg_gen_op3i_i32(INDEX_op_qemu_st8, arg, addr, mem_index);
1977 #else
1978 tcg_gen_op4i_i32(INDEX_op_qemu_st8, TCGV_LOW(arg), TCGV_LOW(addr),
1979 TCGV_HIGH(addr), mem_index);
1980 #endif
1983 static inline void tcg_gen_qemu_st16(TCGv arg, TCGv addr, int mem_index)
1985 #if TARGET_LONG_BITS == 32
1986 tcg_gen_op3i_i32(INDEX_op_qemu_st16, arg, addr, mem_index);
1987 #else
1988 tcg_gen_op4i_i32(INDEX_op_qemu_st16, TCGV_LOW(arg), TCGV_LOW(addr),
1989 TCGV_HIGH(addr), mem_index);
1990 #endif
1993 static inline void tcg_gen_qemu_st32(TCGv arg, TCGv addr, int mem_index)
1995 #if TARGET_LONG_BITS == 32
1996 tcg_gen_op3i_i32(INDEX_op_qemu_st32, arg, addr, mem_index);
1997 #else
1998 tcg_gen_op4i_i32(INDEX_op_qemu_st32, TCGV_LOW(arg), TCGV_LOW(addr),
1999 TCGV_HIGH(addr), mem_index);
2000 #endif
2003 static inline void tcg_gen_qemu_st64(TCGv_i64 arg, TCGv addr, int mem_index)
2005 #if TARGET_LONG_BITS == 32
2006 tcg_gen_op4i_i32(INDEX_op_qemu_st64, TCGV_LOW(arg), TCGV_HIGH(arg), addr,
2007 mem_index);
2008 #else
2009 tcg_gen_op5i_i32(INDEX_op_qemu_st64, TCGV_LOW(arg), TCGV_HIGH(arg),
2010 TCGV_LOW(addr), TCGV_HIGH(addr), mem_index);
2011 #endif
2014 #define tcg_gen_ld_ptr tcg_gen_ld_i32
2015 #define tcg_gen_discard_ptr tcg_gen_discard_i32
2017 #else /* TCG_TARGET_REG_BITS == 32 */
2019 static inline void tcg_gen_qemu_ld8u(TCGv ret, TCGv addr, int mem_index)
2021 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld8u, ret, addr, mem_index);
2024 static inline void tcg_gen_qemu_ld8s(TCGv ret, TCGv addr, int mem_index)
2026 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld8s, ret, addr, mem_index);
2029 static inline void tcg_gen_qemu_ld16u(TCGv ret, TCGv addr, int mem_index)
2031 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld16u, ret, addr, mem_index);
2034 static inline void tcg_gen_qemu_ld16s(TCGv ret, TCGv addr, int mem_index)
2036 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld16s, ret, addr, mem_index);
2039 static inline void tcg_gen_qemu_ld32u(TCGv ret, TCGv addr, int mem_index)
2041 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32u, ret, addr, mem_index);
2044 static inline void tcg_gen_qemu_ld32s(TCGv ret, TCGv addr, int mem_index)
2046 tcg_gen_qemu_ldst_op(INDEX_op_qemu_ld32s, ret, addr, mem_index);
2049 static inline void tcg_gen_qemu_ld64(TCGv_i64 ret, TCGv addr, int mem_index)
2051 tcg_gen_qemu_ldst_op_i64(INDEX_op_qemu_ld64, ret, addr, mem_index);
2054 static inline void tcg_gen_qemu_st8(TCGv arg, TCGv addr, int mem_index)
2056 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st8, arg, addr, mem_index);
2059 static inline void tcg_gen_qemu_st16(TCGv arg, TCGv addr, int mem_index)
2061 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st16, arg, addr, mem_index);
2064 static inline void tcg_gen_qemu_st32(TCGv arg, TCGv addr, int mem_index)
2066 tcg_gen_qemu_ldst_op(INDEX_op_qemu_st32, arg, addr, mem_index);
2069 static inline void tcg_gen_qemu_st64(TCGv_i64 arg, TCGv addr, int mem_index)
2071 tcg_gen_qemu_ldst_op_i64(INDEX_op_qemu_st64, arg, addr, mem_index);
2074 #define tcg_gen_ld_ptr tcg_gen_ld_i64
2075 #define tcg_gen_discard_ptr tcg_gen_discard_i64
2077 #endif /* TCG_TARGET_REG_BITS != 32 */
2079 #if TARGET_LONG_BITS == 64
2080 #define TCG_TYPE_TL TCG_TYPE_I64
2081 #define tcg_gen_movi_tl tcg_gen_movi_i64
2082 #define tcg_gen_mov_tl tcg_gen_mov_i64
2083 #define tcg_gen_ld8u_tl tcg_gen_ld8u_i64
2084 #define tcg_gen_ld8s_tl tcg_gen_ld8s_i64
2085 #define tcg_gen_ld16u_tl tcg_gen_ld16u_i64
2086 #define tcg_gen_ld16s_tl tcg_gen_ld16s_i64
2087 #define tcg_gen_ld32u_tl tcg_gen_ld32u_i64
2088 #define tcg_gen_ld32s_tl tcg_gen_ld32s_i64
2089 #define tcg_gen_ld_tl tcg_gen_ld_i64
2090 #define tcg_gen_st8_tl tcg_gen_st8_i64
2091 #define tcg_gen_st16_tl tcg_gen_st16_i64
2092 #define tcg_gen_st32_tl tcg_gen_st32_i64
2093 #define tcg_gen_st_tl tcg_gen_st_i64
2094 #define tcg_gen_add_tl tcg_gen_add_i64
2095 #define tcg_gen_addi_tl tcg_gen_addi_i64
2096 #define tcg_gen_sub_tl tcg_gen_sub_i64
2097 #define tcg_gen_neg_tl tcg_gen_neg_i64
2098 #define tcg_gen_subfi_tl tcg_gen_subfi_i64
2099 #define tcg_gen_subi_tl tcg_gen_subi_i64
2100 #define tcg_gen_and_tl tcg_gen_and_i64
2101 #define tcg_gen_andi_tl tcg_gen_andi_i64
2102 #define tcg_gen_or_tl tcg_gen_or_i64
2103 #define tcg_gen_ori_tl tcg_gen_ori_i64
2104 #define tcg_gen_xor_tl tcg_gen_xor_i64
2105 #define tcg_gen_xori_tl tcg_gen_xori_i64
2106 #define tcg_gen_not_tl tcg_gen_not_i64
2107 #define tcg_gen_shl_tl tcg_gen_shl_i64
2108 #define tcg_gen_shli_tl tcg_gen_shli_i64
2109 #define tcg_gen_shr_tl tcg_gen_shr_i64
2110 #define tcg_gen_shri_tl tcg_gen_shri_i64
2111 #define tcg_gen_sar_tl tcg_gen_sar_i64
2112 #define tcg_gen_sari_tl tcg_gen_sari_i64
2113 #define tcg_gen_brcond_tl tcg_gen_brcond_i64
2114 #define tcg_gen_brcondi_tl tcg_gen_brcondi_i64
2115 #define tcg_gen_setcond_tl tcg_gen_setcond_i64
2116 #define tcg_gen_mul_tl tcg_gen_mul_i64
2117 #define tcg_gen_muli_tl tcg_gen_muli_i64
2118 #define tcg_gen_div_tl tcg_gen_div_i64
2119 #define tcg_gen_rem_tl tcg_gen_rem_i64
2120 #define tcg_gen_divu_tl tcg_gen_divu_i64
2121 #define tcg_gen_remu_tl tcg_gen_remu_i64
2122 #define tcg_gen_discard_tl tcg_gen_discard_i64
2123 #define tcg_gen_trunc_tl_i32 tcg_gen_trunc_i64_i32
2124 #define tcg_gen_trunc_i64_tl tcg_gen_mov_i64
2125 #define tcg_gen_extu_i32_tl tcg_gen_extu_i32_i64
2126 #define tcg_gen_ext_i32_tl tcg_gen_ext_i32_i64
2127 #define tcg_gen_extu_tl_i64 tcg_gen_mov_i64
2128 #define tcg_gen_ext_tl_i64 tcg_gen_mov_i64
2129 #define tcg_gen_ext8u_tl tcg_gen_ext8u_i64
2130 #define tcg_gen_ext8s_tl tcg_gen_ext8s_i64
2131 #define tcg_gen_ext16u_tl tcg_gen_ext16u_i64
2132 #define tcg_gen_ext16s_tl tcg_gen_ext16s_i64
2133 #define tcg_gen_ext32u_tl tcg_gen_ext32u_i64
2134 #define tcg_gen_ext32s_tl tcg_gen_ext32s_i64
2135 #define tcg_gen_bswap16_tl tcg_gen_bswap16_i64
2136 #define tcg_gen_bswap32_tl tcg_gen_bswap32_i64
2137 #define tcg_gen_bswap64_tl tcg_gen_bswap64_i64
2138 #define tcg_gen_concat_tl_i64 tcg_gen_concat32_i64
2139 #define tcg_gen_andc_tl tcg_gen_andc_i64
2140 #define tcg_gen_eqv_tl tcg_gen_eqv_i64
2141 #define tcg_gen_nand_tl tcg_gen_nand_i64
2142 #define tcg_gen_nor_tl tcg_gen_nor_i64
2143 #define tcg_gen_orc_tl tcg_gen_orc_i64
2144 #define tcg_gen_rotl_tl tcg_gen_rotl_i64
2145 #define tcg_gen_rotli_tl tcg_gen_rotli_i64
2146 #define tcg_gen_rotr_tl tcg_gen_rotr_i64
2147 #define tcg_gen_rotri_tl tcg_gen_rotri_i64
2148 #define tcg_const_tl tcg_const_i64
2149 #define tcg_const_local_tl tcg_const_local_i64
2150 #else
2151 #define TCG_TYPE_TL TCG_TYPE_I32
2152 #define tcg_gen_movi_tl tcg_gen_movi_i32
2153 #define tcg_gen_mov_tl tcg_gen_mov_i32
2154 #define tcg_gen_ld8u_tl tcg_gen_ld8u_i32
2155 #define tcg_gen_ld8s_tl tcg_gen_ld8s_i32
2156 #define tcg_gen_ld16u_tl tcg_gen_ld16u_i32
2157 #define tcg_gen_ld16s_tl tcg_gen_ld16s_i32
2158 #define tcg_gen_ld32u_tl tcg_gen_ld_i32
2159 #define tcg_gen_ld32s_tl tcg_gen_ld_i32
2160 #define tcg_gen_ld_tl tcg_gen_ld_i32
2161 #define tcg_gen_st8_tl tcg_gen_st8_i32
2162 #define tcg_gen_st16_tl tcg_gen_st16_i32
2163 #define tcg_gen_st32_tl tcg_gen_st_i32
2164 #define tcg_gen_st_tl tcg_gen_st_i32
2165 #define tcg_gen_add_tl tcg_gen_add_i32
2166 #define tcg_gen_addi_tl tcg_gen_addi_i32
2167 #define tcg_gen_sub_tl tcg_gen_sub_i32
2168 #define tcg_gen_neg_tl tcg_gen_neg_i32
2169 #define tcg_gen_subfi_tl tcg_gen_subfi_i32
2170 #define tcg_gen_subi_tl tcg_gen_subi_i32
2171 #define tcg_gen_and_tl tcg_gen_and_i32
2172 #define tcg_gen_andi_tl tcg_gen_andi_i32
2173 #define tcg_gen_or_tl tcg_gen_or_i32
2174 #define tcg_gen_ori_tl tcg_gen_ori_i32
2175 #define tcg_gen_xor_tl tcg_gen_xor_i32
2176 #define tcg_gen_xori_tl tcg_gen_xori_i32
2177 #define tcg_gen_not_tl tcg_gen_not_i32
2178 #define tcg_gen_shl_tl tcg_gen_shl_i32
2179 #define tcg_gen_shli_tl tcg_gen_shli_i32
2180 #define tcg_gen_shr_tl tcg_gen_shr_i32
2181 #define tcg_gen_shri_tl tcg_gen_shri_i32
2182 #define tcg_gen_sar_tl tcg_gen_sar_i32
2183 #define tcg_gen_sari_tl tcg_gen_sari_i32
2184 #define tcg_gen_brcond_tl tcg_gen_brcond_i32
2185 #define tcg_gen_brcondi_tl tcg_gen_brcondi_i32
2186 #define tcg_gen_setcond_tl tcg_gen_setcond_i32
2187 #define tcg_gen_mul_tl tcg_gen_mul_i32
2188 #define tcg_gen_muli_tl tcg_gen_muli_i32
2189 #define tcg_gen_div_tl tcg_gen_div_i32
2190 #define tcg_gen_rem_tl tcg_gen_rem_i32
2191 #define tcg_gen_divu_tl tcg_gen_divu_i32
2192 #define tcg_gen_remu_tl tcg_gen_remu_i32
2193 #define tcg_gen_discard_tl tcg_gen_discard_i32
2194 #define tcg_gen_trunc_tl_i32 tcg_gen_mov_i32
2195 #define tcg_gen_trunc_i64_tl tcg_gen_trunc_i64_i32
2196 #define tcg_gen_extu_i32_tl tcg_gen_mov_i32
2197 #define tcg_gen_ext_i32_tl tcg_gen_mov_i32
2198 #define tcg_gen_extu_tl_i64 tcg_gen_extu_i32_i64
2199 #define tcg_gen_ext_tl_i64 tcg_gen_ext_i32_i64
2200 #define tcg_gen_ext8u_tl tcg_gen_ext8u_i32
2201 #define tcg_gen_ext8s_tl tcg_gen_ext8s_i32
2202 #define tcg_gen_ext16u_tl tcg_gen_ext16u_i32
2203 #define tcg_gen_ext16s_tl tcg_gen_ext16s_i32
2204 #define tcg_gen_ext32u_tl tcg_gen_mov_i32
2205 #define tcg_gen_ext32s_tl tcg_gen_mov_i32
2206 #define tcg_gen_bswap16_tl tcg_gen_bswap16_i32
2207 #define tcg_gen_bswap32_tl tcg_gen_bswap32_i32
2208 #define tcg_gen_concat_tl_i64 tcg_gen_concat_i32_i64
2209 #define tcg_gen_andc_tl tcg_gen_andc_i32
2210 #define tcg_gen_eqv_tl tcg_gen_eqv_i32
2211 #define tcg_gen_nand_tl tcg_gen_nand_i32
2212 #define tcg_gen_nor_tl tcg_gen_nor_i32
2213 #define tcg_gen_orc_tl tcg_gen_orc_i32
2214 #define tcg_gen_rotl_tl tcg_gen_rotl_i32
2215 #define tcg_gen_rotli_tl tcg_gen_rotli_i32
2216 #define tcg_gen_rotr_tl tcg_gen_rotr_i32
2217 #define tcg_gen_rotri_tl tcg_gen_rotri_i32
2218 #define tcg_const_tl tcg_const_i32
2219 #define tcg_const_local_tl tcg_const_local_i32
2220 #endif
2222 #if TCG_TARGET_REG_BITS == 32
2223 #define tcg_gen_add_ptr tcg_gen_add_i32
2224 #define tcg_gen_addi_ptr tcg_gen_addi_i32
2225 #define tcg_gen_ext_i32_ptr tcg_gen_mov_i32
2226 #else /* TCG_TARGET_REG_BITS == 32 */
2227 #define tcg_gen_add_ptr tcg_gen_add_i64
2228 #define tcg_gen_addi_ptr tcg_gen_addi_i64
2229 #define tcg_gen_ext_i32_ptr tcg_gen_ext_i32_i64
2230 #endif /* TCG_TARGET_REG_BITS != 32 */