Coverage Report

Created: 2026-08-14 06:51

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