4 * Copyright (c) 2005-2007 CodeSourcery
5 * Written by Paul Brook
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #include "disas/disas.h"
25 #include "exec/cpu_ldst.h"
27 #include "exec/helper-proto.h"
28 #include "exec/helper-gen.h"
30 //#define DEBUG_DISPATCH 1
32 /* Fake floating point. */
33 #define tcg_gen_mov_f64 tcg_gen_mov_i64
34 #define tcg_gen_qemu_ldf64 tcg_gen_qemu_ld64
35 #define tcg_gen_qemu_stf64 tcg_gen_qemu_st64
37 #define DEFO32(name, offset) static TCGv QREG_##name;
38 #define DEFO64(name, offset) static TCGv_i64 QREG_##name;
39 #define DEFF64(name, offset) static TCGv_i64 QREG_##name;
45 static TCGv_i32 cpu_halted
;
46 static TCGv_i32 cpu_exception_index
;
48 static TCGv_ptr cpu_env
;
50 static char cpu_reg_names
[3*8*3 + 5*4];
51 static TCGv cpu_dregs
[8];
52 static TCGv cpu_aregs
[8];
53 static TCGv_i64 cpu_fregs
[8];
54 static TCGv_i64 cpu_macc
[4];
56 #define DREG(insn, pos) cpu_dregs[((insn) >> (pos)) & 7]
57 #define AREG(insn, pos) cpu_aregs[((insn) >> (pos)) & 7]
58 #define FREG(insn, pos) cpu_fregs[((insn) >> (pos)) & 7]
59 #define MACREG(acc) cpu_macc[acc]
60 #define QREG_SP cpu_aregs[7]
62 static TCGv NULL_QREG
;
63 #define IS_NULL_QREG(t) (TCGV_EQUAL(t, NULL_QREG))
64 /* Used to distinguish stores from bad addressing modes. */
65 static TCGv store_dummy
;
67 #include "exec/gen-icount.h"
69 void m68k_tcg_init(void)
74 #define DEFO32(name, offset) QREG_##name = tcg_global_mem_new_i32(TCG_AREG0, offsetof(CPUM68KState, offset), #name);
75 #define DEFO64(name, offset) QREG_##name = tcg_global_mem_new_i64(TCG_AREG0, offsetof(CPUM68KState, offset), #name);
76 #define DEFF64(name, offset) DEFO64(name, offset)
82 cpu_halted
= tcg_global_mem_new_i32(TCG_AREG0
,
83 -offsetof(M68kCPU
, env
) +
84 offsetof(CPUState
, halted
), "HALTED");
85 cpu_exception_index
= tcg_global_mem_new_i32(TCG_AREG0
,
86 -offsetof(M68kCPU
, env
) +
87 offsetof(CPUState
, exception_index
),
90 cpu_env
= tcg_global_reg_new_ptr(TCG_AREG0
, "env");
93 for (i
= 0; i
< 8; i
++) {
95 cpu_dregs
[i
] = tcg_global_mem_new(TCG_AREG0
,
96 offsetof(CPUM68KState
, dregs
[i
]), p
);
99 cpu_aregs
[i
] = tcg_global_mem_new(TCG_AREG0
,
100 offsetof(CPUM68KState
, aregs
[i
]), p
);
102 sprintf(p
, "F%d", i
);
103 cpu_fregs
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
104 offsetof(CPUM68KState
, fregs
[i
]), p
);
107 for (i
= 0; i
< 4; i
++) {
108 sprintf(p
, "ACC%d", i
);
109 cpu_macc
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
110 offsetof(CPUM68KState
, macc
[i
]), p
);
114 NULL_QREG
= tcg_global_mem_new(TCG_AREG0
, -4, "NULL");
115 store_dummy
= tcg_global_mem_new(TCG_AREG0
, -8, "NULL");
118 /* internal defines */
119 typedef struct DisasContext
{
121 target_ulong insn_pc
; /* Start of the current instruction. */
127 struct TranslationBlock
*tb
;
128 int singlestep_enabled
;
134 #define DISAS_JUMP_NEXT 4
136 #if defined(CONFIG_USER_ONLY)
139 #define IS_USER(s) s->user
142 /* XXX: move that elsewhere */
143 /* ??? Fix exceptions. */
144 static void *gen_throws_exception
;
145 #define gen_last_qop NULL
153 typedef void (*disas_proc
)(CPUM68KState
*env
, DisasContext
*s
, uint16_t insn
);
155 #ifdef DEBUG_DISPATCH
156 #define DISAS_INSN(name) \
157 static void real_disas_##name(CPUM68KState *env, DisasContext *s, \
159 static void disas_##name(CPUM68KState *env, DisasContext *s, \
162 qemu_log("Dispatch " #name "\n"); \
163 real_disas_##name(s, env, insn); \
165 static void real_disas_##name(CPUM68KState *env, DisasContext *s, \
168 #define DISAS_INSN(name) \
169 static void disas_##name(CPUM68KState *env, DisasContext *s, \
173 /* Generate a load from the specified address. Narrow values are
174 sign extended to full register width. */
175 static inline TCGv
gen_load(DisasContext
* s
, int opsize
, TCGv addr
, int sign
)
178 int index
= IS_USER(s
);
180 tmp
= tcg_temp_new_i32();
184 tcg_gen_qemu_ld8s(tmp
, addr
, index
);
186 tcg_gen_qemu_ld8u(tmp
, addr
, index
);
190 tcg_gen_qemu_ld16s(tmp
, addr
, index
);
192 tcg_gen_qemu_ld16u(tmp
, addr
, index
);
196 tcg_gen_qemu_ld32u(tmp
, addr
, index
);
199 g_assert_not_reached();
201 gen_throws_exception
= gen_last_qop
;
205 static inline TCGv_i64
gen_load64(DisasContext
* s
, TCGv addr
)
208 int index
= IS_USER(s
);
210 tmp
= tcg_temp_new_i64();
211 tcg_gen_qemu_ldf64(tmp
, addr
, index
);
212 gen_throws_exception
= gen_last_qop
;
216 /* Generate a store. */
217 static inline void gen_store(DisasContext
*s
, int opsize
, TCGv addr
, TCGv val
)
219 int index
= IS_USER(s
);
223 tcg_gen_qemu_st8(val
, addr
, index
);
226 tcg_gen_qemu_st16(val
, addr
, index
);
230 tcg_gen_qemu_st32(val
, addr
, index
);
233 g_assert_not_reached();
235 gen_throws_exception
= gen_last_qop
;
238 static inline void gen_store64(DisasContext
*s
, TCGv addr
, TCGv_i64 val
)
240 int index
= IS_USER(s
);
242 tcg_gen_qemu_stf64(val
, addr
, index
);
243 gen_throws_exception
= gen_last_qop
;
252 /* Generate an unsigned load if VAL is 0 a signed load if val is -1,
253 otherwise generate a store. */
254 static TCGv
gen_ldst(DisasContext
*s
, int opsize
, TCGv addr
, TCGv val
,
257 if (what
== EA_STORE
) {
258 gen_store(s
, opsize
, addr
, val
);
261 return gen_load(s
, opsize
, addr
, what
== EA_LOADS
);
265 /* Read a 32-bit immediate constant. */
266 static inline uint32_t read_im32(CPUM68KState
*env
, DisasContext
*s
)
269 im
= ((uint32_t)cpu_lduw_code(env
, s
->pc
)) << 16;
271 im
|= cpu_lduw_code(env
, s
->pc
);
276 /* Calculate and address index. */
277 static TCGv
gen_addr_index(uint16_t ext
, TCGv tmp
)
282 add
= (ext
& 0x8000) ? AREG(ext
, 12) : DREG(ext
, 12);
283 if ((ext
& 0x800) == 0) {
284 tcg_gen_ext16s_i32(tmp
, add
);
287 scale
= (ext
>> 9) & 3;
289 tcg_gen_shli_i32(tmp
, add
, scale
);
295 /* Handle a base + index + displacement effective addresss.
296 A NULL_QREG base means pc-relative. */
297 static TCGv
gen_lea_indexed(CPUM68KState
*env
, DisasContext
*s
, int opsize
,
307 ext
= cpu_lduw_code(env
, s
->pc
);
310 if ((ext
& 0x800) == 0 && !m68k_feature(s
->env
, M68K_FEATURE_WORD_INDEX
))
314 /* full extension word format */
315 if (!m68k_feature(s
->env
, M68K_FEATURE_EXT_FULL
))
318 if ((ext
& 0x30) > 0x10) {
319 /* base displacement */
320 if ((ext
& 0x30) == 0x20) {
321 bd
= (int16_t)cpu_lduw_code(env
, s
->pc
);
324 bd
= read_im32(env
, s
);
329 tmp
= tcg_temp_new();
330 if ((ext
& 0x44) == 0) {
332 add
= gen_addr_index(ext
, tmp
);
336 if ((ext
& 0x80) == 0) {
337 /* base not suppressed */
338 if (IS_NULL_QREG(base
)) {
339 base
= tcg_const_i32(offset
+ bd
);
342 if (!IS_NULL_QREG(add
)) {
343 tcg_gen_add_i32(tmp
, add
, base
);
349 if (!IS_NULL_QREG(add
)) {
351 tcg_gen_addi_i32(tmp
, add
, bd
);
355 add
= tcg_const_i32(bd
);
357 if ((ext
& 3) != 0) {
358 /* memory indirect */
359 base
= gen_load(s
, OS_LONG
, add
, 0);
360 if ((ext
& 0x44) == 4) {
361 add
= gen_addr_index(ext
, tmp
);
362 tcg_gen_add_i32(tmp
, add
, base
);
368 /* outer displacement */
369 if ((ext
& 3) == 2) {
370 od
= (int16_t)cpu_lduw_code(env
, s
->pc
);
373 od
= read_im32(env
, s
);
379 tcg_gen_addi_i32(tmp
, add
, od
);
384 /* brief extension word format */
385 tmp
= tcg_temp_new();
386 add
= gen_addr_index(ext
, tmp
);
387 if (!IS_NULL_QREG(base
)) {
388 tcg_gen_add_i32(tmp
, add
, base
);
390 tcg_gen_addi_i32(tmp
, tmp
, (int8_t)ext
);
392 tcg_gen_addi_i32(tmp
, add
, offset
+ (int8_t)ext
);
399 /* Update the CPU env CC_OP state. */
400 static inline void gen_flush_cc_op(DisasContext
*s
)
402 if (s
->cc_op
!= CC_OP_DYNAMIC
)
403 tcg_gen_movi_i32(QREG_CC_OP
, s
->cc_op
);
406 /* Evaluate all the CC flags. */
407 static inline void gen_flush_flags(DisasContext
*s
)
409 if (s
->cc_op
== CC_OP_FLAGS
)
412 gen_helper_flush_flags(cpu_env
, QREG_CC_OP
);
413 s
->cc_op
= CC_OP_FLAGS
;
416 static void gen_logic_cc(DisasContext
*s
, TCGv val
)
418 tcg_gen_mov_i32(QREG_CC_DEST
, val
);
419 s
->cc_op
= CC_OP_LOGIC
;
422 static void gen_update_cc_add(TCGv dest
, TCGv src
)
424 tcg_gen_mov_i32(QREG_CC_DEST
, dest
);
425 tcg_gen_mov_i32(QREG_CC_SRC
, src
);
428 static inline int opsize_bytes(int opsize
)
431 case OS_BYTE
: return 1;
432 case OS_WORD
: return 2;
433 case OS_LONG
: return 4;
434 case OS_SINGLE
: return 4;
435 case OS_DOUBLE
: return 8;
437 g_assert_not_reached();
441 /* Assign value to a register. If the width is less than the register width
442 only the low part of the register is set. */
443 static void gen_partset_reg(int opsize
, TCGv reg
, TCGv val
)
448 tcg_gen_andi_i32(reg
, reg
, 0xffffff00);
449 tmp
= tcg_temp_new();
450 tcg_gen_ext8u_i32(tmp
, val
);
451 tcg_gen_or_i32(reg
, reg
, tmp
);
454 tcg_gen_andi_i32(reg
, reg
, 0xffff0000);
455 tmp
= tcg_temp_new();
456 tcg_gen_ext16u_i32(tmp
, val
);
457 tcg_gen_or_i32(reg
, reg
, tmp
);
461 tcg_gen_mov_i32(reg
, val
);
464 g_assert_not_reached();
468 /* Sign or zero extend a value. */
469 static inline TCGv
gen_extend(TCGv val
, int opsize
, int sign
)
475 tmp
= tcg_temp_new();
477 tcg_gen_ext8s_i32(tmp
, val
);
479 tcg_gen_ext8u_i32(tmp
, val
);
482 tmp
= tcg_temp_new();
484 tcg_gen_ext16s_i32(tmp
, val
);
486 tcg_gen_ext16u_i32(tmp
, val
);
493 g_assert_not_reached();
498 /* Generate code for an "effective address". Does not adjust the base
499 register for autoincrement addressing modes. */
500 static TCGv
gen_lea(CPUM68KState
*env
, DisasContext
*s
, uint16_t insn
,
508 switch ((insn
>> 3) & 7) {
509 case 0: /* Data register direct. */
510 case 1: /* Address register direct. */
512 case 2: /* Indirect register */
513 case 3: /* Indirect postincrement. */
514 return AREG(insn
, 0);
515 case 4: /* Indirect predecrememnt. */
517 tmp
= tcg_temp_new();
518 tcg_gen_subi_i32(tmp
, reg
, opsize_bytes(opsize
));
520 case 5: /* Indirect displacement. */
522 tmp
= tcg_temp_new();
523 ext
= cpu_lduw_code(env
, s
->pc
);
525 tcg_gen_addi_i32(tmp
, reg
, (int16_t)ext
);
527 case 6: /* Indirect index + displacement. */
529 return gen_lea_indexed(env
, s
, opsize
, reg
);
532 case 0: /* Absolute short. */
533 offset
= cpu_ldsw_code(env
, s
->pc
);
535 return tcg_const_i32(offset
);
536 case 1: /* Absolute long. */
537 offset
= read_im32(env
, s
);
538 return tcg_const_i32(offset
);
539 case 2: /* pc displacement */
541 offset
+= cpu_ldsw_code(env
, s
->pc
);
543 return tcg_const_i32(offset
);
544 case 3: /* pc index+displacement. */
545 return gen_lea_indexed(env
, s
, opsize
, NULL_QREG
);
546 case 4: /* Immediate. */
551 /* Should never happen. */
555 /* Helper function for gen_ea. Reuse the computed address between the
556 for read/write operands. */
557 static inline TCGv
gen_ea_once(CPUM68KState
*env
, DisasContext
*s
,
558 uint16_t insn
, int opsize
, TCGv val
,
559 TCGv
*addrp
, ea_what what
)
563 if (addrp
&& what
== EA_STORE
) {
566 tmp
= gen_lea(env
, s
, insn
, opsize
);
567 if (IS_NULL_QREG(tmp
))
572 return gen_ldst(s
, opsize
, tmp
, val
, what
);
575 /* Generate code to load/store a value from/into an EA. If VAL > 0 this is
576 a write otherwise it is a read (0 == sign extend, -1 == zero extend).
577 ADDRP is non-null for readwrite operands. */
578 static TCGv
gen_ea(CPUM68KState
*env
, DisasContext
*s
, uint16_t insn
,
579 int opsize
, TCGv val
, TCGv
*addrp
, ea_what what
)
585 switch ((insn
>> 3) & 7) {
586 case 0: /* Data register direct. */
588 if (what
== EA_STORE
) {
589 gen_partset_reg(opsize
, reg
, val
);
592 return gen_extend(reg
, opsize
, what
== EA_LOADS
);
594 case 1: /* Address register direct. */
596 if (what
== EA_STORE
) {
597 tcg_gen_mov_i32(reg
, val
);
600 return gen_extend(reg
, opsize
, what
== EA_LOADS
);
602 case 2: /* Indirect register */
604 return gen_ldst(s
, opsize
, reg
, val
, what
);
605 case 3: /* Indirect postincrement. */
607 result
= gen_ldst(s
, opsize
, reg
, val
, what
);
608 /* ??? This is not exception safe. The instruction may still
609 fault after this point. */
610 if (what
== EA_STORE
|| !addrp
)
611 tcg_gen_addi_i32(reg
, reg
, opsize_bytes(opsize
));
613 case 4: /* Indirect predecrememnt. */
616 if (addrp
&& what
== EA_STORE
) {
619 tmp
= gen_lea(env
, s
, insn
, opsize
);
620 if (IS_NULL_QREG(tmp
))
625 result
= gen_ldst(s
, opsize
, tmp
, val
, what
);
626 /* ??? This is not exception safe. The instruction may still
627 fault after this point. */
628 if (what
== EA_STORE
|| !addrp
) {
630 tcg_gen_mov_i32(reg
, tmp
);
634 case 5: /* Indirect displacement. */
635 case 6: /* Indirect index + displacement. */
636 return gen_ea_once(env
, s
, insn
, opsize
, val
, addrp
, what
);
639 case 0: /* Absolute short. */
640 case 1: /* Absolute long. */
641 case 2: /* pc displacement */
642 case 3: /* pc index+displacement. */
643 return gen_ea_once(env
, s
, insn
, opsize
, val
, addrp
, what
);
644 case 4: /* Immediate. */
645 /* Sign extend values for consistency. */
648 if (what
== EA_LOADS
) {
649 offset
= cpu_ldsb_code(env
, s
->pc
+ 1);
651 offset
= cpu_ldub_code(env
, s
->pc
+ 1);
656 if (what
== EA_LOADS
) {
657 offset
= cpu_ldsw_code(env
, s
->pc
);
659 offset
= cpu_lduw_code(env
, s
->pc
);
664 offset
= read_im32(env
, s
);
667 g_assert_not_reached();
669 return tcg_const_i32(offset
);
674 /* Should never happen. */
678 /* This generates a conditional branch, clobbering all temporaries. */
679 static void gen_jmpcc(DisasContext
*s
, int cond
, int l1
)
683 /* TODO: Optimize compare/branch pairs rather than always flushing
684 flag state to CC_OP_FLAGS. */
692 case 2: /* HI (!C && !Z) */
693 tmp
= tcg_temp_new();
694 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_C
| CCF_Z
);
695 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, l1
);
697 case 3: /* LS (C || Z) */
698 tmp
= tcg_temp_new();
699 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_C
| CCF_Z
);
700 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, l1
);
702 case 4: /* CC (!C) */
703 tmp
= tcg_temp_new();
704 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_C
);
705 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, l1
);
708 tmp
= tcg_temp_new();
709 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_C
);
710 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, l1
);
712 case 6: /* NE (!Z) */
713 tmp
= tcg_temp_new();
714 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_Z
);
715 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, l1
);
718 tmp
= tcg_temp_new();
719 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_Z
);
720 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, l1
);
722 case 8: /* VC (!V) */
723 tmp
= tcg_temp_new();
724 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_V
);
725 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, l1
);
728 tmp
= tcg_temp_new();
729 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_V
);
730 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, l1
);
732 case 10: /* PL (!N) */
733 tmp
= tcg_temp_new();
734 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_N
);
735 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, l1
);
737 case 11: /* MI (N) */
738 tmp
= tcg_temp_new();
739 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_N
);
740 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, l1
);
742 case 12: /* GE (!(N ^ V)) */
743 tmp
= tcg_temp_new();
744 assert(CCF_V
== (CCF_N
>> 2));
745 tcg_gen_shri_i32(tmp
, QREG_CC_DEST
, 2);
746 tcg_gen_xor_i32(tmp
, tmp
, QREG_CC_DEST
);
747 tcg_gen_andi_i32(tmp
, tmp
, CCF_V
);
748 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, l1
);
750 case 13: /* LT (N ^ V) */
751 tmp
= tcg_temp_new();
752 assert(CCF_V
== (CCF_N
>> 2));
753 tcg_gen_shri_i32(tmp
, QREG_CC_DEST
, 2);
754 tcg_gen_xor_i32(tmp
, tmp
, QREG_CC_DEST
);
755 tcg_gen_andi_i32(tmp
, tmp
, CCF_V
);
756 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, l1
);
758 case 14: /* GT (!(Z || (N ^ V))) */
759 tmp
= tcg_temp_new();
760 assert(CCF_V
== (CCF_N
>> 2));
761 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_N
);
762 tcg_gen_shri_i32(tmp
, tmp
, 2);
763 tcg_gen_xor_i32(tmp
, tmp
, QREG_CC_DEST
);
764 tcg_gen_andi_i32(tmp
, tmp
, CCF_V
| CCF_Z
);
765 tcg_gen_brcondi_i32(TCG_COND_EQ
, tmp
, 0, l1
);
767 case 15: /* LE (Z || (N ^ V)) */
768 tmp
= tcg_temp_new();
769 assert(CCF_V
== (CCF_N
>> 2));
770 tcg_gen_andi_i32(tmp
, QREG_CC_DEST
, CCF_N
);
771 tcg_gen_shri_i32(tmp
, tmp
, 2);
772 tcg_gen_xor_i32(tmp
, tmp
, QREG_CC_DEST
);
773 tcg_gen_andi_i32(tmp
, tmp
, CCF_V
| CCF_Z
);
774 tcg_gen_brcondi_i32(TCG_COND_NE
, tmp
, 0, l1
);
777 /* Should ever happen. */
788 l1
= gen_new_label();
789 cond
= (insn
>> 8) & 0xf;
791 tcg_gen_andi_i32(reg
, reg
, 0xffffff00);
792 /* This is safe because we modify the reg directly, with no other values
794 gen_jmpcc(s
, cond
^ 1, l1
);
795 tcg_gen_ori_i32(reg
, reg
, 0xff);
799 /* Force a TB lookup after an instruction that changes the CPU state. */
800 static void gen_lookup_tb(DisasContext
*s
)
803 tcg_gen_movi_i32(QREG_PC
, s
->pc
);
804 s
->is_jmp
= DISAS_UPDATE
;
807 /* Generate a jump to an immediate address. */
808 static void gen_jmp_im(DisasContext
*s
, uint32_t dest
)
811 tcg_gen_movi_i32(QREG_PC
, dest
);
812 s
->is_jmp
= DISAS_JUMP
;
815 /* Generate a jump to the address in qreg DEST. */
816 static void gen_jmp(DisasContext
*s
, TCGv dest
)
819 tcg_gen_mov_i32(QREG_PC
, dest
);
820 s
->is_jmp
= DISAS_JUMP
;
823 static void gen_exception(DisasContext
*s
, uint32_t where
, int nr
)
826 gen_jmp_im(s
, where
);
827 gen_helper_raise_exception(cpu_env
, tcg_const_i32(nr
));
830 static inline void gen_addr_fault(DisasContext
*s
)
832 gen_exception(s
, s
->insn_pc
, EXCP_ADDRESS
);
835 #define SRC_EA(env, result, opsize, op_sign, addrp) do { \
836 result = gen_ea(env, s, insn, opsize, NULL_QREG, addrp, \
837 op_sign ? EA_LOADS : EA_LOADU); \
838 if (IS_NULL_QREG(result)) { \
844 #define DEST_EA(env, insn, opsize, val, addrp) do { \
845 TCGv ea_result = gen_ea(env, s, insn, opsize, val, addrp, EA_STORE); \
846 if (IS_NULL_QREG(ea_result)) { \
852 /* Generate a jump to an immediate address. */
853 static void gen_jmp_tb(DisasContext
*s
, int n
, uint32_t dest
)
855 TranslationBlock
*tb
;
858 if (unlikely(s
->singlestep_enabled
)) {
859 gen_exception(s
, dest
, EXCP_DEBUG
);
860 } else if ((tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
) ||
861 (s
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
)) {
863 tcg_gen_movi_i32(QREG_PC
, dest
);
864 tcg_gen_exit_tb((uintptr_t)tb
+ n
);
869 s
->is_jmp
= DISAS_TB_JUMP
;
872 DISAS_INSN(undef_mac
)
874 gen_exception(s
, s
->pc
- 2, EXCP_LINEA
);
877 DISAS_INSN(undef_fpu
)
879 gen_exception(s
, s
->pc
- 2, EXCP_LINEF
);
884 M68kCPU
*cpu
= m68k_env_get_cpu(env
);
886 gen_exception(s
, s
->pc
- 2, EXCP_UNSUPPORTED
);
887 cpu_abort(CPU(cpu
), "Illegal instruction: %04x @ %08x", insn
, s
->pc
- 2);
897 sign
= (insn
& 0x100) != 0;
899 tmp
= tcg_temp_new();
901 tcg_gen_ext16s_i32(tmp
, reg
);
903 tcg_gen_ext16u_i32(tmp
, reg
);
904 SRC_EA(env
, src
, OS_WORD
, sign
, NULL
);
905 tcg_gen_mul_i32(tmp
, tmp
, src
);
906 tcg_gen_mov_i32(reg
, tmp
);
907 /* Unlike m68k, coldfire always clears the overflow bit. */
908 gen_logic_cc(s
, tmp
);
918 sign
= (insn
& 0x100) != 0;
921 tcg_gen_ext16s_i32(QREG_DIV1
, reg
);
923 tcg_gen_ext16u_i32(QREG_DIV1
, reg
);
925 SRC_EA(env
, src
, OS_WORD
, sign
, NULL
);
926 tcg_gen_mov_i32(QREG_DIV2
, src
);
928 gen_helper_divs(cpu_env
, tcg_const_i32(1));
930 gen_helper_divu(cpu_env
, tcg_const_i32(1));
933 tmp
= tcg_temp_new();
934 src
= tcg_temp_new();
935 tcg_gen_ext16u_i32(tmp
, QREG_DIV1
);
936 tcg_gen_shli_i32(src
, QREG_DIV2
, 16);
937 tcg_gen_or_i32(reg
, tmp
, src
);
938 s
->cc_op
= CC_OP_FLAGS
;
948 ext
= cpu_lduw_code(env
, s
->pc
);
951 gen_exception(s
, s
->pc
- 4, EXCP_UNSUPPORTED
);
956 tcg_gen_mov_i32(QREG_DIV1
, num
);
957 SRC_EA(env
, den
, OS_LONG
, 0, NULL
);
958 tcg_gen_mov_i32(QREG_DIV2
, den
);
960 gen_helper_divs(cpu_env
, tcg_const_i32(0));
962 gen_helper_divu(cpu_env
, tcg_const_i32(0));
964 if ((ext
& 7) == ((ext
>> 12) & 7)) {
966 tcg_gen_mov_i32 (reg
, QREG_DIV1
);
969 tcg_gen_mov_i32 (reg
, QREG_DIV2
);
971 s
->cc_op
= CC_OP_FLAGS
;
983 add
= (insn
& 0x4000) != 0;
985 dest
= tcg_temp_new();
987 SRC_EA(env
, tmp
, OS_LONG
, 0, &addr
);
991 SRC_EA(env
, src
, OS_LONG
, 0, NULL
);
994 tcg_gen_add_i32(dest
, tmp
, src
);
995 gen_helper_xflag_lt(QREG_CC_X
, dest
, src
);
996 s
->cc_op
= CC_OP_ADD
;
998 gen_helper_xflag_lt(QREG_CC_X
, tmp
, src
);
999 tcg_gen_sub_i32(dest
, tmp
, src
);
1000 s
->cc_op
= CC_OP_SUB
;
1002 gen_update_cc_add(dest
, src
);
1004 DEST_EA(env
, insn
, OS_LONG
, dest
, &addr
);
1006 tcg_gen_mov_i32(reg
, dest
);
1011 /* Reverse the order of the bits in REG. */
1015 reg
= DREG(insn
, 0);
1016 gen_helper_bitrev(reg
, reg
);
1019 DISAS_INSN(bitop_reg
)
1029 if ((insn
& 0x38) != 0)
1033 op
= (insn
>> 6) & 3;
1034 SRC_EA(env
, src1
, opsize
, 0, op
? &addr
: NULL
);
1035 src2
= DREG(insn
, 9);
1036 dest
= tcg_temp_new();
1039 tmp
= tcg_temp_new();
1040 if (opsize
== OS_BYTE
)
1041 tcg_gen_andi_i32(tmp
, src2
, 7);
1043 tcg_gen_andi_i32(tmp
, src2
, 31);
1045 tmp
= tcg_temp_new();
1046 tcg_gen_shr_i32(tmp
, src1
, src2
);
1047 tcg_gen_andi_i32(tmp
, tmp
, 1);
1048 tcg_gen_shli_i32(tmp
, tmp
, 2);
1049 /* Clear CCF_Z if bit set. */
1050 tcg_gen_ori_i32(QREG_CC_DEST
, QREG_CC_DEST
, CCF_Z
);
1051 tcg_gen_xor_i32(QREG_CC_DEST
, QREG_CC_DEST
, tmp
);
1053 tcg_gen_shl_i32(tmp
, tcg_const_i32(1), src2
);
1056 tcg_gen_xor_i32(dest
, src1
, tmp
);
1059 tcg_gen_not_i32(tmp
, tmp
);
1060 tcg_gen_and_i32(dest
, src1
, tmp
);
1063 tcg_gen_or_i32(dest
, src1
, tmp
);
1069 DEST_EA(env
, insn
, opsize
, dest
, &addr
);
1075 reg
= DREG(insn
, 0);
1077 gen_helper_sats(reg
, reg
, QREG_CC_DEST
);
1078 gen_logic_cc(s
, reg
);
1081 static void gen_push(DisasContext
*s
, TCGv val
)
1085 tmp
= tcg_temp_new();
1086 tcg_gen_subi_i32(tmp
, QREG_SP
, 4);
1087 gen_store(s
, OS_LONG
, tmp
, val
);
1088 tcg_gen_mov_i32(QREG_SP
, tmp
);
1100 mask
= cpu_lduw_code(env
, s
->pc
);
1102 tmp
= gen_lea(env
, s
, insn
, OS_LONG
);
1103 if (IS_NULL_QREG(tmp
)) {
1107 addr
= tcg_temp_new();
1108 tcg_gen_mov_i32(addr
, tmp
);
1109 is_load
= ((insn
& 0x0400) != 0);
1110 for (i
= 0; i
< 16; i
++, mask
>>= 1) {
1117 tmp
= gen_load(s
, OS_LONG
, addr
, 0);
1118 tcg_gen_mov_i32(reg
, tmp
);
1120 gen_store(s
, OS_LONG
, addr
, reg
);
1123 tcg_gen_addi_i32(addr
, addr
, 4);
1128 DISAS_INSN(bitop_im
)
1138 if ((insn
& 0x38) != 0)
1142 op
= (insn
>> 6) & 3;
1144 bitnum
= cpu_lduw_code(env
, s
->pc
);
1146 if (bitnum
& 0xff00) {
1147 disas_undef(env
, s
, insn
);
1151 SRC_EA(env
, src1
, opsize
, 0, op
? &addr
: NULL
);
1154 if (opsize
== OS_BYTE
)
1160 tmp
= tcg_temp_new();
1161 assert (CCF_Z
== (1 << 2));
1163 tcg_gen_shri_i32(tmp
, src1
, bitnum
- 2);
1164 else if (bitnum
< 2)
1165 tcg_gen_shli_i32(tmp
, src1
, 2 - bitnum
);
1167 tcg_gen_mov_i32(tmp
, src1
);
1168 tcg_gen_andi_i32(tmp
, tmp
, CCF_Z
);
1169 /* Clear CCF_Z if bit set. */
1170 tcg_gen_ori_i32(QREG_CC_DEST
, QREG_CC_DEST
, CCF_Z
);
1171 tcg_gen_xor_i32(QREG_CC_DEST
, QREG_CC_DEST
, tmp
);
1175 tcg_gen_xori_i32(tmp
, src1
, mask
);
1178 tcg_gen_andi_i32(tmp
, src1
, ~mask
);
1181 tcg_gen_ori_i32(tmp
, src1
, mask
);
1186 DEST_EA(env
, insn
, opsize
, tmp
, &addr
);
1190 DISAS_INSN(arith_im
)
1198 op
= (insn
>> 9) & 7;
1199 SRC_EA(env
, src1
, OS_LONG
, 0, (op
== 6) ? NULL
: &addr
);
1200 im
= read_im32(env
, s
);
1201 dest
= tcg_temp_new();
1204 tcg_gen_ori_i32(dest
, src1
, im
);
1205 gen_logic_cc(s
, dest
);
1208 tcg_gen_andi_i32(dest
, src1
, im
);
1209 gen_logic_cc(s
, dest
);
1212 tcg_gen_mov_i32(dest
, src1
);
1213 gen_helper_xflag_lt(QREG_CC_X
, dest
, tcg_const_i32(im
));
1214 tcg_gen_subi_i32(dest
, dest
, im
);
1215 gen_update_cc_add(dest
, tcg_const_i32(im
));
1216 s
->cc_op
= CC_OP_SUB
;
1219 tcg_gen_mov_i32(dest
, src1
);
1220 tcg_gen_addi_i32(dest
, dest
, im
);
1221 gen_update_cc_add(dest
, tcg_const_i32(im
));
1222 gen_helper_xflag_lt(QREG_CC_X
, dest
, tcg_const_i32(im
));
1223 s
->cc_op
= CC_OP_ADD
;
1226 tcg_gen_xori_i32(dest
, src1
, im
);
1227 gen_logic_cc(s
, dest
);
1230 tcg_gen_mov_i32(dest
, src1
);
1231 tcg_gen_subi_i32(dest
, dest
, im
);
1232 gen_update_cc_add(dest
, tcg_const_i32(im
));
1233 s
->cc_op
= CC_OP_SUB
;
1239 DEST_EA(env
, insn
, OS_LONG
, dest
, &addr
);
1247 reg
= DREG(insn
, 0);
1248 tcg_gen_bswap32_i32(reg
, reg
);
1258 switch (insn
>> 12) {
1259 case 1: /* move.b */
1262 case 2: /* move.l */
1265 case 3: /* move.w */
1271 SRC_EA(env
, src
, opsize
, 1, NULL
);
1272 op
= (insn
>> 6) & 7;
1275 /* The value will already have been sign extended. */
1276 dest
= AREG(insn
, 9);
1277 tcg_gen_mov_i32(dest
, src
);
1281 dest_ea
= ((insn
>> 9) & 7) | (op
<< 3);
1282 DEST_EA(env
, dest_ea
, opsize
, src
, NULL
);
1283 /* This will be correct because loads sign extend. */
1284 gen_logic_cc(s
, src
);
1293 reg
= DREG(insn
, 0);
1294 gen_helper_subx_cc(reg
, cpu_env
, tcg_const_i32(0), reg
);
1302 reg
= AREG(insn
, 9);
1303 tmp
= gen_lea(env
, s
, insn
, OS_LONG
);
1304 if (IS_NULL_QREG(tmp
)) {
1308 tcg_gen_mov_i32(reg
, tmp
);
1315 switch ((insn
>> 6) & 3) {
1328 DEST_EA(env
, insn
, opsize
, tcg_const_i32(0), NULL
);
1329 gen_logic_cc(s
, tcg_const_i32(0));
1332 static TCGv
gen_get_ccr(DisasContext
*s
)
1337 dest
= tcg_temp_new();
1338 tcg_gen_shli_i32(dest
, QREG_CC_X
, 4);
1339 tcg_gen_or_i32(dest
, dest
, QREG_CC_DEST
);
1343 DISAS_INSN(move_from_ccr
)
1348 ccr
= gen_get_ccr(s
);
1349 reg
= DREG(insn
, 0);
1350 gen_partset_reg(OS_WORD
, reg
, ccr
);
1358 reg
= DREG(insn
, 0);
1359 src1
= tcg_temp_new();
1360 tcg_gen_mov_i32(src1
, reg
);
1361 tcg_gen_neg_i32(reg
, src1
);
1362 s
->cc_op
= CC_OP_SUB
;
1363 gen_update_cc_add(reg
, src1
);
1364 gen_helper_xflag_lt(QREG_CC_X
, tcg_const_i32(0), src1
);
1365 s
->cc_op
= CC_OP_SUB
;
1368 static void gen_set_sr_im(DisasContext
*s
, uint16_t val
, int ccr_only
)
1370 tcg_gen_movi_i32(QREG_CC_DEST
, val
& 0xf);
1371 tcg_gen_movi_i32(QREG_CC_X
, (val
& 0x10) >> 4);
1373 gen_helper_set_sr(cpu_env
, tcg_const_i32(val
& 0xff00));
1377 static void gen_set_sr(CPUM68KState
*env
, DisasContext
*s
, uint16_t insn
,
1383 s
->cc_op
= CC_OP_FLAGS
;
1384 if ((insn
& 0x38) == 0)
1386 tmp
= tcg_temp_new();
1387 reg
= DREG(insn
, 0);
1388 tcg_gen_andi_i32(QREG_CC_DEST
, reg
, 0xf);
1389 tcg_gen_shri_i32(tmp
, reg
, 4);
1390 tcg_gen_andi_i32(QREG_CC_X
, tmp
, 1);
1392 gen_helper_set_sr(cpu_env
, reg
);
1395 else if ((insn
& 0x3f) == 0x3c)
1398 val
= cpu_lduw_code(env
, s
->pc
);
1400 gen_set_sr_im(s
, val
, ccr_only
);
1403 disas_undef(env
, s
, insn
);
1406 DISAS_INSN(move_to_ccr
)
1408 gen_set_sr(env
, s
, insn
, 1);
1415 reg
= DREG(insn
, 0);
1416 tcg_gen_not_i32(reg
, reg
);
1417 gen_logic_cc(s
, reg
);
1426 src1
= tcg_temp_new();
1427 src2
= tcg_temp_new();
1428 reg
= DREG(insn
, 0);
1429 tcg_gen_shli_i32(src1
, reg
, 16);
1430 tcg_gen_shri_i32(src2
, reg
, 16);
1431 tcg_gen_or_i32(reg
, src1
, src2
);
1432 gen_logic_cc(s
, reg
);
1439 tmp
= gen_lea(env
, s
, insn
, OS_LONG
);
1440 if (IS_NULL_QREG(tmp
)) {
1453 reg
= DREG(insn
, 0);
1454 op
= (insn
>> 6) & 7;
1455 tmp
= tcg_temp_new();
1457 tcg_gen_ext16s_i32(tmp
, reg
);
1459 tcg_gen_ext8s_i32(tmp
, reg
);
1461 gen_partset_reg(OS_WORD
, reg
, tmp
);
1463 tcg_gen_mov_i32(reg
, tmp
);
1464 gen_logic_cc(s
, tmp
);
1472 switch ((insn
>> 6) & 3) {
1485 SRC_EA(env
, tmp
, opsize
, 1, NULL
);
1486 gen_logic_cc(s
, tmp
);
1491 /* Implemented as a NOP. */
1496 gen_exception(s
, s
->pc
- 2, EXCP_ILLEGAL
);
1499 /* ??? This should be atomic. */
1506 dest
= tcg_temp_new();
1507 SRC_EA(env
, src1
, OS_BYTE
, 1, &addr
);
1508 gen_logic_cc(s
, src1
);
1509 tcg_gen_ori_i32(dest
, src1
, 0x80);
1510 DEST_EA(env
, insn
, OS_BYTE
, dest
, &addr
);
1520 /* The upper 32 bits of the product are discarded, so
1521 muls.l and mulu.l are functionally equivalent. */
1522 ext
= cpu_lduw_code(env
, s
->pc
);
1525 gen_exception(s
, s
->pc
- 4, EXCP_UNSUPPORTED
);
1528 reg
= DREG(ext
, 12);
1529 SRC_EA(env
, src1
, OS_LONG
, 0, NULL
);
1530 dest
= tcg_temp_new();
1531 tcg_gen_mul_i32(dest
, src1
, reg
);
1532 tcg_gen_mov_i32(reg
, dest
);
1533 /* Unlike m68k, coldfire always clears the overflow bit. */
1534 gen_logic_cc(s
, dest
);
1543 offset
= cpu_ldsw_code(env
, s
->pc
);
1545 reg
= AREG(insn
, 0);
1546 tmp
= tcg_temp_new();
1547 tcg_gen_subi_i32(tmp
, QREG_SP
, 4);
1548 gen_store(s
, OS_LONG
, tmp
, reg
);
1549 if ((insn
& 7) != 7)
1550 tcg_gen_mov_i32(reg
, tmp
);
1551 tcg_gen_addi_i32(QREG_SP
, tmp
, offset
);
1560 src
= tcg_temp_new();
1561 reg
= AREG(insn
, 0);
1562 tcg_gen_mov_i32(src
, reg
);
1563 tmp
= gen_load(s
, OS_LONG
, src
, 0);
1564 tcg_gen_mov_i32(reg
, tmp
);
1565 tcg_gen_addi_i32(QREG_SP
, src
, 4);
1576 tmp
= gen_load(s
, OS_LONG
, QREG_SP
, 0);
1577 tcg_gen_addi_i32(QREG_SP
, QREG_SP
, 4);
1585 /* Load the target address first to ensure correct exception
1587 tmp
= gen_lea(env
, s
, insn
, OS_LONG
);
1588 if (IS_NULL_QREG(tmp
)) {
1592 if ((insn
& 0x40) == 0) {
1594 gen_push(s
, tcg_const_i32(s
->pc
));
1607 SRC_EA(env
, src1
, OS_LONG
, 0, &addr
);
1608 val
= (insn
>> 9) & 7;
1611 dest
= tcg_temp_new();
1612 tcg_gen_mov_i32(dest
, src1
);
1613 if ((insn
& 0x38) == 0x08) {
1614 /* Don't update condition codes if the destination is an
1615 address register. */
1616 if (insn
& 0x0100) {
1617 tcg_gen_subi_i32(dest
, dest
, val
);
1619 tcg_gen_addi_i32(dest
, dest
, val
);
1622 src2
= tcg_const_i32(val
);
1623 if (insn
& 0x0100) {
1624 gen_helper_xflag_lt(QREG_CC_X
, dest
, src2
);
1625 tcg_gen_subi_i32(dest
, dest
, val
);
1626 s
->cc_op
= CC_OP_SUB
;
1628 tcg_gen_addi_i32(dest
, dest
, val
);
1629 gen_helper_xflag_lt(QREG_CC_X
, dest
, src2
);
1630 s
->cc_op
= CC_OP_ADD
;
1632 gen_update_cc_add(dest
, src2
);
1634 DEST_EA(env
, insn
, OS_LONG
, dest
, &addr
);
1640 case 2: /* One extension word. */
1643 case 3: /* Two extension words. */
1646 case 4: /* No extension words. */
1649 disas_undef(env
, s
, insn
);
1661 op
= (insn
>> 8) & 0xf;
1662 offset
= (int8_t)insn
;
1664 offset
= cpu_ldsw_code(env
, s
->pc
);
1666 } else if (offset
== -1) {
1667 offset
= read_im32(env
, s
);
1671 gen_push(s
, tcg_const_i32(s
->pc
));
1676 l1
= gen_new_label();
1677 gen_jmpcc(s
, ((insn
>> 8) & 0xf) ^ 1, l1
);
1678 gen_jmp_tb(s
, 1, base
+ offset
);
1680 gen_jmp_tb(s
, 0, s
->pc
);
1682 /* Unconditional branch. */
1683 gen_jmp_tb(s
, 0, base
+ offset
);
1692 tcg_gen_movi_i32(DREG(insn
, 9), val
);
1693 gen_logic_cc(s
, tcg_const_i32(val
));
1706 SRC_EA(env
, src
, opsize
, (insn
& 0x80) == 0, NULL
);
1707 reg
= DREG(insn
, 9);
1708 tcg_gen_mov_i32(reg
, src
);
1709 gen_logic_cc(s
, src
);
1719 reg
= DREG(insn
, 9);
1720 dest
= tcg_temp_new();
1722 SRC_EA(env
, src
, OS_LONG
, 0, &addr
);
1723 tcg_gen_or_i32(dest
, src
, reg
);
1724 DEST_EA(env
, insn
, OS_LONG
, dest
, &addr
);
1726 SRC_EA(env
, src
, OS_LONG
, 0, NULL
);
1727 tcg_gen_or_i32(dest
, src
, reg
);
1728 tcg_gen_mov_i32(reg
, dest
);
1730 gen_logic_cc(s
, dest
);
1738 SRC_EA(env
, src
, OS_LONG
, 0, NULL
);
1739 reg
= AREG(insn
, 9);
1740 tcg_gen_sub_i32(reg
, reg
, src
);
1749 reg
= DREG(insn
, 9);
1750 src
= DREG(insn
, 0);
1751 gen_helper_subx_cc(reg
, cpu_env
, reg
, src
);
1759 val
= (insn
>> 9) & 7;
1762 src
= tcg_const_i32(val
);
1763 gen_logic_cc(s
, src
);
1764 DEST_EA(env
, insn
, OS_LONG
, src
, NULL
);
1775 op
= (insn
>> 6) & 3;
1779 s
->cc_op
= CC_OP_CMPB
;
1783 s
->cc_op
= CC_OP_CMPW
;
1787 s
->cc_op
= CC_OP_SUB
;
1792 SRC_EA(env
, src
, opsize
, 1, NULL
);
1793 reg
= DREG(insn
, 9);
1794 dest
= tcg_temp_new();
1795 tcg_gen_sub_i32(dest
, reg
, src
);
1796 gen_update_cc_add(dest
, src
);
1811 SRC_EA(env
, src
, opsize
, 1, NULL
);
1812 reg
= AREG(insn
, 9);
1813 dest
= tcg_temp_new();
1814 tcg_gen_sub_i32(dest
, reg
, src
);
1815 gen_update_cc_add(dest
, src
);
1816 s
->cc_op
= CC_OP_SUB
;
1826 SRC_EA(env
, src
, OS_LONG
, 0, &addr
);
1827 reg
= DREG(insn
, 9);
1828 dest
= tcg_temp_new();
1829 tcg_gen_xor_i32(dest
, src
, reg
);
1830 gen_logic_cc(s
, dest
);
1831 DEST_EA(env
, insn
, OS_LONG
, dest
, &addr
);
1841 reg
= DREG(insn
, 9);
1842 dest
= tcg_temp_new();
1844 SRC_EA(env
, src
, OS_LONG
, 0, &addr
);
1845 tcg_gen_and_i32(dest
, src
, reg
);
1846 DEST_EA(env
, insn
, OS_LONG
, dest
, &addr
);
1848 SRC_EA(env
, src
, OS_LONG
, 0, NULL
);
1849 tcg_gen_and_i32(dest
, src
, reg
);
1850 tcg_gen_mov_i32(reg
, dest
);
1852 gen_logic_cc(s
, dest
);
1860 SRC_EA(env
, src
, OS_LONG
, 0, NULL
);
1861 reg
= AREG(insn
, 9);
1862 tcg_gen_add_i32(reg
, reg
, src
);
1871 reg
= DREG(insn
, 9);
1872 src
= DREG(insn
, 0);
1873 gen_helper_addx_cc(reg
, cpu_env
, reg
, src
);
1874 s
->cc_op
= CC_OP_FLAGS
;
1877 /* TODO: This could be implemented without helper functions. */
1878 DISAS_INSN(shift_im
)
1884 reg
= DREG(insn
, 0);
1885 tmp
= (insn
>> 9) & 7;
1888 shift
= tcg_const_i32(tmp
);
1889 /* No need to flush flags becuse we know we will set C flag. */
1891 gen_helper_shl_cc(reg
, cpu_env
, reg
, shift
);
1894 gen_helper_shr_cc(reg
, cpu_env
, reg
, shift
);
1896 gen_helper_sar_cc(reg
, cpu_env
, reg
, shift
);
1899 s
->cc_op
= CC_OP_SHIFT
;
1902 DISAS_INSN(shift_reg
)
1907 reg
= DREG(insn
, 0);
1908 shift
= DREG(insn
, 9);
1909 /* Shift by zero leaves C flag unmodified. */
1912 gen_helper_shl_cc(reg
, cpu_env
, reg
, shift
);
1915 gen_helper_shr_cc(reg
, cpu_env
, reg
, shift
);
1917 gen_helper_sar_cc(reg
, cpu_env
, reg
, shift
);
1920 s
->cc_op
= CC_OP_SHIFT
;
1926 reg
= DREG(insn
, 0);
1927 gen_logic_cc(s
, reg
);
1928 gen_helper_ff1(reg
, reg
);
1931 static TCGv
gen_get_sr(DisasContext
*s
)
1936 ccr
= gen_get_ccr(s
);
1937 sr
= tcg_temp_new();
1938 tcg_gen_andi_i32(sr
, QREG_SR
, 0xffe0);
1939 tcg_gen_or_i32(sr
, sr
, ccr
);
1949 ext
= cpu_lduw_code(env
, s
->pc
);
1951 if (ext
!= 0x46FC) {
1952 gen_exception(s
, addr
, EXCP_UNSUPPORTED
);
1955 ext
= cpu_lduw_code(env
, s
->pc
);
1957 if (IS_USER(s
) || (ext
& SR_S
) == 0) {
1958 gen_exception(s
, addr
, EXCP_PRIVILEGE
);
1961 gen_push(s
, gen_get_sr(s
));
1962 gen_set_sr_im(s
, ext
, 0);
1965 DISAS_INSN(move_from_sr
)
1971 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
1975 reg
= DREG(insn
, 0);
1976 gen_partset_reg(OS_WORD
, reg
, sr
);
1979 DISAS_INSN(move_to_sr
)
1982 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
1985 gen_set_sr(env
, s
, insn
, 0);
1989 DISAS_INSN(move_from_usp
)
1992 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
1995 /* TODO: Implement USP. */
1996 gen_exception(s
, s
->pc
- 2, EXCP_ILLEGAL
);
1999 DISAS_INSN(move_to_usp
)
2002 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
2005 /* TODO: Implement USP. */
2006 gen_exception(s
, s
->pc
- 2, EXCP_ILLEGAL
);
2011 gen_exception(s
, s
->pc
, EXCP_HALT_INSN
);
2019 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
2023 ext
= cpu_lduw_code(env
, s
->pc
);
2026 gen_set_sr_im(s
, ext
, 0);
2027 tcg_gen_movi_i32(cpu_halted
, 1);
2028 gen_exception(s
, s
->pc
, EXCP_HLT
);
2034 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
2037 gen_exception(s
, s
->pc
- 2, EXCP_RTE
);
2046 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
2050 ext
= cpu_lduw_code(env
, s
->pc
);
2054 reg
= AREG(ext
, 12);
2056 reg
= DREG(ext
, 12);
2058 gen_helper_movec(cpu_env
, tcg_const_i32(ext
& 0xfff), reg
);
2065 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
2068 /* ICache fetch. Implement as no-op. */
2074 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
2077 /* Cache push/invalidate. Implement as no-op. */
2082 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
2087 M68kCPU
*cpu
= m68k_env_get_cpu(env
);
2090 gen_exception(s
, s
->pc
- 2, EXCP_PRIVILEGE
);
2093 /* TODO: Implement wdebug. */
2094 cpu_abort(CPU(cpu
), "WDEBUG not implemented");
2099 gen_exception(s
, s
->pc
- 2, EXCP_TRAP0
+ (insn
& 0xf));
2102 /* ??? FP exceptions are not implemented. Most exceptions are deferred until
2103 immediately before the next FP instruction is executed. */
2117 ext
= cpu_lduw_code(env
, s
->pc
);
2119 opmode
= ext
& 0x7f;
2120 switch ((ext
>> 13) & 7) {
2125 case 3: /* fmove out */
2127 tmp32
= tcg_temp_new_i32();
2129 /* ??? TODO: Proper behavior on overflow. */
2130 switch ((ext
>> 10) & 7) {
2133 gen_helper_f64_to_i32(tmp32
, cpu_env
, src
);
2137 gen_helper_f64_to_f32(tmp32
, cpu_env
, src
);
2141 gen_helper_f64_to_i32(tmp32
, cpu_env
, src
);
2143 case 5: /* OS_DOUBLE */
2144 tcg_gen_mov_i32(tmp32
, AREG(insn
, 0));
2145 switch ((insn
>> 3) & 7) {
2150 tcg_gen_addi_i32(tmp32
, tmp32
, -8);
2153 offset
= cpu_ldsw_code(env
, s
->pc
);
2155 tcg_gen_addi_i32(tmp32
, tmp32
, offset
);
2160 gen_store64(s
, tmp32
, src
);
2161 switch ((insn
>> 3) & 7) {
2163 tcg_gen_addi_i32(tmp32
, tmp32
, 8);
2164 tcg_gen_mov_i32(AREG(insn
, 0), tmp32
);
2167 tcg_gen_mov_i32(AREG(insn
, 0), tmp32
);
2170 tcg_temp_free_i32(tmp32
);
2174 gen_helper_f64_to_i32(tmp32
, cpu_env
, src
);
2179 DEST_EA(env
, insn
, opsize
, tmp32
, NULL
);
2180 tcg_temp_free_i32(tmp32
);
2182 case 4: /* fmove to control register. */
2183 switch ((ext
>> 10) & 7) {
2185 /* Not implemented. Ignore writes. */
2190 cpu_abort(NULL
, "Unimplemented: fmove to control %d",
2194 case 5: /* fmove from control register. */
2195 switch ((ext
>> 10) & 7) {
2197 /* Not implemented. Always return zero. */
2198 tmp32
= tcg_const_i32(0);
2203 cpu_abort(NULL
, "Unimplemented: fmove from control %d",
2207 DEST_EA(env
, insn
, OS_LONG
, tmp32
, NULL
);
2209 case 6: /* fmovem */
2215 if ((ext
& 0x1f00) != 0x1000 || (ext
& 0xff) == 0)
2217 tmp32
= gen_lea(env
, s
, insn
, OS_LONG
);
2218 if (IS_NULL_QREG(tmp32
)) {
2222 addr
= tcg_temp_new_i32();
2223 tcg_gen_mov_i32(addr
, tmp32
);
2225 for (i
= 0; i
< 8; i
++) {
2229 if (ext
& (1 << 13)) {
2231 tcg_gen_qemu_stf64(dest
, addr
, IS_USER(s
));
2234 tcg_gen_qemu_ldf64(dest
, addr
, IS_USER(s
));
2236 if (ext
& (mask
- 1))
2237 tcg_gen_addi_i32(addr
, addr
, 8);
2241 tcg_temp_free_i32(addr
);
2245 if (ext
& (1 << 14)) {
2246 /* Source effective address. */
2247 switch ((ext
>> 10) & 7) {
2248 case 0: opsize
= OS_LONG
; break;
2249 case 1: opsize
= OS_SINGLE
; break;
2250 case 4: opsize
= OS_WORD
; break;
2251 case 5: opsize
= OS_DOUBLE
; break;
2252 case 6: opsize
= OS_BYTE
; break;
2256 if (opsize
== OS_DOUBLE
) {
2257 tmp32
= tcg_temp_new_i32();
2258 tcg_gen_mov_i32(tmp32
, AREG(insn
, 0));
2259 switch ((insn
>> 3) & 7) {
2264 tcg_gen_addi_i32(tmp32
, tmp32
, -8);
2267 offset
= cpu_ldsw_code(env
, s
->pc
);
2269 tcg_gen_addi_i32(tmp32
, tmp32
, offset
);
2272 offset
= cpu_ldsw_code(env
, s
->pc
);
2273 offset
+= s
->pc
- 2;
2275 tcg_gen_addi_i32(tmp32
, tmp32
, offset
);
2280 src
= gen_load64(s
, tmp32
);
2281 switch ((insn
>> 3) & 7) {
2283 tcg_gen_addi_i32(tmp32
, tmp32
, 8);
2284 tcg_gen_mov_i32(AREG(insn
, 0), tmp32
);
2287 tcg_gen_mov_i32(AREG(insn
, 0), tmp32
);
2290 tcg_temp_free_i32(tmp32
);
2292 SRC_EA(env
, tmp32
, opsize
, 1, NULL
);
2293 src
= tcg_temp_new_i64();
2298 gen_helper_i32_to_f64(src
, cpu_env
, tmp32
);
2301 gen_helper_f32_to_f64(src
, cpu_env
, tmp32
);
2306 /* Source register. */
2307 src
= FREG(ext
, 10);
2309 dest
= FREG(ext
, 7);
2310 res
= tcg_temp_new_i64();
2312 tcg_gen_mov_f64(res
, dest
);
2316 case 0: case 0x40: case 0x44: /* fmove */
2317 tcg_gen_mov_f64(res
, src
);
2320 gen_helper_iround_f64(res
, cpu_env
, src
);
2323 case 3: /* fintrz */
2324 gen_helper_itrunc_f64(res
, cpu_env
, src
);
2327 case 4: case 0x41: case 0x45: /* fsqrt */
2328 gen_helper_sqrt_f64(res
, cpu_env
, src
);
2330 case 0x18: case 0x58: case 0x5c: /* fabs */
2331 gen_helper_abs_f64(res
, src
);
2333 case 0x1a: case 0x5a: case 0x5e: /* fneg */
2334 gen_helper_chs_f64(res
, src
);
2336 case 0x20: case 0x60: case 0x64: /* fdiv */
2337 gen_helper_div_f64(res
, cpu_env
, res
, src
);
2339 case 0x22: case 0x62: case 0x66: /* fadd */
2340 gen_helper_add_f64(res
, cpu_env
, res
, src
);
2342 case 0x23: case 0x63: case 0x67: /* fmul */
2343 gen_helper_mul_f64(res
, cpu_env
, res
, src
);
2345 case 0x28: case 0x68: case 0x6c: /* fsub */
2346 gen_helper_sub_f64(res
, cpu_env
, res
, src
);
2348 case 0x38: /* fcmp */
2349 gen_helper_sub_cmp_f64(res
, cpu_env
, res
, src
);
2353 case 0x3a: /* ftst */
2354 tcg_gen_mov_f64(res
, src
);
2361 if (ext
& (1 << 14)) {
2362 tcg_temp_free_i64(src
);
2365 if (opmode
& 0x40) {
2366 if ((opmode
& 0x4) != 0)
2368 } else if ((s
->fpcr
& M68K_FPCR_PREC
) == 0) {
2373 TCGv tmp
= tcg_temp_new_i32();
2374 gen_helper_f64_to_f32(tmp
, cpu_env
, res
);
2375 gen_helper_f32_to_f64(res
, cpu_env
, tmp
);
2376 tcg_temp_free_i32(tmp
);
2378 tcg_gen_mov_f64(QREG_FP_RESULT
, res
);
2380 tcg_gen_mov_f64(dest
, res
);
2382 tcg_temp_free_i64(res
);
2385 /* FIXME: Is this right for offset addressing modes? */
2387 disas_undef_fpu(env
, s
, insn
);
2398 offset
= cpu_ldsw_code(env
, s
->pc
);
2400 if (insn
& (1 << 6)) {
2401 offset
= (offset
<< 16) | cpu_lduw_code(env
, s
->pc
);
2405 l1
= gen_new_label();
2406 /* TODO: Raise BSUN exception. */
2407 flag
= tcg_temp_new();
2408 gen_helper_compare_f64(flag
, cpu_env
, QREG_FP_RESULT
);
2409 /* Jump to l1 if condition is true. */
2410 switch (insn
& 0xf) {
2413 case 1: /* eq (=0) */
2414 tcg_gen_brcond_i32(TCG_COND_EQ
, flag
, tcg_const_i32(0), l1
);
2416 case 2: /* ogt (=1) */
2417 tcg_gen_brcond_i32(TCG_COND_EQ
, flag
, tcg_const_i32(1), l1
);
2419 case 3: /* oge (=0 or =1) */
2420 tcg_gen_brcond_i32(TCG_COND_LEU
, flag
, tcg_const_i32(1), l1
);
2422 case 4: /* olt (=-1) */
2423 tcg_gen_brcond_i32(TCG_COND_LT
, flag
, tcg_const_i32(0), l1
);
2425 case 5: /* ole (=-1 or =0) */
2426 tcg_gen_brcond_i32(TCG_COND_LE
, flag
, tcg_const_i32(0), l1
);
2428 case 6: /* ogl (=-1 or =1) */
2429 tcg_gen_andi_i32(flag
, flag
, 1);
2430 tcg_gen_brcond_i32(TCG_COND_NE
, flag
, tcg_const_i32(0), l1
);
2432 case 7: /* or (=2) */
2433 tcg_gen_brcond_i32(TCG_COND_EQ
, flag
, tcg_const_i32(2), l1
);
2435 case 8: /* un (<2) */
2436 tcg_gen_brcond_i32(TCG_COND_LT
, flag
, tcg_const_i32(2), l1
);
2438 case 9: /* ueq (=0 or =2) */
2439 tcg_gen_andi_i32(flag
, flag
, 1);
2440 tcg_gen_brcond_i32(TCG_COND_EQ
, flag
, tcg_const_i32(0), l1
);
2442 case 10: /* ugt (>0) */
2443 tcg_gen_brcond_i32(TCG_COND_GT
, flag
, tcg_const_i32(0), l1
);
2445 case 11: /* uge (>=0) */
2446 tcg_gen_brcond_i32(TCG_COND_GE
, flag
, tcg_const_i32(0), l1
);
2448 case 12: /* ult (=-1 or =2) */
2449 tcg_gen_brcond_i32(TCG_COND_GEU
, flag
, tcg_const_i32(2), l1
);
2451 case 13: /* ule (!=1) */
2452 tcg_gen_brcond_i32(TCG_COND_NE
, flag
, tcg_const_i32(1), l1
);
2454 case 14: /* ne (!=0) */
2455 tcg_gen_brcond_i32(TCG_COND_NE
, flag
, tcg_const_i32(0), l1
);
2461 gen_jmp_tb(s
, 0, s
->pc
);
2463 gen_jmp_tb(s
, 1, addr
+ offset
);
2466 DISAS_INSN(frestore
)
2468 M68kCPU
*cpu
= m68k_env_get_cpu(env
);
2470 /* TODO: Implement frestore. */
2471 cpu_abort(CPU(cpu
), "FRESTORE not implemented");
2476 M68kCPU
*cpu
= m68k_env_get_cpu(env
);
2478 /* TODO: Implement fsave. */
2479 cpu_abort(CPU(cpu
), "FSAVE not implemented");
2482 static inline TCGv
gen_mac_extract_word(DisasContext
*s
, TCGv val
, int upper
)
2484 TCGv tmp
= tcg_temp_new();
2485 if (s
->env
->macsr
& MACSR_FI
) {
2487 tcg_gen_andi_i32(tmp
, val
, 0xffff0000);
2489 tcg_gen_shli_i32(tmp
, val
, 16);
2490 } else if (s
->env
->macsr
& MACSR_SU
) {
2492 tcg_gen_sari_i32(tmp
, val
, 16);
2494 tcg_gen_ext16s_i32(tmp
, val
);
2497 tcg_gen_shri_i32(tmp
, val
, 16);
2499 tcg_gen_ext16u_i32(tmp
, val
);
2504 static void gen_mac_clear_flags(void)
2506 tcg_gen_andi_i32(QREG_MACSR
, QREG_MACSR
,
2507 ~(MACSR_V
| MACSR_Z
| MACSR_N
| MACSR_EV
));
2523 s
->mactmp
= tcg_temp_new_i64();
2527 ext
= cpu_lduw_code(env
, s
->pc
);
2530 acc
= ((insn
>> 7) & 1) | ((ext
>> 3) & 2);
2531 dual
= ((insn
& 0x30) != 0 && (ext
& 3) != 0);
2532 if (dual
&& !m68k_feature(s
->env
, M68K_FEATURE_CF_EMAC_B
)) {
2533 disas_undef(env
, s
, insn
);
2537 /* MAC with load. */
2538 tmp
= gen_lea(env
, s
, insn
, OS_LONG
);
2539 addr
= tcg_temp_new();
2540 tcg_gen_and_i32(addr
, tmp
, QREG_MAC_MASK
);
2541 /* Load the value now to ensure correct exception behavior.
2542 Perform writeback after reading the MAC inputs. */
2543 loadval
= gen_load(s
, OS_LONG
, addr
, 0);
2546 rx
= (ext
& 0x8000) ? AREG(ext
, 12) : DREG(insn
, 12);
2547 ry
= (ext
& 8) ? AREG(ext
, 0) : DREG(ext
, 0);
2549 loadval
= addr
= NULL_QREG
;
2550 rx
= (insn
& 0x40) ? AREG(insn
, 9) : DREG(insn
, 9);
2551 ry
= (insn
& 8) ? AREG(insn
, 0) : DREG(insn
, 0);
2554 gen_mac_clear_flags();
2557 /* Disabled because conditional branches clobber temporary vars. */
2558 if ((s
->env
->macsr
& MACSR_OMC
) != 0 && !dual
) {
2559 /* Skip the multiply if we know we will ignore it. */
2560 l1
= gen_new_label();
2561 tmp
= tcg_temp_new();
2562 tcg_gen_andi_i32(tmp
, QREG_MACSR
, 1 << (acc
+ 8));
2563 gen_op_jmp_nz32(tmp
, l1
);
2567 if ((ext
& 0x0800) == 0) {
2569 rx
= gen_mac_extract_word(s
, rx
, (ext
& 0x80) != 0);
2570 ry
= gen_mac_extract_word(s
, ry
, (ext
& 0x40) != 0);
2572 if (s
->env
->macsr
& MACSR_FI
) {
2573 gen_helper_macmulf(s
->mactmp
, cpu_env
, rx
, ry
);
2575 if (s
->env
->macsr
& MACSR_SU
)
2576 gen_helper_macmuls(s
->mactmp
, cpu_env
, rx
, ry
);
2578 gen_helper_macmulu(s
->mactmp
, cpu_env
, rx
, ry
);
2579 switch ((ext
>> 9) & 3) {
2581 tcg_gen_shli_i64(s
->mactmp
, s
->mactmp
, 1);
2584 tcg_gen_shri_i64(s
->mactmp
, s
->mactmp
, 1);
2590 /* Save the overflow flag from the multiply. */
2591 saved_flags
= tcg_temp_new();
2592 tcg_gen_mov_i32(saved_flags
, QREG_MACSR
);
2594 saved_flags
= NULL_QREG
;
2598 /* Disabled because conditional branches clobber temporary vars. */
2599 if ((s
->env
->macsr
& MACSR_OMC
) != 0 && dual
) {
2600 /* Skip the accumulate if the value is already saturated. */
2601 l1
= gen_new_label();
2602 tmp
= tcg_temp_new();
2603 gen_op_and32(tmp
, QREG_MACSR
, tcg_const_i32(MACSR_PAV0
<< acc
));
2604 gen_op_jmp_nz32(tmp
, l1
);
2609 tcg_gen_sub_i64(MACREG(acc
), MACREG(acc
), s
->mactmp
);
2611 tcg_gen_add_i64(MACREG(acc
), MACREG(acc
), s
->mactmp
);
2613 if (s
->env
->macsr
& MACSR_FI
)
2614 gen_helper_macsatf(cpu_env
, tcg_const_i32(acc
));
2615 else if (s
->env
->macsr
& MACSR_SU
)
2616 gen_helper_macsats(cpu_env
, tcg_const_i32(acc
));
2618 gen_helper_macsatu(cpu_env
, tcg_const_i32(acc
));
2621 /* Disabled because conditional branches clobber temporary vars. */
2627 /* Dual accumulate variant. */
2628 acc
= (ext
>> 2) & 3;
2629 /* Restore the overflow flag from the multiplier. */
2630 tcg_gen_mov_i32(QREG_MACSR
, saved_flags
);
2632 /* Disabled because conditional branches clobber temporary vars. */
2633 if ((s
->env
->macsr
& MACSR_OMC
) != 0) {
2634 /* Skip the accumulate if the value is already saturated. */
2635 l1
= gen_new_label();
2636 tmp
= tcg_temp_new();
2637 gen_op_and32(tmp
, QREG_MACSR
, tcg_const_i32(MACSR_PAV0
<< acc
));
2638 gen_op_jmp_nz32(tmp
, l1
);
2642 tcg_gen_sub_i64(MACREG(acc
), MACREG(acc
), s
->mactmp
);
2644 tcg_gen_add_i64(MACREG(acc
), MACREG(acc
), s
->mactmp
);
2645 if (s
->env
->macsr
& MACSR_FI
)
2646 gen_helper_macsatf(cpu_env
, tcg_const_i32(acc
));
2647 else if (s
->env
->macsr
& MACSR_SU
)
2648 gen_helper_macsats(cpu_env
, tcg_const_i32(acc
));
2650 gen_helper_macsatu(cpu_env
, tcg_const_i32(acc
));
2652 /* Disabled because conditional branches clobber temporary vars. */
2657 gen_helper_mac_set_flags(cpu_env
, tcg_const_i32(acc
));
2661 rw
= (insn
& 0x40) ? AREG(insn
, 9) : DREG(insn
, 9);
2662 tcg_gen_mov_i32(rw
, loadval
);
2663 /* FIXME: Should address writeback happen with the masked or
2665 switch ((insn
>> 3) & 7) {
2666 case 3: /* Post-increment. */
2667 tcg_gen_addi_i32(AREG(insn
, 0), addr
, 4);
2669 case 4: /* Pre-decrement. */
2670 tcg_gen_mov_i32(AREG(insn
, 0), addr
);
2675 DISAS_INSN(from_mac
)
2681 rx
= (insn
& 8) ? AREG(insn
, 0) : DREG(insn
, 0);
2682 accnum
= (insn
>> 9) & 3;
2683 acc
= MACREG(accnum
);
2684 if (s
->env
->macsr
& MACSR_FI
) {
2685 gen_helper_get_macf(rx
, cpu_env
, acc
);
2686 } else if ((s
->env
->macsr
& MACSR_OMC
) == 0) {
2687 tcg_gen_trunc_i64_i32(rx
, acc
);
2688 } else if (s
->env
->macsr
& MACSR_SU
) {
2689 gen_helper_get_macs(rx
, acc
);
2691 gen_helper_get_macu(rx
, acc
);
2694 tcg_gen_movi_i64(acc
, 0);
2695 tcg_gen_andi_i32(QREG_MACSR
, QREG_MACSR
, ~(MACSR_PAV0
<< accnum
));
2699 DISAS_INSN(move_mac
)
2701 /* FIXME: This can be done without a helper. */
2705 dest
= tcg_const_i32((insn
>> 9) & 3);
2706 gen_helper_mac_move(cpu_env
, dest
, tcg_const_i32(src
));
2707 gen_mac_clear_flags();
2708 gen_helper_mac_set_flags(cpu_env
, dest
);
2711 DISAS_INSN(from_macsr
)
2715 reg
= (insn
& 8) ? AREG(insn
, 0) : DREG(insn
, 0);
2716 tcg_gen_mov_i32(reg
, QREG_MACSR
);
2719 DISAS_INSN(from_mask
)
2722 reg
= (insn
& 8) ? AREG(insn
, 0) : DREG(insn
, 0);
2723 tcg_gen_mov_i32(reg
, QREG_MAC_MASK
);
2726 DISAS_INSN(from_mext
)
2730 reg
= (insn
& 8) ? AREG(insn
, 0) : DREG(insn
, 0);
2731 acc
= tcg_const_i32((insn
& 0x400) ? 2 : 0);
2732 if (s
->env
->macsr
& MACSR_FI
)
2733 gen_helper_get_mac_extf(reg
, cpu_env
, acc
);
2735 gen_helper_get_mac_exti(reg
, cpu_env
, acc
);
2738 DISAS_INSN(macsr_to_ccr
)
2740 tcg_gen_movi_i32(QREG_CC_X
, 0);
2741 tcg_gen_andi_i32(QREG_CC_DEST
, QREG_MACSR
, 0xf);
2742 s
->cc_op
= CC_OP_FLAGS
;
2750 accnum
= (insn
>> 9) & 3;
2751 acc
= MACREG(accnum
);
2752 SRC_EA(env
, val
, OS_LONG
, 0, NULL
);
2753 if (s
->env
->macsr
& MACSR_FI
) {
2754 tcg_gen_ext_i32_i64(acc
, val
);
2755 tcg_gen_shli_i64(acc
, acc
, 8);
2756 } else if (s
->env
->macsr
& MACSR_SU
) {
2757 tcg_gen_ext_i32_i64(acc
, val
);
2759 tcg_gen_extu_i32_i64(acc
, val
);
2761 tcg_gen_andi_i32(QREG_MACSR
, QREG_MACSR
, ~(MACSR_PAV0
<< accnum
));
2762 gen_mac_clear_flags();
2763 gen_helper_mac_set_flags(cpu_env
, tcg_const_i32(accnum
));
2766 DISAS_INSN(to_macsr
)
2769 SRC_EA(env
, val
, OS_LONG
, 0, NULL
);
2770 gen_helper_set_macsr(cpu_env
, val
);
2777 SRC_EA(env
, val
, OS_LONG
, 0, NULL
);
2778 tcg_gen_ori_i32(QREG_MAC_MASK
, val
, 0xffff0000);
2785 SRC_EA(env
, val
, OS_LONG
, 0, NULL
);
2786 acc
= tcg_const_i32((insn
& 0x400) ? 2 : 0);
2787 if (s
->env
->macsr
& MACSR_FI
)
2788 gen_helper_set_mac_extf(cpu_env
, val
, acc
);
2789 else if (s
->env
->macsr
& MACSR_SU
)
2790 gen_helper_set_mac_exts(cpu_env
, val
, acc
);
2792 gen_helper_set_mac_extu(cpu_env
, val
, acc
);
2795 static disas_proc opcode_table
[65536];
2798 register_opcode (disas_proc proc
, uint16_t opcode
, uint16_t mask
)
2804 /* Sanity check. All set bits must be included in the mask. */
2805 if (opcode
& ~mask
) {
2807 "qemu internal error: bogus opcode definition %04x/%04x\n",
2811 /* This could probably be cleverer. For now just optimize the case where
2812 the top bits are known. */
2813 /* Find the first zero bit in the mask. */
2815 while ((i
& mask
) != 0)
2817 /* Iterate over all combinations of this and lower bits. */
2822 from
= opcode
& ~(i
- 1);
2824 for (i
= from
; i
< to
; i
++) {
2825 if ((i
& mask
) == opcode
)
2826 opcode_table
[i
] = proc
;
2830 /* Register m68k opcode handlers. Order is important.
2831 Later insn override earlier ones. */
2832 void register_m68k_insns (CPUM68KState
*env
)
2834 #define INSN(name, opcode, mask, feature) do { \
2835 if (m68k_feature(env, M68K_FEATURE_##feature)) \
2836 register_opcode(disas_##name, 0x##opcode, 0x##mask); \
2838 INSN(undef
, 0000, 0000, CF_ISA_A
);
2839 INSN(arith_im
, 0080, fff8
, CF_ISA_A
);
2840 INSN(bitrev
, 00c0
, fff8
, CF_ISA_APLUSC
);
2841 INSN(bitop_reg
, 0100, f1c0
, CF_ISA_A
);
2842 INSN(bitop_reg
, 0140, f1c0
, CF_ISA_A
);
2843 INSN(bitop_reg
, 0180, f1c0
, CF_ISA_A
);
2844 INSN(bitop_reg
, 01c0
, f1c0
, CF_ISA_A
);
2845 INSN(arith_im
, 0280, fff8
, CF_ISA_A
);
2846 INSN(byterev
, 02c0
, fff8
, CF_ISA_APLUSC
);
2847 INSN(arith_im
, 0480, fff8
, CF_ISA_A
);
2848 INSN(ff1
, 04c0
, fff8
, CF_ISA_APLUSC
);
2849 INSN(arith_im
, 0680, fff8
, CF_ISA_A
);
2850 INSN(bitop_im
, 0800, ffc0
, CF_ISA_A
);
2851 INSN(bitop_im
, 0840, ffc0
, CF_ISA_A
);
2852 INSN(bitop_im
, 0880, ffc0
, CF_ISA_A
);
2853 INSN(bitop_im
, 08c0
, ffc0
, CF_ISA_A
);
2854 INSN(arith_im
, 0a80
, fff8
, CF_ISA_A
);
2855 INSN(arith_im
, 0c00
, ff38
, CF_ISA_A
);
2856 INSN(move
, 1000, f000
, CF_ISA_A
);
2857 INSN(move
, 2000, f000
, CF_ISA_A
);
2858 INSN(move
, 3000, f000
, CF_ISA_A
);
2859 INSN(strldsr
, 40e7
, ffff
, CF_ISA_APLUSC
);
2860 INSN(negx
, 4080, fff8
, CF_ISA_A
);
2861 INSN(move_from_sr
, 40c0
, fff8
, CF_ISA_A
);
2862 INSN(lea
, 41c0
, f1c0
, CF_ISA_A
);
2863 INSN(clr
, 4200, ff00
, CF_ISA_A
);
2864 INSN(undef
, 42c0
, ffc0
, CF_ISA_A
);
2865 INSN(move_from_ccr
, 42c0
, fff8
, CF_ISA_A
);
2866 INSN(neg
, 4480, fff8
, CF_ISA_A
);
2867 INSN(move_to_ccr
, 44c0
, ffc0
, CF_ISA_A
);
2868 INSN(not, 4680, fff8
, CF_ISA_A
);
2869 INSN(move_to_sr
, 46c0
, ffc0
, CF_ISA_A
);
2870 INSN(pea
, 4840, ffc0
, CF_ISA_A
);
2871 INSN(swap
, 4840, fff8
, CF_ISA_A
);
2872 INSN(movem
, 48c0
, fbc0
, CF_ISA_A
);
2873 INSN(ext
, 4880, fff8
, CF_ISA_A
);
2874 INSN(ext
, 48c0
, fff8
, CF_ISA_A
);
2875 INSN(ext
, 49c0
, fff8
, CF_ISA_A
);
2876 INSN(tst
, 4a00
, ff00
, CF_ISA_A
);
2877 INSN(tas
, 4ac0
, ffc0
, CF_ISA_B
);
2878 INSN(halt
, 4ac8
, ffff
, CF_ISA_A
);
2879 INSN(pulse
, 4acc
, ffff
, CF_ISA_A
);
2880 INSN(illegal
, 4afc
, ffff
, CF_ISA_A
);
2881 INSN(mull
, 4c00
, ffc0
, CF_ISA_A
);
2882 INSN(divl
, 4c40
, ffc0
, CF_ISA_A
);
2883 INSN(sats
, 4c80
, fff8
, CF_ISA_B
);
2884 INSN(trap
, 4e40
, fff0
, CF_ISA_A
);
2885 INSN(link
, 4e50
, fff8
, CF_ISA_A
);
2886 INSN(unlk
, 4e58
, fff8
, CF_ISA_A
);
2887 INSN(move_to_usp
, 4e60
, fff8
, USP
);
2888 INSN(move_from_usp
, 4e68
, fff8
, USP
);
2889 INSN(nop
, 4e71
, ffff
, CF_ISA_A
);
2890 INSN(stop
, 4e72
, ffff
, CF_ISA_A
);
2891 INSN(rte
, 4e73
, ffff
, CF_ISA_A
);
2892 INSN(rts
, 4e75
, ffff
, CF_ISA_A
);
2893 INSN(movec
, 4e7b
, ffff
, CF_ISA_A
);
2894 INSN(jump
, 4e80
, ffc0
, CF_ISA_A
);
2895 INSN(jump
, 4ec0
, ffc0
, CF_ISA_A
);
2896 INSN(addsubq
, 5180, f1c0
, CF_ISA_A
);
2897 INSN(scc
, 50c0
, f0f8
, CF_ISA_A
);
2898 INSN(addsubq
, 5080, f1c0
, CF_ISA_A
);
2899 INSN(tpf
, 51f8
, fff8
, CF_ISA_A
);
2901 /* Branch instructions. */
2902 INSN(branch
, 6000, f000
, CF_ISA_A
);
2903 /* Disable long branch instructions, then add back the ones we want. */
2904 INSN(undef
, 60ff
, f0ff
, CF_ISA_A
); /* All long branches. */
2905 INSN(branch
, 60ff
, f0ff
, CF_ISA_B
);
2906 INSN(undef
, 60ff
, ffff
, CF_ISA_B
); /* bra.l */
2907 INSN(branch
, 60ff
, ffff
, BRAL
);
2909 INSN(moveq
, 7000, f100
, CF_ISA_A
);
2910 INSN(mvzs
, 7100, f100
, CF_ISA_B
);
2911 INSN(or, 8000, f000
, CF_ISA_A
);
2912 INSN(divw
, 80c0
, f0c0
, CF_ISA_A
);
2913 INSN(addsub
, 9000, f000
, CF_ISA_A
);
2914 INSN(subx
, 9180, f1f8
, CF_ISA_A
);
2915 INSN(suba
, 91c0
, f1c0
, CF_ISA_A
);
2917 INSN(undef_mac
, a000
, f000
, CF_ISA_A
);
2918 INSN(mac
, a000
, f100
, CF_EMAC
);
2919 INSN(from_mac
, a180
, f9b0
, CF_EMAC
);
2920 INSN(move_mac
, a110
, f9fc
, CF_EMAC
);
2921 INSN(from_macsr
,a980
, f9f0
, CF_EMAC
);
2922 INSN(from_mask
, ad80
, fff0
, CF_EMAC
);
2923 INSN(from_mext
, ab80
, fbf0
, CF_EMAC
);
2924 INSN(macsr_to_ccr
, a9c0
, ffff
, CF_EMAC
);
2925 INSN(to_mac
, a100
, f9c0
, CF_EMAC
);
2926 INSN(to_macsr
, a900
, ffc0
, CF_EMAC
);
2927 INSN(to_mext
, ab00
, fbc0
, CF_EMAC
);
2928 INSN(to_mask
, ad00
, ffc0
, CF_EMAC
);
2930 INSN(mov3q
, a140
, f1c0
, CF_ISA_B
);
2931 INSN(cmp
, b000
, f1c0
, CF_ISA_B
); /* cmp.b */
2932 INSN(cmp
, b040
, f1c0
, CF_ISA_B
); /* cmp.w */
2933 INSN(cmpa
, b0c0
, f1c0
, CF_ISA_B
); /* cmpa.w */
2934 INSN(cmp
, b080
, f1c0
, CF_ISA_A
);
2935 INSN(cmpa
, b1c0
, f1c0
, CF_ISA_A
);
2936 INSN(eor
, b180
, f1c0
, CF_ISA_A
);
2937 INSN(and, c000
, f000
, CF_ISA_A
);
2938 INSN(mulw
, c0c0
, f0c0
, CF_ISA_A
);
2939 INSN(addsub
, d000
, f000
, CF_ISA_A
);
2940 INSN(addx
, d180
, f1f8
, CF_ISA_A
);
2941 INSN(adda
, d1c0
, f1c0
, CF_ISA_A
);
2942 INSN(shift_im
, e080
, f0f0
, CF_ISA_A
);
2943 INSN(shift_reg
, e0a0
, f0f0
, CF_ISA_A
);
2944 INSN(undef_fpu
, f000
, f000
, CF_ISA_A
);
2945 INSN(fpu
, f200
, ffc0
, CF_FPU
);
2946 INSN(fbcc
, f280
, ffc0
, CF_FPU
);
2947 INSN(frestore
, f340
, ffc0
, CF_FPU
);
2948 INSN(fsave
, f340
, ffc0
, CF_FPU
);
2949 INSN(intouch
, f340
, ffc0
, CF_ISA_A
);
2950 INSN(cpushl
, f428
, ff38
, CF_ISA_A
);
2951 INSN(wddata
, fb00
, ff00
, CF_ISA_A
);
2952 INSN(wdebug
, fbc0
, ffc0
, CF_ISA_A
);
2956 /* ??? Some of this implementation is not exception safe. We should always
2957 write back the result to memory before setting the condition codes. */
2958 static void disas_m68k_insn(CPUM68KState
* env
, DisasContext
*s
)
2962 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP
| CPU_LOG_TB_OP_OPT
))) {
2963 tcg_gen_debug_insn_start(s
->pc
);
2966 insn
= cpu_lduw_code(env
, s
->pc
);
2969 opcode_table
[insn
](env
, s
, insn
);
2972 /* generate intermediate code for basic block 'tb'. */
2974 gen_intermediate_code_internal(M68kCPU
*cpu
, TranslationBlock
*tb
,
2977 CPUState
*cs
= CPU(cpu
);
2978 CPUM68KState
*env
= &cpu
->env
;
2979 DisasContext dc1
, *dc
= &dc1
;
2980 uint16_t *gen_opc_end
;
2983 target_ulong pc_start
;
2988 /* generate intermediate code */
2993 gen_opc_end
= tcg_ctx
.gen_opc_buf
+ OPC_MAX_SIZE
;
2996 dc
->is_jmp
= DISAS_NEXT
;
2998 dc
->cc_op
= CC_OP_DYNAMIC
;
2999 dc
->singlestep_enabled
= cs
->singlestep_enabled
;
3000 dc
->fpcr
= env
->fpcr
;
3001 dc
->user
= (env
->sr
& SR_S
) == 0;
3006 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
3008 max_insns
= CF_COUNT_MASK
;
3012 pc_offset
= dc
->pc
- pc_start
;
3013 gen_throws_exception
= NULL
;
3014 if (unlikely(!QTAILQ_EMPTY(&cs
->breakpoints
))) {
3015 QTAILQ_FOREACH(bp
, &cs
->breakpoints
, entry
) {
3016 if (bp
->pc
== dc
->pc
) {
3017 gen_exception(dc
, dc
->pc
, EXCP_DEBUG
);
3018 dc
->is_jmp
= DISAS_JUMP
;
3026 j
= tcg_ctx
.gen_opc_ptr
- tcg_ctx
.gen_opc_buf
;
3030 tcg_ctx
.gen_opc_instr_start
[lj
++] = 0;
3032 tcg_ctx
.gen_opc_pc
[lj
] = dc
->pc
;
3033 tcg_ctx
.gen_opc_instr_start
[lj
] = 1;
3034 tcg_ctx
.gen_opc_icount
[lj
] = num_insns
;
3036 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
3038 dc
->insn_pc
= dc
->pc
;
3039 disas_m68k_insn(env
, dc
);
3041 } while (!dc
->is_jmp
&& tcg_ctx
.gen_opc_ptr
< gen_opc_end
&&
3042 !cs
->singlestep_enabled
&&
3044 (pc_offset
) < (TARGET_PAGE_SIZE
- 32) &&
3045 num_insns
< max_insns
);
3047 if (tb
->cflags
& CF_LAST_IO
)
3049 if (unlikely(cs
->singlestep_enabled
)) {
3050 /* Make sure the pc is updated, and raise a debug exception. */
3052 gen_flush_cc_op(dc
);
3053 tcg_gen_movi_i32(QREG_PC
, dc
->pc
);
3055 gen_helper_raise_exception(cpu_env
, tcg_const_i32(EXCP_DEBUG
));
3057 switch(dc
->is_jmp
) {
3059 gen_flush_cc_op(dc
);
3060 gen_jmp_tb(dc
, 0, dc
->pc
);
3065 gen_flush_cc_op(dc
);
3066 /* indicate that the hash table must be used to find the next TB */
3070 /* nothing more to generate */
3074 gen_tb_end(tb
, num_insns
);
3075 *tcg_ctx
.gen_opc_ptr
= INDEX_op_end
;
3078 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
3079 qemu_log("----------------\n");
3080 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
3081 log_target_disas(env
, pc_start
, dc
->pc
- pc_start
, 0);
3086 j
= tcg_ctx
.gen_opc_ptr
- tcg_ctx
.gen_opc_buf
;
3089 tcg_ctx
.gen_opc_instr_start
[lj
++] = 0;
3091 tb
->size
= dc
->pc
- pc_start
;
3092 tb
->icount
= num_insns
;
3096 //expand_target_qops();
3099 void gen_intermediate_code(CPUM68KState
*env
, TranslationBlock
*tb
)
3101 gen_intermediate_code_internal(m68k_env_get_cpu(env
), tb
, false);
3104 void gen_intermediate_code_pc(CPUM68KState
*env
, TranslationBlock
*tb
)
3106 gen_intermediate_code_internal(m68k_env_get_cpu(env
), tb
, true);
3109 void m68k_cpu_dump_state(CPUState
*cs
, FILE *f
, fprintf_function cpu_fprintf
,
3112 M68kCPU
*cpu
= M68K_CPU(cs
);
3113 CPUM68KState
*env
= &cpu
->env
;
3117 for (i
= 0; i
< 8; i
++)
3119 u
.d
= env
->fregs
[i
];
3120 cpu_fprintf (f
, "D%d = %08x A%d = %08x F%d = %08x%08x (%12g)\n",
3121 i
, env
->dregs
[i
], i
, env
->aregs
[i
],
3122 i
, u
.l
.upper
, u
.l
.lower
, *(double *)&u
.d
);
3124 cpu_fprintf (f
, "PC = %08x ", env
->pc
);
3126 cpu_fprintf (f
, "SR = %04x %c%c%c%c%c ", sr
, (sr
& 0x10) ? 'X' : '-',
3127 (sr
& CCF_N
) ? 'N' : '-', (sr
& CCF_Z
) ? 'Z' : '-',
3128 (sr
& CCF_V
) ? 'V' : '-', (sr
& CCF_C
) ? 'C' : '-');
3129 cpu_fprintf (f
, "FPRESULT = %12g\n", *(double *)&env
->fp_result
);
3132 void restore_state_to_opc(CPUM68KState
*env
, TranslationBlock
*tb
, int pc_pos
)
3134 env
->pc
= tcg_ctx
.gen_opc_pc
[pc_pos
];