Coverage Report

Created: 2025-08-28 06:43

/src/capstonenext/arch/Mips/MipsInstPrinter.c
Line
Count
Source (jump to first uncovered line)
1
/* Capstone Disassembly Engine, http://www.capstone-engine.org */
2
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2022, */
3
/*    Rot127 <unisono@quyllur.org> 2022-2023 */
4
/* Automatically translated source file from LLVM. */
5
6
/* LLVM-commit: <commit> */
7
/* LLVM-tag: <tag> */
8
9
/* Only small edits allowed. */
10
/* For multiple similar edits, please create a Patch for the translator. */
11
12
/* Capstone's C++ file translator: */
13
/* https://github.com/capstone-engine/capstone/tree/next/suite/auto-sync */
14
15
//===-- MipsInstPrinter.cpp - Convert Mips MCInst to assembly syntax ------===//
16
//
17
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
18
// See https://llvm.org/LICENSE.txt for license information.
19
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
20
//
21
//===----------------------------------------------------------------------===//
22
//
23
// This class prints an Mips MCInst to a .s file.
24
//
25
//===----------------------------------------------------------------------===//
26
27
#include <stdio.h>
28
#include <string.h>
29
#include <stdlib.h>
30
#include <capstone/platform.h>
31
32
#include "MipsMapping.h"
33
#include "MipsInstPrinter.h"
34
35
#define GET_SUBTARGETINFO_ENUM
36
#include "MipsGenSubtargetInfo.inc"
37
38
#define GET_INSTRINFO_ENUM
39
#include "MipsGenInstrInfo.inc"
40
41
#define GET_REGINFO_ENUM
42
#include "MipsGenRegisterInfo.inc"
43
44
15.0k
#define CONCAT(a, b) CONCAT_(a, b)
45
15.0k
#define CONCAT_(a, b) a##_##b
46
47
#define DEBUG_TYPE "asm-printer"
48
49
#define PRINT_ALIAS_INSTR
50
#include "MipsGenAsmWriter.inc"
51
52
static bool isReg(const MCInst *MI, unsigned OpNo, unsigned R)
53
6.84k
{
54
6.84k
  return MCOperand_getReg(MCInst_getOperand((MCInst *)MI, (OpNo))) == R;
55
6.84k
}
56
57
static const char *MipsFCCToString(Mips_CondCode CC)
58
0
{
59
0
  switch (CC) {
60
0
  case Mips_FCOND_F:
61
0
  case Mips_FCOND_T:
62
0
    return "f";
63
0
  case Mips_FCOND_UN:
64
0
  case Mips_FCOND_OR:
65
0
    return "un";
66
0
  case Mips_FCOND_OEQ:
67
0
  case Mips_FCOND_UNE:
68
0
    return "eq";
69
0
  case Mips_FCOND_UEQ:
70
0
  case Mips_FCOND_ONE:
71
0
    return "ueq";
72
0
  case Mips_FCOND_OLT:
73
0
  case Mips_FCOND_UGE:
74
0
    return "olt";
75
0
  case Mips_FCOND_ULT:
76
0
  case Mips_FCOND_OGE:
77
0
    return "ult";
78
0
  case Mips_FCOND_OLE:
79
0
  case Mips_FCOND_UGT:
80
0
    return "ole";
81
0
  case Mips_FCOND_ULE:
82
0
  case Mips_FCOND_OGT:
83
0
    return "ule";
84
0
  case Mips_FCOND_SF:
85
0
  case Mips_FCOND_ST:
86
0
    return "sf";
87
0
  case Mips_FCOND_NGLE:
88
0
  case Mips_FCOND_GLE:
89
0
    return "ngle";
90
0
  case Mips_FCOND_SEQ:
91
0
  case Mips_FCOND_SNE:
92
0
    return "seq";
93
0
  case Mips_FCOND_NGL:
94
0
  case Mips_FCOND_GL:
95
0
    return "ngl";
96
0
  case Mips_FCOND_LT:
97
0
  case Mips_FCOND_NLT:
98
0
    return "lt";
99
0
  case Mips_FCOND_NGE:
100
0
  case Mips_FCOND_GE:
101
0
    return "nge";
102
0
  case Mips_FCOND_LE:
103
0
  case Mips_FCOND_NLE:
104
0
    return "le";
105
0
  case Mips_FCOND_NGT:
106
0
  case Mips_FCOND_GT:
107
0
    return "ngt";
108
0
  }
109
0
  CS_ASSERT_RET_VAL(0 && "Impossible condition code!", NULL);
110
0
  return "";
111
0
}
112
113
const char *Mips_LLVM_getRegisterName(unsigned RegNo, bool noRegName);
114
115
static void printRegName(MCInst *MI, SStream *OS, MCRegister Reg)
116
195k
{
117
195k
  int syntax_opt = MI->csh->syntax;
118
195k
  if (!(syntax_opt & CS_OPT_SYNTAX_NO_DOLLAR)) {
119
195k
    SStream_concat1(OS, '$');
120
195k
  }
121
195k
  SStream_concat0(OS, Mips_LLVM_getRegisterName(
122
195k
            Reg, syntax_opt & CS_OPT_SYNTAX_NOREGNAME));
123
195k
}
124
125
static void patch_cs_printer(MCInst *MI, SStream *O)
126
107k
{
127
  // replace '# 16 bit inst' to empty.
128
107k
  SStream_replc(O, '#', 0);
129
107k
  SStream_trimls(O);
130
131
107k
  if (MI->csh->syntax & CS_OPT_SYNTAX_NO_DOLLAR) {
132
0
    char *dollar = strchr(O->buffer, '$');
133
0
    if (!dollar) {
134
0
      return;
135
0
    }
136
0
    size_t dollar_len = strlen(dollar + 1);
137
    // to include `\0`
138
0
    memmove(dollar, dollar + 1, dollar_len + 1);
139
0
  }
140
107k
}
141
142
static void patch_cs_detail_operand_reg(cs_mips_op *op, unsigned reg,
143
          unsigned access)
144
327
{
145
327
  op->type = MIPS_OP_REG;
146
327
  op->reg = reg;
147
327
  op->is_reglist = false;
148
327
  op->access = access;
149
327
}
150
151
static void patch_cs_details(MCInst *MI)
152
107k
{
153
107k
  if (!detail_is_set(MI))
154
0
    return;
155
156
107k
  cs_mips_op *op0 = NULL, *op1 = NULL, *op2 = NULL;
157
107k
  unsigned opcode = MCInst_getOpcode(MI);
158
107k
  unsigned n_ops = MCInst_getNumOperands(MI);
159
160
107k
  switch (opcode) {
161
  /* mips r2 to r5 only 64bit */
162
34
  case Mips_DSDIV: /// ddiv $$zero, $rs, $rt
163
    /* fall-thru */
164
58
  case Mips_DUDIV: /// ddivu $$zero, $rs, $rt
165
58
    if (n_ops != 2) {
166
0
      return;
167
0
    }
168
58
    Mips_inc_op_count(MI);
169
58
    op0 = Mips_get_detail_op(MI, -3);
170
58
    op1 = Mips_get_detail_op(MI, -2);
171
58
    op2 = Mips_get_detail_op(MI, -1);
172
    // move all details by one and add $zero reg
173
58
    *op2 = *op1;
174
58
    *op1 = *op0;
175
58
    patch_cs_detail_operand_reg(op0, MIPS_REG_ZERO_64, CS_AC_WRITE);
176
58
    return;
177
178
  /* mips r2 to r5 only */
179
18
  case Mips_SDIV: /// div $$zero, $rs, $rt
180
    /* fall-thru */
181
37
  case Mips_UDIV: /// divu $$zero, $rs, $rt
182
    /* fall-thru */
183
  /* microMIPS only */
184
73
  case Mips_SDIV_MM: /// div $$zero, $rs, $rt
185
    /* fall-thru */
186
269
  case Mips_UDIV_MM: /// divu $$zero, $rs, $rt
187
    /* fall-thru */
188
189
  /* MIPS16 only */
190
269
  case Mips_DivRxRy16: /// div $$zero, $rx, $ry
191
    /* fall-thru */
192
269
  case Mips_DivuRxRy16: /// divu $$zero, $rx, $ry
193
269
    if (n_ops != 2) {
194
0
      return;
195
0
    }
196
269
    Mips_inc_op_count(MI);
197
269
    op0 = Mips_get_detail_op(MI, -3);
198
269
    op1 = Mips_get_detail_op(MI, -2);
199
269
    op2 = Mips_get_detail_op(MI, -1);
200
    // move all details by one and add $zero reg
201
269
    *op2 = *op1;
202
269
    *op1 = *op0;
203
269
    patch_cs_detail_operand_reg(op0, MIPS_REG_ZERO, CS_AC_WRITE);
204
269
    return;
205
0
  case Mips_AddiuSpImm16: /// addiu $$sp, imm8
206
    /* fall-thru */
207
0
  case Mips_AddiuSpImmX16: /// addiu $$sp, imm8
208
0
    if (n_ops != 1) {
209
0
      return;
210
0
    }
211
0
    Mips_inc_op_count(MI);
212
0
    op0 = Mips_get_detail_op(MI, -2);
213
0
    op1 = Mips_get_detail_op(MI, -1);
214
    // move all details by one and add $sp reg
215
0
    *op1 = *op0;
216
0
    patch_cs_detail_operand_reg(op0, MIPS_REG_SP, CS_AC_READ_WRITE);
217
0
    return;
218
0
  case Mips_JrcRa16: /// jrc $ra
219
    /* fall-thru */
220
0
  case Mips_JrRa16: /// jr $ra
221
0
    if (n_ops > 0) {
222
0
      return;
223
0
    }
224
0
    Mips_inc_op_count(MI);
225
0
    op0 = Mips_get_detail_op(MI, -1);
226
0
    patch_cs_detail_operand_reg(op0, MIPS_REG_RA, CS_AC_READ);
227
0
    return;
228
107k
  default:
229
107k
    return;
230
107k
  }
231
107k
}
232
233
void Mips_LLVM_printInst(MCInst *MI, uint64_t Address, SStream *O)
234
107k
{
235
107k
  bool useAliasDetails = map_use_alias_details(MI);
236
107k
  if (!useAliasDetails) {
237
0
    SStream_Close(O);
238
0
    printInstruction(MI, Address, O);
239
0
    SStream_Open(O);
240
0
    map_set_fill_detail_ops(MI, false);
241
0
  }
242
243
107k
  if (printAliasInstr(MI, Address, O) || printAlias4(MI, Address, O)) {
244
5.75k
    MCInst_setIsAlias(MI, true);
245
102k
  } else {
246
102k
    printInstruction(MI, Address, O);
247
102k
  }
248
249
107k
  patch_cs_printer(MI, O);
250
107k
  patch_cs_details(MI);
251
252
107k
  if (!useAliasDetails) {
253
0
    map_set_fill_detail_ops(MI, true);
254
0
  }
255
107k
}
256
257
void printOperand(MCInst *MI, unsigned OpNo, SStream *O)
258
235k
{
259
235k
  switch (MCInst_getOpcode(MI)) {
260
235k
  default:
261
235k
    break;
262
235k
  case Mips_AND16_NM:
263
0
  case Mips_XOR16_NM:
264
0
  case Mips_OR16_NM:
265
0
    if (MCInst_getNumOperands(MI) == 2 && OpNo == 2)
266
0
      OpNo = 0; // rt, rs -> rt, rs, rt
267
0
    break;
268
0
  case Mips_ADDu4x4_NM:
269
0
  case Mips_MUL4x4_NM:
270
0
    if (MCInst_getNumOperands(MI) == 2 && OpNo > 0)
271
0
      OpNo = OpNo - 1; // rt, rs -> rt, rt, rs
272
0
    break;
273
235k
  }
274
275
235k
  MCOperand *Op = MCInst_getOperand(MI, (OpNo));
276
235k
  if (MCOperand_isReg(Op)) {
277
189k
    add_cs_detail(MI, Mips_OP_GROUP_Operand, OpNo);
278
189k
    printRegName(MI, O, MCOperand_getReg(Op));
279
189k
    return;
280
189k
  }
281
282
46.0k
  if (MCOperand_isImm(Op)) {
283
46.0k
    switch (MCInst_getOpcode(MI)) {
284
0
    case Mips_LI48_NM:
285
0
    case Mips_ANDI16_NM:
286
0
    case Mips_ANDI_NM:
287
0
    case Mips_ORI_NM:
288
0
    case Mips_XORI_NM:
289
0
    case Mips_TEQ_NM:
290
0
    case Mips_TNE_NM:
291
0
    case Mips_SIGRIE_NM:
292
0
    case Mips_SDBBP_NM:
293
0
    case Mips_SDBBP16_NM:
294
0
    case Mips_BREAK_NM:
295
0
    case Mips_BREAK16_NM:
296
0
    case Mips_SYSCALL_NM:
297
0
    case Mips_SYSCALL16_NM:
298
0
    case Mips_WAIT_NM:
299
0
      CONCAT(printUImm, CONCAT(32, 0))
300
0
      (MI, OpNo, O);
301
0
      break;
302
46.0k
    default:
303
46.0k
      add_cs_detail(MI, Mips_OP_GROUP_Operand, OpNo);
304
46.0k
      printInt64(O, MCOperand_getImm(Op));
305
46.0k
      break;
306
46.0k
    }
307
46.0k
    return;
308
46.0k
  }
309
46.0k
}
310
311
static void printJumpOperand(MCInst *MI, unsigned OpNo, SStream *O)
312
2.26k
{
313
2.26k
  add_cs_detail(MI, Mips_OP_GROUP_JumpOperand, OpNo);
314
2.26k
  MCOperand *Op = MCInst_getOperand(MI, (OpNo));
315
2.26k
  if (MCOperand_isReg(Op))
316
0
    return printRegName(MI, O, MCOperand_getReg(Op));
317
318
  // only the upper bits are needed.
319
2.26k
  uint64_t Base = MI->address & ~0x0fffffffull;
320
2.26k
  uint64_t Target = MCOperand_getImm(Op);
321
2.26k
  printInt64(O, Base | Target);
322
2.26k
}
323
324
static void printBranchOperand(MCInst *MI, uint64_t Address, unsigned OpNo,
325
             SStream *O)
326
22.8k
{
327
22.8k
  add_cs_detail(MI, Mips_OP_GROUP_BranchOperand, OpNo);
328
22.8k
  MCOperand *Op = MCInst_getOperand(MI, (OpNo));
329
22.8k
  if (MCOperand_isReg(Op))
330
636
    return printRegName(MI, O, MCOperand_getReg(Op));
331
332
22.1k
  uint64_t Target = Address + MCOperand_getImm(Op);
333
22.1k
  printInt64(O, Target);
334
22.1k
}
335
336
#define DEFINE_printUImm(Bits) \
337
  static void CONCAT(printUImm, CONCAT(Bits, 0))(MCInst * MI, int opNum, \
338
                   SStream *O) \
339
14.4k
  { \
340
14.4k
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
14.4k
            opNum); \
342
14.4k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
14.4k
    if (MCOperand_isImm(MO)) { \
344
14.4k
      uint64_t Imm = MCOperand_getImm(MO); \
345
14.4k
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
14.4k
      printUInt64(O, Imm); \
347
14.4k
      return; \
348
14.4k
    } \
349
14.4k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_10_0
Line
Count
Source
339
1.48k
  { \
340
1.48k
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
1.48k
            opNum); \
342
1.48k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
1.48k
    if (MCOperand_isImm(MO)) { \
344
1.48k
      uint64_t Imm = MCOperand_getImm(MO); \
345
1.48k
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
1.48k
      printUInt64(O, Imm); \
347
1.48k
      return; \
348
1.48k
    } \
349
1.48k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_4_0
Line
Count
Source
339
943
  { \
340
943
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
943
            opNum); \
342
943
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
943
    if (MCOperand_isImm(MO)) { \
344
943
      uint64_t Imm = MCOperand_getImm(MO); \
345
943
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
943
      printUInt64(O, Imm); \
347
943
      return; \
348
943
    } \
349
943
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_5_0
Line
Count
Source
339
3.09k
  { \
340
3.09k
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
3.09k
            opNum); \
342
3.09k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
3.09k
    if (MCOperand_isImm(MO)) { \
344
3.09k
      uint64_t Imm = MCOperand_getImm(MO); \
345
3.09k
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
3.09k
      printUInt64(O, Imm); \
347
3.09k
      return; \
348
3.09k
    } \
349
3.09k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_26_0
MipsInstPrinter.c:printUImm_8_0
Line
Count
Source
339
515
  { \
340
515
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
515
            opNum); \
342
515
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
515
    if (MCOperand_isImm(MO)) { \
344
515
      uint64_t Imm = MCOperand_getImm(MO); \
345
515
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
515
      printUInt64(O, Imm); \
347
515
      return; \
348
515
    } \
349
515
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_12_0
MipsInstPrinter.c:printUImm_20_0
Line
Count
Source
339
219
  { \
340
219
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
219
            opNum); \
342
219
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
219
    if (MCOperand_isImm(MO)) { \
344
219
      uint64_t Imm = MCOperand_getImm(MO); \
345
219
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
219
      printUInt64(O, Imm); \
347
219
      return; \
348
219
    } \
349
219
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_16_0
Line
Count
Source
339
3.84k
  { \
340
3.84k
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
3.84k
            opNum); \
342
3.84k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
3.84k
    if (MCOperand_isImm(MO)) { \
344
3.84k
      uint64_t Imm = MCOperand_getImm(MO); \
345
3.84k
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
3.84k
      printUInt64(O, Imm); \
347
3.84k
      return; \
348
3.84k
    } \
349
3.84k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_32_0
MipsInstPrinter.c:printUImm_7_0
Line
Count
Source
339
205
  { \
340
205
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
205
            opNum); \
342
205
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
205
    if (MCOperand_isImm(MO)) { \
344
205
      uint64_t Imm = MCOperand_getImm(MO); \
345
205
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
205
      printUInt64(O, Imm); \
347
205
      return; \
348
205
    } \
349
205
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_2_0
Line
Count
Source
339
962
  { \
340
962
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
962
            opNum); \
342
962
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
962
    if (MCOperand_isImm(MO)) { \
344
962
      uint64_t Imm = MCOperand_getImm(MO); \
345
962
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
962
      printUInt64(O, Imm); \
347
962
      return; \
348
962
    } \
349
962
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_1_0
Line
Count
Source
339
621
  { \
340
621
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
621
            opNum); \
342
621
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
621
    if (MCOperand_isImm(MO)) { \
344
621
      uint64_t Imm = MCOperand_getImm(MO); \
345
621
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
621
      printUInt64(O, Imm); \
347
621
      return; \
348
621
    } \
349
621
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_3_0
Line
Count
Source
339
1.50k
  { \
340
1.50k
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
1.50k
            opNum); \
342
1.50k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
1.50k
    if (MCOperand_isImm(MO)) { \
344
1.50k
      uint64_t Imm = MCOperand_getImm(MO); \
345
1.50k
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
1.50k
      printUInt64(O, Imm); \
347
1.50k
      return; \
348
1.50k
    } \
349
1.50k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_0_0
Line
Count
Source
339
482
  { \
340
482
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
482
            opNum); \
342
482
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
482
    if (MCOperand_isImm(MO)) { \
344
482
      uint64_t Imm = MCOperand_getImm(MO); \
345
482
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
482
      printUInt64(O, Imm); \
347
482
      return; \
348
482
    } \
349
482
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
MipsInstPrinter.c:printUImm_6_0
Line
Count
Source
339
540
  { \
340
540
    add_cs_detail(MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
341
540
            opNum); \
342
540
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
343
540
    if (MCOperand_isImm(MO)) { \
344
540
      uint64_t Imm = MCOperand_getImm(MO); \
345
540
      Imm &= (((uint64_t)1) << Bits) - 1; \
346
540
      printUInt64(O, Imm); \
347
540
      return; \
348
540
    } \
349
540
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
350
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
351
0
  }
352
353
#define DEFINE_printUImm_2(Bits, Offset) \
354
  static void CONCAT(printUImm, CONCAT(Bits, Offset))( \
355
    MCInst * MI, int opNum, SStream *O) \
356
592
  { \
357
592
    add_cs_detail( \
358
592
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, Offset)), \
359
592
      opNum); \
360
592
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
361
592
    if (MCOperand_isImm(MO)) { \
362
592
      uint64_t Imm = MCOperand_getImm(MO); \
363
592
      Imm -= Offset; \
364
592
      Imm &= (1 << Bits) - 1; \
365
592
      Imm += Offset; \
366
592
      printUInt64(O, Imm); \
367
592
      return; \
368
592
    } \
369
592
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
370
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
371
0
  }
MipsInstPrinter.c:printUImm_2_1
Line
Count
Source
356
263
  { \
357
263
    add_cs_detail( \
358
263
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, Offset)), \
359
263
      opNum); \
360
263
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
361
263
    if (MCOperand_isImm(MO)) { \
362
263
      uint64_t Imm = MCOperand_getImm(MO); \
363
263
      Imm -= Offset; \
364
263
      Imm &= (1 << Bits) - 1; \
365
263
      Imm += Offset; \
366
263
      printUInt64(O, Imm); \
367
263
      return; \
368
263
    } \
369
263
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
370
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
371
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_5_32
MipsInstPrinter.c:printUImm_5_1
Line
Count
Source
356
329
  { \
357
329
    add_cs_detail( \
358
329
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, Offset)), \
359
329
      opNum); \
360
329
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
361
329
    if (MCOperand_isImm(MO)) { \
362
329
      uint64_t Imm = MCOperand_getImm(MO); \
363
329
      Imm -= Offset; \
364
329
      Imm &= (1 << Bits) - 1; \
365
329
      Imm += Offset; \
366
329
      printUInt64(O, Imm); \
367
329
      return; \
368
329
    } \
369
329
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
370
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
371
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_6_1
Unexecuted instantiation: MipsInstPrinter.c:printUImm_5_33
Unexecuted instantiation: MipsInstPrinter.c:printUImm_6_2
372
373
DEFINE_printUImm(0);
374
DEFINE_printUImm(1);
375
DEFINE_printUImm(10);
376
DEFINE_printUImm(12);
377
DEFINE_printUImm(16);
378
DEFINE_printUImm(2);
379
DEFINE_printUImm(20);
380
DEFINE_printUImm(26);
381
DEFINE_printUImm(3);
382
DEFINE_printUImm(32);
383
DEFINE_printUImm(4);
384
DEFINE_printUImm(5);
385
DEFINE_printUImm(6);
386
DEFINE_printUImm(7);
387
DEFINE_printUImm(8);
388
DEFINE_printUImm_2(2, 1);
389
DEFINE_printUImm_2(5, 1);
390
DEFINE_printUImm_2(5, 32);
391
DEFINE_printUImm_2(5, 33);
392
DEFINE_printUImm_2(6, 1);
393
DEFINE_printUImm_2(6, 2);
394
395
static void printMemOperand(MCInst *MI, int opNum, SStream *O)
396
30.9k
{
397
  // Load/Store memory operands -- imm($reg)
398
  // If PIC target the target is loaded as the
399
  // pattern lw $25,%call16($28)
400
401
  // opNum can be invalid if instruction had reglist as operand.
402
  // MemOperand is always last operand of instruction (base + offset).
403
30.9k
  switch (MCInst_getOpcode(MI)) {
404
29.5k
  default:
405
29.5k
    break;
406
29.5k
  case Mips_SWM32_MM:
407
418
  case Mips_LWM32_MM:
408
620
  case Mips_SWM16_MM:
409
868
  case Mips_SWM16_MMR6:
410
1.07k
  case Mips_LWM16_MM:
411
1.35k
  case Mips_LWM16_MMR6:
412
1.35k
    opNum = MCInst_getNumOperands(MI) - 2;
413
1.35k
    break;
414
30.9k
  }
415
416
30.9k
  set_mem_access(MI, true);
417
  // Index register is encoded as immediate value
418
  // in case of nanoMIPS indexed instructions
419
30.9k
  switch (MCInst_getOpcode(MI)) {
420
  // No offset needed for paired LL/SC
421
0
  case Mips_LLWP_NM:
422
0
  case Mips_SCWP_NM:
423
0
    break;
424
0
  case Mips_LWX_NM:
425
0
  case Mips_LWXS_NM:
426
0
  case Mips_LWXS16_NM:
427
0
  case Mips_LBX_NM:
428
0
  case Mips_LBUX_NM:
429
0
  case Mips_LHX_NM:
430
0
  case Mips_LHUX_NM:
431
0
  case Mips_LHXS_NM:
432
0
  case Mips_LHUXS_NM:
433
0
  case Mips_SWX_NM:
434
0
  case Mips_SWXS_NM:
435
0
  case Mips_SBX_NM:
436
0
  case Mips_SHX_NM:
437
0
  case Mips_SHXS_NM:
438
0
    if (!MCOperand_isReg(MCInst_getOperand(MI, (opNum + 1)))) {
439
0
      add_cs_detail(MI, Mips_OP_GROUP_MemOperand,
440
0
              (opNum + 1));
441
0
      printRegName(MI, O,
442
0
             MCOperand_getImm(MCInst_getOperand(
443
0
               MI, (opNum + 1))));
444
0
      break;
445
0
    }
446
    // Fall through
447
30.9k
  default:
448
30.9k
    printOperand((MCInst *)MI, opNum + 1, O);
449
30.9k
    break;
450
30.9k
  }
451
30.9k
  SStream_concat0(O, "(");
452
30.9k
  printOperand((MCInst *)MI, opNum, O);
453
30.9k
  SStream_concat0(O, ")");
454
30.9k
  set_mem_access(MI, false);
455
30.9k
}
456
457
static void printMemOperandEA(MCInst *MI, int opNum, SStream *O)
458
0
{
459
  // when using stack locations for not load/store instructions
460
  // print the same way as all normal 3 operand instructions.
461
0
  printOperand((MCInst *)MI, opNum, O);
462
0
  SStream_concat0(O, ", ");
463
0
  printOperand((MCInst *)MI, opNum + 1, O);
464
0
}
465
466
static void printFCCOperand(MCInst *MI, int opNum, SStream *O)
467
0
{
468
0
  MCOperand *MO = MCInst_getOperand(MI, (opNum));
469
0
  SStream_concat0(O,
470
0
      MipsFCCToString((Mips_CondCode)MCOperand_getImm(MO)));
471
0
}
472
473
static bool printAlias(const char *Str, const MCInst *MI, uint64_t Address,
474
           unsigned OpNo, SStream *OS, bool IsBranch)
475
1.13k
{
476
1.13k
  SStream_concat(OS, "%s%s", "\t", Str);
477
1.13k
  SStream_concat0(OS, "\t");
478
1.13k
  if (IsBranch)
479
917
    printBranchOperand((MCInst *)MI, Address, OpNo, OS);
480
213
  else
481
213
    printOperand((MCInst *)MI, OpNo, OS);
482
1.13k
  return true;
483
1.13k
}
484
485
static bool printAlias2(const char *Str, const MCInst *MI, uint64_t Address,
486
      unsigned OpNo0, unsigned OpNo1, SStream *OS,
487
      bool IsBranch)
488
750
{
489
750
  printAlias(Str, MI, Address, OpNo0, OS, IsBranch);
490
750
  SStream_concat0(OS, ", ");
491
750
  if (IsBranch)
492
636
    printBranchOperand((MCInst *)MI, Address, OpNo1, OS);
493
114
  else
494
114
    printOperand((MCInst *)MI, OpNo1, OS);
495
750
  return true;
496
750
}
497
498
static bool printAlias3(const char *Str, const MCInst *MI, uint64_t Address,
499
      unsigned OpNo0, unsigned OpNo1, unsigned OpNo2,
500
      SStream *OS)
501
0
{
502
0
  printAlias(Str, MI, Address, OpNo0, OS, false);
503
0
  SStream_concat0(OS, ", ");
504
0
  printOperand((MCInst *)MI, OpNo1, OS);
505
0
  SStream_concat0(OS, ", ");
506
0
  printOperand((MCInst *)MI, OpNo2, OS);
507
0
  return true;
508
0
}
509
510
static bool printAlias4(const MCInst *MI, uint64_t Address, SStream *OS)
511
103k
{
512
103k
  switch (MCInst_getOpcode(MI)) {
513
1.61k
  case Mips_BEQ:
514
1.86k
  case Mips_BEQ_MM:
515
    // beq $zero, $zero, $L2 => b $L2
516
    // beq $r0, $zero, $L2 => beqz $r0, $L2
517
1.86k
    return (isReg(MI, 0, Mips_ZERO) && isReg(MI, 1, Mips_ZERO) &&
518
1.86k
      printAlias("b", MI, Address, 2, OS, true)) ||
519
1.86k
           (isReg(MI, 1, Mips_ZERO) &&
520
1.58k
      printAlias2("beqz", MI, Address, 0, 2, OS, true));
521
0
  case Mips_BEQ64:
522
    // beq $r0, $zero, $L2 => beqz $r0, $L2
523
0
    return isReg(MI, 1, Mips_ZERO_64) &&
524
0
           printAlias2("beqz", MI, Address, 0, 2, OS, true);
525
1.02k
  case Mips_BNE:
526
1.27k
  case Mips_BNE_MM:
527
    // bne $r0, $zero, $L2 => bnez $r0, $L2
528
1.27k
    return isReg(MI, 1, Mips_ZERO) &&
529
1.27k
           printAlias2("bnez", MI, Address, 0, 2, OS, true);
530
0
  case Mips_BNE64:
531
    // bne $r0, $zero, $L2 => bnez $r0, $L2
532
0
    return isReg(MI, 1, Mips_ZERO_64) &&
533
0
           printAlias2("bnez", MI, Address, 0, 2, OS, true);
534
116
  case Mips_BGEZAL:
535
    // bgezal $zero, $L1 => bal $L1
536
116
    return isReg(MI, 0, Mips_ZERO) &&
537
116
           printAlias("bal", MI, Address, 1, OS, true);
538
68
  case Mips_BC1T:
539
    // bc1t $fcc0, $L1 => bc1t $L1
540
68
    return isReg(MI, 0, Mips_FCC0) &&
541
68
           printAlias("bc1t", MI, Address, 1, OS, true);
542
741
  case Mips_BC1F:
543
    // bc1f $fcc0, $L1 => bc1f $L1
544
741
    return isReg(MI, 0, Mips_FCC0) &&
545
741
           printAlias("bc1f", MI, Address, 1, OS, true);
546
186
  case Mips_JALR:
547
    // jalr $zero, $r1 => jr $r1
548
    // jalr $ra, $r1 => jalr $r1
549
186
    return (isReg(MI, 0, Mips_ZERO) &&
550
186
      printAlias("jr", MI, Address, 1, OS, false)) ||
551
186
           (isReg(MI, 0, Mips_RA) &&
552
97
      printAlias("jalr", MI, Address, 1, OS, false));
553
0
  case Mips_JALR64:
554
    // jalr $zero, $r1 => jr $r1
555
    // jalr $ra, $r1 => jalr $r1
556
0
    return (isReg(MI, 0, Mips_ZERO_64) &&
557
0
      printAlias("jr", MI, Address, 1, OS, false)) ||
558
0
           (isReg(MI, 0, Mips_RA_64) &&
559
0
      printAlias("jalr", MI, Address, 1, OS, false));
560
77
  case Mips_NOR:
561
143
  case Mips_NOR_MM:
562
161
  case Mips_NOR_MMR6:
563
    // nor $r0, $r1, $zero => not $r0, $r1
564
161
    return isReg(MI, 2, Mips_ZERO) &&
565
161
           printAlias2("not", MI, Address, 0, 1, OS, false);
566
0
  case Mips_NOR64:
567
    // nor $r0, $r1, $zero => not $r0, $r1
568
0
    return isReg(MI, 2, Mips_ZERO_64) &&
569
0
           printAlias2("not", MI, Address, 0, 1, OS, false);
570
80
  case Mips_OR:
571
166
  case Mips_ADDu:
572
    // or $r0, $r1, $zero => move $r0, $r1
573
    // addu $r0, $r1, $zero => move $r0, $r1
574
166
    return isReg(MI, 2, Mips_ZERO) &&
575
166
           printAlias2("move", MI, Address, 0, 1, OS, false);
576
0
  case Mips_LI48_NM:
577
0
  case Mips_LI16_NM:
578
    // li[16/48] $r0, imm => li $r0, imm
579
0
    return printAlias2("li", MI, Address, 0, 1, OS, false);
580
0
  case Mips_ADDIU_NM:
581
0
  case Mips_ADDIUNEG_NM:
582
0
    if (isReg(MI, 1, Mips_ZERO_NM))
583
0
      return printAlias2("li", MI, Address, 0, 2, OS, false);
584
0
    else
585
0
      return printAlias3("addiu", MI, Address, 0, 1, 2, OS);
586
0
  case Mips_ADDIU48_NM:
587
0
  case Mips_ADDIURS5_NM:
588
0
  case Mips_ADDIUR1SP_NM:
589
0
  case Mips_ADDIUR2_NM:
590
0
  case Mips_ADDIUGPB_NM:
591
0
  case Mips_ADDIUGPW_NM:
592
0
    return printAlias3("addiu", MI, Address, 0, 1, 2, OS);
593
0
  case Mips_ANDI16_NM:
594
0
  case Mips_ANDI_NM:
595
    // andi[16/32] $r0, $r1, imm => andi $r0, $r1, imm
596
0
    return printAlias3("andi", MI, Address, 0, 1, 2, OS);
597
98.7k
  default:
598
98.7k
    return false;
599
103k
  }
600
103k
}
601
602
static void printRegisterList(MCInst *MI, int opNum, SStream *O)
603
1.35k
{
604
  // - 2 because register List is always first operand of instruction and it is
605
  // always followed by memory operand (base + offset).
606
1.35k
  add_cs_detail(MI, Mips_OP_GROUP_RegisterList, opNum);
607
7.42k
  for (int i = opNum, e = MCInst_getNumOperands(MI) - 2; i != e; ++i) {
608
6.06k
    if (i != opNum)
609
4.71k
      SStream_concat0(O, ", ");
610
6.06k
    printRegName(MI, O,
611
6.06k
           MCOperand_getReg(MCInst_getOperand(MI, (i))));
612
6.06k
  }
613
1.35k
}
614
615
static void printNanoMipsRegisterList(MCInst *MI, int OpNum, SStream *O)
616
0
{
617
0
  add_cs_detail(MI, Mips_OP_GROUP_NanoMipsRegisterList, OpNum);
618
0
  for (unsigned I = OpNum; I < MCInst_getNumOperands(MI); I++) {
619
0
    SStream_concat0(O, ", ");
620
0
    printRegName(MI, O,
621
0
           MCOperand_getReg(MCInst_getOperand(MI, (I))));
622
0
  }
623
0
}
624
625
static void printHi20(MCInst *MI, int OpNum, SStream *O)
626
0
{
627
0
  MCOperand *MO = MCInst_getOperand(MI, (OpNum));
628
0
  if (MCOperand_isImm(MO)) {
629
0
    add_cs_detail(MI, Mips_OP_GROUP_Hi20, OpNum);
630
0
    SStream_concat0(O, "%hi(");
631
0
    printUInt64(O, MCOperand_getImm(MO));
632
0
    SStream_concat0(O, ")");
633
0
  } else
634
0
    printOperand(MI, OpNum, O);
635
0
}
636
637
static void printHi20PCRel(MCInst *MI, uint64_t Address, int OpNum, SStream *O)
638
0
{
639
0
  MCOperand *MO = MCInst_getOperand(MI, (OpNum));
640
0
  if (MCOperand_isImm(MO)) {
641
0
    add_cs_detail(MI, Mips_OP_GROUP_Hi20PCRel, OpNum);
642
0
    SStream_concat0(O, "%pcrel_hi(");
643
0
    printUInt64(O, MCOperand_getImm(MO) + Address);
644
0
    SStream_concat0(O, ")");
645
0
  } else
646
0
    printOperand(MI, OpNum, O);
647
0
}
648
649
static void printPCRel(MCInst *MI, uint64_t Address, int OpNum, SStream *O)
650
0
{
651
0
  MCOperand *MO = MCInst_getOperand(MI, (OpNum));
652
0
  if (MCOperand_isImm(MO)) {
653
0
    add_cs_detail(MI, Mips_OP_GROUP_PCRel, OpNum);
654
0
    printUInt64(O, MCOperand_getImm(MO) + Address);
655
0
  } else
656
0
    printOperand(MI, OpNum, O);
657
0
}
658
659
const char *Mips_LLVM_getRegisterName(unsigned RegNo, bool noRegName)
660
222k
{
661
222k
  if (!RegNo || RegNo >= MIPS_REG_ENDING) {
662
0
    return NULL;
663
0
  }
664
222k
  if (noRegName) {
665
0
    return getRegisterName(RegNo);
666
0
  }
667
222k
  switch (RegNo) {
668
22.2k
  case MIPS_REG_AT:
669
22.9k
  case MIPS_REG_AT_64:
670
22.9k
    return "at";
671
8.27k
  case MIPS_REG_A0:
672
8.76k
  case MIPS_REG_A0_64:
673
8.76k
    return "a0";
674
6.56k
  case MIPS_REG_A1:
675
6.93k
  case MIPS_REG_A1_64:
676
6.93k
    return "a1";
677
7.95k
  case MIPS_REG_A2:
678
8.39k
  case MIPS_REG_A2_64:
679
8.39k
    return "a2";
680
6.55k
  case MIPS_REG_A3:
681
6.90k
  case MIPS_REG_A3_64:
682
6.90k
    return "a3";
683
1.77k
  case MIPS_REG_K0:
684
2.21k
  case MIPS_REG_K0_64:
685
2.21k
    return "k0";
686
3.83k
  case MIPS_REG_K1:
687
4.19k
  case MIPS_REG_K1_64:
688
4.19k
    return "k1";
689
13.1k
  case MIPS_REG_S0:
690
13.4k
  case MIPS_REG_S0_64:
691
13.4k
    return "s0";
692
4.81k
  case MIPS_REG_S1:
693
5.07k
  case MIPS_REG_S1_64:
694
5.07k
    return "s1";
695
2.78k
  case MIPS_REG_S2:
696
3.02k
  case MIPS_REG_S2_64:
697
3.02k
    return "s2";
698
3.23k
  case MIPS_REG_S3:
699
3.95k
  case MIPS_REG_S3_64:
700
3.95k
    return "s3";
701
2.13k
  case MIPS_REG_S4:
702
2.47k
  case MIPS_REG_S4_64:
703
2.47k
    return "s4";
704
1.74k
  case MIPS_REG_S5:
705
1.84k
  case MIPS_REG_S5_64:
706
1.84k
    return "s5";
707
2.70k
  case MIPS_REG_S6:
708
3.04k
  case MIPS_REG_S6_64:
709
3.04k
    return "s6";
710
2.74k
  case MIPS_REG_S7:
711
2.99k
  case MIPS_REG_S7_64:
712
2.99k
    return "s7";
713
2.32k
  case MIPS_REG_T0:
714
2.57k
  case MIPS_REG_T0_64:
715
2.57k
    return "t0";
716
2.87k
  case MIPS_REG_T1:
717
3.01k
  case MIPS_REG_T1_64:
718
3.01k
    return "t1";
719
2.11k
  case MIPS_REG_T2:
720
2.33k
  case MIPS_REG_T2_64:
721
2.33k
    return "t2";
722
1.64k
  case MIPS_REG_T3:
723
2.35k
  case MIPS_REG_T3_64:
724
2.35k
    return "t3";
725
1.54k
  case MIPS_REG_T4:
726
1.77k
  case MIPS_REG_T4_64:
727
1.77k
    return "t4";
728
2.21k
  case MIPS_REG_T5:
729
2.42k
  case MIPS_REG_T5_64:
730
2.42k
    return "t5";
731
1.79k
  case MIPS_REG_T6:
732
2.14k
  case MIPS_REG_T6_64:
733
2.14k
    return "t6";
734
2.68k
  case MIPS_REG_T7:
735
2.98k
  case MIPS_REG_T7_64:
736
2.98k
    return "t7";
737
4.79k
  case MIPS_REG_T8:
738
5.89k
  case MIPS_REG_T8_64:
739
5.89k
    return "t8";
740
2.41k
  case MIPS_REG_T9:
741
3.04k
  case MIPS_REG_T9_64:
742
3.04k
    return "t9";
743
8.32k
  case MIPS_REG_V0:
744
8.92k
  case MIPS_REG_V0_64:
745
8.92k
    return "v0";
746
7.16k
  case MIPS_REG_V1:
747
8.45k
  case MIPS_REG_V1_64:
748
8.45k
    return "v1";
749
80.2k
  default:
750
80.2k
    return getRegisterName(RegNo);
751
222k
  }
752
222k
}