Coverage Report

Created: 2026-03-03 06:15

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