Coverage Report

Created: 2025-07-04 06:11

/src/capstonev5/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
41.8k
{
38
41.8k
  SStream ss;
39
41.8k
  char *p, *p2, tmp[8];
40
41.8k
  unsigned int unit = 0;
41
41.8k
  int i;
42
41.8k
  cs_tms320c64x *tms320c64x;
43
44
41.8k
  if (mci->csh->detail) {
45
41.8k
    tms320c64x = &mci->flat_insn->detail->tms320c64x;
46
47
41.8k
    for (i = 0; i < insn->detail->groups_count; i++) {
48
41.8k
      switch(insn->detail->groups[i]) {
49
9.94k
        case TMS320C64X_GRP_FUNIT_D:
50
9.94k
          unit = TMS320C64X_FUNIT_D;
51
9.94k
          break;
52
9.04k
        case TMS320C64X_GRP_FUNIT_L:
53
9.04k
          unit = TMS320C64X_FUNIT_L;
54
9.04k
          break;
55
2.61k
        case TMS320C64X_GRP_FUNIT_M:
56
2.61k
          unit = TMS320C64X_FUNIT_M;
57
2.61k
          break;
58
19.2k
        case TMS320C64X_GRP_FUNIT_S:
59
19.2k
          unit = TMS320C64X_FUNIT_S;
60
19.2k
          break;
61
965
        case TMS320C64X_GRP_FUNIT_NO:
62
965
          unit = TMS320C64X_FUNIT_NO;
63
965
          break;
64
41.8k
      }
65
41.8k
      if (unit != 0)
66
41.8k
        break;
67
41.8k
    }
68
41.8k
    tms320c64x->funit.unit = unit;
69
70
41.8k
    SStream_Init(&ss);
71
41.8k
    if (tms320c64x->condition.reg != TMS320C64X_REG_INVALID)
72
27.1k
      SStream_concat(&ss, "[%c%s]|", (tms320c64x->condition.zero == 1) ? '!' : '|', cs_reg_name(ud, tms320c64x->condition.reg));
73
74
41.8k
    p = strchr(insn_asm, '\t');
75
41.8k
    if (p != NULL)
76
41.1k
      *p++ = '\0';
77
78
41.8k
    SStream_concat0(&ss, insn_asm);
79
41.8k
    if ((p != NULL) && (((p2 = strchr(p, '[')) != NULL) || ((p2 = strchr(p, '(')) != NULL))) {
80
30.1k
      while ((p2 > p) && ((*p2 != 'a') && (*p2 != 'b')))
81
22.5k
        p2--;
82
7.52k
      if (p2 == p) {
83
0
        strcpy(insn_asm, "Invalid!");
84
0
        return;
85
0
      }
86
7.52k
      if (*p2 == 'a')
87
3.93k
        strcpy(tmp, "1T");
88
3.58k
      else
89
3.58k
        strcpy(tmp, "2T");
90
34.2k
    } else {
91
34.2k
      tmp[0] = '\0';
92
34.2k
    }
93
41.8k
    switch(tms320c64x->funit.unit) {
94
9.94k
      case TMS320C64X_FUNIT_D:
95
9.94k
        SStream_concat(&ss, ".D%s%u", tmp, tms320c64x->funit.side);
96
9.94k
        break;
97
9.04k
      case TMS320C64X_FUNIT_L:
98
9.04k
        SStream_concat(&ss, ".L%s%u", tmp, tms320c64x->funit.side);
99
9.04k
        break;
100
2.61k
      case TMS320C64X_FUNIT_M:
101
2.61k
        SStream_concat(&ss, ".M%s%u", tmp, tms320c64x->funit.side);
102
2.61k
        break;
103
19.2k
      case TMS320C64X_FUNIT_S:
104
19.2k
        SStream_concat(&ss, ".S%s%u", tmp, tms320c64x->funit.side);
105
19.2k
        break;
106
41.8k
    }
107
41.8k
    if (tms320c64x->funit.crosspath > 0)
108
11.2k
      SStream_concat0(&ss, "X");
109
110
41.8k
    if (p != NULL)
111
41.1k
      SStream_concat(&ss, "\t%s", p);
112
113
41.8k
    if (tms320c64x->parallel != 0)
114
20.2k
      SStream_concat0(&ss, "\t||");
115
116
    /* insn_asm is a buffer from an SStream, so there should be enough space */
117
41.8k
    strcpy(insn_asm, ss.buffer);
118
41.8k
  }
119
41.8k
}
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
147k
{
129
147k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
130
147k
  unsigned reg;
131
132
147k
  if (MCOperand_isReg(Op)) {
133
104k
    reg = MCOperand_getReg(Op);
134
104k
    if ((MCInst_getOpcode(MI) == TMS320C64x_MVC_s1_rr) && (OpNo == 1)) {
135
2.33k
      switch(reg) {
136
410
        case TMS320C64X_REG_EFR:
137
410
          SStream_concat0(O, "EFR");
138
410
          break;
139
840
        case TMS320C64X_REG_IFR:
140
840
          SStream_concat0(O, "IFR");
141
840
          break;
142
1.08k
        default:
143
1.08k
          SStream_concat0(O, getRegisterName(reg));
144
1.08k
          break;
145
2.33k
      }
146
102k
    } else {
147
102k
      SStream_concat0(O, getRegisterName(reg));
148
102k
    }
149
150
104k
    if (MI->csh->detail) {
151
104k
      MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS320C64X_OP_REG;
152
104k
      MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].reg = reg;
153
104k
      MI->flat_insn->detail->tms320c64x.op_count++;
154
104k
    }
155
104k
  } else if (MCOperand_isImm(Op)) {
156
43.3k
    int64_t Imm = MCOperand_getImm(Op);
157
158
43.3k
    if (Imm >= 0) {
159
35.6k
      if (Imm > HEX_THRESHOLD)
160
21.2k
        SStream_concat(O, "0x%"PRIx64, Imm);
161
14.4k
      else
162
14.4k
        SStream_concat(O, "%"PRIu64, Imm);
163
35.6k
    } else {
164
7.64k
      if (Imm < -HEX_THRESHOLD)
165
6.46k
        SStream_concat(O, "-0x%"PRIx64, -Imm);
166
1.17k
      else
167
1.17k
        SStream_concat(O, "-%"PRIu64, -Imm);
168
7.64k
    }
169
170
43.3k
    if (MI->csh->detail) {
171
43.3k
      MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS320C64X_OP_IMM;
172
43.3k
      MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].imm = Imm;
173
43.3k
      MI->flat_insn->detail->tms320c64x.op_count++;
174
43.3k
    }
175
43.3k
  }
176
147k
}
177
178
static void printMemOperand(MCInst *MI, unsigned OpNo, SStream *O)
179
8.19k
{
180
8.19k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
181
8.19k
  int64_t Val = MCOperand_getImm(Op);
182
8.19k
  unsigned scaled, base, offset, mode, unit;
183
8.19k
  cs_tms320c64x *tms320c64x;
184
8.19k
  char st, nd;
185
186
8.19k
  scaled = (Val >> 19) & 1;
187
8.19k
  base = (Val >> 12) & 0x7f;
188
8.19k
  offset = (Val >> 5) & 0x7f;
189
8.19k
  mode = (Val >> 1) & 0xf;
190
8.19k
  unit = Val & 1;
191
192
8.19k
  if (scaled) {
193
7.11k
    st = '[';
194
7.11k
    nd = ']';
195
7.11k
  } else {
196
1.08k
    st = '(';
197
1.08k
    nd = ')';
198
1.08k
  }
199
200
8.19k
  switch(mode) {
201
1.14k
    case 0:
202
1.14k
      SStream_concat(O, "*-%s%c%u%c", getRegisterName(base), st, offset, nd);
203
1.14k
      break;
204
599
    case 1:
205
599
      SStream_concat(O, "*+%s%c%u%c", getRegisterName(base), st, offset, nd);
206
599
      break;
207
651
    case 4:
208
651
      SStream_concat(O, "*-%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
209
651
      break;
210
389
    case 5:
211
389
      SStream_concat(O, "*+%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
212
389
      break;
213
474
    case 8:
214
474
      SStream_concat(O, "*--%s%c%u%c", getRegisterName(base), st, offset, nd);
215
474
      break;
216
788
    case 9:
217
788
      SStream_concat(O, "*++%s%c%u%c", getRegisterName(base), st, offset, nd);
218
788
      break;
219
919
    case 10:
220
919
      SStream_concat(O, "*%s--%c%u%c", getRegisterName(base), st, offset, nd);
221
919
      break;
222
1.33k
    case 11:
223
1.33k
      SStream_concat(O, "*%s++%c%u%c", getRegisterName(base), st, offset, nd);
224
1.33k
      break;
225
729
    case 12:
226
729
      SStream_concat(O, "*--%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
227
729
      break;
228
573
    case 13:
229
573
      SStream_concat(O, "*++%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
230
573
      break;
231
359
    case 14:
232
359
      SStream_concat(O, "*%s--%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
233
359
      break;
234
244
    case 15:
235
244
      SStream_concat(O, "*%s++%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd);
236
244
      break;
237
8.19k
  }
238
239
8.19k
  if (MI->csh->detail) {
240
8.19k
    tms320c64x = &MI->flat_insn->detail->tms320c64x;
241
242
8.19k
    tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM;
243
8.19k
    tms320c64x->operands[tms320c64x->op_count].mem.base = base;
244
8.19k
    tms320c64x->operands[tms320c64x->op_count].mem.disp = offset;
245
8.19k
    tms320c64x->operands[tms320c64x->op_count].mem.unit = unit + 1;
246
8.19k
    tms320c64x->operands[tms320c64x->op_count].mem.scaled = scaled;
247
8.19k
    switch(mode) {
248
1.14k
      case 0:
249
1.14k
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
250
1.14k
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
251
1.14k
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
252
1.14k
        break;
253
599
      case 1:
254
599
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
255
599
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
256
599
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
257
599
        break;
258
651
      case 4:
259
651
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
260
651
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
261
651
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
262
651
        break;
263
389
      case 5:
264
389
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
265
389
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
266
389
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
267
389
        break;
268
474
      case 8:
269
474
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
270
474
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
271
474
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
272
474
        break;
273
788
      case 9:
274
788
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
275
788
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
276
788
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
277
788
        break;
278
919
      case 10:
279
919
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
280
919
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
281
919
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
282
919
        break;
283
1.33k
      case 11:
284
1.33k
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
285
1.33k
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
286
1.33k
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
287
1.33k
        break;
288
729
      case 12:
289
729
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
290
729
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
291
729
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
292
729
        break;
293
573
      case 13:
294
573
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
295
573
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
296
573
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE;
297
573
        break;
298
359
      case 14:
299
359
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
300
359
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW;
301
359
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
302
359
        break;
303
244
      case 15:
304
244
        tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER;
305
244
        tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
306
244
        tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST;
307
244
        break;
308
8.19k
    }
309
8.19k
    tms320c64x->op_count++;
310
8.19k
  }
311
8.19k
}
312
313
static void printMemOperand2(MCInst *MI, unsigned OpNo, SStream *O)
314
8.48k
{
315
8.48k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
316
8.48k
  int64_t Val = MCOperand_getImm(Op);
317
8.48k
  uint16_t offset;
318
8.48k
  unsigned basereg;
319
8.48k
  cs_tms320c64x *tms320c64x;
320
321
8.48k
  basereg = Val & 0x7f;
322
8.48k
  offset = (Val >> 7) & 0x7fff;
323
8.48k
  SStream_concat(O, "*+%s[0x%x]", getRegisterName(basereg), offset);
324
325
8.48k
  if (MI->csh->detail) {
326
8.48k
    tms320c64x = &MI->flat_insn->detail->tms320c64x;
327
328
8.48k
    tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM;
329
8.48k
    tms320c64x->operands[tms320c64x->op_count].mem.base = basereg;
330
8.48k
    tms320c64x->operands[tms320c64x->op_count].mem.unit = 2;
331
8.48k
    tms320c64x->operands[tms320c64x->op_count].mem.disp = offset;
332
8.48k
    tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT;
333
8.48k
    tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW;
334
8.48k
    tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO;
335
8.48k
    tms320c64x->op_count++;
336
8.48k
  }
337
8.48k
}
338
339
static void printRegPair(MCInst *MI, unsigned OpNo, SStream *O)
340
22.9k
{
341
22.9k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
342
22.9k
  unsigned reg = MCOperand_getReg(Op);
343
22.9k
  cs_tms320c64x *tms320c64x;
344
345
22.9k
  SStream_concat(O, "%s:%s", getRegisterName(reg + 1), getRegisterName(reg));
346
347
22.9k
  if (MI->csh->detail) {
348
22.9k
    tms320c64x = &MI->flat_insn->detail->tms320c64x;
349
350
22.9k
    tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_REGPAIR;
351
22.9k
    tms320c64x->operands[tms320c64x->op_count].reg = reg;
352
22.9k
    tms320c64x->op_count++;
353
22.9k
  }
354
22.9k
}
355
356
static bool printAliasInstruction(MCInst *MI, SStream *O, MCRegisterInfo *MRI)
357
77.8k
{
358
77.8k
  unsigned opcode = MCInst_getOpcode(MI);
359
77.8k
  MCOperand *op;
360
361
77.8k
  switch(opcode) {
362
    /* ADD.Dx -i, x, y -> SUB.Dx x, i, y */
363
328
    case TMS320C64x_ADD_d2_rir:
364
    /* ADD.L -i, x, y -> SUB.L x, i, y */
365
820
    case TMS320C64x_ADD_l1_irr:
366
1.27k
    case TMS320C64x_ADD_l1_ipp:
367
    /* ADD.S -i, x, y -> SUB.S x, i, y */
368
2.00k
    case TMS320C64x_ADD_s1_irr:
369
2.00k
      if ((MCInst_getNumOperands(MI) == 3) &&
370
2.00k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
371
2.00k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
372
2.00k
        MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
373
2.00k
        (MCOperand_getImm(MCInst_getOperand(MI, 2)) < 0)) {
374
375
699
        MCInst_setOpcodePub(MI, TMS320C64X_INS_SUB);
376
699
        op = MCInst_getOperand(MI, 2);
377
699
        MCOperand_setImm(op, -MCOperand_getImm(op));
378
379
699
        SStream_concat0(O, "SUB\t");
380
699
        printOperand(MI, 1, O);
381
699
        SStream_concat0(O, ", ");
382
699
        printOperand(MI, 2, O);
383
699
        SStream_concat0(O, ", ");
384
699
        printOperand(MI, 0, O);
385
386
699
        return true;
387
699
      }
388
1.30k
      break;
389
77.8k
  }
390
77.1k
  switch(opcode) {
391
    /* ADD.D 0, x, y -> MV.D x, y */
392
486
    case TMS320C64x_ADD_d1_rir:
393
    /* OR.D x, 0, y -> MV.D x, y */
394
923
    case TMS320C64x_OR_d2_rir:
395
    /* ADD.L 0, x, y -> MV.L x, y */
396
1.22k
    case TMS320C64x_ADD_l1_irr:
397
1.36k
    case TMS320C64x_ADD_l1_ipp:
398
    /* OR.L 0, x, y -> MV.L x, y */
399
1.85k
    case TMS320C64x_OR_l1_irr:
400
    /* ADD.S 0, x, y -> MV.S x, y */
401
2.56k
    case TMS320C64x_ADD_s1_irr:
402
    /* OR.S 0, x, y -> MV.S x, y */
403
3.05k
    case TMS320C64x_OR_s1_irr:
404
3.05k
      if ((MCInst_getNumOperands(MI) == 3) &&
405
3.05k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
406
3.05k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
407
3.05k
        MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
408
3.05k
        (MCOperand_getImm(MCInst_getOperand(MI, 2)) == 0)) {
409
410
243
        MCInst_setOpcodePub(MI, TMS320C64X_INS_MV);
411
243
        MI->size--;
412
413
243
        SStream_concat0(O, "MV\t");
414
243
        printOperand(MI, 1, O);
415
243
        SStream_concat0(O, ", ");
416
243
        printOperand(MI, 0, O);
417
418
243
        return true;
419
243
      }
420
2.80k
      break;
421
77.1k
  }
422
76.9k
  switch(opcode) {
423
    /* XOR.D -1, x, y -> NOT.D x, y */
424
528
    case TMS320C64x_XOR_d2_rir:
425
    /* XOR.L -1, x, y -> NOT.L x, y */
426
768
    case TMS320C64x_XOR_l1_irr:
427
    /* XOR.S -1, x, y -> NOT.S x, y */
428
1.56k
    case TMS320C64x_XOR_s1_irr:
429
1.56k
      if ((MCInst_getNumOperands(MI) == 3) &&
430
1.56k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
431
1.56k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
432
1.56k
        MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
433
1.56k
        (MCOperand_getImm(MCInst_getOperand(MI, 2)) == -1)) {
434
435
262
        MCInst_setOpcodePub(MI, TMS320C64X_INS_NOT);
436
262
        MI->size--;
437
438
262
        SStream_concat0(O, "NOT\t");
439
262
        printOperand(MI, 1, O);
440
262
        SStream_concat0(O, ", ");
441
262
        printOperand(MI, 0, O);
442
443
262
        return true;
444
262
      }
445
1.29k
      break;
446
76.9k
  }
447
76.6k
  switch(opcode) {
448
    /* MVK.D 0, x -> ZERO.D x */
449
572
    case TMS320C64x_MVK_d1_rr:
450
    /* MVK.L 0, x -> ZERO.L x */
451
2.01k
    case TMS320C64x_MVK_l2_ir:
452
2.01k
      if ((MCInst_getNumOperands(MI) == 2) &&
453
2.01k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
454
2.01k
        MCOperand_isImm(MCInst_getOperand(MI, 1)) &&
455
2.01k
        (MCOperand_getImm(MCInst_getOperand(MI, 1)) == 0)) {
456
457
540
        MCInst_setOpcodePub(MI, TMS320C64X_INS_ZERO);
458
540
        MI->size--;
459
460
540
        SStream_concat0(O, "ZERO\t");
461
540
        printOperand(MI, 0, O);
462
463
540
        return true;
464
540
      }
465
1.47k
      break;
466
76.6k
  }
467
76.1k
  switch(opcode) {
468
    /* SUB.L x, x, y -> ZERO.L y */
469
928
    case TMS320C64x_SUB_l1_rrp_x1:
470
    /* SUB.S x, x, y -> ZERO.S y */
471
1.08k
    case TMS320C64x_SUB_s1_rrr:
472
1.08k
      if ((MCInst_getNumOperands(MI) == 3) &&
473
1.08k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
474
1.08k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
475
1.08k
        MCOperand_isReg(MCInst_getOperand(MI, 2)) &&
476
1.08k
        (MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2)))) {
477
478
366
        MCInst_setOpcodePub(MI, TMS320C64X_INS_ZERO);
479
366
        MI->size -= 2;
480
481
366
        SStream_concat0(O, "ZERO\t");
482
366
        printOperand(MI, 0, O);
483
484
366
        return true;
485
366
      }
486
714
      break;
487
76.1k
  }
488
75.7k
  switch(opcode) {
489
    /* SUB.L 0, x, y -> NEG.L x, y */
490
902
    case TMS320C64x_SUB_l1_irr:
491
1.48k
    case TMS320C64x_SUB_l1_ipp:
492
    /* SUB.S 0, x, y -> NEG.S x, y */
493
1.60k
    case TMS320C64x_SUB_s1_irr:
494
1.60k
      if ((MCInst_getNumOperands(MI) == 3) &&
495
1.60k
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
496
1.60k
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
497
1.60k
        MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
498
1.60k
        (MCOperand_getImm(MCInst_getOperand(MI, 2)) == 0)) {
499
500
291
        MCInst_setOpcodePub(MI, TMS320C64X_INS_NEG);
501
291
        MI->size--;
502
503
291
        SStream_concat0(O, "NEG\t");
504
291
        printOperand(MI, 1, O);
505
291
        SStream_concat0(O, ", ");
506
291
        printOperand(MI, 0, O);
507
508
291
        return true;
509
291
      }
510
1.31k
      break;
511
75.7k
  }
512
75.4k
  switch(opcode) {
513
    /* PACKLH2.L x, x, y -> SWAP2.L x, y */
514
434
    case TMS320C64x_PACKLH2_l1_rrr_x2:
515
    /* PACKLH2.S x, x, y -> SWAP2.S x, y */
516
852
    case TMS320C64x_PACKLH2_s1_rrr:
517
852
      if ((MCInst_getNumOperands(MI) == 3) &&
518
852
        MCOperand_isReg(MCInst_getOperand(MI, 0)) &&
519
852
        MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
520
852
        MCOperand_isReg(MCInst_getOperand(MI, 2)) &&
521
852
        (MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2)))) {
522
523
50
        MCInst_setOpcodePub(MI, TMS320C64X_INS_SWAP2);
524
50
        MI->size--;
525
526
50
        SStream_concat0(O, "SWAP2\t");
527
50
        printOperand(MI, 1, O);
528
50
        SStream_concat0(O, ", ");
529
50
        printOperand(MI, 0, O);
530
531
50
        return true;
532
50
      }
533
802
      break;
534
75.4k
  }
535
75.4k
  switch(opcode) {
536
    /* NOP 16 -> IDLE */
537
    /* NOP 1 -> NOP */
538
1.80k
    case TMS320C64x_NOP_n:
539
1.80k
      if ((MCInst_getNumOperands(MI) == 1) &&
540
1.80k
        MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
541
1.80k
        (MCOperand_getReg(MCInst_getOperand(MI, 0)) == 16)) {
542
543
281
        MCInst_setOpcodePub(MI, TMS320C64X_INS_IDLE);
544
281
        MI->size--;
545
546
281
        SStream_concat0(O, "IDLE");
547
548
281
        return true;
549
281
      }
550
1.52k
      if ((MCInst_getNumOperands(MI) == 1) &&
551
1.52k
        MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
552
1.52k
        (MCOperand_getReg(MCInst_getOperand(MI, 0)) == 1)) {
553
554
1.15k
        MI->size--;
555
556
1.15k
        SStream_concat0(O, "NOP");
557
558
1.15k
        return true;
559
1.15k
      }
560
366
      break;
561
75.4k
  }
562
563
73.9k
  return false;
564
75.4k
}
565
566
void TMS320C64x_printInst(MCInst *MI, SStream *O, void *Info)
567
77.8k
{
568
77.8k
  if (!printAliasInstruction(MI, O, Info))
569
73.9k
    printInstruction(MI, O, Info);
570
77.8k
}
571
572
#endif