Coverage Report

Created: 2026-08-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/capstonev5/arch/PowerPC/PPCInstPrinter.c
Line
Count
Source
1
//===-- PPCInstPrinter.cpp - Convert PPC 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 PPC MCInst to a .s file.
11
//
12
//===----------------------------------------------------------------------===//
13
14
/* Capstone Disassembly Engine */
15
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
16
17
#ifdef CAPSTONE_HAS_POWERPC
18
19
#include <stdio.h>
20
#include <stdlib.h>
21
#include <string.h>
22
23
#include "PPCInstPrinter.h"
24
#include "PPCPredicates.h"
25
#include "../../MCInst.h"
26
#include "../../utils.h"
27
#include "../../SStream.h"
28
#include "../../MCRegisterInfo.h"
29
#include "../../MathExtras.h"
30
#include "PPCMapping.h"
31
32
#ifndef CAPSTONE_DIET
33
static const char *getRegisterName(unsigned RegNo);
34
#endif
35
36
static void printOperand(MCInst *MI, unsigned OpNo, SStream *O);
37
static void printInstruction(MCInst *MI, SStream *O);
38
static void printAbsBranchOperand(MCInst *MI, unsigned OpNo, SStream *O);
39
static char *printAliasInstr(MCInst *MI, SStream *OS, MCRegisterInfo *MRI);
40
static char *printAliasBcc(MCInst *MI, SStream *OS, void *info);
41
static void printCustomAliasOperand(MCInst *MI, unsigned OpIdx,
42
    unsigned PrintMethodIdx, SStream *OS);
43
44
#if 0
45
static void printRegName(SStream *OS, unsigned RegNo)
46
{
47
  char *RegName = getRegisterName(RegNo);
48
49
  if (RegName[0] == 'q' /* QPX */) {
50
    // The system toolchain on the BG/Q does not understand QPX register names
51
    // in .cfi_* directives, so print the name of the floating-point
52
    // subregister instead.
53
    RegName[0] = 'f';
54
  }
55
56
  SStream_concat0(OS, RegName);
57
}
58
#endif
59
60
static void set_mem_access(MCInst *MI, bool status)
61
39.8k
{
62
39.8k
  if (MI->csh->detail != CS_OPT_ON)
63
0
    return;
64
65
39.8k
  MI->csh->doing_mem = status;
66
67
39.8k
  if (status) {
68
19.9k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_MEM;
69
19.9k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.base = PPC_REG_INVALID;
70
19.9k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.disp = 0;
71
19.9k
  } else {
72
    // done, create the next operand slot
73
19.9k
    MI->flat_insn->detail->ppc.op_count++;
74
19.9k
  }
75
39.8k
}
76
77
void PPC_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci)
78
133k
{
79
133k
  if (((cs_struct *)ud)->detail != CS_OPT_ON)
80
0
    return;
81
82
  // insn->mnemonic is not filled yet; the record-form '.' and the branch
83
  // hint '+'/'-' are always the last char of the mnemonic token of insn_asm
84
133k
  size_t n = strcspn(insn_asm, " \t");
85
133k
  char c = n ? insn_asm[n - 1] : 0;
86
87
133k
  if (c == '+') {
88
1.68k
    insn->detail->ppc.bh = PPC_BH_PLUS;
89
131k
  } else if (c == '-') {
90
2.02k
    insn->detail->ppc.bh = PPC_BH_MINUS;
91
129k
  } else if (c == '.') {
92
11.6k
    insn->detail->ppc.update_cr0 = true;
93
11.6k
  }
94
133k
}
95
96
#define GET_INSTRINFO_ENUM
97
#include "PPCGenInstrInfo.inc"
98
99
#define GET_REGINFO_ENUM
100
#include "PPCGenRegisterInfo.inc"
101
102
static void op_addBC(MCInst *MI, unsigned int bc)
103
2.39k
{
104
2.39k
  if (MI->csh->detail) {
105
2.39k
    MI->flat_insn->detail->ppc.bc = (ppc_bc)bc;
106
2.39k
  }
107
2.39k
}
108
109
884
#define CREQ (0)
110
1.15k
#define CRGT (1)
111
1.46k
#define CRLT (2)
112
873
#define CRUN (3)
113
114
static int getBICRCond(int bi)
115
4.37k
{
116
4.37k
  return (bi - PPC_CR0EQ) >> 3;
117
4.37k
}
118
119
static int getBICR(int bi)
120
4.37k
{
121
4.37k
  return ((bi - PPC_CR0EQ) & 7) + PPC_CR0;
122
4.37k
}
123
124
static void op_addReg(MCInst *MI, unsigned int reg)
125
1.80k
{
126
1.80k
  if (MI->csh->detail) {
127
1.80k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_REG;
128
1.80k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].reg = reg;
129
1.80k
    MI->flat_insn->detail->ppc.op_count++;
130
1.80k
  }
131
1.80k
}
132
133
static void add_CRxx(MCInst *MI, ppc_reg reg)
134
1.40k
{
135
1.40k
  if (MI->csh->detail) {
136
1.40k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_REG;
137
1.40k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].reg = reg;
138
1.40k
    MI->flat_insn->detail->ppc.op_count++;
139
1.40k
  }
140
1.40k
}
141
142
static char *printAliasBcc(MCInst *MI, SStream *OS, void *info)
143
131k
{
144
131k
#define GETREGCLASS_CONTAIN(_class, _reg) MCRegisterClass_contains(MCRegisterInfo_getRegClass(MRI, _class), MCOperand_getReg(MCInst_getOperand(MI, _reg)))
145
131k
  SStream ss;
146
131k
  const char *opCode;
147
131k
  char *tmp, *AsmMnem, *AsmOps, *c;
148
131k
  int OpIdx, PrintMethodIdx;
149
131k
  int decCtr = false, needComma = false;
150
131k
  MCRegisterInfo *MRI = (MCRegisterInfo *)info;
151
152
131k
  SStream_Init(&ss);
153
154
131k
  switch (MCInst_getOpcode(MI)) {
155
123k
    default: return NULL;
156
2.77k
    case PPC_gBC:
157
2.77k
         opCode = "b%s";
158
2.77k
         break;
159
2.03k
    case PPC_gBCA:
160
2.03k
         opCode = "b%sa";
161
2.03k
         break;
162
134
    case PPC_gBCCTR:
163
134
         opCode = "b%sctr";
164
134
         break;
165
26
    case PPC_gBCCTRL:
166
26
         opCode = "b%sctrl";
167
26
         break;
168
1.64k
    case PPC_gBCL:
169
1.64k
         opCode = "b%sl";
170
1.64k
         break;
171
1.34k
    case PPC_gBCLA:
172
1.34k
         opCode = "b%sla";
173
1.34k
         break;
174
81
    case PPC_gBCLR:
175
81
         opCode = "b%slr";
176
81
         break;
177
24
    case PPC_gBCLRL:
178
24
         opCode = "b%slrl";
179
24
         break;
180
131k
  }
181
182
8.06k
  if (MCInst_getNumOperands(MI) == 3 &&
183
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
184
8.06k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 0) &&
185
8.06k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 1)) {
186
407
    SStream_concat(&ss, opCode, "dnzf");
187
407
    decCtr = true;
188
407
  }
189
190
8.06k
  if (MCInst_getNumOperands(MI) == 3 &&
191
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
192
8.06k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 2) &&
193
7.65k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 3)) {
194
700
    SStream_concat(&ss, opCode, "dzf");
195
700
    decCtr = true;
196
700
  }
197
198
8.06k
  if (MCInst_getNumOperands(MI) == 3 &&
199
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
200
8.06k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 4) &&
201
6.95k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 7) &&
202
878
      MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
203
878
      GETREGCLASS_CONTAIN(PPC_CRBITRCRegClassID, 1)) {
204
878
    int cr = getBICRCond(MCOperand_getReg(MCInst_getOperand(MI, 1)));
205
206
878
    switch(cr) {
207
351
      case CREQ:
208
351
        SStream_concat(&ss, opCode, "ne");
209
351
        break;
210
202
      case CRGT:
211
202
        SStream_concat(&ss, opCode, "le");
212
202
        break;
213
91
      case CRLT:
214
91
        SStream_concat(&ss, opCode, "ge");
215
91
        break;
216
234
      case CRUN:
217
234
        SStream_concat(&ss, opCode, "ns");
218
234
        break;
219
878
    }
220
221
878
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 6)
222
82
      SStream_concat0(&ss, "-");
223
224
878
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 7)
225
256
      SStream_concat0(&ss, "+");
226
227
878
    decCtr = false;
228
878
  }
229
230
8.06k
  if (MCInst_getNumOperands(MI) == 3 &&
231
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
232
8.06k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 8) &&
233
6.08k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 9)) {
234
551
    SStream_concat(&ss, opCode, "dnzt");
235
551
    decCtr = true;
236
551
  }
237
238
8.06k
  if (MCInst_getNumOperands(MI) == 3 &&
239
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
240
8.06k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 10) &&
241
5.53k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 11)) {
242
736
    SStream_concat(&ss, opCode, "dzt");
243
736
    decCtr = true;
244
736
  }
245
246
8.06k
  if (MCInst_getNumOperands(MI) == 3 &&
247
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
248
8.06k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 12) &&
249
4.79k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 15) &&
250
1.10k
      MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
251
1.10k
      GETREGCLASS_CONTAIN(PPC_CRBITRCRegClassID, 1)) {
252
1.10k
    int cr = getBICRCond(MCOperand_getReg(MCInst_getOperand(MI, 1)));
253
254
1.10k
    switch(cr) {
255
102
      case CREQ:
256
102
        SStream_concat(&ss, opCode, "eq");
257
102
        break;
258
224
      case CRGT:
259
224
        SStream_concat(&ss, opCode, "gt");
260
224
        break;
261
712
      case CRLT:
262
712
        SStream_concat(&ss, opCode, "lt");
263
712
        break;
264
66
      case CRUN:
265
66
        SStream_concat(&ss, opCode, "so");
266
66
        break;
267
1.10k
    }
268
269
1.10k
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 14)
270
480
      SStream_concat0(&ss, "-");
271
272
1.10k
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 15)
273
165
      SStream_concat0(&ss, "+");
274
275
1.10k
    decCtr = false;
276
1.10k
  }
277
278
8.06k
  if (MCInst_getNumOperands(MI) == 3 &&
279
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
280
8.06k
      ((MCOperand_getImm(MCInst_getOperand(MI, 0)) & 0x12)== 16)) {
281
1.29k
    SStream_concat(&ss, opCode, "dnz");
282
283
1.29k
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 24)
284
324
      SStream_concat0(&ss, "-");
285
286
1.29k
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 25)
287
423
      SStream_concat0(&ss, "+");
288
289
1.29k
    needComma = false;
290
1.29k
  }
291
292
8.06k
  if (MCInst_getNumOperands(MI) == 3 &&
293
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
294
8.06k
      ((MCOperand_getImm(MCInst_getOperand(MI, 0)) & 0x12)== 18)) {
295
2.39k
    SStream_concat(&ss, opCode, "dz");
296
297
2.39k
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 26)
298
844
      SStream_concat0(&ss, "-");
299
300
2.39k
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 27)
301
455
      SStream_concat0(&ss, "+");
302
303
2.39k
    needComma = false;
304
2.39k
  }
305
306
8.06k
  if (MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
307
8.06k
      GETREGCLASS_CONTAIN(PPC_CRBITRCRegClassID, 1) &&
308
8.06k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
309
8.06k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) < 16)) {
310
4.37k
    int cr = getBICR(MCOperand_getReg(MCInst_getOperand(MI, 1)));
311
312
4.37k
    if (decCtr) {
313
2.39k
      int cd;
314
2.39k
      needComma = true;
315
2.39k
      SStream_concat0(&ss, " ");
316
317
2.39k
      if (cr > PPC_CR0) {
318
991
        SStream_concat(&ss, "4*cr%d+", cr - PPC_CR0);
319
991
      }
320
321
2.39k
      cd = getBICRCond(MCOperand_getReg(MCInst_getOperand(MI, 1)));
322
2.39k
      switch(cd) {
323
431
        case CREQ:
324
431
          SStream_concat0(&ss, "eq");
325
431
          if (cr <= PPC_CR0)
326
219
            add_CRxx(MI, PPC_REG_CR0EQ);
327
431
          op_addBC(MI, PPC_BC_EQ);
328
431
          break;
329
729
        case CRGT:
330
729
          SStream_concat0(&ss, "gt");
331
729
          if (cr <= PPC_CR0)
332
527
            add_CRxx(MI, PPC_REG_CR0GT);
333
729
          op_addBC(MI, PPC_BC_GT);
334
729
          break;
335
661
        case CRLT:
336
661
          SStream_concat0(&ss, "lt");
337
661
          if (cr <= PPC_CR0)
338
357
            add_CRxx(MI, PPC_REG_CR0LT);
339
661
          op_addBC(MI, PPC_BC_LT);
340
661
          break;
341
573
        case CRUN:
342
573
          SStream_concat0(&ss, "so");
343
573
          if (cr <= PPC_CR0)
344
300
            add_CRxx(MI, PPC_REG_CR0UN);
345
573
          op_addBC(MI, PPC_BC_SO);
346
573
          break;
347
2.39k
      }
348
349
2.39k
      if (cr > PPC_CR0) {
350
991
        if (MI->csh->detail) {
351
991
          MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_REG;
352
991
          MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, 1));
353
991
          MI->flat_insn->detail->ppc.op_count++;
354
991
        }
355
991
      }
356
2.39k
    } else {
357
1.98k
      if (cr > PPC_CR0) {
358
1.80k
        needComma = true;
359
1.80k
        SStream_concat(&ss, " cr%d", cr - PPC_CR0);
360
1.80k
        op_addReg(MI, PPC_REG_CR0 + cr - PPC_CR0);
361
1.80k
      }
362
1.98k
    }
363
4.37k
  }
364
365
8.06k
  if (MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
366
8.06k
      MCOperand_getImm(MCInst_getOperand(MI, 2)) != 0) {
367
7.67k
    if (needComma)
368
3.91k
      SStream_concat0(&ss, ",");
369
370
7.67k
    SStream_concat0(&ss, " $\xFF\x03\x01");
371
7.67k
  }
372
373
8.06k
  tmp = cs_strdup(ss.buffer);
374
8.06k
  AsmMnem = tmp;
375
47.0k
  for(AsmOps = tmp; *AsmOps; AsmOps++) {
376
46.9k
    if (*AsmOps == ' ' || *AsmOps == '\t') {
377
7.95k
      *AsmOps = '\0';
378
7.95k
      AsmOps++;
379
7.95k
      break;
380
7.95k
    }
381
46.9k
  }
382
383
8.06k
  SStream_concat0(OS, AsmMnem);
384
8.06k
  if (*AsmOps) {
385
7.95k
    SStream_concat0(OS, "\t");
386
39.5k
    for (c = AsmOps; *c; c++) {
387
31.6k
      if (*c == '$') {
388
7.67k
        c += 1;
389
7.67k
        if (*c == (char)0xff) {
390
7.67k
          c += 1;
391
7.67k
          OpIdx = *c - 1;
392
7.67k
          c += 1;
393
7.67k
          PrintMethodIdx = *c - 1;
394
7.67k
          printCustomAliasOperand(MI, OpIdx, PrintMethodIdx, OS);
395
7.67k
        } else
396
0
          printOperand(MI, *c - 1, OS);
397
23.9k
      } else {
398
23.9k
        SStream_concat1(OS, *c);
399
23.9k
      }
400
31.6k
    }
401
7.95k
  }
402
403
8.06k
  return tmp;
404
8.06k
}
405
406
static bool isBOCTRBranch(unsigned int op)
407
131k
{
408
131k
  return ((op >= PPC_BDNZ) && (op <= PPC_BDZp));
409
131k
}
410
411
void PPC_printInst(MCInst *MI, SStream *O, void *Info)
412
133k
{
413
133k
  char *mnem;
414
133k
  unsigned int opcode = MCInst_getOpcode(MI);
415
133k
  memset(O->buffer, 0, sizeof(O->buffer));
416
417
  // printf("opcode = %u\n", opcode);
418
419
  // Check for slwi/srwi mnemonics.
420
133k
  if (opcode == PPC_RLWINM) {
421
2.39k
    unsigned char SH = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 2));
422
2.39k
    unsigned char MB = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 3));
423
2.39k
    unsigned char ME = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 4));
424
2.39k
    bool useSubstituteMnemonic = false;
425
426
2.39k
    if (SH <= 31 && MB == 0 && ME == (31 - SH)) {
427
496
      SStream_concat0(O, "slwi\t");
428
496
      MCInst_setOpcodePub(MI, PPC_INS_SLWI);
429
496
      useSubstituteMnemonic = true;
430
496
    }
431
432
2.39k
    if (SH <= 31 && MB == (32 - SH) && ME == 31) {
433
216
      SStream_concat0(O, "srwi\t");
434
216
      MCInst_setOpcodePub(MI, PPC_INS_SRWI);
435
216
      useSubstituteMnemonic = true;
436
216
      SH = 32 - SH;
437
216
    }
438
439
2.39k
    if (useSubstituteMnemonic) {
440
712
      printOperand(MI, 0, O);
441
712
      SStream_concat0(O, ", ");
442
712
      printOperand(MI, 1, O);
443
444
712
      if (SH > HEX_THRESHOLD)
445
218
        SStream_concat(O, ", 0x%x", (unsigned int)SH);
446
494
      else
447
494
        SStream_concat(O, ", %u", (unsigned int)SH);
448
449
712
      if (MI->csh->detail) {
450
712
        cs_ppc *ppc = &MI->flat_insn->detail->ppc;
451
452
712
        ppc->operands[ppc->op_count].type = PPC_OP_IMM;
453
712
        ppc->operands[ppc->op_count].imm = SH;
454
712
        ++ppc->op_count;
455
712
      }
456
457
712
      return;
458
712
    }
459
2.39k
  }
460
461
132k
  if ((opcode == PPC_OR || opcode == PPC_OR8) &&
462
162
      MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2))) {
463
105
    SStream_concat0(O, "mr\t");
464
105
    MCInst_setOpcodePub(MI, PPC_INS_MR);
465
466
105
    printOperand(MI, 0, O);
467
105
    SStream_concat0(O, ", ");
468
105
    printOperand(MI, 1, O);
469
470
105
    return;
471
105
  }
472
473
132k
  if (opcode == PPC_RLDICR ||
474
131k
      opcode == PPC_RLDICR_32) {
475
468
    unsigned char SH = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 2));
476
468
    unsigned char ME = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 3));
477
478
    // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
479
468
    if (63 - SH == ME) {
480
73
      SStream_concat0(O, "sldi\t");
481
73
      MCInst_setOpcodePub(MI, PPC_INS_SLDI);
482
483
73
      printOperand(MI, 0, O);
484
73
      SStream_concat0(O, ", ");
485
73
      printOperand(MI, 1, O);
486
487
73
      if (SH > HEX_THRESHOLD)
488
37
        SStream_concat(O, ", 0x%x", (unsigned int)SH);
489
36
      else
490
36
        SStream_concat(O, ", %u", (unsigned int)SH);
491
492
73
      if (MI->csh->detail) {
493
73
        cs_ppc *ppc = &MI->flat_insn->detail->ppc;
494
495
73
        ppc->operands[ppc->op_count].type = PPC_OP_IMM;
496
73
        ppc->operands[ppc->op_count].imm = SH;
497
73
        ++ppc->op_count;
498
73
      }
499
500
501
73
      return;
502
73
    }
503
468
  }
504
505
  // dcbt[st] is printed manually here because:
506
  //  1. The assembly syntax is different between embedded and server targets
507
  //  2. We must print the short mnemonics for TH == 0 because the
508
  //     embedded/server syntax default will not be stable across assemblers
509
  //  The syntax for dcbt is:
510
  //    dcbt ra, rb, th [server]
511
  //    dcbt th, ra, rb [embedded]
512
  //  where th can be omitted when it is 0. dcbtst is the same.
513
132k
  if (opcode == PPC_DCBT || opcode == PPC_DCBTST) {
514
596
    unsigned char TH = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 0));
515
516
596
    SStream_concat0(O, "dcbt");
517
596
    MCInst_setOpcodePub(MI, PPC_INS_DCBT);
518
519
596
    if (opcode == PPC_DCBTST) {
520
432
      SStream_concat0(O, "st");
521
432
      MCInst_setOpcodePub(MI, PPC_INS_DCBTST);
522
432
    }
523
524
596
    if (TH == 16) {
525
111
      SStream_concat0(O, "t");
526
111
      MCInst_setOpcodePub(MI, PPC_INS_DCBTSTT);
527
111
    }
528
529
596
    SStream_concat0(O, "\t");
530
531
596
    if (MI->csh->mode & CS_MODE_BOOKE && TH != 0 && TH != 16) {
532
0
      if (TH > HEX_THRESHOLD)
533
0
        SStream_concat(O, "0x%x, ", (unsigned int)TH);
534
0
      else
535
0
        SStream_concat(O, "%u, ", (unsigned int)TH);
536
537
0
      if (MI->csh->detail) {
538
0
        cs_ppc *ppc = &MI->flat_insn->detail->ppc;
539
540
0
        ppc->operands[ppc->op_count].type = PPC_OP_IMM;
541
0
        ppc->operands[ppc->op_count].imm = TH;
542
0
        ++ppc->op_count;
543
0
      }
544
0
    }
545
546
596
    printOperand(MI, 1, O);
547
596
    SStream_concat0(O, ", ");
548
596
    printOperand(MI, 2, O);
549
550
596
    if (!(MI->csh->mode & CS_MODE_BOOKE) && TH != 0 && TH != 16) {
551
474
      if (TH > HEX_THRESHOLD)
552
398
        SStream_concat(O, ", 0x%x", (unsigned int)TH);
553
76
      else
554
76
        SStream_concat(O, ", %u", (unsigned int)TH);
555
556
474
      if (MI->csh->detail) {
557
474
        cs_ppc *ppc = &MI->flat_insn->detail->ppc;
558
559
474
        ppc->operands[ppc->op_count].type = PPC_OP_IMM;
560
474
        ppc->operands[ppc->op_count].imm = TH;
561
474
        ++ppc->op_count;
562
474
      }
563
474
    }
564
565
596
    return;
566
596
  }
567
568
131k
  if (opcode == PPC_DCBF) {
569
491
    unsigned char L = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 0));
570
571
491
    if (!L || L == 1 || L == 3) {
572
373
      SStream_concat0(O, "dcbf");
573
373
      MCInst_setOpcodePub(MI, PPC_INS_DCBF);
574
575
373
      if (L == 1 || L == 3) {
576
124
        SStream_concat0(O, "l");
577
124
        MCInst_setOpcodePub(MI, PPC_INS_DCBFL);
578
124
      }
579
580
373
      if (L == 3) {
581
82
        SStream_concat0(O, "p");
582
82
        MCInst_setOpcodePub(MI, PPC_INS_DCBFLP);
583
82
      }
584
585
373
      SStream_concat0(O, "\t");
586
587
373
      printOperand(MI, 1, O);
588
373
      SStream_concat0(O, ", ");
589
373
      printOperand(MI, 2, O);
590
591
373
      return;
592
373
    }
593
491
  }
594
595
131k
  if (opcode == PPC_B || opcode == PPC_BA || opcode == PPC_BL ||
596
130k
      opcode == PPC_BLA) {
597
1.66k
    int64_t bd = MCOperand_getImm(MCInst_getOperand(MI, 0));
598
1.66k
    bd = SignExtend64(bd, 24);
599
1.66k
    MCOperand_setImm(MCInst_getOperand(MI, 0), bd);
600
1.66k
  }
601
602
131k
  if (opcode == PPC_gBC || opcode == PPC_gBCA || opcode == PPC_gBCL ||
603
124k
      opcode == PPC_gBCLA) {
604
7.80k
    int64_t bd = MCOperand_getImm(MCInst_getOperand(MI, 2));
605
7.80k
    bd = SignExtend64(bd, 14);
606
7.80k
    MCOperand_setImm(MCInst_getOperand(MI, 2), bd);
607
7.80k
  }
608
609
131k
  if (isBOCTRBranch(MCInst_getOpcode(MI))) {
610
1.25k
    if (MCOperand_isImm(MCInst_getOperand(MI,0))) {
611
1.15k
      int64_t bd = MCOperand_getImm(MCInst_getOperand(MI, 0));
612
1.15k
      bd = SignExtend64(bd, 14);
613
1.15k
      MCOperand_setImm(MCInst_getOperand(MI, 0), bd);
614
1.15k
    }
615
1.25k
  }
616
617
131k
  mnem = printAliasBcc(MI, O, Info);
618
131k
  if (!mnem)
619
123k
    mnem = printAliasInstr(MI, O, Info);
620
621
131k
  if (mnem != NULL) {
622
39.2k
    if (strlen(mnem) > 0) {
623
      // check to remove the last letter of ('.', '-', '+')
624
39.2k
      if (mnem[strlen(mnem) - 1] == '-' || mnem[strlen(mnem) - 1] == '+' || mnem[strlen(mnem) - 1] == '.')
625
4.54k
        mnem[strlen(mnem) - 1] = '\0';
626
627
39.2k
            MCInst_setOpcodePub(MI, PPC_map_insn(mnem));
628
629
39.2k
            if (MI->csh->detail) {
630
39.2k
        struct ppc_alias alias;
631
632
39.2k
        if (PPC_alias_insn(mnem, &alias)) {
633
1.98k
          MI->flat_insn->detail->ppc.bc = (ppc_bc)alias.cc;
634
1.98k
        }
635
39.2k
            }
636
39.2k
    }
637
638
39.2k
    cs_mem_free(mnem);
639
39.2k
  } else
640
92.0k
    printInstruction(MI, O);
641
642
131k
  const char *mnem_end = strchr(O->buffer, ' ');
643
131k
  unsigned mnem_len = 0;
644
131k
  if (mnem_end)
645
126k
    mnem_len = mnem_end - O->buffer;
646
131k
  if (!mnem_end || mnem_len >= sizeof(MI->flat_insn->mnemonic))
647
5.22k
    mnem_len = sizeof(MI->flat_insn->mnemonic) - 1;
648
649
131k
  memset(MI->flat_insn->mnemonic, 0, sizeof(MI->flat_insn->mnemonic));
650
131k
  memcpy(MI->flat_insn->mnemonic, O->buffer, mnem_len);
651
131k
}
652
653
// FIXME
654
enum ppc_bc_hint {
655
  PPC_BC_LT_MINUS = (0 << 5) | 14,
656
  PPC_BC_LE_MINUS = (1 << 5) |  6,
657
  PPC_BC_EQ_MINUS = (2 << 5) | 14,
658
  PPC_BC_GE_MINUS = (0 << 5) |  6,
659
  PPC_BC_GT_MINUS = (1 << 5) | 14,
660
  PPC_BC_NE_MINUS = (2 << 5) |  6,
661
  PPC_BC_UN_MINUS = (3 << 5) | 14,
662
  PPC_BC_NU_MINUS = (3 << 5) |  6,
663
  PPC_BC_LT_PLUS  = (0 << 5) | 15,
664
  PPC_BC_LE_PLUS  = (1 << 5) |  7,
665
  PPC_BC_EQ_PLUS  = (2 << 5) | 15,
666
  PPC_BC_GE_PLUS  = (0 << 5) |  7,
667
  PPC_BC_GT_PLUS  = (1 << 5) | 15,
668
  PPC_BC_NE_PLUS  = (2 << 5) |  7,
669
  PPC_BC_UN_PLUS  = (3 << 5) | 15,
670
  PPC_BC_NU_PLUS  = (3 << 5) |  7,
671
};
672
673
// FIXME
674
// normalize CC to remove _MINUS & _PLUS
675
static int cc_normalize(int cc)
676
0
{
677
0
  switch(cc) {
678
0
    default: return cc;
679
0
    case PPC_BC_LT_MINUS: return PPC_BC_LT;
680
0
    case PPC_BC_LE_MINUS: return PPC_BC_LE;
681
0
    case PPC_BC_EQ_MINUS: return PPC_BC_EQ;
682
0
    case PPC_BC_GE_MINUS: return PPC_BC_GE;
683
0
    case PPC_BC_GT_MINUS: return PPC_BC_GT;
684
0
    case PPC_BC_NE_MINUS: return PPC_BC_NE;
685
0
    case PPC_BC_UN_MINUS: return PPC_BC_UN;
686
0
    case PPC_BC_NU_MINUS: return PPC_BC_NU;
687
0
    case PPC_BC_LT_PLUS : return PPC_BC_LT;
688
0
    case PPC_BC_LE_PLUS : return PPC_BC_LE;
689
0
    case PPC_BC_EQ_PLUS : return PPC_BC_EQ;
690
0
    case PPC_BC_GE_PLUS : return PPC_BC_GE;
691
0
    case PPC_BC_GT_PLUS : return PPC_BC_GT;
692
0
    case PPC_BC_NE_PLUS : return PPC_BC_NE;
693
0
    case PPC_BC_UN_PLUS : return PPC_BC_UN;
694
0
    case PPC_BC_NU_PLUS : return PPC_BC_NU;
695
0
  }
696
0
}
697
698
static void printPredicateOperand(MCInst *MI, unsigned OpNo,
699
    SStream *O, const char *Modifier)
700
0
{
701
0
  unsigned Code = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
702
703
0
  MI->flat_insn->detail->ppc.bc = (ppc_bc)cc_normalize(Code);
704
705
0
  if (!strcmp(Modifier, "cc")) {
706
0
    switch ((ppc_predicate)Code) {
707
0
      default:  // unreachable
708
0
      case PPC_PRED_LT_MINUS:
709
0
      case PPC_PRED_LT_PLUS:
710
0
      case PPC_PRED_LT:
711
0
        SStream_concat0(O, "lt");
712
0
        return;
713
0
      case PPC_PRED_LE_MINUS:
714
0
      case PPC_PRED_LE_PLUS:
715
0
      case PPC_PRED_LE:
716
0
        SStream_concat0(O, "le");
717
0
        return;
718
0
      case PPC_PRED_EQ_MINUS:
719
0
      case PPC_PRED_EQ_PLUS:
720
0
      case PPC_PRED_EQ:
721
0
        SStream_concat0(O, "eq");
722
0
        return;
723
0
      case PPC_PRED_GE_MINUS:
724
0
      case PPC_PRED_GE_PLUS:
725
0
      case PPC_PRED_GE:
726
0
        SStream_concat0(O, "ge");
727
0
        return;
728
0
      case PPC_PRED_GT_MINUS:
729
0
      case PPC_PRED_GT_PLUS:
730
0
      case PPC_PRED_GT:
731
0
        SStream_concat0(O, "gt");
732
0
        return;
733
0
      case PPC_PRED_NE_MINUS:
734
0
      case PPC_PRED_NE_PLUS:
735
0
      case PPC_PRED_NE:
736
0
        SStream_concat0(O, "ne");
737
0
        return;
738
0
      case PPC_PRED_UN_MINUS:
739
0
      case PPC_PRED_UN_PLUS:
740
0
      case PPC_PRED_UN:
741
0
        SStream_concat0(O, "un");
742
0
        return;
743
0
      case PPC_PRED_NU_MINUS:
744
0
      case PPC_PRED_NU_PLUS:
745
0
      case PPC_PRED_NU:
746
0
        SStream_concat0(O, "nu");
747
0
        return;
748
0
      case PPC_PRED_BIT_SET:
749
0
      case PPC_PRED_BIT_UNSET:
750
        // llvm_unreachable("Invalid use of bit predicate code");
751
0
        SStream_concat0(O, "invalid-predicate");
752
0
        return;
753
0
    }
754
0
  }
755
756
0
  if (!strcmp(Modifier, "pm")) {
757
0
    switch ((ppc_predicate)Code) {
758
0
      case PPC_PRED_LT:
759
0
      case PPC_PRED_LE:
760
0
      case PPC_PRED_EQ:
761
0
      case PPC_PRED_GE:
762
0
      case PPC_PRED_GT:
763
0
      case PPC_PRED_NE:
764
0
      case PPC_PRED_UN:
765
0
      case PPC_PRED_NU:
766
0
        return;
767
0
      case PPC_PRED_LT_MINUS:
768
0
      case PPC_PRED_LE_MINUS:
769
0
      case PPC_PRED_EQ_MINUS:
770
0
      case PPC_PRED_GE_MINUS:
771
0
      case PPC_PRED_GT_MINUS:
772
0
      case PPC_PRED_NE_MINUS:
773
0
      case PPC_PRED_UN_MINUS:
774
0
      case PPC_PRED_NU_MINUS:
775
0
        SStream_concat0(O, "-");
776
0
        return;
777
0
      case PPC_PRED_LT_PLUS:
778
0
      case PPC_PRED_LE_PLUS:
779
0
      case PPC_PRED_EQ_PLUS:
780
0
      case PPC_PRED_GE_PLUS:
781
0
      case PPC_PRED_GT_PLUS:
782
0
      case PPC_PRED_NE_PLUS:
783
0
      case PPC_PRED_UN_PLUS:
784
0
      case PPC_PRED_NU_PLUS:
785
0
        SStream_concat0(O, "+");
786
0
        return;
787
0
      case PPC_PRED_BIT_SET:
788
0
      case PPC_PRED_BIT_UNSET:
789
        // llvm_unreachable("Invalid use of bit predicate code");
790
0
        SStream_concat0(O, "invalid-predicate");
791
0
        return;
792
0
      default:  // unreachable
793
0
        return;
794
0
    }
795
    // llvm_unreachable("Invalid predicate code");
796
0
  }
797
798
  //assert(StringRef(Modifier) == "reg" &&
799
  //    "Need to specify 'cc', 'pm' or 'reg' as predicate op modifier!");
800
0
  printOperand(MI, OpNo + 1, O);
801
0
}
802
803
static void printATBitsAsHint(MCInst *MI, unsigned OpNo, SStream *O)
804
0
{
805
0
  unsigned Code = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
806
807
0
  if (Code == 2) {
808
0
    SStream_concat0(O, "-");
809
0
  } else if (Code == 3) {
810
0
    SStream_concat0(O, "+");
811
0
  }
812
0
}
813
814
static void printU1ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
815
635
{
816
635
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
817
818
  // assert(Value <= 1 && "Invalid u1imm argument!");
819
820
635
  printUInt32(O, Value);
821
822
635
  if (MI->csh->detail) {
823
635
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
824
635
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
825
635
    MI->flat_insn->detail->ppc.op_count++;
826
635
  }
827
635
}
828
829
static void printU2ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
830
1.46k
{
831
1.46k
  unsigned int Value = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
832
  //assert(Value <= 3 && "Invalid u2imm argument!");
833
834
1.46k
  printUInt32(O, Value);
835
836
1.46k
  if (MI->csh->detail) {
837
1.46k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
838
1.46k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
839
1.46k
    MI->flat_insn->detail->ppc.op_count++;
840
1.46k
  }
841
1.46k
}
842
843
static void printU3ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
844
247
{
845
247
  unsigned int Value = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
846
  //assert(Value <= 8 && "Invalid u3imm argument!");
847
848
247
  printUInt32(O, Value);
849
850
247
  if (MI->csh->detail) {
851
247
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
852
247
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
853
247
    MI->flat_insn->detail->ppc.op_count++;
854
247
  }
855
247
}
856
857
static void printU4ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
858
1.82k
{
859
1.82k
  unsigned int Value = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
860
  //assert(Value <= 15 && "Invalid u4imm argument!");
861
862
1.82k
  printUInt32(O, Value);
863
864
1.82k
  if (MI->csh->detail) {
865
1.82k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
866
1.82k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
867
1.82k
    MI->flat_insn->detail->ppc.op_count++;
868
1.82k
  }
869
1.82k
}
870
871
static void printS5ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
872
185
{
873
185
  int Value = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
874
185
  Value = SignExtend32(Value, 5);
875
876
185
  printInt32(O, Value);
877
878
185
  if (MI->csh->detail) {
879
185
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
880
185
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
881
185
    MI->flat_insn->detail->ppc.op_count++;
882
185
  }
883
185
}
884
885
static void printU5ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
886
22.0k
{
887
22.0k
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
888
889
  //assert(Value <= 31 && "Invalid u5imm argument!");
890
22.0k
  printUInt32(O, Value);
891
892
22.0k
  if (MI->csh->detail) {
893
22.0k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
894
22.0k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
895
22.0k
    MI->flat_insn->detail->ppc.op_count++;
896
22.0k
  }
897
22.0k
}
898
899
static void printU6ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
900
5.95k
{
901
5.95k
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
902
903
  //assert(Value <= 63 && "Invalid u6imm argument!");
904
5.95k
  printUInt32(O, Value);
905
906
5.95k
  if (MI->csh->detail) {
907
5.95k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
908
5.95k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
909
5.95k
    MI->flat_insn->detail->ppc.op_count++;
910
5.95k
  }
911
5.95k
}
912
913
static void printU7ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
914
438
{
915
438
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
916
917
  //assert(Value <= 127 && "Invalid u7imm argument!");
918
438
  printUInt32(O, Value);
919
920
438
  if (MI->csh->detail) {
921
438
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
922
438
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
923
438
    MI->flat_insn->detail->ppc.op_count++;
924
438
  }
925
438
}
926
927
// Operands of BUILD_VECTOR are signed and we use this to print operands
928
// of XXSPLTIB which are unsigned. So we simply truncate to 8 bits and
929
// print as unsigned.
930
static void printU8ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
931
204
{
932
204
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
933
934
204
  printUInt32(O, Value);
935
936
204
  if (MI->csh->detail) {
937
204
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
938
204
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
939
204
    MI->flat_insn->detail->ppc.op_count++;
940
204
  }
941
204
}
942
943
static void printU10ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
944
417
{
945
417
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
946
947
  //assert(Value <= 1023 && "Invalid u10imm argument!");
948
417
  printUInt32(O, Value);
949
950
417
  if (MI->csh->detail) {
951
417
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
952
417
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
953
417
    MI->flat_insn->detail->ppc.op_count++;
954
417
  }
955
417
}
956
957
static void printS12ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
958
0
{
959
0
  if (MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
960
0
    int Imm = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
961
0
    Imm = SignExtend32(Imm, 12);
962
963
0
    printInt32(O, Imm);
964
965
0
    if (MI->csh->detail) {
966
0
      if (MI->csh->doing_mem) {
967
0
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.disp = Imm;
968
0
      } else {
969
0
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
970
0
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Imm;
971
0
                MI->flat_insn->detail->ppc.op_count++;
972
0
            }
973
0
    }
974
0
  } else
975
0
    printOperand(MI, OpNo, O);
976
0
}
977
978
static void printU12ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
979
775
{
980
775
  unsigned short Value = (unsigned short)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
981
982
  // assert(Value <= 4095 && "Invalid u12imm argument!");
983
984
775
  printUInt32(O, Value);
985
986
775
  if (MI->csh->detail) {
987
775
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
988
775
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
989
775
    MI->flat_insn->detail->ppc.op_count++;
990
775
  }
991
775
}
992
993
static void printS16ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
994
37.4k
{
995
37.4k
  if (MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
996
37.4k
    short Imm = (short)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
997
37.4k
    printInt32(O, Imm);
998
999
37.4k
    if (MI->csh->detail) {
1000
37.4k
      if (MI->csh->doing_mem) {
1001
19.9k
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.disp = Imm;
1002
19.9k
      } else {
1003
17.4k
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1004
17.4k
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Imm;
1005
17.4k
                MI->flat_insn->detail->ppc.op_count++;
1006
17.4k
            }
1007
37.4k
    }
1008
37.4k
  } else
1009
0
    printOperand(MI, OpNo, O);
1010
37.4k
}
1011
1012
static void printU16ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
1013
9.48k
{
1014
9.48k
  if (MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
1015
9.48k
    unsigned short Imm = (unsigned short)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
1016
9.48k
    printUInt32(O, Imm);
1017
1018
9.48k
    if (MI->csh->detail) {
1019
9.48k
      MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1020
9.48k
      MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Imm;
1021
9.48k
      MI->flat_insn->detail->ppc.op_count++;
1022
9.48k
    }
1023
9.48k
  } else
1024
0
    printOperand(MI, OpNo, O);
1025
9.48k
}
1026
1027
static void printBranchOperand(MCInst *MI, unsigned OpNo, SStream *O)
1028
8.41k
{
1029
8.41k
  if (!MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
1030
0
    printOperand(MI, OpNo, O);
1031
1032
0
    return;
1033
0
  }
1034
1035
  // Branches can take an immediate operand.  This is used by the branch
1036
  // selection pass to print .+8, an eight byte displacement from the PC.
1037
  // O << ".+";
1038
8.41k
  printAbsBranchOperand(MI, OpNo, O);
1039
8.41k
}
1040
1041
static void printAbsBranchOperand(MCInst *MI, unsigned OpNo, SStream *O)
1042
10.4k
{
1043
10.4k
  int64_t imm;
1044
1045
10.4k
  if (!MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
1046
0
    printOperand(MI, OpNo, O);
1047
1048
0
    return;
1049
0
  }
1050
1051
10.4k
  imm = SignExtend32(MCOperand_getImm(MCInst_getOperand(MI, OpNo)) * 4, 32);
1052
  //imm = MCOperand_getImm(MCInst_getOperand(MI, OpNo)) * 4;
1053
1054
10.4k
  if (!PPC_abs_branch(MI->csh, MCInst_getOpcode(MI))) {
1055
5.05k
    imm += MI->address;
1056
5.05k
  }
1057
1058
10.4k
  printUInt64(O, imm);
1059
1060
10.4k
  if (MI->csh->detail) {
1061
10.4k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1062
10.4k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = imm;
1063
10.4k
    MI->flat_insn->detail->ppc.op_count++;
1064
10.4k
  }
1065
10.4k
}
1066
1067
static void printcrbitm(MCInst *MI, unsigned OpNo, SStream *O)
1068
817
{
1069
817
  unsigned RegNo;
1070
817
  unsigned CCReg = MCOperand_getReg(MCInst_getOperand(MI, OpNo));
1071
1072
817
  switch (CCReg) {
1073
0
    default: // llvm_unreachable("Unknown CR register");
1074
60
    case PPC_CR0: RegNo = 0; break;
1075
117
    case PPC_CR1: RegNo = 1; break;
1076
17
    case PPC_CR2: RegNo = 2; break;
1077
97
    case PPC_CR3: RegNo = 3; break;
1078
196
    case PPC_CR4: RegNo = 4; break;
1079
16
    case PPC_CR5: RegNo = 5; break;
1080
39
    case PPC_CR6: RegNo = 6; break;
1081
275
    case PPC_CR7: RegNo = 7; break;
1082
817
  }
1083
1084
817
  printUInt32(O, 0x80 >> RegNo);
1085
817
}
1086
1087
static void printMemRegImm(MCInst *MI, unsigned OpNo, SStream *O)
1088
39.0k
{
1089
39.0k
  set_mem_access(MI, true);
1090
1091
39.0k
  printS16ImmOperand(MI, OpNo, O);
1092
1093
39.0k
  SStream_concat0(O, "(");
1094
1095
39.0k
  if (MCOperand_getReg(MCInst_getOperand(MI, OpNo + 1)) == PPC_R0)
1096
0
    SStream_concat0(O, "0");
1097
39.0k
  else
1098
39.0k
    printOperand(MI, OpNo + 1, O);
1099
1100
39.0k
  SStream_concat0(O, ")");
1101
1102
39.0k
  set_mem_access(MI, false);
1103
39.0k
}
1104
1105
static void printPSMemRegImm(MCInst *MI, unsigned OpNo, SStream *O)
1106
0
{
1107
0
  set_mem_access(MI, true);
1108
1109
0
  printS12ImmOperand(MI, OpNo, O);
1110
1111
0
  SStream_concat0(O, "(");
1112
0
  printOperand(MI, OpNo + 1, O);
1113
0
  SStream_concat0(O, ")");
1114
1115
0
  set_mem_access(MI, false);
1116
0
}
1117
1118
static void printMemRegReg(MCInst *MI, unsigned OpNo, SStream *O)
1119
7.89k
{
1120
  // When used as the base register, r0 reads constant zero rather than
1121
  // the value contained in the register.  For this reason, the darwin
1122
  // assembler requires that we print r0 as 0 (no r) when used as the base.
1123
7.89k
  if (MCOperand_getReg(MCInst_getOperand(MI, OpNo)) == PPC_R0)
1124
0
    SStream_concat0(O, "0");
1125
7.89k
  else
1126
7.89k
    printOperand(MI, OpNo, O);
1127
7.89k
  SStream_concat0(O, ", ");
1128
1129
7.89k
  printOperand(MI, OpNo + 1, O);
1130
7.89k
}
1131
1132
static void printTLSCall(MCInst *MI, unsigned OpNo, SStream *O)
1133
0
{
1134
0
  set_mem_access(MI, true);
1135
  //printBranchOperand(MI, OpNo, O);
1136
1137
  // On PPC64, VariantKind is VK_None, but on PPC32, it's VK_PLT, and it must
1138
  // come at the _end_ of the expression.
1139
1140
0
  SStream_concat0(O, "(");
1141
0
  printOperand(MI, OpNo + 1, O);
1142
0
  SStream_concat0(O, ")");
1143
1144
0
  set_mem_access(MI, false);
1145
0
}
1146
1147
/// stripRegisterPrefix - This method strips the character prefix from a
1148
/// register name so that only the number is left.  Used by for linux asm.
1149
static char *stripRegisterPrefix(const char *RegName)
1150
0
{
1151
0
  switch (RegName[0]) {
1152
0
    case 'r':
1153
0
    case 'f':
1154
0
    case 'q': // for QPX
1155
0
    case 'v':
1156
0
      if (RegName[1] == 's')
1157
0
        return cs_strdup(RegName + 2);
1158
1159
0
      return cs_strdup(RegName + 1);
1160
0
    case 'c':
1161
0
      if (RegName[1] == 'r') {
1162
        // skip the first 2 letters "cr"
1163
0
        char *name = cs_strdup(RegName + 2);
1164
1165
        // also strip the last 2 letters
1166
0
        if(strlen(name) > 2)
1167
0
          name[strlen(name) - 2] = '\0';
1168
1169
0
        return name;
1170
0
      }
1171
0
  }
1172
1173
0
  return cs_strdup(RegName);
1174
0
}
1175
1176
static void printOperand(MCInst *MI, unsigned OpNo, SStream *O)
1177
247k
{
1178
247k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
1179
247k
  if (MCOperand_isReg(Op)) {
1180
238k
    unsigned reg = MCOperand_getReg(Op);
1181
238k
#ifndef CAPSTONE_DIET
1182
238k
    const char *RegName = getRegisterName(reg);
1183
1184
    // printf("reg = %u (%s)\n", reg, RegName);
1185
1186
    // convert internal register ID to public register ID
1187
238k
    reg = PPC_name_reg(RegName);
1188
1189
    // The linux and AIX assembler does not take register prefixes.
1190
238k
    if (MI->csh->syntax == CS_OPT_SYNTAX_NOREGNAME) {
1191
0
      char *name = stripRegisterPrefix(RegName);
1192
0
      SStream_concat0(O, name);
1193
0
      cs_mem_free(name);
1194
0
    } else
1195
238k
      SStream_concat0(O, RegName);
1196
238k
#endif
1197
1198
238k
    if (MI->csh->detail) {
1199
238k
      if (MI->csh->doing_mem) {
1200
19.9k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.base = reg;
1201
219k
      } else {
1202
219k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_REG;
1203
219k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].reg = reg;
1204
219k
        MI->flat_insn->detail->ppc.op_count++;
1205
219k
      }
1206
238k
    }
1207
1208
238k
    return;
1209
238k
  }
1210
1211
8.07k
  if (MCOperand_isImm(Op)) {
1212
8.07k
    int32_t imm = (int32_t)MCOperand_getImm(Op);
1213
8.07k
    printInt32(O, imm);
1214
1215
8.07k
    if (MI->csh->detail) {
1216
8.07k
      if (MI->csh->doing_mem) {
1217
0
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.disp = (int32_t)imm;
1218
8.07k
      } else {
1219
8.07k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1220
8.07k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = imm;
1221
8.07k
        MI->flat_insn->detail->ppc.op_count++;
1222
8.07k
      }
1223
8.07k
    }
1224
8.07k
  }
1225
8.07k
}
1226
1227
static void op_addImm(MCInst *MI, int v)
1228
77
{
1229
77
  if (MI->csh->detail) {
1230
77
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1231
77
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = v;
1232
77
    MI->flat_insn->detail->ppc.op_count++;
1233
77
  }
1234
77
}
1235
1236
#define PRINT_ALIAS_INSTR
1237
#include "PPCGenRegisterName.inc"
1238
#include "PPCGenAsmWriter.inc"
1239
1240
#endif