2 * Tiny Code Interpreter for QEMU
4 * Copyright (c) 2009, 2011 Stefan Weil
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 /* Defining NDEBUG disables assertions (which makes the code faster). */
23 #if !defined(CONFIG_DEBUG_TCG) && !defined(NDEBUG)
27 #include "qemu-common.h"
28 #include "exec/exec-all.h" /* MAX_OPC_PARAM_IARGS */
29 #include "exec/cpu_ldst.h"
32 /* Marker for missing code. */
35 fprintf(stderr, "TODO %s:%u: %s()\n", \
36 __FILE__, __LINE__, __func__); \
40 #if MAX_OPC_PARAM_IARGS != 5
41 # error Fix needed, number of supported input arguments changed!
43 #if TCG_TARGET_REG_BITS == 32
44 typedef uint64_t (*helper_function
)(tcg_target_ulong
, tcg_target_ulong
,
45 tcg_target_ulong
, tcg_target_ulong
,
46 tcg_target_ulong
, tcg_target_ulong
,
47 tcg_target_ulong
, tcg_target_ulong
,
48 tcg_target_ulong
, tcg_target_ulong
);
50 typedef uint64_t (*helper_function
)(tcg_target_ulong
, tcg_target_ulong
,
51 tcg_target_ulong
, tcg_target_ulong
,
55 /* Targets which don't use GETPC also don't need tci_tb_ptr
56 which makes them a little faster. */
61 static tcg_target_ulong tci_reg
[TCG_TARGET_NB_REGS
];
63 static tcg_target_ulong
tci_read_reg(TCGReg index
)
65 assert(index
< ARRAY_SIZE(tci_reg
));
66 return tci_reg
[index
];
69 #if TCG_TARGET_HAS_ext8s_i32 || TCG_TARGET_HAS_ext8s_i64
70 static int8_t tci_read_reg8s(TCGReg index
)
72 return (int8_t)tci_read_reg(index
);
76 #if TCG_TARGET_HAS_ext16s_i32 || TCG_TARGET_HAS_ext16s_i64
77 static int16_t tci_read_reg16s(TCGReg index
)
79 return (int16_t)tci_read_reg(index
);
83 #if TCG_TARGET_REG_BITS == 64
84 static int32_t tci_read_reg32s(TCGReg index
)
86 return (int32_t)tci_read_reg(index
);
90 static uint8_t tci_read_reg8(TCGReg index
)
92 return (uint8_t)tci_read_reg(index
);
95 static uint16_t tci_read_reg16(TCGReg index
)
97 return (uint16_t)tci_read_reg(index
);
100 static uint32_t tci_read_reg32(TCGReg index
)
102 return (uint32_t)tci_read_reg(index
);
105 #if TCG_TARGET_REG_BITS == 64
106 static uint64_t tci_read_reg64(TCGReg index
)
108 return tci_read_reg(index
);
112 static void tci_write_reg(TCGReg index
, tcg_target_ulong value
)
114 assert(index
< ARRAY_SIZE(tci_reg
));
115 assert(index
!= TCG_AREG0
);
116 assert(index
!= TCG_REG_CALL_STACK
);
117 tci_reg
[index
] = value
;
120 #if TCG_TARGET_REG_BITS == 64
121 static void tci_write_reg32s(TCGReg index
, int32_t value
)
123 tci_write_reg(index
, value
);
127 static void tci_write_reg8(TCGReg index
, uint8_t value
)
129 tci_write_reg(index
, value
);
132 static void tci_write_reg32(TCGReg index
, uint32_t value
)
134 tci_write_reg(index
, value
);
137 #if TCG_TARGET_REG_BITS == 32
138 static void tci_write_reg64(uint32_t high_index
, uint32_t low_index
,
141 tci_write_reg(low_index
, value
);
142 tci_write_reg(high_index
, value
>> 32);
144 #elif TCG_TARGET_REG_BITS == 64
145 static void tci_write_reg64(TCGReg index
, uint64_t value
)
147 tci_write_reg(index
, value
);
151 #if TCG_TARGET_REG_BITS == 32
152 /* Create a 64 bit value from two 32 bit values. */
153 static uint64_t tci_uint64(uint32_t high
, uint32_t low
)
155 return ((uint64_t)high
<< 32) + low
;
159 /* Read constant (native size) from bytecode. */
160 static tcg_target_ulong
tci_read_i(uint8_t **tb_ptr
)
162 tcg_target_ulong value
= *(tcg_target_ulong
*)(*tb_ptr
);
163 *tb_ptr
+= sizeof(value
);
167 /* Read unsigned constant (32 bit) from bytecode. */
168 static uint32_t tci_read_i32(uint8_t **tb_ptr
)
170 uint32_t value
= *(uint32_t *)(*tb_ptr
);
171 *tb_ptr
+= sizeof(value
);
175 /* Read signed constant (32 bit) from bytecode. */
176 static int32_t tci_read_s32(uint8_t **tb_ptr
)
178 int32_t value
= *(int32_t *)(*tb_ptr
);
179 *tb_ptr
+= sizeof(value
);
183 #if TCG_TARGET_REG_BITS == 64
184 /* Read constant (64 bit) from bytecode. */
185 static uint64_t tci_read_i64(uint8_t **tb_ptr
)
187 uint64_t value
= *(uint64_t *)(*tb_ptr
);
188 *tb_ptr
+= sizeof(value
);
193 /* Read indexed register (native size) from bytecode. */
194 static tcg_target_ulong
tci_read_r(uint8_t **tb_ptr
)
196 tcg_target_ulong value
= tci_read_reg(**tb_ptr
);
201 /* Read indexed register (8 bit) from bytecode. */
202 static uint8_t tci_read_r8(uint8_t **tb_ptr
)
204 uint8_t value
= tci_read_reg8(**tb_ptr
);
209 #if TCG_TARGET_HAS_ext8s_i32 || TCG_TARGET_HAS_ext8s_i64
210 /* Read indexed register (8 bit signed) from bytecode. */
211 static int8_t tci_read_r8s(uint8_t **tb_ptr
)
213 int8_t value
= tci_read_reg8s(**tb_ptr
);
219 /* Read indexed register (16 bit) from bytecode. */
220 static uint16_t tci_read_r16(uint8_t **tb_ptr
)
222 uint16_t value
= tci_read_reg16(**tb_ptr
);
227 #if TCG_TARGET_HAS_ext16s_i32 || TCG_TARGET_HAS_ext16s_i64
228 /* Read indexed register (16 bit signed) from bytecode. */
229 static int16_t tci_read_r16s(uint8_t **tb_ptr
)
231 int16_t value
= tci_read_reg16s(**tb_ptr
);
237 /* Read indexed register (32 bit) from bytecode. */
238 static uint32_t tci_read_r32(uint8_t **tb_ptr
)
240 uint32_t value
= tci_read_reg32(**tb_ptr
);
245 #if TCG_TARGET_REG_BITS == 32
246 /* Read two indexed registers (2 * 32 bit) from bytecode. */
247 static uint64_t tci_read_r64(uint8_t **tb_ptr
)
249 uint32_t low
= tci_read_r32(tb_ptr
);
250 return tci_uint64(tci_read_r32(tb_ptr
), low
);
252 #elif TCG_TARGET_REG_BITS == 64
253 /* Read indexed register (32 bit signed) from bytecode. */
254 static int32_t tci_read_r32s(uint8_t **tb_ptr
)
256 int32_t value
= tci_read_reg32s(**tb_ptr
);
261 /* Read indexed register (64 bit) from bytecode. */
262 static uint64_t tci_read_r64(uint8_t **tb_ptr
)
264 uint64_t value
= tci_read_reg64(**tb_ptr
);
270 /* Read indexed register(s) with target address from bytecode. */
271 static target_ulong
tci_read_ulong(uint8_t **tb_ptr
)
273 target_ulong taddr
= tci_read_r(tb_ptr
);
274 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
275 taddr
+= (uint64_t)tci_read_r(tb_ptr
) << 32;
280 /* Read indexed register or constant (native size) from bytecode. */
281 static tcg_target_ulong
tci_read_ri(uint8_t **tb_ptr
)
283 tcg_target_ulong value
;
286 if (r
== TCG_CONST
) {
287 value
= tci_read_i(tb_ptr
);
289 value
= tci_read_reg(r
);
294 /* Read indexed register or constant (32 bit) from bytecode. */
295 static uint32_t tci_read_ri32(uint8_t **tb_ptr
)
300 if (r
== TCG_CONST
) {
301 value
= tci_read_i32(tb_ptr
);
303 value
= tci_read_reg32(r
);
308 #if TCG_TARGET_REG_BITS == 32
309 /* Read two indexed registers or constants (2 * 32 bit) from bytecode. */
310 static uint64_t tci_read_ri64(uint8_t **tb_ptr
)
312 uint32_t low
= tci_read_ri32(tb_ptr
);
313 return tci_uint64(tci_read_ri32(tb_ptr
), low
);
315 #elif TCG_TARGET_REG_BITS == 64
316 /* Read indexed register or constant (64 bit) from bytecode. */
317 static uint64_t tci_read_ri64(uint8_t **tb_ptr
)
322 if (r
== TCG_CONST
) {
323 value
= tci_read_i64(tb_ptr
);
325 value
= tci_read_reg64(r
);
331 static tcg_target_ulong
tci_read_label(uint8_t **tb_ptr
)
333 tcg_target_ulong label
= tci_read_i(tb_ptr
);
338 static bool tci_compare32(uint32_t u0
, uint32_t u1
, TCGCond condition
)
380 static bool tci_compare64(uint64_t u0
, uint64_t u1
, TCGCond condition
)
422 #ifdef CONFIG_SOFTMMU
423 # define mmuidx tci_read_i(&tb_ptr)
424 # define qemu_ld_ub \
425 helper_ret_ldub_mmu(env, taddr, mmuidx, (uintptr_t)tb_ptr)
426 # define qemu_ld_leuw \
427 helper_le_lduw_mmu(env, taddr, mmuidx, (uintptr_t)tb_ptr)
428 # define qemu_ld_leul \
429 helper_le_ldul_mmu(env, taddr, mmuidx, (uintptr_t)tb_ptr)
430 # define qemu_ld_leq \
431 helper_le_ldq_mmu(env, taddr, mmuidx, (uintptr_t)tb_ptr)
432 # define qemu_ld_beuw \
433 helper_be_lduw_mmu(env, taddr, mmuidx, (uintptr_t)tb_ptr)
434 # define qemu_ld_beul \
435 helper_be_ldul_mmu(env, taddr, mmuidx, (uintptr_t)tb_ptr)
436 # define qemu_ld_beq \
437 helper_be_ldq_mmu(env, taddr, mmuidx, (uintptr_t)tb_ptr)
438 # define qemu_st_b(X) \
439 helper_ret_stb_mmu(env, taddr, X, mmuidx, (uintptr_t)tb_ptr)
440 # define qemu_st_lew(X) \
441 helper_le_stw_mmu(env, taddr, X, mmuidx, (uintptr_t)tb_ptr)
442 # define qemu_st_lel(X) \
443 helper_le_stl_mmu(env, taddr, X, mmuidx, (uintptr_t)tb_ptr)
444 # define qemu_st_leq(X) \
445 helper_le_stq_mmu(env, taddr, X, mmuidx, (uintptr_t)tb_ptr)
446 # define qemu_st_bew(X) \
447 helper_be_stw_mmu(env, taddr, X, mmuidx, (uintptr_t)tb_ptr)
448 # define qemu_st_bel(X) \
449 helper_be_stl_mmu(env, taddr, X, mmuidx, (uintptr_t)tb_ptr)
450 # define qemu_st_beq(X) \
451 helper_be_stq_mmu(env, taddr, X, mmuidx, (uintptr_t)tb_ptr)
453 # define qemu_ld_ub ldub_p(g2h(taddr))
454 # define qemu_ld_leuw lduw_le_p(g2h(taddr))
455 # define qemu_ld_leul (uint32_t)ldl_le_p(g2h(taddr))
456 # define qemu_ld_leq ldq_le_p(g2h(taddr))
457 # define qemu_ld_beuw lduw_be_p(g2h(taddr))
458 # define qemu_ld_beul (uint32_t)ldl_be_p(g2h(taddr))
459 # define qemu_ld_beq ldq_be_p(g2h(taddr))
460 # define qemu_st_b(X) stb_p(g2h(taddr), X)
461 # define qemu_st_lew(X) stw_le_p(g2h(taddr), X)
462 # define qemu_st_lel(X) stl_le_p(g2h(taddr), X)
463 # define qemu_st_leq(X) stq_le_p(g2h(taddr), X)
464 # define qemu_st_bew(X) stw_be_p(g2h(taddr), X)
465 # define qemu_st_bel(X) stl_be_p(g2h(taddr), X)
466 # define qemu_st_beq(X) stq_be_p(g2h(taddr), X)
469 /* Interpret pseudo code in tb. */
470 uintptr_t tcg_qemu_tb_exec(CPUArchState
*env
, uint8_t *tb_ptr
)
472 long tcg_temps
[CPU_TEMP_BUF_NLONGS
];
473 uintptr_t sp_value
= (uintptr_t)(tcg_temps
+ CPU_TEMP_BUF_NLONGS
);
474 uintptr_t next_tb
= 0;
476 tci_reg
[TCG_AREG0
] = (tcg_target_ulong
)env
;
477 tci_reg
[TCG_REG_CALL_STACK
] = sp_value
;
481 TCGOpcode opc
= tb_ptr
[0];
483 uint8_t op_size
= tb_ptr
[1];
484 uint8_t *old_code_ptr
= tb_ptr
;
489 tcg_target_ulong label
;
496 #if TCG_TARGET_REG_BITS == 32
502 tci_tb_ptr
= (uintptr_t)tb_ptr
;
505 /* Skip opcode and size entry. */
510 t0
= tci_read_ri(&tb_ptr
);
511 #if TCG_TARGET_REG_BITS == 32
512 tmp64
= ((helper_function
)t0
)(tci_read_reg(TCG_REG_R0
),
513 tci_read_reg(TCG_REG_R1
),
514 tci_read_reg(TCG_REG_R2
),
515 tci_read_reg(TCG_REG_R3
),
516 tci_read_reg(TCG_REG_R5
),
517 tci_read_reg(TCG_REG_R6
),
518 tci_read_reg(TCG_REG_R7
),
519 tci_read_reg(TCG_REG_R8
),
520 tci_read_reg(TCG_REG_R9
),
521 tci_read_reg(TCG_REG_R10
));
522 tci_write_reg(TCG_REG_R0
, tmp64
);
523 tci_write_reg(TCG_REG_R1
, tmp64
>> 32);
525 tmp64
= ((helper_function
)t0
)(tci_read_reg(TCG_REG_R0
),
526 tci_read_reg(TCG_REG_R1
),
527 tci_read_reg(TCG_REG_R2
),
528 tci_read_reg(TCG_REG_R3
),
529 tci_read_reg(TCG_REG_R5
));
530 tci_write_reg(TCG_REG_R0
, tmp64
);
534 label
= tci_read_label(&tb_ptr
);
535 assert(tb_ptr
== old_code_ptr
+ op_size
);
536 tb_ptr
= (uint8_t *)label
;
538 case INDEX_op_setcond_i32
:
540 t1
= tci_read_r32(&tb_ptr
);
541 t2
= tci_read_ri32(&tb_ptr
);
542 condition
= *tb_ptr
++;
543 tci_write_reg32(t0
, tci_compare32(t1
, t2
, condition
));
545 #if TCG_TARGET_REG_BITS == 32
546 case INDEX_op_setcond2_i32
:
548 tmp64
= tci_read_r64(&tb_ptr
);
549 v64
= tci_read_ri64(&tb_ptr
);
550 condition
= *tb_ptr
++;
551 tci_write_reg32(t0
, tci_compare64(tmp64
, v64
, condition
));
553 #elif TCG_TARGET_REG_BITS == 64
554 case INDEX_op_setcond_i64
:
556 t1
= tci_read_r64(&tb_ptr
);
557 t2
= tci_read_ri64(&tb_ptr
);
558 condition
= *tb_ptr
++;
559 tci_write_reg64(t0
, tci_compare64(t1
, t2
, condition
));
562 case INDEX_op_mov_i32
:
564 t1
= tci_read_r32(&tb_ptr
);
565 tci_write_reg32(t0
, t1
);
567 case INDEX_op_movi_i32
:
569 t1
= tci_read_i32(&tb_ptr
);
570 tci_write_reg32(t0
, t1
);
573 /* Load/store operations (32 bit). */
575 case INDEX_op_ld8u_i32
:
577 t1
= tci_read_r(&tb_ptr
);
578 t2
= tci_read_s32(&tb_ptr
);
579 tci_write_reg8(t0
, *(uint8_t *)(t1
+ t2
));
581 case INDEX_op_ld8s_i32
:
582 case INDEX_op_ld16u_i32
:
585 case INDEX_op_ld16s_i32
:
588 case INDEX_op_ld_i32
:
590 t1
= tci_read_r(&tb_ptr
);
591 t2
= tci_read_s32(&tb_ptr
);
592 tci_write_reg32(t0
, *(uint32_t *)(t1
+ t2
));
594 case INDEX_op_st8_i32
:
595 t0
= tci_read_r8(&tb_ptr
);
596 t1
= tci_read_r(&tb_ptr
);
597 t2
= tci_read_s32(&tb_ptr
);
598 *(uint8_t *)(t1
+ t2
) = t0
;
600 case INDEX_op_st16_i32
:
601 t0
= tci_read_r16(&tb_ptr
);
602 t1
= tci_read_r(&tb_ptr
);
603 t2
= tci_read_s32(&tb_ptr
);
604 *(uint16_t *)(t1
+ t2
) = t0
;
606 case INDEX_op_st_i32
:
607 t0
= tci_read_r32(&tb_ptr
);
608 t1
= tci_read_r(&tb_ptr
);
609 t2
= tci_read_s32(&tb_ptr
);
610 assert(t1
!= sp_value
|| (int32_t)t2
< 0);
611 *(uint32_t *)(t1
+ t2
) = t0
;
614 /* Arithmetic operations (32 bit). */
616 case INDEX_op_add_i32
:
618 t1
= tci_read_ri32(&tb_ptr
);
619 t2
= tci_read_ri32(&tb_ptr
);
620 tci_write_reg32(t0
, t1
+ t2
);
622 case INDEX_op_sub_i32
:
624 t1
= tci_read_ri32(&tb_ptr
);
625 t2
= tci_read_ri32(&tb_ptr
);
626 tci_write_reg32(t0
, t1
- t2
);
628 case INDEX_op_mul_i32
:
630 t1
= tci_read_ri32(&tb_ptr
);
631 t2
= tci_read_ri32(&tb_ptr
);
632 tci_write_reg32(t0
, t1
* t2
);
634 #if TCG_TARGET_HAS_div_i32
635 case INDEX_op_div_i32
:
637 t1
= tci_read_ri32(&tb_ptr
);
638 t2
= tci_read_ri32(&tb_ptr
);
639 tci_write_reg32(t0
, (int32_t)t1
/ (int32_t)t2
);
641 case INDEX_op_divu_i32
:
643 t1
= tci_read_ri32(&tb_ptr
);
644 t2
= tci_read_ri32(&tb_ptr
);
645 tci_write_reg32(t0
, t1
/ t2
);
647 case INDEX_op_rem_i32
:
649 t1
= tci_read_ri32(&tb_ptr
);
650 t2
= tci_read_ri32(&tb_ptr
);
651 tci_write_reg32(t0
, (int32_t)t1
% (int32_t)t2
);
653 case INDEX_op_remu_i32
:
655 t1
= tci_read_ri32(&tb_ptr
);
656 t2
= tci_read_ri32(&tb_ptr
);
657 tci_write_reg32(t0
, t1
% t2
);
659 #elif TCG_TARGET_HAS_div2_i32
660 case INDEX_op_div2_i32
:
661 case INDEX_op_divu2_i32
:
665 case INDEX_op_and_i32
:
667 t1
= tci_read_ri32(&tb_ptr
);
668 t2
= tci_read_ri32(&tb_ptr
);
669 tci_write_reg32(t0
, t1
& t2
);
671 case INDEX_op_or_i32
:
673 t1
= tci_read_ri32(&tb_ptr
);
674 t2
= tci_read_ri32(&tb_ptr
);
675 tci_write_reg32(t0
, t1
| t2
);
677 case INDEX_op_xor_i32
:
679 t1
= tci_read_ri32(&tb_ptr
);
680 t2
= tci_read_ri32(&tb_ptr
);
681 tci_write_reg32(t0
, t1
^ t2
);
684 /* Shift/rotate operations (32 bit). */
686 case INDEX_op_shl_i32
:
688 t1
= tci_read_ri32(&tb_ptr
);
689 t2
= tci_read_ri32(&tb_ptr
);
690 tci_write_reg32(t0
, t1
<< (t2
& 31));
692 case INDEX_op_shr_i32
:
694 t1
= tci_read_ri32(&tb_ptr
);
695 t2
= tci_read_ri32(&tb_ptr
);
696 tci_write_reg32(t0
, t1
>> (t2
& 31));
698 case INDEX_op_sar_i32
:
700 t1
= tci_read_ri32(&tb_ptr
);
701 t2
= tci_read_ri32(&tb_ptr
);
702 tci_write_reg32(t0
, ((int32_t)t1
>> (t2
& 31)));
704 #if TCG_TARGET_HAS_rot_i32
705 case INDEX_op_rotl_i32
:
707 t1
= tci_read_ri32(&tb_ptr
);
708 t2
= tci_read_ri32(&tb_ptr
);
709 tci_write_reg32(t0
, rol32(t1
, t2
& 31));
711 case INDEX_op_rotr_i32
:
713 t1
= tci_read_ri32(&tb_ptr
);
714 t2
= tci_read_ri32(&tb_ptr
);
715 tci_write_reg32(t0
, ror32(t1
, t2
& 31));
718 #if TCG_TARGET_HAS_deposit_i32
719 case INDEX_op_deposit_i32
:
721 t1
= tci_read_r32(&tb_ptr
);
722 t2
= tci_read_r32(&tb_ptr
);
725 tmp32
= (((1 << tmp8
) - 1) << tmp16
);
726 tci_write_reg32(t0
, (t1
& ~tmp32
) | ((t2
<< tmp16
) & tmp32
));
729 case INDEX_op_brcond_i32
:
730 t0
= tci_read_r32(&tb_ptr
);
731 t1
= tci_read_ri32(&tb_ptr
);
732 condition
= *tb_ptr
++;
733 label
= tci_read_label(&tb_ptr
);
734 if (tci_compare32(t0
, t1
, condition
)) {
735 assert(tb_ptr
== old_code_ptr
+ op_size
);
736 tb_ptr
= (uint8_t *)label
;
740 #if TCG_TARGET_REG_BITS == 32
741 case INDEX_op_add2_i32
:
744 tmp64
= tci_read_r64(&tb_ptr
);
745 tmp64
+= tci_read_r64(&tb_ptr
);
746 tci_write_reg64(t1
, t0
, tmp64
);
748 case INDEX_op_sub2_i32
:
751 tmp64
= tci_read_r64(&tb_ptr
);
752 tmp64
-= tci_read_r64(&tb_ptr
);
753 tci_write_reg64(t1
, t0
, tmp64
);
755 case INDEX_op_brcond2_i32
:
756 tmp64
= tci_read_r64(&tb_ptr
);
757 v64
= tci_read_ri64(&tb_ptr
);
758 condition
= *tb_ptr
++;
759 label
= tci_read_label(&tb_ptr
);
760 if (tci_compare64(tmp64
, v64
, condition
)) {
761 assert(tb_ptr
== old_code_ptr
+ op_size
);
762 tb_ptr
= (uint8_t *)label
;
766 case INDEX_op_mulu2_i32
:
769 t2
= tci_read_r32(&tb_ptr
);
770 tmp64
= tci_read_r32(&tb_ptr
);
771 tci_write_reg64(t1
, t0
, t2
* tmp64
);
773 #endif /* TCG_TARGET_REG_BITS == 32 */
774 #if TCG_TARGET_HAS_ext8s_i32
775 case INDEX_op_ext8s_i32
:
777 t1
= tci_read_r8s(&tb_ptr
);
778 tci_write_reg32(t0
, t1
);
781 #if TCG_TARGET_HAS_ext16s_i32
782 case INDEX_op_ext16s_i32
:
784 t1
= tci_read_r16s(&tb_ptr
);
785 tci_write_reg32(t0
, t1
);
788 #if TCG_TARGET_HAS_ext8u_i32
789 case INDEX_op_ext8u_i32
:
791 t1
= tci_read_r8(&tb_ptr
);
792 tci_write_reg32(t0
, t1
);
795 #if TCG_TARGET_HAS_ext16u_i32
796 case INDEX_op_ext16u_i32
:
798 t1
= tci_read_r16(&tb_ptr
);
799 tci_write_reg32(t0
, t1
);
802 #if TCG_TARGET_HAS_bswap16_i32
803 case INDEX_op_bswap16_i32
:
805 t1
= tci_read_r16(&tb_ptr
);
806 tci_write_reg32(t0
, bswap16(t1
));
809 #if TCG_TARGET_HAS_bswap32_i32
810 case INDEX_op_bswap32_i32
:
812 t1
= tci_read_r32(&tb_ptr
);
813 tci_write_reg32(t0
, bswap32(t1
));
816 #if TCG_TARGET_HAS_not_i32
817 case INDEX_op_not_i32
:
819 t1
= tci_read_r32(&tb_ptr
);
820 tci_write_reg32(t0
, ~t1
);
823 #if TCG_TARGET_HAS_neg_i32
824 case INDEX_op_neg_i32
:
826 t1
= tci_read_r32(&tb_ptr
);
827 tci_write_reg32(t0
, -t1
);
830 #if TCG_TARGET_REG_BITS == 64
831 case INDEX_op_mov_i64
:
833 t1
= tci_read_r64(&tb_ptr
);
834 tci_write_reg64(t0
, t1
);
836 case INDEX_op_movi_i64
:
838 t1
= tci_read_i64(&tb_ptr
);
839 tci_write_reg64(t0
, t1
);
842 /* Load/store operations (64 bit). */
844 case INDEX_op_ld8u_i64
:
846 t1
= tci_read_r(&tb_ptr
);
847 t2
= tci_read_s32(&tb_ptr
);
848 tci_write_reg8(t0
, *(uint8_t *)(t1
+ t2
));
850 case INDEX_op_ld8s_i64
:
851 case INDEX_op_ld16u_i64
:
852 case INDEX_op_ld16s_i64
:
855 case INDEX_op_ld32u_i64
:
857 t1
= tci_read_r(&tb_ptr
);
858 t2
= tci_read_s32(&tb_ptr
);
859 tci_write_reg32(t0
, *(uint32_t *)(t1
+ t2
));
861 case INDEX_op_ld32s_i64
:
863 t1
= tci_read_r(&tb_ptr
);
864 t2
= tci_read_s32(&tb_ptr
);
865 tci_write_reg32s(t0
, *(int32_t *)(t1
+ t2
));
867 case INDEX_op_ld_i64
:
869 t1
= tci_read_r(&tb_ptr
);
870 t2
= tci_read_s32(&tb_ptr
);
871 tci_write_reg64(t0
, *(uint64_t *)(t1
+ t2
));
873 case INDEX_op_st8_i64
:
874 t0
= tci_read_r8(&tb_ptr
);
875 t1
= tci_read_r(&tb_ptr
);
876 t2
= tci_read_s32(&tb_ptr
);
877 *(uint8_t *)(t1
+ t2
) = t0
;
879 case INDEX_op_st16_i64
:
880 t0
= tci_read_r16(&tb_ptr
);
881 t1
= tci_read_r(&tb_ptr
);
882 t2
= tci_read_s32(&tb_ptr
);
883 *(uint16_t *)(t1
+ t2
) = t0
;
885 case INDEX_op_st32_i64
:
886 t0
= tci_read_r32(&tb_ptr
);
887 t1
= tci_read_r(&tb_ptr
);
888 t2
= tci_read_s32(&tb_ptr
);
889 *(uint32_t *)(t1
+ t2
) = t0
;
891 case INDEX_op_st_i64
:
892 t0
= tci_read_r64(&tb_ptr
);
893 t1
= tci_read_r(&tb_ptr
);
894 t2
= tci_read_s32(&tb_ptr
);
895 assert(t1
!= sp_value
|| (int32_t)t2
< 0);
896 *(uint64_t *)(t1
+ t2
) = t0
;
899 /* Arithmetic operations (64 bit). */
901 case INDEX_op_add_i64
:
903 t1
= tci_read_ri64(&tb_ptr
);
904 t2
= tci_read_ri64(&tb_ptr
);
905 tci_write_reg64(t0
, t1
+ t2
);
907 case INDEX_op_sub_i64
:
909 t1
= tci_read_ri64(&tb_ptr
);
910 t2
= tci_read_ri64(&tb_ptr
);
911 tci_write_reg64(t0
, t1
- t2
);
913 case INDEX_op_mul_i64
:
915 t1
= tci_read_ri64(&tb_ptr
);
916 t2
= tci_read_ri64(&tb_ptr
);
917 tci_write_reg64(t0
, t1
* t2
);
919 #if TCG_TARGET_HAS_div_i64
920 case INDEX_op_div_i64
:
921 case INDEX_op_divu_i64
:
922 case INDEX_op_rem_i64
:
923 case INDEX_op_remu_i64
:
926 #elif TCG_TARGET_HAS_div2_i64
927 case INDEX_op_div2_i64
:
928 case INDEX_op_divu2_i64
:
932 case INDEX_op_and_i64
:
934 t1
= tci_read_ri64(&tb_ptr
);
935 t2
= tci_read_ri64(&tb_ptr
);
936 tci_write_reg64(t0
, t1
& t2
);
938 case INDEX_op_or_i64
:
940 t1
= tci_read_ri64(&tb_ptr
);
941 t2
= tci_read_ri64(&tb_ptr
);
942 tci_write_reg64(t0
, t1
| t2
);
944 case INDEX_op_xor_i64
:
946 t1
= tci_read_ri64(&tb_ptr
);
947 t2
= tci_read_ri64(&tb_ptr
);
948 tci_write_reg64(t0
, t1
^ t2
);
951 /* Shift/rotate operations (64 bit). */
953 case INDEX_op_shl_i64
:
955 t1
= tci_read_ri64(&tb_ptr
);
956 t2
= tci_read_ri64(&tb_ptr
);
957 tci_write_reg64(t0
, t1
<< (t2
& 63));
959 case INDEX_op_shr_i64
:
961 t1
= tci_read_ri64(&tb_ptr
);
962 t2
= tci_read_ri64(&tb_ptr
);
963 tci_write_reg64(t0
, t1
>> (t2
& 63));
965 case INDEX_op_sar_i64
:
967 t1
= tci_read_ri64(&tb_ptr
);
968 t2
= tci_read_ri64(&tb_ptr
);
969 tci_write_reg64(t0
, ((int64_t)t1
>> (t2
& 63)));
971 #if TCG_TARGET_HAS_rot_i64
972 case INDEX_op_rotl_i64
:
974 t1
= tci_read_ri64(&tb_ptr
);
975 t2
= tci_read_ri64(&tb_ptr
);
976 tci_write_reg64(t0
, rol64(t1
, t2
& 63));
978 case INDEX_op_rotr_i64
:
980 t1
= tci_read_ri64(&tb_ptr
);
981 t2
= tci_read_ri64(&tb_ptr
);
982 tci_write_reg64(t0
, ror64(t1
, t2
& 63));
985 #if TCG_TARGET_HAS_deposit_i64
986 case INDEX_op_deposit_i64
:
988 t1
= tci_read_r64(&tb_ptr
);
989 t2
= tci_read_r64(&tb_ptr
);
992 tmp64
= (((1ULL << tmp8
) - 1) << tmp16
);
993 tci_write_reg64(t0
, (t1
& ~tmp64
) | ((t2
<< tmp16
) & tmp64
));
996 case INDEX_op_brcond_i64
:
997 t0
= tci_read_r64(&tb_ptr
);
998 t1
= tci_read_ri64(&tb_ptr
);
999 condition
= *tb_ptr
++;
1000 label
= tci_read_label(&tb_ptr
);
1001 if (tci_compare64(t0
, t1
, condition
)) {
1002 assert(tb_ptr
== old_code_ptr
+ op_size
);
1003 tb_ptr
= (uint8_t *)label
;
1007 #if TCG_TARGET_HAS_ext8u_i64
1008 case INDEX_op_ext8u_i64
:
1010 t1
= tci_read_r8(&tb_ptr
);
1011 tci_write_reg64(t0
, t1
);
1014 #if TCG_TARGET_HAS_ext8s_i64
1015 case INDEX_op_ext8s_i64
:
1017 t1
= tci_read_r8s(&tb_ptr
);
1018 tci_write_reg64(t0
, t1
);
1021 #if TCG_TARGET_HAS_ext16s_i64
1022 case INDEX_op_ext16s_i64
:
1024 t1
= tci_read_r16s(&tb_ptr
);
1025 tci_write_reg64(t0
, t1
);
1028 #if TCG_TARGET_HAS_ext16u_i64
1029 case INDEX_op_ext16u_i64
:
1031 t1
= tci_read_r16(&tb_ptr
);
1032 tci_write_reg64(t0
, t1
);
1035 #if TCG_TARGET_HAS_ext32s_i64
1036 case INDEX_op_ext32s_i64
:
1038 t1
= tci_read_r32s(&tb_ptr
);
1039 tci_write_reg64(t0
, t1
);
1042 #if TCG_TARGET_HAS_ext32u_i64
1043 case INDEX_op_ext32u_i64
:
1045 t1
= tci_read_r32(&tb_ptr
);
1046 tci_write_reg64(t0
, t1
);
1049 #if TCG_TARGET_HAS_bswap16_i64
1050 case INDEX_op_bswap16_i64
:
1053 t1
= tci_read_r16(&tb_ptr
);
1054 tci_write_reg64(t0
, bswap16(t1
));
1057 #if TCG_TARGET_HAS_bswap32_i64
1058 case INDEX_op_bswap32_i64
:
1060 t1
= tci_read_r32(&tb_ptr
);
1061 tci_write_reg64(t0
, bswap32(t1
));
1064 #if TCG_TARGET_HAS_bswap64_i64
1065 case INDEX_op_bswap64_i64
:
1067 t1
= tci_read_r64(&tb_ptr
);
1068 tci_write_reg64(t0
, bswap64(t1
));
1071 #if TCG_TARGET_HAS_not_i64
1072 case INDEX_op_not_i64
:
1074 t1
= tci_read_r64(&tb_ptr
);
1075 tci_write_reg64(t0
, ~t1
);
1078 #if TCG_TARGET_HAS_neg_i64
1079 case INDEX_op_neg_i64
:
1081 t1
= tci_read_r64(&tb_ptr
);
1082 tci_write_reg64(t0
, -t1
);
1085 #endif /* TCG_TARGET_REG_BITS == 64 */
1087 /* QEMU specific operations. */
1089 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
1090 case INDEX_op_debug_insn_start
:
1094 case INDEX_op_debug_insn_start
:
1098 case INDEX_op_exit_tb
:
1099 next_tb
= *(uint64_t *)tb_ptr
;
1102 case INDEX_op_goto_tb
:
1103 t0
= tci_read_i32(&tb_ptr
);
1104 assert(tb_ptr
== old_code_ptr
+ op_size
);
1105 tb_ptr
+= (int32_t)t0
;
1107 case INDEX_op_qemu_ld_i32
:
1109 taddr
= tci_read_ulong(&tb_ptr
);
1110 memop
= tci_read_i(&tb_ptr
);
1116 tmp32
= (int8_t)qemu_ld_ub
;
1119 tmp32
= qemu_ld_leuw
;
1122 tmp32
= (int16_t)qemu_ld_leuw
;
1125 tmp32
= qemu_ld_leul
;
1128 tmp32
= qemu_ld_beuw
;
1131 tmp32
= (int16_t)qemu_ld_beuw
;
1134 tmp32
= qemu_ld_beul
;
1139 tci_write_reg(t0
, tmp32
);
1141 case INDEX_op_qemu_ld_i64
:
1143 if (TCG_TARGET_REG_BITS
== 32) {
1146 taddr
= tci_read_ulong(&tb_ptr
);
1147 memop
= tci_read_i(&tb_ptr
);
1153 tmp64
= (int8_t)qemu_ld_ub
;
1156 tmp64
= qemu_ld_leuw
;
1159 tmp64
= (int16_t)qemu_ld_leuw
;
1162 tmp64
= qemu_ld_leul
;
1165 tmp64
= (int32_t)qemu_ld_leul
;
1168 tmp64
= qemu_ld_leq
;
1171 tmp64
= qemu_ld_beuw
;
1174 tmp64
= (int16_t)qemu_ld_beuw
;
1177 tmp64
= qemu_ld_beul
;
1180 tmp64
= (int32_t)qemu_ld_beul
;
1183 tmp64
= qemu_ld_beq
;
1188 tci_write_reg(t0
, tmp64
);
1189 if (TCG_TARGET_REG_BITS
== 32) {
1190 tci_write_reg(t1
, tmp64
>> 32);
1193 case INDEX_op_qemu_st_i32
:
1194 t0
= tci_read_r(&tb_ptr
);
1195 taddr
= tci_read_ulong(&tb_ptr
);
1196 memop
= tci_read_i(&tb_ptr
);
1217 case INDEX_op_qemu_st_i64
:
1218 tmp64
= tci_read_r64(&tb_ptr
);
1219 taddr
= tci_read_ulong(&tb_ptr
);
1220 memop
= tci_read_i(&tb_ptr
);
1251 assert(tb_ptr
== old_code_ptr
+ op_size
);