Coverage Report

Created: 2025-12-14 06:36

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