Coverage Report

Created: 2026-08-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/capstonenext/arch/Mips/MipsInstPrinter.c
Line
Count
Source
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
21.6k
#define CONCAT(a, b) CONCAT_(a, b)
45
21.6k
#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
7.72k
{
54
7.72k
  return MCOperand_getReg(MCInst_getOperand((MCInst *)MI, (OpNo))) == R;
55
7.72k
}
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
283k
{
117
283k
  int syntax_opt = MI->csh->syntax;
118
283k
  if (!(syntax_opt & CS_OPT_SYNTAX_NO_DOLLAR)) {
119
283k
    SStream_concat1(OS, '$');
120
283k
  }
121
283k
  SStream_concat0(OS, Mips_LLVM_getRegisterName(
122
283k
            Reg, syntax_opt & CS_OPT_SYNTAX_NOREGNAME));
123
283k
}
124
125
static void patch_cs_printer(MCInst *MI, SStream *O)
126
153k
{
127
  // replace '# 16 bit inst' to empty.
128
153k
  SStream_replc(O, '#', 0);
129
153k
  SStream_trimls(O);
130
131
153k
  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
153k
}
141
142
static void patch_cs_detail_operand_reg(cs_mips_op *op, unsigned reg,
143
          unsigned access)
144
411
{
145
411
  op->type = MIPS_OP_REG;
146
411
  op->reg = reg;
147
411
  op->is_reglist = false;
148
411
  op->access = access;
149
411
}
150
151
static void patch_cs_details(MCInst *MI)
152
153k
{
153
153k
  if (!detail_is_set(MI))
154
0
    return;
155
156
153k
  cs_mips_op *op0 = NULL, *op1 = NULL, *op2 = NULL;
157
153k
  unsigned opcode = MCInst_getOpcode(MI);
158
153k
  unsigned n_ops = MCInst_getNumOperands(MI);
159
160
153k
  switch (opcode) {
161
  /* mips r2 to r5 only 64bit */
162
243
  case Mips_DSDIV: /// ddiv $$zero, $rs, $rt
163
    /* fall-thru */
164
263
  case Mips_DUDIV: /// ddivu $$zero, $rs, $rt
165
263
    if (n_ops != 2) {
166
0
      return;
167
0
    }
168
263
    Mips_inc_op_count(MI);
169
263
    op0 = Mips_get_detail_op(MI, -3);
170
263
    op1 = Mips_get_detail_op(MI, -2);
171
263
    op2 = Mips_get_detail_op(MI, -1);
172
    // move all details by one and add $zero reg
173
263
    *op2 = *op1;
174
263
    *op1 = *op0;
175
263
    patch_cs_detail_operand_reg(op0, MIPS_REG_ZERO_64, CS_AC_WRITE);
176
263
    return;
177
178
  /* mips r2 to r5 only */
179
10
  case Mips_SDIV: /// div $$zero, $rs, $rt
180
    /* fall-thru */
181
28
  case Mips_UDIV: /// divu $$zero, $rs, $rt
182
    /* fall-thru */
183
  /* microMIPS only */
184
70
  case Mips_SDIV_MM: /// div $$zero, $rs, $rt
185
    /* fall-thru */
186
148
  case Mips_UDIV_MM: /// divu $$zero, $rs, $rt
187
    /* fall-thru */
188
189
  /* MIPS16 only */
190
148
  case Mips_DivRxRy16: /// div $$zero, $rx, $ry
191
    /* fall-thru */
192
148
  case Mips_DivuRxRy16: /// divu $$zero, $rx, $ry
193
148
    if (n_ops != 2) {
194
0
      return;
195
0
    }
196
148
    Mips_inc_op_count(MI);
197
148
    op0 = Mips_get_detail_op(MI, -3);
198
148
    op1 = Mips_get_detail_op(MI, -2);
199
148
    op2 = Mips_get_detail_op(MI, -1);
200
    // move all details by one and add $zero reg
201
148
    *op2 = *op1;
202
148
    *op1 = *op0;
203
148
    patch_cs_detail_operand_reg(op0, MIPS_REG_ZERO, CS_AC_WRITE);
204
148
    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
153k
  default:
229
153k
    return;
230
153k
  }
231
153k
}
232
233
void Mips_LLVM_printInst(MCInst *MI, uint64_t Address, SStream *O)
234
153k
{
235
153k
  bool useAliasDetails = map_use_alias_details(MI);
236
153k
  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
153k
  if (printAliasInstr(MI, Address, O) || printAlias4(MI, Address, O)) {
244
6.95k
    MCInst_setIsAlias(MI, true);
245
147k
  } else {
246
147k
    printInstruction(MI, Address, O);
247
147k
  }
248
249
153k
  patch_cs_printer(MI, O);
250
153k
  patch_cs_details(MI);
251
252
153k
  if (!useAliasDetails) {
253
0
    map_set_fill_detail_ops(MI, true);
254
0
  }
255
153k
}
256
257
void printOperand(MCInst *MI, unsigned OpNo, SStream *O)
258
343k
{
259
343k
  switch (MCInst_getOpcode(MI)) {
260
343k
  default:
261
343k
    break;
262
343k
  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
343k
  }
274
275
343k
  MCOperand *Op = MCInst_getOperand(MI, (OpNo));
276
343k
  if (MCOperand_isReg(Op)) {
277
276k
    Mips_add_cs_detail_0(MI, Mips_OP_GROUP_Operand, OpNo);
278
276k
    printRegName(MI, O, MCOperand_getReg(Op));
279
276k
    return;
280
276k
  }
281
282
67.2k
  if (MCOperand_isImm(Op)) {
283
67.2k
    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
67.2k
    default:
303
67.2k
      Mips_add_cs_detail_0(MI, Mips_OP_GROUP_Operand, OpNo);
304
67.2k
      printInt64(O, MCOperand_getImm(Op));
305
67.2k
      break;
306
67.2k
    }
307
67.2k
    return;
308
67.2k
  }
309
67.2k
}
310
311
static void printJumpOperand(MCInst *MI, unsigned OpNo, SStream *O)
312
5.16k
{
313
5.16k
  Mips_add_cs_detail_0(MI, Mips_OP_GROUP_JumpOperand, OpNo);
314
5.16k
  MCOperand *Op = MCInst_getOperand(MI, (OpNo));
315
5.16k
  if (MCOperand_isReg(Op))
316
0
    return printRegName(MI, O, MCOperand_getReg(Op));
317
318
  // only the upper bits are needed.
319
5.16k
  uint64_t Base = MI->address & ~0x0fffffffull;
320
5.16k
  uint64_t Target = MCOperand_getImm(Op);
321
5.16k
  printInt64(O, Base | Target);
322
5.16k
}
323
324
static void printBranchOperand(MCInst *MI, uint64_t Address, unsigned OpNo,
325
             SStream *O)
326
26.1k
{
327
26.1k
  Mips_add_cs_detail_0(MI, Mips_OP_GROUP_BranchOperand, OpNo);
328
26.1k
  MCOperand *Op = MCInst_getOperand(MI, (OpNo));
329
26.1k
  if (MCOperand_isReg(Op))
330
424
    return printRegName(MI, O, MCOperand_getReg(Op));
331
332
25.7k
  uint64_t Target = Address + MCOperand_getImm(Op);
333
25.7k
  printInt64(O, Target);
334
25.7k
}
335
336
#define DEFINE_printUImm(Bits) \
337
  static void CONCAT(printUImm, CONCAT(Bits, 0))(MCInst * MI, int opNum, \
338
                   SStream *O) \
339
20.8k
  { \
340
20.8k
    Mips_add_cs_detail_0( \
341
20.8k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
20.8k
      opNum); \
343
20.8k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
20.8k
    if (MCOperand_isImm(MO)) { \
345
20.8k
      uint64_t Imm = MCOperand_getImm(MO); \
346
20.8k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
20.8k
      printUInt64(O, Imm); \
348
20.8k
      return; \
349
20.8k
    } \
350
20.8k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_10_0
Line
Count
Source
339
1.39k
  { \
340
1.39k
    Mips_add_cs_detail_0( \
341
1.39k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
1.39k
      opNum); \
343
1.39k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
1.39k
    if (MCOperand_isImm(MO)) { \
345
1.39k
      uint64_t Imm = MCOperand_getImm(MO); \
346
1.39k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
1.39k
      printUInt64(O, Imm); \
348
1.39k
      return; \
349
1.39k
    } \
350
1.39k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_4_0
Line
Count
Source
339
1.20k
  { \
340
1.20k
    Mips_add_cs_detail_0( \
341
1.20k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
1.20k
      opNum); \
343
1.20k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
1.20k
    if (MCOperand_isImm(MO)) { \
345
1.20k
      uint64_t Imm = MCOperand_getImm(MO); \
346
1.20k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
1.20k
      printUInt64(O, Imm); \
348
1.20k
      return; \
349
1.20k
    } \
350
1.20k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_5_0
Line
Count
Source
339
4.83k
  { \
340
4.83k
    Mips_add_cs_detail_0( \
341
4.83k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
4.83k
      opNum); \
343
4.83k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
4.83k
    if (MCOperand_isImm(MO)) { \
345
4.83k
      uint64_t Imm = MCOperand_getImm(MO); \
346
4.83k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
4.83k
      printUInt64(O, Imm); \
348
4.83k
      return; \
349
4.83k
    } \
350
4.83k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_26_0
MipsInstPrinter.c:printUImm_8_0
Line
Count
Source
339
1.12k
  { \
340
1.12k
    Mips_add_cs_detail_0( \
341
1.12k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
1.12k
      opNum); \
343
1.12k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
1.12k
    if (MCOperand_isImm(MO)) { \
345
1.12k
      uint64_t Imm = MCOperand_getImm(MO); \
346
1.12k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
1.12k
      printUInt64(O, Imm); \
348
1.12k
      return; \
349
1.12k
    } \
350
1.12k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_12_0
MipsInstPrinter.c:printUImm_20_0
Line
Count
Source
339
517
  { \
340
517
    Mips_add_cs_detail_0( \
341
517
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
517
      opNum); \
343
517
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
517
    if (MCOperand_isImm(MO)) { \
345
517
      uint64_t Imm = MCOperand_getImm(MO); \
346
517
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
517
      printUInt64(O, Imm); \
348
517
      return; \
349
517
    } \
350
517
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_16_0
Line
Count
Source
339
5.27k
  { \
340
5.27k
    Mips_add_cs_detail_0( \
341
5.27k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
5.27k
      opNum); \
343
5.27k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
5.27k
    if (MCOperand_isImm(MO)) { \
345
5.27k
      uint64_t Imm = MCOperand_getImm(MO); \
346
5.27k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
5.27k
      printUInt64(O, Imm); \
348
5.27k
      return; \
349
5.27k
    } \
350
5.27k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_32_0
MipsInstPrinter.c:printUImm_7_0
Line
Count
Source
339
301
  { \
340
301
    Mips_add_cs_detail_0( \
341
301
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
301
      opNum); \
343
301
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
301
    if (MCOperand_isImm(MO)) { \
345
301
      uint64_t Imm = MCOperand_getImm(MO); \
346
301
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
301
      printUInt64(O, Imm); \
348
301
      return; \
349
301
    } \
350
301
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_2_0
Line
Count
Source
339
1.82k
  { \
340
1.82k
    Mips_add_cs_detail_0( \
341
1.82k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
1.82k
      opNum); \
343
1.82k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
1.82k
    if (MCOperand_isImm(MO)) { \
345
1.82k
      uint64_t Imm = MCOperand_getImm(MO); \
346
1.82k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
1.82k
      printUInt64(O, Imm); \
348
1.82k
      return; \
349
1.82k
    } \
350
1.82k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_1_0
Line
Count
Source
339
719
  { \
340
719
    Mips_add_cs_detail_0( \
341
719
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
719
      opNum); \
343
719
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
719
    if (MCOperand_isImm(MO)) { \
345
719
      uint64_t Imm = MCOperand_getImm(MO); \
346
719
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
719
      printUInt64(O, Imm); \
348
719
      return; \
349
719
    } \
350
719
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_3_0
Line
Count
Source
339
2.14k
  { \
340
2.14k
    Mips_add_cs_detail_0( \
341
2.14k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
2.14k
      opNum); \
343
2.14k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
2.14k
    if (MCOperand_isImm(MO)) { \
345
2.14k
      uint64_t Imm = MCOperand_getImm(MO); \
346
2.14k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
2.14k
      printUInt64(O, Imm); \
348
2.14k
      return; \
349
2.14k
    } \
350
2.14k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_0_0
Line
Count
Source
339
279
  { \
340
279
    Mips_add_cs_detail_0( \
341
279
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
279
      opNum); \
343
279
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
279
    if (MCOperand_isImm(MO)) { \
345
279
      uint64_t Imm = MCOperand_getImm(MO); \
346
279
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
279
      printUInt64(O, Imm); \
348
279
      return; \
349
279
    } \
350
279
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
MipsInstPrinter.c:printUImm_6_0
Line
Count
Source
339
1.22k
  { \
340
1.22k
    Mips_add_cs_detail_0( \
341
1.22k
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, 0)), \
342
1.22k
      opNum); \
343
1.22k
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
344
1.22k
    if (MCOperand_isImm(MO)) { \
345
1.22k
      uint64_t Imm = MCOperand_getImm(MO); \
346
1.22k
      Imm &= (((uint64_t)1) << Bits) - 1; \
347
1.22k
      printUInt64(O, Imm); \
348
1.22k
      return; \
349
1.22k
    } \
350
1.22k
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
351
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
352
0
  }
353
354
#define DEFINE_printUImm_2(Bits, Offset) \
355
  static void CONCAT(printUImm, CONCAT(Bits, Offset))( \
356
    MCInst * MI, int opNum, SStream *O) \
357
792
  { \
358
792
    Mips_add_cs_detail_0( \
359
792
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, Offset)), \
360
792
      opNum); \
361
792
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
362
792
    if (MCOperand_isImm(MO)) { \
363
792
      uint64_t Imm = MCOperand_getImm(MO); \
364
792
      Imm -= Offset; \
365
792
      Imm &= (1 << Bits) - 1; \
366
792
      Imm += Offset; \
367
792
      printUInt64(O, Imm); \
368
792
      return; \
369
792
    } \
370
792
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
371
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
372
0
  }
MipsInstPrinter.c:printUImm_2_1
Line
Count
Source
357
606
  { \
358
606
    Mips_add_cs_detail_0( \
359
606
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, Offset)), \
360
606
      opNum); \
361
606
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
362
606
    if (MCOperand_isImm(MO)) { \
363
606
      uint64_t Imm = MCOperand_getImm(MO); \
364
606
      Imm -= Offset; \
365
606
      Imm &= (1 << Bits) - 1; \
366
606
      Imm += Offset; \
367
606
      printUInt64(O, Imm); \
368
606
      return; \
369
606
    } \
370
606
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
371
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
372
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_5_32
MipsInstPrinter.c:printUImm_5_1
Line
Count
Source
357
186
  { \
358
186
    Mips_add_cs_detail_0( \
359
186
      MI, CONCAT(Mips_OP_GROUP_UImm, CONCAT(Bits, Offset)), \
360
186
      opNum); \
361
186
    MCOperand *MO = MCInst_getOperand(MI, (opNum)); \
362
186
    if (MCOperand_isImm(MO)) { \
363
186
      uint64_t Imm = MCOperand_getImm(MO); \
364
186
      Imm -= Offset; \
365
186
      Imm &= (1 << Bits) - 1; \
366
186
      Imm += Offset; \
367
186
      printUInt64(O, Imm); \
368
186
      return; \
369
186
    } \
370
186
    MCOperand *Op = MCInst_getOperand(MI, (opNum)); \
371
0
    printRegName(MI, O, MCOperand_getReg(Op)); \
372
0
  }
Unexecuted instantiation: MipsInstPrinter.c:printUImm_6_1
Unexecuted instantiation: MipsInstPrinter.c:printUImm_5_33
Unexecuted instantiation: MipsInstPrinter.c:printUImm_6_2
373
374
DEFINE_printUImm(0);
375
DEFINE_printUImm(1);
376
DEFINE_printUImm(10);
377
DEFINE_printUImm(12);
378
DEFINE_printUImm(16);
379
DEFINE_printUImm(2);
380
DEFINE_printUImm(20);
381
DEFINE_printUImm(26);
382
DEFINE_printUImm(3);
383
DEFINE_printUImm(32);
384
DEFINE_printUImm(4);
385
DEFINE_printUImm(5);
386
DEFINE_printUImm(6);
387
DEFINE_printUImm(7);
388
DEFINE_printUImm(8);
389
DEFINE_printUImm_2(2, 1);
390
DEFINE_printUImm_2(5, 1);
391
DEFINE_printUImm_2(5, 32);
392
DEFINE_printUImm_2(5, 33);
393
DEFINE_printUImm_2(6, 1);
394
DEFINE_printUImm_2(6, 2);
395
396
static void printMemOperand(MCInst *MI, int opNum, SStream *O)
397
43.7k
{
398
  // Load/Store memory operands -- imm($reg)
399
  // If PIC target the target is loaded as the
400
  // pattern lw $25,%call16($28)
401
402
  // opNum can be invalid if instruction had reglist as operand.
403
  // MemOperand is always last operand of instruction (base + offset).
404
43.7k
  switch (MCInst_getOpcode(MI)) {
405
41.7k
  default:
406
41.7k
    break;
407
41.7k
  case Mips_SWM32_MM:
408
387
  case Mips_LWM32_MM:
409
925
  case Mips_SWM16_MM:
410
1.31k
  case Mips_SWM16_MMR6:
411
1.67k
  case Mips_LWM16_MM:
412
1.95k
  case Mips_LWM16_MMR6:
413
1.95k
    opNum = MCInst_getNumOperands(MI) - 2;
414
1.95k
    break;
415
43.7k
  }
416
417
43.7k
  set_mem_access(MI, true);
418
  // Index register is encoded as immediate value
419
  // in case of nanoMIPS indexed instructions
420
43.7k
  switch (MCInst_getOpcode(MI)) {
421
  // No offset needed for paired LL/SC
422
0
  case Mips_LLWP_NM:
423
0
  case Mips_SCWP_NM:
424
0
    break;
425
0
  case Mips_LWX_NM:
426
0
  case Mips_LWXS_NM:
427
0
  case Mips_LWXS16_NM:
428
0
  case Mips_LBX_NM:
429
0
  case Mips_LBUX_NM:
430
0
  case Mips_LHX_NM:
431
0
  case Mips_LHUX_NM:
432
0
  case Mips_LHXS_NM:
433
0
  case Mips_LHUXS_NM:
434
0
  case Mips_SWX_NM:
435
0
  case Mips_SWXS_NM:
436
0
  case Mips_SBX_NM:
437
0
  case Mips_SHX_NM:
438
0
  case Mips_SHXS_NM:
439
0
    if (!MCOperand_isReg(MCInst_getOperand(MI, (opNum + 1)))) {
440
0
      Mips_add_cs_detail_0(MI, Mips_OP_GROUP_MemOperand,
441
0
               (opNum + 1));
442
0
      printRegName(MI, O,
443
0
             MCOperand_getImm(MCInst_getOperand(
444
0
               MI, (opNum + 1))));
445
0
      break;
446
0
    }
447
    // Fall through
448
43.7k
  default:
449
43.7k
    printOperand((MCInst *)MI, opNum + 1, O);
450
43.7k
    break;
451
43.7k
  }
452
43.7k
  SStream_concat0(O, "(");
453
43.7k
  printOperand((MCInst *)MI, opNum, O);
454
43.7k
  SStream_concat0(O, ")");
455
43.7k
  set_mem_access(MI, false);
456
43.7k
}
457
458
static void printMemOperandEA(MCInst *MI, int opNum, SStream *O)
459
0
{
460
  // when using stack locations for not load/store instructions
461
  // print the same way as all normal 3 operand instructions.
462
0
  printOperand((MCInst *)MI, opNum, O);
463
0
  SStream_concat0(O, ", ");
464
0
  printOperand((MCInst *)MI, opNum + 1, O);
465
0
}
466
467
static void printFCCOperand(MCInst *MI, int opNum, SStream *O)
468
0
{
469
0
  MCOperand *MO = MCInst_getOperand(MI, (opNum));
470
0
  SStream_concat0(O,
471
0
      MipsFCCToString((Mips_CondCode)MCOperand_getImm(MO)));
472
0
}
473
474
static bool printAlias(const char *Str, const MCInst *MI, uint64_t Address,
475
           unsigned OpNo, SStream *OS, bool IsBranch)
476
1.85k
{
477
1.85k
  SStream_concat(OS, "%s%s", "\t", Str);
478
1.85k
  SStream_concat0(OS, "\t");
479
1.85k
  if (IsBranch)
480
714
    printBranchOperand((MCInst *)MI, Address, OpNo, OS);
481
1.14k
  else
482
1.14k
    printOperand((MCInst *)MI, OpNo, OS);
483
1.85k
  return true;
484
1.85k
}
485
486
static bool printAlias2(const char *Str, const MCInst *MI, uint64_t Address,
487
      unsigned OpNo0, unsigned OpNo1, SStream *OS,
488
      bool IsBranch)
489
1.18k
{
490
1.18k
  printAlias(Str, MI, Address, OpNo0, OS, IsBranch);
491
1.18k
  SStream_concat0(OS, ", ");
492
1.18k
  if (IsBranch)
493
424
    printBranchOperand((MCInst *)MI, Address, OpNo1, OS);
494
765
  else
495
765
    printOperand((MCInst *)MI, OpNo1, OS);
496
1.18k
  return true;
497
1.18k
}
498
499
static bool printAlias3(const char *Str, const MCInst *MI, uint64_t Address,
500
      unsigned OpNo0, unsigned OpNo1, unsigned OpNo2,
501
      SStream *OS)
502
0
{
503
0
  printAlias(Str, MI, Address, OpNo0, OS, false);
504
0
  SStream_concat0(OS, ", ");
505
0
  printOperand((MCInst *)MI, OpNo1, OS);
506
0
  SStream_concat0(OS, ", ");
507
0
  printOperand((MCInst *)MI, OpNo2, OS);
508
0
  return true;
509
0
}
510
511
static bool printAlias4(const MCInst *MI, uint64_t Address, SStream *OS)
512
148k
{
513
148k
  switch (MCInst_getOpcode(MI)) {
514
1.40k
  case Mips_BEQ:
515
2.06k
  case Mips_BEQ_MM:
516
    // beq $zero, $zero, $L2 => b $L2
517
    // beq $r0, $zero, $L2 => beqz $r0, $L2
518
2.06k
    return (isReg(MI, 0, Mips_ZERO) && isReg(MI, 1, Mips_ZERO) &&
519
290
      printAlias("b", MI, Address, 2, OS, true)) ||
520
1.77k
           (isReg(MI, 1, Mips_ZERO) &&
521
291
      printAlias2("beqz", MI, Address, 0, 2, OS, true));
522
0
  case Mips_BEQ64:
523
    // beq $r0, $zero, $L2 => beqz $r0, $L2
524
0
    return isReg(MI, 1, Mips_ZERO_64) &&
525
0
           printAlias2("beqz", MI, Address, 0, 2, OS, true);
526
559
  case Mips_BNE:
527
766
  case Mips_BNE_MM:
528
    // bne $r0, $zero, $L2 => bnez $r0, $L2
529
766
    return isReg(MI, 1, Mips_ZERO) &&
530
133
           printAlias2("bnez", MI, Address, 0, 2, OS, true);
531
0
  case Mips_BNE64:
532
    // bne $r0, $zero, $L2 => bnez $r0, $L2
533
0
    return isReg(MI, 1, Mips_ZERO_64) &&
534
0
           printAlias2("bnez", MI, Address, 0, 2, OS, true);
535
91
  case Mips_BGEZAL:
536
    // bgezal $zero, $L1 => bal $L1
537
91
    return isReg(MI, 0, Mips_ZERO) &&
538
0
           printAlias("bal", MI, Address, 1, OS, true);
539
81
  case Mips_BC1T:
540
    // bc1t $fcc0, $L1 => bc1t $L1
541
81
    return isReg(MI, 0, Mips_FCC0) &&
542
0
           printAlias("bc1t", MI, Address, 1, OS, true);
543
32
  case Mips_BC1F:
544
    // bc1f $fcc0, $L1 => bc1f $L1
545
32
    return isReg(MI, 0, Mips_FCC0) &&
546
0
           printAlias("bc1f", MI, Address, 1, OS, true);
547
503
  case Mips_JALR:
548
    // jalr $zero, $r1 => jr $r1
549
    // jalr $ra, $r1 => jalr $r1
550
503
    return (isReg(MI, 0, Mips_ZERO) &&
551
78
      printAlias("jr", MI, Address, 1, OS, false)) ||
552
425
           (isReg(MI, 0, Mips_RA) &&
553
300
      printAlias("jalr", MI, Address, 1, OS, false));
554
0
  case Mips_JALR64:
555
    // jalr $zero, $r1 => jr $r1
556
    // jalr $ra, $r1 => jalr $r1
557
0
    return (isReg(MI, 0, Mips_ZERO_64) &&
558
0
      printAlias("jr", MI, Address, 1, OS, false)) ||
559
0
           (isReg(MI, 0, Mips_RA_64) &&
560
0
      printAlias("jalr", MI, Address, 1, OS, false));
561
86
  case Mips_NOR:
562
174
  case Mips_NOR_MM:
563
993
  case Mips_NOR_MMR6:
564
    // nor $r0, $r1, $zero => not $r0, $r1
565
993
    return isReg(MI, 2, Mips_ZERO) &&
566
687
           printAlias2("not", MI, Address, 0, 1, OS, false);
567
0
  case Mips_NOR64:
568
    // nor $r0, $r1, $zero => not $r0, $r1
569
0
    return isReg(MI, 2, Mips_ZERO_64) &&
570
0
           printAlias2("not", MI, Address, 0, 1, OS, false);
571
208
  case Mips_OR:
572
293
  case Mips_ADDu:
573
    // or $r0, $r1, $zero => move $r0, $r1
574
    // addu $r0, $r1, $zero => move $r0, $r1
575
293
    return isReg(MI, 2, Mips_ZERO) &&
576
78
           printAlias2("move", MI, Address, 0, 1, OS, false);
577
0
  case Mips_LI48_NM:
578
0
  case Mips_LI16_NM:
579
    // li[16/48] $r0, imm => li $r0, imm
580
0
    return printAlias2("li", MI, Address, 0, 1, OS, false);
581
0
  case Mips_ADDIU_NM:
582
0
  case Mips_ADDIUNEG_NM:
583
0
    if (isReg(MI, 1, Mips_ZERO_NM))
584
0
      return printAlias2("li", MI, Address, 0, 2, OS, false);
585
0
    else
586
0
      return printAlias3("addiu", MI, Address, 0, 1, 2, OS);
587
0
  case Mips_ADDIU48_NM:
588
0
  case Mips_ADDIURS5_NM:
589
0
  case Mips_ADDIUR1SP_NM:
590
0
  case Mips_ADDIUR2_NM:
591
0
  case Mips_ADDIUGPB_NM:
592
0
  case Mips_ADDIUGPW_NM:
593
0
    return printAlias3("addiu", MI, Address, 0, 1, 2, OS);
594
0
  case Mips_ANDI16_NM:
595
0
  case Mips_ANDI_NM:
596
    // andi[16/32] $r0, $r1, imm => andi $r0, $r1, imm
597
0
    return printAlias3("andi", MI, Address, 0, 1, 2, OS);
598
144k
  default:
599
144k
    return false;
600
148k
  }
601
148k
}
602
603
static void printRegisterList(MCInst *MI, int opNum, SStream *O)
604
1.95k
{
605
  // - 2 because register List is always first operand of instruction and it is
606
  // always followed by memory operand (base + offset).
607
1.95k
  Mips_add_cs_detail_0(MI, Mips_OP_GROUP_RegisterList, opNum);
608
8.36k
  for (int i = opNum, e = MCInst_getNumOperands(MI) - 2; i != e; ++i) {
609
6.41k
    if (i != opNum)
610
4.45k
      SStream_concat0(O, ", ");
611
6.41k
    printRegName(MI, O,
612
6.41k
           MCOperand_getReg(MCInst_getOperand(MI, (i))));
613
6.41k
  }
614
1.95k
}
615
616
static void printNanoMipsRegisterList(MCInst *MI, int OpNum, SStream *O)
617
0
{
618
0
  Mips_add_cs_detail_0(MI, Mips_OP_GROUP_NanoMipsRegisterList, OpNum);
619
0
  for (unsigned I = OpNum; I < MCInst_getNumOperands(MI); I++) {
620
0
    SStream_concat0(O, ", ");
621
0
    printRegName(MI, O,
622
0
           MCOperand_getReg(MCInst_getOperand(MI, (I))));
623
0
  }
624
0
}
625
626
static void printHi20(MCInst *MI, int OpNum, SStream *O)
627
0
{
628
0
  MCOperand *MO = MCInst_getOperand(MI, (OpNum));
629
0
  if (MCOperand_isImm(MO)) {
630
0
    Mips_add_cs_detail_0(MI, Mips_OP_GROUP_Hi20, OpNum);
631
0
    SStream_concat0(O, "%hi(");
632
0
    printUInt64(O, MCOperand_getImm(MO));
633
0
    SStream_concat0(O, ")");
634
0
  } else
635
0
    printOperand(MI, OpNum, O);
636
0
}
637
638
static void printHi20PCRel(MCInst *MI, uint64_t Address, int OpNum, SStream *O)
639
0
{
640
0
  MCOperand *MO = MCInst_getOperand(MI, (OpNum));
641
0
  if (MCOperand_isImm(MO)) {
642
0
    Mips_add_cs_detail_0(MI, Mips_OP_GROUP_Hi20PCRel, OpNum);
643
0
    SStream_concat0(O, "%pcrel_hi(");
644
0
    printUInt64(O, MCOperand_getImm(MO) + Address);
645
0
    SStream_concat0(O, ")");
646
0
  } else
647
0
    printOperand(MI, OpNum, O);
648
0
}
649
650
static void printPCRel(MCInst *MI, uint64_t Address, int OpNum, SStream *O)
651
0
{
652
0
  MCOperand *MO = MCInst_getOperand(MI, (OpNum));
653
0
  if (MCOperand_isImm(MO)) {
654
0
    Mips_add_cs_detail_0(MI, Mips_OP_GROUP_PCRel, OpNum);
655
0
    printUInt64(O, MCOperand_getImm(MO) + Address);
656
0
  } else
657
0
    printOperand(MI, OpNum, O);
658
0
}
659
660
const char *Mips_LLVM_getRegisterName(unsigned RegNo, bool noRegName)
661
319k
{
662
319k
  if (!RegNo || RegNo >= MIPS_REG_ENDING) {
663
0
    return NULL;
664
0
  }
665
319k
  if (noRegName) {
666
0
    return getRegisterName(RegNo);
667
0
  }
668
319k
  switch (RegNo) {
669
32.3k
  case MIPS_REG_AT:
670
32.9k
  case MIPS_REG_AT_64:
671
32.9k
    return "at";
672
7.88k
  case MIPS_REG_A0:
673
8.66k
  case MIPS_REG_A0_64:
674
8.66k
    return "a0";
675
7.07k
  case MIPS_REG_A1:
676
7.61k
  case MIPS_REG_A1_64:
677
7.61k
    return "a1";
678
9.41k
  case MIPS_REG_A2:
679
9.76k
  case MIPS_REG_A2_64:
680
9.76k
    return "a2";
681
6.66k
  case MIPS_REG_A3:
682
7.16k
  case MIPS_REG_A3_64:
683
7.16k
    return "a3";
684
3.89k
  case MIPS_REG_K0:
685
4.12k
  case MIPS_REG_K0_64:
686
4.12k
    return "k0";
687
4.03k
  case MIPS_REG_K1:
688
4.63k
  case MIPS_REG_K1_64:
689
4.63k
    return "k1";
690
17.5k
  case MIPS_REG_S0:
691
18.1k
  case MIPS_REG_S0_64:
692
18.1k
    return "s0";
693
7.72k
  case MIPS_REG_S1:
694
8.14k
  case MIPS_REG_S1_64:
695
8.14k
    return "s1";
696
4.36k
  case MIPS_REG_S2:
697
4.72k
  case MIPS_REG_S2_64:
698
4.72k
    return "s2";
699
3.87k
  case MIPS_REG_S3:
700
5.24k
  case MIPS_REG_S3_64:
701
5.24k
    return "s3";
702
3.57k
  case MIPS_REG_S4:
703
3.87k
  case MIPS_REG_S4_64:
704
3.87k
    return "s4";
705
2.60k
  case MIPS_REG_S5:
706
3.01k
  case MIPS_REG_S5_64:
707
3.01k
    return "s5";
708
3.46k
  case MIPS_REG_S6:
709
3.62k
  case MIPS_REG_S6_64:
710
3.62k
    return "s6";
711
3.08k
  case MIPS_REG_S7:
712
3.44k
  case MIPS_REG_S7_64:
713
3.44k
    return "s7";
714
5.26k
  case MIPS_REG_T0:
715
5.49k
  case MIPS_REG_T0_64:
716
5.49k
    return "t0";
717
4.96k
  case MIPS_REG_T1:
718
5.29k
  case MIPS_REG_T1_64:
719
5.29k
    return "t1";
720
2.04k
  case MIPS_REG_T2:
721
2.38k
  case MIPS_REG_T2_64:
722
2.38k
    return "t2";
723
3.06k
  case MIPS_REG_T3:
724
4.02k
  case MIPS_REG_T3_64:
725
4.02k
    return "t3";
726
1.87k
  case MIPS_REG_T4:
727
2.19k
  case MIPS_REG_T4_64:
728
2.19k
    return "t4";
729
3.02k
  case MIPS_REG_T5:
730
3.44k
  case MIPS_REG_T5_64:
731
3.44k
    return "t5";
732
3.65k
  case MIPS_REG_T6:
733
3.95k
  case MIPS_REG_T6_64:
734
3.95k
    return "t6";
735
5.05k
  case MIPS_REG_T7:
736
5.54k
  case MIPS_REG_T7_64:
737
5.54k
    return "t7";
738
5.17k
  case MIPS_REG_T8:
739
5.62k
  case MIPS_REG_T8_64:
740
5.62k
    return "t8";
741
3.60k
  case MIPS_REG_T9:
742
4.00k
  case MIPS_REG_T9_64:
743
4.00k
    return "t9";
744
11.8k
  case MIPS_REG_V0:
745
12.7k
  case MIPS_REG_V0_64:
746
12.7k
    return "v0";
747
8.58k
  case MIPS_REG_V1:
748
9.17k
  case MIPS_REG_V1_64:
749
9.17k
    return "v1";
750
130k
  default:
751
130k
    return getRegisterName(RegNo);
752
319k
  }
753
319k
}