Coverage Report

Created: 2025-11-24 06:12

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