blob: 34a76b27ea5295b61e044c51eeffb91b01d60f5e [file] [log] [blame]
Chris Lattnerfd603822009-10-19 19:56:26 +00001//===-- ARMInstPrinter.cpp - Convert ARM MCInst to assembly syntax --------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This class prints an ARM MCInst to a .s file.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "asm-printer"
15#include "ARMInstPrinter.h"
Evan Chengbe740292011-07-23 00:00:19 +000016#include "MCTargetDesc/ARMBaseInfo.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000017#include "MCTargetDesc/ARMAddressingModes.h"
Chris Lattnerfd603822009-10-19 19:56:26 +000018#include "llvm/MC/MCInst.h"
Chris Lattner61d35c22009-10-19 21:21:39 +000019#include "llvm/MC/MCAsmInfo.h"
Chris Lattner6f997762009-10-19 21:53:00 +000020#include "llvm/MC/MCExpr.h"
Craig Topper7c0b3c12012-04-02 07:01:04 +000021#include "llvm/MC/MCInstrInfo.h"
Jim Grosbach28f08c92012-03-05 19:33:30 +000022#include "llvm/MC/MCRegisterInfo.h"
Chris Lattner6f997762009-10-19 21:53:00 +000023#include "llvm/Support/raw_ostream.h"
Chris Lattnerfd603822009-10-19 19:56:26 +000024using namespace llvm;
25
Chris Lattnerfd603822009-10-19 19:56:26 +000026#include "ARMGenAsmWriter.inc"
Chris Lattnerfd603822009-10-19 19:56:26 +000027
Owen Anderson3dac0be2011-08-11 18:41:59 +000028/// translateShiftImm - Convert shift immediate from 0-31 to 1-32 for printing.
29///
Jim Grosbach01208d52011-10-12 16:36:01 +000030/// getSORegOffset returns an integer from 0-31, representing '32' as 0.
Owen Anderson3dac0be2011-08-11 18:41:59 +000031static unsigned translateShiftImm(unsigned imm) {
32 if (imm == 0)
33 return 32;
34 return imm;
35}
36
James Molloyb9505852011-09-07 17:24:38 +000037
38ARMInstPrinter::ARMInstPrinter(const MCAsmInfo &MAI,
Craig Topper17463b32012-04-02 06:09:36 +000039 const MCInstrInfo &MII,
Jim Grosbachc6449b62012-03-05 19:33:20 +000040 const MCRegisterInfo &MRI,
James Molloyb9505852011-09-07 17:24:38 +000041 const MCSubtargetInfo &STI) :
Craig Topper17463b32012-04-02 06:09:36 +000042 MCInstPrinter(MAI, MII, MRI) {
James Molloyb9505852011-09-07 17:24:38 +000043 // Initialize the set of available features.
44 setAvailableFeatures(STI.getFeatureBits());
45}
46
Rafael Espindolacde4ce42011-06-02 02:34:55 +000047void ARMInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
48 OS << getRegisterName(RegNo);
Anton Korobeynikov57caad72011-03-05 18:43:32 +000049}
Chris Lattner6274ec42010-10-28 21:37:33 +000050
Owen Anderson98c5dda2011-09-15 23:38:46 +000051void ARMInstPrinter::printInst(const MCInst *MI, raw_ostream &O,
52 StringRef Annot) {
Bill Wendling04863d02010-11-13 10:40:19 +000053 unsigned Opcode = MI->getOpcode();
54
Johnny Chen9e088762010-03-17 17:52:21 +000055 // Check for MOVs and print canonical forms, instead.
Owen Anderson152d4a42011-07-21 23:38:37 +000056 if (Opcode == ARM::MOVsr) {
Jim Grosbache6be85e2010-09-17 22:36:38 +000057 // FIXME: Thumb variants?
Johnny Chen9e088762010-03-17 17:52:21 +000058 const MCOperand &Dst = MI->getOperand(0);
59 const MCOperand &MO1 = MI->getOperand(1);
60 const MCOperand &MO2 = MI->getOperand(2);
61 const MCOperand &MO3 = MI->getOperand(3);
62
63 O << '\t' << ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(MO3.getImm()));
Chris Lattner35c33bd2010-04-04 04:47:45 +000064 printSBitModifierOperand(MI, 6, O);
65 printPredicateOperand(MI, 4, O);
Johnny Chen9e088762010-03-17 17:52:21 +000066
67 O << '\t' << getRegisterName(Dst.getReg())
68 << ", " << getRegisterName(MO1.getReg());
69
Owen Anderson152d4a42011-07-21 23:38:37 +000070 O << ", " << getRegisterName(MO2.getReg());
71 assert(ARM_AM::getSORegOffset(MO3.getImm()) == 0);
Owen Anderson519020a2011-09-21 17:58:45 +000072 printAnnotation(O, Annot);
Johnny Chen9e088762010-03-17 17:52:21 +000073 return;
74 }
75
Owen Anderson152d4a42011-07-21 23:38:37 +000076 if (Opcode == ARM::MOVsi) {
77 // FIXME: Thumb variants?
78 const MCOperand &Dst = MI->getOperand(0);
79 const MCOperand &MO1 = MI->getOperand(1);
80 const MCOperand &MO2 = MI->getOperand(2);
81
82 O << '\t' << ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(MO2.getImm()));
83 printSBitModifierOperand(MI, 5, O);
84 printPredicateOperand(MI, 3, O);
85
86 O << '\t' << getRegisterName(Dst.getReg())
87 << ", " << getRegisterName(MO1.getReg());
88
Owen Andersonede042d2011-09-15 18:36:29 +000089 if (ARM_AM::getSORegShOp(MO2.getImm()) == ARM_AM::rrx) {
Owen Anderson519020a2011-09-21 17:58:45 +000090 printAnnotation(O, Annot);
Owen Anderson152d4a42011-07-21 23:38:37 +000091 return;
Owen Andersonede042d2011-09-15 18:36:29 +000092 }
Owen Anderson152d4a42011-07-21 23:38:37 +000093
Owen Anderson3dac0be2011-08-11 18:41:59 +000094 O << ", #" << translateShiftImm(ARM_AM::getSORegOffset(MO2.getImm()));
Owen Anderson519020a2011-09-21 17:58:45 +000095 printAnnotation(O, Annot);
Owen Anderson152d4a42011-07-21 23:38:37 +000096 return;
97 }
98
99
Johnny Chen9e088762010-03-17 17:52:21 +0000100 // A8.6.123 PUSH
Bill Wendling73fe34a2010-11-16 01:16:36 +0000101 if ((Opcode == ARM::STMDB_UPD || Opcode == ARM::t2STMDB_UPD) &&
Owen Anderson81550dc2011-11-02 18:03:14 +0000102 MI->getOperand(0).getReg() == ARM::SP &&
103 MI->getNumOperands() > 5) {
104 // Should only print PUSH if there are at least two registers in the list.
Bill Wendling73fe34a2010-11-16 01:16:36 +0000105 O << '\t' << "push";
106 printPredicateOperand(MI, 2, O);
Jim Grosbach41ad0c42010-12-03 20:33:01 +0000107 if (Opcode == ARM::t2STMDB_UPD)
108 O << ".w";
Bill Wendling73fe34a2010-11-16 01:16:36 +0000109 O << '\t';
110 printRegisterList(MI, 4, O);
Owen Anderson519020a2011-09-21 17:58:45 +0000111 printAnnotation(O, Annot);
Bill Wendling73fe34a2010-11-16 01:16:36 +0000112 return;
Johnny Chen9e088762010-03-17 17:52:21 +0000113 }
Jim Grosbachf6713912011-08-11 18:07:11 +0000114 if (Opcode == ARM::STR_PRE_IMM && MI->getOperand(2).getReg() == ARM::SP &&
115 MI->getOperand(3).getImm() == -4) {
116 O << '\t' << "push";
117 printPredicateOperand(MI, 4, O);
118 O << "\t{" << getRegisterName(MI->getOperand(1).getReg()) << "}";
Owen Anderson519020a2011-09-21 17:58:45 +0000119 printAnnotation(O, Annot);
Jim Grosbachf6713912011-08-11 18:07:11 +0000120 return;
121 }
Johnny Chen9e088762010-03-17 17:52:21 +0000122
123 // A8.6.122 POP
Bill Wendling73fe34a2010-11-16 01:16:36 +0000124 if ((Opcode == ARM::LDMIA_UPD || Opcode == ARM::t2LDMIA_UPD) &&
Owen Anderson81550dc2011-11-02 18:03:14 +0000125 MI->getOperand(0).getReg() == ARM::SP &&
126 MI->getNumOperands() > 5) {
127 // Should only print POP if there are at least two registers in the list.
Bill Wendling73fe34a2010-11-16 01:16:36 +0000128 O << '\t' << "pop";
129 printPredicateOperand(MI, 2, O);
Jim Grosbach41ad0c42010-12-03 20:33:01 +0000130 if (Opcode == ARM::t2LDMIA_UPD)
131 O << ".w";
Bill Wendling73fe34a2010-11-16 01:16:36 +0000132 O << '\t';
133 printRegisterList(MI, 4, O);
Owen Anderson519020a2011-09-21 17:58:45 +0000134 printAnnotation(O, Annot);
Bill Wendling73fe34a2010-11-16 01:16:36 +0000135 return;
Johnny Chen9e088762010-03-17 17:52:21 +0000136 }
Jim Grosbachf8fce712011-08-11 17:35:48 +0000137 if (Opcode == ARM::LDR_POST_IMM && MI->getOperand(2).getReg() == ARM::SP &&
138 MI->getOperand(4).getImm() == 4) {
139 O << '\t' << "pop";
140 printPredicateOperand(MI, 5, O);
141 O << "\t{" << getRegisterName(MI->getOperand(0).getReg()) << "}";
Owen Anderson519020a2011-09-21 17:58:45 +0000142 printAnnotation(O, Annot);
Jim Grosbachf8fce712011-08-11 17:35:48 +0000143 return;
144 }
145
Johnny Chen9e088762010-03-17 17:52:21 +0000146
147 // A8.6.355 VPUSH
Bill Wendling73fe34a2010-11-16 01:16:36 +0000148 if ((Opcode == ARM::VSTMSDB_UPD || Opcode == ARM::VSTMDDB_UPD) &&
Johnny Chen9e088762010-03-17 17:52:21 +0000149 MI->getOperand(0).getReg() == ARM::SP) {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000150 O << '\t' << "vpush";
151 printPredicateOperand(MI, 2, O);
152 O << '\t';
153 printRegisterList(MI, 4, O);
Owen Anderson519020a2011-09-21 17:58:45 +0000154 printAnnotation(O, Annot);
Bill Wendling73fe34a2010-11-16 01:16:36 +0000155 return;
Johnny Chen9e088762010-03-17 17:52:21 +0000156 }
157
158 // A8.6.354 VPOP
Bill Wendling73fe34a2010-11-16 01:16:36 +0000159 if ((Opcode == ARM::VLDMSIA_UPD || Opcode == ARM::VLDMDIA_UPD) &&
Johnny Chen9e088762010-03-17 17:52:21 +0000160 MI->getOperand(0).getReg() == ARM::SP) {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000161 O << '\t' << "vpop";
162 printPredicateOperand(MI, 2, O);
163 O << '\t';
164 printRegisterList(MI, 4, O);
Owen Anderson519020a2011-09-21 17:58:45 +0000165 printAnnotation(O, Annot);
Bill Wendling73fe34a2010-11-16 01:16:36 +0000166 return;
Johnny Chen9e088762010-03-17 17:52:21 +0000167 }
168
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000169 if (Opcode == ARM::tLDMIA) {
Owen Anderson565a0362011-07-18 23:25:34 +0000170 bool Writeback = true;
171 unsigned BaseReg = MI->getOperand(0).getReg();
172 for (unsigned i = 3; i < MI->getNumOperands(); ++i) {
173 if (MI->getOperand(i).getReg() == BaseReg)
174 Writeback = false;
175 }
176
Jim Grosbachcefe4c92011-08-23 17:41:15 +0000177 O << "\tldm";
Owen Anderson565a0362011-07-18 23:25:34 +0000178
179 printPredicateOperand(MI, 1, O);
180 O << '\t' << getRegisterName(BaseReg);
181 if (Writeback) O << "!";
182 O << ", ";
183 printRegisterList(MI, 3, O);
Owen Anderson519020a2011-09-21 17:58:45 +0000184 printAnnotation(O, Annot);
Owen Anderson565a0362011-07-18 23:25:34 +0000185 return;
186 }
187
Jim Grosbach0780b632011-08-19 23:24:36 +0000188 // Thumb1 NOP
189 if (Opcode == ARM::tMOVr && MI->getOperand(0).getReg() == ARM::R8 &&
190 MI->getOperand(1).getReg() == ARM::R8) {
191 O << "\tnop";
Jim Grosbachdf9ce6b2011-08-24 20:06:14 +0000192 printPredicateOperand(MI, 2, O);
Owen Anderson519020a2011-09-21 17:58:45 +0000193 printAnnotation(O, Annot);
Jim Grosbach0780b632011-08-19 23:24:36 +0000194 return;
195 }
196
Chris Lattner35c33bd2010-04-04 04:47:45 +0000197 printInstruction(MI, O);
Owen Anderson519020a2011-09-21 17:58:45 +0000198 printAnnotation(O, Annot);
Bill Wendling04863d02010-11-13 10:40:19 +0000199}
Chris Lattnerfd603822009-10-19 19:56:26 +0000200
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000201void ARMInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
Jim Grosbach0a2287b2010-11-03 01:11:15 +0000202 raw_ostream &O) {
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000203 const MCOperand &Op = MI->getOperand(OpNo);
204 if (Op.isReg()) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000205 unsigned Reg = Op.getReg();
Jim Grosbach35636282010-10-06 21:22:32 +0000206 O << getRegisterName(Reg);
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000207 } else if (Op.isImm()) {
208 O << '#' << Op.getImm();
209 } else {
210 assert(Op.isExpr() && "unknown operand kind in printOperand");
Kevin Enderby9e5887b2011-10-04 22:44:48 +0000211 // If a symbolic branch target was added as a constant expression then print
Kevin Enderby6c226952012-04-13 18:46:37 +0000212 // that address in hex. And only print 32 unsigned bits for the address.
Kevin Enderby9e5887b2011-10-04 22:44:48 +0000213 const MCConstantExpr *BranchTarget = dyn_cast<MCConstantExpr>(Op.getExpr());
214 int64_t Address;
215 if (BranchTarget && BranchTarget->EvaluateAsAbsolute(Address)) {
216 O << "0x";
Kevin Enderby6c226952012-04-13 18:46:37 +0000217 O.write_hex((uint32_t)Address);
Kevin Enderby9e5887b2011-10-04 22:44:48 +0000218 }
219 else {
220 // Otherwise, just print the expression.
221 O << *Op.getExpr();
222 }
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000223 }
224}
Chris Lattner61d35c22009-10-19 21:21:39 +0000225
Owen Andersone1368722011-09-21 23:44:46 +0000226void ARMInstPrinter::printT2LdrLabelOperand(const MCInst *MI, unsigned OpNum,
227 raw_ostream &O) {
228 const MCOperand &MO1 = MI->getOperand(OpNum);
229 if (MO1.isExpr())
230 O << *MO1.getExpr();
231 else if (MO1.isImm())
232 O << "[pc, #" << MO1.getImm() << "]";
233 else
234 llvm_unreachable("Unknown LDR label operand?");
235}
236
Chris Lattner017d9472009-10-20 00:40:56 +0000237// so_reg is a 4-operand unit corresponding to register forms of the A5.1
238// "Addressing Mode 1 - Data-processing operands" forms. This includes:
239// REG 0 0 - e.g. R5
240// REG REG 0,SH_OPC - e.g. R5, ROR R3
241// REG 0 IMM,SH_OPC - e.g. R5, LSL #3
Owen Anderson152d4a42011-07-21 23:38:37 +0000242void ARMInstPrinter::printSORegRegOperand(const MCInst *MI, unsigned OpNum,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000243 raw_ostream &O) {
Chris Lattner017d9472009-10-20 00:40:56 +0000244 const MCOperand &MO1 = MI->getOperand(OpNum);
245 const MCOperand &MO2 = MI->getOperand(OpNum+1);
246 const MCOperand &MO3 = MI->getOperand(OpNum+2);
Jim Grosbach15d78982010-09-14 22:27:15 +0000247
Chris Lattner017d9472009-10-20 00:40:56 +0000248 O << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000249
Chris Lattner017d9472009-10-20 00:40:56 +0000250 // Print the shift opc.
Bob Wilson1d9125a2010-08-05 00:34:42 +0000251 ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO3.getImm());
252 O << ", " << ARM_AM::getShiftOpcStr(ShOpc);
Jim Grosbache8606dc2011-07-13 17:50:29 +0000253 if (ShOpc == ARM_AM::rrx)
254 return;
Jim Grosbach293a5f62011-10-21 16:56:40 +0000255
Owen Anderson152d4a42011-07-21 23:38:37 +0000256 O << ' ' << getRegisterName(MO2.getReg());
257 assert(ARM_AM::getSORegOffset(MO3.getImm()) == 0);
Chris Lattner017d9472009-10-20 00:40:56 +0000258}
Chris Lattner084f87d2009-10-19 21:57:05 +0000259
Owen Anderson152d4a42011-07-21 23:38:37 +0000260void ARMInstPrinter::printSORegImmOperand(const MCInst *MI, unsigned OpNum,
261 raw_ostream &O) {
262 const MCOperand &MO1 = MI->getOperand(OpNum);
263 const MCOperand &MO2 = MI->getOperand(OpNum+1);
264
265 O << getRegisterName(MO1.getReg());
266
267 // Print the shift opc.
268 ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO2.getImm());
269 O << ", " << ARM_AM::getShiftOpcStr(ShOpc);
270 if (ShOpc == ARM_AM::rrx)
271 return;
Owen Anderson3dac0be2011-08-11 18:41:59 +0000272 O << " #" << translateShiftImm(ARM_AM::getSORegOffset(MO2.getImm()));
Owen Anderson152d4a42011-07-21 23:38:37 +0000273}
274
275
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +0000276//===--------------------------------------------------------------------===//
277// Addressing Mode #2
278//===--------------------------------------------------------------------===//
279
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000280void ARMInstPrinter::printAM2PreOrOffsetIndexOp(const MCInst *MI, unsigned Op,
281 raw_ostream &O) {
Chris Lattner084f87d2009-10-19 21:57:05 +0000282 const MCOperand &MO1 = MI->getOperand(Op);
283 const MCOperand &MO2 = MI->getOperand(Op+1);
284 const MCOperand &MO3 = MI->getOperand(Op+2);
Jim Grosbach15d78982010-09-14 22:27:15 +0000285
Chris Lattner084f87d2009-10-19 21:57:05 +0000286 O << "[" << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000287
Chris Lattner084f87d2009-10-19 21:57:05 +0000288 if (!MO2.getReg()) {
Johnny Chen9e088762010-03-17 17:52:21 +0000289 if (ARM_AM::getAM2Offset(MO3.getImm())) // Don't print +0.
Chris Lattner084f87d2009-10-19 21:57:05 +0000290 O << ", #"
Johnny Chen9e088762010-03-17 17:52:21 +0000291 << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm()))
292 << ARM_AM::getAM2Offset(MO3.getImm());
Chris Lattner084f87d2009-10-19 21:57:05 +0000293 O << "]";
294 return;
295 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000296
Chris Lattner084f87d2009-10-19 21:57:05 +0000297 O << ", "
Johnny Chen9e088762010-03-17 17:52:21 +0000298 << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm()))
299 << getRegisterName(MO2.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000300
Chris Lattner084f87d2009-10-19 21:57:05 +0000301 if (unsigned ShImm = ARM_AM::getAM2Offset(MO3.getImm()))
302 O << ", "
303 << ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO3.getImm()))
304 << " #" << ShImm;
305 O << "]";
Jim Grosbach15d78982010-09-14 22:27:15 +0000306}
Chris Lattnere306d8d2009-10-19 22:09:23 +0000307
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000308void ARMInstPrinter::printAM2PostIndexOp(const MCInst *MI, unsigned Op,
309 raw_ostream &O) {
310 const MCOperand &MO1 = MI->getOperand(Op);
311 const MCOperand &MO2 = MI->getOperand(Op+1);
312 const MCOperand &MO3 = MI->getOperand(Op+2);
313
314 O << "[" << getRegisterName(MO1.getReg()) << "], ";
315
316 if (!MO2.getReg()) {
317 unsigned ImmOffs = ARM_AM::getAM2Offset(MO3.getImm());
318 O << '#'
319 << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm()))
320 << ImmOffs;
321 return;
322 }
323
324 O << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm()))
325 << getRegisterName(MO2.getReg());
326
327 if (unsigned ShImm = ARM_AM::getAM2Offset(MO3.getImm()))
328 O << ", "
329 << ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO3.getImm()))
330 << " #" << ShImm;
331}
332
Jim Grosbach7f739be2011-09-19 22:21:13 +0000333void ARMInstPrinter::printAddrModeTBB(const MCInst *MI, unsigned Op,
334 raw_ostream &O) {
335 const MCOperand &MO1 = MI->getOperand(Op);
336 const MCOperand &MO2 = MI->getOperand(Op+1);
337 O << "[" << getRegisterName(MO1.getReg()) << ", "
338 << getRegisterName(MO2.getReg()) << "]";
339}
340
341void ARMInstPrinter::printAddrModeTBH(const MCInst *MI, unsigned Op,
342 raw_ostream &O) {
343 const MCOperand &MO1 = MI->getOperand(Op);
344 const MCOperand &MO2 = MI->getOperand(Op+1);
345 O << "[" << getRegisterName(MO1.getReg()) << ", "
346 << getRegisterName(MO2.getReg()) << ", lsl #1]";
347}
348
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000349void ARMInstPrinter::printAddrMode2Operand(const MCInst *MI, unsigned Op,
350 raw_ostream &O) {
351 const MCOperand &MO1 = MI->getOperand(Op);
352
353 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
354 printOperand(MI, Op, O);
355 return;
356 }
357
358 const MCOperand &MO3 = MI->getOperand(Op+2);
359 unsigned IdxMode = ARM_AM::getAM2IdxMode(MO3.getImm());
360
361 if (IdxMode == ARMII::IndexModePost) {
362 printAM2PostIndexOp(MI, Op, O);
363 return;
364 }
365 printAM2PreOrOffsetIndexOp(MI, Op, O);
366}
367
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000368void ARMInstPrinter::printAddrMode2OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000369 unsigned OpNum,
370 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000371 const MCOperand &MO1 = MI->getOperand(OpNum);
372 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000373
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000374 if (!MO1.getReg()) {
375 unsigned ImmOffs = ARM_AM::getAM2Offset(MO2.getImm());
Johnny Chen9e088762010-03-17 17:52:21 +0000376 O << '#'
377 << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO2.getImm()))
378 << ImmOffs;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000379 return;
380 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000381
Johnny Chen9e088762010-03-17 17:52:21 +0000382 O << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO2.getImm()))
383 << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000384
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000385 if (unsigned ShImm = ARM_AM::getAM2Offset(MO2.getImm()))
386 O << ", "
387 << ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO2.getImm()))
388 << " #" << ShImm;
389}
390
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +0000391//===--------------------------------------------------------------------===//
392// Addressing Mode #3
393//===--------------------------------------------------------------------===//
394
395void ARMInstPrinter::printAM3PostIndexOp(const MCInst *MI, unsigned Op,
396 raw_ostream &O) {
397 const MCOperand &MO1 = MI->getOperand(Op);
398 const MCOperand &MO2 = MI->getOperand(Op+1);
399 const MCOperand &MO3 = MI->getOperand(Op+2);
400
401 O << "[" << getRegisterName(MO1.getReg()) << "], ";
402
403 if (MO2.getReg()) {
404 O << (char)ARM_AM::getAM3Op(MO3.getImm())
405 << getRegisterName(MO2.getReg());
406 return;
407 }
408
409 unsigned ImmOffs = ARM_AM::getAM3Offset(MO3.getImm());
410 O << '#'
411 << ARM_AM::getAddrOpcStr(ARM_AM::getAM3Op(MO3.getImm()))
412 << ImmOffs;
413}
414
415void ARMInstPrinter::printAM3PreOrOffsetIndexOp(const MCInst *MI, unsigned Op,
416 raw_ostream &O) {
417 const MCOperand &MO1 = MI->getOperand(Op);
418 const MCOperand &MO2 = MI->getOperand(Op+1);
419 const MCOperand &MO3 = MI->getOperand(Op+2);
Jim Grosbach15d78982010-09-14 22:27:15 +0000420
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000421 O << '[' << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000422
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000423 if (MO2.getReg()) {
Jim Grosbach7ce05792011-08-03 23:50:40 +0000424 O << ", " << getAddrOpcStr(ARM_AM::getAM3Op(MO3.getImm()))
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000425 << getRegisterName(MO2.getReg()) << ']';
426 return;
427 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000428
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000429 if (unsigned ImmOffs = ARM_AM::getAM3Offset(MO3.getImm()))
430 O << ", #"
Johnny Chen9e088762010-03-17 17:52:21 +0000431 << ARM_AM::getAddrOpcStr(ARM_AM::getAM3Op(MO3.getImm()))
432 << ImmOffs;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000433 O << ']';
434}
435
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +0000436void ARMInstPrinter::printAddrMode3Operand(const MCInst *MI, unsigned Op,
437 raw_ostream &O) {
Jim Grosbach2f196742011-12-19 23:06:24 +0000438 const MCOperand &MO1 = MI->getOperand(Op);
439 if (!MO1.isReg()) { // For label symbolic references.
440 printOperand(MI, Op, O);
441 return;
442 }
443
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +0000444 const MCOperand &MO3 = MI->getOperand(Op+2);
445 unsigned IdxMode = ARM_AM::getAM3IdxMode(MO3.getImm());
446
447 if (IdxMode == ARMII::IndexModePost) {
448 printAM3PostIndexOp(MI, Op, O);
449 return;
450 }
451 printAM3PreOrOffsetIndexOp(MI, Op, O);
452}
453
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000454void ARMInstPrinter::printAddrMode3OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000455 unsigned OpNum,
456 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000457 const MCOperand &MO1 = MI->getOperand(OpNum);
458 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000459
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000460 if (MO1.getReg()) {
Jim Grosbach7ce05792011-08-03 23:50:40 +0000461 O << getAddrOpcStr(ARM_AM::getAM3Op(MO2.getImm()))
462 << getRegisterName(MO1.getReg());
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000463 return;
464 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000465
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000466 unsigned ImmOffs = ARM_AM::getAM3Offset(MO2.getImm());
Johnny Chen9e088762010-03-17 17:52:21 +0000467 O << '#'
468 << ARM_AM::getAddrOpcStr(ARM_AM::getAM3Op(MO2.getImm()))
469 << ImmOffs;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000470}
471
Jim Grosbach7ce05792011-08-03 23:50:40 +0000472void ARMInstPrinter::printPostIdxImm8Operand(const MCInst *MI,
473 unsigned OpNum,
474 raw_ostream &O) {
475 const MCOperand &MO = MI->getOperand(OpNum);
476 unsigned Imm = MO.getImm();
477 O << '#' << ((Imm & 256) ? "" : "-") << (Imm & 0xff);
478}
479
Jim Grosbachca8c70b2011-08-05 15:48:21 +0000480void ARMInstPrinter::printPostIdxRegOperand(const MCInst *MI, unsigned OpNum,
481 raw_ostream &O) {
482 const MCOperand &MO1 = MI->getOperand(OpNum);
483 const MCOperand &MO2 = MI->getOperand(OpNum+1);
484
Jim Grosbach16578b52011-08-05 16:11:38 +0000485 O << (MO2.getImm() ? "" : "-") << getRegisterName(MO1.getReg());
Jim Grosbachca8c70b2011-08-05 15:48:21 +0000486}
487
Owen Anderson154c41d2011-08-04 18:24:14 +0000488void ARMInstPrinter::printPostIdxImm8s4Operand(const MCInst *MI,
489 unsigned OpNum,
490 raw_ostream &O) {
491 const MCOperand &MO = MI->getOperand(OpNum);
492 unsigned Imm = MO.getImm();
493 O << '#' << ((Imm & 256) ? "" : "-") << ((Imm & 0xff) << 2);
494}
495
496
Jim Grosbache6913602010-11-03 01:01:43 +0000497void ARMInstPrinter::printLdStmModeOperand(const MCInst *MI, unsigned OpNum,
Jim Grosbach0a2287b2010-11-03 01:11:15 +0000498 raw_ostream &O) {
Jim Grosbache6913602010-11-03 01:01:43 +0000499 ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MI->getOperand(OpNum)
500 .getImm());
501 O << ARM_AM::getAMSubModeStr(Mode);
Chris Lattnere306d8d2009-10-19 22:09:23 +0000502}
503
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000504void ARMInstPrinter::printAddrMode5Operand(const MCInst *MI, unsigned OpNum,
Jim Grosbach0a2287b2010-11-03 01:11:15 +0000505 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000506 const MCOperand &MO1 = MI->getOperand(OpNum);
507 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000508
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000509 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000510 printOperand(MI, OpNum, O);
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000511 return;
512 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000513
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000514 O << "[" << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000515
Owen Anderson0da10cf2011-08-29 19:36:44 +0000516 unsigned ImmOffs = ARM_AM::getAM5Offset(MO2.getImm());
517 unsigned Op = ARM_AM::getAM5Op(MO2.getImm());
518 if (ImmOffs || Op == ARM_AM::sub) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000519 O << ", #"
Johnny Chen9e088762010-03-17 17:52:21 +0000520 << ARM_AM::getAddrOpcStr(ARM_AM::getAM5Op(MO2.getImm()))
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000521 << ImmOffs * 4;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000522 }
523 O << "]";
524}
525
Chris Lattner35c33bd2010-04-04 04:47:45 +0000526void ARMInstPrinter::printAddrMode6Operand(const MCInst *MI, unsigned OpNum,
527 raw_ostream &O) {
Chris Lattner235e2f62009-10-20 06:22:33 +0000528 const MCOperand &MO1 = MI->getOperand(OpNum);
529 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000530
Bob Wilson226036e2010-03-20 22:13:40 +0000531 O << "[" << getRegisterName(MO1.getReg());
532 if (MO2.getImm()) {
533 // FIXME: Both darwin as and GNU as violate ARM docs here.
Bob Wilson273ff312010-07-14 23:54:43 +0000534 O << ", :" << (MO2.getImm() << 3);
Chris Lattner235e2f62009-10-20 06:22:33 +0000535 }
Bob Wilson226036e2010-03-20 22:13:40 +0000536 O << "]";
537}
538
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +0000539void ARMInstPrinter::printAddrMode7Operand(const MCInst *MI, unsigned OpNum,
540 raw_ostream &O) {
541 const MCOperand &MO1 = MI->getOperand(OpNum);
542 O << "[" << getRegisterName(MO1.getReg()) << "]";
543}
544
Bob Wilson226036e2010-03-20 22:13:40 +0000545void ARMInstPrinter::printAddrMode6OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000546 unsigned OpNum,
547 raw_ostream &O) {
Bob Wilson226036e2010-03-20 22:13:40 +0000548 const MCOperand &MO = MI->getOperand(OpNum);
549 if (MO.getReg() == 0)
550 O << "!";
551 else
552 O << ", " << getRegisterName(MO.getReg());
Chris Lattner235e2f62009-10-20 06:22:33 +0000553}
554
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000555void ARMInstPrinter::printBitfieldInvMaskImmOperand(const MCInst *MI,
556 unsigned OpNum,
557 raw_ostream &O) {
Chris Lattner235e2f62009-10-20 06:22:33 +0000558 const MCOperand &MO = MI->getOperand(OpNum);
559 uint32_t v = ~MO.getImm();
560 int32_t lsb = CountTrailingZeros_32(v);
561 int32_t width = (32 - CountLeadingZeros_32 (v)) - lsb;
562 assert(MO.isImm() && "Not a valid bf_inv_mask_imm value!");
563 O << '#' << lsb << ", #" << width;
564}
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000565
Johnny Chen1adc40c2010-08-12 20:46:17 +0000566void ARMInstPrinter::printMemBOption(const MCInst *MI, unsigned OpNum,
567 raw_ostream &O) {
568 unsigned val = MI->getOperand(OpNum).getImm();
569 O << ARM_MB::MemBOptToString(val);
570}
571
Bob Wilson22f5dc72010-08-16 18:27:34 +0000572void ARMInstPrinter::printShiftImmOperand(const MCInst *MI, unsigned OpNum,
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000573 raw_ostream &O) {
574 unsigned ShiftOp = MI->getOperand(OpNum).getImm();
Jim Grosbach580f4a92011-07-25 22:20:28 +0000575 bool isASR = (ShiftOp & (1 << 5)) != 0;
576 unsigned Amt = ShiftOp & 0x1f;
577 if (isASR)
578 O << ", asr #" << (Amt == 0 ? 32 : Amt);
579 else if (Amt)
580 O << ", lsl #" << Amt;
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000581}
582
Jim Grosbachdde038a2011-07-20 21:40:26 +0000583void ARMInstPrinter::printPKHLSLShiftImm(const MCInst *MI, unsigned OpNum,
584 raw_ostream &O) {
585 unsigned Imm = MI->getOperand(OpNum).getImm();
586 if (Imm == 0)
587 return;
588 assert(Imm > 0 && Imm < 32 && "Invalid PKH shift immediate value!");
589 O << ", lsl #" << Imm;
590}
591
592void ARMInstPrinter::printPKHASRShiftImm(const MCInst *MI, unsigned OpNum,
593 raw_ostream &O) {
594 unsigned Imm = MI->getOperand(OpNum).getImm();
595 // A shift amount of 32 is encoded as 0.
596 if (Imm == 0)
597 Imm = 32;
598 assert(Imm > 0 && Imm <= 32 && "Invalid PKH shift immediate value!");
599 O << ", asr #" << Imm;
600}
601
Chris Lattner35c33bd2010-04-04 04:47:45 +0000602void ARMInstPrinter::printRegisterList(const MCInst *MI, unsigned OpNum,
603 raw_ostream &O) {
Chris Lattnere306d8d2009-10-19 22:09:23 +0000604 O << "{";
Johnny Chen9e088762010-03-17 17:52:21 +0000605 for (unsigned i = OpNum, e = MI->getNumOperands(); i != e; ++i) {
606 if (i != OpNum) O << ", ";
Chris Lattnere306d8d2009-10-19 22:09:23 +0000607 O << getRegisterName(MI->getOperand(i).getReg());
608 }
609 O << "}";
610}
Chris Lattner4d152222009-10-19 22:23:04 +0000611
Jim Grosbachb3af5de2010-10-13 21:00:04 +0000612void ARMInstPrinter::printSetendOperand(const MCInst *MI, unsigned OpNum,
613 raw_ostream &O) {
614 const MCOperand &Op = MI->getOperand(OpNum);
615 if (Op.getImm())
616 O << "be";
617 else
618 O << "le";
619}
620
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000621void ARMInstPrinter::printCPSIMod(const MCInst *MI, unsigned OpNum,
622 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000623 const MCOperand &Op = MI->getOperand(OpNum);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000624 O << ARM_PROC::IModToString(Op.getImm());
625}
626
627void ARMInstPrinter::printCPSIFlag(const MCInst *MI, unsigned OpNum,
628 raw_ostream &O) {
629 const MCOperand &Op = MI->getOperand(OpNum);
630 unsigned IFlags = Op.getImm();
631 for (int i=2; i >= 0; --i)
632 if (IFlags & (1 << i))
633 O << ARM_PROC::IFlagsToString(1 << i);
Owen Anderson2dbb46a2011-10-05 17:16:40 +0000634
635 if (IFlags == 0)
636 O << "none";
Johnny Chen9e088762010-03-17 17:52:21 +0000637}
638
Chris Lattner35c33bd2010-04-04 04:47:45 +0000639void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum,
640 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000641 const MCOperand &Op = MI->getOperand(OpNum);
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000642 unsigned SpecRegRBit = Op.getImm() >> 4;
643 unsigned Mask = Op.getImm() & 0xf;
644
James Molloyacad68d2011-09-28 14:21:38 +0000645 if (getAvailableFeatures() & ARM::FeatureMClass) {
646 switch (Op.getImm()) {
Craig Topperbc219812012-02-07 02:50:20 +0000647 default: llvm_unreachable("Unexpected mask value!");
James Molloyacad68d2011-09-28 14:21:38 +0000648 case 0: O << "apsr"; return;
649 case 1: O << "iapsr"; return;
650 case 2: O << "eapsr"; return;
651 case 3: O << "xpsr"; return;
652 case 5: O << "ipsr"; return;
653 case 6: O << "epsr"; return;
654 case 7: O << "iepsr"; return;
655 case 8: O << "msp"; return;
656 case 9: O << "psp"; return;
657 case 16: O << "primask"; return;
658 case 17: O << "basepri"; return;
659 case 18: O << "basepri_max"; return;
660 case 19: O << "faultmask"; return;
661 case 20: O << "control"; return;
662 }
663 }
664
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000665 // As special cases, CPSR_f, CPSR_s and CPSR_fs prefer printing as
666 // APSR_nzcvq, APSR_g and APSRnzcvqg, respectively.
667 if (!SpecRegRBit && (Mask == 8 || Mask == 4 || Mask == 12)) {
668 O << "APSR_";
669 switch (Mask) {
Craig Topperbc219812012-02-07 02:50:20 +0000670 default: llvm_unreachable("Unexpected mask value!");
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000671 case 4: O << "g"; return;
672 case 8: O << "nzcvq"; return;
673 case 12: O << "nzcvqg"; return;
674 }
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000675 }
676
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000677 if (SpecRegRBit)
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000678 O << "SPSR";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000679 else
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000680 O << "CPSR";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000681
Johnny Chen9e088762010-03-17 17:52:21 +0000682 if (Mask) {
683 O << '_';
684 if (Mask & 8) O << 'f';
685 if (Mask & 4) O << 's';
686 if (Mask & 2) O << 'x';
687 if (Mask & 1) O << 'c';
688 }
689}
690
Chris Lattner35c33bd2010-04-04 04:47:45 +0000691void ARMInstPrinter::printPredicateOperand(const MCInst *MI, unsigned OpNum,
692 raw_ostream &O) {
Chris Lattner413ae252009-10-20 00:42:49 +0000693 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
Kevin Enderbyb0578512012-03-01 22:13:02 +0000694 // Handle the undefined 15 CC value here for printing so we don't abort().
695 if ((unsigned)CC == 15)
696 O << "<und>";
697 else if (CC != ARMCC::AL)
Chris Lattner413ae252009-10-20 00:42:49 +0000698 O << ARMCondCodeToString(CC);
699}
700
Jim Grosbach15d78982010-09-14 22:27:15 +0000701void ARMInstPrinter::printMandatoryPredicateOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000702 unsigned OpNum,
703 raw_ostream &O) {
Johnny Chen9d3acaa2010-03-02 17:57:15 +0000704 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
705 O << ARMCondCodeToString(CC);
706}
707
Chris Lattner35c33bd2010-04-04 04:47:45 +0000708void ARMInstPrinter::printSBitModifierOperand(const MCInst *MI, unsigned OpNum,
709 raw_ostream &O) {
Daniel Dunbara7cc6522009-10-20 22:10:05 +0000710 if (MI->getOperand(OpNum).getReg()) {
711 assert(MI->getOperand(OpNum).getReg() == ARM::CPSR &&
712 "Expect ARM CPSR register!");
Chris Lattner233917c2009-10-20 00:46:11 +0000713 O << 's';
714 }
715}
716
Chris Lattner35c33bd2010-04-04 04:47:45 +0000717void ARMInstPrinter::printNoHashImmediate(const MCInst *MI, unsigned OpNum,
718 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000719 O << MI->getOperand(OpNum).getImm();
720}
721
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000722void ARMInstPrinter::printPImmediate(const MCInst *MI, unsigned OpNum,
Jim Grosbachbc9c8022011-10-12 16:34:37 +0000723 raw_ostream &O) {
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000724 O << "p" << MI->getOperand(OpNum).getImm();
725}
726
727void ARMInstPrinter::printCImmediate(const MCInst *MI, unsigned OpNum,
Jim Grosbachbc9c8022011-10-12 16:34:37 +0000728 raw_ostream &O) {
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000729 O << "c" << MI->getOperand(OpNum).getImm();
730}
731
Jim Grosbach9b8f2a02011-10-12 17:34:41 +0000732void ARMInstPrinter::printCoprocOptionImm(const MCInst *MI, unsigned OpNum,
733 raw_ostream &O) {
734 O << "{" << MI->getOperand(OpNum).getImm() << "}";
735}
736
Chris Lattner35c33bd2010-04-04 04:47:45 +0000737void ARMInstPrinter::printPCLabel(const MCInst *MI, unsigned OpNum,
738 raw_ostream &O) {
Jim Grosbachd30cfde2010-09-18 00:04:53 +0000739 llvm_unreachable("Unhandled PC-relative pseudo-instruction!");
Chris Lattner4d152222009-10-19 22:23:04 +0000740}
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000741
Chris Lattner35c33bd2010-04-04 04:47:45 +0000742void ARMInstPrinter::printThumbS4ImmOperand(const MCInst *MI, unsigned OpNum,
743 raw_ostream &O) {
Jim Grosbach70939ee2011-08-17 21:51:27 +0000744 O << "#" << MI->getOperand(OpNum).getImm() * 4;
745}
746
747void ARMInstPrinter::printThumbSRImm(const MCInst *MI, unsigned OpNum,
748 raw_ostream &O) {
749 unsigned Imm = MI->getOperand(OpNum).getImm();
750 O << "#" << (Imm == 0 ? 32 : Imm);
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000751}
Johnny Chen9e088762010-03-17 17:52:21 +0000752
Chris Lattner35c33bd2010-04-04 04:47:45 +0000753void ARMInstPrinter::printThumbITMask(const MCInst *MI, unsigned OpNum,
754 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000755 // (3 - the number of trailing zeros) is the number of then / else.
756 unsigned Mask = MI->getOperand(OpNum).getImm();
Richard Barton4d2f0772012-04-27 08:42:59 +0000757 unsigned Firstcond = MI->getOperand(OpNum-1).getImm();
758 unsigned CondBit0 = Firstcond & 1;
Johnny Chen9e088762010-03-17 17:52:21 +0000759 unsigned NumTZ = CountTrailingZeros_32(Mask);
760 assert(NumTZ <= 3 && "Invalid IT mask!");
761 for (unsigned Pos = 3, e = NumTZ; Pos > e; --Pos) {
762 bool T = ((Mask >> Pos) & 1) == CondBit0;
763 if (T)
764 O << 't';
765 else
766 O << 'e';
767 }
768}
769
Chris Lattner35c33bd2010-04-04 04:47:45 +0000770void ARMInstPrinter::printThumbAddrModeRROperand(const MCInst *MI, unsigned Op,
771 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000772 const MCOperand &MO1 = MI->getOperand(Op);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000773 const MCOperand &MO2 = MI->getOperand(Op + 1);
Johnny Chen9e088762010-03-17 17:52:21 +0000774
775 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000776 printOperand(MI, Op, O);
Johnny Chen9e088762010-03-17 17:52:21 +0000777 return;
778 }
779
780 O << "[" << getRegisterName(MO1.getReg());
Bill Wendlingf4caf692010-12-14 03:36:38 +0000781 if (unsigned RegNum = MO2.getReg())
782 O << ", " << getRegisterName(RegNum);
783 O << "]";
784}
785
786void ARMInstPrinter::printThumbAddrModeImm5SOperand(const MCInst *MI,
787 unsigned Op,
788 raw_ostream &O,
789 unsigned Scale) {
790 const MCOperand &MO1 = MI->getOperand(Op);
791 const MCOperand &MO2 = MI->getOperand(Op + 1);
792
793 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
794 printOperand(MI, Op, O);
795 return;
796 }
797
798 O << "[" << getRegisterName(MO1.getReg());
799 if (unsigned ImmOffs = MO2.getImm())
Johnny Chen9e088762010-03-17 17:52:21 +0000800 O << ", #" << ImmOffs * Scale;
801 O << "]";
802}
803
Bill Wendlingf4caf692010-12-14 03:36:38 +0000804void ARMInstPrinter::printThumbAddrModeImm5S1Operand(const MCInst *MI,
805 unsigned Op,
806 raw_ostream &O) {
807 printThumbAddrModeImm5SOperand(MI, Op, O, 1);
Johnny Chen9e088762010-03-17 17:52:21 +0000808}
809
Bill Wendlingf4caf692010-12-14 03:36:38 +0000810void ARMInstPrinter::printThumbAddrModeImm5S2Operand(const MCInst *MI,
811 unsigned Op,
812 raw_ostream &O) {
813 printThumbAddrModeImm5SOperand(MI, Op, O, 2);
Johnny Chen9e088762010-03-17 17:52:21 +0000814}
815
Bill Wendlingf4caf692010-12-14 03:36:38 +0000816void ARMInstPrinter::printThumbAddrModeImm5S4Operand(const MCInst *MI,
817 unsigned Op,
818 raw_ostream &O) {
819 printThumbAddrModeImm5SOperand(MI, Op, O, 4);
Johnny Chen9e088762010-03-17 17:52:21 +0000820}
821
Chris Lattner35c33bd2010-04-04 04:47:45 +0000822void ARMInstPrinter::printThumbAddrModeSPOperand(const MCInst *MI, unsigned Op,
823 raw_ostream &O) {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000824 printThumbAddrModeImm5SOperand(MI, Op, O, 4);
Johnny Chen9e088762010-03-17 17:52:21 +0000825}
826
Johnny Chen9e088762010-03-17 17:52:21 +0000827// Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
828// register with shift forms.
829// REG 0 0 - e.g. R5
830// REG IMM, SH_OPC - e.g. R5, LSL #3
Chris Lattner35c33bd2010-04-04 04:47:45 +0000831void ARMInstPrinter::printT2SOOperand(const MCInst *MI, unsigned OpNum,
832 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000833 const MCOperand &MO1 = MI->getOperand(OpNum);
834 const MCOperand &MO2 = MI->getOperand(OpNum+1);
835
836 unsigned Reg = MO1.getReg();
837 O << getRegisterName(Reg);
838
839 // Print the shift opc.
Johnny Chen9e088762010-03-17 17:52:21 +0000840 assert(MO2.isImm() && "Not a valid t2_so_reg value!");
Bob Wilson1d9125a2010-08-05 00:34:42 +0000841 ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO2.getImm());
842 O << ", " << ARM_AM::getShiftOpcStr(ShOpc);
843 if (ShOpc != ARM_AM::rrx)
Owen Anderson3dac0be2011-08-11 18:41:59 +0000844 O << " #" << translateShiftImm(ARM_AM::getSORegOffset(MO2.getImm()));
Johnny Chen9e088762010-03-17 17:52:21 +0000845}
846
Jim Grosbach458f2dc2010-10-25 20:00:01 +0000847void ARMInstPrinter::printAddrModeImm12Operand(const MCInst *MI, unsigned OpNum,
848 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000849 const MCOperand &MO1 = MI->getOperand(OpNum);
850 const MCOperand &MO2 = MI->getOperand(OpNum+1);
851
Jim Grosbach3e556122010-10-26 22:37:02 +0000852 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
853 printOperand(MI, OpNum, O);
854 return;
855 }
856
Johnny Chen9e088762010-03-17 17:52:21 +0000857 O << "[" << getRegisterName(MO1.getReg());
858
Jim Grosbach77aee8e2010-10-27 01:19:41 +0000859 int32_t OffImm = (int32_t)MO2.getImm();
Jim Grosbachab682a22010-10-28 18:34:10 +0000860 bool isSub = OffImm < 0;
861 // Special value for #-0. All others are normal.
862 if (OffImm == INT32_MIN)
863 OffImm = 0;
864 if (isSub)
Jim Grosbach77aee8e2010-10-27 01:19:41 +0000865 O << ", #-" << -OffImm;
866 else if (OffImm > 0)
Johnny Chen9e088762010-03-17 17:52:21 +0000867 O << ", #" << OffImm;
868 O << "]";
869}
870
871void ARMInstPrinter::printT2AddrModeImm8Operand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000872 unsigned OpNum,
873 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000874 const MCOperand &MO1 = MI->getOperand(OpNum);
875 const MCOperand &MO2 = MI->getOperand(OpNum+1);
876
877 O << "[" << getRegisterName(MO1.getReg());
878
879 int32_t OffImm = (int32_t)MO2.getImm();
880 // Don't print +0.
Owen Anderson705b48f2011-09-16 21:08:33 +0000881 if (OffImm == INT32_MIN)
882 O << ", #-0";
883 else if (OffImm < 0)
Johnny Chen9e088762010-03-17 17:52:21 +0000884 O << ", #-" << -OffImm;
885 else if (OffImm > 0)
886 O << ", #" << OffImm;
887 O << "]";
888}
889
890void ARMInstPrinter::printT2AddrModeImm8s4Operand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000891 unsigned OpNum,
892 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000893 const MCOperand &MO1 = MI->getOperand(OpNum);
894 const MCOperand &MO2 = MI->getOperand(OpNum+1);
895
Jim Grosbach2f196742011-12-19 23:06:24 +0000896 if (!MO1.isReg()) { // For label symbolic references.
897 printOperand(MI, OpNum, O);
898 return;
899 }
900
Johnny Chen9e088762010-03-17 17:52:21 +0000901 O << "[" << getRegisterName(MO1.getReg());
902
903 int32_t OffImm = (int32_t)MO2.getImm() / 4;
904 // Don't print +0.
905 if (OffImm < 0)
906 O << ", #-" << -OffImm * 4;
907 else if (OffImm > 0)
908 O << ", #" << OffImm * 4;
909 O << "]";
910}
911
Jim Grosbachb6aed502011-09-09 18:37:27 +0000912void ARMInstPrinter::printT2AddrModeImm0_1020s4Operand(const MCInst *MI,
913 unsigned OpNum,
914 raw_ostream &O) {
915 const MCOperand &MO1 = MI->getOperand(OpNum);
916 const MCOperand &MO2 = MI->getOperand(OpNum+1);
917
918 O << "[" << getRegisterName(MO1.getReg());
919 if (MO2.getImm())
920 O << ", #" << MO2.getImm() * 4;
921 O << "]";
922}
923
Johnny Chen9e088762010-03-17 17:52:21 +0000924void ARMInstPrinter::printT2AddrModeImm8OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000925 unsigned OpNum,
926 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000927 const MCOperand &MO1 = MI->getOperand(OpNum);
928 int32_t OffImm = (int32_t)MO1.getImm();
929 // Don't print +0.
930 if (OffImm < 0)
Owen Anderson0781c1f2011-09-23 21:26:40 +0000931 O << ", #-" << -OffImm;
932 else
933 O << ", #" << OffImm;
Johnny Chen9e088762010-03-17 17:52:21 +0000934}
935
936void ARMInstPrinter::printT2AddrModeImm8s4OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000937 unsigned OpNum,
938 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000939 const MCOperand &MO1 = MI->getOperand(OpNum);
940 int32_t OffImm = (int32_t)MO1.getImm() / 4;
941 // Don't print +0.
Owen Anderson7782a582011-09-13 20:46:26 +0000942 if (OffImm != 0) {
943 O << ", ";
944 if (OffImm < 0)
945 O << "#-" << -OffImm * 4;
946 else if (OffImm > 0)
947 O << "#" << OffImm * 4;
948 }
Johnny Chen9e088762010-03-17 17:52:21 +0000949}
950
951void ARMInstPrinter::printT2AddrModeSoRegOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000952 unsigned OpNum,
953 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000954 const MCOperand &MO1 = MI->getOperand(OpNum);
955 const MCOperand &MO2 = MI->getOperand(OpNum+1);
956 const MCOperand &MO3 = MI->getOperand(OpNum+2);
957
958 O << "[" << getRegisterName(MO1.getReg());
959
960 assert(MO2.getReg() && "Invalid so_reg load / store address!");
961 O << ", " << getRegisterName(MO2.getReg());
962
963 unsigned ShAmt = MO3.getImm();
964 if (ShAmt) {
965 assert(ShAmt <= 3 && "Not a valid Thumb2 addressing mode!");
966 O << ", lsl #" << ShAmt;
967 }
968 O << "]";
969}
970
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000971void ARMInstPrinter::printFPImmOperand(const MCInst *MI, unsigned OpNum,
972 raw_ostream &O) {
Bill Wendling8cb415e2011-01-26 20:57:43 +0000973 const MCOperand &MO = MI->getOperand(OpNum);
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000974 O << '#' << ARM_AM::getFPImmFloat(MO.getImm());
Johnny Chen9e088762010-03-17 17:52:21 +0000975}
976
Bob Wilson1a913ed2010-06-11 21:34:50 +0000977void ARMInstPrinter::printNEONModImmOperand(const MCInst *MI, unsigned OpNum,
978 raw_ostream &O) {
Bob Wilson6dce00c2010-07-13 04:44:34 +0000979 unsigned EncodedImm = MI->getOperand(OpNum).getImm();
980 unsigned EltBits;
981 uint64_t Val = ARM_AM::decodeNEONModImm(EncodedImm, EltBits);
Benjamin Kramer70be28a2011-11-07 21:00:59 +0000982 O << "#0x";
983 O.write_hex(Val);
Johnny Chenc7b65912010-04-16 22:40:20 +0000984}
Jim Grosbach4a5ffb32011-07-22 23:16:18 +0000985
Jim Grosbachf4943352011-07-25 23:09:14 +0000986void ARMInstPrinter::printImmPlusOneOperand(const MCInst *MI, unsigned OpNum,
987 raw_ostream &O) {
Jim Grosbach4a5ffb32011-07-22 23:16:18 +0000988 unsigned Imm = MI->getOperand(OpNum).getImm();
989 O << "#" << Imm + 1;
990}
Jim Grosbach85bfd3b2011-07-26 21:28:43 +0000991
992void ARMInstPrinter::printRotImmOperand(const MCInst *MI, unsigned OpNum,
993 raw_ostream &O) {
994 unsigned Imm = MI->getOperand(OpNum).getImm();
995 if (Imm == 0)
996 return;
Jim Grosbach45f39292011-07-26 21:44:37 +0000997 O << ", ror #";
Jim Grosbach85bfd3b2011-07-26 21:28:43 +0000998 switch (Imm) {
999 default: assert (0 && "illegal ror immediate!");
Jim Grosbach2f815c02011-08-17 23:23:07 +00001000 case 1: O << "8"; break;
1001 case 2: O << "16"; break;
1002 case 3: O << "24"; break;
Jim Grosbach85bfd3b2011-07-26 21:28:43 +00001003 }
1004}
Jim Grosbach460a9052011-10-07 23:56:00 +00001005
Jim Grosbach4050bc42011-12-22 22:19:05 +00001006void ARMInstPrinter::printFBits16(const MCInst *MI, unsigned OpNum,
1007 raw_ostream &O) {
1008 O << "#" << 16 - MI->getOperand(OpNum).getImm();
1009}
1010
1011void ARMInstPrinter::printFBits32(const MCInst *MI, unsigned OpNum,
1012 raw_ostream &O) {
1013 O << "#" << 32 - MI->getOperand(OpNum).getImm();
1014}
1015
Jim Grosbach460a9052011-10-07 23:56:00 +00001016void ARMInstPrinter::printVectorIndex(const MCInst *MI, unsigned OpNum,
1017 raw_ostream &O) {
1018 O << "[" << MI->getOperand(OpNum).getImm() << "]";
1019}
Jim Grosbach862019c2011-10-18 23:02:30 +00001020
1021void ARMInstPrinter::printVectorListOne(const MCInst *MI, unsigned OpNum,
1022 raw_ostream &O) {
1023 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << "}";
1024}
Jim Grosbach280dfad2011-10-21 18:54:25 +00001025
Jim Grosbachc0fc4502012-03-06 22:01:44 +00001026void ARMInstPrinter::printVectorListTwo(const MCInst *MI, unsigned OpNum,
Jim Grosbach28f08c92012-03-05 19:33:30 +00001027 raw_ostream &O) {
1028 unsigned Reg = MI->getOperand(OpNum).getReg();
1029 unsigned Reg0 = MRI.getSubReg(Reg, ARM::dsub_0);
1030 unsigned Reg1 = MRI.getSubReg(Reg, ARM::dsub_1);
1031 O << "{" << getRegisterName(Reg0) << ", " << getRegisterName(Reg1) << "}";
1032}
1033
Jim Grosbachc0fc4502012-03-06 22:01:44 +00001034void ARMInstPrinter::printVectorListTwoSpaced(const MCInst *MI,
1035 unsigned OpNum,
1036 raw_ostream &O) {
Jim Grosbachc3384c92012-03-05 21:43:40 +00001037 unsigned Reg = MI->getOperand(OpNum).getReg();
1038 unsigned Reg0 = MRI.getSubReg(Reg, ARM::dsub_0);
1039 unsigned Reg1 = MRI.getSubReg(Reg, ARM::dsub_2);
1040 O << "{" << getRegisterName(Reg0) << ", " << getRegisterName(Reg1) << "}";
1041}
1042
Jim Grosbachcdcfa282011-10-21 20:02:19 +00001043void ARMInstPrinter::printVectorListThree(const MCInst *MI, unsigned OpNum,
1044 raw_ostream &O) {
1045 // Normally, it's not safe to use register enum values directly with
1046 // addition to get the next register, but for VFP registers, the
1047 // sort order is guaranteed because they're all of the form D<n>.
1048 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << ", "
1049 << getRegisterName(MI->getOperand(OpNum).getReg() + 1) << ", "
1050 << getRegisterName(MI->getOperand(OpNum).getReg() + 2) << "}";
1051}
Jim Grosbachb6310312011-10-21 20:35:01 +00001052
1053void ARMInstPrinter::printVectorListFour(const MCInst *MI, unsigned OpNum,
1054 raw_ostream &O) {
1055 // Normally, it's not safe to use register enum values directly with
1056 // addition to get the next register, but for VFP registers, the
1057 // sort order is guaranteed because they're all of the form D<n>.
1058 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << ", "
1059 << getRegisterName(MI->getOperand(OpNum).getReg() + 1) << ", "
1060 << getRegisterName(MI->getOperand(OpNum).getReg() + 2) << ", "
1061 << getRegisterName(MI->getOperand(OpNum).getReg() + 3) << "}";
1062}
Jim Grosbach98b05a52011-11-30 01:09:44 +00001063
1064void ARMInstPrinter::printVectorListOneAllLanes(const MCInst *MI,
1065 unsigned OpNum,
1066 raw_ostream &O) {
1067 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << "[]}";
1068}
1069
Jim Grosbach13af2222011-11-30 18:21:25 +00001070void ARMInstPrinter::printVectorListTwoAllLanes(const MCInst *MI,
1071 unsigned OpNum,
1072 raw_ostream &O) {
Jim Grosbachc0fc4502012-03-06 22:01:44 +00001073 unsigned Reg = MI->getOperand(OpNum).getReg();
1074 unsigned Reg0 = MRI.getSubReg(Reg, ARM::dsub_0);
1075 unsigned Reg1 = MRI.getSubReg(Reg, ARM::dsub_1);
1076 O << "{" << getRegisterName(Reg0) << "[], " << getRegisterName(Reg1) << "[]}";
Jim Grosbach13af2222011-11-30 18:21:25 +00001077}
Jim Grosbache90ac9b2011-12-14 19:35:22 +00001078
Jim Grosbach5e59f7e2012-01-24 23:47:04 +00001079void ARMInstPrinter::printVectorListThreeAllLanes(const MCInst *MI,
1080 unsigned OpNum,
1081 raw_ostream &O) {
1082 // Normally, it's not safe to use register enum values directly with
1083 // addition to get the next register, but for VFP registers, the
1084 // sort order is guaranteed because they're all of the form D<n>.
1085 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << "[], "
1086 << getRegisterName(MI->getOperand(OpNum).getReg() + 1) << "[], "
1087 << getRegisterName(MI->getOperand(OpNum).getReg() + 2) << "[]}";
1088}
1089
Jim Grosbacha57a36a2012-01-25 00:01:08 +00001090void ARMInstPrinter::printVectorListFourAllLanes(const MCInst *MI,
1091 unsigned OpNum,
1092 raw_ostream &O) {
1093 // Normally, it's not safe to use register enum values directly with
1094 // addition to get the next register, but for VFP registers, the
1095 // sort order is guaranteed because they're all of the form D<n>.
1096 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << "[], "
1097 << getRegisterName(MI->getOperand(OpNum).getReg() + 1) << "[], "
1098 << getRegisterName(MI->getOperand(OpNum).getReg() + 2) << "[], "
1099 << getRegisterName(MI->getOperand(OpNum).getReg() + 3) << "[]}";
1100}
1101
Jim Grosbach3471d4f2011-12-21 00:38:54 +00001102void ARMInstPrinter::printVectorListTwoSpacedAllLanes(const MCInst *MI,
1103 unsigned OpNum,
1104 raw_ostream &O) {
Jim Grosbach4d0983a2012-03-06 23:10:38 +00001105 unsigned Reg = MI->getOperand(OpNum).getReg();
1106 unsigned Reg0 = MRI.getSubReg(Reg, ARM::dsub_0);
1107 unsigned Reg1 = MRI.getSubReg(Reg, ARM::dsub_2);
1108 O << "{" << getRegisterName(Reg0) << "[], " << getRegisterName(Reg1) << "[]}";
Jim Grosbach3471d4f2011-12-21 00:38:54 +00001109}
1110
Jim Grosbach5e59f7e2012-01-24 23:47:04 +00001111void ARMInstPrinter::printVectorListThreeSpacedAllLanes(const MCInst *MI,
1112 unsigned OpNum,
1113 raw_ostream &O) {
1114 // Normally, it's not safe to use register enum values directly with
1115 // addition to get the next register, but for VFP registers, the
1116 // sort order is guaranteed because they're all of the form D<n>.
1117 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << "[], "
1118 << getRegisterName(MI->getOperand(OpNum).getReg() + 2) << "[], "
Jim Grosbacha57a36a2012-01-25 00:01:08 +00001119 << getRegisterName(MI->getOperand(OpNum).getReg() + 4) << "[]}";
1120}
1121
1122void ARMInstPrinter::printVectorListFourSpacedAllLanes(const MCInst *MI,
1123 unsigned OpNum,
1124 raw_ostream &O) {
1125 // Normally, it's not safe to use register enum values directly with
1126 // addition to get the next register, but for VFP registers, the
1127 // sort order is guaranteed because they're all of the form D<n>.
1128 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << "[], "
1129 << getRegisterName(MI->getOperand(OpNum).getReg() + 2) << "[], "
1130 << getRegisterName(MI->getOperand(OpNum).getReg() + 4) << "[], "
1131 << getRegisterName(MI->getOperand(OpNum).getReg() + 6) << "[]}";
Jim Grosbach5e59f7e2012-01-24 23:47:04 +00001132}
1133
Jim Grosbachc387fc62012-01-23 23:20:46 +00001134void ARMInstPrinter::printVectorListThreeSpaced(const MCInst *MI,
1135 unsigned OpNum,
1136 raw_ostream &O) {
1137 // Normally, it's not safe to use register enum values directly with
1138 // addition to get the next register, but for VFP registers, the
1139 // sort order is guaranteed because they're all of the form D<n>.
1140 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << ", "
1141 << getRegisterName(MI->getOperand(OpNum).getReg() + 2) << ", "
1142 << getRegisterName(MI->getOperand(OpNum).getReg() + 4) << "}";
1143}
Jim Grosbach8abe7e32012-01-24 00:43:17 +00001144
1145void ARMInstPrinter::printVectorListFourSpaced(const MCInst *MI,
1146 unsigned OpNum,
1147 raw_ostream &O) {
1148 // Normally, it's not safe to use register enum values directly with
1149 // addition to get the next register, but for VFP registers, the
1150 // sort order is guaranteed because they're all of the form D<n>.
1151 O << "{" << getRegisterName(MI->getOperand(OpNum).getReg()) << ", "
1152 << getRegisterName(MI->getOperand(OpNum).getReg() + 2) << ", "
1153 << getRegisterName(MI->getOperand(OpNum).getReg() + 4) << ", "
1154 << getRegisterName(MI->getOperand(OpNum).getReg() + 6) << "}";
1155}