Coverage Report

Created: 2026-08-13 06:59

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