Coverage Report

Created: 2023-12-08 06:05

/src/capstonenext/arch/TMS320C64x/TMS320C64xInstPrinter.c
Line
Count
Source (jump to first uncovered line)
1
/* Capstone Disassembly Engine */
2
/* TMS320C64x Backend by Fotis Loukos <me@fotisl.com> 2016 */
3
4
#ifdef CAPSTONE_HAS_TMS320C64X
5
6
#ifdef _MSC_VER
7
// Disable security warnings for strcpy
8
#ifndef _CRT_SECURE_NO_WARNINGS
9
#define _CRT_SECURE_NO_WARNINGS
10
#endif
11
12
// Banned API Usage : strcpy is a Banned API as listed in dontuse.h for
13
// security purposes.
14
#pragma warning(disable:28719)
15
#endif
16
17
#include <ctype.h>
18
#include <string.h>
19
20
#include "TMS320C64xInstPrinter.h"
21
#include "../../MCInst.h"
22
#include "../../utils.h"
23
#include "../../SStream.h"
24
#include "../../MCRegisterInfo.h"
25
#include "../../MathExtras.h"
26
#include "TMS320C64xMapping.h"
27
28
#include "capstone/tms320c64x.h"
29
30
static const char *getRegisterName(unsigned RegNo);
31
static void printOperand(MCInst *MI, unsigned OpNo, SStream *O);
32
static void printMemOperand(MCInst *MI, unsigned OpNo, SStream *O);
33
static void printMemOperand2(MCInst *MI, unsigned OpNo, SStream *O);
34
static void printRegPair(MCInst *MI, unsigned OpNo, SStream *O);
35
36
void TMS320C64x_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci)
37
72.4k
{
38
72.4k
  SStream ss;
39
72.4k
  char *p, *p2, tmp[8];
40
72.4k
  unsigned int unit = 0;
41
72.4k
  int i;
42
72.4k
  cs_tms320c64x *tms320c64x;
43
44
72.4k
  if (mci->csh->detail_opt) {
45
72.4k
    tms320c64x = &mci->flat_insn->detail->tms320c64x;
46
47
72.4k
    for (i = 0; i < insn->detail->groups_count; i++) {
48
72.4k
      switch(insn->detail->groups[i]) {
49
23.1k
        case TMS320C64X_GRP_FUNIT_D:
50
23.1k
          unit = TMS320C64X_FUNIT_D;
51
23.1k
          break;
52
15.9k
        case TMS320C64X_GRP_FUNIT_L:
53
15.9k
          unit = TMS320C64X_FUNIT_L;
54
15.9k
          break;
55
5.48k
        case TMS320C64X_GRP_FUNIT_M:
56
5.48k
          unit = TMS320C64X_FUNIT_M;
57
5.48k
          break;
58
26.2k
        case TMS320C64X_GRP_FUNIT_S:
59
26.2k
          unit = TMS320C64X_FUNIT_S;
60
26.2k
          break;
61
1.63k
        case TMS320C64X_GRP_FUNIT_NO:
62
1.63k
          unit = TMS320C64X_FUNIT_NO;
63
1.63k
          break;
64
72.4k
      }
65
72.4k
      if (unit != 0)
66
72.4k
        break;
67
72.4k
    }
68
72.4k
    tms320c64x->funit.unit = unit;
69
70
72.4k
    SStream_Init(&ss);
71
72.4k
    if (tms320c64x->condition.reg != TMS320C64X_REG_INVALID)
72
45.5k
      SStream_concat(&ss, "[%c%s]|", (tms320c64x->condition.zero == 1) ? '!' : '|', cs_reg_name(ud, tms320c64x->condition.reg));
73
74
72.4k
    p = strchr(insn_asm, '\t');
75
72.4k
    if (p != NULL)
76
71.0k
      *p++ = '\0';
77
78
72.4k
    SStream_concat0(&ss, insn_asm);
79
72.4k
    if ((p != NULL) && (((p2 = strchr(p, '[')) != NULL) || ((p2 = strchr(p, '(')) != NULL))) {
80
79.0k
      while ((p2 > p) && ((*p2 != 'a') && (*p2 != 'b')))
81
59.9k
        p2--;
82
19.1k
      if (p2 == p) {
83
0
        strcpy(insn_asm, "Invalid!");
84
0
        return;
85
0
      }
86
19.1k
      if (*p2 == 'a')
87
9.81k
        strcpy(tmp, "1T");
88
9.29k
      else
89
9.29k
        strcpy(tmp, "2T");
90
53.3k
    } else {
91
53.3k
      tmp[0] = '\0';
92
53.3k
    }
93
72.4k
    switch(tms320c64x->funit.unit) {
94
23.1k
      case TMS320C64X_FUNIT_D:
95
23.1k
        SStream_concat(&ss, ".D%s%u", tmp, tms320c64x->funit.side);
96
23.1k
        break;
97
15.9k
      case TMS320C64X_FUNIT_L:
98
15.9k
        SStream_concat(&ss, ".L%s%u", tmp, tms320c64x->funit.side);
99
15.9k
        break;
100
5.48k
      case TMS320C64X_FUNIT_M:
101
5.48k
        SStream_concat(&ss, ".M%s%u", tmp, tms320c64x->funit.side);
102
5.48k
        break;
103
26.2k
      case TMS320C64X_FUNIT_S:
104
26.2k
        SStream_concat(&ss, ".S%s%u", tmp, tms320c64x->funit.side);
105
26.2k
        break;
106
72.4k
    }
107
72.4k
    if (tms320c64x->funit.crosspath > 0)
108
17.5k
      SStream_concat0(&ss, "X");
109
110
72.4k
    if (p != NULL)
111
71.0k
      SStream_concat(&ss, "\t%s", p);
112
113
72.4k
    if (tms320c64x->parallel != 0)
114
34.5k
      SStream_concat0(&ss, "\t||");
115
116
    /* insn_asm is a buffer from an SStream, so there should be enough space */
117
72.4k
    strcpy(insn_asm, ss.buffer);
118
72.4k
  }
119
72.4k
}
120
121
#define PRINT_ALIAS_INSTR
122
#include "TMS320C64xGenAsmWriter.inc"
123
124
#define GET_INSTRINFO_ENUM
125
#include "TMS320C64xGenInstrInfo.inc"
126
127
static void printOperand(MCInst *MI, unsigned OpNo, SStream *O)
128
131k
{
129
131k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
130
131k
  unsigned reg;
131
132
131k
  if (MCOperand_isReg(Op)) {
133
99.6k
    reg = MCOperand_getReg(Op);
134
99.6k
    if ((MCInst_getOpcode(MI) == TMS320C64x_MVC_s1_rr) && (OpNo == 1)) {
135
978
      switch(reg) {
136
222
        case TMS320C64X_REG_EFR:
137
222
          SStream_concat0(O, "EFR");
138
222
          break;
139
272
        case TMS320C64X_REG_IFR:
140
272
          SStream_concat0(O, "IFR");
141
272
          break;
142
484
        default:
143
484
          SStream_concat0(O, getRegisterName(reg));
144
484
          break;
145
978
      }
146
98.6k
    } else {
147
98.6k
      SStream_concat0(O, getRegisterName(reg));
148
98.6k
    }
149
150
99.6k
    if (MI->csh->detail_opt) {
151
99.6k
      MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS320C64X_OP_REG;
152
99.6k
      MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].reg = reg;
153
99.6k
      MI->flat_insn->detail->tms320c64x.op_count++;
154
99.6k
    }
155
99.6k
  } else if (MCOperand_isImm(Op)) {
156
32.2k
    int64_t Imm = MCOperand_getImm(Op);
157
158
32.2k
    if (Imm >= 0) {
159
26.9k
      if (Imm > HEX_THRESHOLD)
160
17.2k
        SStream_concat(O, "0x%"PRIx64, Imm);
161
9.66k
      else
162
9.66k
        SStream_concat(O, "%"PRIu64, Imm);
163
26.9k
    } else {
164
5.32k
      if (Imm < -HEX_THRESHOLD)
165
4.46k
        SStream_concat(O, "-0x%"PRIx64, -Imm);
166
865
      else
167
865
        SStream_concat(O, "-%"PRIu64, -Imm);
168
5.32k
    }
169
170
32.2k
    if (MI->csh->detail_opt) {
171
32.2k
      MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS320C64X_OP_IMM;
172
32.2k
      MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].imm = Imm;
173
32.2k
      MI->flat_insn->detail->tms320c64x.op_count++;
174
32.2k
    }
175
32.2k
  }
176
131k
}
177
178
static void printMemOperand(MCInst *MI, unsigned OpNo, SStream *O)
179
9.81k
{
180
9.81k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
181
9.81k
  int64_t Val = MCOperand_getImm(Op);
182
9.81k
  unsigned scaled, base, offset, mode, unit;
183
9.81k
  cs_tms320c64x *tms320c64x;
184
9.81k
  char st, nd;
185
186
9.81k
  scaled = (Val >> 19) & 1;
187
9.81k
  base = (Val >> 12) & 0x7f;
188
9.81k
  offset = (Val >> 5) & 0x7f;
189
9.81k
  mode = (Val >> 1) & 0xf;
190
9.81k
  unit = Val & 1;
191
192
9.81k
  if (scaled) {
193
8.31k
    st = '[';
194
8.31k
    nd = ']';
195
8.31k
  } else {
196
1.49k
    st = '(';
197
1.49k
    nd = ')';
198
1.49k
  }
199
200
9.81k
  switch(mode) {
201
981
    case 0:
202
981
      SStream_concat(O, "*-%s%c%u%c", getRegisterName(base), st, offset, nd);
203
981
      break;
204
803
    case 1:
205
803
      SStream_concat(O, "*+%s%c%u%c", getRegisterName(base), st, offset, nd);
206
803
      break;
207
699
    case 4:
208
699
      SStream_concat(O, "*-%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
209
699
      break;
210
299
    case 5:
211
299
      SStream_concat(O, "*+%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
212
299
      break;
213
698
    case 8:
214
698
      SStream_concat(O, "*--%s%c%u%c", getRegisterName(base), st, offset, nd);
215
698
      break;
216
1.04k
    case 9:
217
1.04k
      SStream_concat(O, "*++%s%c%u%c", getRegisterName(base), st, offset, nd);
218
1.04k
      break;
219
1.19k
    case 10:
220
1.19k
      SStream_concat(O, "*%s--%c%u%c", getRegisterName(base), st, offset, nd);
221
1.19k
      break;
222
774
    case 11:
223
774
      SStream_concat(O, "*%s++%c%u%c", getRegisterName(base), st, offset, nd);
224
774
      break;
225
1.07k
    case 12:
226
1.07k
      SStream_concat(O, "*--%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
227
1.07k
      break;
228
1.02k
    case 13:
229
1.02k
      SStream_concat(O, "*++%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
230
1.02k
      break;
231
862
    case 14:
232
862
      SStream_concat(O, "*%s--%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
233
862
      break;
234
359
    case 15:
235
359
      SStream_concat(O, "*%s++%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
236
359
      break;
237
9.81k
  }
238
239
9.81k
  if (MI->csh->detail_opt) {
240
9.81k
    tms320c64x = &MI->flat_insn->detail->tms320c64x;
241
242
9.81k
    tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM;
243
9.81k
    tms320c64x->operands[tms320c64x->op_count].mem.base = base;
244
9.81k
    tms320c64x->operands[tms320c64x->op_count].mem.disp = offset;
245
9.81k
    tms320c64x->operands[tms320c64x->op_count].mem.unit = unit + 1;
246
9.81k
    tms320c64x->operands[tms320c64x->op_count].mem.scaled = scaled;
247
9.81k
    switch(mode) {
248
981
      case 0:
249
981
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
250
981
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
251
981
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
252
981
        break;
253
803
      case 1:
254
803
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
255
803
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
256
803
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
257
803
        break;
258
699
      case 4:
259
699
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
260
699
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
261
699
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
262
699
        break;
263
299
      case 5:
264
299
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
265
299
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
266
299
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
267
299
        break;
268
698
      case 8:
269
698
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
270
698
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
271
698
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
272
698
        break;
273
1.04k
      case 9:
274
1.04k
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
275
1.04k
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
276
1.04k
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
277
1.04k
        break;
278
1.19k
      case 10:
279
1.19k
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
280
1.19k
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
281
1.19k
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
282
1.19k
        break;
283
774
      case 11:
284
774
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
285
774
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
286
774
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
287
774
        break;
288
1.07k
      case 12:
289
1.07k
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
290
1.07k
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
291
1.07k
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
292
1.07k
        break;
293
1.02k
      case 13:
294
1.02k
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
295
1.02k
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
296
1.02k
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
297
1.02k
        break;
298
862
      case 14:
299
862
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
300
862
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
301
862
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
302
862
        break;
303
359
      case 15:
304
359
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
305
359
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
306
359
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
307
359
        break;
308
9.81k
    }
309
9.81k
    tms320c64x->op_count++;
310
9.81k
  }
311
9.81k
}
312
313
static void printMemOperand2(MCInst *MI, unsigned OpNo, SStream *O)
314
9.29k
{
315
9.29k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
316
9.29k
  int64_t Val = MCOperand_getImm(Op);
317
9.29k
  uint16_t offset;
318
9.29k
  unsigned basereg;
319
9.29k
  cs_tms320c64x *tms320c64x;
320
321
9.29k
  basereg = Val & 0x7f;
322
9.29k
  offset = (Val >> 7) & 0x7fff;
323
9.29k
  SStream_concat(O, "*+%s[0x%x]", getRegisterName(basereg), offset);
324
325
9.29k
  if (MI->csh->detail_opt) {
326
9.29k
    tms320c64x = &MI->flat_insn->detail->tms320c64x;
327
328
9.29k
    tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM;
329
9.29k
    tms320c64x->operands[tms320c64x->op_count].mem.base = basereg;
330
9.29k
    tms320c64x->operands[tms320c64x->op_count].mem.unit = 2;
331
9.29k
    tms320c64x->operands[tms320c64x->op_count].mem.disp = offset;
332
9.29k
    tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
333
9.29k
    tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
334
9.29k
    tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
335
9.29k
    tms320c64x->op_count++;
336
9.29k
  }
337
9.29k
}
338
339
static void printRegPair(MCInst *MI, unsigned OpNo, SStream *O)
340
23.5k
{
341
23.5k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
342
23.5k
  unsigned reg = MCOperand_getReg(Op);
343
23.5k
  cs_tms320c64x *tms320c64x;
344
345
23.5k
  SStream_concat(O, "%s:%s", getRegisterName(reg + 1), getRegisterName(reg));
346
347
23.5k
  if (MI->csh->detail_opt) {
348
23.5k
    tms320c64x = &MI->flat_insn->detail->tms320c64x;
349
350
23.5k
    tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_REGPAIR;
351
23.5k
    tms320c64x->operands[tms320c64x->op_count].reg = reg;
352
23.5k
    tms320c64x->op_count++;
353
23.5k
  }
354
23.5k
}
355
356
static bool printAliasInstruction(MCInst *MI, SStream *O, MCRegisterInfo *MRI)
357
72.4k
{
358
72.4k
  unsigned opcode = MCInst_getOpcode(MI);
359
72.4k
  MCOperand *op;
360
361
72.4k
  switch(opcode) {
362
    /* ADD.Dx -i, x, y -> SUB.Dx x, i, y */
363
235
    case TMS320C64x_ADD_d2_rir:
364
    /* ADD.L -i, x, y -> SUB.L x, i, y */
365
534
    case TMS320C64x_ADD_l1_irr:
366
1.03k
    case TMS320C64x_ADD_l1_ipp:
367
    /* ADD.S -i, x, y -> SUB.S x, i, y */
368
1.74k
    case TMS320C64x_ADD_s1_irr:
369
1.74k
      if ((MCInst_getNumOperands(MI) == 3) &&
370
1.74k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
371
1.74k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
372
1.74k
        MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
373
1.74k
        (MCOperand_getImm(MCInst_getOperand(MI, 2)) < 0)) {
374
375
276
        MCInst_setOpcodePub(MI, TMS320C64X_INS_SUB);
376
276
        op = MCInst_getOperand(MI, 2);
377
276
        MCOperand_setImm(op, -MCOperand_getImm(op));
378
379
276
        SStream_concat0(O, "SUB\t");
380
276
        printOperand(MI, 1, O);
381
276
        SStream_concat0(O, ", ");
382
276
        printOperand(MI, 2, O);
383
276
        SStream_concat0(O, ", ");
384
276
        printOperand(MI, 0, O);
385
386
276
        return true;
387
276
      }
388
1.47k
      break;
389
72.4k
  }
390
72.1k
  switch(opcode) {
391
    /* ADD.D 0, x, y -> MV.D x, y */
392
324
    case TMS320C64x_ADD_d1_rir:
393
    /* OR.D x, 0, y -> MV.D x, y */
394
777
    case TMS320C64x_OR_d2_rir:
395
    /* ADD.L 0, x, y -> MV.L x, y */
396
1.01k
    case TMS320C64x_ADD_l1_irr:
397
1.49k
    case TMS320C64x_ADD_l1_ipp:
398
    /* OR.L 0, x, y -> MV.L x, y */
399
1.61k
    case TMS320C64x_OR_l1_irr:
400
    /* ADD.S 0, x, y -> MV.S x, y */
401
2.18k
    case TMS320C64x_ADD_s1_irr:
402
    /* OR.S 0, x, y -> MV.S x, y */
403
2.23k
    case TMS320C64x_OR_s1_irr:
404
2.23k
      if ((MCInst_getNumOperands(MI) == 3) &&
405
2.23k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
406
2.23k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
407
2.23k
        MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
408
2.23k
        (MCOperand_getImm(MCInst_getOperand(MI, 2)) == 0)) {
409
410
250
        MCInst_setOpcodePub(MI, TMS320C64X_INS_MV);
411
250
        MI->size--;
412
413
250
        SStream_concat0(O, "MV\t");
414
250
        printOperand(MI, 1, O);
415
250
        SStream_concat0(O, ", ");
416
250
        printOperand(MI, 0, O);
417
418
250
        return true;
419
250
      }
420
1.98k
      break;
421
72.1k
  }
422
71.9k
  switch(opcode) {
423
    /* XOR.D -1, x, y -> NOT.D x, y */
424
447
    case TMS320C64x_XOR_d2_rir:
425
    /* XOR.L -1, x, y -> NOT.L x, y */
426
794
    case TMS320C64x_XOR_l1_irr:
427
    /* XOR.S -1, x, y -> NOT.S x, y */
428
1.47k
    case TMS320C64x_XOR_s1_irr:
429
1.47k
      if ((MCInst_getNumOperands(MI) == 3) &&
430
1.47k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
431
1.47k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
432
1.47k
        MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
433
1.47k
        (MCOperand_getImm(MCInst_getOperand(MI, 2)) == -1)) {
434
435
222
        MCInst_setOpcodePub(MI, TMS320C64X_INS_NOT);
436
222
        MI->size--;
437
438
222
        SStream_concat0(O, "NOT\t");
439
222
        printOperand(MI, 1, O);
440
222
        SStream_concat0(O, ", ");
441
222
        printOperand(MI, 0, O);
442
443
222
        return true;
444
222
      }
445
1.24k
      break;
446
71.9k
  }
447
71.7k
  switch(opcode) {
448
    /* MVK.D 0, x -> ZERO.D x */
449
637
    case TMS320C64x_MVK_d1_rr:
450
    /* MVK.L 0, x -> ZERO.L x */
451
1.17k
    case TMS320C64x_MVK_l2_ir:
452
1.17k
      if ((MCInst_getNumOperands(MI) == 2) &&
453
1.17k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
454
1.17k
        MCOperand_isImm(MCInst_getOperand(MI, 1)) &&
455
1.17k
        (MCOperand_getImm(MCInst_getOperand(MI, 1)) == 0)) {
456
457
330
        MCInst_setOpcodePub(MI, TMS320C64X_INS_ZERO);
458
330
        MI->size--;
459
460
330
        SStream_concat0(O, "ZERO\t");
461
330
        printOperand(MI, 0, O);
462
463
330
        return true;
464
330
      }
465
846
      break;
466
71.7k
  }
467
71.3k
  switch(opcode) {
468
    /* SUB.L x, x, y -> ZERO.L y */
469
825
    case TMS320C64x_SUB_l1_rrp_x1:
470
    /* SUB.S x, x, y -> ZERO.S y */
471
1.16k
    case TMS320C64x_SUB_s1_rrr:
472
1.16k
      if ((MCInst_getNumOperands(MI) == 3) &&
473
1.16k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
474
1.16k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
475
1.16k
        MCOperand_isReg(MCInst_getOperand(MI, 2)) &&
476
1.16k
        (MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2)))) {
477
478
288
        MCInst_setOpcodePub(MI, TMS320C64X_INS_ZERO);
479
288
        MI->size -= 2;
480
481
288
        SStream_concat0(O, "ZERO\t");
482
288
        printOperand(MI, 0, O);
483
484
288
        return true;
485
288
      }
486
874
      break;
487
71.3k
  }
488
71.0k
  switch(opcode) {
489
    /* SUB.L 0, x, y -> NEG.L x, y */
490
590
    case TMS320C64x_SUB_l1_irr:
491
837
    case TMS320C64x_SUB_l1_ipp:
492
    /* SUB.S 0, x, y -> NEG.S x, y */
493
1.02k
    case TMS320C64x_SUB_s1_irr:
494
1.02k
      if ((MCInst_getNumOperands(MI) == 3) &&
495
1.02k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
496
1.02k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
497
1.02k
        MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
498
1.02k
        (MCOperand_getImm(MCInst_getOperand(MI, 2)) == 0)) {
499
500
481
        MCInst_setOpcodePub(MI, TMS320C64X_INS_NEG);
501
481
        MI->size--;
502
503
481
        SStream_concat0(O, "NEG\t");
504
481
        printOperand(MI, 1, O);
505
481
        SStream_concat0(O, ", ");
506
481
        printOperand(MI, 0, O);
507
508
481
        return true;
509
481
      }
510
540
      break;
511
71.0k
  }
512
70.6k
  switch(opcode) {
513
    /* PACKLH2.L x, x, y -> SWAP2.L x, y */
514
158
    case TMS320C64x_PACKLH2_l1_rrr_x2:
515
    /* PACKLH2.S x, x, y -> SWAP2.S x, y */
516
594
    case TMS320C64x_PACKLH2_s1_rrr:
517
594
      if ((MCInst_getNumOperands(MI) == 3) &&
518
594
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
519
594
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
520
594
        MCOperand_isReg(MCInst_getOperand(MI, 2)) &&
521
594
        (MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2)))) {
522
523
58
        MCInst_setOpcodePub(MI, TMS320C64X_INS_SWAP2);
524
58
        MI->size--;
525
526
58
        SStream_concat0(O, "SWAP2\t");
527
58
        printOperand(MI, 1, O);
528
58
        SStream_concat0(O, ", ");
529
58
        printOperand(MI, 0, O);
530
531
58
        return true;
532
58
      }
533
536
      break;
534
70.6k
  }
535
70.5k
  switch(opcode) {
536
    /* NOP 16 -> IDLE */
537
    /* NOP 1 -> NOP */
538
1.63k
    case TMS320C64x_NOP_n:
539
1.63k
      if ((MCInst_getNumOperands(MI) == 1) &&
540
1.63k
        MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
541
1.63k
        (MCOperand_getReg(MCInst_getOperand(MI, 0)) == 16)) {
542
543
72
        MCInst_setOpcodePub(MI, TMS320C64X_INS_IDLE);
544
72
        MI->size--;
545
546
72
        SStream_concat0(O, "IDLE");
547
548
72
        return true;
549
72
      }
550
1.56k
      if ((MCInst_getNumOperands(MI) == 1) &&
551
1.56k
        MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
552
1.56k
        (MCOperand_getReg(MCInst_getOperand(MI, 0)) == 1)) {
553
554
1.37k
        MI->size--;
555
556
1.37k
        SStream_concat0(O, "NOP");
557
558
1.37k
        return true;
559
1.37k
      }
560
188
      break;
561
70.5k
  }
562
563
69.0k
  return false;
564
70.5k
}
565
566
void TMS320C64x_printInst(MCInst *MI, SStream *O, void *Info)
567
72.4k
{
568
72.4k
  if (!printAliasInstruction(MI, O, Info))
569
69.0k
    printInstruction(MI, O, Info);
570
72.4k
}
571
572
#endif