Coverage Report

Created: 2026-04-12 06:30

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