Coverage Report

Created: 2026-03-13 06:50

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/capstonev5/arch/M68K/M68KDisassembler.c
Line
Count
Source
1
/* ======================================================================== */
2
/* ========================= LICENSING & COPYRIGHT ======================== */
3
/* ======================================================================== */
4
/*
5
 *                                  MUSASHI
6
 *                                Version 3.4
7
 *
8
 * A portable Motorola M680x0 processor emulation engine.
9
 * Copyright 1998-2001 Karl Stenerud.  All rights reserved.
10
 *
11
 * Permission is hereby granted, free of charge, to any person obtaining a copy
12
 * of this software and associated documentation files (the "Software"), to deal
13
 * in the Software without restriction, including without limitation the rights
14
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
 * copies of the Software, and to permit persons to whom the Software is
16
 * furnished to do so, subject to the following conditions:
17
 *
18
 * The above copyright notice and this permission notice shall be included in
19
 * all copies or substantial portions of the Software.
20
21
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27
 * THE SOFTWARE.
28
 */
29
30
/* The code below is based on MUSASHI but has been heavily modified for Capstone by
31
 * Daniel Collin <daniel@collin.com> 2015-2019 */
32
33
/* ======================================================================== */
34
/* ================================ INCLUDES ============================== */
35
/* ======================================================================== */
36
37
#include <stdlib.h>
38
#include <stdio.h>
39
#include <string.h>
40
41
#include "../../cs_priv.h"
42
#include "../../utils.h"
43
44
#include "../../MCInst.h"
45
#include "../../MCInstrDesc.h"
46
#include "../../MCRegisterInfo.h"
47
#include "M68KInstPrinter.h"
48
#include "M68KDisassembler.h"
49
50
/* ======================================================================== */
51
/* ============================ GENERAL DEFINES =========================== */
52
/* ======================================================================== */
53
54
/* Bit Isolation Functions */
55
7.56k
#define BIT_0(A)  ((A) & 0x00000001)
56
#define BIT_1(A)  ((A) & 0x00000002)
57
#define BIT_2(A)  ((A) & 0x00000004)
58
0
#define BIT_3(A)  ((A) & 0x00000008)
59
#define BIT_4(A)  ((A) & 0x00000010)
60
3.29k
#define BIT_5(A)  ((A) & 0x00000020)
61
7.27k
#define BIT_6(A)  ((A) & 0x00000040)
62
7.27k
#define BIT_7(A)  ((A) & 0x00000080)
63
16.5k
#define BIT_8(A)  ((A) & 0x00000100)
64
#define BIT_9(A)  ((A) & 0x00000200)
65
745
#define BIT_A(A)  ((A) & 0x00000400)
66
20.6k
#define BIT_B(A)  ((A) & 0x00000800)
67
#define BIT_C(A)  ((A) & 0x00001000)
68
#define BIT_D(A)  ((A) & 0x00002000)
69
#define BIT_E(A)  ((A) & 0x00004000)
70
24.9k
#define BIT_F(A)  ((A) & 0x00008000)
71
#define BIT_10(A) ((A) & 0x00010000)
72
#define BIT_11(A) ((A) & 0x00020000)
73
#define BIT_12(A) ((A) & 0x00040000)
74
#define BIT_13(A) ((A) & 0x00080000)
75
#define BIT_14(A) ((A) & 0x00100000)
76
#define BIT_15(A) ((A) & 0x00200000)
77
#define BIT_16(A) ((A) & 0x00400000)
78
#define BIT_17(A) ((A) & 0x00800000)
79
#define BIT_18(A) ((A) & 0x01000000)
80
#define BIT_19(A) ((A) & 0x02000000)
81
#define BIT_1A(A) ((A) & 0x04000000)
82
#define BIT_1B(A) ((A) & 0x08000000)
83
#define BIT_1C(A) ((A) & 0x10000000)
84
#define BIT_1D(A) ((A) & 0x20000000)
85
#define BIT_1E(A) ((A) & 0x40000000)
86
999
#define BIT_1F(A) ((A) & 0x80000000)
87
88
/* These are the CPU types understood by this disassembler */
89
135k
#define TYPE_68000 1
90
0
#define TYPE_68010 2
91
0
#define TYPE_68020 4
92
0
#define TYPE_68030 8
93
287k
#define TYPE_68040 16
94
95
#define M68000_ONLY   TYPE_68000
96
97
#define M68010_ONLY   TYPE_68010
98
#define M68010_LESS   (TYPE_68000 | TYPE_68010)
99
#define M68010_PLUS   (TYPE_68010 | TYPE_68020 | TYPE_68030 | TYPE_68040)
100
101
#define M68020_ONLY   TYPE_68020
102
#define M68020_LESS   (TYPE_68010 | TYPE_68020)
103
#define M68020_PLUS   (TYPE_68020 | TYPE_68030 | TYPE_68040)
104
105
#define M68030_ONLY   TYPE_68030
106
#define M68030_LESS   (TYPE_68010 | TYPE_68020 | TYPE_68030)
107
#define M68030_PLUS   (TYPE_68030 | TYPE_68040)
108
109
#define M68040_PLUS   TYPE_68040
110
111
enum {
112
  M68K_CPU_TYPE_INVALID,
113
  M68K_CPU_TYPE_68000,
114
  M68K_CPU_TYPE_68010,
115
  M68K_CPU_TYPE_68EC020,
116
  M68K_CPU_TYPE_68020,
117
  M68K_CPU_TYPE_68030,  /* Supported by disassembler ONLY */
118
  M68K_CPU_TYPE_68040   /* Supported by disassembler ONLY */
119
};
120
121
/* Extension word formats */
122
9.30k
#define EXT_8BIT_DISPLACEMENT(A)          ((A)&0xff)
123
16.5k
#define EXT_FULL(A)                       BIT_8(A)
124
#define EXT_EFFECTIVE_ZERO(A)             (((A)&0xe4) == 0xc4 || ((A)&0xe2) == 0xc0)
125
7.27k
#define EXT_BASE_REGISTER_PRESENT(A)      (!BIT_7(A))
126
7.27k
#define EXT_INDEX_REGISTER_PRESENT(A)     (!BIT_6(A))
127
13.7k
#define EXT_INDEX_REGISTER(A)             (((A)>>12)&7)
128
#define EXT_INDEX_PRE_POST(A)             (EXT_INDEX_PRESENT(A) && (A)&3)
129
#define EXT_INDEX_PRE(A)                  (EXT_INDEX_PRESENT(A) && ((A)&7) < 4 && ((A)&7) != 0)
130
#define EXT_INDEX_POST(A)                 (EXT_INDEX_PRESENT(A) && ((A)&7) > 4)
131
22.7k
#define EXT_INDEX_SCALE(A)                (((A)>>9)&3)
132
13.7k
#define EXT_INDEX_LONG(A)                 BIT_B(A)
133
13.7k
#define EXT_INDEX_AR(A)                   BIT_F(A)
134
7.27k
#define EXT_BASE_DISPLACEMENT_PRESENT(A)  (((A)&0x30) > 0x10)
135
#define EXT_BASE_DISPLACEMENT_WORD(A)     (((A)&0x30) == 0x20)
136
3.18k
#define EXT_BASE_DISPLACEMENT_LONG(A)     (((A)&0x30) == 0x30)
137
7.27k
#define EXT_OUTER_DISPLACEMENT_PRESENT(A) (((A)&3) > 1 && ((A)&0x47) < 0x44)
138
#define EXT_OUTER_DISPLACEMENT_WORD(A)    (((A)&3) == 2 && ((A)&0x47) < 0x44)
139
2.34k
#define EXT_OUTER_DISPLACEMENT_LONG(A)    (((A)&3) == 3 && ((A)&0x47) < 0x44)
140
141
#define IS_BITSET(val,b) ((val) & (1 << (b)))
142
26.4k
#define BITFIELD_MASK(sb,eb)  (((1 << ((sb) + 1))-1) & (~((1 << (eb))-1)))
143
26.4k
#define BITFIELD(val,sb,eb) ((BITFIELD_MASK(sb,eb) & (val)) >> (eb))
144
145
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
146
147
static unsigned int m68k_read_disassembler_16(const m68k_info *info, const uint64_t addr)
148
1.01M
{
149
1.01M
  const uint16_t v0 = info->code[addr + 0];
150
1.01M
  const uint16_t v1 = info->code[addr + 1];
151
1.01M
  return (v0 << 8) | v1;
152
1.01M
}
153
154
static unsigned int m68k_read_disassembler_32(const m68k_info *info, const uint64_t addr)
155
443k
{
156
443k
  const uint32_t v0 = info->code[addr + 0];
157
443k
  const uint32_t v1 = info->code[addr + 1];
158
443k
  const uint32_t v2 = info->code[addr + 2];
159
443k
  const uint32_t v3 = info->code[addr + 3];
160
443k
  return (v0 << 24) | (v1 << 16) | (v2 << 8) | v3;
161
443k
}
162
163
static uint64_t m68k_read_disassembler_64(const m68k_info *info, const uint64_t addr)
164
174
{
165
174
  const uint64_t v0 = info->code[addr + 0];
166
174
  const uint64_t v1 = info->code[addr + 1];
167
174
  const uint64_t v2 = info->code[addr + 2];
168
174
  const uint64_t v3 = info->code[addr + 3];
169
174
  const uint64_t v4 = info->code[addr + 4];
170
174
  const uint64_t v5 = info->code[addr + 5];
171
174
  const uint64_t v6 = info->code[addr + 6];
172
174
  const uint64_t v7 = info->code[addr + 7];
173
174
  return (v0 << 56) | (v1 << 48) | (v2 << 40) | (v3 << 32) | (v4 << 24) | (v5 << 16) | (v6 << 8) | v7;
174
174
}
175
176
static unsigned int m68k_read_safe_16(const m68k_info *info, const uint64_t address)
177
1.01M
{
178
1.01M
  const uint64_t addr = (address - info->baseAddress) & info->address_mask;
179
1.01M
  if (info->code_len < addr + 2) {
180
1.12k
    return 0xaaaa;
181
1.12k
  }
182
1.01M
  return m68k_read_disassembler_16(info, addr);
183
1.01M
}
184
185
static unsigned int m68k_read_safe_32(const m68k_info *info, const uint64_t address)
186
446k
{
187
446k
  const uint64_t addr = (address - info->baseAddress) & info->address_mask;
188
446k
  if (info->code_len < addr + 4) {
189
3.25k
    return 0xaaaaaaaa;
190
3.25k
  }
191
443k
  return m68k_read_disassembler_32(info, addr);
192
446k
}
193
194
static uint64_t m68k_read_safe_64(const m68k_info *info, const uint64_t address)
195
184
{
196
184
  const uint64_t addr = (address - info->baseAddress) & info->address_mask;
197
184
  if (info->code_len < addr + 8) {
198
10
    return 0xaaaaaaaaaaaaaaaaLL;
199
10
  }
200
174
  return m68k_read_disassembler_64(info, addr);
201
184
}
202
203
/* ======================================================================== */
204
/* =============================== PROTOTYPES ============================= */
205
/* ======================================================================== */
206
207
/* make signed integers 100% portably */
208
static int make_int_8(int value);
209
static int make_int_16(int value);
210
211
/* Stuff to build the opcode handler jump table */
212
static void d68000_invalid(m68k_info *info);
213
static int instruction_is_valid(m68k_info *info, const unsigned int word_check);
214
215
typedef struct {
216
  void (*instruction)(m68k_info *info);   /* handler function */
217
  uint16_t word2_mask;                  /* mask the 2nd word */
218
  uint16_t word2_match;                 /* what to match after masking */
219
} instruction_struct;
220
221
/* ======================================================================== */
222
/* ================================= DATA ================================= */
223
/* ======================================================================== */
224
225
static const instruction_struct g_instruction_table[0x10000];
226
227
/* used by ops like asr, ror, addq, etc */
228
static const uint32_t g_3bit_qdata_table[8] = {8, 1, 2, 3, 4, 5, 6, 7};
229
230
static const uint32_t g_5bit_data_table[32] = {
231
  32,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15,
232
  16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31
233
};
234
235
static const m68k_insn s_branch_lut[] = {
236
  M68K_INS_INVALID, M68K_INS_INVALID, M68K_INS_BHI, M68K_INS_BLS,
237
  M68K_INS_BCC, M68K_INS_BCS, M68K_INS_BNE, M68K_INS_BEQ,
238
  M68K_INS_BVC, M68K_INS_BVS, M68K_INS_BPL, M68K_INS_BMI,
239
  M68K_INS_BGE, M68K_INS_BLT, M68K_INS_BGT, M68K_INS_BLE,
240
};
241
242
static const m68k_insn s_dbcc_lut[] = {
243
  M68K_INS_DBT, M68K_INS_DBF, M68K_INS_DBHI, M68K_INS_DBLS,
244
  M68K_INS_DBCC, M68K_INS_DBCS, M68K_INS_DBNE, M68K_INS_DBEQ,
245
  M68K_INS_DBVC, M68K_INS_DBVS, M68K_INS_DBPL, M68K_INS_DBMI,
246
  M68K_INS_DBGE, M68K_INS_DBLT, M68K_INS_DBGT, M68K_INS_DBLE,
247
};
248
249
static const m68k_insn s_scc_lut[] = {
250
  M68K_INS_ST, M68K_INS_SF, M68K_INS_SHI, M68K_INS_SLS,
251
  M68K_INS_SCC, M68K_INS_SCS, M68K_INS_SNE, M68K_INS_SEQ,
252
  M68K_INS_SVC, M68K_INS_SVS, M68K_INS_SPL, M68K_INS_SMI,
253
  M68K_INS_SGE, M68K_INS_SLT, M68K_INS_SGT, M68K_INS_SLE,
254
};
255
256
static const m68k_insn s_trap_lut[] = {
257
  M68K_INS_TRAPT, M68K_INS_TRAPF, M68K_INS_TRAPHI, M68K_INS_TRAPLS,
258
  M68K_INS_TRAPCC, M68K_INS_TRAPCS, M68K_INS_TRAPNE, M68K_INS_TRAPEQ,
259
  M68K_INS_TRAPVC, M68K_INS_TRAPVS, M68K_INS_TRAPPL, M68K_INS_TRAPMI,
260
  M68K_INS_TRAPGE, M68K_INS_TRAPLT, M68K_INS_TRAPGT, M68K_INS_TRAPLE,
261
};
262
263
/* ======================================================================== */
264
/* =========================== UTILITY FUNCTIONS ========================== */
265
/* ======================================================================== */
266
267
#define LIMIT_CPU_TYPES(info, ALLOWED_CPU_TYPES)  \
268
95.5k
  do {           \
269
95.5k
    if (!(info->type & ALLOWED_CPU_TYPES)) { \
270
26.3k
      d68000_invalid(info);   \
271
26.3k
      return;       \
272
26.3k
    }          \
273
95.5k
  } while (0)
274
275
27.9k
static unsigned int peek_imm_8(const m68k_info *info)  { return (m68k_read_safe_16((info), (info)->pc)&0xff); }
276
987k
static unsigned int peek_imm_16(const m68k_info *info) { return m68k_read_safe_16((info), (info)->pc); }
277
446k
static unsigned int peek_imm_32(const m68k_info *info) { return m68k_read_safe_32((info), (info)->pc); }
278
184
static unsigned long long peek_imm_64(const m68k_info *info) { return m68k_read_safe_64((info), (info)->pc); }
279
280
27.9k
static unsigned int read_imm_8(m68k_info *info)  { const unsigned int value = peek_imm_8(info);  (info)->pc+=2; return value; }
281
563k
static unsigned int read_imm_16(m68k_info *info) { const unsigned int value = peek_imm_16(info); (info)->pc+=2; return value; }
282
21.9k
static unsigned int read_imm_32(m68k_info *info) { const unsigned int value = peek_imm_32(info); (info)->pc+=4; return value; }
283
184
static unsigned long long read_imm_64(m68k_info *info) { const unsigned long long value = peek_imm_64(info); (info)->pc+=8; return value; }
284
285
/* Fake a split interface */
286
#define get_ea_mode_str_8(instruction) get_ea_mode_str(instruction, 0)
287
#define get_ea_mode_str_16(instruction) get_ea_mode_str(instruction, 1)
288
#define get_ea_mode_str_32(instruction) get_ea_mode_str(instruction, 2)
289
290
#define get_imm_str_s8() get_imm_str_s(0)
291
#define get_imm_str_s16() get_imm_str_s(1)
292
#define get_imm_str_s32() get_imm_str_s(2)
293
294
#define get_imm_str_u8() get_imm_str_u(0)
295
#define get_imm_str_u16() get_imm_str_u(1)
296
#define get_imm_str_u32() get_imm_str_u(2)
297
298
299
/* 100% portable signed int generators */
300
static int make_int_8(int value)
301
22.7k
{
302
22.7k
  return (value & 0x80) ? value | ~0xff : value & 0xff;
303
22.7k
}
304
305
static int make_int_16(int value)
306
8.02k
{
307
8.02k
  return (value & 0x8000) ? value | ~0xffff : value & 0xffff;
308
8.02k
}
309
310
static void get_with_index_address_mode(m68k_info *info, cs_m68k_op* op, uint32_t instruction, uint32_t size, bool is_pc)
311
16.5k
{
312
16.5k
  uint32_t extension = read_imm_16(info);
313
314
16.5k
  op->address_mode = M68K_AM_AREGI_INDEX_BASE_DISP;
315
316
16.5k
  if (EXT_FULL(extension)) {
317
7.27k
    uint32_t preindex;
318
7.27k
    uint32_t postindex;
319
320
7.27k
    op->mem.base_reg = M68K_REG_INVALID;
321
7.27k
    op->mem.index_reg = M68K_REG_INVALID;
322
323
    /* Not sure how to deal with this?
324
       if (EXT_EFFECTIVE_ZERO(extension)) {
325
       strcpy(mode, "0");
326
       break;
327
       }
328
     */
329
330
7.27k
    op->mem.in_disp = EXT_BASE_DISPLACEMENT_PRESENT(extension) ? (EXT_BASE_DISPLACEMENT_LONG(extension) ? read_imm_32(info) : read_imm_16(info)) : 0;
331
7.27k
    op->mem.out_disp = EXT_OUTER_DISPLACEMENT_PRESENT(extension) ? (EXT_OUTER_DISPLACEMENT_LONG(extension) ? read_imm_32(info) : read_imm_16(info)) : 0;
332
333
7.27k
    if (EXT_BASE_REGISTER_PRESENT(extension)) {
334
4.82k
      if (is_pc) {
335
762
        op->mem.base_reg = M68K_REG_PC;
336
4.06k
      } else {
337
4.06k
        op->mem.base_reg = M68K_REG_A0 + (instruction & 7);
338
4.06k
      }
339
4.82k
    }
340
341
7.27k
    if (EXT_INDEX_REGISTER_PRESENT(extension)) {
342
4.44k
      if (EXT_INDEX_AR(extension)) {
343
1.86k
        op->mem.index_reg = M68K_REG_A0 + EXT_INDEX_REGISTER(extension);
344
2.58k
      } else {
345
2.58k
        op->mem.index_reg = M68K_REG_D0 + EXT_INDEX_REGISTER(extension);
346
2.58k
      }
347
348
4.44k
      op->mem.index_size = EXT_INDEX_LONG(extension) ? 1 : 0;
349
350
4.44k
      if (EXT_INDEX_SCALE(extension)) {
351
3.57k
        op->mem.scale = 1 << EXT_INDEX_SCALE(extension);
352
3.57k
      }
353
4.44k
    }
354
355
7.27k
    preindex = (extension & 7) > 0 && (extension & 7) < 4;
356
7.27k
    postindex = (extension & 7) > 4;
357
358
7.27k
    if (preindex) {
359
2.95k
      op->address_mode = is_pc ? M68K_AM_PC_MEMI_PRE_INDEX : M68K_AM_MEMI_PRE_INDEX;
360
4.31k
    } else if (postindex) {
361
2.17k
      op->address_mode = is_pc ? M68K_AM_PC_MEMI_POST_INDEX : M68K_AM_MEMI_POST_INDEX;
362
2.17k
    }
363
364
7.27k
    return;
365
7.27k
  }
366
367
9.30k
  op->mem.index_reg = (EXT_INDEX_AR(extension) ? M68K_REG_A0 : M68K_REG_D0) + EXT_INDEX_REGISTER(extension);
368
9.30k
  op->mem.index_size = EXT_INDEX_LONG(extension) ? 1 : 0;
369
370
9.30k
  if (EXT_8BIT_DISPLACEMENT(extension) == 0) {
371
875
    if (is_pc) {
372
328
      op->mem.base_reg = M68K_REG_PC;
373
328
      op->address_mode = M68K_AM_PCI_INDEX_BASE_DISP;
374
547
    } else {
375
547
      op->mem.base_reg = M68K_REG_A0 + (instruction & 7);
376
547
    }
377
8.43k
  } else {
378
8.43k
    if (is_pc) {
379
742
      op->mem.base_reg = M68K_REG_PC;
380
742
      op->address_mode = M68K_AM_PCI_INDEX_8_BIT_DISP;
381
7.69k
    } else {
382
7.69k
      op->mem.base_reg = M68K_REG_A0 + (instruction & 7);
383
7.69k
      op->address_mode = M68K_AM_AREGI_INDEX_8_BIT_DISP;
384
7.69k
    }
385
386
8.43k
    op->mem.disp = (int8_t)(extension & 0xff);
387
8.43k
  }
388
389
9.30k
  if (EXT_INDEX_SCALE(extension)) {
390
5.46k
    op->mem.scale = 1 << EXT_INDEX_SCALE(extension);
391
5.46k
  }
392
9.30k
}
393
394
/* Make string of effective address mode */
395
static void get_ea_mode_op(m68k_info *info, cs_m68k_op* op, uint32_t instruction, uint32_t size)
396
287k
{
397
  // default to memory
398
399
287k
  op->type = M68K_OP_MEM;
400
401
287k
  switch (instruction & 0x3f) {
402
81.5k
    case 0x00: case 0x01: case 0x02: case 0x03: case 0x04: case 0x05: case 0x06: case 0x07:
403
      /* data register direct */
404
81.5k
      op->address_mode = M68K_AM_REG_DIRECT_DATA;
405
81.5k
      op->reg = M68K_REG_D0 + (instruction & 7);
406
81.5k
      op->type = M68K_OP_REG;
407
81.5k
      break;
408
409
11.2k
    case 0x08: case 0x09: case 0x0a: case 0x0b: case 0x0c: case 0x0d: case 0x0e: case 0x0f:
410
      /* address register direct */
411
11.2k
      op->address_mode = M68K_AM_REG_DIRECT_ADDR;
412
11.2k
      op->reg = M68K_REG_A0 + (instruction & 7);
413
11.2k
      op->type = M68K_OP_REG;
414
11.2k
      break;
415
416
38.8k
    case 0x10: case 0x11: case 0x12: case 0x13: case 0x14: case 0x15: case 0x16: case 0x17:
417
      /* address register indirect */
418
38.8k
      op->address_mode = M68K_AM_REGI_ADDR;
419
38.8k
      op->reg = M68K_REG_A0 + (instruction & 7);
420
38.8k
      break;
421
422
32.3k
    case 0x18: case 0x19: case 0x1a: case 0x1b: case 0x1c: case 0x1d: case 0x1e: case 0x1f:
423
      /* address register indirect with postincrement */
424
32.3k
      op->address_mode = M68K_AM_REGI_ADDR_POST_INC;
425
32.3k
      op->reg = M68K_REG_A0 + (instruction & 7);
426
32.3k
      break;
427
428
53.0k
    case 0x20: case 0x21: case 0x22: case 0x23: case 0x24: case 0x25: case 0x26: case 0x27:
429
      /* address register indirect with predecrement */
430
53.0k
      op->address_mode = M68K_AM_REGI_ADDR_PRE_DEC;
431
53.0k
      op->reg = M68K_REG_A0 + (instruction & 7);
432
53.0k
      break;
433
434
24.3k
    case 0x28: case 0x29: case 0x2a: case 0x2b: case 0x2c: case 0x2d: case 0x2e: case 0x2f:
435
      /* address register indirect with displacement*/
436
24.3k
      op->address_mode = M68K_AM_REGI_ADDR_DISP;
437
24.3k
      op->mem.base_reg = M68K_REG_A0 + (instruction & 7);
438
24.3k
      op->mem.disp = (int16_t)read_imm_16(info);
439
24.3k
      break;
440
441
26.0k
    case 0x30: case 0x31: case 0x32: case 0x33: case 0x34: case 0x35: case 0x36: case 0x37:
442
      /* address register indirect with index */
443
26.0k
      get_with_index_address_mode(info, op, instruction, size, false);
444
26.0k
      break;
445
446
5.39k
    case 0x38:
447
      /* absolute short address */
448
5.39k
      op->address_mode = M68K_AM_ABSOLUTE_DATA_SHORT;
449
5.39k
      op->imm = read_imm_16(info);
450
5.39k
      break;
451
452
3.18k
    case 0x39:
453
      /* absolute long address */
454
3.18k
      op->address_mode = M68K_AM_ABSOLUTE_DATA_LONG;
455
3.18k
      op->imm = read_imm_32(info);
456
3.18k
      break;
457
458
3.26k
    case 0x3a:
459
      /* program counter with displacement */
460
3.26k
      op->address_mode = M68K_AM_PCI_DISP;
461
3.26k
      op->mem.disp = (int16_t)read_imm_16(info);
462
3.26k
      break;
463
464
3.78k
    case 0x3b:
465
      /* program counter with index */
466
3.78k
      get_with_index_address_mode(info, op, instruction, size, true);
467
3.78k
      break;
468
469
4.05k
    case 0x3c:
470
4.05k
      op->address_mode = M68K_AM_IMMEDIATE;
471
4.05k
      op->type = M68K_OP_IMM;
472
473
4.05k
      if (size == 1)
474
902
        op->imm = read_imm_8(info) & 0xff;
475
3.14k
      else if (size == 2)
476
2.24k
        op->imm = read_imm_16(info) & 0xffff;
477
902
      else if (size == 4)
478
718
        op->imm = read_imm_32(info);
479
184
      else
480
184
        op->imm = read_imm_64(info);
481
482
4.05k
      break;
483
484
469
    default:
485
469
      break;
486
287k
  }
487
287k
}
488
489
static void set_insn_group(m68k_info *info, m68k_group_type group)
490
76.1k
{
491
76.1k
  info->groups[info->groups_count++] = (uint8_t)group;
492
76.1k
}
493
494
static cs_m68k* build_init_op(m68k_info *info, int opcode, int count, int size)
495
405k
{
496
405k
  cs_m68k* ext;
497
498
405k
  MCInst_setOpcode(info->inst, opcode);
499
500
405k
  ext = &info->extension;
501
502
405k
  ext->op_count = (uint8_t)count;
503
405k
  ext->op_size.type = M68K_SIZE_TYPE_CPU;
504
405k
  ext->op_size.cpu_size = size;
505
506
405k
  return ext;
507
405k
}
508
509
static void build_re_gen_1(m68k_info *info, bool isDreg, int opcode, uint8_t size)
510
33.3k
{
511
33.3k
  cs_m68k_op* op0;
512
33.3k
  cs_m68k_op* op1;
513
33.3k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
514
515
33.3k
  op0 = &ext->operands[0];
516
33.3k
  op1 = &ext->operands[1];
517
518
33.3k
  if (isDreg) {
519
33.3k
    op0->address_mode = M68K_AM_REG_DIRECT_DATA;
520
33.3k
    op0->reg = M68K_REG_D0 + ((info->ir >> 9 ) & 7);
521
33.3k
  } else {
522
0
    op0->address_mode = M68K_AM_REG_DIRECT_ADDR;
523
0
    op0->reg = M68K_REG_A0 + ((info->ir >> 9 ) & 7);
524
0
  }
525
526
33.3k
  get_ea_mode_op(info, op1, info->ir, size);
527
33.3k
}
528
529
static void build_re_1(m68k_info *info, int opcode, uint8_t size)
530
33.3k
{
531
33.3k
  build_re_gen_1(info, true, opcode, size);
532
33.3k
}
533
534
static void build_er_gen_1(m68k_info *info, bool isDreg, int opcode, uint8_t size)
535
30.9k
{
536
30.9k
  cs_m68k_op* op0;
537
30.9k
  cs_m68k_op* op1;
538
30.9k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
539
540
30.9k
  op0 = &ext->operands[0];
541
30.9k
  op1 = &ext->operands[1];
542
543
30.9k
  get_ea_mode_op(info, op0, info->ir, size);
544
545
30.9k
  if (isDreg) {
546
30.9k
    op1->address_mode = M68K_AM_REG_DIRECT_DATA;
547
30.9k
    op1->reg = M68K_REG_D0 + ((info->ir >> 9) & 7);
548
30.9k
  } else {
549
0
    op1->address_mode = M68K_AM_REG_DIRECT_ADDR;
550
0
    op1->reg = M68K_REG_A0 + ((info->ir >> 9) & 7);
551
0
  }
552
30.9k
}
553
554
static void build_rr(m68k_info *info, int opcode, uint8_t size, int imm)
555
6.68k
{
556
6.68k
  cs_m68k_op* op0;
557
6.68k
  cs_m68k_op* op1;
558
6.68k
  cs_m68k_op* op2;
559
6.68k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
560
561
6.68k
  op0 = &ext->operands[0];
562
6.68k
  op1 = &ext->operands[1];
563
6.68k
  op2 = &ext->operands[2];
564
565
6.68k
  op0->address_mode = M68K_AM_REG_DIRECT_DATA;
566
6.68k
  op0->reg = M68K_REG_D0 + (info->ir & 7);
567
568
6.68k
  op1->address_mode = M68K_AM_REG_DIRECT_DATA;
569
6.68k
  op1->reg = M68K_REG_D0 + ((info->ir >> 9) & 7);
570
571
6.68k
  if (imm > 0) {
572
1.58k
    ext->op_count = 3;
573
1.58k
    op2->type = M68K_OP_IMM;
574
1.58k
    op2->address_mode = M68K_AM_IMMEDIATE;
575
1.58k
    op2->imm = imm;
576
1.58k
  }
577
6.68k
}
578
579
static void build_r(m68k_info *info, int opcode, uint8_t size)
580
9.92k
{
581
9.92k
  cs_m68k_op* op0;
582
9.92k
  cs_m68k_op* op1;
583
9.92k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
584
585
9.92k
  op0 = &ext->operands[0];
586
9.92k
  op1 = &ext->operands[1];
587
588
9.92k
  op0->address_mode = M68K_AM_REG_DIRECT_DATA;
589
9.92k
  op0->reg = M68K_REG_D0 + ((info->ir >> 9) & 7);
590
591
9.92k
  op1->address_mode = M68K_AM_REG_DIRECT_DATA;
592
9.92k
  op1->reg = M68K_REG_D0 + (info->ir & 7);
593
9.92k
}
594
595
static void build_imm_ea(m68k_info *info, int opcode, uint8_t size, int imm)
596
38.5k
{
597
38.5k
  cs_m68k_op* op0;
598
38.5k
  cs_m68k_op* op1;
599
38.5k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
600
601
38.5k
  op0 = &ext->operands[0];
602
38.5k
  op1 = &ext->operands[1];
603
604
38.5k
  op0->type = M68K_OP_IMM;
605
38.5k
  op0->address_mode = M68K_AM_IMMEDIATE;
606
38.5k
  op0->imm = imm;
607
608
38.5k
  get_ea_mode_op(info, op1, info->ir, size);
609
38.5k
}
610
611
static void build_3bit_d(m68k_info *info, int opcode, int size)
612
13.5k
{
613
13.5k
  cs_m68k_op* op0;
614
13.5k
  cs_m68k_op* op1;
615
13.5k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
616
617
13.5k
  op0 = &ext->operands[0];
618
13.5k
  op1 = &ext->operands[1];
619
620
13.5k
  op0->type = M68K_OP_IMM;
621
13.5k
  op0->address_mode = M68K_AM_IMMEDIATE;
622
13.5k
  op0->imm = g_3bit_qdata_table[(info->ir >> 9) & 7];
623
624
13.5k
  op1->address_mode = M68K_AM_REG_DIRECT_DATA;
625
13.5k
  op1->reg = M68K_REG_D0 + (info->ir & 7);
626
13.5k
}
627
628
static void build_3bit_ea(m68k_info *info, int opcode, int size)
629
16.0k
{
630
16.0k
  cs_m68k_op* op0;
631
16.0k
  cs_m68k_op* op1;
632
16.0k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
633
634
16.0k
  op0 = &ext->operands[0];
635
16.0k
  op1 = &ext->operands[1];
636
637
16.0k
  op0->type = M68K_OP_IMM;
638
16.0k
  op0->address_mode = M68K_AM_IMMEDIATE;
639
16.0k
  op0->imm = g_3bit_qdata_table[(info->ir >> 9) & 7];
640
641
16.0k
  get_ea_mode_op(info, op1, info->ir, size);
642
16.0k
}
643
644
static void build_mm(m68k_info *info, int opcode, uint8_t size, int imm)
645
6.71k
{
646
6.71k
  cs_m68k_op* op0;
647
6.71k
  cs_m68k_op* op1;
648
6.71k
  cs_m68k_op* op2;
649
6.71k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
650
651
6.71k
  op0 = &ext->operands[0];
652
6.71k
  op1 = &ext->operands[1];
653
6.71k
  op2 = &ext->operands[2];
654
655
6.71k
  op0->address_mode = M68K_AM_REGI_ADDR_PRE_DEC;
656
6.71k
  op0->reg = M68K_REG_A0 + (info->ir & 7);
657
658
6.71k
  op1->address_mode = M68K_AM_REGI_ADDR_PRE_DEC;
659
6.71k
  op1->reg = M68K_REG_A0 + ((info->ir >> 9) & 7);
660
661
6.71k
  if (imm > 0) {
662
2.95k
    ext->op_count = 3;
663
2.95k
    op2->type = M68K_OP_IMM;
664
2.95k
    op2->address_mode = M68K_AM_IMMEDIATE;
665
2.95k
    op2->imm = imm;
666
2.95k
  }
667
6.71k
}
668
669
static void build_ea(m68k_info *info, int opcode, uint8_t size)
670
23.9k
{
671
23.9k
  cs_m68k* ext = build_init_op(info, opcode, 1, size);
672
23.9k
  get_ea_mode_op(info, &ext->operands[0], info->ir, size);
673
23.9k
}
674
675
static void build_ea_a(m68k_info *info, int opcode, uint8_t size)
676
15.9k
{
677
15.9k
  cs_m68k_op* op0;
678
15.9k
  cs_m68k_op* op1;
679
15.9k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
680
681
15.9k
  op0 = &ext->operands[0];
682
15.9k
  op1 = &ext->operands[1];
683
684
15.9k
  get_ea_mode_op(info, op0, info->ir, size);
685
686
15.9k
  op1->address_mode = M68K_AM_REG_DIRECT_ADDR;
687
15.9k
  op1->reg = M68K_REG_A0 + ((info->ir >> 9) & 7);
688
15.9k
}
689
690
static void build_ea_ea(m68k_info *info, int opcode, int size)
691
47.0k
{
692
47.0k
  cs_m68k_op* op0;
693
47.0k
  cs_m68k_op* op1;
694
47.0k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
695
696
47.0k
  op0 = &ext->operands[0];
697
47.0k
  op1 = &ext->operands[1];
698
699
47.0k
  get_ea_mode_op(info, op0, info->ir, size);
700
47.0k
  get_ea_mode_op(info, op1, (((info->ir>>9) & 7) | ((info->ir>>3) & 0x38)), size);
701
47.0k
}
702
703
static void build_pi_pi(m68k_info *info, int opcode, int size)
704
1.35k
{
705
1.35k
  cs_m68k_op* op0;
706
1.35k
  cs_m68k_op* op1;
707
1.35k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
708
709
1.35k
  op0 = &ext->operands[0];
710
1.35k
  op1 = &ext->operands[1];
711
712
1.35k
  op0->address_mode = M68K_AM_REGI_ADDR_POST_INC;
713
1.35k
  op0->reg = M68K_REG_A0 + (info->ir & 7);
714
715
1.35k
  op1->address_mode = M68K_AM_REGI_ADDR_POST_INC;
716
1.35k
  op1->reg = M68K_REG_A0 + ((info->ir >> 9) & 7);
717
1.35k
}
718
719
static void build_imm_special_reg(m68k_info *info, int opcode, int imm, int size, m68k_reg reg)
720
1.63k
{
721
1.63k
  cs_m68k_op* op0;
722
1.63k
  cs_m68k_op* op1;
723
1.63k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
724
725
1.63k
  op0 = &ext->operands[0];
726
1.63k
  op1 = &ext->operands[1];
727
728
1.63k
  op0->type = M68K_OP_IMM;
729
1.63k
  op0->address_mode = M68K_AM_IMMEDIATE;
730
1.63k
  op0->imm = imm;
731
732
1.63k
  op1->address_mode = M68K_AM_NONE;
733
1.63k
  op1->reg = reg;
734
1.63k
}
735
736
static void build_relative_branch(m68k_info *info, int opcode, int size, int displacement)
737
26.1k
{
738
26.1k
  cs_m68k_op* op;
739
26.1k
  cs_m68k* ext = build_init_op(info, opcode, 1, size);
740
741
26.1k
  op = &ext->operands[0];
742
743
26.1k
  op->type = M68K_OP_BR_DISP;
744
26.1k
  op->address_mode = M68K_AM_BRANCH_DISPLACEMENT;
745
26.1k
  op->br_disp.disp = displacement;
746
26.1k
  op->br_disp.disp_size = size;
747
748
26.1k
  set_insn_group(info, M68K_GRP_JUMP);
749
26.1k
  set_insn_group(info, M68K_GRP_BRANCH_RELATIVE);
750
26.1k
}
751
752
static void build_absolute_jump_with_immediate(m68k_info *info, int opcode, int size, int immediate)
753
3.63k
{
754
3.63k
  cs_m68k_op* op;
755
3.63k
  cs_m68k* ext = build_init_op(info, opcode, 1, size);
756
757
3.63k
  op = &ext->operands[0];
758
759
3.63k
  op->type = M68K_OP_IMM;
760
3.63k
  op->address_mode = M68K_AM_IMMEDIATE;
761
3.63k
  op->imm = immediate;
762
763
3.63k
  set_insn_group(info, M68K_GRP_JUMP);
764
3.63k
}
765
766
static void build_bcc(m68k_info *info, int size, int displacement)
767
18.2k
{
768
18.2k
  build_relative_branch(info, s_branch_lut[(info->ir >> 8) & 0xf], size, displacement);
769
18.2k
}
770
771
static void build_trap(m68k_info *info, int size, int immediate)
772
989
{
773
989
  build_absolute_jump_with_immediate(info, s_trap_lut[(info->ir >> 8) & 0xf], size, immediate);
774
989
}
775
776
static void build_dbxx(m68k_info *info, int opcode, int size, int displacement)
777
2.14k
{
778
2.14k
  cs_m68k_op* op0;
779
2.14k
  cs_m68k_op* op1;
780
2.14k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
781
782
2.14k
  op0 = &ext->operands[0];
783
2.14k
  op1 = &ext->operands[1];
784
785
2.14k
  op0->address_mode = M68K_AM_REG_DIRECT_DATA;
786
2.14k
  op0->reg = M68K_REG_D0 + (info->ir & 7);
787
788
2.14k
  op1->type = M68K_OP_BR_DISP;
789
2.14k
  op1->address_mode = M68K_AM_BRANCH_DISPLACEMENT;
790
2.14k
  op1->br_disp.disp = displacement;
791
2.14k
  op1->br_disp.disp_size = M68K_OP_BR_DISP_SIZE_LONG;
792
793
2.14k
  set_insn_group(info, M68K_GRP_JUMP);
794
2.14k
  set_insn_group(info, M68K_GRP_BRANCH_RELATIVE);
795
2.14k
}
796
797
static void build_dbcc(m68k_info *info, int size, int displacement)
798
1.35k
{
799
1.35k
  build_dbxx(info, s_dbcc_lut[(info->ir >> 8) & 0xf], size, displacement);
800
1.35k
}
801
802
static void build_d_d_ea(m68k_info *info, int opcode, int size)
803
429
{
804
429
  cs_m68k_op* op0;
805
429
  cs_m68k_op* op1;
806
429
  cs_m68k_op* op2;
807
429
  uint32_t extension = read_imm_16(info);
808
429
  cs_m68k* ext = build_init_op(info, opcode, 3, size);
809
810
429
  op0 = &ext->operands[0];
811
429
  op1 = &ext->operands[1];
812
429
  op2 = &ext->operands[2];
813
814
429
  op0->address_mode = M68K_AM_REG_DIRECT_DATA;
815
429
  op0->reg = M68K_REG_D0 + (extension & 7);
816
817
429
  op1->address_mode = M68K_AM_REG_DIRECT_DATA;
818
429
  op1->reg = M68K_REG_D0 + ((extension >> 6) & 7);
819
820
429
  get_ea_mode_op(info, op2, info->ir, size);
821
429
}
822
823
static void build_bitfield_ins(m68k_info *info, int opcode, int has_d_arg)
824
3.29k
{
825
3.29k
  uint8_t offset;
826
3.29k
  uint8_t width;
827
3.29k
  cs_m68k_op* op_ea;
828
3.29k
  cs_m68k_op* op1;
829
3.29k
  cs_m68k* ext = build_init_op(info, opcode, 1, 0);
830
3.29k
  uint32_t extension = read_imm_16(info);
831
832
3.29k
  op_ea = &ext->operands[0];
833
3.29k
  op1 = &ext->operands[1];
834
835
3.29k
  if (BIT_B(extension))
836
1.36k
    offset = (extension >> 6) & 7;
837
1.93k
  else
838
1.93k
    offset = (extension >> 6) & 31;
839
840
3.29k
  if (BIT_5(extension))
841
936
    width = extension & 7;
842
2.35k
  else
843
2.35k
    width = (uint8_t)g_5bit_data_table[extension & 31];
844
845
3.29k
  if (has_d_arg) {
846
1.62k
    ext->op_count = 2;
847
1.62k
    op1->address_mode = M68K_AM_REG_DIRECT_DATA;
848
1.62k
    op1->reg = M68K_REG_D0 + ((extension >> 12) & 7);
849
1.62k
  }
850
851
3.29k
  get_ea_mode_op(info, op_ea, info->ir, 1);
852
853
3.29k
  op_ea->mem.bitfield = 1;
854
3.29k
  op_ea->mem.width = width;
855
3.29k
  op_ea->mem.offset = offset;
856
3.29k
}
857
858
static void build_d(m68k_info *info, int opcode, int size)
859
924
{
860
924
  cs_m68k* ext = build_init_op(info, opcode, 1, size);
861
924
  cs_m68k_op* op;
862
863
924
  op = &ext->operands[0];
864
865
924
  op->address_mode = M68K_AM_REG_DIRECT_DATA;
866
924
  op->reg = M68K_REG_D0 + (info->ir & 7);
867
924
}
868
869
static uint16_t reverse_bits(uint32_t v)
870
972
{
871
972
  uint32_t r = v; // r will be reversed bits of v; first get LSB of v
872
972
  uint32_t s = 16 - 1; // extra shift needed at end
873
874
10.7k
  for (v >>= 1; v; v >>= 1) {
875
9.79k
    r <<= 1;
876
9.79k
    r |= v & 1;
877
9.79k
    s--;
878
9.79k
  }
879
880
972
  return r <<= s; // shift when v's highest bits are zero
881
972
}
882
883
static uint8_t reverse_bits_8(uint32_t v)
884
1.37k
{
885
1.37k
  uint32_t r = v; // r will be reversed bits of v; first get LSB of v
886
1.37k
  uint32_t s = 8 - 1; // extra shift needed at end
887
888
7.93k
  for (v >>= 1; v; v >>= 1) {
889
6.55k
    r <<= 1;
890
6.55k
    r |= v & 1;
891
6.55k
    s--;
892
6.55k
  }
893
894
1.37k
  return r <<= s; // shift when v's highest bits are zero
895
1.37k
}
896
897
898
static void build_movem_re(m68k_info *info, int opcode, int size)
899
2.79k
{
900
2.79k
  cs_m68k_op* op0;
901
2.79k
  cs_m68k_op* op1;
902
2.79k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
903
904
2.79k
  op0 = &ext->operands[0];
905
2.79k
  op1 = &ext->operands[1];
906
907
2.79k
  op0->type = M68K_OP_REG_BITS;
908
2.79k
  op0->register_bits = read_imm_16(info);
909
910
2.79k
  get_ea_mode_op(info, op1, info->ir, size);
911
912
2.79k
  if (op1->address_mode == M68K_AM_REGI_ADDR_PRE_DEC)
913
972
    op0->register_bits = reverse_bits(op0->register_bits);
914
2.79k
}
915
916
static void build_movem_er(m68k_info *info, int opcode, int size)
917
1.26k
{
918
1.26k
  cs_m68k_op* op0;
919
1.26k
  cs_m68k_op* op1;
920
1.26k
  cs_m68k* ext = build_init_op(info, opcode, 2, size);
921
922
1.26k
  op0 = &ext->operands[0];
923
1.26k
  op1 = &ext->operands[1];
924
925
1.26k
  op1->type = M68K_OP_REG_BITS;
926
1.26k
  op1->register_bits = read_imm_16(info);
927
928
1.26k
  get_ea_mode_op(info, op0, info->ir, size);
929
1.26k
}
930
931
static void build_imm(m68k_info *info, int opcode, int data)
932
58.4k
{
933
58.4k
  cs_m68k_op* op;
934
58.4k
  cs_m68k* ext = build_init_op(info, opcode, 1, 0);
935
936
58.4k
  MCInst_setOpcode(info->inst, opcode);
937
938
58.4k
  op = &ext->operands[0];
939
940
58.4k
  op->type = M68K_OP_IMM;
941
58.4k
  op->address_mode = M68K_AM_IMMEDIATE;
942
58.4k
  op->imm = data;
943
58.4k
}
944
945
static void build_illegal(m68k_info *info, int data)
946
2.15k
{
947
2.15k
  build_imm(info, M68K_INS_ILLEGAL, data);
948
2.15k
}
949
950
static void build_invalid(m68k_info *info, int data)
951
56.3k
{
952
56.3k
  build_imm(info, M68K_INS_INVALID, data);
953
56.3k
}
954
955
static void build_cas2(m68k_info *info, int size)
956
2.03k
{
957
2.03k
  uint32_t word3;
958
2.03k
  uint32_t extension;
959
2.03k
  cs_m68k_op* op0;
960
2.03k
  cs_m68k_op* op1;
961
2.03k
  cs_m68k_op* op2;
962
2.03k
  cs_m68k* ext = build_init_op(info, M68K_INS_CAS2, 3, size);
963
2.03k
  int reg_0, reg_1;
964
965
  /* cas2 is the only 3 words instruction, word2 and word3 have the same motif bits to check */
966
2.03k
  word3 = peek_imm_32(info) & 0xffff;
967
2.03k
  if (!instruction_is_valid(info, word3))
968
1.03k
    return;
969
970
999
  op0 = &ext->operands[0];
971
999
  op1 = &ext->operands[1];
972
999
  op2 = &ext->operands[2];
973
974
999
  extension = read_imm_32(info);
975
976
999
  op0->address_mode = M68K_AM_NONE;
977
999
  op0->type = M68K_OP_REG_PAIR;
978
999
  op0->reg_pair.reg_0 = ((extension >> 16) & 7) + M68K_REG_D0;
979
999
  op0->reg_pair.reg_1 = (extension & 7) + M68K_REG_D0;
980
981
999
  op1->address_mode = M68K_AM_NONE;
982
999
  op1->type = M68K_OP_REG_PAIR;
983
999
  op1->reg_pair.reg_0 = ((extension >> 22) & 7) + M68K_REG_D0;
984
999
  op1->reg_pair.reg_1 = ((extension >> 6) & 7) + M68K_REG_D0;
985
986
999
  reg_0 = (extension >> 28) & 7;
987
999
  reg_1 = (extension >> 12) & 7;
988
989
999
  op2->address_mode = M68K_AM_NONE;
990
999
  op2->type = M68K_OP_REG_PAIR;
991
999
  op2->reg_pair.reg_0 = reg_0 + (BIT_1F(extension) ? 8 : 0) + M68K_REG_D0;
992
999
  op2->reg_pair.reg_1 = reg_1 + (BIT_F(extension) ? 8 : 0) + M68K_REG_D0;
993
999
}
994
995
static void build_chk2_cmp2(m68k_info *info, int size)
996
1.37k
{
997
1.37k
  cs_m68k_op* op0;
998
1.37k
  cs_m68k_op* op1;
999
1.37k
  cs_m68k* ext = build_init_op(info, M68K_INS_CHK2, 2, size);
1000
1001
1.37k
  uint32_t extension = read_imm_16(info);
1002
1003
1.37k
  if (BIT_B(extension))
1004
202
    MCInst_setOpcode(info->inst, M68K_INS_CHK2);
1005
1.17k
  else
1006
1.17k
    MCInst_setOpcode(info->inst, M68K_INS_CMP2);
1007
1008
1.37k
  op0 = &ext->operands[0];
1009
1.37k
  op1 = &ext->operands[1];
1010
1011
1.37k
  get_ea_mode_op(info, op0, info->ir, size);
1012
1013
1.37k
  op1->address_mode = M68K_AM_NONE;
1014
1.37k
  op1->type = M68K_OP_REG;
1015
1.37k
  op1->reg = (BIT_F(extension) ? M68K_REG_A0 : M68K_REG_D0) + ((extension >> 12) & 7);
1016
1.37k
}
1017
1018
static void build_move16(m68k_info *info, int data[2], int modes[2])
1019
1.37k
{
1020
1.37k
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVE16, 2, 0);
1021
1.37k
  int i;
1022
1023
4.13k
  for (i = 0; i < 2; ++i) {
1024
2.75k
    cs_m68k_op* op = &ext->operands[i];
1025
2.75k
    const int d = data[i];
1026
2.75k
    const int m = modes[i];
1027
1028
2.75k
    op->type = M68K_OP_MEM;
1029
1030
2.75k
    if (m == M68K_AM_REGI_ADDR_POST_INC || m == M68K_AM_REG_DIRECT_ADDR) {
1031
1.54k
      op->address_mode = m;
1032
1.54k
      op->reg = M68K_REG_A0 + d;
1033
1.54k
    } else {
1034
1.20k
      op->address_mode = m;
1035
1.20k
      op->imm = d;
1036
1.20k
    }
1037
2.75k
  }
1038
1.37k
}
1039
1040
static void build_link(m68k_info *info, int disp, int size)
1041
395
{
1042
395
  cs_m68k_op* op0;
1043
395
  cs_m68k_op* op1;
1044
395
  cs_m68k* ext = build_init_op(info, M68K_INS_LINK, 2, size);
1045
1046
395
  op0 = &ext->operands[0];
1047
395
  op1 = &ext->operands[1];
1048
1049
395
  op0->address_mode = M68K_AM_NONE;
1050
395
  op0->reg = M68K_REG_A0 + (info->ir & 7);
1051
1052
395
  op1->address_mode = M68K_AM_IMMEDIATE;
1053
395
  op1->type = M68K_OP_IMM;
1054
395
  op1->imm = disp;
1055
395
}
1056
1057
static void build_cpush_cinv(m68k_info *info, int op_offset)
1058
2.92k
{
1059
2.92k
  cs_m68k_op* op0;
1060
2.92k
  cs_m68k_op* op1;
1061
2.92k
  cs_m68k* ext = build_init_op(info, M68K_INS_INVALID, 2, 0);
1062
1063
2.92k
  switch ((info->ir >> 3) & 3) { // scope
1064
    // Invalid
1065
230
    case 0:
1066
230
      d68000_invalid(info);
1067
230
      return;
1068
      // Line
1069
351
    case 1:
1070
351
      MCInst_setOpcode(info->inst, op_offset + 0);
1071
351
      break;
1072
      // Page
1073
1.92k
    case 2:
1074
1.92k
      MCInst_setOpcode(info->inst, op_offset + 1);
1075
1.92k
      break;
1076
      // All
1077
414
    case 3:
1078
414
      ext->op_count = 1;
1079
414
      MCInst_setOpcode(info->inst, op_offset + 2);
1080
414
      break;
1081
2.92k
  }
1082
1083
2.69k
  op0 = &ext->operands[0];
1084
2.69k
  op1 = &ext->operands[1];
1085
1086
2.69k
  op0->address_mode = M68K_AM_IMMEDIATE;
1087
2.69k
  op0->type = M68K_OP_IMM;
1088
2.69k
  op0->imm = (info->ir >> 6) & 3;
1089
1090
2.69k
  op1->type = M68K_OP_MEM;
1091
2.69k
  op1->address_mode = M68K_AM_REG_DIRECT_ADDR;
1092
2.69k
  op1->imm = M68K_REG_A0 + (info->ir & 7);
1093
2.69k
}
1094
1095
static void build_movep_re(m68k_info *info, int size)
1096
1.41k
{
1097
1.41k
  cs_m68k_op* op0;
1098
1.41k
  cs_m68k_op* op1;
1099
1.41k
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVEP, 2, size);
1100
1101
1.41k
  op0 = &ext->operands[0];
1102
1.41k
  op1 = &ext->operands[1];
1103
1104
1.41k
  op0->reg = M68K_REG_D0 + ((info->ir >> 9) & 7);
1105
1106
1.41k
  op1->address_mode = M68K_AM_REGI_ADDR_DISP;
1107
1.41k
  op1->type = M68K_OP_MEM;
1108
1.41k
  op1->mem.base_reg = M68K_REG_A0 + (info->ir & 7);
1109
1.41k
  op1->mem.disp = (int16_t)read_imm_16(info);
1110
1.41k
}
1111
1112
static void build_movep_er(m68k_info *info, int size)
1113
2.58k
{
1114
2.58k
  cs_m68k_op* op0;
1115
2.58k
  cs_m68k_op* op1;
1116
2.58k
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVEP, 2, size);
1117
1118
2.58k
  op0 = &ext->operands[0];
1119
2.58k
  op1 = &ext->operands[1];
1120
1121
2.58k
  op0->address_mode = M68K_AM_REGI_ADDR_DISP;
1122
2.58k
  op0->type = M68K_OP_MEM;
1123
2.58k
  op0->mem.base_reg = M68K_REG_A0 + (info->ir & 7);
1124
2.58k
  op0->mem.disp = (int16_t)read_imm_16(info);
1125
1126
2.58k
  op1->reg = M68K_REG_D0 + ((info->ir >> 9) & 7);
1127
2.58k
}
1128
1129
static void build_moves(m68k_info *info, int size)
1130
1.25k
{
1131
1.25k
  cs_m68k_op* op0;
1132
1.25k
  cs_m68k_op* op1;
1133
1.25k
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVES, 2, size);
1134
1.25k
  uint32_t extension = read_imm_16(info);
1135
1136
1.25k
  op0 = &ext->operands[0];
1137
1.25k
  op1 = &ext->operands[1];
1138
1139
1.25k
  if (BIT_B(extension)) {
1140
404
    op0->reg = (BIT_F(extension) ? M68K_REG_A0 : M68K_REG_D0) + ((extension >> 12) & 7);
1141
404
    get_ea_mode_op(info, op1, info->ir, size);
1142
855
  } else {
1143
855
    get_ea_mode_op(info, op0, info->ir, size);
1144
855
    op1->reg = (BIT_F(extension) ? M68K_REG_A0 : M68K_REG_D0) + ((extension >> 12) & 7);
1145
855
  }
1146
1.25k
}
1147
1148
static void build_er_1(m68k_info *info, int opcode, uint8_t size)
1149
30.9k
{
1150
30.9k
  build_er_gen_1(info, true, opcode, size);
1151
30.9k
}
1152
1153
/* ======================================================================== */
1154
/* ========================= INSTRUCTION HANDLERS ========================= */
1155
/* ======================================================================== */
1156
/* Instruction handler function names follow this convention:
1157
 *
1158
 * d68000_NAME_EXTENSIONS(void)
1159
 * where NAME is the name of the opcode it handles and EXTENSIONS are any
1160
 * extensions for special instances of that opcode.
1161
 *
1162
 * Examples:
1163
 *   d68000_add_er_8(): add opcode, from effective address to register,
1164
 *                      size = byte
1165
 *
1166
 *   d68000_asr_s_8(): arithmetic shift right, static count, size = byte
1167
 *
1168
 *
1169
 * Common extensions:
1170
 * 8   : size = byte
1171
 * 16  : size = word
1172
 * 32  : size = long
1173
 * rr  : register to register
1174
 * mm  : memory to memory
1175
 * r   : register
1176
 * s   : static
1177
 * er  : effective address -> register
1178
 * re  : register -> effective address
1179
 * ea  : using effective address mode of operation
1180
 * d   : data register direct
1181
 * a   : address register direct
1182
 * ai  : address register indirect
1183
 * pi  : address register indirect with postincrement
1184
 * pd  : address register indirect with predecrement
1185
 * di  : address register indirect with displacement
1186
 * ix  : address register indirect with index
1187
 * aw  : absolute word
1188
 * al  : absolute long
1189
 */
1190
1191
1192
static void d68000_invalid(m68k_info *info)
1193
29.0k
{
1194
29.0k
  build_invalid(info, info->ir);
1195
29.0k
}
1196
1197
static void d68000_illegal(m68k_info *info)
1198
2.15k
{
1199
2.15k
  build_illegal(info, info->ir);
1200
2.15k
}
1201
1202
static void d68000_1010(m68k_info *info)
1203
13.3k
{
1204
13.3k
  build_invalid(info, info->ir);
1205
13.3k
}
1206
1207
static void d68000_1111(m68k_info *info)
1208
13.8k
{
1209
13.8k
  build_invalid(info, info->ir);
1210
13.8k
}
1211
1212
static void d68000_abcd_rr(m68k_info *info)
1213
778
{
1214
778
  build_rr(info, M68K_INS_ABCD, 1, 0);
1215
778
}
1216
1217
static void d68000_abcd_mm(m68k_info *info)
1218
229
{
1219
229
  build_mm(info, M68K_INS_ABCD, 1, 0);
1220
229
}
1221
1222
static void d68000_add_er_8(m68k_info *info)
1223
908
{
1224
908
  build_er_1(info, M68K_INS_ADD, 1);
1225
908
}
1226
1227
static void d68000_add_er_16(m68k_info *info)
1228
895
{
1229
895
  build_er_1(info, M68K_INS_ADD, 2);
1230
895
}
1231
1232
static void d68000_add_er_32(m68k_info *info)
1233
531
{
1234
531
  build_er_1(info, M68K_INS_ADD, 4);
1235
531
}
1236
1237
static void d68000_add_re_8(m68k_info *info)
1238
1.04k
{
1239
1.04k
  build_re_1(info, M68K_INS_ADD, 1);
1240
1.04k
}
1241
1242
static void d68000_add_re_16(m68k_info *info)
1243
847
{
1244
847
  build_re_1(info, M68K_INS_ADD, 2);
1245
847
}
1246
1247
static void d68000_add_re_32(m68k_info *info)
1248
898
{
1249
898
  build_re_1(info, M68K_INS_ADD, 4);
1250
898
}
1251
1252
static void d68000_adda_16(m68k_info *info)
1253
2.96k
{
1254
2.96k
  build_ea_a(info, M68K_INS_ADDA, 2);
1255
2.96k
}
1256
1257
static void d68000_adda_32(m68k_info *info)
1258
3.09k
{
1259
3.09k
  build_ea_a(info, M68K_INS_ADDA, 4);
1260
3.09k
}
1261
1262
static void d68000_addi_8(m68k_info *info)
1263
601
{
1264
601
  build_imm_ea(info, M68K_INS_ADDI, 1, read_imm_8(info));
1265
601
}
1266
1267
static void d68000_addi_16(m68k_info *info)
1268
1.16k
{
1269
1.16k
  build_imm_ea(info, M68K_INS_ADDI, 2, read_imm_16(info));
1270
1.16k
}
1271
1272
static void d68000_addi_32(m68k_info *info)
1273
171
{
1274
171
  build_imm_ea(info, M68K_INS_ADDI, 4, read_imm_32(info));
1275
171
}
1276
1277
static void d68000_addq_8(m68k_info *info)
1278
1.48k
{
1279
1.48k
  build_3bit_ea(info, M68K_INS_ADDQ, 1);
1280
1.48k
}
1281
1282
static void d68000_addq_16(m68k_info *info)
1283
4.92k
{
1284
4.92k
  build_3bit_ea(info, M68K_INS_ADDQ, 2);
1285
4.92k
}
1286
1287
static void d68000_addq_32(m68k_info *info)
1288
1.05k
{
1289
1.05k
  build_3bit_ea(info, M68K_INS_ADDQ, 4);
1290
1.05k
}
1291
1292
static void d68000_addx_rr_8(m68k_info *info)
1293
689
{
1294
689
  build_rr(info, M68K_INS_ADDX, 1, 0);
1295
689
}
1296
1297
static void d68000_addx_rr_16(m68k_info *info)
1298
373
{
1299
373
  build_rr(info, M68K_INS_ADDX, 2, 0);
1300
373
}
1301
1302
static void d68000_addx_rr_32(m68k_info *info)
1303
338
{
1304
338
  build_rr(info, M68K_INS_ADDX, 4, 0);
1305
338
}
1306
1307
static void d68000_addx_mm_8(m68k_info *info)
1308
547
{
1309
547
  build_mm(info, M68K_INS_ADDX, 1, 0);
1310
547
}
1311
1312
static void d68000_addx_mm_16(m68k_info *info)
1313
634
{
1314
634
  build_mm(info, M68K_INS_ADDX, 2, 0);
1315
634
}
1316
1317
static void d68000_addx_mm_32(m68k_info *info)
1318
390
{
1319
390
  build_mm(info, M68K_INS_ADDX, 4, 0);
1320
390
}
1321
1322
static void d68000_and_er_8(m68k_info *info)
1323
1.15k
{
1324
1.15k
  build_er_1(info, M68K_INS_AND, 1);
1325
1.15k
}
1326
1327
static void d68000_and_er_16(m68k_info *info)
1328
1.73k
{
1329
1.73k
  build_er_1(info, M68K_INS_AND, 2);
1330
1.73k
}
1331
1332
static void d68000_and_er_32(m68k_info *info)
1333
879
{
1334
879
  build_er_1(info, M68K_INS_AND, 4);
1335
879
}
1336
1337
static void d68000_and_re_8(m68k_info *info)
1338
710
{
1339
710
  build_re_1(info, M68K_INS_AND, 1);
1340
710
}
1341
1342
static void d68000_and_re_16(m68k_info *info)
1343
852
{
1344
852
  build_re_1(info, M68K_INS_AND, 2);
1345
852
}
1346
1347
static void d68000_and_re_32(m68k_info *info)
1348
672
{
1349
672
  build_re_1(info, M68K_INS_AND, 4);
1350
672
}
1351
1352
static void d68000_andi_8(m68k_info *info)
1353
868
{
1354
868
  build_imm_ea(info, M68K_INS_ANDI, 1, read_imm_8(info));
1355
868
}
1356
1357
static void d68000_andi_16(m68k_info *info)
1358
707
{
1359
707
  build_imm_ea(info, M68K_INS_ANDI, 2, read_imm_16(info));
1360
707
}
1361
1362
static void d68000_andi_32(m68k_info *info)
1363
174
{
1364
174
  build_imm_ea(info, M68K_INS_ANDI, 4, read_imm_32(info));
1365
174
}
1366
1367
static void d68000_andi_to_ccr(m68k_info *info)
1368
178
{
1369
178
  build_imm_special_reg(info, M68K_INS_ANDI, read_imm_8(info), 1, M68K_REG_CCR);
1370
178
}
1371
1372
static void d68000_andi_to_sr(m68k_info *info)
1373
284
{
1374
284
  build_imm_special_reg(info, M68K_INS_ANDI, read_imm_16(info), 2, M68K_REG_SR);
1375
284
}
1376
1377
static void d68000_asr_s_8(m68k_info *info)
1378
1.20k
{
1379
1.20k
  build_3bit_d(info, M68K_INS_ASR, 1);
1380
1.20k
}
1381
1382
static void d68000_asr_s_16(m68k_info *info)
1383
415
{
1384
415
  build_3bit_d(info, M68K_INS_ASR, 2);
1385
415
}
1386
1387
static void d68000_asr_s_32(m68k_info *info)
1388
1.04k
{
1389
1.04k
  build_3bit_d(info, M68K_INS_ASR, 4);
1390
1.04k
}
1391
1392
static void d68000_asr_r_8(m68k_info *info)
1393
1.06k
{
1394
1.06k
  build_r(info, M68K_INS_ASR, 1);
1395
1.06k
}
1396
1397
static void d68000_asr_r_16(m68k_info *info)
1398
712
{
1399
712
  build_r(info, M68K_INS_ASR, 2);
1400
712
}
1401
1402
static void d68000_asr_r_32(m68k_info *info)
1403
319
{
1404
319
  build_r(info, M68K_INS_ASR, 4);
1405
319
}
1406
1407
static void d68000_asr_ea(m68k_info *info)
1408
858
{
1409
858
  build_ea(info, M68K_INS_ASR, 2);
1410
858
}
1411
1412
static void d68000_asl_s_8(m68k_info *info)
1413
1.31k
{
1414
1.31k
  build_3bit_d(info, M68K_INS_ASL, 1);
1415
1.31k
}
1416
1417
static void d68000_asl_s_16(m68k_info *info)
1418
354
{
1419
354
  build_3bit_d(info, M68K_INS_ASL, 2);
1420
354
}
1421
1422
static void d68000_asl_s_32(m68k_info *info)
1423
584
{
1424
584
  build_3bit_d(info, M68K_INS_ASL, 4);
1425
584
}
1426
1427
static void d68000_asl_r_8(m68k_info *info)
1428
433
{
1429
433
  build_r(info, M68K_INS_ASL, 1);
1430
433
}
1431
1432
static void d68000_asl_r_16(m68k_info *info)
1433
268
{
1434
268
  build_r(info, M68K_INS_ASL, 2);
1435
268
}
1436
1437
static void d68000_asl_r_32(m68k_info *info)
1438
572
{
1439
572
  build_r(info, M68K_INS_ASL, 4);
1440
572
}
1441
1442
static void d68000_asl_ea(m68k_info *info)
1443
540
{
1444
540
  build_ea(info, M68K_INS_ASL, 2);
1445
540
}
1446
1447
static void d68000_bcc_8(m68k_info *info)
1448
16.3k
{
1449
16.3k
  build_bcc(info, 1, make_int_8(info->ir));
1450
16.3k
}
1451
1452
static void d68000_bcc_16(m68k_info *info)
1453
1.34k
{
1454
1.34k
  build_bcc(info, 2, make_int_16(read_imm_16(info)));
1455
1.34k
}
1456
1457
static void d68020_bcc_32(m68k_info *info)
1458
818
{
1459
818
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1460
540
  build_bcc(info, 4, read_imm_32(info));
1461
540
}
1462
1463
static void d68000_bchg_r(m68k_info *info)
1464
2.84k
{
1465
2.84k
  build_re_1(info, M68K_INS_BCHG, 1);
1466
2.84k
}
1467
1468
static void d68000_bchg_s(m68k_info *info)
1469
432
{
1470
432
  build_imm_ea(info, M68K_INS_BCHG, 1, read_imm_8(info));
1471
432
}
1472
1473
static void d68000_bclr_r(m68k_info *info)
1474
2.11k
{
1475
2.11k
  build_re_1(info, M68K_INS_BCLR, 1);
1476
2.11k
}
1477
1478
static void d68000_bclr_s(m68k_info *info)
1479
591
{
1480
591
  build_imm_ea(info, M68K_INS_BCLR, 1, read_imm_8(info));
1481
591
}
1482
1483
static void d68010_bkpt(m68k_info *info)
1484
1.55k
{
1485
1.55k
  LIMIT_CPU_TYPES(info, M68010_PLUS);
1486
989
  build_absolute_jump_with_immediate(info, M68K_INS_BKPT, 0, info->ir & 7);
1487
989
}
1488
1489
static void d68020_bfchg(m68k_info *info)
1490
675
{
1491
675
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1492
372
  build_bitfield_ins(info, M68K_INS_BFCHG, false);
1493
372
}
1494
1495
1496
static void d68020_bfclr(m68k_info *info)
1497
599
{
1498
599
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1499
466
  build_bitfield_ins(info, M68K_INS_BFCLR, false);
1500
466
}
1501
1502
static void d68020_bfexts(m68k_info *info)
1503
842
{
1504
842
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1505
486
  build_bitfield_ins(info, M68K_INS_BFEXTS, true);
1506
486
}
1507
1508
static void d68020_bfextu(m68k_info *info)
1509
470
{
1510
470
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1511
349
  build_bitfield_ins(info, M68K_INS_BFEXTU, true);
1512
349
}
1513
1514
static void d68020_bfffo(m68k_info *info)
1515
549
{
1516
549
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1517
399
  build_bitfield_ins(info, M68K_INS_BFFFO, true);
1518
399
}
1519
1520
static void d68020_bfins(m68k_info *info)
1521
767
{
1522
767
  cs_m68k* ext = &info->extension;
1523
767
  cs_m68k_op temp;
1524
1525
767
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1526
393
  build_bitfield_ins(info, M68K_INS_BFINS, true);
1527
1528
  // a bit hacky but we need to flip the args on only this instruction
1529
1530
393
  temp = ext->operands[0];
1531
393
  ext->operands[0] = ext->operands[1];
1532
393
  ext->operands[1] = temp;
1533
393
}
1534
1535
static void d68020_bfset(m68k_info *info)
1536
647
{
1537
647
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1538
245
  build_bitfield_ins(info, M68K_INS_BFSET, false);
1539
245
}
1540
1541
static void d68020_bftst(m68k_info *info)
1542
585
{
1543
585
  build_bitfield_ins(info, M68K_INS_BFTST, false);
1544
585
}
1545
1546
static void d68000_bra_8(m68k_info *info)
1547
3.93k
{
1548
3.93k
  build_relative_branch(info, M68K_INS_BRA, 1, make_int_8(info->ir));
1549
3.93k
}
1550
1551
static void d68000_bra_16(m68k_info *info)
1552
858
{
1553
858
  build_relative_branch(info, M68K_INS_BRA, 2, make_int_16(read_imm_16(info)));
1554
858
}
1555
1556
static void d68020_bra_32(m68k_info *info)
1557
329
{
1558
329
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1559
129
  build_relative_branch(info, M68K_INS_BRA, 4, read_imm_32(info));
1560
129
}
1561
1562
static void d68000_bset_r(m68k_info *info)
1563
2.99k
{
1564
2.99k
  build_re_1(info, M68K_INS_BSET, 1);
1565
2.99k
}
1566
1567
static void d68000_bset_s(m68k_info *info)
1568
275
{
1569
275
  build_imm_ea(info, M68K_INS_BSET, 1, read_imm_8(info));
1570
275
}
1571
1572
static void d68000_bsr_8(m68k_info *info)
1573
2.43k
{
1574
2.43k
  build_relative_branch(info, M68K_INS_BSR, 1, make_int_8(info->ir));
1575
2.43k
}
1576
1577
static void d68000_bsr_16(m68k_info *info)
1578
460
{
1579
460
  build_relative_branch(info, M68K_INS_BSR, 2, make_int_16(read_imm_16(info)));
1580
460
}
1581
1582
static void d68020_bsr_32(m68k_info *info)
1583
454
{
1584
454
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1585
166
  build_relative_branch(info, M68K_INS_BSR, 4, read_imm_32(info));
1586
166
}
1587
1588
static void d68000_btst_r(m68k_info *info)
1589
6.97k
{
1590
6.97k
  build_re_1(info, M68K_INS_BTST, 4);
1591
6.97k
}
1592
1593
static void d68000_btst_s(m68k_info *info)
1594
389
{
1595
389
  build_imm_ea(info, M68K_INS_BTST, 1, read_imm_8(info));
1596
389
}
1597
1598
static void d68020_callm(m68k_info *info)
1599
54
{
1600
54
  LIMIT_CPU_TYPES(info, M68020_ONLY);
1601
0
  build_imm_ea(info, M68K_INS_CALLM, 0, read_imm_8(info));
1602
0
}
1603
1604
static void d68020_cas_8(m68k_info *info)
1605
306
{
1606
306
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1607
154
  build_d_d_ea(info, M68K_INS_CAS, 1);
1608
154
}
1609
1610
static void d68020_cas_16(m68k_info *info)
1611
453
{
1612
453
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1613
180
  build_d_d_ea(info, M68K_INS_CAS, 2);
1614
180
}
1615
1616
static void d68020_cas_32(m68k_info *info)
1617
171
{
1618
171
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1619
95
  build_d_d_ea(info, M68K_INS_CAS, 4);
1620
95
}
1621
1622
static void d68020_cas2_16(m68k_info *info)
1623
955
{
1624
955
  build_cas2(info, 2);
1625
955
}
1626
1627
static void d68020_cas2_32(m68k_info *info)
1628
1.08k
{
1629
1.08k
  build_cas2(info, 4);
1630
1.08k
}
1631
1632
static void d68000_chk_16(m68k_info *info)
1633
558
{
1634
558
  build_er_1(info, M68K_INS_CHK, 2);
1635
558
}
1636
1637
static void d68020_chk_32(m68k_info *info)
1638
1.48k
{
1639
1.48k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1640
1.07k
  build_er_1(info, M68K_INS_CHK, 4);
1641
1.07k
}
1642
1643
static void d68020_chk2_cmp2_8(m68k_info *info)
1644
1.48k
{
1645
1.48k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1646
1.11k
  build_chk2_cmp2(info, 1);
1647
1.11k
}
1648
1649
static void d68020_chk2_cmp2_16(m68k_info *info)
1650
178
{
1651
178
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1652
75
  build_chk2_cmp2(info, 2);
1653
75
}
1654
1655
static void d68020_chk2_cmp2_32(m68k_info *info)
1656
290
{
1657
290
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1658
186
  build_chk2_cmp2(info, 4);
1659
186
}
1660
1661
static void d68040_cinv(m68k_info *info)
1662
1.03k
{
1663
1.03k
  LIMIT_CPU_TYPES(info, M68040_PLUS);
1664
709
  build_cpush_cinv(info, M68K_INS_CINVL);
1665
709
}
1666
1667
static void d68000_clr_8(m68k_info *info)
1668
264
{
1669
264
  build_ea(info, M68K_INS_CLR, 1);
1670
264
}
1671
1672
static void d68000_clr_16(m68k_info *info)
1673
801
{
1674
801
  build_ea(info, M68K_INS_CLR, 2);
1675
801
}
1676
1677
static void d68000_clr_32(m68k_info *info)
1678
206
{
1679
206
  build_ea(info, M68K_INS_CLR, 4);
1680
206
}
1681
1682
static void d68000_cmp_8(m68k_info *info)
1683
797
{
1684
797
  build_er_1(info, M68K_INS_CMP, 1);
1685
797
}
1686
1687
static void d68000_cmp_16(m68k_info *info)
1688
1.13k
{
1689
1.13k
  build_er_1(info, M68K_INS_CMP, 2);
1690
1.13k
}
1691
1692
static void d68000_cmp_32(m68k_info *info)
1693
1.91k
{
1694
1.91k
  build_er_1(info, M68K_INS_CMP, 4);
1695
1.91k
}
1696
1697
static void d68000_cmpa_16(m68k_info *info)
1698
723
{
1699
723
  build_ea_a(info, M68K_INS_CMPA, 2);
1700
723
}
1701
1702
static void d68000_cmpa_32(m68k_info *info)
1703
631
{
1704
631
  build_ea_a(info, M68K_INS_CMPA, 4);
1705
631
}
1706
1707
static void d68000_cmpi_8(m68k_info *info)
1708
632
{
1709
632
  build_imm_ea(info, M68K_INS_CMPI, 1, read_imm_8(info));
1710
632
}
1711
1712
static void d68020_cmpi_pcdi_8(m68k_info *info)
1713
585
{
1714
585
  LIMIT_CPU_TYPES(info, M68010_PLUS);
1715
344
  build_imm_ea(info, M68K_INS_CMPI, 1, read_imm_8(info));
1716
344
}
1717
1718
static void d68020_cmpi_pcix_8(m68k_info *info)
1719
714
{
1720
714
  LIMIT_CPU_TYPES(info, M68010_PLUS);
1721
463
  build_imm_ea(info, M68K_INS_CMPI, 1, read_imm_8(info));
1722
463
}
1723
1724
static void d68000_cmpi_16(m68k_info *info)
1725
622
{
1726
622
  build_imm_ea(info, M68K_INS_CMPI, 2, read_imm_16(info));
1727
622
}
1728
1729
static void d68020_cmpi_pcdi_16(m68k_info *info)
1730
321
{
1731
321
  LIMIT_CPU_TYPES(info, M68010_PLUS);
1732
228
  build_imm_ea(info, M68K_INS_CMPI, 2, read_imm_16(info));
1733
228
}
1734
1735
static void d68020_cmpi_pcix_16(m68k_info *info)
1736
443
{
1737
443
  LIMIT_CPU_TYPES(info, M68010_PLUS);
1738
338
  build_imm_ea(info, M68K_INS_CMPI, 2, read_imm_16(info));
1739
338
}
1740
1741
static void d68000_cmpi_32(m68k_info *info)
1742
245
{
1743
245
  build_imm_ea(info, M68K_INS_CMPI, 4, read_imm_32(info));
1744
245
}
1745
1746
static void d68020_cmpi_pcdi_32(m68k_info *info)
1747
403
{
1748
403
  LIMIT_CPU_TYPES(info, M68010_PLUS);
1749
304
  build_imm_ea(info, M68K_INS_CMPI, 4, read_imm_32(info));
1750
304
}
1751
1752
static void d68020_cmpi_pcix_32(m68k_info *info)
1753
599
{
1754
599
  LIMIT_CPU_TYPES(info, M68010_PLUS);
1755
379
  build_imm_ea(info, M68K_INS_CMPI, 4, read_imm_32(info));
1756
379
}
1757
1758
static void d68000_cmpm_8(m68k_info *info)
1759
276
{
1760
276
  build_pi_pi(info, M68K_INS_CMPM, 1);
1761
276
}
1762
1763
static void d68000_cmpm_16(m68k_info *info)
1764
491
{
1765
491
  build_pi_pi(info, M68K_INS_CMPM, 2);
1766
491
}
1767
1768
static void d68000_cmpm_32(m68k_info *info)
1769
590
{
1770
590
  build_pi_pi(info, M68K_INS_CMPM, 4);
1771
590
}
1772
1773
static void make_cpbcc_operand(cs_m68k_op* op, int size, int displacement)
1774
6.67k
{
1775
6.67k
  op->address_mode = M68K_AM_BRANCH_DISPLACEMENT;
1776
6.67k
  op->type = M68K_OP_BR_DISP;
1777
6.67k
  op->br_disp.disp = displacement;
1778
6.67k
  op->br_disp.disp_size = size;
1779
6.67k
}
1780
1781
static void d68020_cpbcc_16(m68k_info *info)
1782
3.60k
{
1783
3.60k
  cs_m68k_op* op0;
1784
3.60k
  cs_m68k* ext;
1785
3.60k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1786
1787
  // FNOP is a special case of FBF
1788
2.57k
  if (info->ir == 0xf280 && peek_imm_16(info) == 0) {
1789
845
    MCInst_setOpcode(info->inst, M68K_INS_FNOP);
1790
845
    info->pc += 2;
1791
845
    return;
1792
845
  }
1793
1794
  // these are all in row with the extension so just doing a add here is fine
1795
1.73k
  info->inst->Opcode += (info->ir & 0x2f);
1796
1797
1.73k
  ext = build_init_op(info, M68K_INS_FBF, 1, 2);
1798
1.73k
  op0 = &ext->operands[0];
1799
1800
1.73k
  make_cpbcc_operand(op0, M68K_OP_BR_DISP_SIZE_WORD, make_int_16(read_imm_16(info)));
1801
1802
1.73k
  set_insn_group(info, M68K_GRP_JUMP);
1803
1.73k
  set_insn_group(info, M68K_GRP_BRANCH_RELATIVE);
1804
1.73k
}
1805
1806
static void d68020_cpbcc_32(m68k_info *info)
1807
4.80k
{
1808
4.80k
  cs_m68k* ext;
1809
4.80k
  cs_m68k_op* op0;
1810
1811
4.80k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1812
1813
  // these are all in row with the extension so just doing a add here is fine
1814
3.45k
  info->inst->Opcode += (info->ir & 0x2f);
1815
1816
3.45k
  ext = build_init_op(info, M68K_INS_FBF, 1, 4);
1817
3.45k
  op0 = &ext->operands[0];
1818
1819
3.45k
  make_cpbcc_operand(op0, M68K_OP_BR_DISP_SIZE_LONG, read_imm_32(info));
1820
1821
3.45k
  set_insn_group(info, M68K_GRP_JUMP);
1822
3.45k
  set_insn_group(info, M68K_GRP_BRANCH_RELATIVE);
1823
3.45k
}
1824
1825
static void d68020_cpdbcc(m68k_info *info)
1826
1.88k
{
1827
1.88k
  cs_m68k* ext;
1828
1.88k
  cs_m68k_op* op0;
1829
1.88k
  cs_m68k_op* op1;
1830
1.88k
  uint32_t ext1, ext2;
1831
1832
1.88k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1833
1834
1.48k
  ext1 = read_imm_16(info);
1835
1.48k
  ext2 = read_imm_16(info);
1836
1837
  // these are all in row with the extension so just doing a add here is fine
1838
1.48k
  info->inst->Opcode += (ext1 & 0x2f);
1839
1840
1.48k
  ext = build_init_op(info, M68K_INS_FDBF, 2, 0);
1841
1.48k
  op0 = &ext->operands[0];
1842
1.48k
  op1 = &ext->operands[1];
1843
1844
1.48k
  op0->reg = M68K_REG_D0 + (info->ir & 7);
1845
1846
1.48k
  make_cpbcc_operand(op1, M68K_OP_BR_DISP_SIZE_WORD, make_int_16(ext2) + 2);
1847
1848
1.48k
  set_insn_group(info, M68K_GRP_JUMP);
1849
1.48k
  set_insn_group(info, M68K_GRP_BRANCH_RELATIVE);
1850
1.48k
}
1851
1852
static void fmove_fpcr(m68k_info *info, uint32_t extension)
1853
2.34k
{
1854
2.34k
  cs_m68k_op* special;
1855
2.34k
  cs_m68k_op* op_ea;
1856
1857
2.34k
  int regsel = (extension >> 10) & 0x7;
1858
2.34k
  int dir = (extension >> 13) & 0x1;
1859
1860
2.34k
  cs_m68k* ext = build_init_op(info, M68K_INS_FMOVE, 2, 4);
1861
1862
2.34k
  special = &ext->operands[0];
1863
2.34k
  op_ea = &ext->operands[1];
1864
1865
2.34k
  if (!dir) {
1866
441
    cs_m68k_op* t = special;
1867
441
    special = op_ea;
1868
441
    op_ea = t;
1869
441
  }
1870
1871
2.34k
  get_ea_mode_op(info, op_ea, info->ir, 4);
1872
1873
2.34k
  if (regsel & 4)
1874
521
    special->reg = M68K_REG_FPCR;
1875
1.82k
  else if (regsel & 2)
1876
320
    special->reg = M68K_REG_FPSR;
1877
1.50k
  else if (regsel & 1)
1878
1.28k
    special->reg = M68K_REG_FPIAR;
1879
2.34k
}
1880
1881
static void fmovem(m68k_info *info, uint32_t extension)
1882
3.38k
{
1883
3.38k
  cs_m68k_op* op_reglist;
1884
3.38k
  cs_m68k_op* op_ea;
1885
3.38k
  int dir = (extension >> 13) & 0x1;
1886
3.38k
  int mode = (extension >> 11) & 0x3;
1887
3.38k
  uint32_t reglist = extension & 0xff;
1888
3.38k
  cs_m68k* ext = build_init_op(info, M68K_INS_FMOVEM, 2, 0);
1889
1890
3.38k
  op_reglist = &ext->operands[0];
1891
3.38k
  op_ea = &ext->operands[1];
1892
1893
  // flip args around
1894
1895
3.38k
  if (!dir) {
1896
1.02k
    cs_m68k_op* t = op_reglist;
1897
1.02k
    op_reglist = op_ea;
1898
1.02k
    op_ea = t;
1899
1.02k
  }
1900
1901
3.38k
  get_ea_mode_op(info, op_ea, info->ir, 0);
1902
1903
3.38k
  switch (mode) {
1904
277
    case 1 : // Dynamic list in dn register
1905
277
      op_reglist->reg = M68K_REG_D0 + ((reglist >> 4) & 7);
1906
277
      break;
1907
1908
925
    case 0 :
1909
925
      op_reglist->address_mode = M68K_AM_NONE;
1910
925
      op_reglist->type = M68K_OP_REG_BITS;
1911
925
      op_reglist->register_bits = reglist << 16;
1912
925
      break;
1913
1914
1.37k
    case 2 : // Static list
1915
1.37k
      op_reglist->address_mode = M68K_AM_NONE;
1916
1.37k
      op_reglist->type = M68K_OP_REG_BITS;
1917
1.37k
      op_reglist->register_bits = ((uint32_t)reverse_bits_8(reglist)) << 16;
1918
1.37k
      break;
1919
3.38k
  }
1920
3.38k
}
1921
1922
static void d68020_cpgen(m68k_info *info)
1923
24.1k
{
1924
24.1k
  cs_m68k *ext;
1925
24.1k
  cs_m68k_op* op0;
1926
24.1k
  cs_m68k_op* op1;
1927
24.1k
  bool supports_single_op;
1928
24.1k
  uint32_t next;
1929
24.1k
  int rm, src, dst, opmode;
1930
1931
1932
24.1k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
1933
1934
22.4k
  supports_single_op = true;
1935
1936
22.4k
  next = read_imm_16(info);
1937
1938
22.4k
  rm = (next >> 14) & 0x1;
1939
22.4k
  src = (next >> 10) & 0x7;
1940
22.4k
  dst = (next >> 7) & 0x7;
1941
22.4k
  opmode = next & 0x3f;
1942
1943
  // special handling for fmovecr
1944
1945
22.4k
  if (BITFIELD(info->ir, 5, 0) == 0 && BITFIELD(next, 15, 10) == 0x17) {
1946
142
    cs_m68k_op* op0;
1947
142
    cs_m68k_op* op1;
1948
142
    cs_m68k* ext = build_init_op(info, M68K_INS_FMOVECR, 2, 0);
1949
1950
142
    op0 = &ext->operands[0];
1951
142
    op1 = &ext->operands[1];
1952
1953
142
    op0->address_mode = M68K_AM_IMMEDIATE;
1954
142
    op0->type = M68K_OP_IMM;
1955
142
    op0->imm = next & 0x3f;
1956
1957
142
    op1->reg = M68K_REG_FP0 + ((next >> 7) & 7);
1958
1959
142
    return;
1960
142
  }
1961
1962
  // deal with extended move stuff
1963
1964
22.3k
  switch ((next >> 13) & 0x7) {
1965
    // fmovem fpcr
1966
441
    case 0x4: // FMOVEM ea, FPCR
1967
2.34k
    case 0x5: // FMOVEM FPCR, ea
1968
2.34k
      fmove_fpcr(info, next);
1969
2.34k
      return;
1970
1971
    // fmovem list
1972
1.02k
    case 0x6:
1973
3.38k
    case 0x7:
1974
3.38k
      fmovem(info, next);
1975
3.38k
      return;
1976
22.3k
  }
1977
1978
  // See comment bellow on why this is being done
1979
1980
16.5k
  if ((next >> 6) & 1)
1981
5.96k
    opmode &= ~4;
1982
1983
  // special handling of some instructions here
1984
1985
16.5k
  switch (opmode) {
1986
947
    case 0x00: MCInst_setOpcode(info->inst, M68K_INS_FMOVE); supports_single_op = false; break;
1987
193
    case 0x01: MCInst_setOpcode(info->inst, M68K_INS_FINT); break;
1988
512
    case 0x02: MCInst_setOpcode(info->inst, M68K_INS_FSINH); break;
1989
274
    case 0x03: MCInst_setOpcode(info->inst, M68K_INS_FINTRZ); break;
1990
309
    case 0x04: MCInst_setOpcode(info->inst, M68K_INS_FSQRT); break;
1991
128
    case 0x06: MCInst_setOpcode(info->inst, M68K_INS_FLOGNP1); break;
1992
769
    case 0x08: MCInst_setOpcode(info->inst, M68K_INS_FETOXM1); break;
1993
322
    case 0x09: MCInst_setOpcode(info->inst, M68K_INS_FATANH); break;
1994
237
    case 0x0a: MCInst_setOpcode(info->inst, M68K_INS_FATAN); break;
1995
671
    case 0x0c: MCInst_setOpcode(info->inst, M68K_INS_FASIN); break;
1996
157
    case 0x0d: MCInst_setOpcode(info->inst, M68K_INS_FATANH); break;
1997
429
    case 0x0e: MCInst_setOpcode(info->inst, M68K_INS_FSIN); break;
1998
169
    case 0x0f: MCInst_setOpcode(info->inst, M68K_INS_FTAN); break;
1999
575
    case 0x10: MCInst_setOpcode(info->inst, M68K_INS_FETOX); break;
2000
599
    case 0x11: MCInst_setOpcode(info->inst, M68K_INS_FTWOTOX); break;
2001
382
    case 0x12: MCInst_setOpcode(info->inst, M68K_INS_FTENTOX); break;
2002
355
    case 0x14: MCInst_setOpcode(info->inst, M68K_INS_FLOGN); break;
2003
207
    case 0x15: MCInst_setOpcode(info->inst, M68K_INS_FLOG10); break;
2004
97
    case 0x16: MCInst_setOpcode(info->inst, M68K_INS_FLOG2); break;
2005
125
    case 0x18: MCInst_setOpcode(info->inst, M68K_INS_FABS); break;
2006
120
    case 0x19: MCInst_setOpcode(info->inst, M68K_INS_FCOSH); break;
2007
287
    case 0x1a: MCInst_setOpcode(info->inst, M68K_INS_FNEG); break;
2008
189
    case 0x1c: MCInst_setOpcode(info->inst, M68K_INS_FACOS); break;
2009
76
    case 0x1d: MCInst_setOpcode(info->inst, M68K_INS_FCOS); break;
2010
101
    case 0x1e: MCInst_setOpcode(info->inst, M68K_INS_FGETEXP); break;
2011
218
    case 0x1f: MCInst_setOpcode(info->inst, M68K_INS_FGETMAN); break;
2012
1.11k
    case 0x20: MCInst_setOpcode(info->inst, M68K_INS_FDIV); supports_single_op = false; break;
2013
206
    case 0x21: MCInst_setOpcode(info->inst, M68K_INS_FMOD); supports_single_op = false; break;
2014
498
    case 0x22: MCInst_setOpcode(info->inst, M68K_INS_FADD); supports_single_op = false; break;
2015
839
    case 0x23: MCInst_setOpcode(info->inst, M68K_INS_FMUL); supports_single_op = false; break;
2016
957
    case 0x24: MCInst_setOpcode(info->inst, M68K_INS_FSGLDIV); supports_single_op = false; break;
2017
686
    case 0x25: MCInst_setOpcode(info->inst, M68K_INS_FREM); break;
2018
318
    case 0x26: MCInst_setOpcode(info->inst, M68K_INS_FSCALE); break;
2019
344
    case 0x27: MCInst_setOpcode(info->inst, M68K_INS_FSGLMUL); break;
2020
482
    case 0x28: MCInst_setOpcode(info->inst, M68K_INS_FSUB); supports_single_op = false; break;
2021
890
    case 0x38: MCInst_setOpcode(info->inst, M68K_INS_FCMP); supports_single_op = false; break;
2022
456
    case 0x3a: MCInst_setOpcode(info->inst, M68K_INS_FTST); break;
2023
1.33k
    default:
2024
1.33k
      break;
2025
16.5k
  }
2026
2027
  // Some trickery here! It's not documented but if bit 6 is set this is a s/d opcode and then
2028
  // if bit 2 is set it's a d. As we already have set our opcode in the code above we can just
2029
  // offset it as the following 2 op codes (if s/d is supported) will always be directly after it
2030
2031
16.5k
  if ((next >> 6) & 1) {
2032
5.96k
    if ((next >> 2) & 1)
2033
2.52k
      info->inst->Opcode += 2;
2034
3.44k
    else
2035
3.44k
      info->inst->Opcode += 1;
2036
5.96k
  }
2037
2038
16.5k
  ext = &info->extension;
2039
2040
16.5k
  ext->op_count = 2;
2041
16.5k
  ext->op_size.type = M68K_SIZE_TYPE_CPU;
2042
16.5k
  ext->op_size.cpu_size = 0;
2043
2044
  // Special case - adjust direction of fmove
2045
16.5k
  if ((opmode == 0x00) && ((next >> 13) & 0x1) != 0) {
2046
303
    op0 = &ext->operands[1];
2047
303
    op1 = &ext->operands[0];
2048
16.2k
  } else {
2049
16.2k
    op0 = &ext->operands[0];
2050
16.2k
    op1 = &ext->operands[1];
2051
16.2k
  }
2052
2053
16.5k
  if (rm == 0 && supports_single_op && src == dst) {
2054
893
    ext->op_count = 1;
2055
893
    op0->reg = M68K_REG_FP0 + dst;
2056
893
    return;
2057
893
  }
2058
2059
15.6k
  if (rm == 1) {
2060
8.21k
    switch (src) {
2061
1.65k
      case 0x00 :
2062
1.65k
        ext->op_size.cpu_size = M68K_CPU_SIZE_LONG;
2063
1.65k
        get_ea_mode_op(info, op0, info->ir, 4);
2064
1.65k
        break;
2065
2066
948
      case 0x06 :
2067
948
        ext->op_size.cpu_size = M68K_CPU_SIZE_BYTE;
2068
948
        get_ea_mode_op(info, op0, info->ir, 1);
2069
948
        break;
2070
2071
2.17k
      case 0x04 :
2072
2.17k
        ext->op_size.cpu_size = M68K_CPU_SIZE_WORD;
2073
2.17k
        get_ea_mode_op(info, op0, info->ir, 2);
2074
2.17k
        break;
2075
2076
919
      case 0x01 :
2077
919
        ext->op_size.type = M68K_SIZE_TYPE_FPU;
2078
919
        ext->op_size.fpu_size = M68K_FPU_SIZE_SINGLE;
2079
919
        get_ea_mode_op(info, op0, info->ir, 4);
2080
919
        op0->type = M68K_OP_FP_SINGLE;
2081
919
        break;
2082
2083
857
      case 0x05:
2084
857
        ext->op_size.type = M68K_SIZE_TYPE_FPU;
2085
857
        ext->op_size.fpu_size = M68K_FPU_SIZE_DOUBLE;
2086
857
        get_ea_mode_op(info, op0, info->ir, 8);
2087
857
        op0->type = M68K_OP_FP_DOUBLE;
2088
857
        break;
2089
2090
1.66k
      default :
2091
1.66k
        ext->op_size.type = M68K_SIZE_TYPE_FPU;
2092
1.66k
        ext->op_size.fpu_size = M68K_FPU_SIZE_EXTENDED;
2093
1.66k
        break;
2094
8.21k
    }
2095
8.21k
  } else {
2096
7.46k
    op0->reg = M68K_REG_FP0 + src;
2097
7.46k
  }
2098
2099
15.6k
  op1->reg = M68K_REG_FP0 + dst;
2100
15.6k
}
2101
2102
static void d68020_cprestore(m68k_info *info)
2103
1.82k
{
2104
1.82k
  cs_m68k* ext;
2105
1.82k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2106
2107
1.50k
  ext = build_init_op(info, M68K_INS_FRESTORE, 1, 0);
2108
1.50k
  get_ea_mode_op(info, &ext->operands[0], info->ir, 1);
2109
1.50k
}
2110
2111
static void d68020_cpsave(m68k_info *info)
2112
1.92k
{
2113
1.92k
  cs_m68k* ext;
2114
2115
1.92k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2116
2117
1.14k
  ext = build_init_op(info, M68K_INS_FSAVE, 1, 0);
2118
1.14k
  get_ea_mode_op(info, &ext->operands[0], info->ir, 1);
2119
1.14k
}
2120
2121
static void d68020_cpscc(m68k_info *info)
2122
1.90k
{
2123
1.90k
  cs_m68k* ext;
2124
2125
1.90k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2126
1.40k
  ext = build_init_op(info, M68K_INS_FSF, 1, 1);
2127
2128
  // these are all in row with the extension so just doing a add here is fine
2129
1.40k
  info->inst->Opcode += (read_imm_16(info) & 0x2f);
2130
2131
1.40k
  get_ea_mode_op(info, &ext->operands[0], info->ir, 1);
2132
1.40k
}
2133
2134
static void d68020_cptrapcc_0(m68k_info *info)
2135
325
{
2136
325
  uint32_t extension1;
2137
325
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2138
2139
159
  extension1 = read_imm_16(info);
2140
2141
159
  build_init_op(info, M68K_INS_FTRAPF, 0, 0);
2142
2143
  // these are all in row with the extension so just doing a add here is fine
2144
159
  info->inst->Opcode += (extension1 & 0x2f);
2145
159
}
2146
2147
static void d68020_cptrapcc_16(m68k_info *info)
2148
476
{
2149
476
  uint32_t extension1, extension2;
2150
476
  cs_m68k_op* op0;
2151
476
  cs_m68k* ext;
2152
2153
476
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2154
2155
245
  extension1 = read_imm_16(info);
2156
245
  extension2 = read_imm_16(info);
2157
2158
245
  ext = build_init_op(info, M68K_INS_FTRAPF, 1, 2);
2159
2160
  // these are all in row with the extension so just doing a add here is fine
2161
245
  info->inst->Opcode += (extension1 & 0x2f);
2162
2163
245
  op0 = &ext->operands[0];
2164
2165
245
  op0->address_mode = M68K_AM_IMMEDIATE;
2166
245
  op0->type = M68K_OP_IMM;
2167
245
  op0->imm = extension2;
2168
245
}
2169
2170
static void d68020_cptrapcc_32(m68k_info *info)
2171
674
{
2172
674
  uint32_t extension1, extension2;
2173
674
  cs_m68k* ext;
2174
674
  cs_m68k_op* op0;
2175
2176
674
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2177
2178
57
  extension1 = read_imm_16(info);
2179
57
  extension2 = read_imm_32(info);
2180
2181
57
  ext = build_init_op(info, M68K_INS_FTRAPF, 1, 2);
2182
2183
  // these are all in row with the extension so just doing a add here is fine
2184
57
  info->inst->Opcode += (extension1 & 0x2f);
2185
2186
57
  op0 = &ext->operands[0];
2187
2188
57
  op0->address_mode = M68K_AM_IMMEDIATE;
2189
57
  op0->type = M68K_OP_IMM;
2190
57
  op0->imm = extension2;
2191
57
}
2192
2193
static void d68040_cpush(m68k_info *info)
2194
2.79k
{
2195
2.79k
  LIMIT_CPU_TYPES(info, M68040_PLUS);
2196
2.21k
  build_cpush_cinv(info, M68K_INS_CPUSHL);
2197
2.21k
}
2198
2199
static void d68000_dbra(m68k_info *info)
2200
792
{
2201
792
  build_dbxx(info, M68K_INS_DBRA, 0, make_int_16(read_imm_16(info)));
2202
792
}
2203
2204
static void d68000_dbcc(m68k_info *info)
2205
1.35k
{
2206
1.35k
  build_dbcc(info, 0, make_int_16(read_imm_16(info)));
2207
1.35k
}
2208
2209
static void d68000_divs(m68k_info *info)
2210
1.72k
{
2211
1.72k
  build_er_1(info, M68K_INS_DIVS, 2);
2212
1.72k
}
2213
2214
static void d68000_divu(m68k_info *info)
2215
2.50k
{
2216
2.50k
  build_er_1(info, M68K_INS_DIVU, 2);
2217
2.50k
}
2218
2219
static void d68020_divl(m68k_info *info)
2220
1.13k
{
2221
1.13k
  uint32_t extension, insn_signed;
2222
1.13k
  cs_m68k* ext;
2223
1.13k
  cs_m68k_op* op0;
2224
1.13k
  cs_m68k_op* op1;
2225
1.13k
  uint32_t reg_0, reg_1;
2226
2227
1.13k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2228
2229
627
  extension = read_imm_16(info);
2230
627
  insn_signed = 0;
2231
2232
627
  if (BIT_B((extension)))
2233
76
    insn_signed = 1;
2234
2235
627
  ext = build_init_op(info, insn_signed ? M68K_INS_DIVS : M68K_INS_DIVU, 2, 4);
2236
2237
627
  op0 = &ext->operands[0];
2238
627
  op1 = &ext->operands[1];
2239
2240
627
  get_ea_mode_op(info, op0, info->ir, 4);
2241
2242
627
  reg_0 = extension & 7;
2243
627
  reg_1 = (extension >> 12) & 7;
2244
2245
627
  op1->address_mode = M68K_AM_NONE;
2246
627
  op1->type = M68K_OP_REG_PAIR;
2247
627
  op1->reg_pair.reg_0 = reg_0 + M68K_REG_D0;
2248
627
  op1->reg_pair.reg_1 = reg_1 + M68K_REG_D0;
2249
2250
627
  if ((reg_0 == reg_1) || !BIT_A(extension)) {
2251
547
    op1->type = M68K_OP_REG;
2252
547
    op1->reg = M68K_REG_D0 + reg_1;
2253
547
  }
2254
627
}
2255
2256
static void d68000_eor_8(m68k_info *info)
2257
856
{
2258
856
  build_re_1(info, M68K_INS_EOR, 1);
2259
856
}
2260
2261
static void d68000_eor_16(m68k_info *info)
2262
742
{
2263
742
  build_re_1(info, M68K_INS_EOR, 2);
2264
742
}
2265
2266
static void d68000_eor_32(m68k_info *info)
2267
2.20k
{
2268
2.20k
  build_re_1(info, M68K_INS_EOR, 4);
2269
2.20k
}
2270
2271
static void d68000_eori_8(m68k_info *info)
2272
602
{
2273
602
  build_imm_ea(info, M68K_INS_EORI, 1, read_imm_8(info));
2274
602
}
2275
2276
static void d68000_eori_16(m68k_info *info)
2277
308
{
2278
308
  build_imm_ea(info, M68K_INS_EORI, 2, read_imm_16(info));
2279
308
}
2280
2281
static void d68000_eori_32(m68k_info *info)
2282
787
{
2283
787
  build_imm_ea(info, M68K_INS_EORI, 4, read_imm_32(info));
2284
787
}
2285
2286
static void d68000_eori_to_ccr(m68k_info *info)
2287
57
{
2288
57
  build_imm_special_reg(info, M68K_INS_EORI, read_imm_8(info), 1, M68K_REG_CCR);
2289
57
}
2290
2291
static void d68000_eori_to_sr(m68k_info *info)
2292
512
{
2293
512
  build_imm_special_reg(info, M68K_INS_EORI, read_imm_16(info), 2, M68K_REG_SR);
2294
512
}
2295
2296
static void d68000_exg_dd(m68k_info *info)
2297
208
{
2298
208
  build_r(info, M68K_INS_EXG, 4);
2299
208
}
2300
2301
static void d68000_exg_aa(m68k_info *info)
2302
404
{
2303
404
  cs_m68k_op* op0;
2304
404
  cs_m68k_op* op1;
2305
404
  cs_m68k* ext = build_init_op(info, M68K_INS_EXG, 2, 4);
2306
2307
404
  op0 = &ext->operands[0];
2308
404
  op1 = &ext->operands[1];
2309
2310
404
  op0->address_mode = M68K_AM_NONE;
2311
404
  op0->reg = M68K_REG_A0 + ((info->ir >> 9) & 7);
2312
2313
404
  op1->address_mode = M68K_AM_NONE;
2314
404
  op1->reg = M68K_REG_A0 + (info->ir & 7);
2315
404
}
2316
2317
static void d68000_exg_da(m68k_info *info)
2318
762
{
2319
762
  cs_m68k_op* op0;
2320
762
  cs_m68k_op* op1;
2321
762
  cs_m68k* ext = build_init_op(info, M68K_INS_EXG, 2, 4);
2322
2323
762
  op0 = &ext->operands[0];
2324
762
  op1 = &ext->operands[1];
2325
2326
762
  op0->address_mode = M68K_AM_NONE;
2327
762
  op0->reg = M68K_REG_D0 + ((info->ir >> 9) & 7);
2328
2329
762
  op1->address_mode = M68K_AM_NONE;
2330
762
  op1->reg = M68K_REG_A0 + (info->ir & 7);
2331
762
}
2332
2333
static void d68000_ext_16(m68k_info *info)
2334
244
{
2335
244
  build_d(info, M68K_INS_EXT, 2);
2336
244
}
2337
2338
static void d68000_ext_32(m68k_info *info)
2339
182
{
2340
182
  build_d(info, M68K_INS_EXT, 4);
2341
182
}
2342
2343
static void d68020_extb_32(m68k_info *info)
2344
261
{
2345
261
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2346
170
  build_d(info, M68K_INS_EXTB, 4);
2347
170
}
2348
2349
static void d68000_jmp(m68k_info *info)
2350
457
{
2351
457
  cs_m68k* ext = build_init_op(info, M68K_INS_JMP, 1, 0);
2352
457
  set_insn_group(info, M68K_GRP_JUMP);
2353
457
  get_ea_mode_op(info, &ext->operands[0], info->ir, 4);
2354
457
}
2355
2356
static void d68000_jsr(m68k_info *info)
2357
726
{
2358
726
  cs_m68k* ext = build_init_op(info, M68K_INS_JSR, 1, 0);
2359
726
  set_insn_group(info, M68K_GRP_JUMP);
2360
726
  get_ea_mode_op(info, &ext->operands[0], info->ir, 4);
2361
726
}
2362
2363
static void d68000_lea(m68k_info *info)
2364
1.03k
{
2365
1.03k
  build_ea_a(info, M68K_INS_LEA, 4);
2366
1.03k
}
2367
2368
static void d68000_link_16(m68k_info *info)
2369
265
{
2370
265
  build_link(info, read_imm_16(info), 2);
2371
265
}
2372
2373
static void d68020_link_32(m68k_info *info)
2374
476
{
2375
476
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2376
130
  build_link(info, read_imm_32(info), 4);
2377
130
}
2378
2379
static void d68000_lsr_s_8(m68k_info *info)
2380
275
{
2381
275
  build_3bit_d(info, M68K_INS_LSR, 1);
2382
275
}
2383
2384
static void d68000_lsr_s_16(m68k_info *info)
2385
313
{
2386
313
  build_3bit_d(info, M68K_INS_LSR, 2);
2387
313
}
2388
2389
static void d68000_lsr_s_32(m68k_info *info)
2390
424
{
2391
424
  build_3bit_d(info, M68K_INS_LSR, 4);
2392
424
}
2393
2394
static void d68000_lsr_r_8(m68k_info *info)
2395
152
{
2396
152
  build_r(info, M68K_INS_LSR, 1);
2397
152
}
2398
2399
static void d68000_lsr_r_16(m68k_info *info)
2400
171
{
2401
171
  build_r(info, M68K_INS_LSR, 2);
2402
171
}
2403
2404
static void d68000_lsr_r_32(m68k_info *info)
2405
340
{
2406
340
  build_r(info, M68K_INS_LSR, 4);
2407
340
}
2408
2409
static void d68000_lsr_ea(m68k_info *info)
2410
715
{
2411
715
  build_ea(info, M68K_INS_LSR, 2);
2412
715
}
2413
2414
static void d68000_lsl_s_8(m68k_info *info)
2415
286
{
2416
286
  build_3bit_d(info, M68K_INS_LSL, 1);
2417
286
}
2418
2419
static void d68000_lsl_s_16(m68k_info *info)
2420
614
{
2421
614
  build_3bit_d(info, M68K_INS_LSL, 2);
2422
614
}
2423
2424
static void d68000_lsl_s_32(m68k_info *info)
2425
380
{
2426
380
  build_3bit_d(info, M68K_INS_LSL, 4);
2427
380
}
2428
2429
static void d68000_lsl_r_8(m68k_info *info)
2430
314
{
2431
314
  build_r(info, M68K_INS_LSL, 1);
2432
314
}
2433
2434
static void d68000_lsl_r_16(m68k_info *info)
2435
672
{
2436
672
  build_r(info, M68K_INS_LSL, 2);
2437
672
}
2438
2439
static void d68000_lsl_r_32(m68k_info *info)
2440
527
{
2441
527
  build_r(info, M68K_INS_LSL, 4);
2442
527
}
2443
2444
static void d68000_lsl_ea(m68k_info *info)
2445
593
{
2446
593
  build_ea(info, M68K_INS_LSL, 2);
2447
593
}
2448
2449
static void d68000_move_8(m68k_info *info)
2450
13.3k
{
2451
13.3k
  build_ea_ea(info, M68K_INS_MOVE, 1);
2452
13.3k
}
2453
2454
static void d68000_move_16(m68k_info *info)
2455
14.5k
{
2456
14.5k
  build_ea_ea(info, M68K_INS_MOVE, 2);
2457
14.5k
}
2458
2459
static void d68000_move_32(m68k_info *info)
2460
19.0k
{
2461
19.0k
  build_ea_ea(info, M68K_INS_MOVE, 4);
2462
19.0k
}
2463
2464
static void d68000_movea_16(m68k_info *info)
2465
2.02k
{
2466
2.02k
  build_ea_a(info, M68K_INS_MOVEA, 2);
2467
2.02k
}
2468
2469
static void d68000_movea_32(m68k_info *info)
2470
2.81k
{
2471
2.81k
  build_ea_a(info, M68K_INS_MOVEA, 4);
2472
2.81k
}
2473
2474
static void d68000_move_to_ccr(m68k_info *info)
2475
674
{
2476
674
  cs_m68k_op* op0;
2477
674
  cs_m68k_op* op1;
2478
674
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVE, 2, 2);
2479
2480
674
  op0 = &ext->operands[0];
2481
674
  op1 = &ext->operands[1];
2482
2483
674
  get_ea_mode_op(info, op0, info->ir, 1);
2484
2485
674
  op1->address_mode = M68K_AM_NONE;
2486
674
  op1->reg = M68K_REG_CCR;
2487
674
}
2488
2489
static void d68010_move_fr_ccr(m68k_info *info)
2490
821
{
2491
821
  cs_m68k_op* op0;
2492
821
  cs_m68k_op* op1;
2493
821
  cs_m68k* ext;
2494
2495
821
  LIMIT_CPU_TYPES(info, M68010_PLUS);
2496
2497
603
  ext = build_init_op(info, M68K_INS_MOVE, 2, 2);
2498
2499
603
  op0 = &ext->operands[0];
2500
603
  op1 = &ext->operands[1];
2501
2502
603
  op0->address_mode = M68K_AM_NONE;
2503
603
  op0->reg = M68K_REG_CCR;
2504
2505
603
  get_ea_mode_op(info, op1, info->ir, 1);
2506
603
}
2507
2508
static void d68000_move_fr_sr(m68k_info *info)
2509
810
{
2510
810
  cs_m68k_op* op0;
2511
810
  cs_m68k_op* op1;
2512
810
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVE, 2, 2);
2513
2514
810
  op0 = &ext->operands[0];
2515
810
  op1 = &ext->operands[1];
2516
2517
810
  op0->address_mode = M68K_AM_NONE;
2518
810
  op0->reg = M68K_REG_SR;
2519
2520
810
  get_ea_mode_op(info, op1, info->ir, 2);
2521
810
}
2522
2523
static void d68000_move_to_sr(m68k_info *info)
2524
680
{
2525
680
  cs_m68k_op* op0;
2526
680
  cs_m68k_op* op1;
2527
680
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVE, 2, 2);
2528
2529
680
  op0 = &ext->operands[0];
2530
680
  op1 = &ext->operands[1];
2531
2532
680
  get_ea_mode_op(info, op0, info->ir, 2);
2533
2534
680
  op1->address_mode = M68K_AM_NONE;
2535
680
  op1->reg = M68K_REG_SR;
2536
680
}
2537
2538
static void d68000_move_fr_usp(m68k_info *info)
2539
514
{
2540
514
  cs_m68k_op* op0;
2541
514
  cs_m68k_op* op1;
2542
514
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVE, 2, 0);
2543
2544
514
  op0 = &ext->operands[0];
2545
514
  op1 = &ext->operands[1];
2546
2547
514
  op0->address_mode = M68K_AM_NONE;
2548
514
  op0->reg = M68K_REG_USP;
2549
2550
514
  op1->address_mode = M68K_AM_NONE;
2551
514
  op1->reg = M68K_REG_A0 + (info->ir & 7);
2552
514
}
2553
2554
static void d68000_move_to_usp(m68k_info *info)
2555
286
{
2556
286
  cs_m68k_op* op0;
2557
286
  cs_m68k_op* op1;
2558
286
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVE, 2, 0);
2559
2560
286
  op0 = &ext->operands[0];
2561
286
  op1 = &ext->operands[1];
2562
2563
286
  op0->address_mode = M68K_AM_NONE;
2564
286
  op0->reg = M68K_REG_A0 + (info->ir & 7);
2565
2566
286
  op1->address_mode = M68K_AM_NONE;
2567
286
  op1->reg = M68K_REG_USP;
2568
286
}
2569
2570
static void d68010_movec(m68k_info *info)
2571
8.06k
{
2572
8.06k
  uint32_t extension;
2573
8.06k
  m68k_reg reg;
2574
8.06k
  cs_m68k* ext;
2575
8.06k
  cs_m68k_op* op0;
2576
8.06k
  cs_m68k_op* op1;
2577
2578
2579
8.06k
  LIMIT_CPU_TYPES(info, M68010_PLUS);
2580
2581
7.56k
  extension = read_imm_16(info);
2582
7.56k
  reg = M68K_REG_INVALID;
2583
2584
7.56k
  ext = build_init_op(info, M68K_INS_MOVEC, 2, 0);
2585
2586
7.56k
  op0 = &ext->operands[0];
2587
7.56k
  op1 = &ext->operands[1];
2588
2589
7.56k
  switch (extension & 0xfff) {
2590
381
    case 0x000: reg = M68K_REG_SFC; break;
2591
66
    case 0x001: reg = M68K_REG_DFC; break;
2592
66
    case 0x800: reg = M68K_REG_USP; break;
2593
157
    case 0x801: reg = M68K_REG_VBR; break;
2594
1.30k
    case 0x002: reg = M68K_REG_CACR; break;
2595
219
    case 0x802: reg = M68K_REG_CAAR; break;
2596
397
    case 0x803: reg = M68K_REG_MSP; break;
2597
352
    case 0x804: reg = M68K_REG_ISP; break;
2598
135
    case 0x003: reg = M68K_REG_TC; break;
2599
880
    case 0x004: reg = M68K_REG_ITT0; break;
2600
489
    case 0x005: reg = M68K_REG_ITT1; break;
2601
134
    case 0x006: reg = M68K_REG_DTT0; break;
2602
372
    case 0x007: reg = M68K_REG_DTT1; break;
2603
514
    case 0x805: reg = M68K_REG_MMUSR; break;
2604
259
    case 0x806: reg = M68K_REG_URP; break;
2605
269
    case 0x807: reg = M68K_REG_SRP; break;
2606
7.56k
  }
2607
2608
7.56k
  if (BIT_0(info->ir)) {
2609
1.10k
    op0->reg = (BIT_F(extension) ? M68K_REG_A0 : M68K_REG_D0) + ((extension >> 12) & 7);
2610
1.10k
    op1->reg = reg;
2611
6.45k
  } else {
2612
6.45k
    op0->reg = reg;
2613
6.45k
    op1->reg = (BIT_F(extension) ? M68K_REG_A0 : M68K_REG_D0) + ((extension >> 12) & 7);
2614
6.45k
  }
2615
7.56k
}
2616
2617
static void d68000_movem_pd_16(m68k_info *info)
2618
551
{
2619
551
  build_movem_re(info, M68K_INS_MOVEM, 2);
2620
551
}
2621
2622
static void d68000_movem_pd_32(m68k_info *info)
2623
421
{
2624
421
  build_movem_re(info, M68K_INS_MOVEM, 4);
2625
421
}
2626
2627
static void d68000_movem_er_16(m68k_info *info)
2628
634
{
2629
634
  build_movem_er(info, M68K_INS_MOVEM, 2);
2630
634
}
2631
2632
static void d68000_movem_er_32(m68k_info *info)
2633
631
{
2634
631
  build_movem_er(info, M68K_INS_MOVEM, 4);
2635
631
}
2636
2637
static void d68000_movem_re_16(m68k_info *info)
2638
741
{
2639
741
  build_movem_re(info, M68K_INS_MOVEM, 2);
2640
741
}
2641
2642
static void d68000_movem_re_32(m68k_info *info)
2643
1.08k
{
2644
1.08k
  build_movem_re(info, M68K_INS_MOVEM, 4);
2645
1.08k
}
2646
2647
static void d68000_movep_re_16(m68k_info *info)
2648
807
{
2649
807
  build_movep_re(info, 2);
2650
807
}
2651
2652
static void d68000_movep_re_32(m68k_info *info)
2653
610
{
2654
610
  build_movep_re(info, 4);
2655
610
}
2656
2657
static void d68000_movep_er_16(m68k_info *info)
2658
1.34k
{
2659
1.34k
  build_movep_er(info, 2);
2660
1.34k
}
2661
2662
static void d68000_movep_er_32(m68k_info *info)
2663
1.23k
{
2664
1.23k
  build_movep_er(info, 4);
2665
1.23k
}
2666
2667
static void d68010_moves_8(m68k_info *info)
2668
528
{
2669
528
  LIMIT_CPU_TYPES(info, M68010_PLUS);
2670
372
  build_moves(info, 1);
2671
372
}
2672
2673
static void d68010_moves_16(m68k_info *info)
2674
493
{
2675
  //uint32_t extension;
2676
493
  LIMIT_CPU_TYPES(info, M68010_PLUS);
2677
378
  build_moves(info, 2);
2678
378
}
2679
2680
static void d68010_moves_32(m68k_info *info)
2681
668
{
2682
668
  LIMIT_CPU_TYPES(info, M68010_PLUS);
2683
509
  build_moves(info, 4);
2684
509
}
2685
2686
static void d68000_moveq(m68k_info *info)
2687
12.0k
{
2688
12.0k
  cs_m68k_op* op0;
2689
12.0k
  cs_m68k_op* op1;
2690
2691
12.0k
  cs_m68k* ext = build_init_op(info, M68K_INS_MOVEQ, 2, 0);
2692
2693
12.0k
  op0 = &ext->operands[0];
2694
12.0k
  op1 = &ext->operands[1];
2695
2696
12.0k
  op0->type = M68K_OP_IMM;
2697
12.0k
  op0->address_mode = M68K_AM_IMMEDIATE;
2698
12.0k
  op0->imm = (info->ir & 0xff);
2699
2700
12.0k
  op1->address_mode = M68K_AM_REG_DIRECT_DATA;
2701
12.0k
  op1->reg = M68K_REG_D0 + ((info->ir >> 9) & 7);
2702
12.0k
}
2703
2704
static void d68040_move16_pi_pi(m68k_info *info)
2705
354
{
2706
354
  int data[] = { info->ir & 7, (read_imm_16(info) >> 12) & 7 };
2707
354
  int modes[] = { M68K_AM_REGI_ADDR_POST_INC, M68K_AM_REGI_ADDR_POST_INC };
2708
2709
354
  LIMIT_CPU_TYPES(info, M68040_PLUS);
2710
2711
168
  build_move16(info, data, modes);
2712
168
}
2713
2714
static void d68040_move16_pi_al(m68k_info *info)
2715
489
{
2716
489
  int data[] = { info->ir & 7, read_imm_32(info) };
2717
489
  int modes[] = { M68K_AM_REGI_ADDR_POST_INC, M68K_AM_ABSOLUTE_DATA_LONG };
2718
2719
489
  LIMIT_CPU_TYPES(info, M68040_PLUS);
2720
2721
304
  build_move16(info, data, modes);
2722
304
}
2723
2724
static void d68040_move16_al_pi(m68k_info *info)
2725
471
{
2726
471
  int data[] = { read_imm_32(info), info->ir & 7 };
2727
471
  int modes[] = { M68K_AM_ABSOLUTE_DATA_LONG, M68K_AM_REGI_ADDR_POST_INC };
2728
2729
471
  LIMIT_CPU_TYPES(info, M68040_PLUS);
2730
2731
168
  build_move16(info, data, modes);
2732
168
}
2733
2734
static void d68040_move16_ai_al(m68k_info *info)
2735
500
{
2736
500
  int data[] = { info->ir & 7, read_imm_32(info) };
2737
500
  int modes[] = { M68K_AM_REG_DIRECT_ADDR, M68K_AM_ABSOLUTE_DATA_LONG };
2738
2739
500
  LIMIT_CPU_TYPES(info, M68040_PLUS);
2740
2741
351
  build_move16(info, data, modes);
2742
351
}
2743
2744
static void d68040_move16_al_ai(m68k_info *info)
2745
556
{
2746
556
  int data[] = { read_imm_32(info), info->ir & 7 };
2747
556
  int modes[] = { M68K_AM_ABSOLUTE_DATA_LONG, M68K_AM_REG_DIRECT_ADDR };
2748
2749
556
  LIMIT_CPU_TYPES(info, M68040_PLUS);
2750
2751
386
  build_move16(info, data, modes);
2752
386
}
2753
2754
static void d68000_muls(m68k_info *info)
2755
1.95k
{
2756
1.95k
  build_er_1(info, M68K_INS_MULS, 2);
2757
1.95k
}
2758
2759
static void d68000_mulu(m68k_info *info)
2760
2.23k
{
2761
2.23k
  build_er_1(info, M68K_INS_MULU, 2);
2762
2.23k
}
2763
2764
static void d68020_mull(m68k_info *info)
2765
647
{
2766
647
  uint32_t extension, insn_signed;
2767
647
  cs_m68k* ext;
2768
647
  cs_m68k_op* op0;
2769
647
  cs_m68k_op* op1;
2770
647
  uint32_t reg_0, reg_1;
2771
2772
647
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2773
2774
386
  extension = read_imm_16(info);
2775
386
  insn_signed = 0;
2776
2777
386
  if (BIT_B((extension)))
2778
139
    insn_signed = 1;
2779
2780
386
  ext = build_init_op(info, insn_signed ? M68K_INS_MULS : M68K_INS_MULU, 2, 4);
2781
2782
386
  op0 = &ext->operands[0];
2783
386
  op1 = &ext->operands[1];
2784
2785
386
  get_ea_mode_op(info, op0, info->ir, 4);
2786
2787
386
  reg_0 = extension & 7;
2788
386
  reg_1 = (extension >> 12) & 7;
2789
2790
386
  op1->address_mode = M68K_AM_NONE;
2791
386
  op1->type = M68K_OP_REG_PAIR;
2792
386
  op1->reg_pair.reg_0 = reg_0 + M68K_REG_D0;
2793
386
  op1->reg_pair.reg_1 = reg_1 + M68K_REG_D0;
2794
2795
386
  if (!BIT_A(extension)) {
2796
248
    op1->type = M68K_OP_REG;
2797
248
    op1->reg = M68K_REG_D0 + reg_1;
2798
248
  }
2799
386
}
2800
2801
static void d68000_nbcd(m68k_info *info)
2802
695
{
2803
695
  build_ea(info, M68K_INS_NBCD, 1);
2804
695
}
2805
2806
static void d68000_neg_8(m68k_info *info)
2807
824
{
2808
824
  build_ea(info, M68K_INS_NEG, 1);
2809
824
}
2810
2811
static void d68000_neg_16(m68k_info *info)
2812
777
{
2813
777
  build_ea(info, M68K_INS_NEG, 2);
2814
777
}
2815
2816
static void d68000_neg_32(m68k_info *info)
2817
468
{
2818
468
  build_ea(info, M68K_INS_NEG, 4);
2819
468
}
2820
2821
static void d68000_negx_8(m68k_info *info)
2822
577
{
2823
577
  build_ea(info, M68K_INS_NEGX, 1);
2824
577
}
2825
2826
static void d68000_negx_16(m68k_info *info)
2827
1.01k
{
2828
1.01k
  build_ea(info, M68K_INS_NEGX, 2);
2829
1.01k
}
2830
2831
static void d68000_negx_32(m68k_info *info)
2832
1.72k
{
2833
1.72k
  build_ea(info, M68K_INS_NEGX, 4);
2834
1.72k
}
2835
2836
static void d68000_nop(m68k_info *info)
2837
235
{
2838
235
  MCInst_setOpcode(info->inst, M68K_INS_NOP);
2839
235
}
2840
2841
static void d68000_not_8(m68k_info *info)
2842
264
{
2843
264
  build_ea(info, M68K_INS_NOT, 1);
2844
264
}
2845
2846
static void d68000_not_16(m68k_info *info)
2847
877
{
2848
877
  build_ea(info, M68K_INS_NOT, 2);
2849
877
}
2850
2851
static void d68000_not_32(m68k_info *info)
2852
441
{
2853
441
  build_ea(info, M68K_INS_NOT, 4);
2854
441
}
2855
2856
static void d68000_or_er_8(m68k_info *info)
2857
1.86k
{
2858
1.86k
  build_er_1(info, M68K_INS_OR, 1);
2859
1.86k
}
2860
2861
static void d68000_or_er_16(m68k_info *info)
2862
945
{
2863
945
  build_er_1(info, M68K_INS_OR, 2);
2864
945
}
2865
2866
static void d68000_or_er_32(m68k_info *info)
2867
1.78k
{
2868
1.78k
  build_er_1(info, M68K_INS_OR, 4);
2869
1.78k
}
2870
2871
static void d68000_or_re_8(m68k_info *info)
2872
1.19k
{
2873
1.19k
  build_re_1(info, M68K_INS_OR, 1);
2874
1.19k
}
2875
2876
static void d68000_or_re_16(m68k_info *info)
2877
1.13k
{
2878
1.13k
  build_re_1(info, M68K_INS_OR, 2);
2879
1.13k
}
2880
2881
static void d68000_or_re_32(m68k_info *info)
2882
1.19k
{
2883
1.19k
  build_re_1(info, M68K_INS_OR, 4);
2884
1.19k
}
2885
2886
static void d68000_ori_8(m68k_info *info)
2887
20.4k
{
2888
20.4k
  build_imm_ea(info, M68K_INS_ORI, 1, read_imm_8(info));
2889
20.4k
}
2890
2891
static void d68000_ori_16(m68k_info *info)
2892
2.87k
{
2893
2.87k
  build_imm_ea(info, M68K_INS_ORI, 2, read_imm_16(info));
2894
2.87k
}
2895
2896
static void d68000_ori_32(m68k_info *info)
2897
2.12k
{
2898
2.12k
  build_imm_ea(info, M68K_INS_ORI, 4, read_imm_32(info));
2899
2.12k
}
2900
2901
static void d68000_ori_to_ccr(m68k_info *info)
2902
97
{
2903
97
  build_imm_special_reg(info, M68K_INS_ORI, read_imm_8(info), 1, M68K_REG_CCR);
2904
97
}
2905
2906
static void d68000_ori_to_sr(m68k_info *info)
2907
511
{
2908
511
  build_imm_special_reg(info, M68K_INS_ORI, read_imm_16(info), 2, M68K_REG_SR);
2909
511
}
2910
2911
static void d68020_pack_rr(m68k_info *info)
2912
2.20k
{
2913
2.20k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2914
810
  build_rr(info, M68K_INS_PACK, 0, read_imm_16(info));
2915
810
}
2916
2917
static void d68020_pack_mm(m68k_info *info)
2918
1.53k
{
2919
1.53k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
2920
877
  build_mm(info, M68K_INS_PACK, 0, read_imm_16(info));
2921
877
}
2922
2923
static void d68000_pea(m68k_info *info)
2924
358
{
2925
358
  build_ea(info, M68K_INS_PEA, 4);
2926
358
}
2927
2928
static void d68000_reset(m68k_info *info)
2929
227
{
2930
227
  MCInst_setOpcode(info->inst, M68K_INS_RESET);
2931
227
}
2932
2933
static void d68000_ror_s_8(m68k_info *info)
2934
390
{
2935
390
  build_3bit_d(info, M68K_INS_ROR, 1);
2936
390
}
2937
2938
static void d68000_ror_s_16(m68k_info *info)
2939
194
{
2940
194
  build_3bit_d(info, M68K_INS_ROR, 2);
2941
194
}
2942
2943
static void d68000_ror_s_32(m68k_info *info)
2944
715
{
2945
715
  build_3bit_d(info, M68K_INS_ROR, 4);
2946
715
}
2947
2948
static void d68000_ror_r_8(m68k_info *info)
2949
816
{
2950
816
  build_r(info, M68K_INS_ROR, 1);
2951
816
}
2952
2953
static void d68000_ror_r_16(m68k_info *info)
2954
319
{
2955
319
  build_r(info, M68K_INS_ROR, 2);
2956
319
}
2957
2958
static void d68000_ror_r_32(m68k_info *info)
2959
659
{
2960
659
  build_r(info, M68K_INS_ROR, 4);
2961
659
}
2962
2963
static void d68000_ror_ea(m68k_info *info)
2964
848
{
2965
848
  build_ea(info, M68K_INS_ROR, 2);
2966
848
}
2967
2968
static void d68000_rol_s_8(m68k_info *info)
2969
274
{
2970
274
  build_3bit_d(info, M68K_INS_ROL, 1);
2971
274
}
2972
2973
static void d68000_rol_s_16(m68k_info *info)
2974
902
{
2975
902
  build_3bit_d(info, M68K_INS_ROL, 2);
2976
902
}
2977
2978
static void d68000_rol_s_32(m68k_info *info)
2979
412
{
2980
412
  build_3bit_d(info, M68K_INS_ROL, 4);
2981
412
}
2982
2983
static void d68000_rol_r_8(m68k_info *info)
2984
331
{
2985
331
  build_r(info, M68K_INS_ROL, 1);
2986
331
}
2987
2988
static void d68000_rol_r_16(m68k_info *info)
2989
430
{
2990
430
  build_r(info, M68K_INS_ROL, 2);
2991
430
}
2992
2993
static void d68000_rol_r_32(m68k_info *info)
2994
156
{
2995
156
  build_r(info, M68K_INS_ROL, 4);
2996
156
}
2997
2998
static void d68000_rol_ea(m68k_info *info)
2999
558
{
3000
558
  build_ea(info, M68K_INS_ROL, 2);
3001
558
}
3002
3003
static void d68000_roxr_s_8(m68k_info *info)
3004
743
{
3005
743
  build_3bit_d(info, M68K_INS_ROXR, 1);
3006
743
}
3007
3008
static void d68000_roxr_s_16(m68k_info *info)
3009
353
{
3010
353
  build_3bit_d(info, M68K_INS_ROXR, 2);
3011
353
}
3012
3013
static void d68000_roxr_s_32(m68k_info *info)
3014
379
{
3015
379
  build_3bit_d(info, M68K_INS_ROXR, 4);
3016
379
}
3017
3018
static void d68000_roxr_r_8(m68k_info *info)
3019
274
{
3020
274
  build_3bit_d(info, M68K_INS_ROXR, 4);
3021
274
}
3022
3023
static void d68000_roxr_r_16(m68k_info *info)
3024
405
{
3025
405
  build_r(info, M68K_INS_ROXR, 2);
3026
405
}
3027
3028
static void d68000_roxr_r_32(m68k_info *info)
3029
344
{
3030
344
  build_r(info, M68K_INS_ROXR, 4);
3031
344
}
3032
3033
static void d68000_roxr_ea(m68k_info *info)
3034
1.38k
{
3035
1.38k
  build_ea(info, M68K_INS_ROXR, 2);
3036
1.38k
}
3037
3038
static void d68000_roxl_s_8(m68k_info *info)
3039
905
{
3040
905
  build_3bit_d(info, M68K_INS_ROXL, 1);
3041
905
}
3042
3043
static void d68000_roxl_s_16(m68k_info *info)
3044
555
{
3045
555
  build_3bit_d(info, M68K_INS_ROXL, 2);
3046
555
}
3047
3048
static void d68000_roxl_s_32(m68k_info *info)
3049
294
{
3050
294
  build_3bit_d(info, M68K_INS_ROXL, 4);
3051
294
}
3052
3053
static void d68000_roxl_r_8(m68k_info *info)
3054
211
{
3055
211
  build_r(info, M68K_INS_ROXL, 1);
3056
211
}
3057
3058
static void d68000_roxl_r_16(m68k_info *info)
3059
215
{
3060
215
  build_r(info, M68K_INS_ROXL, 2);
3061
215
}
3062
3063
static void d68000_roxl_r_32(m68k_info *info)
3064
287
{
3065
287
  build_r(info, M68K_INS_ROXL, 4);
3066
287
}
3067
3068
static void d68000_roxl_ea(m68k_info *info)
3069
1.22k
{
3070
1.22k
  build_ea(info, M68K_INS_ROXL, 2);
3071
1.22k
}
3072
3073
static void d68010_rtd(m68k_info *info)
3074
604
{
3075
604
  set_insn_group(info, M68K_GRP_RET);
3076
604
  LIMIT_CPU_TYPES(info, M68010_PLUS);
3077
370
  build_absolute_jump_with_immediate(info, M68K_INS_RTD, 0, read_imm_16(info));
3078
370
}
3079
3080
static void d68000_rte(m68k_info *info)
3081
307
{
3082
307
  set_insn_group(info, M68K_GRP_IRET);
3083
307
  MCInst_setOpcode(info->inst, M68K_INS_RTE);
3084
307
}
3085
3086
static void d68020_rtm(m68k_info *info)
3087
215
{
3088
215
  cs_m68k* ext;
3089
215
  cs_m68k_op* op;
3090
3091
215
  set_insn_group(info, M68K_GRP_RET);
3092
3093
215
  LIMIT_CPU_TYPES(info, M68020_ONLY);
3094
3095
0
  build_absolute_jump_with_immediate(info, M68K_INS_RTM, 0, 0);
3096
3097
0
  ext = &info->extension;
3098
0
  op = &ext->operands[0];
3099
3100
0
  op->address_mode = M68K_AM_NONE;
3101
0
  op->type = M68K_OP_REG;
3102
3103
0
  if (BIT_3(info->ir)) {
3104
0
    op->reg = M68K_REG_A0 + (info->ir & 7);
3105
0
  } else {
3106
0
    op->reg = M68K_REG_D0 + (info->ir & 7);
3107
0
  }
3108
0
}
3109
3110
static void d68000_rtr(m68k_info *info)
3111
103
{
3112
103
  set_insn_group(info, M68K_GRP_RET);
3113
103
  MCInst_setOpcode(info->inst, M68K_INS_RTR);
3114
103
}
3115
3116
static void d68000_rts(m68k_info *info)
3117
78
{
3118
78
  set_insn_group(info, M68K_GRP_RET);
3119
78
  MCInst_setOpcode(info->inst, M68K_INS_RTS);
3120
78
}
3121
3122
static void d68000_sbcd_rr(m68k_info *info)
3123
529
{
3124
529
  build_rr(info, M68K_INS_SBCD, 1, 0);
3125
529
}
3126
3127
static void d68000_sbcd_mm(m68k_info *info)
3128
1.13k
{
3129
1.13k
  build_mm(info, M68K_INS_SBCD, 0, read_imm_16(info));
3130
1.13k
}
3131
3132
static void d68000_scc(m68k_info *info)
3133
2.99k
{
3134
2.99k
  cs_m68k* ext = build_init_op(info, s_scc_lut[(info->ir >> 8) & 0xf], 1, 1);
3135
2.99k
  get_ea_mode_op(info, &ext->operands[0], info->ir, 1);
3136
2.99k
}
3137
3138
static void d68000_stop(m68k_info *info)
3139
160
{
3140
160
  build_absolute_jump_with_immediate(info, M68K_INS_STOP, 0, read_imm_16(info));
3141
160
}
3142
3143
static void d68000_sub_er_8(m68k_info *info)
3144
1.46k
{
3145
1.46k
  build_er_1(info, M68K_INS_SUB, 1);
3146
1.46k
}
3147
3148
static void d68000_sub_er_16(m68k_info *info)
3149
1.32k
{
3150
1.32k
  build_er_1(info, M68K_INS_SUB, 2);
3151
1.32k
}
3152
3153
static void d68000_sub_er_32(m68k_info *info)
3154
3.56k
{
3155
3.56k
  build_er_1(info, M68K_INS_SUB, 4);
3156
3.56k
}
3157
3158
static void d68000_sub_re_8(m68k_info *info)
3159
755
{
3160
755
  build_re_1(info, M68K_INS_SUB, 1);
3161
755
}
3162
3163
static void d68000_sub_re_16(m68k_info *info)
3164
1.55k
{
3165
1.55k
  build_re_1(info, M68K_INS_SUB, 2);
3166
1.55k
}
3167
3168
static void d68000_sub_re_32(m68k_info *info)
3169
3.77k
{
3170
3.77k
  build_re_1(info, M68K_INS_SUB, 4);
3171
3.77k
}
3172
3173
static void d68000_suba_16(m68k_info *info)
3174
1.06k
{
3175
1.06k
  build_ea_a(info, M68K_INS_SUBA, 2);
3176
1.06k
}
3177
3178
static void d68000_suba_32(m68k_info *info)
3179
1.56k
{
3180
1.56k
  build_ea_a(info, M68K_INS_SUBA, 4);
3181
1.56k
}
3182
3183
static void d68000_subi_8(m68k_info *info)
3184
989
{
3185
989
  build_imm_ea(info, M68K_INS_SUBI, 1, read_imm_8(info));
3186
989
}
3187
3188
static void d68000_subi_16(m68k_info *info)
3189
1.00k
{
3190
1.00k
  build_imm_ea(info, M68K_INS_SUBI, 2, read_imm_16(info));
3191
1.00k
}
3192
3193
static void d68000_subi_32(m68k_info *info)
3194
449
{
3195
449
  build_imm_ea(info, M68K_INS_SUBI, 4, read_imm_32(info));
3196
449
}
3197
3198
static void d68000_subq_8(m68k_info *info)
3199
1.03k
{
3200
1.03k
  build_3bit_ea(info, M68K_INS_SUBQ, 1);
3201
1.03k
}
3202
3203
static void d68000_subq_16(m68k_info *info)
3204
6.65k
{
3205
6.65k
  build_3bit_ea(info, M68K_INS_SUBQ, 2);
3206
6.65k
}
3207
3208
static void d68000_subq_32(m68k_info *info)
3209
880
{
3210
880
  build_3bit_ea(info, M68K_INS_SUBQ, 4);
3211
880
}
3212
3213
static void d68000_subx_rr_8(m68k_info *info)
3214
605
{
3215
605
  build_rr(info, M68K_INS_SUBX, 1, 0);
3216
605
}
3217
3218
static void d68000_subx_rr_16(m68k_info *info)
3219
803
{
3220
803
  build_rr(info, M68K_INS_SUBX, 2, 0);
3221
803
}
3222
3223
static void d68000_subx_rr_32(m68k_info *info)
3224
754
{
3225
754
  build_rr(info, M68K_INS_SUBX, 4, 0);
3226
754
}
3227
3228
static void d68000_subx_mm_8(m68k_info *info)
3229
784
{
3230
784
  build_mm(info, M68K_INS_SUBX, 1, 0);
3231
784
}
3232
3233
static void d68000_subx_mm_16(m68k_info *info)
3234
388
{
3235
388
  build_mm(info, M68K_INS_SUBX, 2, 0);
3236
388
}
3237
3238
static void d68000_subx_mm_32(m68k_info *info)
3239
234
{
3240
234
  build_mm(info, M68K_INS_SUBX, 4, 0);
3241
234
}
3242
3243
static void d68000_swap(m68k_info *info)
3244
328
{
3245
328
  build_d(info, M68K_INS_SWAP, 0);
3246
328
}
3247
3248
static void d68000_tas(m68k_info *info)
3249
673
{
3250
673
  build_ea(info, M68K_INS_TAS, 1);
3251
673
}
3252
3253
static void d68000_trap(m68k_info *info)
3254
1.13k
{
3255
1.13k
  build_absolute_jump_with_immediate(info, M68K_INS_TRAP, 0, info->ir&0xf);
3256
1.13k
}
3257
3258
static void d68020_trapcc_0(m68k_info *info)
3259
478
{
3260
478
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3261
264
  build_trap(info, 0, 0);
3262
3263
264
  info->extension.op_count = 0;
3264
264
}
3265
3266
static void d68020_trapcc_16(m68k_info *info)
3267
499
{
3268
499
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3269
362
  build_trap(info, 2, read_imm_16(info));
3270
362
}
3271
3272
static void d68020_trapcc_32(m68k_info *info)
3273
827
{
3274
827
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3275
363
  build_trap(info, 4, read_imm_32(info));
3276
363
}
3277
3278
static void d68000_trapv(m68k_info *info)
3279
414
{
3280
414
  MCInst_setOpcode(info->inst, M68K_INS_TRAPV);
3281
414
}
3282
3283
static void d68000_tst_8(m68k_info *info)
3284
1.37k
{
3285
1.37k
  build_ea(info, M68K_INS_TST, 1);
3286
1.37k
}
3287
3288
static void d68020_tst_pcdi_8(m68k_info *info)
3289
507
{
3290
507
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3291
167
  build_ea(info, M68K_INS_TST, 1);
3292
167
}
3293
3294
static void d68020_tst_pcix_8(m68k_info *info)
3295
495
{
3296
495
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3297
210
  build_ea(info, M68K_INS_TST, 1);
3298
210
}
3299
3300
static void d68020_tst_i_8(m68k_info *info)
3301
635
{
3302
635
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3303
533
  build_ea(info, M68K_INS_TST, 1);
3304
533
}
3305
3306
static void d68000_tst_16(m68k_info *info)
3307
757
{
3308
757
  build_ea(info, M68K_INS_TST, 2);
3309
757
}
3310
3311
static void d68020_tst_a_16(m68k_info *info)
3312
2.81k
{
3313
2.81k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3314
1.12k
  build_ea(info, M68K_INS_TST, 2);
3315
1.12k
}
3316
3317
static void d68020_tst_pcdi_16(m68k_info *info)
3318
337
{
3319
337
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3320
137
  build_ea(info, M68K_INS_TST, 2);
3321
137
}
3322
3323
static void d68020_tst_pcix_16(m68k_info *info)
3324
452
{
3325
452
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3326
290
  build_ea(info, M68K_INS_TST, 2);
3327
290
}
3328
3329
static void d68020_tst_i_16(m68k_info *info)
3330
645
{
3331
645
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3332
266
  build_ea(info, M68K_INS_TST, 2);
3333
266
}
3334
3335
static void d68000_tst_32(m68k_info *info)
3336
570
{
3337
570
  build_ea(info, M68K_INS_TST, 4);
3338
570
}
3339
3340
static void d68020_tst_a_32(m68k_info *info)
3341
1.16k
{
3342
1.16k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3343
768
  build_ea(info, M68K_INS_TST, 4);
3344
768
}
3345
3346
static void d68020_tst_pcdi_32(m68k_info *info)
3347
665
{
3348
665
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3349
372
  build_ea(info, M68K_INS_TST, 4);
3350
372
}
3351
3352
static void d68020_tst_pcix_32(m68k_info *info)
3353
958
{
3354
958
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3355
460
  build_ea(info, M68K_INS_TST, 4);
3356
460
}
3357
3358
static void d68020_tst_i_32(m68k_info *info)
3359
458
{
3360
458
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3361
245
  build_ea(info, M68K_INS_TST, 4);
3362
245
}
3363
3364
static void d68000_unlk(m68k_info *info)
3365
325
{
3366
325
  cs_m68k_op* op;
3367
325
  cs_m68k* ext = build_init_op(info, M68K_INS_UNLK, 1, 0);
3368
3369
325
  op = &ext->operands[0];
3370
3371
325
  op->address_mode = M68K_AM_REG_DIRECT_ADDR;
3372
325
  op->reg = M68K_REG_A0 + (info->ir & 7);
3373
325
}
3374
3375
static void d68020_unpk_rr(m68k_info *info)
3376
1.56k
{
3377
1.56k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3378
1.00k
  build_rr(info, M68K_INS_UNPK, 0, read_imm_16(info));
3379
1.00k
}
3380
3381
static void d68020_unpk_mm(m68k_info *info)
3382
2.43k
{
3383
2.43k
  LIMIT_CPU_TYPES(info, M68020_PLUS);
3384
1.49k
  build_mm(info, M68K_INS_UNPK, 0, read_imm_16(info));
3385
1.49k
}
3386
3387
/* This table is auto-generated. Look in contrib/m68k_instruction_tbl_gen for more info */
3388
#include "M68KInstructionTable.inc"
3389
3390
static int instruction_is_valid(m68k_info *info, const unsigned int word_check)
3391
424k
{
3392
424k
  const unsigned int instruction = info->ir;
3393
424k
  const instruction_struct *i = &g_instruction_table[instruction];
3394
3395
424k
  if ( (i->word2_mask && ((word_check & i->word2_mask) != i->word2_match)) ||
3396
423k
    (i->instruction == d68000_invalid) ) {
3397
2.44k
    d68000_invalid(info);
3398
2.44k
    return 0;
3399
2.44k
  }
3400
3401
422k
  return 1;
3402
424k
}
3403
3404
static int exists_reg_list(uint16_t *regs, uint8_t count, m68k_reg reg)
3405
531k
{
3406
531k
  uint8_t i;
3407
3408
740k
  for (i = 0; i < count; ++i) {
3409
214k
    if (regs[i] == (uint16_t)reg)
3410
6.20k
      return 1;
3411
214k
  }
3412
3413
525k
  return 0;
3414
531k
}
3415
3416
static void add_reg_to_rw_list(m68k_info *info, m68k_reg reg, int write)
3417
572k
{
3418
572k
  if (reg == M68K_REG_INVALID)
3419
41.3k
    return;
3420
3421
531k
  if (write)
3422
307k
  {
3423
307k
    if (exists_reg_list(info->regs_write, info->regs_write_count, reg))
3424
2.77k
      return;
3425
3426
304k
    info->regs_write[info->regs_write_count] = (uint16_t)reg;
3427
304k
    info->regs_write_count++;
3428
304k
  }
3429
223k
  else
3430
223k
  {
3431
223k
    if (exists_reg_list(info->regs_read, info->regs_read_count, reg))
3432
3.43k
      return;
3433
3434
220k
    info->regs_read[info->regs_read_count] = (uint16_t)reg;
3435
220k
    info->regs_read_count++;
3436
220k
  }
3437
531k
}
3438
3439
static void update_am_reg_list(m68k_info *info, cs_m68k_op *op, int write)
3440
198k
{
3441
198k
  switch (op->address_mode) {
3442
3.01k
    case M68K_AM_REG_DIRECT_ADDR:
3443
3.01k
    case M68K_AM_REG_DIRECT_DATA:
3444
3.01k
      add_reg_to_rw_list(info, op->reg, write);
3445
3.01k
      break;
3446
3447
32.7k
    case M68K_AM_REGI_ADDR_POST_INC:
3448
85.4k
    case M68K_AM_REGI_ADDR_PRE_DEC:
3449
85.4k
      add_reg_to_rw_list(info, op->reg, 1);
3450
85.4k
      break;
3451
3452
38.7k
    case M68K_AM_REGI_ADDR:
3453
67.1k
    case M68K_AM_REGI_ADDR_DISP:
3454
67.1k
      add_reg_to_rw_list(info, op->reg, 0);
3455
67.1k
      break;
3456
3457
13.2k
    case M68K_AM_AREGI_INDEX_8_BIT_DISP:
3458
19.0k
    case M68K_AM_AREGI_INDEX_BASE_DISP:
3459
22.1k
    case M68K_AM_MEMI_POST_INDEX:
3460
26.2k
    case M68K_AM_MEMI_PRE_INDEX:
3461
27.8k
    case M68K_AM_PCI_INDEX_8_BIT_DISP:
3462
28.5k
    case M68K_AM_PCI_INDEX_BASE_DISP:
3463
29.2k
    case M68K_AM_PC_MEMI_PRE_INDEX:
3464
29.8k
    case M68K_AM_PC_MEMI_POST_INDEX:
3465
29.8k
      add_reg_to_rw_list(info, op->mem.index_reg, 0);
3466
29.8k
      add_reg_to_rw_list(info, op->mem.base_reg, 0);
3467
29.8k
      break;
3468
3469
    // no register(s) in the other addressing modes
3470
13.2k
    default:
3471
13.2k
      break;
3472
198k
  }
3473
198k
}
3474
3475
static void update_bits_range(m68k_info *info, m68k_reg reg_start, uint8_t bits, int write)
3476
19.1k
{
3477
19.1k
  int i;
3478
3479
171k
  for (i = 0; i < 8; ++i) {
3480
152k
    if (bits & (1 << i)) {
3481
35.7k
      add_reg_to_rw_list(info, reg_start + i, write);
3482
35.7k
    }
3483
152k
  }
3484
19.1k
}
3485
3486
static void update_reg_list_regbits(m68k_info *info, cs_m68k_op *op, int write)
3487
6.36k
{
3488
6.36k
  uint32_t bits = op->register_bits;
3489
6.36k
  update_bits_range(info, M68K_REG_D0, bits & 0xff, write);
3490
6.36k
  update_bits_range(info, M68K_REG_A0, (bits >> 8) & 0xff, write);
3491
6.36k
  update_bits_range(info, M68K_REG_FP0, (bits >> 16) & 0xff, write);
3492
6.36k
}
3493
3494
static void update_op_reg_list(m68k_info *info, cs_m68k_op *op, int write)
3495
714k
{
3496
714k
  switch ((int)op->type) {
3497
315k
    case M68K_OP_REG:
3498
315k
      add_reg_to_rw_list(info, op->reg, write);
3499
315k
      break;
3500
3501
198k
    case M68K_OP_MEM:
3502
198k
      update_am_reg_list(info, op, write);
3503
198k
      break;
3504
3505
6.36k
    case M68K_OP_REG_BITS:
3506
6.36k
      update_reg_list_regbits(info, op, write);
3507
6.36k
      break;
3508
3509
3.21k
    case M68K_OP_REG_PAIR:
3510
3.21k
      add_reg_to_rw_list(info, op->reg_pair.reg_0, write);
3511
3.21k
      add_reg_to_rw_list(info, op->reg_pair.reg_1, write);
3512
3.21k
      break;
3513
714k
  }
3514
714k
}
3515
3516
static void build_regs_read_write_counts(m68k_info *info)
3517
421k
{
3518
421k
  int i;
3519
3520
421k
  if (!info->extension.op_count)
3521
2.63k
    return;
3522
3523
418k
  if (info->extension.op_count == 1) {
3524
128k
    update_op_reg_list(info, &info->extension.operands[0], 1);
3525
290k
  } else {
3526
    // first operand is always read
3527
290k
    update_op_reg_list(info, &info->extension.operands[0], 0);
3528
3529
    // remaning write
3530
586k
    for (i = 1; i < info->extension.op_count; ++i)
3531
296k
      update_op_reg_list(info, &info->extension.operands[i], 1);
3532
290k
  }
3533
418k
}
3534
3535
static void m68k_setup_internals(m68k_info* info, MCInst* inst, unsigned int pc, unsigned int cpu_type)
3536
422k
{
3537
422k
  info->inst = inst;
3538
422k
  info->pc = pc;
3539
422k
  info->ir = 0;
3540
422k
  info->type = cpu_type;
3541
422k
  info->address_mask = 0xffffffff;
3542
3543
422k
  switch(info->type) {
3544
135k
    case M68K_CPU_TYPE_68000:
3545
135k
      info->type = TYPE_68000;
3546
135k
      info->address_mask = 0x00ffffff;
3547
135k
      break;
3548
0
    case M68K_CPU_TYPE_68010:
3549
0
      info->type = TYPE_68010;
3550
0
      info->address_mask = 0x00ffffff;
3551
0
      break;
3552
0
    case M68K_CPU_TYPE_68EC020:
3553
0
      info->type = TYPE_68020;
3554
0
      info->address_mask = 0x00ffffff;
3555
0
      break;
3556
0
    case M68K_CPU_TYPE_68020:
3557
0
      info->type = TYPE_68020;
3558
0
      info->address_mask = 0xffffffff;
3559
0
      break;
3560
0
    case M68K_CPU_TYPE_68030:
3561
0
      info->type = TYPE_68030;
3562
0
      info->address_mask = 0xffffffff;
3563
0
      break;
3564
287k
    case M68K_CPU_TYPE_68040:
3565
287k
      info->type = TYPE_68040;
3566
287k
      info->address_mask = 0xffffffff;
3567
287k
      break;
3568
0
    default:
3569
0
      info->address_mask = 0;
3570
0
      return;
3571
422k
  }
3572
422k
}
3573
3574
/* ======================================================================== */
3575
/* ================================= API ================================== */
3576
/* ======================================================================== */
3577
3578
/* Disasemble one instruction at pc and store in str_buff */
3579
static unsigned int m68k_disassemble(m68k_info *info, uint64_t pc)
3580
422k
{
3581
422k
  MCInst *inst = info->inst;
3582
422k
  cs_m68k* ext = &info->extension;
3583
422k
  int i;
3584
422k
  unsigned int size;
3585
3586
422k
  inst->Opcode = M68K_INS_INVALID;
3587
3588
422k
  memset(ext, 0, sizeof(cs_m68k));
3589
422k
  ext->op_size.type = M68K_SIZE_TYPE_CPU;
3590
3591
2.11M
  for (i = 0; i < M68K_OPERAND_COUNT; ++i)
3592
1.69M
    ext->operands[i].type = M68K_OP_REG;
3593
3594
422k
  info->ir = peek_imm_16(info);
3595
422k
  if (instruction_is_valid(info, peek_imm_32(info) & 0xffff)) {
3596
421k
    info->ir = read_imm_16(info);
3597
421k
    g_instruction_table[info->ir].instruction(info);
3598
421k
  }
3599
3600
422k
  size = info->pc - (unsigned int)pc;
3601
422k
  info->pc = (unsigned int)pc;
3602
3603
422k
  return size;
3604
422k
}
3605
3606
bool M68K_getInstruction(csh ud, const uint8_t* code, size_t code_len, MCInst* instr, uint16_t* size, uint64_t address, void* inst_info)
3607
423k
{
3608
#ifdef M68K_DEBUG
3609
  SStream ss;
3610
#endif
3611
423k
  int s;
3612
423k
  int cpu_type = M68K_CPU_TYPE_68000;
3613
423k
  cs_struct* handle = instr->csh;
3614
423k
  m68k_info *info = (m68k_info*)handle->printer_info;
3615
3616
  // code len has to be at least 2 bytes to be valid m68k
3617
3618
423k
  if (code_len < 2) {
3619
1.11k
    *size = 0;
3620
1.11k
    return false;
3621
1.11k
  }
3622
3623
422k
  if (instr->flat_insn->detail) {
3624
422k
    memset(instr->flat_insn->detail, 0, offsetof(cs_detail, m68k)+sizeof(cs_m68k));
3625
422k
  }
3626
3627
422k
  info->groups_count = 0;
3628
422k
  info->regs_read_count = 0;
3629
422k
  info->regs_write_count = 0;
3630
422k
  info->code = code;
3631
422k
  info->code_len = code_len;
3632
422k
  info->baseAddress = address;
3633
3634
422k
  if (handle->mode & CS_MODE_M68K_010)
3635
0
    cpu_type = M68K_CPU_TYPE_68010;
3636
422k
  if (handle->mode & CS_MODE_M68K_020)
3637
0
    cpu_type = M68K_CPU_TYPE_68020;
3638
422k
  if (handle->mode & CS_MODE_M68K_030)
3639
0
    cpu_type = M68K_CPU_TYPE_68030;
3640
422k
  if (handle->mode & CS_MODE_M68K_040)
3641
287k
    cpu_type = M68K_CPU_TYPE_68040;
3642
422k
  if (handle->mode & CS_MODE_M68K_060)
3643
0
    cpu_type = M68K_CPU_TYPE_68040; // 060 = 040 for now
3644
3645
422k
  m68k_setup_internals(info, instr, (unsigned int)address, cpu_type);
3646
422k
  s = m68k_disassemble(info, address);
3647
3648
422k
  if (s == 0) {
3649
1.41k
    *size = 2;
3650
1.41k
    return false;
3651
1.41k
  }
3652
3653
421k
  build_regs_read_write_counts(info);
3654
3655
#ifdef M68K_DEBUG
3656
  SStream_Init(&ss);
3657
  M68K_printInst(instr, &ss, info);
3658
#endif
3659
3660
  // Make sure we always stay within range
3661
421k
  if (s > (int)code_len)
3662
1.27k
    *size = (uint16_t)code_len;
3663
420k
  else
3664
420k
    *size = (uint16_t)s;
3665
3666
  return true;
3667
422k
}
3668