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"
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 gen_exception(s, s->pc - 2, EXCP_UNSUPPORTED);
885 cpu_abort(env, "Illegal instruction: %04x @ %08x", insn, s->pc - 2);
895 sign = (insn & 0x100) != 0;
897 tmp = tcg_temp_new();
899 tcg_gen_ext16s_i32(tmp, reg);
901 tcg_gen_ext16u_i32(tmp, reg);
902 SRC_EA(env, src, OS_WORD, sign, NULL);
903 tcg_gen_mul_i32(tmp, tmp, src);
904 tcg_gen_mov_i32(reg, tmp);
905 /* Unlike m68k, coldfire always clears the overflow bit. */
906 gen_logic_cc(s, tmp);
916 sign = (insn & 0x100) != 0;
919 tcg_gen_ext16s_i32(QREG_DIV1, reg);
921 tcg_gen_ext16u_i32(QREG_DIV1, reg);
923 SRC_EA(env, src, OS_WORD, sign, NULL);
924 tcg_gen_mov_i32(QREG_DIV2, src);
926 gen_helper_divs(cpu_env, tcg_const_i32(1));
928 gen_helper_divu(cpu_env, tcg_const_i32(1));
931 tmp = tcg_temp_new();
932 src = tcg_temp_new();
933 tcg_gen_ext16u_i32(tmp, QREG_DIV1);
934 tcg_gen_shli_i32(src, QREG_DIV2, 16);
935 tcg_gen_or_i32(reg, tmp, src);
936 s->cc_op = CC_OP_FLAGS;
946 ext = cpu_lduw_code(env, s->pc);
949 gen_exception(s, s->pc - 4, EXCP_UNSUPPORTED);
954 tcg_gen_mov_i32(QREG_DIV1, num);
955 SRC_EA(env, den, OS_LONG, 0, NULL);
956 tcg_gen_mov_i32(QREG_DIV2, den);
958 gen_helper_divs(cpu_env, tcg_const_i32(0));
960 gen_helper_divu(cpu_env, tcg_const_i32(0));
962 if ((ext & 7) == ((ext >> 12) & 7)) {
964 tcg_gen_mov_i32 (reg, QREG_DIV1);
967 tcg_gen_mov_i32 (reg, QREG_DIV2);
969 s->cc_op = CC_OP_FLAGS;
981 add = (insn & 0x4000) != 0;
983 dest = tcg_temp_new();
985 SRC_EA(env, tmp, OS_LONG, 0, &addr);
989 SRC_EA(env, src, OS_LONG, 0, NULL);
992 tcg_gen_add_i32(dest, tmp, src);
993 gen_helper_xflag_lt(QREG_CC_X, dest, src);
994 s->cc_op = CC_OP_ADD;
996 gen_helper_xflag_lt(QREG_CC_X, tmp, src);
997 tcg_gen_sub_i32(dest, tmp, src);
998 s->cc_op = CC_OP_SUB;
1000 gen_update_cc_add(dest, src);
1002 DEST_EA(env, insn, OS_LONG, dest, &addr);
1004 tcg_gen_mov_i32(reg, dest);
1009 /* Reverse the order of the bits in REG. */
1013 reg = DREG(insn, 0);
1014 gen_helper_bitrev(reg, reg);
1017 DISAS_INSN(bitop_reg)
1027 if ((insn & 0x38) != 0)
1031 op = (insn >> 6) & 3;
1032 SRC_EA(env, src1, opsize, 0, op ? &addr: NULL);
1033 src2 = DREG(insn, 9);
1034 dest = tcg_temp_new();
1037 tmp = tcg_temp_new();
1038 if (opsize == OS_BYTE)
1039 tcg_gen_andi_i32(tmp, src2, 7);
1041 tcg_gen_andi_i32(tmp, src2, 31);
1043 tmp = tcg_temp_new();
1044 tcg_gen_shr_i32(tmp, src1, src2);
1045 tcg_gen_andi_i32(tmp, tmp, 1);
1046 tcg_gen_shli_i32(tmp, tmp, 2);
1047 /* Clear CCF_Z if bit set. */
1048 tcg_gen_ori_i32(QREG_CC_DEST, QREG_CC_DEST, CCF_Z);
1049 tcg_gen_xor_i32(QREG_CC_DEST, QREG_CC_DEST, tmp);
1051 tcg_gen_shl_i32(tmp, tcg_const_i32(1), src2);
1054 tcg_gen_xor_i32(dest, src1, tmp);
1057 tcg_gen_not_i32(tmp, tmp);
1058 tcg_gen_and_i32(dest, src1, tmp);
1061 tcg_gen_or_i32(dest, src1, tmp);
1067 DEST_EA(env, insn, opsize, dest, &addr);
1073 reg = DREG(insn, 0);
1075 gen_helper_sats(reg, reg, QREG_CC_DEST);
1076 gen_logic_cc(s, reg);
1079 static void gen_push(DisasContext *s, TCGv val)
1083 tmp = tcg_temp_new();
1084 tcg_gen_subi_i32(tmp, QREG_SP, 4);
1085 gen_store(s, OS_LONG, tmp, val);
1086 tcg_gen_mov_i32(QREG_SP, tmp);
1098 mask = cpu_lduw_code(env, s->pc);
1100 tmp = gen_lea(env, s, insn, OS_LONG);
1101 if (IS_NULL_QREG(tmp)) {
1105 addr = tcg_temp_new();
1106 tcg_gen_mov_i32(addr, tmp);
1107 is_load = ((insn & 0x0400) != 0);
1108 for (i = 0; i < 16; i++, mask >>= 1) {
1115 tmp = gen_load(s, OS_LONG, addr, 0);
1116 tcg_gen_mov_i32(reg, tmp);
1118 gen_store(s, OS_LONG, addr, reg);
1121 tcg_gen_addi_i32(addr, addr, 4);
1126 DISAS_INSN(bitop_im)
1136 if ((insn & 0x38) != 0)
1140 op = (insn >> 6) & 3;
1142 bitnum = cpu_lduw_code(env, s->pc);
1144 if (bitnum & 0xff00) {
1145 disas_undef(env, s, insn);
1149 SRC_EA(env, src1, opsize, 0, op ? &addr: NULL);
1152 if (opsize == OS_BYTE)
1158 tmp = tcg_temp_new();
1159 assert (CCF_Z == (1 << 2));
1161 tcg_gen_shri_i32(tmp, src1, bitnum - 2);
1162 else if (bitnum < 2)
1163 tcg_gen_shli_i32(tmp, src1, 2 - bitnum);
1165 tcg_gen_mov_i32(tmp, src1);
1166 tcg_gen_andi_i32(tmp, tmp, CCF_Z);
1167 /* Clear CCF_Z if bit set. */
1168 tcg_gen_ori_i32(QREG_CC_DEST, QREG_CC_DEST, CCF_Z);
1169 tcg_gen_xor_i32(QREG_CC_DEST, QREG_CC_DEST, tmp);
1173 tcg_gen_xori_i32(tmp, src1, mask);
1176 tcg_gen_andi_i32(tmp, src1, ~mask);
1179 tcg_gen_ori_i32(tmp, src1, mask);
1184 DEST_EA(env, insn, opsize, tmp, &addr);
1188 DISAS_INSN(arith_im)
1196 op = (insn >> 9) & 7;
1197 SRC_EA(env, src1, OS_LONG, 0, (op == 6) ? NULL : &addr);
1198 im = read_im32(env, s);
1199 dest = tcg_temp_new();
1202 tcg_gen_ori_i32(dest, src1, im);
1203 gen_logic_cc(s, dest);
1206 tcg_gen_andi_i32(dest, src1, im);
1207 gen_logic_cc(s, dest);
1210 tcg_gen_mov_i32(dest, src1);
1211 gen_helper_xflag_lt(QREG_CC_X, dest, tcg_const_i32(im));
1212 tcg_gen_subi_i32(dest, dest, im);
1213 gen_update_cc_add(dest, tcg_const_i32(im));
1214 s->cc_op = CC_OP_SUB;
1217 tcg_gen_mov_i32(dest, src1);
1218 tcg_gen_addi_i32(dest, dest, im);
1219 gen_update_cc_add(dest, tcg_const_i32(im));
1220 gen_helper_xflag_lt(QREG_CC_X, dest, tcg_const_i32(im));
1221 s->cc_op = CC_OP_ADD;
1224 tcg_gen_xori_i32(dest, src1, im);
1225 gen_logic_cc(s, dest);
1228 tcg_gen_mov_i32(dest, src1);
1229 tcg_gen_subi_i32(dest, dest, im);
1230 gen_update_cc_add(dest, tcg_const_i32(im));
1231 s->cc_op = CC_OP_SUB;
1237 DEST_EA(env, insn, OS_LONG, dest, &addr);
1245 reg = DREG(insn, 0);
1246 tcg_gen_bswap32_i32(reg, reg);
1256 switch (insn >> 12) {
1257 case 1: /* move.b */
1260 case 2: /* move.l */
1263 case 3: /* move.w */
1269 SRC_EA(env, src, opsize, 1, NULL);
1270 op = (insn >> 6) & 7;
1273 /* The value will already have been sign extended. */
1274 dest = AREG(insn, 9);
1275 tcg_gen_mov_i32(dest, src);
1279 dest_ea = ((insn >> 9) & 7) | (op << 3);
1280 DEST_EA(env, dest_ea, opsize, src, NULL);
1281 /* This will be correct because loads sign extend. */
1282 gen_logic_cc(s, src);
1291 reg = DREG(insn, 0);
1292 gen_helper_subx_cc(reg, cpu_env, tcg_const_i32(0), reg);
1300 reg = AREG(insn, 9);
1301 tmp = gen_lea(env, s, insn, OS_LONG);
1302 if (IS_NULL_QREG(tmp)) {
1306 tcg_gen_mov_i32(reg, tmp);
1313 switch ((insn >> 6) & 3) {
1326 DEST_EA(env, insn, opsize, tcg_const_i32(0), NULL);
1327 gen_logic_cc(s, tcg_const_i32(0));
1330 static TCGv gen_get_ccr(DisasContext *s)
1335 dest = tcg_temp_new();
1336 tcg_gen_shli_i32(dest, QREG_CC_X, 4);
1337 tcg_gen_or_i32(dest, dest, QREG_CC_DEST);
1341 DISAS_INSN(move_from_ccr)
1346 ccr = gen_get_ccr(s);
1347 reg = DREG(insn, 0);
1348 gen_partset_reg(OS_WORD, reg, ccr);
1356 reg = DREG(insn, 0);
1357 src1 = tcg_temp_new();
1358 tcg_gen_mov_i32(src1, reg);
1359 tcg_gen_neg_i32(reg, src1);
1360 s->cc_op = CC_OP_SUB;
1361 gen_update_cc_add(reg, src1);
1362 gen_helper_xflag_lt(QREG_CC_X, tcg_const_i32(0), src1);
1363 s->cc_op = CC_OP_SUB;
1366 static void gen_set_sr_im(DisasContext *s, uint16_t val, int ccr_only)
1368 tcg_gen_movi_i32(QREG_CC_DEST, val & 0xf);
1369 tcg_gen_movi_i32(QREG_CC_X, (val & 0x10) >> 4);
1371 gen_helper_set_sr(cpu_env, tcg_const_i32(val & 0xff00));
1375 static void gen_set_sr(CPUM68KState *env, DisasContext *s, uint16_t insn,
1381 s->cc_op = CC_OP_FLAGS;
1382 if ((insn & 0x38) == 0)
1384 tmp = tcg_temp_new();
1385 reg = DREG(insn, 0);
1386 tcg_gen_andi_i32(QREG_CC_DEST, reg, 0xf);
1387 tcg_gen_shri_i32(tmp, reg, 4);
1388 tcg_gen_andi_i32(QREG_CC_X, tmp, 1);
1390 gen_helper_set_sr(cpu_env, reg);
1393 else if ((insn & 0x3f) == 0x3c)
1396 val = cpu_lduw_code(env, s->pc);
1398 gen_set_sr_im(s, val, ccr_only);
1401 disas_undef(env, s, insn);
1404 DISAS_INSN(move_to_ccr)
1406 gen_set_sr(env, s, insn, 1);
1413 reg = DREG(insn, 0);
1414 tcg_gen_not_i32(reg, reg);
1415 gen_logic_cc(s, reg);
1424 src1 = tcg_temp_new();
1425 src2 = tcg_temp_new();
1426 reg = DREG(insn, 0);
1427 tcg_gen_shli_i32(src1, reg, 16);
1428 tcg_gen_shri_i32(src2, reg, 16);
1429 tcg_gen_or_i32(reg, src1, src2);
1430 gen_logic_cc(s, reg);
1437 tmp = gen_lea(env, s, insn, OS_LONG);
1438 if (IS_NULL_QREG(tmp)) {
1451 reg = DREG(insn, 0);
1452 op = (insn >> 6) & 7;
1453 tmp = tcg_temp_new();
1455 tcg_gen_ext16s_i32(tmp, reg);
1457 tcg_gen_ext8s_i32(tmp, reg);
1459 gen_partset_reg(OS_WORD, reg, tmp);
1461 tcg_gen_mov_i32(reg, tmp);
1462 gen_logic_cc(s, tmp);
1470 switch ((insn >> 6) & 3) {
1483 SRC_EA(env, tmp, opsize, 1, NULL);
1484 gen_logic_cc(s, tmp);
1489 /* Implemented as a NOP. */
1494 gen_exception(s, s->pc - 2, EXCP_ILLEGAL);
1497 /* ??? This should be atomic. */
1504 dest = tcg_temp_new();
1505 SRC_EA(env, src1, OS_BYTE, 1, &addr);
1506 gen_logic_cc(s, src1);
1507 tcg_gen_ori_i32(dest, src1, 0x80);
1508 DEST_EA(env, insn, OS_BYTE, dest, &addr);
1518 /* The upper 32 bits of the product are discarded, so
1519 muls.l and mulu.l are functionally equivalent. */
1520 ext = cpu_lduw_code(env, s->pc);
1523 gen_exception(s, s->pc - 4, EXCP_UNSUPPORTED);
1526 reg = DREG(ext, 12);
1527 SRC_EA(env, src1, OS_LONG, 0, NULL);
1528 dest = tcg_temp_new();
1529 tcg_gen_mul_i32(dest, src1, reg);
1530 tcg_gen_mov_i32(reg, dest);
1531 /* Unlike m68k, coldfire always clears the overflow bit. */
1532 gen_logic_cc(s, dest);
1541 offset = cpu_ldsw_code(env, s->pc);
1543 reg = AREG(insn, 0);
1544 tmp = tcg_temp_new();
1545 tcg_gen_subi_i32(tmp, QREG_SP, 4);
1546 gen_store(s, OS_LONG, tmp, reg);
1547 if ((insn & 7) != 7)
1548 tcg_gen_mov_i32(reg, tmp);
1549 tcg_gen_addi_i32(QREG_SP, tmp, offset);
1558 src = tcg_temp_new();
1559 reg = AREG(insn, 0);
1560 tcg_gen_mov_i32(src, reg);
1561 tmp = gen_load(s, OS_LONG, src, 0);
1562 tcg_gen_mov_i32(reg, tmp);
1563 tcg_gen_addi_i32(QREG_SP, src, 4);
1574 tmp = gen_load(s, OS_LONG, QREG_SP, 0);
1575 tcg_gen_addi_i32(QREG_SP, QREG_SP, 4);
1583 /* Load the target address first to ensure correct exception
1585 tmp = gen_lea(env, s, insn, OS_LONG);
1586 if (IS_NULL_QREG(tmp)) {
1590 if ((insn & 0x40) == 0) {
1592 gen_push(s, tcg_const_i32(s->pc));
1605 SRC_EA(env, src1, OS_LONG, 0, &addr);
1606 val = (insn >> 9) & 7;
1609 dest = tcg_temp_new();
1610 tcg_gen_mov_i32(dest, src1);
1611 if ((insn & 0x38) == 0x08) {
1612 /* Don't update condition codes if the destination is an
1613 address register. */
1614 if (insn & 0x0100) {
1615 tcg_gen_subi_i32(dest, dest, val);
1617 tcg_gen_addi_i32(dest, dest, val);
1620 src2 = tcg_const_i32(val);
1621 if (insn & 0x0100) {
1622 gen_helper_xflag_lt(QREG_CC_X, dest, src2);
1623 tcg_gen_subi_i32(dest, dest, val);
1624 s->cc_op = CC_OP_SUB;
1626 tcg_gen_addi_i32(dest, dest, val);
1627 gen_helper_xflag_lt(QREG_CC_X, dest, src2);
1628 s->cc_op = CC_OP_ADD;
1630 gen_update_cc_add(dest, src2);
1632 DEST_EA(env, insn, OS_LONG, dest, &addr);
1638 case 2: /* One extension word. */
1641 case 3: /* Two extension words. */
1644 case 4: /* No extension words. */
1647 disas_undef(env, s, insn);
1659 op = (insn >> 8) & 0xf;
1660 offset = (int8_t)insn;
1662 offset = cpu_ldsw_code(env, s->pc);
1664 } else if (offset == -1) {
1665 offset = read_im32(env, s);
1669 gen_push(s, tcg_const_i32(s->pc));
1674 l1 = gen_new_label();
1675 gen_jmpcc(s, ((insn >> 8) & 0xf) ^ 1, l1);
1676 gen_jmp_tb(s, 1, base + offset);
1678 gen_jmp_tb(s, 0, s->pc);
1680 /* Unconditional branch. */
1681 gen_jmp_tb(s, 0, base + offset);
1690 tcg_gen_movi_i32(DREG(insn, 9), val);
1691 gen_logic_cc(s, tcg_const_i32(val));
1704 SRC_EA(env, src, opsize, (insn & 0x80) == 0, NULL);
1705 reg = DREG(insn, 9);
1706 tcg_gen_mov_i32(reg, src);
1707 gen_logic_cc(s, src);
1717 reg = DREG(insn, 9);
1718 dest = tcg_temp_new();
1720 SRC_EA(env, src, OS_LONG, 0, &addr);
1721 tcg_gen_or_i32(dest, src, reg);
1722 DEST_EA(env, insn, OS_LONG, dest, &addr);
1724 SRC_EA(env, src, OS_LONG, 0, NULL);
1725 tcg_gen_or_i32(dest, src, reg);
1726 tcg_gen_mov_i32(reg, dest);
1728 gen_logic_cc(s, dest);
1736 SRC_EA(env, src, OS_LONG, 0, NULL);
1737 reg = AREG(insn, 9);
1738 tcg_gen_sub_i32(reg, reg, src);
1747 reg = DREG(insn, 9);
1748 src = DREG(insn, 0);
1749 gen_helper_subx_cc(reg, cpu_env, reg, src);
1757 val = (insn >> 9) & 7;
1760 src = tcg_const_i32(val);
1761 gen_logic_cc(s, src);
1762 DEST_EA(env, insn, OS_LONG, src, NULL);
1773 op = (insn >> 6) & 3;
1777 s->cc_op = CC_OP_CMPB;
1781 s->cc_op = CC_OP_CMPW;
1785 s->cc_op = CC_OP_SUB;
1790 SRC_EA(env, src, opsize, 1, NULL);
1791 reg = DREG(insn, 9);
1792 dest = tcg_temp_new();
1793 tcg_gen_sub_i32(dest, reg, src);
1794 gen_update_cc_add(dest, src);
1809 SRC_EA(env, src, opsize, 1, NULL);
1810 reg = AREG(insn, 9);
1811 dest = tcg_temp_new();
1812 tcg_gen_sub_i32(dest, reg, src);
1813 gen_update_cc_add(dest, src);
1814 s->cc_op = CC_OP_SUB;
1824 SRC_EA(env, src, OS_LONG, 0, &addr);
1825 reg = DREG(insn, 9);
1826 dest = tcg_temp_new();
1827 tcg_gen_xor_i32(dest, src, reg);
1828 gen_logic_cc(s, dest);
1829 DEST_EA(env, insn, OS_LONG, dest, &addr);
1839 reg = DREG(insn, 9);
1840 dest = tcg_temp_new();
1842 SRC_EA(env, src, OS_LONG, 0, &addr);
1843 tcg_gen_and_i32(dest, src, reg);
1844 DEST_EA(env, insn, OS_LONG, dest, &addr);
1846 SRC_EA(env, src, OS_LONG, 0, NULL);
1847 tcg_gen_and_i32(dest, src, reg);
1848 tcg_gen_mov_i32(reg, dest);
1850 gen_logic_cc(s, dest);
1858 SRC_EA(env, src, OS_LONG, 0, NULL);
1859 reg = AREG(insn, 9);
1860 tcg_gen_add_i32(reg, reg, src);
1869 reg = DREG(insn, 9);
1870 src = DREG(insn, 0);
1871 gen_helper_addx_cc(reg, cpu_env, reg, src);
1872 s->cc_op = CC_OP_FLAGS;
1875 /* TODO: This could be implemented without helper functions. */
1876 DISAS_INSN(shift_im)
1882 reg = DREG(insn, 0);
1883 tmp = (insn >> 9) & 7;
1886 shift = tcg_const_i32(tmp);
1887 /* No need to flush flags becuse we know we will set C flag. */
1889 gen_helper_shl_cc(reg, cpu_env, reg, shift);
1892 gen_helper_shr_cc(reg, cpu_env, reg, shift);
1894 gen_helper_sar_cc(reg, cpu_env, reg, shift);
1897 s->cc_op = CC_OP_SHIFT;
1900 DISAS_INSN(shift_reg)
1905 reg = DREG(insn, 0);
1906 shift = DREG(insn, 9);
1907 /* Shift by zero leaves C flag unmodified. */
1910 gen_helper_shl_cc(reg, cpu_env, reg, shift);
1913 gen_helper_shr_cc(reg, cpu_env, reg, shift);
1915 gen_helper_sar_cc(reg, cpu_env, reg, shift);
1918 s->cc_op = CC_OP_SHIFT;
1924 reg = DREG(insn, 0);
1925 gen_logic_cc(s, reg);
1926 gen_helper_ff1(reg, reg);
1929 static TCGv gen_get_sr(DisasContext *s)
1934 ccr = gen_get_ccr(s);
1935 sr = tcg_temp_new();
1936 tcg_gen_andi_i32(sr, QREG_SR, 0xffe0);
1937 tcg_gen_or_i32(sr, sr, ccr);
1947 ext = cpu_lduw_code(env, s->pc);
1949 if (ext != 0x46FC) {
1950 gen_exception(s, addr, EXCP_UNSUPPORTED);
1953 ext = cpu_lduw_code(env, s->pc);
1955 if (IS_USER(s) || (ext & SR_S) == 0) {
1956 gen_exception(s, addr, EXCP_PRIVILEGE);
1959 gen_push(s, gen_get_sr(s));
1960 gen_set_sr_im(s, ext, 0);
1963 DISAS_INSN(move_from_sr)
1969 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
1973 reg = DREG(insn, 0);
1974 gen_partset_reg(OS_WORD, reg, sr);
1977 DISAS_INSN(move_to_sr)
1980 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
1983 gen_set_sr(env, s, insn, 0);
1987 DISAS_INSN(move_from_usp)
1990 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
1993 /* TODO: Implement USP. */
1994 gen_exception(s, s->pc - 2, EXCP_ILLEGAL);
1997 DISAS_INSN(move_to_usp)
2000 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
2003 /* TODO: Implement USP. */
2004 gen_exception(s, s->pc - 2, EXCP_ILLEGAL);
2009 gen_exception(s, s->pc, EXCP_HALT_INSN);
2017 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
2021 ext = cpu_lduw_code(env, s->pc);
2024 gen_set_sr_im(s, ext, 0);
2025 tcg_gen_movi_i32(cpu_halted, 1);
2026 gen_exception(s, s->pc, EXCP_HLT);
2032 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
2035 gen_exception(s, s->pc - 2, EXCP_RTE);
2044 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
2048 ext = cpu_lduw_code(env, s->pc);
2052 reg = AREG(ext, 12);
2054 reg = DREG(ext, 12);
2056 gen_helper_movec(cpu_env, tcg_const_i32(ext & 0xfff), reg);
2063 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
2066 /* ICache fetch. Implement as no-op. */
2072 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
2075 /* Cache push/invalidate. Implement as no-op. */
2080 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
2086 gen_exception(s, s->pc - 2, EXCP_PRIVILEGE);
2089 /* TODO: Implement wdebug. */
2090 cpu_abort(env, "WDEBUG not implemented");
2095 gen_exception(s, s->pc - 2, EXCP_TRAP0 + (insn & 0xf));
2098 /* ??? FP exceptions are not implemented. Most exceptions are deferred until
2099 immediately before the next FP instruction is executed. */
2113 ext = cpu_lduw_code(env, s->pc);
2115 opmode = ext & 0x7f;
2116 switch ((ext >> 13) & 7) {
2121 case 3: /* fmove out */
2123 tmp32 = tcg_temp_new_i32();
2125 /* ??? TODO: Proper behavior on overflow. */
2126 switch ((ext >> 10) & 7) {
2129 gen_helper_f64_to_i32(tmp32, cpu_env, src);
2133 gen_helper_f64_to_f32(tmp32, cpu_env, src);
2137 gen_helper_f64_to_i32(tmp32, cpu_env, src);
2139 case 5: /* OS_DOUBLE */
2140 tcg_gen_mov_i32(tmp32, AREG(insn, 0));
2141 switch ((insn >> 3) & 7) {
2146 tcg_gen_addi_i32(tmp32, tmp32, -8);
2149 offset = cpu_ldsw_code(env, s->pc);
2151 tcg_gen_addi_i32(tmp32, tmp32, offset);
2156 gen_store64(s, tmp32, src);
2157 switch ((insn >> 3) & 7) {
2159 tcg_gen_addi_i32(tmp32, tmp32, 8);
2160 tcg_gen_mov_i32(AREG(insn, 0), tmp32);
2163 tcg_gen_mov_i32(AREG(insn, 0), tmp32);
2166 tcg_temp_free_i32(tmp32);
2170 gen_helper_f64_to_i32(tmp32, cpu_env, src);
2175 DEST_EA(env, insn, opsize, tmp32, NULL);
2176 tcg_temp_free_i32(tmp32);
2178 case 4: /* fmove to control register. */
2179 switch ((ext >> 10) & 7) {
2181 /* Not implemented. Ignore writes. */
2186 cpu_abort(NULL, "Unimplemented: fmove to control %d",
2190 case 5: /* fmove from control register. */
2191 switch ((ext >> 10) & 7) {
2193 /* Not implemented. Always return zero. */
2194 tmp32 = tcg_const_i32(0);
2199 cpu_abort(NULL, "Unimplemented: fmove from control %d",
2203 DEST_EA(env, insn, OS_LONG, tmp32, NULL);
2205 case 6: /* fmovem */
2211 if ((ext & 0x1f00) != 0x1000 || (ext & 0xff) == 0)
2213 tmp32 = gen_lea(env, s, insn, OS_LONG);
2214 if (IS_NULL_QREG(tmp32)) {
2218 addr = tcg_temp_new_i32();
2219 tcg_gen_mov_i32(addr, tmp32);
2221 for (i = 0; i < 8; i++) {
2225 if (ext & (1 << 13)) {
2227 tcg_gen_qemu_stf64(dest, addr, IS_USER(s));
2230 tcg_gen_qemu_ldf64(dest, addr, IS_USER(s));
2232 if (ext & (mask - 1))
2233 tcg_gen_addi_i32(addr, addr, 8);
2237 tcg_temp_free_i32(addr);
2241 if (ext & (1 << 14)) {
2242 /* Source effective address. */
2243 switch ((ext >> 10) & 7) {
2244 case 0: opsize = OS_LONG; break;
2245 case 1: opsize = OS_SINGLE; break;
2246 case 4: opsize = OS_WORD; break;
2247 case 5: opsize = OS_DOUBLE; break;
2248 case 6: opsize = OS_BYTE; break;
2252 if (opsize == OS_DOUBLE) {
2253 tmp32 = tcg_temp_new_i32();
2254 tcg_gen_mov_i32(tmp32, AREG(insn, 0));
2255 switch ((insn >> 3) & 7) {
2260 tcg_gen_addi_i32(tmp32, tmp32, -8);
2263 offset = cpu_ldsw_code(env, s->pc);
2265 tcg_gen_addi_i32(tmp32, tmp32, offset);
2268 offset = cpu_ldsw_code(env, s->pc);
2269 offset += s->pc - 2;
2271 tcg_gen_addi_i32(tmp32, tmp32, offset);
2276 src = gen_load64(s, tmp32);
2277 switch ((insn >> 3) & 7) {
2279 tcg_gen_addi_i32(tmp32, tmp32, 8);
2280 tcg_gen_mov_i32(AREG(insn, 0), tmp32);
2283 tcg_gen_mov_i32(AREG(insn, 0), tmp32);
2286 tcg_temp_free_i32(tmp32);
2288 SRC_EA(env, tmp32, opsize, 1, NULL);
2289 src = tcg_temp_new_i64();
2294 gen_helper_i32_to_f64(src, cpu_env, tmp32);
2297 gen_helper_f32_to_f64(src, cpu_env, tmp32);
2302 /* Source register. */
2303 src = FREG(ext, 10);
2305 dest = FREG(ext, 7);
2306 res = tcg_temp_new_i64();
2308 tcg_gen_mov_f64(res, dest);
2312 case 0: case 0x40: case 0x44: /* fmove */
2313 tcg_gen_mov_f64(res, src);
2316 gen_helper_iround_f64(res, cpu_env, src);
2319 case 3: /* fintrz */
2320 gen_helper_itrunc_f64(res, cpu_env, src);
2323 case 4: case 0x41: case 0x45: /* fsqrt */
2324 gen_helper_sqrt_f64(res, cpu_env, src);
2326 case 0x18: case 0x58: case 0x5c: /* fabs */
2327 gen_helper_abs_f64(res, src);
2329 case 0x1a: case 0x5a: case 0x5e: /* fneg */
2330 gen_helper_chs_f64(res, src);
2332 case 0x20: case 0x60: case 0x64: /* fdiv */
2333 gen_helper_div_f64(res, cpu_env, res, src);
2335 case 0x22: case 0x62: case 0x66: /* fadd */
2336 gen_helper_add_f64(res, cpu_env, res, src);
2338 case 0x23: case 0x63: case 0x67: /* fmul */
2339 gen_helper_mul_f64(res, cpu_env, res, src);
2341 case 0x28: case 0x68: case 0x6c: /* fsub */
2342 gen_helper_sub_f64(res, cpu_env, res, src);
2344 case 0x38: /* fcmp */
2345 gen_helper_sub_cmp_f64(res, cpu_env, res, src);
2349 case 0x3a: /* ftst */
2350 tcg_gen_mov_f64(res, src);
2357 if (ext & (1 << 14)) {
2358 tcg_temp_free_i64(src);
2361 if (opmode & 0x40) {
2362 if ((opmode & 0x4) != 0)
2364 } else if ((s->fpcr & M68K_FPCR_PREC) == 0) {
2369 TCGv tmp = tcg_temp_new_i32();
2370 gen_helper_f64_to_f32(tmp, cpu_env, res);
2371 gen_helper_f32_to_f64(res, cpu_env, tmp);
2372 tcg_temp_free_i32(tmp);
2374 tcg_gen_mov_f64(QREG_FP_RESULT, res);
2376 tcg_gen_mov_f64(dest, res);
2378 tcg_temp_free_i64(res);
2381 /* FIXME: Is this right for offset addressing modes? */
2383 disas_undef_fpu(env, s, insn);
2394 offset = cpu_ldsw_code(env, s->pc);
2396 if (insn & (1 << 6)) {
2397 offset = (offset << 16) | cpu_lduw_code(env, s->pc);
2401 l1 = gen_new_label();
2402 /* TODO: Raise BSUN exception. */
2403 flag = tcg_temp_new();
2404 gen_helper_compare_f64(flag, cpu_env, QREG_FP_RESULT);
2405 /* Jump to l1 if condition is true. */
2406 switch (insn & 0xf) {
2409 case 1: /* eq (=0) */
2410 tcg_gen_brcond_i32(TCG_COND_EQ, flag, tcg_const_i32(0), l1);
2412 case 2: /* ogt (=1) */
2413 tcg_gen_brcond_i32(TCG_COND_EQ, flag, tcg_const_i32(1), l1);
2415 case 3: /* oge (=0 or =1) */
2416 tcg_gen_brcond_i32(TCG_COND_LEU, flag, tcg_const_i32(1), l1);
2418 case 4: /* olt (=-1) */
2419 tcg_gen_brcond_i32(TCG_COND_LT, flag, tcg_const_i32(0), l1);
2421 case 5: /* ole (=-1 or =0) */
2422 tcg_gen_brcond_i32(TCG_COND_LE, flag, tcg_const_i32(0), l1);
2424 case 6: /* ogl (=-1 or =1) */
2425 tcg_gen_andi_i32(flag, flag, 1);
2426 tcg_gen_brcond_i32(TCG_COND_NE, flag, tcg_const_i32(0), l1);
2428 case 7: /* or (=2) */
2429 tcg_gen_brcond_i32(TCG_COND_EQ, flag, tcg_const_i32(2), l1);
2431 case 8: /* un (<2) */
2432 tcg_gen_brcond_i32(TCG_COND_LT, flag, tcg_const_i32(2), l1);
2434 case 9: /* ueq (=0 or =2) */
2435 tcg_gen_andi_i32(flag, flag, 1);
2436 tcg_gen_brcond_i32(TCG_COND_EQ, flag, tcg_const_i32(0), l1);
2438 case 10: /* ugt (>0) */
2439 tcg_gen_brcond_i32(TCG_COND_GT, flag, tcg_const_i32(0), l1);
2441 case 11: /* uge (>=0) */
2442 tcg_gen_brcond_i32(TCG_COND_GE, flag, tcg_const_i32(0), l1);
2444 case 12: /* ult (=-1 or =2) */
2445 tcg_gen_brcond_i32(TCG_COND_GEU, flag, tcg_const_i32(2), l1);
2447 case 13: /* ule (!=1) */
2448 tcg_gen_brcond_i32(TCG_COND_NE, flag, tcg_const_i32(1), l1);
2450 case 14: /* ne (!=0) */
2451 tcg_gen_brcond_i32(TCG_COND_NE, flag, tcg_const_i32(0), l1);
2457 gen_jmp_tb(s, 0, s->pc);
2459 gen_jmp_tb(s, 1, addr + offset);
2462 DISAS_INSN(frestore)
2464 /* TODO: Implement frestore. */
2465 cpu_abort(env, "FRESTORE not implemented");
2470 /* TODO: Implement fsave. */
2471 cpu_abort(env, "FSAVE not implemented");
2474 static inline TCGv gen_mac_extract_word(DisasContext *s, TCGv val, int upper)
2476 TCGv tmp = tcg_temp_new();
2477 if (s->env->macsr & MACSR_FI) {
2479 tcg_gen_andi_i32(tmp, val, 0xffff0000);
2481 tcg_gen_shli_i32(tmp, val, 16);
2482 } else if (s->env->macsr & MACSR_SU) {
2484 tcg_gen_sari_i32(tmp, val, 16);
2486 tcg_gen_ext16s_i32(tmp, val);
2489 tcg_gen_shri_i32(tmp, val, 16);
2491 tcg_gen_ext16u_i32(tmp, val);
2496 static void gen_mac_clear_flags(void)
2498 tcg_gen_andi_i32(QREG_MACSR, QREG_MACSR,
2499 ~(MACSR_V | MACSR_Z | MACSR_N | MACSR_EV));
2515 s->mactmp = tcg_temp_new_i64();
2519 ext = cpu_lduw_code(env, s->pc);
2522 acc = ((insn >> 7) & 1) | ((ext >> 3) & 2);
2523 dual = ((insn & 0x30) != 0 && (ext & 3) != 0);
2524 if (dual && !m68k_feature(s->env, M68K_FEATURE_CF_EMAC_B)) {
2525 disas_undef(env, s, insn);
2529 /* MAC with load. */
2530 tmp = gen_lea(env, s, insn, OS_LONG);
2531 addr = tcg_temp_new();
2532 tcg_gen_and_i32(addr, tmp, QREG_MAC_MASK);
2533 /* Load the value now to ensure correct exception behavior.
2534 Perform writeback after reading the MAC inputs. */
2535 loadval = gen_load(s, OS_LONG, addr, 0);
2538 rx = (ext & 0x8000) ? AREG(ext, 12) : DREG(insn, 12);
2539 ry = (ext & 8) ? AREG(ext, 0) : DREG(ext, 0);
2541 loadval = addr = NULL_QREG;
2542 rx = (insn & 0x40) ? AREG(insn, 9) : DREG(insn, 9);
2543 ry = (insn & 8) ? AREG(insn, 0) : DREG(insn, 0);
2546 gen_mac_clear_flags();
2549 /* Disabled because conditional branches clobber temporary vars. */
2550 if ((s->env->macsr & MACSR_OMC) != 0 && !dual) {
2551 /* Skip the multiply if we know we will ignore it. */
2552 l1 = gen_new_label();
2553 tmp = tcg_temp_new();
2554 tcg_gen_andi_i32(tmp, QREG_MACSR, 1 << (acc + 8));
2555 gen_op_jmp_nz32(tmp, l1);
2559 if ((ext & 0x0800) == 0) {
2561 rx = gen_mac_extract_word(s, rx, (ext & 0x80) != 0);
2562 ry = gen_mac_extract_word(s, ry, (ext & 0x40) != 0);
2564 if (s->env->macsr & MACSR_FI) {
2565 gen_helper_macmulf(s->mactmp, cpu_env, rx, ry);
2567 if (s->env->macsr & MACSR_SU)
2568 gen_helper_macmuls(s->mactmp, cpu_env, rx, ry);
2570 gen_helper_macmulu(s->mactmp, cpu_env, rx, ry);
2571 switch ((ext >> 9) & 3) {
2573 tcg_gen_shli_i64(s->mactmp, s->mactmp, 1);
2576 tcg_gen_shri_i64(s->mactmp, s->mactmp, 1);
2582 /* Save the overflow flag from the multiply. */
2583 saved_flags = tcg_temp_new();
2584 tcg_gen_mov_i32(saved_flags, QREG_MACSR);
2586 saved_flags = NULL_QREG;
2590 /* Disabled because conditional branches clobber temporary vars. */
2591 if ((s->env->macsr & MACSR_OMC) != 0 && dual) {
2592 /* Skip the accumulate if the value is already saturated. */
2593 l1 = gen_new_label();
2594 tmp = tcg_temp_new();
2595 gen_op_and32(tmp, QREG_MACSR, tcg_const_i32(MACSR_PAV0 << acc));
2596 gen_op_jmp_nz32(tmp, l1);
2601 tcg_gen_sub_i64(MACREG(acc), MACREG(acc), s->mactmp);
2603 tcg_gen_add_i64(MACREG(acc), MACREG(acc), s->mactmp);
2605 if (s->env->macsr & MACSR_FI)
2606 gen_helper_macsatf(cpu_env, tcg_const_i32(acc));
2607 else if (s->env->macsr & MACSR_SU)
2608 gen_helper_macsats(cpu_env, tcg_const_i32(acc));
2610 gen_helper_macsatu(cpu_env, tcg_const_i32(acc));
2613 /* Disabled because conditional branches clobber temporary vars. */
2619 /* Dual accumulate variant. */
2620 acc = (ext >> 2) & 3;
2621 /* Restore the overflow flag from the multiplier. */
2622 tcg_gen_mov_i32(QREG_MACSR, saved_flags);
2624 /* Disabled because conditional branches clobber temporary vars. */
2625 if ((s->env->macsr & MACSR_OMC) != 0) {
2626 /* Skip the accumulate if the value is already saturated. */
2627 l1 = gen_new_label();
2628 tmp = tcg_temp_new();
2629 gen_op_and32(tmp, QREG_MACSR, tcg_const_i32(MACSR_PAV0 << acc));
2630 gen_op_jmp_nz32(tmp, l1);
2634 tcg_gen_sub_i64(MACREG(acc), MACREG(acc), s->mactmp);
2636 tcg_gen_add_i64(MACREG(acc), MACREG(acc), s->mactmp);
2637 if (s->env->macsr & MACSR_FI)
2638 gen_helper_macsatf(cpu_env, tcg_const_i32(acc));
2639 else if (s->env->macsr & MACSR_SU)
2640 gen_helper_macsats(cpu_env, tcg_const_i32(acc));
2642 gen_helper_macsatu(cpu_env, tcg_const_i32(acc));
2644 /* Disabled because conditional branches clobber temporary vars. */
2649 gen_helper_mac_set_flags(cpu_env, tcg_const_i32(acc));
2653 rw = (insn & 0x40) ? AREG(insn, 9) : DREG(insn, 9);
2654 tcg_gen_mov_i32(rw, loadval);
2655 /* FIXME: Should address writeback happen with the masked or
2657 switch ((insn >> 3) & 7) {
2658 case 3: /* Post-increment. */
2659 tcg_gen_addi_i32(AREG(insn, 0), addr, 4);
2661 case 4: /* Pre-decrement. */
2662 tcg_gen_mov_i32(AREG(insn, 0), addr);
2667 DISAS_INSN(from_mac)
2673 rx = (insn & 8) ? AREG(insn, 0) : DREG(insn, 0);
2674 accnum = (insn >> 9) & 3;
2675 acc = MACREG(accnum);
2676 if (s->env->macsr & MACSR_FI) {
2677 gen_helper_get_macf(rx, cpu_env, acc);
2678 } else if ((s->env->macsr & MACSR_OMC) == 0) {
2679 tcg_gen_trunc_i64_i32(rx, acc);
2680 } else if (s->env->macsr & MACSR_SU) {
2681 gen_helper_get_macs(rx, acc);
2683 gen_helper_get_macu(rx, acc);
2686 tcg_gen_movi_i64(acc, 0);
2687 tcg_gen_andi_i32(QREG_MACSR, QREG_MACSR, ~(MACSR_PAV0 << accnum));
2691 DISAS_INSN(move_mac)
2693 /* FIXME: This can be done without a helper. */
2697 dest = tcg_const_i32((insn >> 9) & 3);
2698 gen_helper_mac_move(cpu_env, dest, tcg_const_i32(src));
2699 gen_mac_clear_flags();
2700 gen_helper_mac_set_flags(cpu_env, dest);
2703 DISAS_INSN(from_macsr)
2707 reg = (insn & 8) ? AREG(insn, 0) : DREG(insn, 0);
2708 tcg_gen_mov_i32(reg, QREG_MACSR);
2711 DISAS_INSN(from_mask)
2714 reg = (insn & 8) ? AREG(insn, 0) : DREG(insn, 0);
2715 tcg_gen_mov_i32(reg, QREG_MAC_MASK);
2718 DISAS_INSN(from_mext)
2722 reg = (insn & 8) ? AREG(insn, 0) : DREG(insn, 0);
2723 acc = tcg_const_i32((insn & 0x400) ? 2 : 0);
2724 if (s->env->macsr & MACSR_FI)
2725 gen_helper_get_mac_extf(reg, cpu_env, acc);
2727 gen_helper_get_mac_exti(reg, cpu_env, acc);
2730 DISAS_INSN(macsr_to_ccr)
2732 tcg_gen_movi_i32(QREG_CC_X, 0);
2733 tcg_gen_andi_i32(QREG_CC_DEST, QREG_MACSR, 0xf);
2734 s->cc_op = CC_OP_FLAGS;
2742 accnum = (insn >> 9) & 3;
2743 acc = MACREG(accnum);
2744 SRC_EA(env, val, OS_LONG, 0, NULL);
2745 if (s->env->macsr & MACSR_FI) {
2746 tcg_gen_ext_i32_i64(acc, val);
2747 tcg_gen_shli_i64(acc, acc, 8);
2748 } else if (s->env->macsr & MACSR_SU) {
2749 tcg_gen_ext_i32_i64(acc, val);
2751 tcg_gen_extu_i32_i64(acc, val);
2753 tcg_gen_andi_i32(QREG_MACSR, QREG_MACSR, ~(MACSR_PAV0 << accnum));
2754 gen_mac_clear_flags();
2755 gen_helper_mac_set_flags(cpu_env, tcg_const_i32(accnum));
2758 DISAS_INSN(to_macsr)
2761 SRC_EA(env, val, OS_LONG, 0, NULL);
2762 gen_helper_set_macsr(cpu_env, val);
2769 SRC_EA(env, val, OS_LONG, 0, NULL);
2770 tcg_gen_ori_i32(QREG_MAC_MASK, val, 0xffff0000);
2777 SRC_EA(env, val, OS_LONG, 0, NULL);
2778 acc = tcg_const_i32((insn & 0x400) ? 2 : 0);
2779 if (s->env->macsr & MACSR_FI)
2780 gen_helper_set_mac_extf(cpu_env, val, acc);
2781 else if (s->env->macsr & MACSR_SU)
2782 gen_helper_set_mac_exts(cpu_env, val, acc);
2784 gen_helper_set_mac_extu(cpu_env, val, acc);
2787 static disas_proc opcode_table[65536];
2790 register_opcode (disas_proc proc, uint16_t opcode, uint16_t mask)
2796 /* Sanity check. All set bits must be included in the mask. */
2797 if (opcode & ~mask) {
2799 "qemu internal error: bogus opcode definition %04x/%04x\n",
2803 /* This could probably be cleverer. For now just optimize the case where
2804 the top bits are known. */
2805 /* Find the first zero bit in the mask. */
2807 while ((i & mask) != 0)
2809 /* Iterate over all combinations of this and lower bits. */
2814 from = opcode & ~(i - 1);
2816 for (i = from; i < to; i++) {
2817 if ((i & mask) == opcode)
2818 opcode_table[i] = proc;
2822 /* Register m68k opcode handlers. Order is important.
2823 Later insn override earlier ones. */
2824 void register_m68k_insns (CPUM68KState *env)
2826 #define INSN(name, opcode, mask, feature) do { \
2827 if (m68k_feature(env, M68K_FEATURE_##feature)) \
2828 register_opcode(disas_##name, 0x##opcode, 0x##mask); \
2830 INSN(undef, 0000, 0000, CF_ISA_A);
2831 INSN(arith_im, 0080, fff8, CF_ISA_A);
2832 INSN(bitrev, 00c0, fff8, CF_ISA_APLUSC);
2833 INSN(bitop_reg, 0100, f1c0, CF_ISA_A);
2834 INSN(bitop_reg, 0140, f1c0, CF_ISA_A);
2835 INSN(bitop_reg, 0180, f1c0, CF_ISA_A);
2836 INSN(bitop_reg, 01c0, f1c0, CF_ISA_A);
2837 INSN(arith_im, 0280, fff8, CF_ISA_A);
2838 INSN(byterev, 02c0, fff8, CF_ISA_APLUSC);
2839 INSN(arith_im, 0480, fff8, CF_ISA_A);
2840 INSN(ff1, 04c0, fff8, CF_ISA_APLUSC);
2841 INSN(arith_im, 0680, fff8, CF_ISA_A);
2842 INSN(bitop_im, 0800, ffc0, CF_ISA_A);
2843 INSN(bitop_im, 0840, ffc0, CF_ISA_A);
2844 INSN(bitop_im, 0880, ffc0, CF_ISA_A);
2845 INSN(bitop_im, 08c0, ffc0, CF_ISA_A);
2846 INSN(arith_im, 0a80, fff8, CF_ISA_A);
2847 INSN(arith_im, 0c00, ff38, CF_ISA_A);
2848 INSN(move, 1000, f000, CF_ISA_A);
2849 INSN(move, 2000, f000, CF_ISA_A);
2850 INSN(move, 3000, f000, CF_ISA_A);
2851 INSN(strldsr, 40e7, ffff, CF_ISA_APLUSC);
2852 INSN(negx, 4080, fff8, CF_ISA_A);
2853 INSN(move_from_sr, 40c0, fff8, CF_ISA_A);
2854 INSN(lea, 41c0, f1c0, CF_ISA_A);
2855 INSN(clr, 4200, ff00, CF_ISA_A);
2856 INSN(undef, 42c0, ffc0, CF_ISA_A);
2857 INSN(move_from_ccr, 42c0, fff8, CF_ISA_A);
2858 INSN(neg, 4480, fff8, CF_ISA_A);
2859 INSN(move_to_ccr, 44c0, ffc0, CF_ISA_A);
2860 INSN(not, 4680, fff8, CF_ISA_A);
2861 INSN(move_to_sr, 46c0, ffc0, CF_ISA_A);
2862 INSN(pea, 4840, ffc0, CF_ISA_A);
2863 INSN(swap, 4840, fff8, CF_ISA_A);
2864 INSN(movem, 48c0, fbc0, CF_ISA_A);
2865 INSN(ext, 4880, fff8, CF_ISA_A);
2866 INSN(ext, 48c0, fff8, CF_ISA_A);
2867 INSN(ext, 49c0, fff8, CF_ISA_A);
2868 INSN(tst, 4a00, ff00, CF_ISA_A);
2869 INSN(tas, 4ac0, ffc0, CF_ISA_B);
2870 INSN(halt, 4ac8, ffff, CF_ISA_A);
2871 INSN(pulse, 4acc, ffff, CF_ISA_A);
2872 INSN(illegal, 4afc, ffff, CF_ISA_A);
2873 INSN(mull, 4c00, ffc0, CF_ISA_A);
2874 INSN(divl, 4c40, ffc0, CF_ISA_A);
2875 INSN(sats, 4c80, fff8, CF_ISA_B);
2876 INSN(trap, 4e40, fff0, CF_ISA_A);
2877 INSN(link, 4e50, fff8, CF_ISA_A);
2878 INSN(unlk, 4e58, fff8, CF_ISA_A);
2879 INSN(move_to_usp, 4e60, fff8, USP);
2880 INSN(move_from_usp, 4e68, fff8, USP);
2881 INSN(nop, 4e71, ffff, CF_ISA_A);
2882 INSN(stop, 4e72, ffff, CF_ISA_A);
2883 INSN(rte, 4e73, ffff, CF_ISA_A);
2884 INSN(rts, 4e75, ffff, CF_ISA_A);
2885 INSN(movec, 4e7b, ffff, CF_ISA_A);
2886 INSN(jump, 4e80, ffc0, CF_ISA_A);
2887 INSN(jump, 4ec0, ffc0, CF_ISA_A);
2888 INSN(addsubq, 5180, f1c0, CF_ISA_A);
2889 INSN(scc, 50c0, f0f8, CF_ISA_A);
2890 INSN(addsubq, 5080, f1c0, CF_ISA_A);
2891 INSN(tpf, 51f8, fff8, CF_ISA_A);
2893 /* Branch instructions. */
2894 INSN(branch, 6000, f000, CF_ISA_A);
2895 /* Disable long branch instructions, then add back the ones we want. */
2896 INSN(undef, 60ff, f0ff, CF_ISA_A); /* All long branches. */
2897 INSN(branch, 60ff, f0ff, CF_ISA_B);
2898 INSN(undef, 60ff, ffff, CF_ISA_B); /* bra.l */
2899 INSN(branch, 60ff, ffff, BRAL);
2901 INSN(moveq, 7000, f100, CF_ISA_A);
2902 INSN(mvzs, 7100, f100, CF_ISA_B);
2903 INSN(or, 8000, f000, CF_ISA_A);
2904 INSN(divw, 80c0, f0c0, CF_ISA_A);
2905 INSN(addsub, 9000, f000, CF_ISA_A);
2906 INSN(subx, 9180, f1f8, CF_ISA_A);
2907 INSN(suba, 91c0, f1c0, CF_ISA_A);
2909 INSN(undef_mac, a000, f000, CF_ISA_A);
2910 INSN(mac, a000, f100, CF_EMAC);
2911 INSN(from_mac, a180, f9b0, CF_EMAC);
2912 INSN(move_mac, a110, f9fc, CF_EMAC);
2913 INSN(from_macsr,a980, f9f0, CF_EMAC);
2914 INSN(from_mask, ad80, fff0, CF_EMAC);
2915 INSN(from_mext, ab80, fbf0, CF_EMAC);
2916 INSN(macsr_to_ccr, a9c0, ffff, CF_EMAC);
2917 INSN(to_mac, a100, f9c0, CF_EMAC);
2918 INSN(to_macsr, a900, ffc0, CF_EMAC);
2919 INSN(to_mext, ab00, fbc0, CF_EMAC);
2920 INSN(to_mask, ad00, ffc0, CF_EMAC);
2922 INSN(mov3q, a140, f1c0, CF_ISA_B);
2923 INSN(cmp, b000, f1c0, CF_ISA_B); /* cmp.b */
2924 INSN(cmp, b040, f1c0, CF_ISA_B); /* cmp.w */
2925 INSN(cmpa, b0c0, f1c0, CF_ISA_B); /* cmpa.w */
2926 INSN(cmp, b080, f1c0, CF_ISA_A);
2927 INSN(cmpa, b1c0, f1c0, CF_ISA_A);
2928 INSN(eor, b180, f1c0, CF_ISA_A);
2929 INSN(and, c000, f000, CF_ISA_A);
2930 INSN(mulw, c0c0, f0c0, CF_ISA_A);
2931 INSN(addsub, d000, f000, CF_ISA_A);
2932 INSN(addx, d180, f1f8, CF_ISA_A);
2933 INSN(adda, d1c0, f1c0, CF_ISA_A);
2934 INSN(shift_im, e080, f0f0, CF_ISA_A);
2935 INSN(shift_reg, e0a0, f0f0, CF_ISA_A);
2936 INSN(undef_fpu, f000, f000, CF_ISA_A);
2937 INSN(fpu, f200, ffc0, CF_FPU);
2938 INSN(fbcc, f280, ffc0, CF_FPU);
2939 INSN(frestore, f340, ffc0, CF_FPU);
2940 INSN(fsave, f340, ffc0, CF_FPU);
2941 INSN(intouch, f340, ffc0, CF_ISA_A);
2942 INSN(cpushl, f428, ff38, CF_ISA_A);
2943 INSN(wddata, fb00, ff00, CF_ISA_A);
2944 INSN(wdebug, fbc0, ffc0, CF_ISA_A);
2948 /* ??? Some of this implementation is not exception safe. We should always
2949 write back the result to memory before setting the condition codes. */
2950 static void disas_m68k_insn(CPUM68KState * env, DisasContext *s)
2954 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT))) {
2955 tcg_gen_debug_insn_start(s->pc);
2958 insn = cpu_lduw_code(env, s->pc);
2961 opcode_table[insn](env, s, insn);
2964 /* generate intermediate code for basic block 'tb'. */
2966 gen_intermediate_code_internal(M68kCPU *cpu, TranslationBlock *tb,
2969 CPUState *cs = CPU(cpu);
2970 CPUM68KState *env = &cpu->env;
2971 DisasContext dc1, *dc = &dc1;
2972 uint16_t *gen_opc_end;
2975 target_ulong pc_start;
2980 /* generate intermediate code */
2985 gen_opc_end = tcg_ctx.gen_opc_buf + OPC_MAX_SIZE;
2988 dc->is_jmp = DISAS_NEXT;
2990 dc->cc_op = CC_OP_DYNAMIC;
2991 dc->singlestep_enabled = cs->singlestep_enabled;
2992 dc->fpcr = env->fpcr;
2993 dc->user = (env->sr & SR_S) == 0;
2998 max_insns = tb->cflags & CF_COUNT_MASK;
3000 max_insns = CF_COUNT_MASK;
3004 pc_offset = dc->pc - pc_start;
3005 gen_throws_exception = NULL;
3006 if (unlikely(!QTAILQ_EMPTY(&env->breakpoints))) {
3007 QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
3008 if (bp->pc == dc->pc) {
3009 gen_exception(dc, dc->pc, EXCP_DEBUG);
3010 dc->is_jmp = DISAS_JUMP;
3018 j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
3022 tcg_ctx.gen_opc_instr_start[lj++] = 0;
3024 tcg_ctx.gen_opc_pc[lj] = dc->pc;
3025 tcg_ctx.gen_opc_instr_start[lj] = 1;
3026 tcg_ctx.gen_opc_icount[lj] = num_insns;
3028 if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
3030 dc->insn_pc = dc->pc;
3031 disas_m68k_insn(env, dc);
3033 } while (!dc->is_jmp && tcg_ctx.gen_opc_ptr < gen_opc_end &&
3034 !cs->singlestep_enabled &&
3036 (pc_offset) < (TARGET_PAGE_SIZE - 32) &&
3037 num_insns < max_insns);
3039 if (tb->cflags & CF_LAST_IO)
3041 if (unlikely(cs->singlestep_enabled)) {
3042 /* Make sure the pc is updated, and raise a debug exception. */
3044 gen_flush_cc_op(dc);
3045 tcg_gen_movi_i32(QREG_PC, dc->pc);
3047 gen_helper_raise_exception(cpu_env, tcg_const_i32(EXCP_DEBUG));
3049 switch(dc->is_jmp) {
3051 gen_flush_cc_op(dc);
3052 gen_jmp_tb(dc, 0, dc->pc);
3057 gen_flush_cc_op(dc);
3058 /* indicate that the hash table must be used to find the next TB */
3062 /* nothing more to generate */
3066 gen_tb_end(tb, num_insns);
3067 *tcg_ctx.gen_opc_ptr = INDEX_op_end;
3070 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
3071 qemu_log("----------------\n");
3072 qemu_log("IN: %s\n", lookup_symbol(pc_start));
3073 log_target_disas(env, pc_start, dc->pc - pc_start, 0);
3078 j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
3081 tcg_ctx.gen_opc_instr_start[lj++] = 0;
3083 tb->size = dc->pc - pc_start;
3084 tb->icount = num_insns;
3088 //expand_target_qops();
3091 void gen_intermediate_code(CPUM68KState *env, TranslationBlock *tb)
3093 gen_intermediate_code_internal(m68k_env_get_cpu(env), tb, false);
3096 void gen_intermediate_code_pc(CPUM68KState *env, TranslationBlock *tb)
3098 gen_intermediate_code_internal(m68k_env_get_cpu(env), tb, true);
3101 void m68k_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
3104 M68kCPU *cpu = M68K_CPU(cs);
3105 CPUM68KState *env = &cpu->env;
3109 for (i = 0; i < 8; i++)
3111 u.d = env->fregs[i];
3112 cpu_fprintf (f, "D%d = %08x A%d = %08x F%d = %08x%08x (%12g)\n",
3113 i, env->dregs[i], i, env->aregs[i],
3114 i, u.l.upper, u.l.lower, *(double *)&u.d);
3116 cpu_fprintf (f, "PC = %08x ", env->pc);
3118 cpu_fprintf (f, "SR = %04x %c%c%c%c%c ", sr, (sr & 0x10) ? 'X' : '-',
3119 (sr & CCF_N) ? 'N' : '-', (sr & CCF_Z) ? 'Z' : '-',
3120 (sr & CCF_V) ? 'V' : '-', (sr & CCF_C) ? 'C' : '-');
3121 cpu_fprintf (f, "FPRESULT = %12g\n", *(double *)&env->fp_result);
3124 void restore_state_to_opc(CPUM68KState *env, TranslationBlock *tb, int pc_pos)
3126 env->pc = tcg_ctx.gen_opc_pc[pc_pos];