blob: 609d959c6d08ffafadf84c91d6360662da12ffb1 [file] [log] [blame]
Chris Lattnera76eab42010-11-14 19:40:38 +00001//===-- 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
Chris Lattnera76eab42010-11-14 19:40:38 +000014#include "PPCInstPrinter.h"
Nemanja Ivanovic11049f82016-10-04 06:59:23 +000015#include "PPCInstrInfo.h"
Hal Finkelfeea6532013-03-26 20:08:20 +000016#include "MCTargetDesc/PPCMCTargetDesc.h"
Evan Cheng11424442011-07-26 00:24:13 +000017#include "MCTargetDesc/PPCPredicates.h"
Chris Lattner7a5c57e2010-11-14 20:02:39 +000018#include "llvm/MC/MCExpr.h"
Chris Lattnera76eab42010-11-14 19:40:38 +000019#include "llvm/MC/MCInst.h"
Craig Topperdab9e352012-04-02 07:01:04 +000020#include "llvm/MC/MCInstrInfo.h"
Pete Cooper3de83e42015-05-15 21:58:42 +000021#include "llvm/MC/MCRegisterInfo.h"
22#include "llvm/MC/MCSubtargetInfo.h"
Hal Finkel7c8ae532014-07-25 17:47:22 +000023#include "llvm/MC/MCSymbol.h"
Hal Finkelc6a24392013-11-11 14:58:40 +000024#include "llvm/Support/CommandLine.h"
Chris Lattnera76eab42010-11-14 19:40:38 +000025#include "llvm/Support/raw_ostream.h"
Bill Schmidt8d86fe72013-08-30 15:18:11 +000026#include "llvm/Target/TargetOpcodes.h"
Chris Lattnera76eab42010-11-14 19:40:38 +000027using namespace llvm;
28
Chandler Carruth84e68b22014-04-22 02:41:26 +000029#define DEBUG_TYPE "asm-printer"
30
Hal Finkelc6a24392013-11-11 14:58:40 +000031// FIXME: Once the integrated assembler supports full register names, tie this
32// to the verbose-asm setting.
33static cl::opt<bool>
34FullRegNames("ppc-asm-full-reg-names", cl::Hidden, cl::init(false),
35 cl::desc("Use full register names when printing assembly"));
36
Nemanja Ivanovic6e7879c2016-09-22 09:52:19 +000037// Useful for testing purposes. Prints vs{31-63} as v{0-31} respectively.
38static cl::opt<bool>
39ShowVSRNumsAsVR("ppc-vsr-nums-as-vr", cl::Hidden, cl::init(false),
40 cl::desc("Prints full register names with vs{31-63} as v{0-31}"));
41
Hal Finkel7c5cb062015-04-23 18:30:38 +000042#define PRINT_ALIAS_INSTR
Chris Lattnera76eab42010-11-14 19:40:38 +000043#include "PPCGenAsmWriter.inc"
44
Rafael Espindolad6860522011-06-02 02:34:55 +000045void PPCInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
Hal Finkelc93a9a22015-02-25 01:06:45 +000046 const char *RegName = getRegisterName(RegNo);
47 if (RegName[0] == 'q' /* QPX */) {
48 // The system toolchain on the BG/Q does not understand QPX register names
49 // in .cfi_* directives, so print the name of the floating-point
50 // subregister instead.
51 std::string RN(RegName);
52
53 RN[0] = 'f';
54 OS << RN;
55
56 return;
57 }
58
59 OS << RegName;
Rafael Espindola08600bc2011-05-30 20:20:15 +000060}
Chris Lattnera76eab42010-11-14 19:40:38 +000061
Owen Andersona0c3b972011-09-15 23:38:46 +000062void PPCInstPrinter::printInst(const MCInst *MI, raw_ostream &O,
Akira Hatanakab46d0232015-03-27 20:36:02 +000063 StringRef Annot, const MCSubtargetInfo &STI) {
Chris Lattner219cc3d2010-11-14 21:39:51 +000064 // Check for slwi/srwi mnemonics.
65 if (MI->getOpcode() == PPC::RLWINM) {
66 unsigned char SH = MI->getOperand(2).getImm();
67 unsigned char MB = MI->getOperand(3).getImm();
68 unsigned char ME = MI->getOperand(4).getImm();
69 bool useSubstituteMnemonic = false;
70 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
71 O << "\tslwi "; useSubstituteMnemonic = true;
72 }
73 if (SH <= 31 && MB == (32-SH) && ME == 31) {
74 O << "\tsrwi "; useSubstituteMnemonic = true;
75 SH = 32-SH;
76 }
77 if (useSubstituteMnemonic) {
78 printOperand(MI, 0, O);
79 O << ", ";
80 printOperand(MI, 1, O);
81 O << ", " << (unsigned int)SH;
Owen Andersona0c3b972011-09-15 23:38:46 +000082
Owen Andersonbcc3fad2011-09-21 17:58:45 +000083 printAnnotation(O, Annot);
Chris Lattner219cc3d2010-11-14 21:39:51 +000084 return;
85 }
86 }
87
88 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
89 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
90 O << "\tmr ";
91 printOperand(MI, 0, O);
92 O << ", ";
93 printOperand(MI, 1, O);
Owen Andersonbcc3fad2011-09-21 17:58:45 +000094 printAnnotation(O, Annot);
Chris Lattner219cc3d2010-11-14 21:39:51 +000095 return;
96 }
97
98 if (MI->getOpcode() == PPC::RLDICR) {
99 unsigned char SH = MI->getOperand(2).getImm();
100 unsigned char ME = MI->getOperand(3).getImm();
101 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
102 if (63-SH == ME) {
103 O << "\tsldi ";
104 printOperand(MI, 0, O);
105 O << ", ";
106 printOperand(MI, 1, O);
107 O << ", " << (unsigned int)SH;
Owen Andersonbcc3fad2011-09-21 17:58:45 +0000108 printAnnotation(O, Annot);
Chris Lattner219cc3d2010-11-14 21:39:51 +0000109 return;
110 }
111 }
Hal Finkelfefcfff2015-04-23 22:47:57 +0000112
113 // dcbt[st] is printed manually here because:
114 // 1. The assembly syntax is different between embedded and server targets
115 // 2. We must print the short mnemonics for TH == 0 because the
116 // embedded/server syntax default will not be stable across assemblers
117 // The syntax for dcbt is:
118 // dcbt ra, rb, th [server]
119 // dcbt th, ra, rb [embedded]
120 // where th can be omitted when it is 0. dcbtst is the same.
121 if (MI->getOpcode() == PPC::DCBT || MI->getOpcode() == PPC::DCBTST) {
122 unsigned char TH = MI->getOperand(0).getImm();
123 O << "\tdcbt";
124 if (MI->getOpcode() == PPC::DCBTST)
125 O << "st";
126 if (TH == 16)
127 O << "t";
128 O << " ";
129
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000130 bool IsBookE = STI.getFeatureBits()[PPC::FeatureBookE];
Hal Finkelfefcfff2015-04-23 22:47:57 +0000131 if (IsBookE && TH != 0 && TH != 16)
132 O << (unsigned int) TH << ", ";
133
134 printOperand(MI, 1, O);
135 O << ", ";
136 printOperand(MI, 2, O);
137
138 if (!IsBookE && TH != 0 && TH != 16)
139 O << ", " << (unsigned int) TH;
140
141 printAnnotation(O, Annot);
142 return;
143 }
Hal Finkel277736e2016-09-02 23:41:54 +0000144
145 if (MI->getOpcode() == PPC::DCBF) {
146 unsigned char L = MI->getOperand(0).getImm();
147 if (!L || L == 1 || L == 3) {
148 O << "\tdcbf";
149 if (L == 1 || L == 3)
150 O << "l";
151 if (L == 3)
152 O << "p";
153 O << " ";
154
155 printOperand(MI, 1, O);
156 O << ", ";
157 printOperand(MI, 2, O);
158
159 printAnnotation(O, Annot);
160 return;
161 }
162 }
Chris Lattner219cc3d2010-11-14 21:39:51 +0000163
Hal Finkel7c5cb062015-04-23 18:30:38 +0000164 if (!printAliasInstr(MI, O))
165 printInstruction(MI, O);
Owen Andersonbcc3fad2011-09-21 17:58:45 +0000166 printAnnotation(O, Annot);
Chris Lattnera76eab42010-11-14 19:40:38 +0000167}
168
Chris Lattnerf2cb69c2010-11-14 21:51:37 +0000169
170void PPCInstPrinter::printPredicateOperand(const MCInst *MI, unsigned OpNo,
171 raw_ostream &O,
172 const char *Modifier) {
Chris Lattnerf2cb69c2010-11-14 21:51:37 +0000173 unsigned Code = MI->getOperand(OpNo).getImm();
Hal Finkel460e94d2012-06-22 23:10:08 +0000174
Chris Lattnerf2cb69c2010-11-14 21:51:37 +0000175 if (StringRef(Modifier) == "cc") {
176 switch ((PPC::Predicate)Code) {
Ulrich Weigand86247b62013-06-24 16:52:04 +0000177 case PPC::PRED_LT_MINUS:
178 case PPC::PRED_LT_PLUS:
179 case PPC::PRED_LT:
180 O << "lt";
181 return;
182 case PPC::PRED_LE_MINUS:
183 case PPC::PRED_LE_PLUS:
184 case PPC::PRED_LE:
185 O << "le";
186 return;
187 case PPC::PRED_EQ_MINUS:
188 case PPC::PRED_EQ_PLUS:
189 case PPC::PRED_EQ:
190 O << "eq";
191 return;
192 case PPC::PRED_GE_MINUS:
193 case PPC::PRED_GE_PLUS:
194 case PPC::PRED_GE:
195 O << "ge";
196 return;
197 case PPC::PRED_GT_MINUS:
198 case PPC::PRED_GT_PLUS:
199 case PPC::PRED_GT:
200 O << "gt";
201 return;
202 case PPC::PRED_NE_MINUS:
203 case PPC::PRED_NE_PLUS:
204 case PPC::PRED_NE:
205 O << "ne";
206 return;
207 case PPC::PRED_UN_MINUS:
208 case PPC::PRED_UN_PLUS:
209 case PPC::PRED_UN:
210 O << "un";
211 return;
212 case PPC::PRED_NU_MINUS:
213 case PPC::PRED_NU_PLUS:
214 case PPC::PRED_NU:
215 O << "nu";
216 return;
Hal Finkel940ab932014-02-28 00:27:01 +0000217 case PPC::PRED_BIT_SET:
218 case PPC::PRED_BIT_UNSET:
219 llvm_unreachable("Invalid use of bit predicate code");
Ulrich Weigand86247b62013-06-24 16:52:04 +0000220 }
Benjamin Kramer3912d782013-06-24 17:03:25 +0000221 llvm_unreachable("Invalid predicate code");
Ulrich Weigand86247b62013-06-24 16:52:04 +0000222 }
223
224 if (StringRef(Modifier) == "pm") {
225 switch ((PPC::Predicate)Code) {
226 case PPC::PRED_LT:
227 case PPC::PRED_LE:
228 case PPC::PRED_EQ:
229 case PPC::PRED_GE:
230 case PPC::PRED_GT:
231 case PPC::PRED_NE:
232 case PPC::PRED_UN:
233 case PPC::PRED_NU:
234 return;
235 case PPC::PRED_LT_MINUS:
236 case PPC::PRED_LE_MINUS:
237 case PPC::PRED_EQ_MINUS:
238 case PPC::PRED_GE_MINUS:
239 case PPC::PRED_GT_MINUS:
240 case PPC::PRED_NE_MINUS:
241 case PPC::PRED_UN_MINUS:
242 case PPC::PRED_NU_MINUS:
243 O << "-";
244 return;
245 case PPC::PRED_LT_PLUS:
246 case PPC::PRED_LE_PLUS:
247 case PPC::PRED_EQ_PLUS:
248 case PPC::PRED_GE_PLUS:
249 case PPC::PRED_GT_PLUS:
250 case PPC::PRED_NE_PLUS:
251 case PPC::PRED_UN_PLUS:
252 case PPC::PRED_NU_PLUS:
253 O << "+";
254 return;
Hal Finkel940ab932014-02-28 00:27:01 +0000255 case PPC::PRED_BIT_SET:
256 case PPC::PRED_BIT_UNSET:
257 llvm_unreachable("Invalid use of bit predicate code");
Chris Lattnerf2cb69c2010-11-14 21:51:37 +0000258 }
Benjamin Kramer3912d782013-06-24 17:03:25 +0000259 llvm_unreachable("Invalid predicate code");
Chris Lattnerf2cb69c2010-11-14 21:51:37 +0000260 }
261
262 assert(StringRef(Modifier) == "reg" &&
Ulrich Weigand86247b62013-06-24 16:52:04 +0000263 "Need to specify 'cc', 'pm' or 'reg' as predicate op modifier!");
Chris Lattnerf2cb69c2010-11-14 21:51:37 +0000264 printOperand(MI, OpNo+1, O);
265}
266
Hal Finkel522e4d92016-09-03 02:31:44 +0000267void PPCInstPrinter::printATBitsAsHint(const MCInst *MI, unsigned OpNo,
268 raw_ostream &O) {
269 unsigned Code = MI->getOperand(OpNo).getImm();
270 if (Code == 2)
271 O << "-";
272 else if (Code == 3)
273 O << "+";
274}
275
Nemanja Ivanovice8effe12015-03-04 20:44:33 +0000276void PPCInstPrinter::printU1ImmOperand(const MCInst *MI, unsigned OpNo,
277 raw_ostream &O) {
278 unsigned int Value = MI->getOperand(OpNo).getImm();
279 assert(Value <= 1 && "Invalid u1imm argument!");
280 O << (unsigned int)Value;
281}
282
Hal Finkel27774d92014-03-13 07:58:58 +0000283void PPCInstPrinter::printU2ImmOperand(const MCInst *MI, unsigned OpNo,
284 raw_ostream &O) {
285 unsigned int Value = MI->getOperand(OpNo).getImm();
286 assert(Value <= 3 && "Invalid u2imm argument!");
287 O << (unsigned int)Value;
288}
289
Kit Barton535e69d2015-03-25 19:36:23 +0000290void PPCInstPrinter::printU3ImmOperand(const MCInst *MI, unsigned OpNo,
291 raw_ostream &O) {
292 unsigned int Value = MI->getOperand(OpNo).getImm();
293 assert(Value <= 8 && "Invalid u3imm argument!");
294 O << (unsigned int)Value;
295}
296
Joerg Sonnenberger9e9623c2014-07-29 22:21:57 +0000297void PPCInstPrinter::printU4ImmOperand(const MCInst *MI, unsigned OpNo,
298 raw_ostream &O) {
299 unsigned int Value = MI->getOperand(OpNo).getImm();
300 assert(Value <= 15 && "Invalid u4imm argument!");
301 O << (unsigned int)Value;
302}
303
Chris Lattner94881432010-11-14 20:11:21 +0000304void PPCInstPrinter::printS5ImmOperand(const MCInst *MI, unsigned OpNo,
305 raw_ostream &O) {
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000306 int Value = MI->getOperand(OpNo).getImm();
Richard Smith228e6d42012-08-24 23:29:28 +0000307 Value = SignExtend32<5>(Value);
Chris Lattner94881432010-11-14 20:11:21 +0000308 O << (int)Value;
309}
310
311void PPCInstPrinter::printU5ImmOperand(const MCInst *MI, unsigned OpNo,
312 raw_ostream &O) {
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000313 unsigned int Value = MI->getOperand(OpNo).getImm();
Chris Lattner94881432010-11-14 20:11:21 +0000314 assert(Value <= 31 && "Invalid u5imm argument!");
315 O << (unsigned int)Value;
316}
317
318void PPCInstPrinter::printU6ImmOperand(const MCInst *MI, unsigned OpNo,
319 raw_ostream &O) {
Adhemerval Zanellafe3f7932012-10-08 18:59:53 +0000320 unsigned int Value = MI->getOperand(OpNo).getImm();
Chris Lattner94881432010-11-14 20:11:21 +0000321 assert(Value <= 63 && "Invalid u6imm argument!");
322 O << (unsigned int)Value;
323}
324
Chuang-Yu Cheng80722712016-03-28 08:34:28 +0000325void PPCInstPrinter::printU7ImmOperand(const MCInst *MI, unsigned OpNo,
326 raw_ostream &O) {
327 unsigned int Value = MI->getOperand(OpNo).getImm();
328 assert(Value <= 127 && "Invalid u7imm argument!");
329 O << (unsigned int)Value;
330}
331
Nemanja Ivanovicd2c3c512016-09-23 13:25:31 +0000332// Operands of BUILD_VECTOR are signed and we use this to print operands
333// of XXSPLTIB which are unsigned. So we simply truncate to 8 bits and
334// print as unsigned.
Chuang-Yu Cheng80722712016-03-28 08:34:28 +0000335void PPCInstPrinter::printU8ImmOperand(const MCInst *MI, unsigned OpNo,
336 raw_ostream &O) {
Nemanja Ivanovicd2c3c512016-09-23 13:25:31 +0000337 unsigned char Value = MI->getOperand(OpNo).getImm();
Chuang-Yu Cheng80722712016-03-28 08:34:28 +0000338 O << (unsigned int)Value;
339}
340
Bill Schmidte26236e2015-05-22 16:44:10 +0000341void PPCInstPrinter::printU10ImmOperand(const MCInst *MI, unsigned OpNo,
342 raw_ostream &O) {
343 unsigned short Value = MI->getOperand(OpNo).getImm();
344 assert(Value <= 1023 && "Invalid u10imm argument!");
345 O << (unsigned short)Value;
346}
347
Hal Finkelc93a9a22015-02-25 01:06:45 +0000348void PPCInstPrinter::printU12ImmOperand(const MCInst *MI, unsigned OpNo,
349 raw_ostream &O) {
350 unsigned short Value = MI->getOperand(OpNo).getImm();
351 assert(Value <= 4095 && "Invalid u12imm argument!");
352 O << (unsigned short)Value;
353}
354
Chris Lattner94881432010-11-14 20:11:21 +0000355void PPCInstPrinter::printS16ImmOperand(const MCInst *MI, unsigned OpNo,
356 raw_ostream &O) {
Ulrich Weigand41789de2013-05-23 22:26:41 +0000357 if (MI->getOperand(OpNo).isImm())
358 O << (short)MI->getOperand(OpNo).getImm();
359 else
360 printOperand(MI, OpNo, O);
Chris Lattner94881432010-11-14 20:11:21 +0000361}
362
363void PPCInstPrinter::printU16ImmOperand(const MCInst *MI, unsigned OpNo,
364 raw_ostream &O) {
Ulrich Weigandfd3ad692013-06-26 13:49:15 +0000365 if (MI->getOperand(OpNo).isImm())
366 O << (unsigned short)MI->getOperand(OpNo).getImm();
367 else
368 printOperand(MI, OpNo, O);
Chris Lattner94881432010-11-14 20:11:21 +0000369}
370
Chris Lattner3dc9bb22010-11-14 21:20:46 +0000371void PPCInstPrinter::printBranchOperand(const MCInst *MI, unsigned OpNo,
372 raw_ostream &O) {
373 if (!MI->getOperand(OpNo).isImm())
374 return printOperand(MI, OpNo, O);
375
376 // Branches can take an immediate operand. This is used by the branch
Ulrich Weigandb9d5d072013-05-03 19:53:04 +0000377 // selection pass to print .+8, an eight byte displacement from the PC.
378 O << ".+";
Ulrich Weigandb6a30d12013-06-24 11:03:33 +0000379 printAbsBranchOperand(MI, OpNo, O);
Chris Lattner3dc9bb22010-11-14 21:20:46 +0000380}
381
Ulrich Weigandb6a30d12013-06-24 11:03:33 +0000382void PPCInstPrinter::printAbsBranchOperand(const MCInst *MI, unsigned OpNo,
383 raw_ostream &O) {
384 if (!MI->getOperand(OpNo).isImm())
385 return printOperand(MI, OpNo, O);
386
Alexey Samsonov9ca48702014-09-02 17:38:34 +0000387 O << SignExtend32<32>((unsigned)MI->getOperand(OpNo).getImm() << 2);
Chris Lattnerf2cb69c2010-11-14 21:51:37 +0000388}
Chris Lattner3dc9bb22010-11-14 21:20:46 +0000389
390
Chris Lattner0dcd8002010-11-14 20:22:56 +0000391void PPCInstPrinter::printcrbitm(const MCInst *MI, unsigned OpNo,
392 raw_ostream &O) {
393 unsigned CCReg = MI->getOperand(OpNo).getReg();
394 unsigned RegNo;
395 switch (CCReg) {
Craig Toppere55c5562012-02-07 02:50:20 +0000396 default: llvm_unreachable("Unknown CR register");
Chris Lattner0dcd8002010-11-14 20:22:56 +0000397 case PPC::CR0: RegNo = 0; break;
398 case PPC::CR1: RegNo = 1; break;
399 case PPC::CR2: RegNo = 2; break;
400 case PPC::CR3: RegNo = 3; break;
401 case PPC::CR4: RegNo = 4; break;
402 case PPC::CR5: RegNo = 5; break;
403 case PPC::CR6: RegNo = 6; break;
404 case PPC::CR7: RegNo = 7; break;
405 }
406 O << (0x80 >> RegNo);
407}
408
409void PPCInstPrinter::printMemRegImm(const MCInst *MI, unsigned OpNo,
410 raw_ostream &O) {
Ulrich Weigand41789de2013-05-23 22:26:41 +0000411 printS16ImmOperand(MI, OpNo, O);
Chris Lattner0dcd8002010-11-14 20:22:56 +0000412 O << '(';
Chris Lattnerfd56ee22010-11-15 03:51:13 +0000413 if (MI->getOperand(OpNo+1).getReg() == PPC::R0)
Chris Lattner0dcd8002010-11-14 20:22:56 +0000414 O << "0";
415 else
416 printOperand(MI, OpNo+1, O);
417 O << ')';
418}
419
Chris Lattner0dcd8002010-11-14 20:22:56 +0000420void PPCInstPrinter::printMemRegReg(const MCInst *MI, unsigned OpNo,
421 raw_ostream &O) {
422 // When used as the base register, r0 reads constant zero rather than
423 // the value contained in the register. For this reason, the darwin
424 // assembler requires that we print r0 as 0 (no r) when used as the base.
425 if (MI->getOperand(OpNo).getReg() == PPC::R0)
426 O << "0";
427 else
428 printOperand(MI, OpNo, O);
429 O << ", ";
430 printOperand(MI, OpNo+1, O);
431}
432
Ulrich Weigand5143bab2013-07-02 21:31:04 +0000433void PPCInstPrinter::printTLSCall(const MCInst *MI, unsigned OpNo,
434 raw_ostream &O) {
Hal Finkel7c8ae532014-07-25 17:47:22 +0000435 // On PPC64, VariantKind is VK_None, but on PPC32, it's VK_PLT, and it must
436 // come at the _end_ of the expression.
437 const MCOperand &Op = MI->getOperand(OpNo);
438 const MCSymbolRefExpr &refExp = cast<MCSymbolRefExpr>(*Op.getExpr());
439 O << refExp.getSymbol().getName();
Ulrich Weigand5143bab2013-07-02 21:31:04 +0000440 O << '(';
441 printOperand(MI, OpNo+1, O);
442 O << ')';
Hal Finkel7c8ae532014-07-25 17:47:22 +0000443 if (refExp.getKind() != MCSymbolRefExpr::VK_None)
444 O << '@' << MCSymbolRefExpr::getVariantKindName(refExp.getKind());
Ulrich Weigand5143bab2013-07-02 21:31:04 +0000445}
Chris Lattner0dcd8002010-11-14 20:22:56 +0000446
Chris Lattner94881432010-11-14 20:11:21 +0000447
Chris Lattner7a5c57e2010-11-14 20:02:39 +0000448/// stripRegisterPrefix - This method strips the character prefix from a
449/// register name so that only the number is left. Used by for linux asm.
Benjamin Krameraef5bd02010-11-25 16:42:51 +0000450static const char *stripRegisterPrefix(const char *RegName) {
Nemanja Ivanovic11049f82016-10-04 06:59:23 +0000451 if (FullRegNames || ShowVSRNumsAsVR)
Hal Finkelc6a24392013-11-11 14:58:40 +0000452 return RegName;
453
Chris Lattner7a5c57e2010-11-14 20:02:39 +0000454 switch (RegName[0]) {
455 case 'r':
456 case 'f':
Hal Finkelc93a9a22015-02-25 01:06:45 +0000457 case 'q': // for QPX
Hal Finkel27774d92014-03-13 07:58:58 +0000458 case 'v':
459 if (RegName[1] == 's')
460 return RegName + 2;
461 return RegName + 1;
Chris Lattner7a5c57e2010-11-14 20:02:39 +0000462 case 'c': if (RegName[1] == 'r') return RegName + 2;
463 }
464
465 return RegName;
466}
467
468void PPCInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
469 raw_ostream &O) {
470 const MCOperand &Op = MI->getOperand(OpNo);
471 if (Op.isReg()) {
Nemanja Ivanovic11049f82016-10-04 06:59:23 +0000472 unsigned Reg = Op.getReg();
473
474 // There are VSX instructions that use VSX register numbering (vs0 - vs63)
475 // as well as those that use VMX register numbering (v0 - v31 which
476 // correspond to vs32 - vs63). If we have an instruction that uses VSX
477 // numbering, we need to convert the VMX registers to VSX registers.
478 // Namely, we print 32-63 when the instruction operates on one of the
479 // VMX registers.
480 // (Please synchronize with PPCAsmPrinter::printOperand)
481 if ((MII.get(MI->getOpcode()).TSFlags & PPCII::UseVSXReg) &&
482 !ShowVSRNumsAsVR) {
483 if (PPCInstrInfo::isVRRegister(Reg))
484 Reg = PPC::VSX32 + (Reg - PPC::V0);
485 else if (PPCInstrInfo::isVFRegister(Reg))
486 Reg = PPC::VSX32 + (Reg - PPC::VF0);
Nemanja Ivanovic6e7879c2016-09-22 09:52:19 +0000487 }
Nemanja Ivanovic11049f82016-10-04 06:59:23 +0000488
489 const char *RegName = getRegisterName(Reg);
Chris Lattner7a5c57e2010-11-14 20:02:39 +0000490 // The linux and AIX assembler does not take register prefixes.
491 if (!isDarwinSyntax())
492 RegName = stripRegisterPrefix(RegName);
493
494 O << RegName;
495 return;
496 }
497
498 if (Op.isImm()) {
499 O << Op.getImm();
500 return;
501 }
502
503 assert(Op.isExpr() && "unknown operand kind in printOperand");
Matt Arsenault8b643552015-06-09 00:31:39 +0000504 Op.getExpr()->print(O, &MAI);
Chris Lattner7a5c57e2010-11-14 20:02:39 +0000505}
Chris Lattnercfb62872010-11-14 21:54:34 +0000506