blob: 7972b27290f310f660cdfeda7650634237fd609d [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"
Johnny Chenc7b65912010-04-16 22:40:20 +000021#include "llvm/ADT/StringExtras.h"
Chris Lattner6f997762009-10-19 21:53:00 +000022#include "llvm/Support/raw_ostream.h"
Chris Lattnerfd603822009-10-19 19:56:26 +000023using namespace llvm;
24
Chris Lattner6274ec42010-10-28 21:37:33 +000025#define GET_INSTRUCTION_NAME
Chris Lattnerfd603822009-10-19 19:56:26 +000026#include "ARMGenAsmWriter.inc"
Chris Lattnerfd603822009-10-19 19:56:26 +000027
Chris Lattner6274ec42010-10-28 21:37:33 +000028StringRef ARMInstPrinter::getOpcodeName(unsigned Opcode) const {
29 return getInstructionName(Opcode);
30}
31
Rafael Espindolacde4ce42011-06-02 02:34:55 +000032void ARMInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
33 OS << getRegisterName(RegNo);
Anton Korobeynikov57caad72011-03-05 18:43:32 +000034}
Chris Lattner6274ec42010-10-28 21:37:33 +000035
Chris Lattnerd3740872010-04-04 05:04:31 +000036void ARMInstPrinter::printInst(const MCInst *MI, raw_ostream &O) {
Bill Wendling04863d02010-11-13 10:40:19 +000037 unsigned Opcode = MI->getOpcode();
38
Johnny Chen9e088762010-03-17 17:52:21 +000039 // Check for MOVs and print canonical forms, instead.
Owen Anderson152d4a42011-07-21 23:38:37 +000040 if (Opcode == ARM::MOVsr) {
Jim Grosbache6be85e2010-09-17 22:36:38 +000041 // FIXME: Thumb variants?
Johnny Chen9e088762010-03-17 17:52:21 +000042 const MCOperand &Dst = MI->getOperand(0);
43 const MCOperand &MO1 = MI->getOperand(1);
44 const MCOperand &MO2 = MI->getOperand(2);
45 const MCOperand &MO3 = MI->getOperand(3);
46
47 O << '\t' << ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(MO3.getImm()));
Chris Lattner35c33bd2010-04-04 04:47:45 +000048 printSBitModifierOperand(MI, 6, O);
49 printPredicateOperand(MI, 4, O);
Johnny Chen9e088762010-03-17 17:52:21 +000050
51 O << '\t' << getRegisterName(Dst.getReg())
52 << ", " << getRegisterName(MO1.getReg());
53
Owen Anderson152d4a42011-07-21 23:38:37 +000054 O << ", " << getRegisterName(MO2.getReg());
55 assert(ARM_AM::getSORegOffset(MO3.getImm()) == 0);
Johnny Chen9e088762010-03-17 17:52:21 +000056 return;
57 }
58
Owen Anderson152d4a42011-07-21 23:38:37 +000059 if (Opcode == ARM::MOVsi) {
60 // FIXME: Thumb variants?
61 const MCOperand &Dst = MI->getOperand(0);
62 const MCOperand &MO1 = MI->getOperand(1);
63 const MCOperand &MO2 = MI->getOperand(2);
64
65 O << '\t' << ARM_AM::getShiftOpcStr(ARM_AM::getSORegShOp(MO2.getImm()));
66 printSBitModifierOperand(MI, 5, O);
67 printPredicateOperand(MI, 3, O);
68
69 O << '\t' << getRegisterName(Dst.getReg())
70 << ", " << getRegisterName(MO1.getReg());
71
72 if (ARM_AM::getSORegShOp(MO2.getImm()) == ARM_AM::rrx)
73 return;
74
75 O << ", #" << ARM_AM::getSORegOffset(MO2.getImm());
76 return;
77 }
78
79
Johnny Chen9e088762010-03-17 17:52:21 +000080 // A8.6.123 PUSH
Bill Wendling73fe34a2010-11-16 01:16:36 +000081 if ((Opcode == ARM::STMDB_UPD || Opcode == ARM::t2STMDB_UPD) &&
Johnny Chen9e088762010-03-17 17:52:21 +000082 MI->getOperand(0).getReg() == ARM::SP) {
Bill Wendling73fe34a2010-11-16 01:16:36 +000083 O << '\t' << "push";
84 printPredicateOperand(MI, 2, O);
Jim Grosbach41ad0c42010-12-03 20:33:01 +000085 if (Opcode == ARM::t2STMDB_UPD)
86 O << ".w";
Bill Wendling73fe34a2010-11-16 01:16:36 +000087 O << '\t';
88 printRegisterList(MI, 4, O);
89 return;
Johnny Chen9e088762010-03-17 17:52:21 +000090 }
91
92 // A8.6.122 POP
Bill Wendling73fe34a2010-11-16 01:16:36 +000093 if ((Opcode == ARM::LDMIA_UPD || Opcode == ARM::t2LDMIA_UPD) &&
Johnny Chen9e088762010-03-17 17:52:21 +000094 MI->getOperand(0).getReg() == ARM::SP) {
Bill Wendling73fe34a2010-11-16 01:16:36 +000095 O << '\t' << "pop";
96 printPredicateOperand(MI, 2, O);
Jim Grosbach41ad0c42010-12-03 20:33:01 +000097 if (Opcode == ARM::t2LDMIA_UPD)
98 O << ".w";
Bill Wendling73fe34a2010-11-16 01:16:36 +000099 O << '\t';
100 printRegisterList(MI, 4, O);
101 return;
Johnny Chen9e088762010-03-17 17:52:21 +0000102 }
103
104 // A8.6.355 VPUSH
Bill Wendling73fe34a2010-11-16 01:16:36 +0000105 if ((Opcode == ARM::VSTMSDB_UPD || Opcode == ARM::VSTMDDB_UPD) &&
Johnny Chen9e088762010-03-17 17:52:21 +0000106 MI->getOperand(0).getReg() == ARM::SP) {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000107 O << '\t' << "vpush";
108 printPredicateOperand(MI, 2, O);
109 O << '\t';
110 printRegisterList(MI, 4, O);
111 return;
Johnny Chen9e088762010-03-17 17:52:21 +0000112 }
113
114 // A8.6.354 VPOP
Bill Wendling73fe34a2010-11-16 01:16:36 +0000115 if ((Opcode == ARM::VLDMSIA_UPD || Opcode == ARM::VLDMDIA_UPD) &&
Johnny Chen9e088762010-03-17 17:52:21 +0000116 MI->getOperand(0).getReg() == ARM::SP) {
Bill Wendling73fe34a2010-11-16 01:16:36 +0000117 O << '\t' << "vpop";
118 printPredicateOperand(MI, 2, O);
119 O << '\t';
120 printRegisterList(MI, 4, O);
121 return;
Johnny Chen9e088762010-03-17 17:52:21 +0000122 }
123
Owen Anderson565a0362011-07-18 23:25:34 +0000124 if (Opcode == ARM::tLDMIA || Opcode == ARM::tSTMIA) {
125 bool Writeback = true;
126 unsigned BaseReg = MI->getOperand(0).getReg();
127 for (unsigned i = 3; i < MI->getNumOperands(); ++i) {
128 if (MI->getOperand(i).getReg() == BaseReg)
129 Writeback = false;
130 }
131
132 if (Opcode == ARM::tLDMIA)
133 O << "\tldmia";
134 else if (Opcode == ARM::tSTMIA)
135 O << "\tstmia";
136 else
137 llvm_unreachable("Unknown opcode!");
138
139 printPredicateOperand(MI, 1, O);
140 O << '\t' << getRegisterName(BaseReg);
141 if (Writeback) O << "!";
142 O << ", ";
143 printRegisterList(MI, 3, O);
144 return;
145 }
146
Chris Lattner35c33bd2010-04-04 04:47:45 +0000147 printInstruction(MI, O);
Bill Wendling04863d02010-11-13 10:40:19 +0000148}
Chris Lattnerfd603822009-10-19 19:56:26 +0000149
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000150void ARMInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
Jim Grosbach0a2287b2010-11-03 01:11:15 +0000151 raw_ostream &O) {
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000152 const MCOperand &Op = MI->getOperand(OpNo);
153 if (Op.isReg()) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000154 unsigned Reg = Op.getReg();
Jim Grosbach35636282010-10-06 21:22:32 +0000155 O << getRegisterName(Reg);
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000156 } else if (Op.isImm()) {
157 O << '#' << Op.getImm();
158 } else {
159 assert(Op.isExpr() && "unknown operand kind in printOperand");
Chris Lattner8cb9a3b2010-01-18 00:37:40 +0000160 O << *Op.getExpr();
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000161 }
162}
Chris Lattner61d35c22009-10-19 21:21:39 +0000163
Chris Lattner017d9472009-10-20 00:40:56 +0000164// so_reg is a 4-operand unit corresponding to register forms of the A5.1
165// "Addressing Mode 1 - Data-processing operands" forms. This includes:
166// REG 0 0 - e.g. R5
167// REG REG 0,SH_OPC - e.g. R5, ROR R3
168// REG 0 IMM,SH_OPC - e.g. R5, LSL #3
Owen Anderson152d4a42011-07-21 23:38:37 +0000169void ARMInstPrinter::printSORegRegOperand(const MCInst *MI, unsigned OpNum,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000170 raw_ostream &O) {
Chris Lattner017d9472009-10-20 00:40:56 +0000171 const MCOperand &MO1 = MI->getOperand(OpNum);
172 const MCOperand &MO2 = MI->getOperand(OpNum+1);
173 const MCOperand &MO3 = MI->getOperand(OpNum+2);
Jim Grosbach15d78982010-09-14 22:27:15 +0000174
Chris Lattner017d9472009-10-20 00:40:56 +0000175 O << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000176
Chris Lattner017d9472009-10-20 00:40:56 +0000177 // Print the shift opc.
Bob Wilson1d9125a2010-08-05 00:34:42 +0000178 ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO3.getImm());
179 O << ", " << ARM_AM::getShiftOpcStr(ShOpc);
Jim Grosbache8606dc2011-07-13 17:50:29 +0000180 if (ShOpc == ARM_AM::rrx)
181 return;
Owen Anderson152d4a42011-07-21 23:38:37 +0000182
183 O << ' ' << getRegisterName(MO2.getReg());
184 assert(ARM_AM::getSORegOffset(MO3.getImm()) == 0);
Chris Lattner017d9472009-10-20 00:40:56 +0000185}
Chris Lattner084f87d2009-10-19 21:57:05 +0000186
Owen Anderson152d4a42011-07-21 23:38:37 +0000187void ARMInstPrinter::printSORegImmOperand(const MCInst *MI, unsigned OpNum,
188 raw_ostream &O) {
189 const MCOperand &MO1 = MI->getOperand(OpNum);
190 const MCOperand &MO2 = MI->getOperand(OpNum+1);
191
192 O << getRegisterName(MO1.getReg());
193
194 // Print the shift opc.
195 ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO2.getImm());
196 O << ", " << ARM_AM::getShiftOpcStr(ShOpc);
197 if (ShOpc == ARM_AM::rrx)
198 return;
199 O << " #" << ARM_AM::getSORegOffset(MO2.getImm());
200}
201
202
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +0000203//===--------------------------------------------------------------------===//
204// Addressing Mode #2
205//===--------------------------------------------------------------------===//
206
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000207void ARMInstPrinter::printAM2PreOrOffsetIndexOp(const MCInst *MI, unsigned Op,
208 raw_ostream &O) {
Chris Lattner084f87d2009-10-19 21:57:05 +0000209 const MCOperand &MO1 = MI->getOperand(Op);
210 const MCOperand &MO2 = MI->getOperand(Op+1);
211 const MCOperand &MO3 = MI->getOperand(Op+2);
Jim Grosbach15d78982010-09-14 22:27:15 +0000212
Chris Lattner084f87d2009-10-19 21:57:05 +0000213 O << "[" << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000214
Chris Lattner084f87d2009-10-19 21:57:05 +0000215 if (!MO2.getReg()) {
Johnny Chen9e088762010-03-17 17:52:21 +0000216 if (ARM_AM::getAM2Offset(MO3.getImm())) // Don't print +0.
Chris Lattner084f87d2009-10-19 21:57:05 +0000217 O << ", #"
Johnny Chen9e088762010-03-17 17:52:21 +0000218 << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm()))
219 << ARM_AM::getAM2Offset(MO3.getImm());
Chris Lattner084f87d2009-10-19 21:57:05 +0000220 O << "]";
221 return;
222 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000223
Chris Lattner084f87d2009-10-19 21:57:05 +0000224 O << ", "
Johnny Chen9e088762010-03-17 17:52:21 +0000225 << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm()))
226 << getRegisterName(MO2.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000227
Chris Lattner084f87d2009-10-19 21:57:05 +0000228 if (unsigned ShImm = ARM_AM::getAM2Offset(MO3.getImm()))
229 O << ", "
230 << ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO3.getImm()))
231 << " #" << ShImm;
232 O << "]";
Jim Grosbach15d78982010-09-14 22:27:15 +0000233}
Chris Lattnere306d8d2009-10-19 22:09:23 +0000234
Bruno Cardoso Lopesae085542011-03-31 23:26:08 +0000235void ARMInstPrinter::printAM2PostIndexOp(const MCInst *MI, unsigned Op,
236 raw_ostream &O) {
237 const MCOperand &MO1 = MI->getOperand(Op);
238 const MCOperand &MO2 = MI->getOperand(Op+1);
239 const MCOperand &MO3 = MI->getOperand(Op+2);
240
241 O << "[" << getRegisterName(MO1.getReg()) << "], ";
242
243 if (!MO2.getReg()) {
244 unsigned ImmOffs = ARM_AM::getAM2Offset(MO3.getImm());
245 O << '#'
246 << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm()))
247 << ImmOffs;
248 return;
249 }
250
251 O << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO3.getImm()))
252 << getRegisterName(MO2.getReg());
253
254 if (unsigned ShImm = ARM_AM::getAM2Offset(MO3.getImm()))
255 O << ", "
256 << ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO3.getImm()))
257 << " #" << ShImm;
258}
259
260void ARMInstPrinter::printAddrMode2Operand(const MCInst *MI, unsigned Op,
261 raw_ostream &O) {
262 const MCOperand &MO1 = MI->getOperand(Op);
263
264 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
265 printOperand(MI, Op, O);
266 return;
267 }
268
269 const MCOperand &MO3 = MI->getOperand(Op+2);
270 unsigned IdxMode = ARM_AM::getAM2IdxMode(MO3.getImm());
271
272 if (IdxMode == ARMII::IndexModePost) {
273 printAM2PostIndexOp(MI, Op, O);
274 return;
275 }
276 printAM2PreOrOffsetIndexOp(MI, Op, O);
277}
278
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000279void ARMInstPrinter::printAddrMode2OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000280 unsigned OpNum,
281 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000282 const MCOperand &MO1 = MI->getOperand(OpNum);
283 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000284
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000285 if (!MO1.getReg()) {
286 unsigned ImmOffs = ARM_AM::getAM2Offset(MO2.getImm());
Johnny Chen9e088762010-03-17 17:52:21 +0000287 O << '#'
288 << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO2.getImm()))
289 << ImmOffs;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000290 return;
291 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000292
Johnny Chen9e088762010-03-17 17:52:21 +0000293 O << ARM_AM::getAddrOpcStr(ARM_AM::getAM2Op(MO2.getImm()))
294 << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000295
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000296 if (unsigned ShImm = ARM_AM::getAM2Offset(MO2.getImm()))
297 O << ", "
298 << ARM_AM::getShiftOpcStr(ARM_AM::getAM2ShiftOpc(MO2.getImm()))
299 << " #" << ShImm;
300}
301
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +0000302//===--------------------------------------------------------------------===//
303// Addressing Mode #3
304//===--------------------------------------------------------------------===//
305
306void ARMInstPrinter::printAM3PostIndexOp(const MCInst *MI, unsigned Op,
307 raw_ostream &O) {
308 const MCOperand &MO1 = MI->getOperand(Op);
309 const MCOperand &MO2 = MI->getOperand(Op+1);
310 const MCOperand &MO3 = MI->getOperand(Op+2);
311
312 O << "[" << getRegisterName(MO1.getReg()) << "], ";
313
314 if (MO2.getReg()) {
315 O << (char)ARM_AM::getAM3Op(MO3.getImm())
316 << getRegisterName(MO2.getReg());
317 return;
318 }
319
320 unsigned ImmOffs = ARM_AM::getAM3Offset(MO3.getImm());
321 O << '#'
322 << ARM_AM::getAddrOpcStr(ARM_AM::getAM3Op(MO3.getImm()))
323 << ImmOffs;
324}
325
326void ARMInstPrinter::printAM3PreOrOffsetIndexOp(const MCInst *MI, unsigned Op,
327 raw_ostream &O) {
328 const MCOperand &MO1 = MI->getOperand(Op);
329 const MCOperand &MO2 = MI->getOperand(Op+1);
330 const MCOperand &MO3 = MI->getOperand(Op+2);
Jim Grosbach15d78982010-09-14 22:27:15 +0000331
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000332 O << '[' << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000333
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000334 if (MO2.getReg()) {
Jim Grosbach7ce05792011-08-03 23:50:40 +0000335 O << ", " << getAddrOpcStr(ARM_AM::getAM3Op(MO3.getImm()))
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000336 << getRegisterName(MO2.getReg()) << ']';
337 return;
338 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000339
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000340 if (unsigned ImmOffs = ARM_AM::getAM3Offset(MO3.getImm()))
341 O << ", #"
Johnny Chen9e088762010-03-17 17:52:21 +0000342 << ARM_AM::getAddrOpcStr(ARM_AM::getAM3Op(MO3.getImm()))
343 << ImmOffs;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000344 O << ']';
345}
346
Bruno Cardoso Lopesac79e4c2011-04-04 17:18:19 +0000347void ARMInstPrinter::printAddrMode3Operand(const MCInst *MI, unsigned Op,
348 raw_ostream &O) {
349 const MCOperand &MO3 = MI->getOperand(Op+2);
350 unsigned IdxMode = ARM_AM::getAM3IdxMode(MO3.getImm());
351
352 if (IdxMode == ARMII::IndexModePost) {
353 printAM3PostIndexOp(MI, Op, O);
354 return;
355 }
356 printAM3PreOrOffsetIndexOp(MI, Op, O);
357}
358
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000359void ARMInstPrinter::printAddrMode3OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000360 unsigned OpNum,
361 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000362 const MCOperand &MO1 = MI->getOperand(OpNum);
363 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000364
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000365 if (MO1.getReg()) {
Jim Grosbach7ce05792011-08-03 23:50:40 +0000366 O << getAddrOpcStr(ARM_AM::getAM3Op(MO2.getImm()))
367 << getRegisterName(MO1.getReg());
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000368 return;
369 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000370
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000371 unsigned ImmOffs = ARM_AM::getAM3Offset(MO2.getImm());
Johnny Chen9e088762010-03-17 17:52:21 +0000372 O << '#'
373 << ARM_AM::getAddrOpcStr(ARM_AM::getAM3Op(MO2.getImm()))
374 << ImmOffs;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000375}
376
Jim Grosbach7ce05792011-08-03 23:50:40 +0000377void ARMInstPrinter::printPostIdxImm8Operand(const MCInst *MI,
378 unsigned OpNum,
379 raw_ostream &O) {
380 const MCOperand &MO = MI->getOperand(OpNum);
381 unsigned Imm = MO.getImm();
382 O << '#' << ((Imm & 256) ? "" : "-") << (Imm & 0xff);
383}
384
Jim Grosbachca8c70b2011-08-05 15:48:21 +0000385void ARMInstPrinter::printPostIdxRegOperand(const MCInst *MI, unsigned OpNum,
386 raw_ostream &O) {
387 const MCOperand &MO1 = MI->getOperand(OpNum);
388 const MCOperand &MO2 = MI->getOperand(OpNum+1);
389
390 O << getAddrOpcStr(ARM_AM::getAM3Op(MO2.getImm()))
391 << getRegisterName(MO1.getReg());
392}
393
Owen Anderson154c41d2011-08-04 18:24:14 +0000394void ARMInstPrinter::printPostIdxImm8s4Operand(const MCInst *MI,
395 unsigned OpNum,
396 raw_ostream &O) {
397 const MCOperand &MO = MI->getOperand(OpNum);
398 unsigned Imm = MO.getImm();
399 O << '#' << ((Imm & 256) ? "" : "-") << ((Imm & 0xff) << 2);
400}
401
402
Jim Grosbache6913602010-11-03 01:01:43 +0000403void ARMInstPrinter::printLdStmModeOperand(const MCInst *MI, unsigned OpNum,
Jim Grosbach0a2287b2010-11-03 01:11:15 +0000404 raw_ostream &O) {
Jim Grosbache6913602010-11-03 01:01:43 +0000405 ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MI->getOperand(OpNum)
406 .getImm());
407 O << ARM_AM::getAMSubModeStr(Mode);
Chris Lattnere306d8d2009-10-19 22:09:23 +0000408}
409
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000410void ARMInstPrinter::printAddrMode5Operand(const MCInst *MI, unsigned OpNum,
Jim Grosbach0a2287b2010-11-03 01:11:15 +0000411 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000412 const MCOperand &MO1 = MI->getOperand(OpNum);
413 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000414
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000415 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000416 printOperand(MI, OpNum, O);
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000417 return;
418 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000419
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000420 O << "[" << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000421
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000422 if (unsigned ImmOffs = ARM_AM::getAM5Offset(MO2.getImm())) {
423 O << ", #"
Johnny Chen9e088762010-03-17 17:52:21 +0000424 << ARM_AM::getAddrOpcStr(ARM_AM::getAM5Op(MO2.getImm()))
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000425 << ImmOffs * 4;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000426 }
427 O << "]";
428}
429
Chris Lattner35c33bd2010-04-04 04:47:45 +0000430void ARMInstPrinter::printAddrMode6Operand(const MCInst *MI, unsigned OpNum,
431 raw_ostream &O) {
Chris Lattner235e2f62009-10-20 06:22:33 +0000432 const MCOperand &MO1 = MI->getOperand(OpNum);
433 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000434
Bob Wilson226036e2010-03-20 22:13:40 +0000435 O << "[" << getRegisterName(MO1.getReg());
436 if (MO2.getImm()) {
437 // FIXME: Both darwin as and GNU as violate ARM docs here.
Bob Wilson273ff312010-07-14 23:54:43 +0000438 O << ", :" << (MO2.getImm() << 3);
Chris Lattner235e2f62009-10-20 06:22:33 +0000439 }
Bob Wilson226036e2010-03-20 22:13:40 +0000440 O << "]";
441}
442
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +0000443void ARMInstPrinter::printAddrMode7Operand(const MCInst *MI, unsigned OpNum,
444 raw_ostream &O) {
445 const MCOperand &MO1 = MI->getOperand(OpNum);
446 O << "[" << getRegisterName(MO1.getReg()) << "]";
447}
448
Bob Wilson226036e2010-03-20 22:13:40 +0000449void ARMInstPrinter::printAddrMode6OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000450 unsigned OpNum,
451 raw_ostream &O) {
Bob Wilson226036e2010-03-20 22:13:40 +0000452 const MCOperand &MO = MI->getOperand(OpNum);
453 if (MO.getReg() == 0)
454 O << "!";
455 else
456 O << ", " << getRegisterName(MO.getReg());
Chris Lattner235e2f62009-10-20 06:22:33 +0000457}
458
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000459void ARMInstPrinter::printBitfieldInvMaskImmOperand(const MCInst *MI,
460 unsigned OpNum,
461 raw_ostream &O) {
Chris Lattner235e2f62009-10-20 06:22:33 +0000462 const MCOperand &MO = MI->getOperand(OpNum);
463 uint32_t v = ~MO.getImm();
464 int32_t lsb = CountTrailingZeros_32(v);
465 int32_t width = (32 - CountLeadingZeros_32 (v)) - lsb;
466 assert(MO.isImm() && "Not a valid bf_inv_mask_imm value!");
467 O << '#' << lsb << ", #" << width;
468}
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000469
Johnny Chen1adc40c2010-08-12 20:46:17 +0000470void ARMInstPrinter::printMemBOption(const MCInst *MI, unsigned OpNum,
471 raw_ostream &O) {
472 unsigned val = MI->getOperand(OpNum).getImm();
473 O << ARM_MB::MemBOptToString(val);
474}
475
Bob Wilson22f5dc72010-08-16 18:27:34 +0000476void ARMInstPrinter::printShiftImmOperand(const MCInst *MI, unsigned OpNum,
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000477 raw_ostream &O) {
478 unsigned ShiftOp = MI->getOperand(OpNum).getImm();
Jim Grosbach580f4a92011-07-25 22:20:28 +0000479 bool isASR = (ShiftOp & (1 << 5)) != 0;
480 unsigned Amt = ShiftOp & 0x1f;
481 if (isASR)
482 O << ", asr #" << (Amt == 0 ? 32 : Amt);
483 else if (Amt)
484 O << ", lsl #" << Amt;
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000485}
486
Jim Grosbachdde038a2011-07-20 21:40:26 +0000487void ARMInstPrinter::printPKHLSLShiftImm(const MCInst *MI, unsigned OpNum,
488 raw_ostream &O) {
489 unsigned Imm = MI->getOperand(OpNum).getImm();
490 if (Imm == 0)
491 return;
492 assert(Imm > 0 && Imm < 32 && "Invalid PKH shift immediate value!");
493 O << ", lsl #" << Imm;
494}
495
496void ARMInstPrinter::printPKHASRShiftImm(const MCInst *MI, unsigned OpNum,
497 raw_ostream &O) {
498 unsigned Imm = MI->getOperand(OpNum).getImm();
499 // A shift amount of 32 is encoded as 0.
500 if (Imm == 0)
501 Imm = 32;
502 assert(Imm > 0 && Imm <= 32 && "Invalid PKH shift immediate value!");
503 O << ", asr #" << Imm;
504}
505
Chris Lattner35c33bd2010-04-04 04:47:45 +0000506void ARMInstPrinter::printRegisterList(const MCInst *MI, unsigned OpNum,
507 raw_ostream &O) {
Chris Lattnere306d8d2009-10-19 22:09:23 +0000508 O << "{";
Johnny Chen9e088762010-03-17 17:52:21 +0000509 for (unsigned i = OpNum, e = MI->getNumOperands(); i != e; ++i) {
510 if (i != OpNum) O << ", ";
Chris Lattnere306d8d2009-10-19 22:09:23 +0000511 O << getRegisterName(MI->getOperand(i).getReg());
512 }
513 O << "}";
514}
Chris Lattner4d152222009-10-19 22:23:04 +0000515
Jim Grosbachb3af5de2010-10-13 21:00:04 +0000516void ARMInstPrinter::printSetendOperand(const MCInst *MI, unsigned OpNum,
517 raw_ostream &O) {
518 const MCOperand &Op = MI->getOperand(OpNum);
519 if (Op.getImm())
520 O << "be";
521 else
522 O << "le";
523}
524
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000525void ARMInstPrinter::printCPSIMod(const MCInst *MI, unsigned OpNum,
526 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000527 const MCOperand &Op = MI->getOperand(OpNum);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000528 O << ARM_PROC::IModToString(Op.getImm());
529}
530
531void ARMInstPrinter::printCPSIFlag(const MCInst *MI, unsigned OpNum,
532 raw_ostream &O) {
533 const MCOperand &Op = MI->getOperand(OpNum);
534 unsigned IFlags = Op.getImm();
535 for (int i=2; i >= 0; --i)
536 if (IFlags & (1 << i))
537 O << ARM_PROC::IFlagsToString(1 << i);
Johnny Chen9e088762010-03-17 17:52:21 +0000538}
539
Chris Lattner35c33bd2010-04-04 04:47:45 +0000540void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum,
541 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000542 const MCOperand &Op = MI->getOperand(OpNum);
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000543 unsigned SpecRegRBit = Op.getImm() >> 4;
544 unsigned Mask = Op.getImm() & 0xf;
545
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000546 // As special cases, CPSR_f, CPSR_s and CPSR_fs prefer printing as
547 // APSR_nzcvq, APSR_g and APSRnzcvqg, respectively.
548 if (!SpecRegRBit && (Mask == 8 || Mask == 4 || Mask == 12)) {
549 O << "APSR_";
550 switch (Mask) {
551 default: assert(0);
552 case 4: O << "g"; return;
553 case 8: O << "nzcvq"; return;
554 case 12: O << "nzcvqg"; return;
555 }
556 llvm_unreachable("Unexpected mask value!");
557 }
558
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000559 if (SpecRegRBit)
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000560 O << "SPSR";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000561 else
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000562 O << "CPSR";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000563
Johnny Chen9e088762010-03-17 17:52:21 +0000564 if (Mask) {
565 O << '_';
566 if (Mask & 8) O << 'f';
567 if (Mask & 4) O << 's';
568 if (Mask & 2) O << 'x';
569 if (Mask & 1) O << 'c';
570 }
571}
572
Chris Lattner35c33bd2010-04-04 04:47:45 +0000573void ARMInstPrinter::printPredicateOperand(const MCInst *MI, unsigned OpNum,
574 raw_ostream &O) {
Chris Lattner413ae252009-10-20 00:42:49 +0000575 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
576 if (CC != ARMCC::AL)
577 O << ARMCondCodeToString(CC);
578}
579
Jim Grosbach15d78982010-09-14 22:27:15 +0000580void ARMInstPrinter::printMandatoryPredicateOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000581 unsigned OpNum,
582 raw_ostream &O) {
Johnny Chen9d3acaa2010-03-02 17:57:15 +0000583 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
584 O << ARMCondCodeToString(CC);
585}
586
Chris Lattner35c33bd2010-04-04 04:47:45 +0000587void ARMInstPrinter::printSBitModifierOperand(const MCInst *MI, unsigned OpNum,
588 raw_ostream &O) {
Daniel Dunbara7cc6522009-10-20 22:10:05 +0000589 if (MI->getOperand(OpNum).getReg()) {
590 assert(MI->getOperand(OpNum).getReg() == ARM::CPSR &&
591 "Expect ARM CPSR register!");
Chris Lattner233917c2009-10-20 00:46:11 +0000592 O << 's';
593 }
594}
595
Chris Lattner35c33bd2010-04-04 04:47:45 +0000596void ARMInstPrinter::printNoHashImmediate(const MCInst *MI, unsigned OpNum,
597 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000598 O << MI->getOperand(OpNum).getImm();
599}
600
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000601void ARMInstPrinter::printPImmediate(const MCInst *MI, unsigned OpNum,
602 raw_ostream &O) {
603 O << "p" << MI->getOperand(OpNum).getImm();
604}
605
606void ARMInstPrinter::printCImmediate(const MCInst *MI, unsigned OpNum,
607 raw_ostream &O) {
608 O << "c" << MI->getOperand(OpNum).getImm();
609}
610
Chris Lattner35c33bd2010-04-04 04:47:45 +0000611void ARMInstPrinter::printPCLabel(const MCInst *MI, unsigned OpNum,
612 raw_ostream &O) {
Jim Grosbachd30cfde2010-09-18 00:04:53 +0000613 llvm_unreachable("Unhandled PC-relative pseudo-instruction!");
Chris Lattner4d152222009-10-19 22:23:04 +0000614}
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000615
Chris Lattner35c33bd2010-04-04 04:47:45 +0000616void ARMInstPrinter::printThumbS4ImmOperand(const MCInst *MI, unsigned OpNum,
617 raw_ostream &O) {
Johnny Chen541ba7d2010-01-25 22:13:10 +0000618 O << "#" << MI->getOperand(OpNum).getImm() * 4;
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000619}
Johnny Chen9e088762010-03-17 17:52:21 +0000620
Chris Lattner35c33bd2010-04-04 04:47:45 +0000621void ARMInstPrinter::printThumbITMask(const MCInst *MI, unsigned OpNum,
622 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000623 // (3 - the number of trailing zeros) is the number of then / else.
624 unsigned Mask = MI->getOperand(OpNum).getImm();
625 unsigned CondBit0 = Mask >> 4 & 1;
626 unsigned NumTZ = CountTrailingZeros_32(Mask);
627 assert(NumTZ <= 3 && "Invalid IT mask!");
628 for (unsigned Pos = 3, e = NumTZ; Pos > e; --Pos) {
629 bool T = ((Mask >> Pos) & 1) == CondBit0;
630 if (T)
631 O << 't';
632 else
633 O << 'e';
634 }
635}
636
Chris Lattner35c33bd2010-04-04 04:47:45 +0000637void ARMInstPrinter::printThumbAddrModeRROperand(const MCInst *MI, unsigned Op,
638 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000639 const MCOperand &MO1 = MI->getOperand(Op);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000640 const MCOperand &MO2 = MI->getOperand(Op + 1);
Johnny Chen9e088762010-03-17 17:52:21 +0000641
642 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000643 printOperand(MI, Op, O);
Johnny Chen9e088762010-03-17 17:52:21 +0000644 return;
645 }
646
647 O << "[" << getRegisterName(MO1.getReg());
Bill Wendlingf4caf692010-12-14 03:36:38 +0000648 if (unsigned RegNum = MO2.getReg())
649 O << ", " << getRegisterName(RegNum);
650 O << "]";
651}
652
653void ARMInstPrinter::printThumbAddrModeImm5SOperand(const MCInst *MI,
654 unsigned Op,
655 raw_ostream &O,
656 unsigned Scale) {
657 const MCOperand &MO1 = MI->getOperand(Op);
658 const MCOperand &MO2 = MI->getOperand(Op + 1);
659
660 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
661 printOperand(MI, Op, O);
662 return;
663 }
664
665 O << "[" << getRegisterName(MO1.getReg());
666 if (unsigned ImmOffs = MO2.getImm())
Johnny Chen9e088762010-03-17 17:52:21 +0000667 O << ", #" << ImmOffs * Scale;
668 O << "]";
669}
670
Bill Wendlingf4caf692010-12-14 03:36:38 +0000671void ARMInstPrinter::printThumbAddrModeImm5S1Operand(const MCInst *MI,
672 unsigned Op,
673 raw_ostream &O) {
674 printThumbAddrModeImm5SOperand(MI, Op, O, 1);
Johnny Chen9e088762010-03-17 17:52:21 +0000675}
676
Bill Wendlingf4caf692010-12-14 03:36:38 +0000677void ARMInstPrinter::printThumbAddrModeImm5S2Operand(const MCInst *MI,
678 unsigned Op,
679 raw_ostream &O) {
680 printThumbAddrModeImm5SOperand(MI, Op, O, 2);
Johnny Chen9e088762010-03-17 17:52:21 +0000681}
682
Bill Wendlingf4caf692010-12-14 03:36:38 +0000683void ARMInstPrinter::printThumbAddrModeImm5S4Operand(const MCInst *MI,
684 unsigned Op,
685 raw_ostream &O) {
686 printThumbAddrModeImm5SOperand(MI, Op, O, 4);
Johnny Chen9e088762010-03-17 17:52:21 +0000687}
688
Chris Lattner35c33bd2010-04-04 04:47:45 +0000689void ARMInstPrinter::printThumbAddrModeSPOperand(const MCInst *MI, unsigned Op,
690 raw_ostream &O) {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000691 printThumbAddrModeImm5SOperand(MI, Op, O, 4);
Johnny Chen9e088762010-03-17 17:52:21 +0000692}
693
Johnny Chen9e088762010-03-17 17:52:21 +0000694// Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
695// register with shift forms.
696// REG 0 0 - e.g. R5
697// REG IMM, SH_OPC - e.g. R5, LSL #3
Chris Lattner35c33bd2010-04-04 04:47:45 +0000698void ARMInstPrinter::printT2SOOperand(const MCInst *MI, unsigned OpNum,
699 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000700 const MCOperand &MO1 = MI->getOperand(OpNum);
701 const MCOperand &MO2 = MI->getOperand(OpNum+1);
702
703 unsigned Reg = MO1.getReg();
704 O << getRegisterName(Reg);
705
706 // Print the shift opc.
Johnny Chen9e088762010-03-17 17:52:21 +0000707 assert(MO2.isImm() && "Not a valid t2_so_reg value!");
Bob Wilson1d9125a2010-08-05 00:34:42 +0000708 ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO2.getImm());
709 O << ", " << ARM_AM::getShiftOpcStr(ShOpc);
710 if (ShOpc != ARM_AM::rrx)
711 O << " #" << ARM_AM::getSORegOffset(MO2.getImm());
Johnny Chen9e088762010-03-17 17:52:21 +0000712}
713
Jim Grosbach458f2dc2010-10-25 20:00:01 +0000714void ARMInstPrinter::printAddrModeImm12Operand(const MCInst *MI, unsigned OpNum,
715 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000716 const MCOperand &MO1 = MI->getOperand(OpNum);
717 const MCOperand &MO2 = MI->getOperand(OpNum+1);
718
Jim Grosbach3e556122010-10-26 22:37:02 +0000719 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
720 printOperand(MI, OpNum, O);
721 return;
722 }
723
Johnny Chen9e088762010-03-17 17:52:21 +0000724 O << "[" << getRegisterName(MO1.getReg());
725
Jim Grosbach77aee8e2010-10-27 01:19:41 +0000726 int32_t OffImm = (int32_t)MO2.getImm();
Jim Grosbachab682a22010-10-28 18:34:10 +0000727 bool isSub = OffImm < 0;
728 // Special value for #-0. All others are normal.
729 if (OffImm == INT32_MIN)
730 OffImm = 0;
731 if (isSub)
Jim Grosbach77aee8e2010-10-27 01:19:41 +0000732 O << ", #-" << -OffImm;
733 else if (OffImm > 0)
Johnny Chen9e088762010-03-17 17:52:21 +0000734 O << ", #" << OffImm;
735 O << "]";
736}
737
738void ARMInstPrinter::printT2AddrModeImm8Operand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000739 unsigned OpNum,
740 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000741 const MCOperand &MO1 = MI->getOperand(OpNum);
742 const MCOperand &MO2 = MI->getOperand(OpNum+1);
743
744 O << "[" << getRegisterName(MO1.getReg());
745
746 int32_t OffImm = (int32_t)MO2.getImm();
747 // Don't print +0.
748 if (OffImm < 0)
749 O << ", #-" << -OffImm;
750 else if (OffImm > 0)
751 O << ", #" << OffImm;
752 O << "]";
753}
754
755void ARMInstPrinter::printT2AddrModeImm8s4Operand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000756 unsigned OpNum,
757 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000758 const MCOperand &MO1 = MI->getOperand(OpNum);
759 const MCOperand &MO2 = MI->getOperand(OpNum+1);
760
761 O << "[" << getRegisterName(MO1.getReg());
762
763 int32_t OffImm = (int32_t)MO2.getImm() / 4;
764 // Don't print +0.
765 if (OffImm < 0)
766 O << ", #-" << -OffImm * 4;
767 else if (OffImm > 0)
768 O << ", #" << OffImm * 4;
769 O << "]";
770}
771
772void ARMInstPrinter::printT2AddrModeImm8OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000773 unsigned OpNum,
774 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000775 const MCOperand &MO1 = MI->getOperand(OpNum);
776 int32_t OffImm = (int32_t)MO1.getImm();
777 // Don't print +0.
778 if (OffImm < 0)
779 O << "#-" << -OffImm;
780 else if (OffImm > 0)
781 O << "#" << OffImm;
782}
783
784void ARMInstPrinter::printT2AddrModeImm8s4OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000785 unsigned OpNum,
786 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000787 const MCOperand &MO1 = MI->getOperand(OpNum);
788 int32_t OffImm = (int32_t)MO1.getImm() / 4;
789 // Don't print +0.
790 if (OffImm < 0)
791 O << "#-" << -OffImm * 4;
792 else if (OffImm > 0)
793 O << "#" << OffImm * 4;
794}
795
796void ARMInstPrinter::printT2AddrModeSoRegOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000797 unsigned OpNum,
798 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000799 const MCOperand &MO1 = MI->getOperand(OpNum);
800 const MCOperand &MO2 = MI->getOperand(OpNum+1);
801 const MCOperand &MO3 = MI->getOperand(OpNum+2);
802
803 O << "[" << getRegisterName(MO1.getReg());
804
805 assert(MO2.getReg() && "Invalid so_reg load / store address!");
806 O << ", " << getRegisterName(MO2.getReg());
807
808 unsigned ShAmt = MO3.getImm();
809 if (ShAmt) {
810 assert(ShAmt <= 3 && "Not a valid Thumb2 addressing mode!");
811 O << ", lsl #" << ShAmt;
812 }
813 O << "]";
814}
815
Chris Lattner35c33bd2010-04-04 04:47:45 +0000816void ARMInstPrinter::printVFPf32ImmOperand(const MCInst *MI, unsigned OpNum,
817 raw_ostream &O) {
Bill Wendling8cb415e2011-01-26 20:57:43 +0000818 const MCOperand &MO = MI->getOperand(OpNum);
819 O << '#';
820 if (MO.isFPImm()) {
821 O << (float)MO.getFPImm();
822 } else {
823 union {
824 uint32_t I;
825 float F;
826 } FPUnion;
827
828 FPUnion.I = MO.getImm();
829 O << FPUnion.F;
830 }
Johnny Chen9e088762010-03-17 17:52:21 +0000831}
832
Chris Lattner35c33bd2010-04-04 04:47:45 +0000833void ARMInstPrinter::printVFPf64ImmOperand(const MCInst *MI, unsigned OpNum,
834 raw_ostream &O) {
Bill Wendling8cb415e2011-01-26 20:57:43 +0000835 const MCOperand &MO = MI->getOperand(OpNum);
836 O << '#';
837 if (MO.isFPImm()) {
838 O << MO.getFPImm();
839 } else {
840 // We expect the binary encoding of a floating point number here.
841 union {
842 uint64_t I;
843 double D;
844 } FPUnion;
845
846 FPUnion.I = MO.getImm();
847 O << FPUnion.D;
848 }
Johnny Chen9e088762010-03-17 17:52:21 +0000849}
850
Bob Wilson1a913ed2010-06-11 21:34:50 +0000851void ARMInstPrinter::printNEONModImmOperand(const MCInst *MI, unsigned OpNum,
852 raw_ostream &O) {
Bob Wilson6dce00c2010-07-13 04:44:34 +0000853 unsigned EncodedImm = MI->getOperand(OpNum).getImm();
854 unsigned EltBits;
855 uint64_t Val = ARM_AM::decodeNEONModImm(EncodedImm, EltBits);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000856 O << "#0x" << utohexstr(Val);
Johnny Chenc7b65912010-04-16 22:40:20 +0000857}
Jim Grosbach4a5ffb32011-07-22 23:16:18 +0000858
Jim Grosbachf4943352011-07-25 23:09:14 +0000859void ARMInstPrinter::printImmPlusOneOperand(const MCInst *MI, unsigned OpNum,
860 raw_ostream &O) {
Jim Grosbach4a5ffb32011-07-22 23:16:18 +0000861 unsigned Imm = MI->getOperand(OpNum).getImm();
862 O << "#" << Imm + 1;
863}
Jim Grosbach85bfd3b2011-07-26 21:28:43 +0000864
865void ARMInstPrinter::printRotImmOperand(const MCInst *MI, unsigned OpNum,
866 raw_ostream &O) {
867 unsigned Imm = MI->getOperand(OpNum).getImm();
868 if (Imm == 0)
869 return;
Jim Grosbach45f39292011-07-26 21:44:37 +0000870 O << ", ror #";
Jim Grosbach85bfd3b2011-07-26 21:28:43 +0000871 switch (Imm) {
872 default: assert (0 && "illegal ror immediate!");
873 case 1: O << "8\n"; break;
874 case 2: O << "16\n"; break;
875 case 3: O << "24\n"; break;
876 }
877}