Coverage Report

Created: 2026-07-15 06:35

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