Coverage Report

Created: 2026-08-28 06:16

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