Coverage Report

Created: 2025-07-11 06:32

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