Coverage Report

Created: 2026-02-26 07:11

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