Coverage Report

Created: 2026-09-01 07:20

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
26.4k
{
62
26.4k
  if (MI->csh->detail != CS_OPT_ON)
63
0
    return;
64
65
26.4k
  MI->csh->doing_mem = status;
66
67
26.4k
  if (status) {
68
13.2k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_MEM;
69
13.2k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.base = PPC_REG_INVALID;
70
13.2k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.disp = 0;
71
13.2k
  } else {
72
    // done, create the next operand slot
73
13.2k
    MI->flat_insn->detail->ppc.op_count++;
74
13.2k
  }
75
26.4k
}
76
77
void PPC_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci)
78
98.9k
{
79
98.9k
  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
98.9k
  size_t n = strcspn(insn_asm, " \t");
85
98.9k
  char c = n ? insn_asm[n - 1] : 0;
86
87
98.9k
  if (c == '+') {
88
1.31k
    insn->detail->ppc.bh = PPC_BH_PLUS;
89
97.6k
  } else if (c == '-') {
90
1.50k
    insn->detail->ppc.bh = PPC_BH_MINUS;
91
96.1k
  } else if (c == '.') {
92
7.75k
    insn->detail->ppc.update_cr0 = true;
93
7.75k
  }
94
98.9k
}
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.05k
{
104
2.05k
  if (MI->csh->detail) {
105
2.05k
    MI->flat_insn->detail->ppc.bc = (ppc_bc)bc;
106
2.05k
  }
107
2.05k
}
108
109
819
#define CREQ (0)
110
944
#define CRGT (1)
111
1.16k
#define CRLT (2)
112
466
#define CRUN (3)
113
114
static int getBICRCond(int bi)
115
3.39k
{
116
3.39k
  return (bi - PPC_CR0EQ) >> 3;
117
3.39k
}
118
119
static int getBICR(int bi)
120
3.39k
{
121
3.39k
  return ((bi - PPC_CR0EQ) & 7) + PPC_CR0;
122
3.39k
}
123
124
static void op_addReg(MCInst *MI, unsigned int reg)
125
1.22k
{
126
1.22k
  if (MI->csh->detail) {
127
1.22k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_REG;
128
1.22k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].reg = reg;
129
1.22k
    MI->flat_insn->detail->ppc.op_count++;
130
1.22k
  }
131
1.22k
}
132
133
static void add_CRxx(MCInst *MI, ppc_reg reg)
134
854
{
135
854
  if (MI->csh->detail) {
136
854
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_REG;
137
854
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].reg = reg;
138
854
    MI->flat_insn->detail->ppc.op_count++;
139
854
  }
140
854
}
141
142
static char *printAliasBcc(MCInst *MI, SStream *OS, void *info)
143
97.5k
{
144
97.5k
#define GETREGCLASS_CONTAIN(_class, _reg) MCRegisterClass_contains(MCRegisterInfo_getRegClass(MRI, _class), MCOperand_getReg(MCInst_getOperand(MI, _reg)))
145
97.5k
  SStream ss;
146
97.5k
  const char *opCode;
147
97.5k
  char *tmp, *AsmMnem, *AsmOps, *c;
148
97.5k
  int OpIdx, PrintMethodIdx;
149
97.5k
  int decCtr = false, needComma = false;
150
97.5k
  MCRegisterInfo *MRI = (MCRegisterInfo *)info;
151
152
97.5k
  SStream_Init(&ss);
153
154
97.5k
  switch (MCInst_getOpcode(MI)) {
155
91.7k
    default: return NULL;
156
2.35k
    case PPC_gBC:
157
2.35k
         opCode = "b%s";
158
2.35k
         break;
159
1.05k
    case PPC_gBCA:
160
1.05k
         opCode = "b%sa";
161
1.05k
         break;
162
60
    case PPC_gBCCTR:
163
60
         opCode = "b%sctr";
164
60
         break;
165
30
    case PPC_gBCCTRL:
166
30
         opCode = "b%sctrl";
167
30
         break;
168
1.17k
    case PPC_gBCL:
169
1.17k
         opCode = "b%sl";
170
1.17k
         break;
171
1.05k
    case PPC_gBCLA:
172
1.05k
         opCode = "b%sla";
173
1.05k
         break;
174
71
    case PPC_gBCLR:
175
71
         opCode = "b%slr";
176
71
         break;
177
5
    case PPC_gBCLRL:
178
5
         opCode = "b%slrl";
179
5
         break;
180
97.5k
  }
181
182
5.81k
  if (MCInst_getNumOperands(MI) == 3 &&
183
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
184
5.81k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 0) &&
185
5.81k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 1)) {
186
276
    SStream_concat(&ss, opCode, "dnzf");
187
276
    decCtr = true;
188
276
  }
189
190
5.81k
  if (MCInst_getNumOperands(MI) == 3 &&
191
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
192
5.81k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 2) &&
193
5.53k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 3)) {
194
669
    SStream_concat(&ss, opCode, "dzf");
195
669
    decCtr = true;
196
669
  }
197
198
5.81k
  if (MCInst_getNumOperands(MI) == 3 &&
199
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
200
5.81k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 4) &&
201
4.86k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 7) &&
202
602
      MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
203
602
      GETREGCLASS_CONTAIN(PPC_CRBITRCRegClassID, 1)) {
204
602
    int cr = getBICRCond(MCOperand_getReg(MCInst_getOperand(MI, 1)));
205
206
602
    switch(cr) {
207
183
      case CREQ:
208
183
        SStream_concat(&ss, opCode, "ne");
209
183
        break;
210
198
      case CRGT:
211
198
        SStream_concat(&ss, opCode, "le");
212
198
        break;
213
64
      case CRLT:
214
64
        SStream_concat(&ss, opCode, "ge");
215
64
        break;
216
157
      case CRUN:
217
157
        SStream_concat(&ss, opCode, "ns");
218
157
        break;
219
602
    }
220
221
602
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 6)
222
74
      SStream_concat0(&ss, "-");
223
224
602
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 7)
225
206
      SStream_concat0(&ss, "+");
226
227
602
    decCtr = false;
228
602
  }
229
230
5.81k
  if (MCInst_getNumOperands(MI) == 3 &&
231
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
232
5.81k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 8) &&
233
4.26k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 9)) {
234
746
    SStream_concat(&ss, opCode, "dnzt");
235
746
    decCtr = true;
236
746
  }
237
238
5.81k
  if (MCInst_getNumOperands(MI) == 3 &&
239
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
240
5.81k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 10) &&
241
3.51k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 11)) {
242
359
    SStream_concat(&ss, opCode, "dzt");
243
359
    decCtr = true;
244
359
  }
245
246
5.81k
  if (MCInst_getNumOperands(MI) == 3 &&
247
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
248
5.81k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) >= 12) &&
249
3.16k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) <= 15) &&
250
746
      MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
251
746
      GETREGCLASS_CONTAIN(PPC_CRBITRCRegClassID, 1)) {
252
746
    int cr = getBICRCond(MCOperand_getReg(MCInst_getOperand(MI, 1)));
253
254
746
    switch(cr) {
255
92
      case CREQ:
256
92
        SStream_concat(&ss, opCode, "eq");
257
92
        break;
258
203
      case CRGT:
259
203
        SStream_concat(&ss, opCode, "gt");
260
203
        break;
261
427
      case CRLT:
262
427
        SStream_concat(&ss, opCode, "lt");
263
427
        break;
264
24
      case CRUN:
265
24
        SStream_concat(&ss, opCode, "so");
266
24
        break;
267
746
    }
268
269
746
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 14)
270
338
      SStream_concat0(&ss, "-");
271
272
746
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 15)
273
119
      SStream_concat0(&ss, "+");
274
275
746
    decCtr = false;
276
746
  }
277
278
5.81k
  if (MCInst_getNumOperands(MI) == 3 &&
279
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
280
5.81k
      ((MCOperand_getImm(MCInst_getOperand(MI, 0)) & 0x12)== 16)) {
281
843
    SStream_concat(&ss, opCode, "dnz");
282
283
843
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 24)
284
220
      SStream_concat0(&ss, "-");
285
286
843
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 25)
287
377
      SStream_concat0(&ss, "+");
288
289
843
    needComma = false;
290
843
  }
291
292
5.81k
  if (MCInst_getNumOperands(MI) == 3 &&
293
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
294
5.81k
      ((MCOperand_getImm(MCInst_getOperand(MI, 0)) & 0x12)== 18)) {
295
1.57k
    SStream_concat(&ss, opCode, "dz");
296
297
1.57k
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 26)
298
813
      SStream_concat0(&ss, "-");
299
300
1.57k
    if (MCOperand_getImm(MCInst_getOperand(MI, 0)) == 27)
301
349
      SStream_concat0(&ss, "+");
302
303
1.57k
    needComma = false;
304
1.57k
  }
305
306
5.81k
  if (MCOperand_isReg(MCInst_getOperand(MI, 1)) &&
307
5.81k
      GETREGCLASS_CONTAIN(PPC_CRBITRCRegClassID, 1) &&
308
5.81k
      MCOperand_isImm(MCInst_getOperand(MI, 0)) &&
309
5.81k
      (MCOperand_getImm(MCInst_getOperand(MI, 0)) < 16)) {
310
3.39k
    int cr = getBICR(MCOperand_getReg(MCInst_getOperand(MI, 1)));
311
312
3.39k
    if (decCtr) {
313
2.05k
      int cd;
314
2.05k
      needComma = true;
315
2.05k
      SStream_concat0(&ss, " ");
316
317
2.05k
      if (cr > PPC_CR0) {
318
1.19k
        SStream_concat(&ss, "4*cr%d+", cr - PPC_CR0);
319
1.19k
      }
320
321
2.05k
      cd = getBICRCond(MCOperand_getReg(MCInst_getOperand(MI, 1)));
322
2.05k
      switch(cd) {
323
544
        case CREQ:
324
544
          SStream_concat0(&ss, "eq");
325
544
          if (cr <= PPC_CR0)
326
198
            add_CRxx(MI, PPC_REG_CR0EQ);
327
544
          op_addBC(MI, PPC_BC_EQ);
328
544
          break;
329
543
        case CRGT:
330
543
          SStream_concat0(&ss, "gt");
331
543
          if (cr <= PPC_CR0)
332
267
            add_CRxx(MI, PPC_REG_CR0GT);
333
543
          op_addBC(MI, PPC_BC_GT);
334
543
          break;
335
678
        case CRLT:
336
678
          SStream_concat0(&ss, "lt");
337
678
          if (cr <= PPC_CR0)
338
289
            add_CRxx(MI, PPC_REG_CR0LT);
339
678
          op_addBC(MI, PPC_BC_LT);
340
678
          break;
341
285
        case CRUN:
342
285
          SStream_concat0(&ss, "so");
343
285
          if (cr <= PPC_CR0)
344
100
            add_CRxx(MI, PPC_REG_CR0UN);
345
285
          op_addBC(MI, PPC_BC_SO);
346
285
          break;
347
2.05k
      }
348
349
2.05k
      if (cr > PPC_CR0) {
350
1.19k
        if (MI->csh->detail) {
351
1.19k
          MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_REG;
352
1.19k
          MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].reg = MCOperand_getReg(MCInst_getOperand(MI, 1));
353
1.19k
          MI->flat_insn->detail->ppc.op_count++;
354
1.19k
        }
355
1.19k
      }
356
2.05k
    } else {
357
1.34k
      if (cr > PPC_CR0) {
358
1.22k
        needComma = true;
359
1.22k
        SStream_concat(&ss, " cr%d", cr - PPC_CR0);
360
1.22k
        op_addReg(MI, PPC_REG_CR0 + cr - PPC_CR0);
361
1.22k
      }
362
1.34k
    }
363
3.39k
  }
364
365
5.81k
  if (MCOperand_isImm(MCInst_getOperand(MI, 2)) &&
366
5.81k
      MCOperand_getImm(MCInst_getOperand(MI, 2)) != 0) {
367
5.56k
    if (needComma)
368
3.13k
      SStream_concat0(&ss, ",");
369
370
5.56k
    SStream_concat0(&ss, " $\xFF\x03\x01");
371
5.56k
  }
372
373
5.81k
  tmp = cs_strdup(ss.buffer);
374
5.81k
  AsmMnem = tmp;
375
34.4k
  for(AsmOps = tmp; *AsmOps; AsmOps++) {
376
34.3k
    if (*AsmOps == ' ' || *AsmOps == '\t') {
377
5.71k
      *AsmOps = '\0';
378
5.71k
      AsmOps++;
379
5.71k
      break;
380
5.71k
    }
381
34.3k
  }
382
383
5.81k
  SStream_concat0(OS, AsmMnem);
384
5.81k
  if (*AsmOps) {
385
5.71k
    SStream_concat0(OS, "\t");
386
32.4k
    for (c = AsmOps; *c; c++) {
387
26.7k
      if (*c == '$') {
388
5.56k
        c += 1;
389
5.56k
        if (*c == (char)0xff) {
390
5.56k
          c += 1;
391
5.56k
          OpIdx = *c - 1;
392
5.56k
          c += 1;
393
5.56k
          PrintMethodIdx = *c - 1;
394
5.56k
          printCustomAliasOperand(MI, OpIdx, PrintMethodIdx, OS);
395
5.56k
        } else
396
0
          printOperand(MI, *c - 1, OS);
397
21.2k
      } else {
398
21.2k
        SStream_concat1(OS, *c);
399
21.2k
      }
400
26.7k
    }
401
5.71k
  }
402
403
5.81k
  return tmp;
404
5.81k
}
405
406
static bool isBOCTRBranch(unsigned int op)
407
97.5k
{
408
97.5k
  return ((op >= PPC_BDNZ) && (op <= PPC_BDZp));
409
97.5k
}
410
411
void PPC_printInst(MCInst *MI, SStream *O, void *Info)
412
98.9k
{
413
98.9k
  char *mnem;
414
98.9k
  unsigned int opcode = MCInst_getOpcode(MI);
415
98.9k
  memset(O->buffer, 0, sizeof(O->buffer));
416
417
  // printf("opcode = %u\n", opcode);
418
419
  // Check for slwi/srwi mnemonics.
420
98.9k
  if (opcode == PPC_RLWINM) {
421
2.10k
    unsigned char SH = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 2));
422
2.10k
    unsigned char MB = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 3));
423
2.10k
    unsigned char ME = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 4));
424
2.10k
    bool useSubstituteMnemonic = false;
425
426
2.10k
    if (SH <= 31 && MB == 0 && ME == (31 - SH)) {
427
509
      SStream_concat0(O, "slwi\t");
428
509
      MCInst_setOpcodePub(MI, PPC_INS_SLWI);
429
509
      useSubstituteMnemonic = true;
430
509
    }
431
432
2.10k
    if (SH <= 31 && MB == (32 - SH) && ME == 31) {
433
236
      SStream_concat0(O, "srwi\t");
434
236
      MCInst_setOpcodePub(MI, PPC_INS_SRWI);
435
236
      useSubstituteMnemonic = true;
436
236
      SH = 32 - SH;
437
236
    }
438
439
2.10k
    if (useSubstituteMnemonic) {
440
745
      printOperand(MI, 0, O);
441
745
      SStream_concat0(O, ", ");
442
745
      printOperand(MI, 1, O);
443
444
745
      if (SH > HEX_THRESHOLD)
445
237
        SStream_concat(O, ", 0x%x", (unsigned int)SH);
446
508
      else
447
508
        SStream_concat(O, ", %u", (unsigned int)SH);
448
449
745
      if (MI->csh->detail) {
450
745
        cs_ppc *ppc = &MI->flat_insn->detail->ppc;
451
452
745
        ppc->operands[ppc->op_count].type = PPC_OP_IMM;
453
745
        ppc->operands[ppc->op_count].imm = SH;
454
745
        ++ppc->op_count;
455
745
      }
456
457
745
      return;
458
745
    }
459
2.10k
  }
460
461
98.2k
  if ((opcode == PPC_OR || opcode == PPC_OR8) &&
462
83
      MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2))) {
463
58
    SStream_concat0(O, "mr\t");
464
58
    MCInst_setOpcodePub(MI, PPC_INS_MR);
465
466
58
    printOperand(MI, 0, O);
467
58
    SStream_concat0(O, ", ");
468
58
    printOperand(MI, 1, O);
469
470
58
    return;
471
58
  }
472
473
98.1k
  if (opcode == PPC_RLDICR ||
474
97.8k
      opcode == PPC_RLDICR_32) {
475
370
    unsigned char SH = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 2));
476
370
    unsigned char ME = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 3));
477
478
    // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
479
370
    if (63 - SH == ME) {
480
56
      SStream_concat0(O, "sldi\t");
481
56
      MCInst_setOpcodePub(MI, PPC_INS_SLDI);
482
483
56
      printOperand(MI, 0, O);
484
56
      SStream_concat0(O, ", ");
485
56
      printOperand(MI, 1, O);
486
487
56
      if (SH > HEX_THRESHOLD)
488
30
        SStream_concat(O, ", 0x%x", (unsigned int)SH);
489
26
      else
490
26
        SStream_concat(O, ", %u", (unsigned int)SH);
491
492
56
      if (MI->csh->detail) {
493
56
        cs_ppc *ppc = &MI->flat_insn->detail->ppc;
494
495
56
        ppc->operands[ppc->op_count].type = PPC_OP_IMM;
496
56
        ppc->operands[ppc->op_count].imm = SH;
497
56
        ++ppc->op_count;
498
56
      }
499
500
501
56
      return;
502
56
    }
503
370
  }
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
98.1k
  if (opcode == PPC_DCBT || opcode == PPC_DCBTST) {
514
336
    unsigned char TH = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 0));
515
516
336
    SStream_concat0(O, "dcbt");
517
336
    MCInst_setOpcodePub(MI, PPC_INS_DCBT);
518
519
336
    if (opcode == PPC_DCBTST) {
520
272
      SStream_concat0(O, "st");
521
272
      MCInst_setOpcodePub(MI, PPC_INS_DCBTST);
522
272
    }
523
524
336
    if (TH == 16) {
525
69
      SStream_concat0(O, "t");
526
69
      MCInst_setOpcodePub(MI, PPC_INS_DCBTSTT);
527
69
    }
528
529
336
    SStream_concat0(O, "\t");
530
531
336
    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
336
    printOperand(MI, 1, O);
547
336
    SStream_concat0(O, ", ");
548
336
    printOperand(MI, 2, O);
549
550
336
    if (!(MI->csh->mode & CS_MODE_BOOKE) && TH != 0 && TH != 16) {
551
256
      if (TH > HEX_THRESHOLD)
552
252
        SStream_concat(O, ", 0x%x", (unsigned int)TH);
553
4
      else
554
4
        SStream_concat(O, ", %u", (unsigned int)TH);
555
556
256
      if (MI->csh->detail) {
557
256
        cs_ppc *ppc = &MI->flat_insn->detail->ppc;
558
559
256
        ppc->operands[ppc->op_count].type = PPC_OP_IMM;
560
256
        ppc->operands[ppc->op_count].imm = TH;
561
256
        ++ppc->op_count;
562
256
      }
563
256
    }
564
565
336
    return;
566
336
  }
567
568
97.7k
  if (opcode == PPC_DCBF) {
569
328
    unsigned char L = (unsigned char)MCOperand_getImm(MCInst_getOperand(MI, 0));
570
571
328
    if (!L || L == 1 || L == 3) {
572
215
      SStream_concat0(O, "dcbf");
573
215
      MCInst_setOpcodePub(MI, PPC_INS_DCBF);
574
575
215
      if (L == 1 || L == 3) {
576
56
        SStream_concat0(O, "l");
577
56
        MCInst_setOpcodePub(MI, PPC_INS_DCBFL);
578
56
      }
579
580
215
      if (L == 3) {
581
19
        SStream_concat0(O, "p");
582
19
        MCInst_setOpcodePub(MI, PPC_INS_DCBFLP);
583
19
      }
584
585
215
      SStream_concat0(O, "\t");
586
587
215
      printOperand(MI, 1, O);
588
215
      SStream_concat0(O, ", ");
589
215
      printOperand(MI, 2, O);
590
591
215
      return;
592
215
    }
593
328
  }
594
595
97.5k
  if (opcode == PPC_B || opcode == PPC_BA || opcode == PPC_BL ||
596
96.8k
      opcode == PPC_BLA) {
597
913
    int64_t bd = MCOperand_getImm(MCInst_getOperand(MI, 0));
598
913
    bd = SignExtend64(bd, 24);
599
913
    MCOperand_setImm(MCInst_getOperand(MI, 0), bd);
600
913
  }
601
602
97.5k
  if (opcode == PPC_gBC || opcode == PPC_gBCA || opcode == PPC_gBCL ||
603
92.9k
      opcode == PPC_gBCLA) {
604
5.64k
    int64_t bd = MCOperand_getImm(MCInst_getOperand(MI, 2));
605
5.64k
    bd = SignExtend64(bd, 14);
606
5.64k
    MCOperand_setImm(MCInst_getOperand(MI, 2), bd);
607
5.64k
  }
608
609
97.5k
  if (isBOCTRBranch(MCInst_getOpcode(MI))) {
610
504
    if (MCOperand_isImm(MCInst_getOperand(MI,0))) {
611
420
      int64_t bd = MCOperand_getImm(MCInst_getOperand(MI, 0));
612
420
      bd = SignExtend64(bd, 14);
613
420
      MCOperand_setImm(MCInst_getOperand(MI, 0), bd);
614
420
    }
615
504
  }
616
617
97.5k
  mnem = printAliasBcc(MI, O, Info);
618
97.5k
  if (!mnem)
619
91.7k
    mnem = printAliasInstr(MI, O, Info);
620
621
97.5k
  if (mnem != NULL) {
622
30.2k
    if (strlen(mnem) > 0) {
623
      // check to remove the last letter of ('.', '-', '+')
624
30.2k
      if (mnem[strlen(mnem) - 1] == '-' || mnem[strlen(mnem) - 1] == '+' || mnem[strlen(mnem) - 1] == '.')
625
3.15k
        mnem[strlen(mnem) - 1] = '\0';
626
627
30.2k
            MCInst_setOpcodePub(MI, PPC_map_insn(mnem));
628
629
30.2k
            if (MI->csh->detail) {
630
30.2k
        struct ppc_alias alias;
631
632
30.2k
        if (PPC_alias_insn(mnem, &alias)) {
633
1.34k
          MI->flat_insn->detail->ppc.bc = (ppc_bc)alias.cc;
634
1.34k
        }
635
30.2k
            }
636
30.2k
    }
637
638
30.2k
    cs_mem_free(mnem);
639
30.2k
  } else
640
67.2k
    printInstruction(MI, O);
641
642
97.5k
  const char *mnem_end = strchr(O->buffer, ' ');
643
97.5k
  unsigned mnem_len = 0;
644
97.5k
  if (mnem_end)
645
93.9k
    mnem_len = mnem_end - O->buffer;
646
97.5k
  if (!mnem_end || mnem_len >= sizeof(MI->flat_insn->mnemonic))
647
3.59k
    mnem_len = sizeof(MI->flat_insn->mnemonic) - 1;
648
649
97.5k
  memset(MI->flat_insn->mnemonic, 0, sizeof(MI->flat_insn->mnemonic));
650
97.5k
  memcpy(MI->flat_insn->mnemonic, O->buffer, mnem_len);
651
97.5k
}
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
537
{
816
537
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
817
818
  // assert(Value <= 1 && "Invalid u1imm argument!");
819
820
537
  printUInt32(O, Value);
821
822
537
  if (MI->csh->detail) {
823
537
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
824
537
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
825
537
    MI->flat_insn->detail->ppc.op_count++;
826
537
  }
827
537
}
828
829
static void printU2ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
830
1.28k
{
831
1.28k
  unsigned int Value = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
832
  //assert(Value <= 3 && "Invalid u2imm argument!");
833
834
1.28k
  printUInt32(O, Value);
835
836
1.28k
  if (MI->csh->detail) {
837
1.28k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
838
1.28k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
839
1.28k
    MI->flat_insn->detail->ppc.op_count++;
840
1.28k
  }
841
1.28k
}
842
843
static void printU3ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
844
167
{
845
167
  unsigned int Value = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
846
  //assert(Value <= 8 && "Invalid u3imm argument!");
847
848
167
  printUInt32(O, Value);
849
850
167
  if (MI->csh->detail) {
851
167
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
852
167
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
853
167
    MI->flat_insn->detail->ppc.op_count++;
854
167
  }
855
167
}
856
857
static void printU4ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
858
1.71k
{
859
1.71k
  unsigned int Value = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
860
  //assert(Value <= 15 && "Invalid u4imm argument!");
861
862
1.71k
  printUInt32(O, Value);
863
864
1.71k
  if (MI->csh->detail) {
865
1.71k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
866
1.71k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
867
1.71k
    MI->flat_insn->detail->ppc.op_count++;
868
1.71k
  }
869
1.71k
}
870
871
static void printS5ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
872
56
{
873
56
  int Value = (int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
874
56
  Value = SignExtend32(Value, 5);
875
876
56
  printInt32(O, Value);
877
878
56
  if (MI->csh->detail) {
879
56
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
880
56
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
881
56
    MI->flat_insn->detail->ppc.op_count++;
882
56
  }
883
56
}
884
885
static void printU5ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
886
15.2k
{
887
15.2k
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
888
889
  //assert(Value <= 31 && "Invalid u5imm argument!");
890
15.2k
  printUInt32(O, Value);
891
892
15.2k
  if (MI->csh->detail) {
893
15.2k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
894
15.2k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
895
15.2k
    MI->flat_insn->detail->ppc.op_count++;
896
15.2k
  }
897
15.2k
}
898
899
static void printU6ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
900
3.78k
{
901
3.78k
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
902
903
  //assert(Value <= 63 && "Invalid u6imm argument!");
904
3.78k
  printUInt32(O, Value);
905
906
3.78k
  if (MI->csh->detail) {
907
3.78k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
908
3.78k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
909
3.78k
    MI->flat_insn->detail->ppc.op_count++;
910
3.78k
  }
911
3.78k
}
912
913
static void printU7ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
914
187
{
915
187
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
916
917
  //assert(Value <= 127 && "Invalid u7imm argument!");
918
187
  printUInt32(O, Value);
919
920
187
  if (MI->csh->detail) {
921
187
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
922
187
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
923
187
    MI->flat_insn->detail->ppc.op_count++;
924
187
  }
925
187
}
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
189
{
932
189
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
933
934
189
  printUInt32(O, Value);
935
936
189
  if (MI->csh->detail) {
937
189
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
938
189
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
939
189
    MI->flat_insn->detail->ppc.op_count++;
940
189
  }
941
189
}
942
943
static void printU10ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
944
400
{
945
400
  unsigned int Value = (unsigned int)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
946
947
  //assert(Value <= 1023 && "Invalid u10imm argument!");
948
400
  printUInt32(O, Value);
949
950
400
  if (MI->csh->detail) {
951
400
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
952
400
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
953
400
    MI->flat_insn->detail->ppc.op_count++;
954
400
  }
955
400
}
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
549
{
980
549
  unsigned short Value = (unsigned short)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
981
982
  // assert(Value <= 4095 && "Invalid u12imm argument!");
983
984
549
  printUInt32(O, Value);
985
986
549
  if (MI->csh->detail) {
987
549
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
988
549
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Value;
989
549
    MI->flat_insn->detail->ppc.op_count++;
990
549
  }
991
549
}
992
993
static void printS16ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
994
26.2k
{
995
26.2k
  if (MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
996
26.2k
    short Imm = (short)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
997
26.2k
    printInt32(O, Imm);
998
999
26.2k
    if (MI->csh->detail) {
1000
26.2k
      if (MI->csh->doing_mem) {
1001
13.2k
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.disp = Imm;
1002
13.2k
      } else {
1003
13.0k
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1004
13.0k
                MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Imm;
1005
13.0k
                MI->flat_insn->detail->ppc.op_count++;
1006
13.0k
            }
1007
26.2k
    }
1008
26.2k
  } else
1009
0
    printOperand(MI, OpNo, O);
1010
26.2k
}
1011
1012
static void printU16ImmOperand(MCInst *MI, unsigned OpNo, SStream *O)
1013
7.35k
{
1014
7.35k
  if (MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
1015
7.35k
    unsigned short Imm = (unsigned short)MCOperand_getImm(MCInst_getOperand(MI, OpNo));
1016
7.35k
    printUInt32(O, Imm);
1017
1018
7.35k
    if (MI->csh->detail) {
1019
7.35k
      MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1020
7.35k
      MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = Imm;
1021
7.35k
      MI->flat_insn->detail->ppc.op_count++;
1022
7.35k
    }
1023
7.35k
  } else
1024
0
    printOperand(MI, OpNo, O);
1025
7.35k
}
1026
1027
static void printBranchOperand(MCInst *MI, unsigned OpNo, SStream *O)
1028
5.99k
{
1029
5.99k
  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
5.99k
  printAbsBranchOperand(MI, OpNo, O);
1039
5.99k
}
1040
1041
static void printAbsBranchOperand(MCInst *MI, unsigned OpNo, SStream *O)
1042
6.89k
{
1043
6.89k
  int64_t imm;
1044
1045
6.89k
  if (!MCOperand_isImm(MCInst_getOperand(MI, OpNo))) {
1046
0
    printOperand(MI, OpNo, O);
1047
1048
0
    return;
1049
0
  }
1050
1051
6.89k
  imm = SignExtend32(MCOperand_getImm(MCInst_getOperand(MI, OpNo)) * 4, 32);
1052
  //imm = MCOperand_getImm(MCInst_getOperand(MI, OpNo)) * 4;
1053
1054
6.89k
  if (!PPC_abs_branch(MI->csh, MCInst_getOpcode(MI))) {
1055
3.88k
    imm += MI->address;
1056
3.88k
  }
1057
1058
6.89k
  printUInt64(O, imm);
1059
1060
6.89k
  if (MI->csh->detail) {
1061
6.89k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1062
6.89k
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = imm;
1063
6.89k
    MI->flat_insn->detail->ppc.op_count++;
1064
6.89k
  }
1065
6.89k
}
1066
1067
static void printcrbitm(MCInst *MI, unsigned OpNo, SStream *O)
1068
605
{
1069
605
  unsigned RegNo;
1070
605
  unsigned CCReg = MCOperand_getReg(MCInst_getOperand(MI, OpNo));
1071
1072
605
  switch (CCReg) {
1073
0
    default: // llvm_unreachable("Unknown CR register");
1074
19
    case PPC_CR0: RegNo = 0; break;
1075
77
    case PPC_CR1: RegNo = 1; break;
1076
14
    case PPC_CR2: RegNo = 2; break;
1077
80
    case PPC_CR3: RegNo = 3; break;
1078
142
    case PPC_CR4: RegNo = 4; break;
1079
8
    case PPC_CR5: RegNo = 5; break;
1080
25
    case PPC_CR6: RegNo = 6; break;
1081
240
    case PPC_CR7: RegNo = 7; break;
1082
605
  }
1083
1084
605
  printUInt32(O, 0x80 >> RegNo);
1085
605
}
1086
1087
static void printMemRegImm(MCInst *MI, unsigned OpNo, SStream *O)
1088
28.8k
{
1089
28.8k
  set_mem_access(MI, true);
1090
1091
28.8k
  printS16ImmOperand(MI, OpNo, O);
1092
1093
28.8k
  SStream_concat0(O, "(");
1094
1095
28.8k
  if (MCOperand_getReg(MCInst_getOperand(MI, OpNo + 1)) == PPC_R0)
1096
0
    SStream_concat0(O, "0");
1097
28.8k
  else
1098
28.8k
    printOperand(MI, OpNo + 1, O);
1099
1100
28.8k
  SStream_concat0(O, ")");
1101
1102
28.8k
  set_mem_access(MI, false);
1103
28.8k
}
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
6.44k
{
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
6.44k
  if (MCOperand_getReg(MCInst_getOperand(MI, OpNo)) == PPC_R0)
1124
0
    SStream_concat0(O, "0");
1125
6.44k
  else
1126
6.44k
    printOperand(MI, OpNo, O);
1127
6.44k
  SStream_concat0(O, ", ");
1128
1129
6.44k
  printOperand(MI, OpNo + 1, O);
1130
6.44k
}
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
185k
{
1178
185k
  MCOperand *Op = MCInst_getOperand(MI, OpNo);
1179
185k
  if (MCOperand_isReg(Op)) {
1180
180k
    unsigned reg = MCOperand_getReg(Op);
1181
180k
#ifndef CAPSTONE_DIET
1182
180k
    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
180k
    reg = PPC_name_reg(RegName);
1188
1189
    // The linux and AIX assembler does not take register prefixes.
1190
180k
    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
180k
      SStream_concat0(O, RegName);
1196
180k
#endif
1197
1198
180k
    if (MI->csh->detail) {
1199
180k
      if (MI->csh->doing_mem) {
1200
13.2k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].mem.base = reg;
1201
167k
      } else {
1202
167k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_REG;
1203
167k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].reg = reg;
1204
167k
        MI->flat_insn->detail->ppc.op_count++;
1205
167k
      }
1206
180k
    }
1207
1208
180k
    return;
1209
180k
  }
1210
1211
4.53k
  if (MCOperand_isImm(Op)) {
1212
4.53k
    int32_t imm = (int32_t)MCOperand_getImm(Op);
1213
4.53k
    printInt32(O, imm);
1214
1215
4.53k
    if (MI->csh->detail) {
1216
4.53k
      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
4.53k
      } else {
1219
4.53k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1220
4.53k
        MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = imm;
1221
4.53k
        MI->flat_insn->detail->ppc.op_count++;
1222
4.53k
      }
1223
4.53k
    }
1224
4.53k
  }
1225
4.53k
}
1226
1227
static void op_addImm(MCInst *MI, int v)
1228
68
{
1229
68
  if (MI->csh->detail) {
1230
68
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].type = PPC_OP_IMM;
1231
68
    MI->flat_insn->detail->ppc.operands[MI->flat_insn->detail->ppc.op_count].imm = v;
1232
68
    MI->flat_insn->detail->ppc.op_count++;
1233
68
  }
1234
68
}
1235
1236
#define PRINT_ALIAS_INSTR
1237
#include "PPCGenRegisterName.inc"
1238
#include "PPCGenAsmWriter.inc"
1239
1240
#endif