Coverage Report

Created: 2024-09-08 06:22

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