Coverage Report

Created: 2026-01-17 06:58

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