Coverage Report

Created: 2025-10-14 06:42

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/capstonev5/arch/ARM/ARMInstPrinter.c
Line
Count
Source
1
//===-- ARMInstPrinter.cpp - Convert ARM MCInst to assembly syntax --------===//
2
//
3
//                     The LLVM Compiler Infrastructure
4
//
5
// This file is distributed under the University of Illinois Open Source
6
// License. See LICENSE.TXT for details.
7
//
8
//===----------------------------------------------------------------------===//
9
//
10
// This class prints an ARM MCInst to a .s file.
11
//
12
//===----------------------------------------------------------------------===//
13
14
/* Capstone Disassembly Engine */
15
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */
16
17
#ifdef CAPSTONE_HAS_ARM
18
19
#include <stdio.h>  // DEBUG
20
#include <stdlib.h>
21
#include <string.h>
22
#include <capstone/platform.h>
23
24
#include "ARMInstPrinter.h"
25
#include "ARMAddressingModes.h"
26
#include "ARMBaseInfo.h"
27
#include "ARMDisassembler.h"
28
#include "../../MCInst.h"
29
#include "../../SStream.h"
30
#include "../../MCRegisterInfo.h"
31
#include "../../utils.h"
32
#include "ARMMapping.h"
33
34
#define GET_SUBTARGETINFO_ENUM
35
#include "ARMGenSubtargetInfo.inc"
36
37
#include "ARMGenSystemRegister.inc"
38
39
static void printRegName(cs_struct *h, SStream *OS, unsigned RegNo);
40
41
// Autogenerated by tblgen.
42
static void printInstruction(MCInst *MI, SStream *O);
43
static void printOperand(MCInst *MI, unsigned OpNo, SStream *O);
44
static void printSORegRegOperand(MCInst *MI, unsigned OpNum, SStream *O);
45
static void printSORegImmOperand(MCInst *MI, unsigned OpNum, SStream *O);
46
47
static void printAddrModeTBB(MCInst *MI, unsigned OpNum, SStream *O);
48
static void printAddrModeTBH(MCInst *MI, unsigned OpNum, SStream *O);
49
static void printAddrMode2Operand(MCInst *MI, unsigned OpNum, SStream *O);
50
static void printAM2PreOrOffsetIndexOp(MCInst *MI, unsigned OpNum, SStream *O);
51
static void printAddrMode2OffsetOperand(MCInst *MI, unsigned OpNum, SStream *O);
52
static void printAddrMode3Operand(MCInst *MI, unsigned OpNum, SStream *O, bool AlwaysPrintImm0);
53
static void printAddrMode3OffsetOperand(MCInst *MI, unsigned OpNum, SStream *O);
54
static void printAM3PreOrOffsetIndexOp(MCInst *MI, unsigned Op, SStream *O, bool AlwaysPrintImm0);
55
static void printPostIdxImm8Operand(MCInst *MI, unsigned OpNum, SStream *O);
56
static void printPostIdxRegOperand(MCInst *MI, unsigned OpNum, SStream *O);
57
static void printPostIdxImm8s4Operand(MCInst *MI, unsigned OpNum, SStream *O);
58
static void printAddrMode5Operand(MCInst *MI, unsigned OpNum, SStream *O, bool AlwaysPrintImm0);
59
static void printAddrMode6Operand(MCInst *MI, unsigned OpNum, SStream *O);
60
static void printAddrMode7Operand(MCInst *MI, unsigned OpNum, SStream *O);
61
static void printAddrMode6OffsetOperand(MCInst *MI, unsigned OpNum, SStream *O);
62
63
static void printBitfieldInvMaskImmOperand(MCInst *MI, unsigned OpNum, SStream *O);
64
static void printMemBOption(MCInst *MI, unsigned OpNum, SStream *O);
65
static void printShiftImmOperand(MCInst *MI, unsigned OpNum, SStream *O);
66
static void printPKHLSLShiftImm(MCInst *MI, unsigned OpNum, SStream *O);
67
static void printPKHASRShiftImm(MCInst *MI, unsigned OpNum, SStream *O);
68
static void printAdrLabelOperand(MCInst *MI, unsigned OpNum, SStream *O, unsigned);
69
static void printThumbS4ImmOperand(MCInst *MI, unsigned OpNum, SStream *O);
70
static void printThumbSRImm(MCInst *MI, unsigned OpNum, SStream *O);
71
static void printThumbITMask(MCInst *MI, unsigned OpNum, SStream *O);
72
static void printThumbAddrModeRROperand(MCInst *MI, unsigned OpNum, SStream *O);
73
static void printThumbAddrModeImm5SOperand(MCInst *MI, unsigned OpNum, SStream *O, unsigned Scale);
74
static void printThumbAddrModeImm5S1Operand(MCInst *MI, unsigned OpNum, SStream *O);
75
static void printThumbAddrModeImm5S2Operand(MCInst *MI, unsigned OpNum, SStream *O);
76
static void printThumbAddrModeImm5S4Operand(MCInst *MI, unsigned OpNum, SStream *O);
77
static void printThumbAddrModeSPOperand(MCInst *MI, unsigned OpNum, SStream *O);
78
static void printT2SOOperand(MCInst *MI, unsigned OpNum, SStream *O);
79
static void printAddrModeImm12Operand(MCInst *MI, unsigned OpNum, SStream *O, bool AlwaysPrintImm0);
80
static void printT2AddrModeImm8Operand(MCInst *MI, unsigned OpNum, SStream *O, bool);
81
static void printT2AddrModeImm8s4Operand(MCInst *MI, unsigned OpNum, SStream *O, bool);
82
static void printT2AddrModeImm0_1020s4Operand(MCInst *MI, unsigned OpNum, SStream *O);
83
static void printT2AddrModeImm8OffsetOperand(MCInst *MI, unsigned OpNum, SStream *O);
84
static void printT2AddrModeImm8s4OffsetOperand(MCInst *MI, unsigned OpNum, SStream *O);
85
static void printT2AddrModeSoRegOperand(MCInst *MI, unsigned OpNum, SStream *O);
86
static void printSetendOperand(MCInst *MI, unsigned OpNum, SStream *O);
87
static void printCPSIMod(MCInst *MI, unsigned OpNum, SStream *O);
88
static void printCPSIFlag(MCInst *MI, unsigned OpNum, SStream *O);
89
static void printMSRMaskOperand(MCInst *MI, unsigned OpNum, SStream *O);
90
static void printPredicateOperand(MCInst *MI, unsigned OpNum, SStream *O);
91
static void printMandatoryPredicateOperand(MCInst *MI, unsigned OpNum, SStream *O);
92
static void printSBitModifierOperand(MCInst *MI, unsigned OpNum, SStream *O);
93
static void printRegisterList(MCInst *MI, unsigned OpNum, SStream *O);
94
static void printNoHashImmediate(MCInst *MI, unsigned OpNum, SStream *O);
95
static void printPImmediate(MCInst *MI, unsigned OpNum, SStream *O);
96
static void printCImmediate(MCInst *MI, unsigned OpNum, SStream *O);
97
static void printCoprocOptionImm(MCInst *MI, unsigned OpNum, SStream *O);
98
static void printFPImmOperand(MCInst *MI, unsigned OpNum, SStream *O);
99
static void printNEONModImmOperand(MCInst *MI, unsigned OpNum, SStream *O);
100
static void printImmPlusOneOperand(MCInst *MI, unsigned OpNum, SStream *O);
101
static void printRotImmOperand(MCInst *MI, unsigned OpNum, SStream *O);
102
static void printGPRPairOperand(MCInst *MI, unsigned OpNum, SStream *O);
103
static void printThumbLdrLabelOperand(MCInst *MI, unsigned OpNum, SStream *O);
104
static void printFBits16(MCInst *MI, unsigned OpNum, SStream *O);
105
static void printFBits32(MCInst *MI, unsigned OpNum, SStream *O);
106
static void printVectorIndex(MCInst *MI, unsigned OpNum, SStream *O);
107
static void printVectorListOne(MCInst *MI, unsigned OpNum, SStream *O);
108
static void printVectorListTwo(MCInst *MI, unsigned OpNum, SStream *O);
109
static void printVectorListTwoSpaced(MCInst *MI, unsigned OpNum, SStream *O);
110
static void printVectorListThree(MCInst *MI, unsigned OpNum, SStream *O);
111
static void printVectorListFour(MCInst *MI, unsigned OpNum, SStream *O);
112
static void printVectorListOneAllLanes(MCInst *MI, unsigned OpNum, SStream *O);
113
static void printVectorListTwoAllLanes(MCInst *MI, unsigned OpNum, SStream *O);
114
static void printVectorListThreeAllLanes(MCInst *MI, unsigned OpNum, SStream *O);
115
static void printVectorListFourAllLanes(MCInst *MI, unsigned OpNum, SStream *O);
116
static void printVectorListTwoSpacedAllLanes(MCInst *MI, unsigned OpNum, SStream *O);
117
static void printVectorListThreeSpacedAllLanes(MCInst *MI, unsigned OpNum, SStream *O);
118
static void printVectorListFourSpacedAllLanes(MCInst *MI, unsigned OpNum, SStream *O);
119
static void printVectorListThreeSpaced(MCInst *MI, unsigned OpNum, SStream *O);
120
static void printVectorListFourSpaced(MCInst *MI, unsigned OpNum, SStream *O);
121
static void printBankedRegOperand(MCInst *MI, unsigned OpNum, SStream *O);
122
static void printModImmOperand(MCInst *MI, unsigned OpNum, SStream *O);
123
124
static void printInstSyncBOption(MCInst *MI, unsigned OpNum, SStream *O);
125
static void printTraceSyncBOption(MCInst *MI, unsigned OpNum, SStream *O);
126
static void printComplexRotationOp(MCInst *MI, unsigned OpNo, SStream *O, int64_t Angle, int64_t Remainder);
127
static void printAddrMode5FP16Operand(MCInst *MI, unsigned OpNum, SStream *O, bool AlwaysPrintImm0);
128
129
130
#ifndef CAPSTONE_DIET
131
// copy & normalize access info
132
static uint8_t get_op_access(cs_struct *h, unsigned int id, unsigned int index)
133
1.41M
{
134
1.41M
  const uint8_t *arr = ARM_get_op_access(h, id);
135
136
1.41M
  if (!arr || arr[index] == CS_AC_IGNORE)
137
6.01k
    return 0;
138
139
1.41M
  return arr[index];
140
1.41M
}
141
#endif
142
143
static void set_mem_access(MCInst *MI, bool status)
144
606k
{
145
606k
  if (MI->csh->detail != CS_OPT_ON)
146
0
    return;
147
148
606k
  MI->csh->doing_mem = status;
149
606k
  if (status) {
150
303k
#ifndef CAPSTONE_DIET
151
303k
    uint8_t access;
152
303k
#endif
153
154
303k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_MEM;
155
303k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = ARM_REG_INVALID;
156
303k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = ARM_REG_INVALID;
157
303k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.scale = 1;
158
303k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = 0;
159
160
303k
#ifndef CAPSTONE_DIET
161
303k
    access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
162
303k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
163
303k
    MI->ac_idx++;
164
303k
#endif
165
303k
  } else {
166
    // done, create the next operand slot
167
303k
    MI->flat_insn->detail->arm.op_count++;
168
303k
  }
169
606k
}
170
171
static void op_addImm(MCInst *MI, int v)
172
1.18k
{
173
1.18k
  if (MI->csh->detail) {
174
1.18k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
175
1.18k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = v;
176
1.18k
    MI->flat_insn->detail->arm.op_count++;
177
1.18k
  }
178
1.18k
}
179
180
#define GET_INSTRINFO_ENUM
181
#include "ARMGenInstrInfo.inc"
182
183
static void printCustomAliasOperand(MCInst *MI,
184
    unsigned OpIdx, unsigned PrintMethodIdx, SStream *OS);
185
186
#define PRINT_ALIAS_INSTR
187
#include "ARMGenAsmWriter.inc"
188
#include "ARMGenRegisterName.inc"
189
#include "ARMGenRegisterName_digit.inc"
190
191
void ARM_getRegName(cs_struct *handle, int value)
192
12.4k
{
193
12.4k
  if (value == CS_OPT_SYNTAX_NOREGNAME) {
194
0
    handle->get_regname = getRegisterName_digit;
195
0
    handle->reg_name = ARM_reg_name2;
196
12.4k
  } else {
197
12.4k
    handle->get_regname = getRegisterName;
198
12.4k
    handle->reg_name = ARM_reg_name;
199
12.4k
  }
200
12.4k
}
201
202
/// translateShiftImm - Convert shift immediate from 0-31 to 1-32 for printing.
203
///
204
/// getSORegOffset returns an integer from 0-31, representing '32' as 0.
205
static unsigned translateShiftImm(unsigned imm)
206
46.5k
{
207
  // lsr #32 and asr #32 exist, but should be encoded as a 0.
208
  //assert((imm & ~0x1f) == 0 && "Invalid shift encoding");
209
46.5k
  if (imm == 0)
210
4.47k
    return 32;
211
42.0k
  return imm;
212
46.5k
}
213
214
/// Prints the shift value with an immediate value.
215
static void printRegImmShift(MCInst *MI, SStream *O, ARM_AM_ShiftOpc ShOpc, unsigned ShImm)
216
24.5k
{
217
24.5k
  if (ShOpc == ARM_AM_no_shift || (ShOpc == ARM_AM_lsl && !ShImm))
218
423
    return;
219
220
24.1k
  SStream_concat0(O, ", ");
221
222
  //assert (!(ShOpc == ARM_AM_ror && !ShImm) && "Cannot have ror #0");
223
24.1k
  SStream_concat0(O, ARM_AM_getShiftOpcStr(ShOpc));
224
225
24.1k
  if (MI->csh->detail) {
226
24.1k
    if (MI->csh->doing_mem)
227
5.90k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.type = (arm_shifter)ShOpc;
228
18.2k
    else
229
18.2k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.type = (arm_shifter)ShOpc;
230
24.1k
  }
231
232
24.1k
  if (ShOpc != ARM_AM_rrx) {
233
23.0k
    SStream_concat0(O, " ");
234
23.0k
    SStream_concat(O, "#%u", translateShiftImm(ShImm));
235
23.0k
    if (MI->csh->detail) {
236
23.0k
      if (MI->csh->doing_mem)
237
5.75k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.value = translateShiftImm(ShImm);
238
17.2k
      else
239
17.2k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.value = translateShiftImm(ShImm);
240
23.0k
    }
241
23.0k
  }
242
24.1k
}
243
244
static void printRegName(cs_struct *h, SStream *OS, unsigned RegNo)
245
1.70M
{
246
1.70M
#ifndef CAPSTONE_DIET
247
1.70M
  SStream_concat0(OS, h->get_regname(RegNo));
248
1.70M
#endif
249
1.70M
}
250
251
// TODO
252
static const name_map insn_update_flgs[] = {
253
  { ARM_INS_CMN, "cmn" },
254
  { ARM_INS_CMP, "cmp" },
255
  { ARM_INS_TEQ, "teq" },
256
  { ARM_INS_TST, "tst" },
257
258
  { ARM_INS_ADC, "adcs" },
259
  { ARM_INS_ADD, "adds" },
260
  { ARM_INS_AND, "ands" },
261
  { ARM_INS_ASR, "asrs" },
262
  { ARM_INS_BIC, "bics" },
263
  { ARM_INS_EOR, "eors" },
264
  { ARM_INS_LSL, "lsls" },
265
  { ARM_INS_LSR, "lsrs" },
266
  { ARM_INS_MLA, "mlas" },
267
  { ARM_INS_MOV, "movs" },
268
  { ARM_INS_MUL, "muls" },
269
  { ARM_INS_MVN, "mvns" },
270
  { ARM_INS_ORN, "orns" },
271
  { ARM_INS_ORR, "orrs" },
272
  { ARM_INS_ROR, "rors" },
273
  { ARM_INS_RRX, "rrxs" },
274
  { ARM_INS_RSB, "rsbs" },
275
  { ARM_INS_RSC, "rscs" },
276
  { ARM_INS_SBC, "sbcs" },
277
  { ARM_INS_SMLAL, "smlals" },
278
  { ARM_INS_SMULL, "smulls" },
279
  { ARM_INS_SUB, "subs" },
280
  { ARM_INS_UMLAL, "umlals" },
281
  { ARM_INS_UMULL, "umulls" },
282
283
  { ARM_INS_UADD8, "uadd8" },
284
};
285
286
void ARM_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci)
287
787k
{
288
787k
  if (((cs_struct *)ud)->detail != CS_OPT_ON)
289
0
    return;
290
291
  // check if this insn requests write-back
292
787k
  if (mci->writeback || (strrchr(insn_asm, '!')) != NULL) {
293
71.3k
    insn->detail->arm.writeback = true;
294
715k
  } else if (mci->csh->mode & CS_MODE_THUMB) {
295
    // handle some special instructions with writeback
296
        //printf(">> Opcode = %u\n", mci->Opcode);
297
582k
    switch(mci->Opcode) {
298
575k
      default:
299
575k
        break;
300
575k
      case ARM_t2LDC2L_PRE:
301
0
      case ARM_t2LDC2_PRE:
302
0
      case ARM_t2LDCL_PRE:
303
0
      case ARM_t2LDC_PRE:
304
305
0
      case ARM_t2LDRB_PRE:
306
0
      case ARM_t2LDRD_PRE:
307
0
      case ARM_t2LDRH_PRE:
308
0
      case ARM_t2LDRSB_PRE:
309
0
      case ARM_t2LDRSH_PRE:
310
0
      case ARM_t2LDR_PRE:
311
312
0
      case ARM_t2STC2L_PRE:
313
0
      case ARM_t2STC2_PRE:
314
0
      case ARM_t2STCL_PRE:
315
0
      case ARM_t2STC_PRE:
316
317
0
      case ARM_t2STRB_PRE:
318
0
      case ARM_t2STRD_PRE:
319
0
      case ARM_t2STRH_PRE:
320
0
      case ARM_t2STR_PRE:
321
0
        insn->detail->arm.writeback = true;
322
0
        break;
323
857
      case ARM_t2LDC2L_POST:
324
1.19k
      case ARM_t2LDC2_POST:
325
1.62k
      case ARM_t2LDCL_POST:
326
1.80k
      case ARM_t2LDC_POST:
327
328
2.22k
      case ARM_t2LDRB_POST:
329
2.93k
      case ARM_t2LDRD_POST:
330
2.99k
      case ARM_t2LDRH_POST:
331
3.14k
      case ARM_t2LDRSB_POST:
332
3.24k
      case ARM_t2LDRSH_POST:
333
3.34k
      case ARM_t2LDR_POST:
334
335
3.77k
      case ARM_t2STC2L_POST:
336
4.42k
      case ARM_t2STC2_POST:
337
4.98k
      case ARM_t2STCL_POST:
338
5.26k
      case ARM_t2STC_POST:
339
340
5.65k
      case ARM_t2STRB_POST:
341
6.74k
      case ARM_t2STRD_POST:
342
6.88k
      case ARM_t2STRH_POST:
343
6.98k
      case ARM_t2STR_POST:
344
6.98k
        insn->detail->arm.writeback = true;
345
6.98k
        insn->detail->arm.post_index = true;
346
6.98k
        break;
347
582k
    }
348
582k
  } else { // ARM mode
349
    // handle some special instructions with writeback
350
        //printf(">> Opcode = %u\n", mci->Opcode);
351
133k
    switch(mci->Opcode) {
352
126k
      default:
353
126k
        break;
354
126k
      case ARM_LDC2L_PRE:
355
0
      case ARM_LDC2_PRE:
356
0
      case ARM_LDCL_PRE:
357
0
      case ARM_LDC_PRE:
358
359
0
      case ARM_LDRD_PRE:
360
0
      case ARM_LDRH_PRE:
361
0
      case ARM_LDRSB_PRE:
362
0
      case ARM_LDRSH_PRE:
363
364
0
      case ARM_STC2L_PRE:
365
0
      case ARM_STC2_PRE:
366
0
      case ARM_STCL_PRE:
367
0
      case ARM_STC_PRE:
368
369
0
      case ARM_STRD_PRE:
370
0
      case ARM_STRH_PRE:
371
0
        insn->detail->arm.writeback = true;
372
0
        break;
373
429
      case ARM_LDC2L_POST:
374
733
      case ARM_LDC2_POST:
375
1.13k
      case ARM_LDCL_POST:
376
1.50k
      case ARM_LDC_POST:
377
378
1.50k
      case ARM_LDRBT_POST:
379
1.50k
      case ARM_LDRD_POST:
380
1.50k
      case ARM_LDRH_POST:
381
1.50k
      case ARM_LDRSB_POST:
382
1.50k
      case ARM_LDRSH_POST:
383
384
1.80k
      case ARM_STC2L_POST:
385
2.09k
      case ARM_STC2_POST:
386
2.44k
      case ARM_STCL_POST:
387
3.05k
      case ARM_STC_POST:
388
389
3.05k
      case ARM_STRBT_POST:
390
3.05k
      case ARM_STRD_POST:
391
3.05k
      case ARM_STRH_POST:
392
393
3.60k
      case ARM_LDRB_POST_IMM:
394
4.11k
      case ARM_LDR_POST_IMM:
395
4.47k
      case ARM_LDR_POST_REG:
396
5.01k
      case ARM_STRB_POST_IMM:
397
398
6.38k
      case ARM_STR_POST_IMM:
399
6.84k
      case ARM_STR_POST_REG:
400
6.84k
        insn->detail->arm.writeback = true;
401
6.84k
        insn->detail->arm.post_index = true;
402
6.84k
        break;
403
133k
    }
404
133k
  }
405
406
  // check if this insn requests update flags
407
787k
  if (insn->detail->arm.update_flags == false) {
408
    // some insn still update flags, regardless of tabgen info
409
562k
    unsigned int i, j;
410
411
16.8M
    for (i = 0; i < ARR_SIZE(insn_update_flgs); i++) {
412
16.3M
      if (insn->id == insn_update_flgs[i].id &&
413
46.9k
          !strncmp(insn_asm, insn_update_flgs[i].name,
414
46.9k
            strlen(insn_update_flgs[i].name))) {
415
65
        insn->detail->arm.update_flags = true;
416
        // we have to update regs_write array as well
417
65
        for (j = 0; j < ARR_SIZE(insn->detail->regs_write); j++) {
418
65
          if (insn->detail->regs_write[j] == 0) {
419
65
            insn->detail->regs_write[j] = ARM_REG_CPSR;
420
65
            break;
421
65
          }
422
65
        }
423
65
        break;
424
65
      }
425
16.3M
    }
426
562k
  }
427
428
  // instruction should not have invalid CC
429
787k
  if (insn->detail->arm.cc == ARM_CC_INVALID) {
430
75.9k
    insn->detail->arm.cc = ARM_CC_AL;
431
75.9k
  }
432
433
  // manual fix for some special instructions
434
  // printf(">>> id: %u, mcid: %u\n", insn->id, mci->Opcode);
435
787k
  switch(mci->Opcode) {
436
787k
    default:
437
787k
      break;
438
787k
    case ARM_MOVPCLR:
439
74
      insn->detail->arm.operands[0].type = ARM_OP_REG;
440
74
      insn->detail->arm.operands[0].reg = ARM_REG_PC;
441
74
      insn->detail->arm.operands[0].access = CS_AC_WRITE;
442
74
      insn->detail->arm.operands[1].type = ARM_OP_REG;
443
74
      insn->detail->arm.operands[1].reg = ARM_REG_LR;
444
74
      insn->detail->arm.operands[1].access = CS_AC_READ;
445
74
      insn->detail->arm.op_count = 2;
446
74
      break;
447
787k
  }
448
787k
}
449
450
void ARM_printInst(MCInst *MI, SStream *O, void *Info)
451
787k
{
452
787k
  MCRegisterInfo *MRI = (MCRegisterInfo *)Info;
453
787k
  unsigned Opcode = MCInst_getOpcode(MI), tmp, i;
454
455
  //printf(">>> Opcode = %u\n", Opcode);
456
787k
  switch (Opcode) {
457
    // Check for MOVs and print canonical forms, instead.
458
1.17k
    case ARM_MOVsr: {
459
      // FIXME: Thumb variants?
460
1.17k
      unsigned int opc;
461
1.17k
      MCOperand *Dst = MCInst_getOperand(MI, 0);
462
1.17k
      MCOperand *MO1 = MCInst_getOperand(MI, 1);
463
1.17k
      MCOperand *MO2 = MCInst_getOperand(MI, 2);
464
1.17k
      MCOperand *MO3 = MCInst_getOperand(MI, 3);
465
466
1.17k
      opc = ARM_AM_getSORegShOp((unsigned int)MCOperand_getImm(MO3));
467
1.17k
      SStream_concat0(O, ARM_AM_getShiftOpcStr(opc));
468
469
1.17k
      switch (opc) {
470
0
        default: break;
471
79
        case ARM_AM_asr:
472
79
           MCInst_setOpcodePub(MI, ARM_INS_ASR);
473
79
           break;
474
231
        case ARM_AM_lsl:
475
231
           MCInst_setOpcodePub(MI, ARM_INS_LSL);
476
231
           break;
477
56
        case ARM_AM_lsr:
478
56
           MCInst_setOpcodePub(MI, ARM_INS_LSR);
479
56
           break;
480
808
        case ARM_AM_ror:
481
808
           MCInst_setOpcodePub(MI, ARM_INS_ROR);
482
808
           break;
483
0
        case ARM_AM_rrx:
484
0
           MCInst_setOpcodePub(MI, ARM_INS_RRX);
485
0
           break;
486
1.17k
      }
487
488
1.17k
      printSBitModifierOperand(MI, 6, O);
489
1.17k
      printPredicateOperand(MI, 4, O);
490
491
1.17k
      SStream_concat0(O, "\t");
492
1.17k
      printRegName(MI->csh, O, MCOperand_getReg(Dst));
493
494
1.17k
      if (MI->csh->detail) {
495
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
496
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(Dst);
497
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_WRITE;
498
1.17k
        MI->flat_insn->detail->arm.op_count++;
499
1.17k
      }
500
501
1.17k
      SStream_concat0(O, ", ");
502
1.17k
      printRegName(MI->csh, O, MCOperand_getReg(MO1));
503
504
1.17k
      if (MI->csh->detail) {
505
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
506
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO1);
507
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
508
1.17k
        MI->flat_insn->detail->arm.op_count++;
509
1.17k
      }
510
511
1.17k
      SStream_concat0(O, ", ");
512
1.17k
      printRegName(MI->csh, O, MCOperand_getReg(MO2));
513
514
1.17k
      if (MI->csh->detail) {
515
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
516
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO2);
517
1.17k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
518
1.17k
        MI->flat_insn->detail->arm.op_count++;
519
1.17k
      }
520
521
1.17k
      return;
522
1.17k
    }
523
524
545
    case ARM_MOVsi: {
525
      // FIXME: Thumb variants?
526
545
      unsigned int opc;
527
545
      MCOperand *Dst = MCInst_getOperand(MI, 0);
528
545
      MCOperand *MO1 = MCInst_getOperand(MI, 1);
529
545
      MCOperand *MO2 = MCInst_getOperand(MI, 2);
530
531
545
      opc = ARM_AM_getSORegShOp((unsigned int)MCOperand_getImm(MO2));
532
545
      SStream_concat0(O, ARM_AM_getShiftOpcStr(opc));
533
534
545
      switch(opc) {
535
0
        default:
536
0
          break;
537
142
        case ARM_AM_asr:
538
142
          MCInst_setOpcodePub(MI, ARM_INS_ASR);
539
142
          break;
540
120
        case ARM_AM_lsl:
541
120
          MCInst_setOpcodePub(MI, ARM_INS_LSL);
542
120
          break;
543
151
        case ARM_AM_lsr:
544
151
          MCInst_setOpcodePub(MI, ARM_INS_LSR);
545
151
          break;
546
50
        case ARM_AM_ror:
547
50
          MCInst_setOpcodePub(MI, ARM_INS_ROR);
548
50
          break;
549
82
        case ARM_AM_rrx:
550
82
          MCInst_setOpcodePub(MI, ARM_INS_RRX);
551
82
          break;
552
545
      }
553
554
545
      printSBitModifierOperand(MI, 5, O);
555
545
      printPredicateOperand(MI, 3, O);
556
557
545
      SStream_concat0(O, "\t");
558
545
      printRegName(MI->csh, O, MCOperand_getReg(Dst));
559
560
545
      if (MI->csh->detail) {
561
545
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
562
545
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(Dst);
563
545
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_WRITE;
564
545
        MI->flat_insn->detail->arm.op_count++;
565
545
      }
566
567
545
      SStream_concat0(O, ", ");
568
545
      printRegName(MI->csh, O, MCOperand_getReg(MO1));
569
545
      if (MI->csh->detail) {
570
545
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
571
545
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO1);
572
545
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
573
545
        MI->flat_insn->detail->arm.op_count++;
574
545
      }
575
576
545
      if (opc == ARM_AM_rrx) {
577
        //printAnnotation(O, Annot);
578
82
        return;
579
82
      }
580
581
463
      SStream_concat0(O, ", ");
582
463
      tmp = translateShiftImm(getSORegOffset((unsigned int)MCOperand_getImm(MO2)));
583
463
      printUInt32Bang(O, tmp);
584
463
      if (MI->csh->detail) {
585
463
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.type =
586
463
          (arm_shifter)opc;
587
463
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.value = tmp;
588
463
      }
589
590
463
      return;
591
545
    }
592
593
    // A8.6.123 PUSH
594
631
    case ARM_STMDB_UPD:
595
1.00k
    case ARM_t2STMDB_UPD:
596
1.00k
      if (MCOperand_getReg(MCInst_getOperand(MI, 0)) == ARM_SP &&
597
484
            MCInst_getNumOperands(MI) > 5) {
598
        // Should only print PUSH if there are at least two registers in the list.
599
409
        SStream_concat0(O, "push");
600
409
        MCInst_setOpcodePub(MI, ARM_INS_PUSH);
601
409
        printPredicateOperand(MI, 2, O);
602
603
409
        if (Opcode == ARM_t2STMDB_UPD)
604
209
          SStream_concat0(O, ".w");
605
606
409
        SStream_concat0(O, "\t");
607
608
409
        if (MI->csh->detail) {
609
409
          MI->flat_insn->detail->regs_read[MI->flat_insn->detail->regs_read_count] = ARM_REG_SP;
610
409
          MI->flat_insn->detail->regs_read_count++;
611
409
          MI->flat_insn->detail->regs_write[MI->flat_insn->detail->regs_write_count] = ARM_REG_SP;
612
409
          MI->flat_insn->detail->regs_write_count++;
613
409
        }
614
615
409
        printRegisterList(MI, 4, O);
616
409
        return;
617
409
      } else
618
591
        break;
619
620
1.07k
    case ARM_STR_PRE_IMM:
621
1.07k
      if (MCOperand_getReg(MCInst_getOperand(MI, 2)) == ARM_SP &&
622
99
          MCOperand_getImm(MCInst_getOperand(MI, 3)) == -4) {
623
0
        SStream_concat0(O, "push");
624
0
        MCInst_setOpcodePub(MI, ARM_INS_PUSH);
625
626
0
        printPredicateOperand(MI, 4, O);
627
628
0
        SStream_concat0(O, "\t{");
629
630
0
        printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, 1)));
631
632
0
        if (MI->csh->detail) {
633
0
#ifndef CAPSTONE_DIET
634
0
          uint8_t access;
635
0
#endif
636
0
          MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
637
0
          MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, 1));
638
0
#ifndef CAPSTONE_DIET
639
0
          access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
640
0
          MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
641
0
          MI->ac_idx++;
642
0
#endif
643
0
          MI->flat_insn->detail->arm.op_count++;
644
0
        }
645
646
0
        SStream_concat0(O, "}");
647
648
0
        return;
649
0
      } else
650
1.07k
        break;
651
652
    // A8.6.122 POP
653
493
    case ARM_LDMIA_UPD:
654
931
    case ARM_t2LDMIA_UPD:
655
931
      if (MCOperand_getReg(MCInst_getOperand(MI, 0)) == ARM_SP &&
656
523
          MCInst_getNumOperands(MI) > 5) {
657
        // Should only print POP if there are at least two registers in the list.
658
453
        SStream_concat0(O, "pop");
659
453
        MCInst_setOpcodePub(MI, ARM_INS_POP);
660
661
453
        printPredicateOperand(MI, 2, O);
662
453
        if (Opcode == ARM_t2LDMIA_UPD)
663
241
          SStream_concat0(O, ".w");
664
665
453
        SStream_concat0(O, "\t");
666
667
        // unlike LDM, POP only write to registers, so skip the 1st access code
668
453
        MI->ac_idx = 1;
669
453
        if (MI->csh->detail) {
670
453
          MI->flat_insn->detail->regs_read[MI->flat_insn->detail->regs_read_count] = ARM_REG_SP;
671
453
          MI->flat_insn->detail->regs_read_count++;
672
453
          MI->flat_insn->detail->regs_write[MI->flat_insn->detail->regs_write_count] = ARM_REG_SP;
673
453
          MI->flat_insn->detail->regs_write_count++;
674
453
        }
675
676
453
        printRegisterList(MI, 4, O);
677
678
453
        return;
679
453
      }
680
478
      break;
681
682
511
    case ARM_LDR_POST_IMM:
683
511
      if (MCOperand_getReg(MCInst_getOperand(MI, 2)) == ARM_SP) {
684
160
        MCOperand *MO2 = MCInst_getOperand(MI, 4);
685
686
160
        if (getAM2Offset((unsigned int)MCOperand_getImm(MO2)) == 4) {
687
78
          SStream_concat0(O, "pop");
688
78
          MCInst_setOpcodePub(MI, ARM_INS_POP);
689
78
          printPredicateOperand(MI, 5, O);
690
78
          SStream_concat0(O, "\t{");
691
692
78
          printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, 0)));
693
694
78
          if (MI->csh->detail) {
695
78
            MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
696
78
            MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, 0));
697
78
            MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_WRITE;
698
78
            MI->flat_insn->detail->arm.op_count++;
699
                        // this instruction implicitly read/write SP register
700
78
                        MI->flat_insn->detail->regs_read[MI->flat_insn->detail->regs_read_count] = ARM_REG_SP;
701
78
                        MI->flat_insn->detail->regs_read_count++;
702
78
                        MI->flat_insn->detail->regs_write[MI->flat_insn->detail->regs_write_count] = ARM_REG_SP;
703
78
                        MI->flat_insn->detail->regs_write_count++;
704
78
          }
705
78
          SStream_concat0(O, "}");
706
78
          return;
707
78
        }
708
160
      }
709
433
      break;
710
711
    // A8.6.355 VPUSH
712
433
    case ARM_VSTMSDB_UPD:
713
917
    case ARM_VSTMDDB_UPD:
714
917
      if (MCOperand_getReg(MCInst_getOperand(MI, 0)) == ARM_SP) {
715
517
        SStream_concat0(O, "vpush");
716
517
        MCInst_setOpcodePub(MI, ARM_INS_VPUSH);
717
517
        printPredicateOperand(MI, 2, O);
718
517
        SStream_concat0(O, "\t");
719
517
        printRegisterList(MI, 4, O);
720
517
        return;
721
517
      }
722
400
      break;
723
724
    // A8.6.354 VPOP
725
400
    case ARM_VLDMSIA_UPD:
726
556
    case ARM_VLDMDIA_UPD:
727
556
      if (MCOperand_getReg(MCInst_getOperand(MI, 0)) == ARM_SP) {
728
409
        SStream_concat0(O, "vpop");
729
409
        MCInst_setOpcodePub(MI, ARM_INS_VPOP);
730
409
        printPredicateOperand(MI, 2, O);
731
409
        SStream_concat0(O, "\t");
732
409
        printRegisterList(MI, 4, O);
733
409
        return;
734
409
      }
735
147
      break;
736
737
8.85k
    case ARM_tLDMIA: {
738
8.85k
        bool Writeback = true;
739
8.85k
        unsigned BaseReg = MCOperand_getReg(MCInst_getOperand(MI, 0));
740
8.85k
        unsigned i;
741
742
51.4k
        for (i = 3; i < MCInst_getNumOperands(MI); ++i) {
743
42.5k
          if (MCOperand_getReg(MCInst_getOperand(MI, i)) == BaseReg)
744
5.25k
            Writeback = false;
745
42.5k
        }
746
747
8.85k
        SStream_concat0(O, "ldm");
748
8.85k
        MCInst_setOpcodePub(MI, ARM_INS_LDM);
749
750
8.85k
        printPredicateOperand(MI, 1, O);
751
8.85k
        SStream_concat0(O, "\t");
752
8.85k
        printRegName(MI->csh, O, BaseReg);
753
8.85k
        if (MI->csh->detail) {
754
8.85k
          MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
755
8.85k
          MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = BaseReg;
756
8.85k
          MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ | CS_AC_WRITE;
757
8.85k
          MI->flat_insn->detail->arm.op_count++;
758
8.85k
        }
759
760
8.85k
        if (Writeback) {
761
3.59k
          MI->writeback = true;
762
3.59k
          SStream_concat0(O, "!");
763
3.59k
        }
764
765
8.85k
        SStream_concat0(O, ", ");
766
8.85k
        printRegisterList(MI, 3, O);
767
8.85k
        return;
768
556
      }
769
770
    // Combine 2 GPRs from disassember into a GPRPair to match with instr def.
771
    // ldrexd/strexd require even/odd GPR pair. To enforce this constraint,
772
    // a single GPRPair reg operand is used in the .td file to replace the two
773
    // GPRs. However, when decoding them, the two GRPs cannot be automatically
774
    // expressed as a GPRPair, so we have to manually merge them.
775
    // FIXME: We would really like to be able to tablegen'erate this.
776
693
    case ARM_LDREXD:
777
962
    case ARM_STREXD:
778
1.03k
    case ARM_LDAEXD:
779
1.30k
    case ARM_STLEXD: {
780
1.30k
      const MCRegisterClass *MRC = MCRegisterInfo_getRegClass(MRI, ARM_GPRRegClassID);
781
1.30k
      bool isStore = Opcode == ARM_STREXD || Opcode == ARM_STLEXD;
782
1.30k
      unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, isStore ? 1 : 0));
783
784
1.30k
      if (MCRegisterClass_contains(MRC, Reg)) {
785
0
          MCInst NewMI;
786
787
0
          MCInst_Init(&NewMI);
788
0
          MCInst_setOpcode(&NewMI, Opcode);
789
790
0
          if (isStore)
791
0
          MCInst_addOperand2(&NewMI, MCInst_getOperand(MI, 0));
792
793
0
          MCOperand_CreateReg0(&NewMI, MCRegisterInfo_getMatchingSuperReg(MRI, Reg, ARM_gsub_0,
794
0
              MCRegisterInfo_getRegClass(MRI, ARM_GPRPairRegClassID)));
795
796
          // Copy the rest operands into NewMI.
797
0
          for(i = isStore ? 3 : 2; i < MCInst_getNumOperands(MI); ++i)
798
0
          MCInst_addOperand2(&NewMI, MCInst_getOperand(MI, i));
799
800
0
          printInstruction(&NewMI, O);
801
0
          return;
802
0
      }
803
1.30k
      break;
804
1.30k
    }
805
806
1.30k
    case ARM_TSB:
807
401
    case ARM_t2TSB:
808
401
      SStream_concat0(O, "tsb\tcsync");
809
401
      MCInst_setOpcodePub(MI, ARM_INS_TSB);
810
      // TODO: add csync to operands[]?
811
401
      return;
812
787k
  }
813
814
774k
  MI->MRI = MRI;
815
816
774k
  if (!printAliasInstr(MI, O)) {
817
768k
    printInstruction(MI, O);
818
768k
  }
819
774k
}
820
821
static void printOperand(MCInst *MI, unsigned OpNo, SStream *O)
822
1.25M
{
823
1.25M
  int32_t imm;
824
1.25M
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
825
826
1.25M
  if (MCOperand_isReg(Op)) {
827
1.04M
    unsigned Reg = MCOperand_getReg(Op);
828
829
1.04M
    printRegName(MI->csh, O, Reg);
830
831
1.04M
    if (MI->csh->detail) {
832
1.04M
      if (MI->csh->doing_mem) {
833
0
        if (MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base == ARM_REG_INVALID)
834
0
          MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = Reg;
835
0
        else
836
0
          MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = Reg;
837
1.04M
      } else {
838
1.04M
#ifndef CAPSTONE_DIET
839
1.04M
        uint8_t access;
840
1.04M
#endif
841
842
1.04M
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
843
1.04M
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg;
844
1.04M
#ifndef CAPSTONE_DIET
845
1.04M
        access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
846
1.04M
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
847
1.04M
        MI->ac_idx++;
848
1.04M
#endif
849
1.04M
        MI->flat_insn->detail->arm.op_count++;
850
1.04M
      }
851
1.04M
    }
852
1.04M
  } else if (MCOperand_isImm(Op)) {
853
208k
    unsigned int opc = MCInst_getOpcode(MI);
854
855
208k
    imm = (int32_t)MCOperand_getImm(Op);
856
857
    // relative branch only has relative offset, so we have to update it
858
    // to reflect absolute address. 
859
    // Note: in ARM, PC is always 2 instructions ahead, so we have to
860
    // add 8 in ARM mode, or 4 in Thumb mode
861
    // printf(">> opcode: %u\n", MCInst_getOpcode(MI));
862
208k
    if (ARM_rel_branch(MI->csh, opc)) {
863
38.4k
      uint32_t address;
864
865
      // only do this for relative branch
866
38.4k
      if (MI->csh->mode & CS_MODE_THUMB) {
867
31.2k
        address = (uint32_t)MI->address + 4;
868
31.2k
        if (ARM_blx_to_arm_mode(MI->csh, opc)) {
869
          // here need to align down to the nearest 4-byte address
870
405
#define _ALIGN_DOWN(v, align_width) ((v/align_width)*align_width)
871
405
          address = _ALIGN_DOWN(address, 4);
872
405
#undef _ALIGN_DOWN
873
405
        }
874
31.2k
      } else {
875
7.20k
        address = (uint32_t)MI->address + 8;
876
7.20k
      }
877
878
38.4k
      imm += address;
879
38.4k
      printUInt32Bang(O, imm);
880
169k
    } else {
881
169k
      switch(MI->flat_insn->id) {
882
167k
        default:
883
167k
          if (MI->csh->imm_unsigned)
884
0
            printUInt32Bang(O, imm);
885
167k
          else
886
167k
            printInt32Bang(O, imm);
887
167k
          break;
888
930
        case ARM_INS_AND:
889
1.37k
        case ARM_INS_ORR:
890
1.47k
        case ARM_INS_EOR:
891
1.88k
        case ARM_INS_BIC:
892
2.27k
        case ARM_INS_MVN:
893
          // do not print number in negative form
894
2.27k
          printUInt32Bang(O, imm);
895
2.27k
          break;
896
169k
      }
897
169k
    }
898
899
208k
    if (MI->csh->detail) {
900
208k
      if (MI->csh->doing_mem)
901
0
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = imm;
902
208k
      else {
903
208k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
904
208k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = imm;
905
208k
        MI->flat_insn->detail->arm.op_count++;
906
208k
      }
907
208k
    }
908
208k
  }
909
1.25M
}
910
911
static void printThumbLdrLabelOperand(MCInst *MI, unsigned OpNum, SStream *O)
912
23.9k
{
913
23.9k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
914
23.9k
  int32_t OffImm;
915
23.9k
  bool isSub;
916
23.9k
  SStream_concat0(O, "[pc, ");
917
918
23.9k
  OffImm = (int32_t)MCOperand_getImm(MO1);
919
23.9k
  isSub = OffImm < 0;
920
921
  // Special value for #-0. All others are normal.
922
23.9k
  if (OffImm == INT32_MIN)
923
464
    OffImm = 0;
924
925
23.9k
  if (isSub) {
926
6.75k
    SStream_concat(O, "#-0x%x", -OffImm);
927
17.2k
  } else {
928
17.2k
    printUInt32Bang(O, OffImm);
929
17.2k
  }
930
931
23.9k
  SStream_concat0(O, "]");
932
933
23.9k
  if (MI->csh->detail) {
934
23.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_MEM;
935
23.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = ARM_REG_PC;
936
23.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = ARM_REG_INVALID;
937
23.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.scale = 1;
938
23.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = OffImm;
939
23.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
940
23.9k
    MI->flat_insn->detail->arm.op_count++;
941
23.9k
  }
942
23.9k
}
943
944
// so_reg is a 4-operand unit corresponding to register forms of the A5.1
945
// "Addressing Mode 1 - Data-processing operands" forms.  This includes:
946
//    REG 0   0           - e.g. R5
947
//    REG REG 0,SH_OPC    - e.g. R5, ROR R3
948
//    REG 0   IMM,SH_OPC  - e.g. R5, LSL #3
949
static void printSORegRegOperand(MCInst *MI, unsigned OpNum, SStream *O)
950
5.62k
{
951
5.62k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
952
5.62k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
953
5.62k
  MCOperand *MO3 = MCInst_getOperand(MI, OpNum + 2);
954
5.62k
  ARM_AM_ShiftOpc ShOpc;
955
956
5.62k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
957
958
5.62k
  if (MI->csh->detail) {
959
5.62k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
960
5.62k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO1);
961
5.62k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
962
963
5.62k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.type = (MCOperand_getImm(MO3) & 7) + ARM_SFT_ASR_REG - 1;
964
5.62k
    MI->flat_insn->detail->arm.op_count++;
965
5.62k
  }
966
967
  // Print the shift opc.
968
5.62k
  ShOpc = ARM_AM_getSORegShOp((unsigned int)MCOperand_getImm(MO3));
969
5.62k
  SStream_concat0(O, ", ");
970
5.62k
  SStream_concat0(O, ARM_AM_getShiftOpcStr(ShOpc));
971
5.62k
  if (ShOpc == ARM_AM_rrx)
972
0
    return;
973
974
5.62k
  SStream_concat0(O, " ");
975
976
5.62k
  printRegName(MI->csh, O, MCOperand_getReg(MO2));
977
978
5.62k
  if (MI->csh->detail)
979
5.62k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.value = MCOperand_getReg(MO2);
980
5.62k
}
981
982
static void printSORegImmOperand(MCInst *MI, unsigned OpNum, SStream *O)
983
11.0k
{
984
11.0k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
985
11.0k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
986
987
11.0k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
988
989
11.0k
  if (MI->csh->detail) {
990
11.0k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
991
11.0k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO1);
992
11.0k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
993
11.0k
    MI->flat_insn->detail->arm.op_count++;
994
11.0k
  }
995
996
  // Print the shift opc.
997
11.0k
  printRegImmShift(MI, O, ARM_AM_getSORegShOp((unsigned int)MCOperand_getImm(MO2)),
998
11.0k
      getSORegOffset((unsigned int)MCOperand_getImm(MO2)));
999
11.0k
}
1000
1001
//===--------------------------------------------------------------------===//
1002
// Addressing Mode #2
1003
//===--------------------------------------------------------------------===//
1004
1005
static void printAM2PreOrOffsetIndexOp(MCInst *MI, unsigned Op, SStream *O)
1006
6.00k
{
1007
6.00k
  MCOperand *MO1 = MCInst_getOperand(MI, Op);
1008
6.00k
  MCOperand *MO2 = MCInst_getOperand(MI, Op + 1);
1009
6.00k
  MCOperand *MO3 = MCInst_getOperand(MI, Op + 2);
1010
6.00k
  unsigned int imm3 = (unsigned int)MCOperand_getImm(MO3);
1011
6.00k
  ARM_AM_AddrOpc subtracted = getAM2Op((unsigned int)MCOperand_getImm(MO3));
1012
1013
6.00k
  SStream_concat0(O, "[");
1014
6.00k
  set_mem_access(MI, true);
1015
1016
6.00k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1017
6.00k
  if (MI->csh->detail) {
1018
6.00k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
1019
6.00k
  }
1020
1021
6.00k
  if (!MCOperand_getReg(MO2)) {
1022
0
    unsigned tmp = getAM2Offset(imm3);
1023
0
    if (tmp) { // Don't print +0.
1024
0
      subtracted = getAM2Op(imm3);
1025
1026
0
      SStream_concat0(O, ", ");
1027
0
      if (tmp > HEX_THRESHOLD)
1028
0
        SStream_concat(O, "#%s0x%x", ARM_AM_getAddrOpcStr(subtracted), tmp);
1029
0
      else
1030
0
        SStream_concat(O, "#%s%u", ARM_AM_getAddrOpcStr(subtracted), tmp);
1031
0
      if (MI->csh->detail) {
1032
0
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.type = (arm_shifter)getAM2Op(imm3);
1033
0
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.value = tmp;
1034
0
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].subtracted = subtracted == ARM_AM_sub;
1035
0
      }
1036
0
    }
1037
1038
0
    SStream_concat0(O, "]");
1039
0
    set_mem_access(MI, false);
1040
1041
0
    return;
1042
0
  }
1043
1044
6.00k
  SStream_concat0(O, ", ");
1045
6.00k
  SStream_concat0(O, ARM_AM_getAddrOpcStr(subtracted));
1046
6.00k
  printRegName(MI->csh, O, MCOperand_getReg(MO2));
1047
6.00k
  if (MI->csh->detail) {
1048
6.00k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = MCOperand_getReg(MO2);
1049
6.00k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].subtracted = subtracted == ARM_AM_sub;
1050
6.00k
  }
1051
1052
6.00k
  printRegImmShift(MI, O, getAM2ShiftOpc(imm3), getAM2Offset(imm3));
1053
6.00k
  SStream_concat0(O, "]");
1054
6.00k
  set_mem_access(MI, false);
1055
6.00k
}
1056
1057
static void printAddrModeTBB(MCInst *MI, unsigned Op, SStream *O)
1058
211
{
1059
211
  MCOperand *MO1 = MCInst_getOperand(MI, Op);
1060
211
  MCOperand *MO2 = MCInst_getOperand(MI, Op + 1);
1061
1062
211
  SStream_concat0(O, "[");
1063
211
  set_mem_access(MI, true);
1064
1065
211
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1066
1067
211
  if (MI->csh->detail)
1068
211
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
1069
1070
211
  SStream_concat0(O, ", ");
1071
211
  printRegName(MI->csh, O, MCOperand_getReg(MO2));
1072
1073
211
  if (MI->csh->detail)
1074
211
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = MCOperand_getReg(MO2);
1075
1076
211
  SStream_concat0(O, "]");
1077
211
  set_mem_access(MI, false);
1078
211
}
1079
1080
static void printAddrModeTBH(MCInst *MI, unsigned Op, SStream *O)
1081
395
{
1082
395
  MCOperand *MO1 = MCInst_getOperand(MI, Op);
1083
395
  MCOperand *MO2 = MCInst_getOperand(MI, Op + 1);
1084
1085
395
  SStream_concat0(O, "[");
1086
395
  set_mem_access(MI, true);
1087
1088
395
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1089
1090
395
  if (MI->csh->detail)
1091
395
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
1092
1093
395
  SStream_concat0(O, ", ");
1094
395
  printRegName(MI->csh, O, MCOperand_getReg(MO2));
1095
1096
395
  if (MI->csh->detail)
1097
395
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = MCOperand_getReg(MO2);
1098
1099
395
  SStream_concat0(O, ", lsl #1]");
1100
1101
395
  if (MI->csh->detail) {
1102
395
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.type = ARM_SFT_LSL;
1103
395
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.value = 1;
1104
395
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.lshift = 1;
1105
395
  }
1106
1107
395
  set_mem_access(MI, false);
1108
395
}
1109
1110
static void printAddrMode2Operand(MCInst *MI, unsigned Op, SStream *O)
1111
6.00k
{
1112
6.00k
  MCOperand *MO1 = MCInst_getOperand(MI, Op);
1113
1114
6.00k
  if (!MCOperand_isReg(MO1)) {   // FIXME: This is for CP entries, but isn't right.
1115
0
    printOperand(MI, Op, O);
1116
0
    return;
1117
0
  }
1118
1119
//#ifndef NDEBUG
1120
//  const MCOperand &MO3 = MI->getOperand(Op + 2);
1121
//  unsigned IdxMode = ARM_AM::getAM2IdxMode(MO3.getImm());
1122
//  assert(IdxMode != ARMII::IndexModePost && "Should be pre or offset index op");
1123
//#endif
1124
1125
6.00k
  printAM2PreOrOffsetIndexOp(MI, Op, O);
1126
6.00k
}
1127
1128
static void printAddrMode2OffsetOperand(MCInst *MI, unsigned OpNum, SStream *O)
1129
9.23k
{
1130
9.23k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
1131
9.23k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
1132
9.23k
  ARM_AM_AddrOpc subtracted = getAM2Op((unsigned int)MCOperand_getImm(MO2));
1133
1134
9.23k
  if (!MCOperand_getReg(MO1)) {
1135
6.04k
    unsigned ImmOffs = getAM2Offset((unsigned int)MCOperand_getImm(MO2));
1136
6.04k
    if (ImmOffs > HEX_THRESHOLD)
1137
5.53k
      SStream_concat(O, "#%s0x%x",
1138
5.53k
          ARM_AM_getAddrOpcStr(subtracted), ImmOffs);
1139
506
    else
1140
506
      SStream_concat(O, "#%s%u",
1141
506
          ARM_AM_getAddrOpcStr(subtracted), ImmOffs);
1142
1143
6.04k
    if (MI->csh->detail) {
1144
6.04k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1145
6.04k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = ImmOffs;
1146
6.04k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].subtracted = subtracted == ARM_AM_sub;
1147
6.04k
      MI->flat_insn->detail->arm.op_count++;
1148
6.04k
    }
1149
6.04k
    return;
1150
6.04k
  }
1151
1152
3.19k
  SStream_concat0(O, ARM_AM_getAddrOpcStr(subtracted));
1153
3.19k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1154
1155
3.19k
  if (MI->csh->detail) {
1156
3.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
1157
3.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO1);
1158
3.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
1159
3.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].subtracted = subtracted == ARM_AM_sub;
1160
3.19k
    MI->flat_insn->detail->arm.op_count++;
1161
3.19k
  }
1162
1163
3.19k
  printRegImmShift(MI, O, getAM2ShiftOpc((unsigned int)MCOperand_getImm(MO2)),
1164
3.19k
      getAM2Offset((unsigned int)MCOperand_getImm(MO2)));
1165
3.19k
}
1166
1167
//===--------------------------------------------------------------------===//
1168
// Addressing Mode #3
1169
//===--------------------------------------------------------------------===//
1170
1171
static void printAM3PreOrOffsetIndexOp(MCInst *MI, unsigned Op, SStream *O,
1172
    bool AlwaysPrintImm0)
1173
5.06k
{
1174
5.06k
  MCOperand *MO1 = MCInst_getOperand(MI, Op);
1175
5.06k
  MCOperand *MO2 = MCInst_getOperand(MI, Op+1);
1176
5.06k
  MCOperand *MO3 = MCInst_getOperand(MI, Op+2);
1177
5.06k
  ARM_AM_AddrOpc sign = getAM3Op((unsigned int)MCOperand_getImm(MO3));
1178
5.06k
  unsigned ImmOffs;
1179
1180
5.06k
  SStream_concat0(O, "[");
1181
5.06k
  set_mem_access(MI, true);
1182
1183
5.06k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1184
1185
5.06k
  if (MI->csh->detail)
1186
5.06k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
1187
1188
5.06k
  if (MCOperand_getReg(MO2)) {
1189
2.11k
    SStream_concat0(O, ", ");
1190
2.11k
    SStream_concat0(O, ARM_AM_getAddrOpcStr(sign));
1191
1192
2.11k
    printRegName(MI->csh, O, MCOperand_getReg(MO2));
1193
1194
2.11k
    if (MI->csh->detail) {
1195
2.11k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = MCOperand_getReg(MO2);
1196
2.11k
      if (sign == ARM_AM_sub) {
1197
1.12k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.scale = -1;
1198
1.12k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].subtracted = true;
1199
1.12k
      }
1200
2.11k
    }
1201
1202
2.11k
    SStream_concat0(O, "]");
1203
2.11k
    set_mem_access(MI, false);
1204
1205
2.11k
    return;
1206
2.11k
  }
1207
1208
  // If the op is sub we have to print the immediate even if it is 0
1209
2.95k
  ImmOffs = getAM3Offset((unsigned int)MCOperand_getImm(MO3));
1210
1211
2.95k
  if (AlwaysPrintImm0 || ImmOffs || (sign == ARM_AM_sub)) {
1212
2.90k
    if (ImmOffs > HEX_THRESHOLD)
1213
2.61k
      SStream_concat(O, ", #%s0x%x", ARM_AM_getAddrOpcStr(sign), ImmOffs);
1214
289
    else
1215
289
      SStream_concat(O, ", #%s%u", ARM_AM_getAddrOpcStr(sign), ImmOffs);
1216
2.90k
  }
1217
1218
2.95k
  if (MI->csh->detail) {
1219
2.95k
    if (sign == ARM_AM_sub) {
1220
1.22k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = -(int)ImmOffs;
1221
1.22k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].subtracted = true;
1222
1.22k
    } else
1223
1.72k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = (int)ImmOffs;
1224
2.95k
  }
1225
1226
2.95k
  SStream_concat0(O, "]");
1227
2.95k
  set_mem_access(MI, false);
1228
2.95k
}
1229
1230
static void printAddrMode3Operand(MCInst *MI, unsigned Op, SStream *O,
1231
    bool AlwaysPrintImm0)
1232
5.06k
{
1233
5.06k
  MCOperand *MO1 = MCInst_getOperand(MI, Op);
1234
1235
5.06k
  if (!MCOperand_isReg(MO1)) {   // For label symbolic references.
1236
0
    printOperand(MI, Op, O);
1237
0
    return;
1238
0
  }
1239
1240
5.06k
  printAM3PreOrOffsetIndexOp(MI, Op, O, AlwaysPrintImm0);
1241
5.06k
}
1242
1243
static void printAddrMode3OffsetOperand(MCInst *MI, unsigned OpNum, SStream *O)
1244
5.34k
{
1245
5.34k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
1246
5.34k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
1247
5.34k
  ARM_AM_AddrOpc subtracted = getAM3Op((unsigned int)MCOperand_getImm(MO2));
1248
5.34k
  unsigned ImmOffs;
1249
1250
5.34k
  if (MCOperand_getReg(MO1)) {
1251
3.63k
    SStream_concat0(O, ARM_AM_getAddrOpcStr(subtracted));
1252
3.63k
    printRegName(MI->csh, O, MCOperand_getReg(MO1));
1253
1254
3.63k
    if (MI->csh->detail) {
1255
3.63k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
1256
3.63k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO1);
1257
3.63k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
1258
3.63k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].subtracted = subtracted == ARM_AM_sub;
1259
3.63k
      MI->flat_insn->detail->arm.op_count++;
1260
3.63k
    }
1261
1262
3.63k
    return;
1263
3.63k
  }
1264
1265
1.70k
  ImmOffs = getAM3Offset((unsigned int)MCOperand_getImm(MO2));
1266
1.70k
  if (ImmOffs > HEX_THRESHOLD)
1267
1.16k
    SStream_concat(O, "#%s0x%x", ARM_AM_getAddrOpcStr(subtracted), ImmOffs);
1268
548
  else
1269
548
    SStream_concat(O, "#%s%u", ARM_AM_getAddrOpcStr(subtracted), ImmOffs);
1270
1271
1.70k
  if (MI->csh->detail) {
1272
1.70k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1273
1.70k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = ImmOffs;
1274
1.70k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].subtracted = subtracted == ARM_AM_sub;
1275
1.70k
    MI->flat_insn->detail->arm.op_count++;
1276
1.70k
  }
1277
1.70k
}
1278
1279
static void printPostIdxImm8Operand(MCInst *MI, unsigned OpNum, SStream *O)
1280
971
{
1281
971
  MCOperand *MO = MCInst_getOperand(MI, OpNum);
1282
971
  unsigned Imm = (unsigned int)MCOperand_getImm(MO);
1283
1284
971
  if ((Imm & 0xff) > HEX_THRESHOLD)
1285
653
    SStream_concat(O, "#%s0x%x", ((Imm & 256) ? "" : "-"), (Imm & 0xff));
1286
318
  else
1287
318
    SStream_concat(O, "#%s%u", ((Imm & 256) ? "" : "-"), (Imm & 0xff));
1288
1289
971
  if (MI->csh->detail) {
1290
971
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1291
971
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = Imm & 0xff;
1292
971
    MI->flat_insn->detail->arm.op_count++;
1293
971
  }
1294
971
}
1295
1296
static void printPostIdxRegOperand(MCInst *MI, unsigned OpNum, SStream *O)
1297
1.46k
{
1298
1.46k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
1299
1.46k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
1300
1301
1.46k
  SStream_concat0(O, (MCOperand_getImm(MO2) ? "" : "-"));
1302
1.46k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1303
1304
1.46k
  if (MI->csh->detail) {
1305
1.46k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
1306
1.46k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO1);
1307
1.46k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
1308
1.46k
    MI->flat_insn->detail->arm.op_count++;
1309
1.46k
  }
1310
1.46k
}
1311
1312
static void printPostIdxImm8s4Operand(MCInst *MI, unsigned OpNum, SStream *O)
1313
6.77k
{
1314
6.77k
  MCOperand *MO = MCInst_getOperand(MI, OpNum);
1315
6.77k
  int Imm = (int)MCOperand_getImm(MO);
1316
1317
6.77k
  if (((Imm & 0xff) << 2) > HEX_THRESHOLD) {
1318
6.20k
    SStream_concat(O, "#%s0x%x", ((Imm & 256) ? "" : "-"), ((Imm & 0xff) << 2));
1319
6.20k
  } else {
1320
577
    SStream_concat(O, "#%s%u", ((Imm & 256) ? "" : "-"), ((Imm & 0xff) << 2));
1321
577
  }
1322
1323
6.77k
  if (MI->csh->detail) {
1324
6.77k
    int v = (Imm & 256) ? ((Imm & 0xff) << 2) : -((Imm & 0xff) << 2);
1325
6.77k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1326
6.77k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = v;
1327
6.77k
    MI->flat_insn->detail->arm.op_count++;
1328
6.77k
  }
1329
6.77k
}
1330
1331
static void printAddrMode5Operand(MCInst *MI, unsigned OpNum, SStream *O,
1332
    bool AlwaysPrintImm0)
1333
15.1k
{
1334
15.1k
  unsigned ImmOffs;
1335
15.1k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
1336
15.1k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
1337
15.1k
  ARM_AM_AddrOpc Op = ARM_AM_getAM5Op((unsigned int)MCOperand_getImm(MO2));
1338
1339
15.1k
  if (!MCOperand_isReg(MO1)) {   // FIXME: This is for CP entries, but isn't right.
1340
0
    printOperand(MI, OpNum, O);
1341
0
    return;
1342
0
  }
1343
1344
15.1k
  SStream_concat0(O, "[");
1345
15.1k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1346
1347
15.1k
  if (MI->csh->detail) {
1348
15.1k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_MEM;
1349
15.1k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
1350
15.1k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = ARM_REG_INVALID;
1351
15.1k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.scale = 1;
1352
15.1k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = 0;
1353
15.1k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
1354
15.1k
  }
1355
1356
15.1k
  ImmOffs = ARM_AM_getAM5Offset((unsigned int)MCOperand_getImm(MO2));
1357
15.1k
  if (AlwaysPrintImm0 || ImmOffs || Op == ARM_AM_sub) {
1358
14.9k
    if (ImmOffs * 4 > HEX_THRESHOLD)
1359
13.2k
      SStream_concat(O, ", #%s0x%x",
1360
13.2k
          ARM_AM_getAddrOpcStr(Op),
1361
13.2k
          ImmOffs * 4);
1362
1.65k
    else
1363
1.65k
      SStream_concat(O, ", #%s%u",
1364
1.65k
          ARM_AM_getAddrOpcStr(Op),
1365
1.65k
          ImmOffs * 4);
1366
1367
14.9k
    if (MI->csh->detail) {
1368
14.9k
      if (Op)
1369
7.16k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = ImmOffs * 4;
1370
7.75k
      else
1371
7.75k
        MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = -(int)ImmOffs * 4;
1372
14.9k
    }
1373
14.9k
  }
1374
1375
15.1k
  SStream_concat0(O, "]");
1376
1377
15.1k
  if (MI->csh->detail) {
1378
15.1k
    MI->flat_insn->detail->arm.op_count++;
1379
15.1k
  }
1380
15.1k
}
1381
1382
static void printAddrMode5FP16Operand(MCInst *MI, unsigned OpNum, SStream *O,
1383
    bool AlwaysPrintImm0)
1384
945
{
1385
945
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
1386
945
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
1387
945
  unsigned ImmOffs = getAM5FP16Offset((unsigned)MCOperand_getImm(MO2));
1388
945
  unsigned Op = getAM5FP16Op((unsigned)MCOperand_getImm(MO2));
1389
1390
945
  if (!MCOperand_isReg(MO1)) {  // FIXME: This is for CP entries, but isn't right.
1391
0
    printOperand(MI, OpNum, O);
1392
0
    return;
1393
0
  }
1394
1395
945
  SStream_concat0(O, "[");
1396
945
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1397
1398
945
  if (MI->csh->detail) {
1399
945
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_MEM;
1400
945
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
1401
945
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = ARM_REG_INVALID;
1402
945
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.scale = 1;
1403
945
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = 0;
1404
945
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
1405
945
  }
1406
1407
945
  if (AlwaysPrintImm0 || ImmOffs || Op == ARM_AM_sub) {
1408
852
  if (ImmOffs * 2 > HEX_THRESHOLD)
1409
293
    SStream_concat(O, ", #%s0x%x", ARM_AM_getAddrOpcStr(Op), ImmOffs * 2);
1410
559
  else
1411
559
    SStream_concat(O, ", #%s%u", ARM_AM_getAddrOpcStr(Op), ImmOffs * 2);
1412
1413
852
  if (MI->csh->detail) {
1414
852
    if (Op)
1415
282
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = ImmOffs * 2;
1416
570
    else
1417
570
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = -(int)ImmOffs * 2;
1418
852
  }
1419
852
  }
1420
1421
945
  SStream_concat0(O, "]");
1422
1423
945
  if (MI->csh->detail) {
1424
945
    MI->flat_insn->detail->arm.op_count++;
1425
945
  }
1426
945
}
1427
1428
static void printAddrMode6Operand(MCInst *MI, unsigned OpNum, SStream *O)
1429
58.2k
{
1430
58.2k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
1431
58.2k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
1432
58.2k
  unsigned tmp;
1433
1434
58.2k
  SStream_concat0(O, "[");
1435
58.2k
  set_mem_access(MI, true);
1436
1437
58.2k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1438
1439
58.2k
  if (MI->csh->detail)
1440
58.2k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
1441
1442
58.2k
  tmp = (unsigned int)MCOperand_getImm(MO2);
1443
58.2k
  if (tmp) {
1444
18.6k
    if (tmp << 3 > HEX_THRESHOLD)
1445
18.6k
      SStream_concat(O, ":0x%x", (tmp << 3));
1446
0
    else
1447
0
      SStream_concat(O, ":%u", (tmp << 3));
1448
1449
18.6k
    if (MI->csh->detail)
1450
18.6k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = tmp << 3;
1451
18.6k
  }
1452
1453
58.2k
  SStream_concat0(O, "]");
1454
58.2k
  set_mem_access(MI, false);
1455
58.2k
}
1456
1457
static void printAddrMode7Operand(MCInst *MI, unsigned OpNum, SStream *O)
1458
38.2k
{
1459
38.2k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
1460
1461
38.2k
  SStream_concat0(O, "[");
1462
38.2k
  set_mem_access(MI, true);
1463
1464
38.2k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
1465
1466
38.2k
  if (MI->csh->detail)
1467
38.2k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
1468
1469
38.2k
  SStream_concat0(O, "]");
1470
38.2k
  set_mem_access(MI, false);
1471
38.2k
}
1472
1473
static void printAddrMode6OffsetOperand(MCInst *MI, unsigned OpNum, SStream *O)
1474
22.5k
{
1475
22.5k
  MCOperand *MO = MCInst_getOperand(MI, OpNum);
1476
1477
22.5k
  if (MCOperand_getReg(MO) == 0) {
1478
9.02k
    MI->writeback = true;
1479
9.02k
    SStream_concat0(O, "!");
1480
13.4k
  } else {
1481
13.4k
    SStream_concat0(O, ", ");
1482
13.4k
    printRegName(MI->csh, O, MCOperand_getReg(MO));
1483
1484
13.4k
    if (MI->csh->detail) {
1485
13.4k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
1486
13.4k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MO);
1487
13.4k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
1488
13.4k
      MI->flat_insn->detail->arm.op_count++;
1489
13.4k
    }
1490
13.4k
  }
1491
22.5k
}
1492
1493
static void printBitfieldInvMaskImmOperand(MCInst *MI, unsigned OpNum, SStream *O)
1494
2.19k
{
1495
2.19k
  MCOperand *MO = MCInst_getOperand(MI, OpNum);
1496
2.19k
  uint32_t v = ~(uint32_t)MCOperand_getImm(MO);
1497
2.19k
  int32_t lsb = CountTrailingZeros_32(v);
1498
2.19k
  int32_t width = (32 - CountLeadingZeros_32 (v)) - lsb;
1499
1500
  //assert(MO.isImm() && "Not a valid bf_inv_mask_imm value!");
1501
2.19k
  printUInt32Bang(O, lsb);
1502
1503
2.19k
  if (width > HEX_THRESHOLD)
1504
789
    SStream_concat(O, ", #0x%x", width);
1505
1.40k
  else
1506
1.40k
    SStream_concat(O, ", #%u", width);
1507
1508
2.19k
  if (MI->csh->detail) {
1509
2.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1510
2.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = lsb;
1511
2.19k
    MI->flat_insn->detail->arm.op_count++;
1512
2.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1513
2.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = width;
1514
2.19k
    MI->flat_insn->detail->arm.op_count++;
1515
2.19k
  }
1516
2.19k
}
1517
1518
static void printMemBOption(MCInst *MI, unsigned OpNum, SStream *O)
1519
2.72k
{
1520
2.72k
  unsigned val = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1521
2.72k
  SStream_concat0(O, ARM_MB_MemBOptToString(val,
1522
2.72k
        ARM_getFeatureBits(MI->csh->mode, ARM_HasV8Ops)));
1523
1524
2.72k
  if (MI->csh->detail) {
1525
2.72k
    MI->flat_insn->detail->arm.mem_barrier = (arm_mem_barrier)(val + 1);
1526
2.72k
  }
1527
2.72k
}
1528
1529
static void printInstSyncBOption(MCInst *MI, unsigned OpNum, SStream *O)
1530
2.83k
{
1531
2.83k
  unsigned val = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1532
2.83k
  SStream_concat0(O, ARM_ISB_InstSyncBOptToString(val));
1533
2.83k
}
1534
1535
static void printTraceSyncBOption(MCInst *MI, unsigned OpNum, SStream *O)
1536
0
{
1537
0
  unsigned val = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1538
0
  SStream_concat0(O, ARM_TSB_TraceSyncBOptToString(val));
1539
  // TODO: add to detail?
1540
0
}
1541
1542
static void printShiftImmOperand(MCInst *MI, unsigned OpNum, SStream *O)
1543
1.73k
{
1544
1.73k
  unsigned ShiftOp = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1545
1.73k
  bool isASR = (ShiftOp & (1 << 5)) != 0;
1546
1.73k
  unsigned Amt = ShiftOp & 0x1f;
1547
1548
1.73k
  if (isASR) {
1549
776
    unsigned tmp = Amt == 0 ? 32 : Amt;
1550
776
    if (tmp > HEX_THRESHOLD)
1551
400
      SStream_concat(O, ", asr #0x%x", tmp);
1552
376
    else
1553
376
      SStream_concat(O, ", asr #%u", tmp);
1554
1555
776
    if (MI->csh->detail) {
1556
776
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.type = ARM_SFT_ASR;
1557
776
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.value = tmp;
1558
776
    }
1559
954
  } else if (Amt) {
1560
640
    if (Amt > HEX_THRESHOLD)
1561
345
      SStream_concat(O, ", lsl #0x%x", Amt);
1562
295
    else
1563
295
      SStream_concat(O, ", lsl #%u", Amt);
1564
1565
640
    if (MI->csh->detail) {
1566
640
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.type = ARM_SFT_LSL;
1567
640
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.value = Amt;
1568
640
    }
1569
640
  }
1570
1.73k
}
1571
1572
static void printPKHLSLShiftImm(MCInst *MI, unsigned OpNum, SStream *O)
1573
1.31k
{
1574
1.31k
  unsigned Imm = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1575
1576
1.31k
  if (Imm == 0)
1577
116
    return;
1578
1579
  //assert(Imm > 0 && Imm < 32 && "Invalid PKH shift immediate value!");
1580
1.19k
  if (Imm > HEX_THRESHOLD)
1581
1.10k
    SStream_concat(O, ", lsl #0x%x", Imm);
1582
92
  else
1583
92
    SStream_concat(O, ", lsl #%u", Imm);
1584
1585
1.19k
  if (MI->csh->detail) {
1586
1.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.type = ARM_SFT_LSL;
1587
1.19k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.value = Imm;
1588
1.19k
  }
1589
1.19k
}
1590
1591
static void printPKHASRShiftImm(MCInst *MI, unsigned OpNum, SStream *O)
1592
547
{
1593
547
  unsigned Imm = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1594
1595
  // A shift amount of 32 is encoded as 0.
1596
547
  if (Imm == 0)
1597
76
    Imm = 32;
1598
1599
  //assert(Imm > 0 && Imm <= 32 && "Invalid PKH shift immediate value!");
1600
547
  if (Imm > HEX_THRESHOLD)
1601
287
    SStream_concat(O, ", asr #0x%x", Imm);
1602
260
  else
1603
260
    SStream_concat(O, ", asr #%u", Imm);
1604
1605
547
  if (MI->csh->detail) {
1606
547
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.type = ARM_SFT_ASR;
1607
547
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.value = Imm;
1608
547
  }
1609
547
}
1610
1611
// FIXME: push {r1, r2, r3, ...} can exceed the number of operands in MCInst struct
1612
static void printRegisterList(MCInst *MI, unsigned OpNum, SStream *O)
1613
34.8k
{
1614
34.8k
  unsigned i, e;
1615
34.8k
#ifndef CAPSTONE_DIET
1616
34.8k
  uint8_t access = 0;
1617
34.8k
#endif
1618
1619
34.8k
  SStream_concat0(O, "{");
1620
1621
34.8k
#ifndef CAPSTONE_DIET
1622
34.8k
  if (MI->csh->detail) {
1623
34.8k
    access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
1624
34.8k
  }
1625
34.8k
#endif
1626
1627
248k
  for (i = OpNum, e = MCInst_getNumOperands(MI); i != e; ++i) {
1628
213k
    if (i != OpNum)
1629
179k
      SStream_concat0(O, ", ");
1630
1631
213k
    printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, i)));
1632
1633
213k
    if (MI->csh->detail) {
1634
213k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
1635
213k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, i));
1636
213k
#ifndef CAPSTONE_DIET
1637
213k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
1638
213k
#endif
1639
213k
      MI->flat_insn->detail->arm.op_count++;
1640
213k
    }
1641
213k
  }
1642
1643
34.8k
  SStream_concat0(O, "}");
1644
1645
34.8k
#ifndef CAPSTONE_DIET
1646
34.8k
  if (MI->csh->detail) {
1647
34.8k
    MI->ac_idx++;
1648
34.8k
  }
1649
34.8k
#endif
1650
34.8k
}
1651
1652
static void printGPRPairOperand(MCInst *MI, unsigned OpNum, SStream *O)
1653
1.30k
{
1654
1.30k
  unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
1655
1656
1.30k
  printRegName(MI->csh, O, MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_gsub_0));
1657
1658
1.30k
  if (MI->csh->detail) {
1659
1.30k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
1660
1.30k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_gsub_0);
1661
1.30k
    MI->flat_insn->detail->arm.op_count++;
1662
1.30k
  }
1663
1664
1.30k
  SStream_concat0(O, ", ");
1665
1666
1.30k
  printRegName(MI->csh, O, MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_gsub_1));
1667
1668
1.30k
  if (MI->csh->detail) {
1669
1.30k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
1670
1.30k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_gsub_1);
1671
1.30k
    MI->flat_insn->detail->arm.op_count++;
1672
1.30k
  }
1673
1.30k
}
1674
1675
// SETEND BE/LE
1676
static void printSetendOperand(MCInst *MI, unsigned OpNum, SStream *O)
1677
380
{
1678
380
  MCOperand *Op = MCInst_getOperand(MI, OpNum);
1679
1680
380
  if (MCOperand_getImm(Op)) {
1681
108
    SStream_concat0(O, "be");
1682
1683
108
    if (MI->csh->detail) {
1684
108
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_SETEND;
1685
108
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].setend = ARM_SETEND_BE;
1686
108
      MI->flat_insn->detail->arm.op_count++;
1687
108
    }
1688
272
  } else {
1689
272
    SStream_concat0(O, "le");
1690
1691
272
    if (MI->csh->detail) {
1692
272
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_SETEND;
1693
272
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].setend = ARM_SETEND_LE;
1694
272
      MI->flat_insn->detail->arm.op_count++;
1695
272
    }
1696
272
  }
1697
380
}
1698
1699
static void printCPSIMod(MCInst *MI, unsigned OpNum, SStream *O)
1700
1.64k
{
1701
1.64k
  MCOperand *Op = MCInst_getOperand(MI, OpNum);
1702
1.64k
  unsigned int mode = (unsigned int)MCOperand_getImm(Op);
1703
1704
1.64k
  SStream_concat0(O, ARM_PROC_IModToString(mode));
1705
1706
1.64k
  if (MI->csh->detail) {
1707
1.64k
    MI->flat_insn->detail->arm.cps_mode = mode;
1708
1.64k
  }
1709
1.64k
}
1710
1711
static void printCPSIFlag(MCInst *MI, unsigned OpNum, SStream *O)
1712
1.64k
{
1713
1.64k
  MCOperand *Op = MCInst_getOperand(MI, OpNum);
1714
1.64k
  unsigned IFlags = (unsigned int)MCOperand_getImm(Op);
1715
1.64k
  int i;
1716
1717
6.58k
  for (i = 2; i >= 0; --i)
1718
4.93k
    if (IFlags & (1 << i)) {
1719
2.58k
      SStream_concat0(O, ARM_PROC_IFlagsToString(1 << i));
1720
2.58k
    }
1721
1722
1.64k
  if (IFlags == 0) {
1723
461
    SStream_concat0(O, "none");
1724
461
    IFlags = ARM_CPSFLAG_NONE;
1725
461
  }
1726
1727
1.64k
  if (MI->csh->detail) {
1728
1.64k
    MI->flat_insn->detail->arm.cps_flag = IFlags;
1729
1.64k
  }
1730
1.64k
}
1731
1732
static void printMSRMaskOperand(MCInst *MI, unsigned OpNum, SStream *O)
1733
7.72k
{
1734
7.72k
  MCOperand *Op = MCInst_getOperand(MI, OpNum);
1735
7.72k
  unsigned SpecRegRBit = (unsigned)MCOperand_getImm(Op) >> 4;
1736
7.72k
  unsigned Mask = (unsigned)MCOperand_getImm(Op) & 0xf;
1737
7.72k
  unsigned reg;
1738
1739
7.72k
  if (ARM_getFeatureBits(MI->csh->mode, ARM_FeatureMClass)) {
1740
6.13k
    const MClassSysReg *TheReg;
1741
6.13k
    unsigned SYSm = (unsigned)MCOperand_getImm(Op) & 0xFFF;  // 12-bit SYMm
1742
6.13k
    unsigned Opcode = MCInst_getOpcode(MI);
1743
1744
6.13k
    if (Opcode == ARM_t2MSR_M && ARM_getFeatureBits(MI->csh->mode, ARM_FeatureDSP)) {
1745
4.84k
      TheReg = lookupMClassSysRegBy12bitSYSmValue(SYSm);
1746
4.84k
      if (TheReg && MClassSysReg_isInRequiredFeatures(TheReg, ARM_FeatureDSP)) {
1747
372
        SStream_concat0(O, TheReg->Name);
1748
372
        ARM_addSysReg(MI, TheReg->sysreg);
1749
372
        return;
1750
372
      }
1751
4.84k
    }
1752
1753
    // Handle the basic 8-bit mask.
1754
5.76k
    SYSm &= 0xff;
1755
5.76k
    if (Opcode == ARM_t2MSR_M && ARM_getFeatureBits(MI->csh->mode, ARM_HasV7Ops)) {
1756
      // ARMv7-M deprecates using MSR APSR without a _<bits> qualifier as an
1757
      // alias for MSR APSR_nzcvq.
1758
4.47k
      TheReg = lookupMClassSysRegAPSRNonDeprecated(SYSm);
1759
4.47k
      if (TheReg) {
1760
325
        SStream_concat0(O, TheReg->Name);
1761
325
        ARM_addSysReg(MI, TheReg->sysreg);
1762
325
        return;
1763
325
      }
1764
4.47k
    }
1765
1766
5.43k
    TheReg = lookupMClassSysRegBy8bitSYSmValue(SYSm);
1767
5.43k
    if (TheReg) {
1768
4.05k
      SStream_concat0(O, TheReg->Name);
1769
4.05k
      ARM_addSysReg(MI, TheReg->sysreg);
1770
4.05k
      return;
1771
4.05k
    }
1772
1773
1.38k
    if (SYSm > HEX_THRESHOLD)
1774
1.06k
      SStream_concat(O, "%x", SYSm);
1775
320
    else
1776
320
      SStream_concat(O, "%u", SYSm);
1777
1778
1.38k
    if (MI->csh->detail)
1779
1.38k
      MCOperand_CreateImm0(MI, SYSm);
1780
1781
1.38k
    return;
1782
5.43k
  }
1783
1784
  // As special cases, CPSR_f, CPSR_s and CPSR_fs prefer printing as
1785
  // APSR_nzcvq, APSR_g and APSRnzcvqg, respectively.
1786
1.59k
  if (!SpecRegRBit && (Mask == 8 || Mask == 4 || Mask == 12)) {
1787
419
    SStream_concat0(O, "apsr_");
1788
419
    switch (Mask) {
1789
0
      default: // llvm_unreachable("Unexpected mask value!");
1790
226
      case 4:  SStream_concat0(O, "g"); ARM_addSysReg(MI, ARM_SYSREG_APSR_G); return;
1791
98
      case 8:  SStream_concat0(O, "nzcvq"); ARM_addSysReg(MI, ARM_SYSREG_APSR_NZCVQ); return;
1792
95
      case 12: SStream_concat0(O, "nzcvqg"); ARM_addSysReg(MI, ARM_SYSREG_APSR_NZCVQG); return;
1793
419
    }
1794
419
  }
1795
1796
1.17k
  if (SpecRegRBit) {
1797
478
    SStream_concat0(O, "spsr");
1798
699
  } else {
1799
699
    SStream_concat0(O, "cpsr");
1800
699
  }
1801
1802
1.17k
  reg = 0;
1803
1.17k
  if (Mask) {
1804
1.03k
    SStream_concat0(O, "_");
1805
1806
1.03k
    if (Mask & 8) {
1807
394
      SStream_concat0(O, "f");
1808
394
      reg += SpecRegRBit ? ARM_SYSREG_SPSR_F : ARM_SYSREG_CPSR_F;
1809
394
    }
1810
1811
1.03k
    if (Mask & 4) {
1812
798
      SStream_concat0(O, "s");
1813
798
      reg += SpecRegRBit ? ARM_SYSREG_SPSR_S : ARM_SYSREG_CPSR_S;
1814
798
    }
1815
1816
1.03k
    if (Mask & 2) {
1817
702
      SStream_concat0(O, "x");
1818
702
      reg += SpecRegRBit ? ARM_SYSREG_SPSR_X : ARM_SYSREG_CPSR_X;
1819
702
    }
1820
1821
1.03k
    if (Mask & 1) {
1822
747
      SStream_concat0(O, "c");
1823
747
      reg += SpecRegRBit ? ARM_SYSREG_SPSR_C : ARM_SYSREG_CPSR_C;
1824
747
    }
1825
1826
1.03k
    ARM_addSysReg(MI, reg);
1827
1.03k
  }
1828
1.17k
}
1829
1830
static void printBankedRegOperand(MCInst *MI, unsigned OpNum, SStream *O)
1831
1.02k
{
1832
1.02k
  uint32_t Banked = (uint32_t)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1833
1.02k
  const BankedReg *TheReg = lookupBankedRegByEncoding(Banked);
1834
1835
1.02k
  SStream_concat0(O, TheReg->Name);
1836
1.02k
  ARM_addSysReg(MI, TheReg->sysreg);
1837
1.02k
}
1838
1839
static void printPredicateOperand(MCInst *MI, unsigned OpNum, SStream *O)
1840
703k
{
1841
703k
  ARMCC_CondCodes CC = (ARMCC_CondCodes)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1842
  // Handle the undefined 15 CC value here for printing so we don't abort().
1843
703k
  if ((unsigned)CC == 15) {
1844
118
    SStream_concat0(O, "<und>");
1845
1846
118
    if (MI->csh->detail)
1847
118
      MI->flat_insn->detail->arm.cc = ARM_CC_INVALID;
1848
702k
  } else {
1849
702k
    if (CC != ARMCC_AL) {
1850
151k
      SStream_concat0(O, ARMCC_ARMCondCodeToString(CC));
1851
151k
    }
1852
1853
702k
    if (MI->csh->detail)
1854
702k
      MI->flat_insn->detail->arm.cc = CC + 1;
1855
702k
  }
1856
703k
}
1857
1858
static void printMandatoryPredicateOperand(MCInst *MI, unsigned OpNum, SStream *O)
1859
8.46k
{
1860
8.46k
  ARMCC_CondCodes CC = (ARMCC_CondCodes)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1861
8.46k
  SStream_concat0(O, ARMCC_ARMCondCodeToString(CC));
1862
1863
8.46k
  if (MI->csh->detail)
1864
8.46k
    MI->flat_insn->detail->arm.cc = CC + 1;
1865
8.46k
}
1866
1867
static void printSBitModifierOperand(MCInst *MI, unsigned OpNum, SStream *O)
1868
188k
{
1869
188k
  if (MCOperand_getReg(MCInst_getOperand(MI, OpNum))) {
1870
    //assert(MCOperand_getReg(MCInst_getOperand(MI, OpNum)) == ARM_CPSR &&
1871
    //       "Expect ARM CPSR register!");
1872
157k
    SStream_concat0(O, "s");
1873
1874
157k
    if (MI->csh->detail)
1875
157k
      MI->flat_insn->detail->arm.update_flags = true;
1876
157k
  }
1877
188k
}
1878
1879
static void printNoHashImmediate(MCInst *MI, unsigned OpNum, SStream *O)
1880
43.2k
{
1881
43.2k
  unsigned tmp = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1882
1883
43.2k
  printUInt32(O, tmp);
1884
1885
43.2k
  if (MI->csh->detail) {
1886
43.2k
    if (MI->csh->doing_mem) {
1887
43.2k
      MI->flat_insn->detail->arm.op_count--;
1888
43.2k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].neon_lane = (int8_t)tmp;
1889
43.2k
      MI->ac_idx--; // consecutive operands share the same access right
1890
43.2k
    } else {
1891
0
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1892
0
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = tmp;
1893
0
      MI->flat_insn->detail->arm.op_count++;
1894
0
    }
1895
43.2k
  }
1896
43.2k
}
1897
1898
static void printPImmediate(MCInst *MI, unsigned OpNum, SStream *O)
1899
37.0k
{
1900
37.0k
  unsigned imm = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1901
1902
37.0k
  SStream_concat(O, "p%u", imm);
1903
1904
37.0k
  if (MI->csh->detail) {
1905
37.0k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_PIMM;
1906
37.0k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = imm;
1907
37.0k
    MI->flat_insn->detail->arm.op_count++;
1908
37.0k
  }
1909
37.0k
}
1910
1911
static void printCImmediate(MCInst *MI, unsigned OpNum, SStream *O)
1912
52.0k
{
1913
52.0k
  unsigned imm = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1914
1915
52.0k
  SStream_concat(O, "c%u", imm);
1916
1917
52.0k
  if (MI->csh->detail) {
1918
52.0k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_CIMM;
1919
52.0k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = imm;
1920
52.0k
    MI->flat_insn->detail->arm.op_count++;
1921
52.0k
  }
1922
52.0k
}
1923
1924
static void printCoprocOptionImm(MCInst *MI, unsigned OpNum, SStream *O)
1925
2.82k
{
1926
2.82k
  unsigned tmp = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1927
2.82k
  if (tmp > HEX_THRESHOLD)
1928
2.45k
    SStream_concat(O, "{0x%x}", tmp);
1929
373
  else
1930
373
    SStream_concat(O, "{%u}", tmp);
1931
1932
2.82k
  if (MI->csh->detail) {
1933
2.82k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1934
2.82k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = tmp;
1935
2.82k
    MI->flat_insn->detail->arm.op_count++;
1936
2.82k
  }
1937
2.82k
}
1938
1939
static void printAdrLabelOperand(MCInst *MI, unsigned OpNum, SStream *O, unsigned scale)
1940
9.68k
{
1941
9.68k
  MCOperand *MO = MCInst_getOperand(MI, OpNum);
1942
1943
9.68k
  int32_t OffImm = (int32_t)MCOperand_getImm(MO) << scale;
1944
1945
9.68k
  if (OffImm == INT32_MIN) {
1946
0
    SStream_concat0(O, "#-0");
1947
1948
0
    if (MI->csh->detail) {
1949
0
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1950
0
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = 0;
1951
0
      MI->flat_insn->detail->arm.op_count++;
1952
0
    }
1953
9.68k
  } else {
1954
9.68k
    if (OffImm < 0)
1955
0
      SStream_concat(O, "#-0x%x", -OffImm);
1956
9.68k
    else {
1957
9.68k
      if (OffImm > HEX_THRESHOLD)
1958
8.89k
        SStream_concat(O, "#0x%x", OffImm);
1959
792
      else
1960
792
        SStream_concat(O, "#%u", OffImm);
1961
9.68k
    }
1962
1963
9.68k
    if (MI->csh->detail) {
1964
9.68k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1965
9.68k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = OffImm;
1966
9.68k
      MI->flat_insn->detail->arm.op_count++;
1967
9.68k
    }
1968
9.68k
  }
1969
9.68k
}
1970
1971
static void printThumbS4ImmOperand(MCInst *MI, unsigned OpNum, SStream *O)
1972
11.4k
{
1973
11.4k
  unsigned tmp = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum)) * 4;
1974
1975
11.4k
  printUInt32Bang(O, tmp);
1976
1977
11.4k
  if (MI->csh->detail) {
1978
11.4k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1979
11.4k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = tmp;
1980
11.4k
    MI->flat_insn->detail->arm.op_count++;
1981
11.4k
  }
1982
11.4k
}
1983
1984
static void printThumbSRImm(MCInst *MI, unsigned OpNum, SStream *O)
1985
33.4k
{
1986
33.4k
  unsigned Imm = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
1987
33.4k
  unsigned tmp = Imm == 0 ? 32 : Imm;
1988
1989
33.4k
  printUInt32Bang(O, tmp);
1990
1991
33.4k
  if (MI->csh->detail) {
1992
33.4k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
1993
33.4k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = tmp;
1994
33.4k
    MI->flat_insn->detail->arm.op_count++;
1995
33.4k
  }
1996
33.4k
}
1997
1998
static void printThumbITMask(MCInst *MI, unsigned OpNum, SStream *O)
1999
8.46k
{
2000
  // (3 - the number of trailing zeros) is the number of then / else.
2001
8.46k
  unsigned Mask = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
2002
8.46k
  unsigned Firstcond = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum - 1));
2003
8.46k
  unsigned CondBit0 = Firstcond & 1;
2004
8.46k
  unsigned NumTZ = CountTrailingZeros_32(Mask);
2005
  //assert(NumTZ <= 3 && "Invalid IT mask!");
2006
8.46k
  unsigned Pos, e;
2007
2008
28.6k
  for (Pos = 3, e = NumTZ; Pos > e; --Pos) {
2009
20.2k
    bool T = ((Mask >> Pos) & 1) == CondBit0;
2010
20.2k
    if (T)
2011
11.8k
      SStream_concat0(O, "t");
2012
8.30k
    else
2013
8.30k
      SStream_concat0(O, "e");
2014
    // TODO: detail for this t/e
2015
20.2k
  }
2016
8.46k
}
2017
2018
static void printThumbAddrModeRROperand(MCInst *MI, unsigned Op, SStream *O)
2019
13.6k
{
2020
13.6k
  MCOperand *MO1 = MCInst_getOperand(MI, Op);
2021
13.6k
  MCOperand *MO2 = MCInst_getOperand(MI, Op + 1);
2022
13.6k
  unsigned RegNum;
2023
2024
13.6k
  if (!MCOperand_isReg(MO1)) {   // FIXME: This is for CP entries, but isn't right.
2025
0
    printOperand(MI, Op, O);
2026
0
    return;
2027
0
  }
2028
2029
13.6k
  SStream_concat0(O, "[");
2030
13.6k
  set_mem_access(MI, true);
2031
2032
13.6k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
2033
2034
13.6k
  if (MI->csh->detail)
2035
13.6k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
2036
2037
13.6k
  RegNum = MCOperand_getReg(MO2);
2038
13.6k
  if (RegNum) {
2039
13.6k
    SStream_concat0(O, ", ");
2040
13.6k
    printRegName(MI->csh, O, RegNum);
2041
2042
13.6k
    if (MI->csh->detail)
2043
13.6k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = RegNum;
2044
13.6k
  }
2045
2046
13.6k
  SStream_concat0(O, "]");
2047
13.6k
  set_mem_access(MI, false);
2048
13.6k
}
2049
2050
static void printThumbAddrModeImm5SOperand(MCInst *MI, unsigned Op, SStream *O,
2051
    unsigned Scale)
2052
107k
{
2053
107k
  MCOperand *MO1 = MCInst_getOperand(MI, Op);
2054
107k
  MCOperand *MO2 = MCInst_getOperand(MI, Op + 1);
2055
107k
  unsigned ImmOffs, tmp;
2056
2057
107k
  if (!MCOperand_isReg(MO1)) {   // FIXME: This is for CP entries, but isn't right.
2058
0
    printOperand(MI, Op, O);
2059
0
    return;
2060
0
  }
2061
2062
107k
  SStream_concat0(O, "[");
2063
107k
  set_mem_access(MI, true);
2064
2065
107k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
2066
2067
107k
  if (MI->csh->detail)
2068
107k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
2069
2070
107k
  ImmOffs = (unsigned int)MCOperand_getImm(MO2);
2071
107k
  if (ImmOffs) {
2072
100k
    tmp = ImmOffs * Scale;
2073
100k
    SStream_concat0(O, ", ");
2074
100k
    printUInt32Bang(O, tmp);
2075
2076
100k
    if (MI->csh->detail)
2077
100k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = tmp;
2078
100k
  }
2079
2080
107k
  SStream_concat0(O, "]");
2081
107k
  set_mem_access(MI, false);
2082
107k
}
2083
2084
static void printThumbAddrModeImm5S1Operand(MCInst *MI, unsigned Op, SStream *O)
2085
24.1k
{
2086
24.1k
  printThumbAddrModeImm5SOperand(MI, Op, O, 1);
2087
24.1k
}
2088
2089
static void printThumbAddrModeImm5S2Operand(MCInst *MI, unsigned Op, SStream *O)
2090
35.4k
{
2091
35.4k
  printThumbAddrModeImm5SOperand(MI, Op, O, 2);
2092
35.4k
}
2093
2094
static void printThumbAddrModeImm5S4Operand(MCInst *MI, unsigned Op, SStream *O)
2095
34.2k
{
2096
34.2k
  printThumbAddrModeImm5SOperand(MI, Op, O, 4);
2097
34.2k
}
2098
2099
static void printThumbAddrModeSPOperand(MCInst *MI, unsigned Op, SStream *O)
2100
14.0k
{
2101
14.0k
  printThumbAddrModeImm5SOperand(MI, Op, O, 4);
2102
14.0k
}
2103
2104
// Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
2105
// register with shift forms.
2106
// REG 0   0           - e.g. R5
2107
// REG IMM, SH_OPC     - e.g. R5, LSL #3
2108
static void printT2SOOperand(MCInst *MI, unsigned OpNum, SStream *O)
2109
4.28k
{
2110
4.28k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
2111
4.28k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
2112
4.28k
  unsigned Reg = MCOperand_getReg(MO1);
2113
2114
4.28k
  printRegName(MI->csh, O, Reg);
2115
2116
4.28k
  if (MI->csh->detail) {
2117
4.28k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2118
4.28k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg;
2119
4.28k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = CS_AC_READ;
2120
4.28k
    MI->flat_insn->detail->arm.op_count++;
2121
4.28k
  }
2122
2123
  // Print the shift opc.
2124
  //assert(MO2.isImm() && "Not a valid t2_so_reg value!");
2125
4.28k
  printRegImmShift(MI, O, ARM_AM_getSORegShOp((unsigned int)MCOperand_getImm(MO2)),
2126
4.28k
      getSORegOffset((unsigned int)MCOperand_getImm(MO2)));
2127
4.28k
}
2128
2129
static void printAddrModeImm12Operand(MCInst *MI, unsigned OpNum,
2130
    SStream *O, bool AlwaysPrintImm0)
2131
11.1k
{
2132
11.1k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
2133
11.1k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum+1);
2134
11.1k
  int32_t OffImm;
2135
11.1k
  bool isSub;
2136
2137
11.1k
  if (!MCOperand_isReg(MO1)) {   // FIXME: This is for CP entries, but isn't right.
2138
0
    printOperand(MI, OpNum, O);
2139
0
    return;
2140
0
  }
2141
2142
11.1k
  SStream_concat0(O, "[");
2143
11.1k
  set_mem_access(MI, true);
2144
2145
11.1k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
2146
2147
11.1k
  if (MI->csh->detail)
2148
11.1k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
2149
2150
11.1k
  OffImm = (int32_t)MCOperand_getImm(MO2);
2151
11.1k
  isSub = OffImm < 0;
2152
2153
  // Special value for #-0. All others are normal.
2154
11.1k
  if (OffImm == INT32_MIN)
2155
704
    OffImm = 0;
2156
2157
11.1k
  if (isSub) {
2158
3.74k
    if (OffImm < -HEX_THRESHOLD)
2159
3.01k
      SStream_concat(O, ", #-0x%x", -OffImm);
2160
723
    else
2161
723
      SStream_concat(O, ", #-%u", -OffImm);
2162
7.40k
  } else if (AlwaysPrintImm0 || OffImm > 0) {
2163
7.06k
    if (OffImm >= 0) {
2164
7.06k
      if (OffImm > HEX_THRESHOLD)
2165
6.21k
        SStream_concat(O, ", #0x%x", OffImm);
2166
857
      else
2167
857
        SStream_concat(O, ", #%u", OffImm);
2168
7.06k
    } else {
2169
0
      if (OffImm < -HEX_THRESHOLD)
2170
0
        SStream_concat(O, ", #-0x%x", -OffImm);
2171
0
      else
2172
0
        SStream_concat(O, ", #-%u", -OffImm);
2173
0
    }
2174
7.06k
  }
2175
2176
11.1k
  if (MI->csh->detail)
2177
11.1k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = OffImm;
2178
2179
11.1k
  SStream_concat0(O, "]");
2180
11.1k
  set_mem_access(MI, false);
2181
11.1k
}
2182
2183
static void printT2AddrModeImm8Operand(MCInst *MI, unsigned OpNum, SStream *O,
2184
    bool AlwaysPrintImm0)
2185
5.30k
{
2186
5.30k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
2187
5.30k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum+1);
2188
5.30k
  int32_t OffImm;
2189
5.30k
  bool isSub;
2190
2191
5.30k
  SStream_concat0(O, "[");
2192
5.30k
  set_mem_access(MI, true);
2193
2194
5.30k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
2195
2196
5.30k
  if (MI->csh->detail)
2197
5.30k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
2198
2199
5.30k
  OffImm = (int32_t)MCOperand_getImm(MO2);
2200
5.30k
  isSub = OffImm < 0;
2201
2202
  // Don't print +0.
2203
5.30k
  if (OffImm == INT32_MIN)
2204
412
    OffImm = 0;
2205
2206
5.30k
  if (isSub)
2207
1.86k
    SStream_concat(O, ", #-0x%x", -OffImm);
2208
3.43k
  else if (AlwaysPrintImm0 || OffImm > 0) {
2209
3.17k
    if (OffImm > HEX_THRESHOLD)
2210
3.02k
      SStream_concat(O, ", #0x%x", OffImm);
2211
152
    else
2212
152
      SStream_concat(O, ", #%u", OffImm);
2213
3.17k
  }
2214
2215
5.30k
  if (MI->csh->detail)
2216
5.30k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = OffImm;
2217
2218
5.30k
  SStream_concat0(O, "]");
2219
5.30k
  set_mem_access(MI, false);
2220
5.30k
}
2221
2222
static void printT2AddrModeImm8s4Operand(MCInst *MI,
2223
    unsigned OpNum, SStream *O, bool AlwaysPrintImm0)
2224
8.94k
{
2225
8.94k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
2226
8.94k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
2227
8.94k
  int32_t OffImm;
2228
8.94k
  bool isSub;
2229
2230
8.94k
  if (!MCOperand_isReg(MO1)) {   //  For label symbolic references.
2231
0
    printOperand(MI, OpNum, O);
2232
0
    return;
2233
0
  }
2234
2235
8.94k
  SStream_concat0(O, "[");
2236
8.94k
  set_mem_access(MI, true);
2237
2238
8.94k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
2239
2240
8.94k
  if (MI->csh->detail)
2241
8.94k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
2242
2243
8.94k
  OffImm = (int32_t)MCOperand_getImm(MO2);
2244
8.94k
  isSub = OffImm < 0;
2245
2246
  //assert(((OffImm & 0x3) == 0) && "Not a valid immediate!");
2247
2248
  // Don't print +0.
2249
8.94k
  if (OffImm == INT32_MIN)
2250
992
    OffImm = 0;
2251
2252
8.94k
  if (isSub) {
2253
3.94k
    SStream_concat(O, ", #-0x%x", -OffImm);
2254
5.00k
  } else if (AlwaysPrintImm0 || OffImm > 0) {
2255
4.90k
    if (OffImm > HEX_THRESHOLD)
2256
4.08k
      SStream_concat(O, ", #0x%x", OffImm);
2257
820
    else
2258
820
      SStream_concat(O, ", #%u", OffImm);
2259
4.90k
  }
2260
2261
8.94k
  if (MI->csh->detail)
2262
8.94k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = OffImm;
2263
2264
8.94k
  SStream_concat0(O, "]");
2265
8.94k
  set_mem_access(MI, false);
2266
8.94k
}
2267
2268
static void printT2AddrModeImm0_1020s4Operand(MCInst *MI, unsigned OpNum, SStream *O)
2269
1.56k
{
2270
1.56k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
2271
1.56k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum + 1);
2272
1.56k
  unsigned tmp;
2273
2274
1.56k
  SStream_concat0(O, "[");
2275
1.56k
  set_mem_access(MI, true);
2276
2277
1.56k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
2278
2279
1.56k
  if (MI->csh->detail)
2280
1.56k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
2281
2282
1.56k
  if (MCOperand_getImm(MO2)) {
2283
1.11k
    SStream_concat0(O, ", ");
2284
1.11k
    tmp = (unsigned int)MCOperand_getImm(MO2) * 4;
2285
1.11k
    printUInt32Bang(O, tmp);
2286
2287
1.11k
    if (MI->csh->detail)
2288
1.11k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = tmp;
2289
1.11k
  }
2290
2291
1.56k
  SStream_concat0(O, "]");
2292
1.56k
  set_mem_access(MI, false);
2293
1.56k
}
2294
2295
static void printT2AddrModeImm8OffsetOperand(MCInst *MI,
2296
    unsigned OpNum, SStream *O)
2297
1.45k
{
2298
1.45k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
2299
1.45k
  int32_t OffImm = (int32_t)MCOperand_getImm(MO1);
2300
2301
1.45k
  SStream_concat0(O, ", ");
2302
1.45k
  if (OffImm == INT32_MIN) {
2303
163
    SStream_concat0(O, "#-0");
2304
2305
163
    if (MI->csh->detail) {
2306
163
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2307
163
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = 0;
2308
163
      MI->flat_insn->detail->arm.op_count++;
2309
163
    }
2310
1.29k
  } else {
2311
1.29k
    printInt32Bang(O, OffImm);
2312
2313
1.29k
    if (MI->csh->detail) {
2314
1.29k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2315
1.29k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = OffImm;
2316
1.29k
      MI->flat_insn->detail->arm.op_count++;
2317
1.29k
    }
2318
1.29k
  }
2319
1.45k
}
2320
2321
static void printT2AddrModeImm8s4OffsetOperand(MCInst *MI,
2322
    unsigned OpNum, SStream *O)
2323
1.80k
{
2324
1.80k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
2325
1.80k
  int32_t OffImm = (int32_t)MCOperand_getImm(MO1);
2326
2327
  //assert(((OffImm & 0x3) == 0) && "Not a valid immediate!");
2328
2329
1.80k
  SStream_concat0(O, ", ");
2330
2331
1.80k
  if (OffImm == INT32_MIN) {
2332
81
    SStream_concat0(O, "#-0");
2333
2334
81
    if (MI->csh->detail) {
2335
81
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2336
81
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = 0;
2337
81
      MI->flat_insn->detail->arm.op_count++;
2338
81
    }
2339
1.72k
  } else {
2340
1.72k
    printInt32Bang(O, OffImm);
2341
2342
1.72k
    if (MI->csh->detail) {
2343
1.72k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2344
1.72k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = OffImm;
2345
1.72k
      MI->flat_insn->detail->arm.op_count++;
2346
1.72k
    }
2347
1.72k
  }
2348
1.80k
}
2349
2350
static void printT2AddrModeSoRegOperand(MCInst *MI,
2351
    unsigned OpNum, SStream *O)
2352
3.21k
{
2353
3.21k
  MCOperand *MO1 = MCInst_getOperand(MI, OpNum);
2354
3.21k
  MCOperand *MO2 = MCInst_getOperand(MI, OpNum+1);
2355
3.21k
  MCOperand *MO3 = MCInst_getOperand(MI, OpNum+2);
2356
3.21k
  unsigned ShAmt;
2357
2358
3.21k
  SStream_concat0(O, "[");
2359
3.21k
  set_mem_access(MI, true);
2360
2361
3.21k
  printRegName(MI->csh, O, MCOperand_getReg(MO1));
2362
2363
3.21k
  if (MI->csh->detail)
2364
3.21k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = MCOperand_getReg(MO1);
2365
2366
  //assert(MCOperand_getReg(MO2.getReg() && "Invalid so_reg load / store address!");
2367
3.21k
  SStream_concat0(O, ", ");
2368
3.21k
  printRegName(MI->csh, O, MCOperand_getReg(MO2));
2369
2370
3.21k
  if (MI->csh->detail)
2371
3.21k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = MCOperand_getReg(MO2);
2372
2373
3.21k
  ShAmt = (unsigned int)MCOperand_getImm(MO3);
2374
3.21k
  if (ShAmt) {
2375
    //assert(ShAmt <= 3 && "Not a valid Thumb2 addressing mode!");
2376
2.06k
    SStream_concat0(O, ", lsl ");
2377
2.06k
    SStream_concat(O, "#%u", ShAmt);
2378
2379
2.06k
    if (MI->csh->detail) {
2380
2.06k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.type = ARM_SFT_LSL;
2381
2.06k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.value = ShAmt;
2382
2.06k
    }
2383
2.06k
  }
2384
2385
3.21k
  SStream_concat0(O, "]");
2386
3.21k
  set_mem_access(MI, false);
2387
3.21k
}
2388
2389
static void printFPImmOperand(MCInst *MI, unsigned OpNum, SStream *O)
2390
642
{
2391
642
  MCOperand *MO = MCInst_getOperand(MI, OpNum);
2392
2393
#if defined(_KERNEL_MODE)
2394
  // Issue #681: Windows kernel does not support formatting float point
2395
  SStream_concat(O, "#<float_point_unsupported>");
2396
#else
2397
642
  SStream_concat(O, "#%e", getFPImmFloat((unsigned int)MCOperand_getImm(MO)));
2398
642
#endif
2399
2400
642
  if (MI->csh->detail) {
2401
642
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_FP;
2402
642
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].fp = getFPImmFloat((unsigned int)MCOperand_getImm(MO));
2403
642
    MI->flat_insn->detail->arm.op_count++;
2404
642
  }
2405
642
}
2406
2407
static void printNEONModImmOperand(MCInst *MI, unsigned OpNum, SStream *O)
2408
4.36k
{
2409
4.36k
  unsigned EncodedImm = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
2410
4.36k
  unsigned EltBits;
2411
4.36k
  uint64_t Val = ARM_AM_decodeNEONModImm(EncodedImm, &EltBits);
2412
2413
4.36k
  if (Val > HEX_THRESHOLD)
2414
4.01k
    SStream_concat(O, "#0x%"PRIx64, Val);
2415
342
  else
2416
342
    SStream_concat(O, "#%"PRIu64, Val);
2417
2418
4.36k
  if (MI->csh->detail) {
2419
4.36k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2420
4.36k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = (unsigned int)Val;
2421
4.36k
    MI->flat_insn->detail->arm.op_count++;
2422
4.36k
  }
2423
4.36k
}
2424
2425
static void printImmPlusOneOperand(MCInst *MI, unsigned OpNum, SStream *O)
2426
3.10k
{
2427
3.10k
  unsigned Imm = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
2428
2429
3.10k
  printUInt32Bang(O, Imm + 1);
2430
2431
3.10k
  if (MI->csh->detail) {
2432
3.10k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2433
3.10k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = Imm + 1;
2434
3.10k
    MI->flat_insn->detail->arm.op_count++;
2435
3.10k
  }
2436
3.10k
}
2437
2438
static void printRotImmOperand(MCInst *MI, unsigned OpNum, SStream *O)
2439
3.74k
{
2440
3.74k
  unsigned Imm = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
2441
2442
3.74k
  if (Imm == 0)
2443
1.25k
    return;
2444
2445
2.48k
  SStream_concat0(O, ", ror #");
2446
2447
2.48k
  switch (Imm) {
2448
0
    default: //assert (0 && "illegal ror immediate!");
2449
638
    case 1: SStream_concat0(O, "8"); break;
2450
541
    case 2: SStream_concat0(O, "16"); break;
2451
1.31k
    case 3: SStream_concat0(O, "24"); break;
2452
2.48k
  }
2453
2454
2.48k
  if (MI->csh->detail) {
2455
2.48k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.type = ARM_SFT_ROR;
2456
2.48k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.value = Imm * 8;
2457
2.48k
  }
2458
2.48k
}
2459
2460
static void printModImmOperand(MCInst *MI, unsigned OpNum, SStream *O)
2461
8.18k
{
2462
8.18k
  MCOperand *Op = MCInst_getOperand(MI, OpNum);
2463
8.18k
  unsigned Bits = MCOperand_getImm(Op) & 0xFF;
2464
8.18k
  unsigned Rot = (MCOperand_getImm(Op) & 0xF00) >> 7;
2465
8.18k
  int32_t Rotated;
2466
8.18k
  bool  PrintUnsigned = false;
2467
2468
8.18k
  switch (MCInst_getOpcode(MI)) {
2469
234
    case ARM_MOVi:
2470
      // Movs to PC should be treated unsigned
2471
234
      PrintUnsigned = (MCOperand_getReg(MCInst_getOperand(MI, OpNum - 1)) == ARM_PC);
2472
234
      break;
2473
767
    case ARM_MSRi:
2474
      // Movs to special registers should be treated unsigned
2475
767
      PrintUnsigned = true;
2476
767
      break;
2477
8.18k
  }
2478
2479
8.18k
  Rotated = rotr32(Bits, Rot);
2480
8.18k
  if (getSOImmVal(Rotated) == MCOperand_getImm(Op)) {
2481
    // #rot has the least possible value
2482
6.09k
    if (PrintUnsigned) {
2483
611
      if (Rotated > HEX_THRESHOLD || Rotated < -HEX_THRESHOLD)
2484
520
        SStream_concat(O, "#0x%x", Rotated);
2485
91
      else
2486
91
        SStream_concat(O, "#%u", Rotated);
2487
5.48k
    } else if (Rotated >= 0) {
2488
4.68k
      if (Rotated > HEX_THRESHOLD)
2489
3.99k
        SStream_concat(O, "#0x%x", Rotated);
2490
689
      else
2491
689
        SStream_concat(O, "#%u", Rotated);
2492
4.68k
    } else {
2493
800
      SStream_concat(O, "#0x%x", Rotated);
2494
800
    }
2495
2496
6.09k
    if (MI->csh->detail) {
2497
6.09k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2498
6.09k
      MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = Rotated;
2499
6.09k
      MI->flat_insn->detail->arm.op_count++;
2500
6.09k
    }
2501
2502
6.09k
    return;
2503
6.09k
  }
2504
2505
  // Explicit #bits, #rot implied
2506
2.08k
  SStream_concat(O, "#%u, #%u", Bits, Rot);
2507
2508
2.08k
  if (MI->csh->detail) {
2509
2.08k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2510
2.08k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = Bits;
2511
2.08k
    MI->flat_insn->detail->arm.op_count++;
2512
2.08k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2513
2.08k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = Rot;
2514
2.08k
    MI->flat_insn->detail->arm.op_count++;
2515
2.08k
  }
2516
2.08k
}
2517
2518
static void printFBits16(MCInst *MI, unsigned OpNum, SStream *O)
2519
1.02k
{
2520
1.02k
  unsigned tmp;
2521
2522
1.02k
  tmp = 16 - (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
2523
2524
1.02k
  printUInt32Bang(O, tmp);
2525
2526
1.02k
  if (MI->csh->detail) {
2527
1.02k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2528
1.02k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = tmp;
2529
1.02k
    MI->flat_insn->detail->arm.op_count++;
2530
1.02k
  }
2531
1.02k
}
2532
2533
static void printFBits32(MCInst *MI, unsigned OpNum, SStream *O)
2534
711
{
2535
711
  unsigned tmp;
2536
2537
711
  tmp = 32 - (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
2538
2539
711
  printUInt32Bang(O, tmp);
2540
2541
711
  if (MI->csh->detail) {
2542
711
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
2543
711
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = tmp;
2544
711
    MI->flat_insn->detail->arm.op_count++;
2545
711
  }
2546
711
}
2547
2548
static void printVectorIndex(MCInst *MI, unsigned OpNum, SStream *O)
2549
6.30k
{
2550
6.30k
  unsigned tmp = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNum));
2551
2552
6.30k
  if (tmp > HEX_THRESHOLD)
2553
0
    SStream_concat(O, "[0x%x]", tmp);
2554
6.30k
  else
2555
6.30k
    SStream_concat(O, "[%u]", tmp);
2556
2557
6.30k
  if (MI->csh->detail) {
2558
6.30k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].vector_index = tmp;
2559
6.30k
  }
2560
6.30k
}
2561
2562
static void printVectorListOne(MCInst *MI, unsigned OpNum, SStream *O)
2563
3.00k
{
2564
3.00k
  SStream_concat0(O, "{");
2565
2566
3.00k
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
2567
2568
3.00k
  if (MI->csh->detail) {
2569
3.00k
#ifndef CAPSTONE_DIET
2570
3.00k
    uint8_t access;
2571
2572
3.00k
    access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2573
3.00k
#endif
2574
2575
3.00k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2576
3.00k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2577
3.00k
#ifndef CAPSTONE_DIET
2578
3.00k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2579
3.00k
#endif
2580
3.00k
    MI->flat_insn->detail->arm.op_count++;
2581
2582
3.00k
#ifndef CAPSTONE_DIET
2583
3.00k
  MI->ac_idx++;
2584
3.00k
#endif
2585
3.00k
  }
2586
2587
3.00k
  SStream_concat0(O, "}");
2588
3.00k
}
2589
2590
static void printVectorListTwo(MCInst *MI, unsigned OpNum, SStream *O)
2591
10.9k
{
2592
10.9k
#ifndef CAPSTONE_DIET
2593
10.9k
  uint8_t access;
2594
10.9k
#endif
2595
10.9k
  unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2596
10.9k
  unsigned Reg0 = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_dsub_0);
2597
10.9k
  unsigned Reg1 = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_dsub_1);
2598
2599
10.9k
#ifndef CAPSTONE_DIET
2600
10.9k
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2601
10.9k
#endif
2602
2603
10.9k
  SStream_concat0(O, "{");
2604
2605
10.9k
  printRegName(MI->csh, O, Reg0);
2606
2607
10.9k
  if (MI->csh->detail) {
2608
10.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2609
10.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg0;
2610
10.9k
#ifndef CAPSTONE_DIET
2611
10.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2612
10.9k
#endif
2613
10.9k
    MI->flat_insn->detail->arm.op_count++;
2614
10.9k
  }
2615
2616
10.9k
  SStream_concat0(O, ", ");
2617
2618
10.9k
  printRegName(MI->csh, O, Reg1);
2619
2620
10.9k
  if (MI->csh->detail) {
2621
10.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2622
10.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg1;
2623
10.9k
#ifndef CAPSTONE_DIET
2624
10.9k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2625
10.9k
#endif
2626
10.9k
    MI->flat_insn->detail->arm.op_count++;
2627
10.9k
  }
2628
2629
10.9k
  SStream_concat0(O, "}");
2630
2631
10.9k
#ifndef CAPSTONE_DIET
2632
10.9k
  MI->ac_idx++;
2633
10.9k
#endif
2634
10.9k
}
2635
2636
static void printVectorListTwoSpaced(MCInst *MI, unsigned OpNum, SStream *O)
2637
3.32k
{
2638
3.32k
#ifndef CAPSTONE_DIET
2639
3.32k
  uint8_t access;
2640
3.32k
#endif
2641
3.32k
  unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2642
3.32k
  unsigned Reg0 = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_dsub_0);
2643
3.32k
  unsigned Reg1 = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_dsub_2);
2644
2645
3.32k
#ifndef CAPSTONE_DIET
2646
3.32k
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2647
3.32k
#endif
2648
2649
3.32k
  SStream_concat0(O, "{");
2650
2651
3.32k
  printRegName(MI->csh, O, Reg0);
2652
2653
3.32k
  if (MI->csh->detail) {
2654
3.32k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2655
3.32k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg0;
2656
3.32k
#ifndef CAPSTONE_DIET
2657
3.32k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2658
3.32k
#endif
2659
3.32k
    MI->flat_insn->detail->arm.op_count++;
2660
3.32k
  }
2661
2662
3.32k
  SStream_concat0(O, ", ");
2663
2664
3.32k
  printRegName(MI->csh, O, Reg1);
2665
2666
3.32k
  if (MI->csh->detail) {
2667
3.32k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2668
3.32k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg1;
2669
3.32k
#ifndef CAPSTONE_DIET
2670
3.32k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2671
3.32k
#endif
2672
3.32k
    MI->flat_insn->detail->arm.op_count++;
2673
3.32k
  }
2674
2675
3.32k
  SStream_concat0(O, "}");
2676
2677
3.32k
#ifndef CAPSTONE_DIET
2678
3.32k
  MI->ac_idx++;
2679
3.32k
#endif
2680
3.32k
}
2681
2682
static void printVectorListThree(MCInst *MI, unsigned OpNum, SStream *O)
2683
3.31k
{
2684
3.31k
#ifndef CAPSTONE_DIET
2685
3.31k
  uint8_t access;
2686
2687
3.31k
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2688
3.31k
#endif
2689
2690
  // Normally, it's not safe to use register enum values directly with
2691
  // addition to get the next register, but for VFP registers, the
2692
  // sort order is guaranteed because they're all of the form D<n>.
2693
3.31k
  SStream_concat0(O, "{");
2694
2695
3.31k
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
2696
2697
3.31k
  if (MI->csh->detail) {
2698
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2699
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2700
3.31k
#ifndef CAPSTONE_DIET
2701
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2702
3.31k
#endif
2703
3.31k
    MI->flat_insn->detail->arm.op_count++;
2704
3.31k
  }
2705
2706
3.31k
  SStream_concat0(O, ", ");
2707
2708
3.31k
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 1);
2709
2710
3.31k
  if (MI->csh->detail) {
2711
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2712
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 1;
2713
3.31k
#ifndef CAPSTONE_DIET
2714
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2715
3.31k
#endif
2716
3.31k
    MI->flat_insn->detail->arm.op_count++;
2717
3.31k
  }
2718
2719
3.31k
  SStream_concat0(O, ", ");
2720
2721
3.31k
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2);
2722
2723
3.31k
  if (MI->csh->detail) {
2724
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2725
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2;
2726
3.31k
#ifndef CAPSTONE_DIET
2727
3.31k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2728
3.31k
#endif
2729
3.31k
    MI->flat_insn->detail->arm.op_count++;
2730
3.31k
  }
2731
2732
3.31k
  SStream_concat0(O, "}");
2733
2734
3.31k
#ifndef CAPSTONE_DIET
2735
3.31k
  MI->ac_idx++;
2736
3.31k
#endif
2737
3.31k
}
2738
2739
static void printVectorListFour(MCInst *MI, unsigned OpNum, SStream *O)
2740
6.03k
{
2741
6.03k
#ifndef CAPSTONE_DIET
2742
6.03k
  uint8_t access;
2743
2744
6.03k
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2745
6.03k
#endif
2746
2747
  // Normally, it's not safe to use register enum values directly with
2748
  // addition to get the next register, but for VFP registers, the
2749
  // sort order is guaranteed because they're all of the form D<n>.
2750
6.03k
  SStream_concat0(O, "{");
2751
2752
6.03k
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
2753
2754
6.03k
  if (MI->csh->detail) {
2755
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2756
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2757
6.03k
#ifndef CAPSTONE_DIET
2758
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2759
6.03k
#endif
2760
6.03k
    MI->flat_insn->detail->arm.op_count++;
2761
6.03k
  }
2762
2763
6.03k
  SStream_concat0(O, ", ");
2764
2765
6.03k
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 1);
2766
2767
6.03k
  if (MI->csh->detail) {
2768
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2769
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 1;
2770
6.03k
#ifndef CAPSTONE_DIET
2771
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2772
6.03k
#endif
2773
6.03k
    MI->flat_insn->detail->arm.op_count++;
2774
6.03k
  }
2775
2776
6.03k
  SStream_concat0(O, ", ");
2777
2778
6.03k
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2);
2779
2780
6.03k
  if (MI->csh->detail) {
2781
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2782
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2;
2783
6.03k
#ifndef CAPSTONE_DIET
2784
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2785
6.03k
#endif
2786
6.03k
    MI->flat_insn->detail->arm.op_count++;
2787
6.03k
  }
2788
2789
6.03k
  SStream_concat0(O, ", ");
2790
2791
6.03k
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 3);
2792
2793
6.03k
  if (MI->csh->detail) {
2794
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2795
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 3;
2796
6.03k
#ifndef CAPSTONE_DIET
2797
6.03k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2798
6.03k
#endif
2799
6.03k
    MI->flat_insn->detail->arm.op_count++;
2800
6.03k
  }
2801
2802
6.03k
  SStream_concat0(O, "}");
2803
2804
6.03k
#ifndef CAPSTONE_DIET
2805
6.03k
  MI->ac_idx++;
2806
6.03k
#endif
2807
6.03k
}
2808
2809
static void printVectorListOneAllLanes(MCInst *MI, unsigned OpNum, SStream *O)
2810
160
{
2811
160
#ifndef CAPSTONE_DIET
2812
160
  uint8_t access;
2813
2814
160
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2815
160
#endif
2816
2817
160
  SStream_concat0(O, "{");
2818
2819
160
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
2820
2821
160
  if (MI->csh->detail) {
2822
160
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2823
160
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2824
160
#ifndef CAPSTONE_DIET
2825
160
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2826
160
#endif
2827
160
    MI->flat_insn->detail->arm.op_count++;
2828
160
  }
2829
2830
160
  SStream_concat0(O, "[]}");
2831
2832
160
#ifndef CAPSTONE_DIET
2833
160
  MI->ac_idx++;
2834
160
#endif
2835
160
}
2836
2837
static void printVectorListTwoAllLanes(MCInst *MI, unsigned OpNum, SStream *O)
2838
2.20k
{
2839
2.20k
#ifndef CAPSTONE_DIET
2840
2.20k
  uint8_t access;
2841
2.20k
#endif
2842
2.20k
  unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2843
2.20k
  unsigned Reg0 = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_dsub_0);
2844
2.20k
  unsigned Reg1 = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_dsub_1);
2845
2846
2.20k
#ifndef CAPSTONE_DIET
2847
2.20k
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2848
2.20k
#endif
2849
2850
2.20k
  SStream_concat0(O, "{");
2851
2852
2.20k
  printRegName(MI->csh, O, Reg0);
2853
2854
2.20k
  if (MI->csh->detail) {
2855
2.20k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2856
2.20k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg0;
2857
2.20k
#ifndef CAPSTONE_DIET
2858
2.20k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2859
2.20k
#endif
2860
2.20k
    MI->flat_insn->detail->arm.op_count++;
2861
2.20k
  }
2862
2863
2.20k
  SStream_concat0(O, "[], ");
2864
2865
2.20k
  printRegName(MI->csh, O, Reg1);
2866
2867
2.20k
  if (MI->csh->detail) {
2868
2.20k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2869
2.20k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg1;
2870
2.20k
#ifndef CAPSTONE_DIET
2871
2.20k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2872
2.20k
#endif
2873
2.20k
    MI->flat_insn->detail->arm.op_count++;
2874
2.20k
  }
2875
2876
2.20k
  SStream_concat0(O, "[]}");
2877
2878
2.20k
#ifndef CAPSTONE_DIET
2879
2.20k
  MI->ac_idx++;
2880
2.20k
#endif
2881
2.20k
}
2882
2883
static void printVectorListThreeAllLanes(MCInst *MI, unsigned OpNum, SStream *O)
2884
0
{
2885
0
#ifndef CAPSTONE_DIET
2886
0
  uint8_t access;
2887
2888
0
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2889
0
#endif
2890
2891
  // Normally, it's not safe to use register enum values directly with
2892
  // addition to get the next register, but for VFP registers, the
2893
  // sort order is guaranteed because they're all of the form D<n>.
2894
0
  SStream_concat0(O, "{");
2895
2896
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
2897
2898
0
  if (MI->csh->detail) {
2899
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2900
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2901
0
#ifndef CAPSTONE_DIET
2902
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2903
0
#endif
2904
0
    MI->flat_insn->detail->arm.op_count++;
2905
0
  }
2906
2907
0
  SStream_concat0(O, "[], ");
2908
2909
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 1);
2910
2911
0
  if (MI->csh->detail) {
2912
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2913
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 1;
2914
0
#ifndef CAPSTONE_DIET
2915
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2916
0
#endif
2917
0
    MI->flat_insn->detail->arm.op_count++;
2918
0
  }
2919
2920
0
  SStream_concat0(O, "[], ");
2921
2922
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2);
2923
2924
0
  if (MI->csh->detail) {
2925
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2926
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2;
2927
0
#ifndef CAPSTONE_DIET
2928
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2929
0
#endif
2930
0
    MI->flat_insn->detail->arm.op_count++;
2931
0
  }
2932
2933
0
  SStream_concat0(O, "[]}");
2934
2935
0
#ifndef CAPSTONE_DIET
2936
0
  MI->ac_idx++;
2937
0
#endif
2938
0
}
2939
2940
static void printVectorListFourAllLanes(MCInst *MI, unsigned OpNum, SStream *O)
2941
0
{
2942
0
#ifndef CAPSTONE_DIET
2943
0
  uint8_t access;
2944
2945
0
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
2946
0
#endif
2947
2948
  // Normally, it's not safe to use register enum values directly with
2949
  // addition to get the next register, but for VFP registers, the
2950
  // sort order is guaranteed because they're all of the form D<n>.
2951
0
  SStream_concat0(O, "{");
2952
2953
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
2954
2955
0
  if (MI->csh->detail) {
2956
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2957
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
2958
0
#ifndef CAPSTONE_DIET
2959
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2960
0
#endif
2961
0
    MI->flat_insn->detail->arm.op_count++;
2962
0
  }
2963
2964
0
  SStream_concat0(O, "[], ");
2965
2966
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 1);
2967
2968
0
  if (MI->csh->detail) {
2969
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2970
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 1;
2971
0
#ifndef CAPSTONE_DIET
2972
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2973
0
#endif
2974
0
    MI->flat_insn->detail->arm.op_count++;
2975
0
  }
2976
2977
0
  SStream_concat0(O, "[], ");
2978
2979
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2);
2980
2981
0
  if (MI->csh->detail) {
2982
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2983
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2;
2984
0
#ifndef CAPSTONE_DIET
2985
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2986
0
#endif
2987
0
    MI->flat_insn->detail->arm.op_count++;
2988
0
  }
2989
2990
0
  SStream_concat0(O, "[], ");
2991
2992
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 3);
2993
2994
0
  if (MI->csh->detail) {
2995
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
2996
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 3;
2997
0
#ifndef CAPSTONE_DIET
2998
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
2999
0
#endif
3000
0
    MI->flat_insn->detail->arm.op_count++;
3001
0
  }
3002
3003
0
  SStream_concat0(O, "[]}");
3004
3005
0
#ifndef CAPSTONE_DIET
3006
0
  MI->ac_idx++;
3007
0
#endif
3008
0
}
3009
3010
static void printVectorListTwoSpacedAllLanes(MCInst *MI, unsigned OpNum, SStream *O)
3011
1.39k
{
3012
1.39k
#ifndef CAPSTONE_DIET
3013
1.39k
  uint8_t access;
3014
1.39k
#endif
3015
1.39k
  unsigned Reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
3016
1.39k
  unsigned Reg0 = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_dsub_0);
3017
1.39k
  unsigned Reg1 = MCRegisterInfo_getSubReg(MI->MRI, Reg, ARM_dsub_2);
3018
3019
1.39k
#ifndef CAPSTONE_DIET
3020
1.39k
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
3021
1.39k
#endif
3022
3023
1.39k
  SStream_concat0(O, "{");
3024
3025
1.39k
  printRegName(MI->csh, O, Reg0);
3026
3027
1.39k
  if (MI->csh->detail) {
3028
1.39k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3029
1.39k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg0;
3030
1.39k
#ifndef CAPSTONE_DIET
3031
1.39k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3032
1.39k
#endif
3033
1.39k
    MI->flat_insn->detail->arm.op_count++;
3034
1.39k
  }
3035
3036
1.39k
  SStream_concat0(O, "[], ");
3037
3038
1.39k
  printRegName(MI->csh, O, Reg1);
3039
3040
1.39k
  if (MI->csh->detail) {
3041
1.39k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3042
1.39k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = Reg1;
3043
1.39k
#ifndef CAPSTONE_DIET
3044
1.39k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3045
1.39k
#endif
3046
1.39k
    MI->flat_insn->detail->arm.op_count++;
3047
1.39k
  }
3048
3049
1.39k
  SStream_concat0(O, "[]}");
3050
3051
1.39k
#ifndef CAPSTONE_DIET
3052
1.39k
  MI->ac_idx++;
3053
1.39k
#endif
3054
1.39k
}
3055
3056
static void printVectorListThreeSpacedAllLanes(MCInst *MI,
3057
    unsigned OpNum, SStream *O)
3058
0
{
3059
0
#ifndef CAPSTONE_DIET
3060
0
  uint8_t access;
3061
3062
0
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
3063
0
#endif
3064
3065
  // Normally, it's not safe to use register enum values directly with
3066
  // addition to get the next register, but for VFP registers, the
3067
  // sort order is guaranteed because they're all of the form D<n>.
3068
0
  SStream_concat0(O, "{");
3069
3070
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
3071
3072
0
  if (MI->csh->detail) {
3073
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3074
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
3075
0
#ifndef CAPSTONE_DIET
3076
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3077
0
#endif
3078
0
    MI->flat_insn->detail->arm.op_count++;
3079
0
  }
3080
3081
0
  SStream_concat0(O, "[], ");
3082
3083
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2);
3084
3085
0
  if (MI->csh->detail) {
3086
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3087
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2;
3088
0
#ifndef CAPSTONE_DIET
3089
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3090
0
#endif
3091
0
    MI->flat_insn->detail->arm.op_count++;
3092
0
  }
3093
3094
0
  SStream_concat0(O, "[], ");
3095
3096
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 4);
3097
3098
0
  if (MI->csh->detail) {
3099
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3100
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 4;
3101
0
#ifndef CAPSTONE_DIET
3102
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3103
0
#endif
3104
0
    MI->flat_insn->detail->arm.op_count++;
3105
0
  }
3106
3107
0
  SStream_concat0(O, "[]}");
3108
3109
0
#ifndef CAPSTONE_DIET
3110
0
  MI->ac_idx++;
3111
0
#endif
3112
0
}
3113
3114
static void printVectorListFourSpacedAllLanes(MCInst *MI,
3115
    unsigned OpNum, SStream *O)
3116
0
{
3117
0
#ifndef CAPSTONE_DIET
3118
0
  uint8_t access;
3119
3120
0
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
3121
0
#endif
3122
3123
  // Normally, it's not safe to use register enum values directly with
3124
  // addition to get the next register, but for VFP registers, the
3125
  // sort order is guaranteed because they're all of the form D<n>.
3126
0
  SStream_concat0(O, "{");
3127
3128
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
3129
3130
0
  if (MI->csh->detail) {
3131
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3132
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
3133
0
#ifndef CAPSTONE_DIET
3134
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3135
0
#endif
3136
0
    MI->flat_insn->detail->arm.op_count++;
3137
0
  }
3138
3139
0
  SStream_concat0(O, "[], ");
3140
3141
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2);
3142
3143
0
  if (MI->csh->detail) {
3144
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3145
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2;
3146
0
#ifndef CAPSTONE_DIET
3147
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3148
0
#endif
3149
0
    MI->flat_insn->detail->arm.op_count++;
3150
0
  }
3151
3152
0
  SStream_concat0(O, "[], ");
3153
3154
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 4);
3155
3156
0
  if (MI->csh->detail) {
3157
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3158
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 4;
3159
0
#ifndef CAPSTONE_DIET
3160
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3161
0
#endif
3162
0
    MI->flat_insn->detail->arm.op_count++;
3163
0
  }
3164
3165
0
  SStream_concat0(O, "[], ");
3166
3167
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 6);
3168
3169
0
  if (MI->csh->detail) {
3170
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3171
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 6;
3172
0
#ifndef CAPSTONE_DIET
3173
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3174
0
#endif
3175
0
    MI->flat_insn->detail->arm.op_count++;
3176
0
  }
3177
3178
0
  SStream_concat0(O, "[]}");
3179
3180
0
#ifndef CAPSTONE_DIET
3181
0
  MI->ac_idx++;
3182
0
#endif
3183
0
}
3184
3185
static void printVectorListThreeSpaced(MCInst *MI, unsigned OpNum, SStream *O)
3186
0
{
3187
0
#ifndef CAPSTONE_DIET
3188
0
  uint8_t access;
3189
3190
0
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
3191
0
#endif
3192
3193
  // Normally, it's not safe to use register enum values directly with
3194
  // addition to get the next register, but for VFP registers, the
3195
  // sort order is guaranteed because they're all of the form D<n>.
3196
0
  SStream_concat0(O, "{");
3197
3198
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
3199
3200
0
  if (MI->csh->detail) {
3201
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3202
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
3203
0
#ifndef CAPSTONE_DIET
3204
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3205
0
#endif
3206
0
    MI->flat_insn->detail->arm.op_count++;
3207
0
  }
3208
3209
0
  SStream_concat0(O, ", ");
3210
3211
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2);
3212
3213
0
  if (MI->csh->detail) {
3214
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3215
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2;
3216
0
#ifndef CAPSTONE_DIET
3217
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3218
0
#endif
3219
0
    MI->flat_insn->detail->arm.op_count++;
3220
0
  }
3221
3222
0
  SStream_concat0(O, ", ");
3223
3224
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 4);
3225
3226
0
  if (MI->csh->detail) {
3227
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3228
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 4;
3229
0
#ifndef CAPSTONE_DIET
3230
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3231
0
#endif
3232
0
    MI->flat_insn->detail->arm.op_count++;
3233
0
  }
3234
3235
0
  SStream_concat0(O, "}");
3236
3237
0
#ifndef CAPSTONE_DIET
3238
0
  MI->ac_idx++;
3239
0
#endif
3240
0
}
3241
3242
static void printVectorListFourSpaced(MCInst *MI, unsigned OpNum, SStream *O)
3243
0
{
3244
0
#ifndef CAPSTONE_DIET
3245
0
  uint8_t access;
3246
3247
0
  access = get_op_access(MI->csh, MCInst_getOpcode(MI), MI->ac_idx);
3248
0
#endif
3249
3250
  // Normally, it's not safe to use register enum values directly with
3251
  // addition to get the next register, but for VFP registers, the
3252
  // sort order is guaranteed because they're all of the form D<n>.
3253
0
  SStream_concat0(O, "{");
3254
3255
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)));
3256
3257
0
  if (MI->csh->detail) {
3258
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3259
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum));
3260
0
#ifndef CAPSTONE_DIET
3261
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3262
0
#endif
3263
0
    MI->flat_insn->detail->arm.op_count++;
3264
0
  }
3265
3266
0
  SStream_concat0(O, ", ");
3267
3268
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2);
3269
3270
0
  if (MI->csh->detail) {
3271
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3272
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 2;
3273
0
#ifndef CAPSTONE_DIET
3274
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3275
0
#endif
3276
0
    MI->flat_insn->detail->arm.op_count++;
3277
0
  }
3278
3279
0
  SStream_concat0(O, ", ");
3280
3281
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 4);
3282
3283
0
  if (MI->csh->detail) {
3284
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3285
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 4;
3286
0
#ifndef CAPSTONE_DIET
3287
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3288
0
#endif
3289
0
    MI->flat_insn->detail->arm.op_count++;
3290
0
  }
3291
3292
0
  SStream_concat0(O, ", ");
3293
3294
0
  printRegName(MI->csh, O, MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 6);
3295
3296
0
  if (MI->csh->detail) {
3297
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3298
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, OpNum)) + 6;
3299
0
#ifndef CAPSTONE_DIET
3300
0
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access;
3301
0
#endif
3302
0
    MI->flat_insn->detail->arm.op_count++;
3303
0
  }
3304
3305
0
  SStream_concat0(O, "}");
3306
3307
0
#ifndef CAPSTONE_DIET
3308
0
  MI->ac_idx++;
3309
0
#endif
3310
0
}
3311
3312
static void printComplexRotationOp(MCInst *MI, unsigned OpNo, SStream *O, int64_t Angle, int64_t Remainder)
3313
1.46k
{
3314
1.46k
  unsigned Val = (unsigned)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
3315
1.46k
  unsigned tmp = (unsigned)((Val * Angle) + Remainder);
3316
3317
1.46k
  printUInt32Bang(O, tmp);
3318
1.46k
  if (MI->csh->detail) {
3319
1.46k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM;
3320
1.46k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = tmp;
3321
1.46k
    MI->flat_insn->detail->arm.op_count++;
3322
1.46k
  }
3323
1.46k
}
3324
3325
void ARM_addVectorDataType(MCInst *MI, arm_vectordata_type vd)
3326
25.7k
{
3327
25.7k
  if (MI->csh->detail) {
3328
25.7k
    MI->flat_insn->detail->arm.vector_data = vd;
3329
25.7k
  }
3330
25.7k
}
3331
3332
void ARM_addVectorDataSize(MCInst *MI, int size)
3333
65.3k
{
3334
65.3k
  if (MI->csh->detail) {
3335
65.3k
    MI->flat_insn->detail->arm.vector_size = size;
3336
65.3k
  }
3337
65.3k
}
3338
3339
void ARM_addReg(MCInst *MI, int reg)
3340
3.77k
{
3341
3.77k
  if (MI->csh->detail) {
3342
3.77k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_REG;
3343
3.77k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = reg;
3344
3.77k
    MI->flat_insn->detail->arm.op_count++;
3345
3.77k
  }
3346
3.77k
}
3347
3348
void ARM_addUserMode(MCInst *MI)
3349
3.07k
{
3350
3.07k
  if (MI->csh->detail) {
3351
3.07k
    MI->flat_insn->detail->arm.usermode = true;
3352
3.07k
  }
3353
3.07k
}
3354
3355
void ARM_addSysReg(MCInst *MI, arm_sysreg reg)
3356
7.22k
{
3357
7.22k
  if (MI->csh->detail) {
3358
7.22k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_SYSREG;
3359
7.22k
    MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].reg = reg;
3360
7.22k
    MI->flat_insn->detail->arm.op_count++;
3361
7.22k
  }
3362
7.22k
}
3363
3364
#endif