blob: 30ec4981b7412483db7afebfa63cbb675c83bf16 [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()) {
335 O << ", " << (char)ARM_AM::getAM3Op(MO3.getImm())
336 << 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()) {
366 O << (char)ARM_AM::getAM3Op(MO2.getImm())
367 << getRegisterName(MO1.getReg());
368 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 Grosbache6913602010-11-03 01:01:43 +0000377void ARMInstPrinter::printLdStmModeOperand(const MCInst *MI, unsigned OpNum,
Jim Grosbach0a2287b2010-11-03 01:11:15 +0000378 raw_ostream &O) {
Jim Grosbache6913602010-11-03 01:01:43 +0000379 ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MI->getOperand(OpNum)
380 .getImm());
381 O << ARM_AM::getAMSubModeStr(Mode);
Chris Lattnere306d8d2009-10-19 22:09:23 +0000382}
383
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000384void ARMInstPrinter::printAddrMode5Operand(const MCInst *MI, unsigned OpNum,
Jim Grosbach0a2287b2010-11-03 01:11:15 +0000385 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000386 const MCOperand &MO1 = MI->getOperand(OpNum);
387 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000388
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000389 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000390 printOperand(MI, OpNum, O);
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000391 return;
392 }
Jim Grosbach15d78982010-09-14 22:27:15 +0000393
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000394 O << "[" << getRegisterName(MO1.getReg());
Jim Grosbach15d78982010-09-14 22:27:15 +0000395
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000396 if (unsigned ImmOffs = ARM_AM::getAM5Offset(MO2.getImm())) {
397 O << ", #"
Johnny Chen9e088762010-03-17 17:52:21 +0000398 << ARM_AM::getAddrOpcStr(ARM_AM::getAM5Op(MO2.getImm()))
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000399 << ImmOffs * 4;
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000400 }
401 O << "]";
402}
403
Chris Lattner35c33bd2010-04-04 04:47:45 +0000404void ARMInstPrinter::printAddrMode6Operand(const MCInst *MI, unsigned OpNum,
405 raw_ostream &O) {
Chris Lattner235e2f62009-10-20 06:22:33 +0000406 const MCOperand &MO1 = MI->getOperand(OpNum);
407 const MCOperand &MO2 = MI->getOperand(OpNum+1);
Jim Grosbach15d78982010-09-14 22:27:15 +0000408
Bob Wilson226036e2010-03-20 22:13:40 +0000409 O << "[" << getRegisterName(MO1.getReg());
410 if (MO2.getImm()) {
411 // FIXME: Both darwin as and GNU as violate ARM docs here.
Bob Wilson273ff312010-07-14 23:54:43 +0000412 O << ", :" << (MO2.getImm() << 3);
Chris Lattner235e2f62009-10-20 06:22:33 +0000413 }
Bob Wilson226036e2010-03-20 22:13:40 +0000414 O << "]";
415}
416
Bruno Cardoso Lopes505f3cd2011-03-24 21:04:58 +0000417void ARMInstPrinter::printAddrMode7Operand(const MCInst *MI, unsigned OpNum,
418 raw_ostream &O) {
419 const MCOperand &MO1 = MI->getOperand(OpNum);
420 O << "[" << getRegisterName(MO1.getReg()) << "]";
421}
422
Bob Wilson226036e2010-03-20 22:13:40 +0000423void ARMInstPrinter::printAddrMode6OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000424 unsigned OpNum,
425 raw_ostream &O) {
Bob Wilson226036e2010-03-20 22:13:40 +0000426 const MCOperand &MO = MI->getOperand(OpNum);
427 if (MO.getReg() == 0)
428 O << "!";
429 else
430 O << ", " << getRegisterName(MO.getReg());
Chris Lattner235e2f62009-10-20 06:22:33 +0000431}
432
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000433void ARMInstPrinter::printBitfieldInvMaskImmOperand(const MCInst *MI,
434 unsigned OpNum,
435 raw_ostream &O) {
Chris Lattner235e2f62009-10-20 06:22:33 +0000436 const MCOperand &MO = MI->getOperand(OpNum);
437 uint32_t v = ~MO.getImm();
438 int32_t lsb = CountTrailingZeros_32(v);
439 int32_t width = (32 - CountLeadingZeros_32 (v)) - lsb;
440 assert(MO.isImm() && "Not a valid bf_inv_mask_imm value!");
441 O << '#' << lsb << ", #" << width;
442}
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000443
Johnny Chen1adc40c2010-08-12 20:46:17 +0000444void ARMInstPrinter::printMemBOption(const MCInst *MI, unsigned OpNum,
445 raw_ostream &O) {
446 unsigned val = MI->getOperand(OpNum).getImm();
447 O << ARM_MB::MemBOptToString(val);
448}
449
Bob Wilson22f5dc72010-08-16 18:27:34 +0000450void ARMInstPrinter::printShiftImmOperand(const MCInst *MI, unsigned OpNum,
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000451 raw_ostream &O) {
452 unsigned ShiftOp = MI->getOperand(OpNum).getImm();
Jim Grosbach580f4a92011-07-25 22:20:28 +0000453 bool isASR = (ShiftOp & (1 << 5)) != 0;
454 unsigned Amt = ShiftOp & 0x1f;
455 if (isASR)
456 O << ", asr #" << (Amt == 0 ? 32 : Amt);
457 else if (Amt)
458 O << ", lsl #" << Amt;
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000459}
460
Jim Grosbachdde038a2011-07-20 21:40:26 +0000461void ARMInstPrinter::printPKHLSLShiftImm(const MCInst *MI, unsigned OpNum,
462 raw_ostream &O) {
463 unsigned Imm = MI->getOperand(OpNum).getImm();
464 if (Imm == 0)
465 return;
466 assert(Imm > 0 && Imm < 32 && "Invalid PKH shift immediate value!");
467 O << ", lsl #" << Imm;
468}
469
470void ARMInstPrinter::printPKHASRShiftImm(const MCInst *MI, unsigned OpNum,
471 raw_ostream &O) {
472 unsigned Imm = MI->getOperand(OpNum).getImm();
473 // A shift amount of 32 is encoded as 0.
474 if (Imm == 0)
475 Imm = 32;
476 assert(Imm > 0 && Imm <= 32 && "Invalid PKH shift immediate value!");
477 O << ", asr #" << Imm;
478}
479
Chris Lattner35c33bd2010-04-04 04:47:45 +0000480void ARMInstPrinter::printRegisterList(const MCInst *MI, unsigned OpNum,
481 raw_ostream &O) {
Chris Lattnere306d8d2009-10-19 22:09:23 +0000482 O << "{";
Johnny Chen9e088762010-03-17 17:52:21 +0000483 for (unsigned i = OpNum, e = MI->getNumOperands(); i != e; ++i) {
484 if (i != OpNum) O << ", ";
Chris Lattnere306d8d2009-10-19 22:09:23 +0000485 O << getRegisterName(MI->getOperand(i).getReg());
486 }
487 O << "}";
488}
Chris Lattner4d152222009-10-19 22:23:04 +0000489
Jim Grosbachb3af5de2010-10-13 21:00:04 +0000490void ARMInstPrinter::printSetendOperand(const MCInst *MI, unsigned OpNum,
491 raw_ostream &O) {
492 const MCOperand &Op = MI->getOperand(OpNum);
493 if (Op.getImm())
494 O << "be";
495 else
496 O << "le";
497}
498
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000499void ARMInstPrinter::printCPSIMod(const MCInst *MI, unsigned OpNum,
500 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000501 const MCOperand &Op = MI->getOperand(OpNum);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000502 O << ARM_PROC::IModToString(Op.getImm());
503}
504
505void ARMInstPrinter::printCPSIFlag(const MCInst *MI, unsigned OpNum,
506 raw_ostream &O) {
507 const MCOperand &Op = MI->getOperand(OpNum);
508 unsigned IFlags = Op.getImm();
509 for (int i=2; i >= 0; --i)
510 if (IFlags & (1 << i))
511 O << ARM_PROC::IFlagsToString(1 << i);
Johnny Chen9e088762010-03-17 17:52:21 +0000512}
513
Chris Lattner35c33bd2010-04-04 04:47:45 +0000514void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum,
515 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000516 const MCOperand &Op = MI->getOperand(OpNum);
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000517 unsigned SpecRegRBit = Op.getImm() >> 4;
518 unsigned Mask = Op.getImm() & 0xf;
519
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000520 // As special cases, CPSR_f, CPSR_s and CPSR_fs prefer printing as
521 // APSR_nzcvq, APSR_g and APSRnzcvqg, respectively.
522 if (!SpecRegRBit && (Mask == 8 || Mask == 4 || Mask == 12)) {
523 O << "APSR_";
524 switch (Mask) {
525 default: assert(0);
526 case 4: O << "g"; return;
527 case 8: O << "nzcvq"; return;
528 case 12: O << "nzcvqg"; return;
529 }
530 llvm_unreachable("Unexpected mask value!");
531 }
532
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000533 if (SpecRegRBit)
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000534 O << "SPSR";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000535 else
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000536 O << "CPSR";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000537
Johnny Chen9e088762010-03-17 17:52:21 +0000538 if (Mask) {
539 O << '_';
540 if (Mask & 8) O << 'f';
541 if (Mask & 4) O << 's';
542 if (Mask & 2) O << 'x';
543 if (Mask & 1) O << 'c';
544 }
545}
546
Chris Lattner35c33bd2010-04-04 04:47:45 +0000547void ARMInstPrinter::printPredicateOperand(const MCInst *MI, unsigned OpNum,
548 raw_ostream &O) {
Chris Lattner413ae252009-10-20 00:42:49 +0000549 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
550 if (CC != ARMCC::AL)
551 O << ARMCondCodeToString(CC);
552}
553
Jim Grosbach15d78982010-09-14 22:27:15 +0000554void ARMInstPrinter::printMandatoryPredicateOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000555 unsigned OpNum,
556 raw_ostream &O) {
Johnny Chen9d3acaa2010-03-02 17:57:15 +0000557 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
558 O << ARMCondCodeToString(CC);
559}
560
Chris Lattner35c33bd2010-04-04 04:47:45 +0000561void ARMInstPrinter::printSBitModifierOperand(const MCInst *MI, unsigned OpNum,
562 raw_ostream &O) {
Daniel Dunbara7cc6522009-10-20 22:10:05 +0000563 if (MI->getOperand(OpNum).getReg()) {
564 assert(MI->getOperand(OpNum).getReg() == ARM::CPSR &&
565 "Expect ARM CPSR register!");
Chris Lattner233917c2009-10-20 00:46:11 +0000566 O << 's';
567 }
568}
569
Chris Lattner35c33bd2010-04-04 04:47:45 +0000570void ARMInstPrinter::printNoHashImmediate(const MCInst *MI, unsigned OpNum,
571 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000572 O << MI->getOperand(OpNum).getImm();
573}
574
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000575void ARMInstPrinter::printPImmediate(const MCInst *MI, unsigned OpNum,
576 raw_ostream &O) {
577 O << "p" << MI->getOperand(OpNum).getImm();
578}
579
580void ARMInstPrinter::printCImmediate(const MCInst *MI, unsigned OpNum,
581 raw_ostream &O) {
582 O << "c" << MI->getOperand(OpNum).getImm();
583}
584
Chris Lattner35c33bd2010-04-04 04:47:45 +0000585void ARMInstPrinter::printPCLabel(const MCInst *MI, unsigned OpNum,
586 raw_ostream &O) {
Jim Grosbachd30cfde2010-09-18 00:04:53 +0000587 llvm_unreachable("Unhandled PC-relative pseudo-instruction!");
Chris Lattner4d152222009-10-19 22:23:04 +0000588}
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000589
Chris Lattner35c33bd2010-04-04 04:47:45 +0000590void ARMInstPrinter::printThumbS4ImmOperand(const MCInst *MI, unsigned OpNum,
591 raw_ostream &O) {
Johnny Chen541ba7d2010-01-25 22:13:10 +0000592 O << "#" << MI->getOperand(OpNum).getImm() * 4;
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000593}
Johnny Chen9e088762010-03-17 17:52:21 +0000594
Chris Lattner35c33bd2010-04-04 04:47:45 +0000595void ARMInstPrinter::printThumbITMask(const MCInst *MI, unsigned OpNum,
596 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000597 // (3 - the number of trailing zeros) is the number of then / else.
598 unsigned Mask = MI->getOperand(OpNum).getImm();
599 unsigned CondBit0 = Mask >> 4 & 1;
600 unsigned NumTZ = CountTrailingZeros_32(Mask);
601 assert(NumTZ <= 3 && "Invalid IT mask!");
602 for (unsigned Pos = 3, e = NumTZ; Pos > e; --Pos) {
603 bool T = ((Mask >> Pos) & 1) == CondBit0;
604 if (T)
605 O << 't';
606 else
607 O << 'e';
608 }
609}
610
Chris Lattner35c33bd2010-04-04 04:47:45 +0000611void ARMInstPrinter::printThumbAddrModeRROperand(const MCInst *MI, unsigned Op,
612 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000613 const MCOperand &MO1 = MI->getOperand(Op);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000614 const MCOperand &MO2 = MI->getOperand(Op + 1);
Johnny Chen9e088762010-03-17 17:52:21 +0000615
616 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000617 printOperand(MI, Op, O);
Johnny Chen9e088762010-03-17 17:52:21 +0000618 return;
619 }
620
621 O << "[" << getRegisterName(MO1.getReg());
Bill Wendlingf4caf692010-12-14 03:36:38 +0000622 if (unsigned RegNum = MO2.getReg())
623 O << ", " << getRegisterName(RegNum);
624 O << "]";
625}
626
627void ARMInstPrinter::printThumbAddrModeImm5SOperand(const MCInst *MI,
628 unsigned Op,
629 raw_ostream &O,
630 unsigned Scale) {
631 const MCOperand &MO1 = MI->getOperand(Op);
632 const MCOperand &MO2 = MI->getOperand(Op + 1);
633
634 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
635 printOperand(MI, Op, O);
636 return;
637 }
638
639 O << "[" << getRegisterName(MO1.getReg());
640 if (unsigned ImmOffs = MO2.getImm())
Johnny Chen9e088762010-03-17 17:52:21 +0000641 O << ", #" << ImmOffs * Scale;
642 O << "]";
643}
644
Bill Wendlingf4caf692010-12-14 03:36:38 +0000645void ARMInstPrinter::printThumbAddrModeImm5S1Operand(const MCInst *MI,
646 unsigned Op,
647 raw_ostream &O) {
648 printThumbAddrModeImm5SOperand(MI, Op, O, 1);
Johnny Chen9e088762010-03-17 17:52:21 +0000649}
650
Bill Wendlingf4caf692010-12-14 03:36:38 +0000651void ARMInstPrinter::printThumbAddrModeImm5S2Operand(const MCInst *MI,
652 unsigned Op,
653 raw_ostream &O) {
654 printThumbAddrModeImm5SOperand(MI, Op, O, 2);
Johnny Chen9e088762010-03-17 17:52:21 +0000655}
656
Bill Wendlingf4caf692010-12-14 03:36:38 +0000657void ARMInstPrinter::printThumbAddrModeImm5S4Operand(const MCInst *MI,
658 unsigned Op,
659 raw_ostream &O) {
660 printThumbAddrModeImm5SOperand(MI, Op, O, 4);
Johnny Chen9e088762010-03-17 17:52:21 +0000661}
662
Chris Lattner35c33bd2010-04-04 04:47:45 +0000663void ARMInstPrinter::printThumbAddrModeSPOperand(const MCInst *MI, unsigned Op,
664 raw_ostream &O) {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000665 printThumbAddrModeImm5SOperand(MI, Op, O, 4);
Johnny Chen9e088762010-03-17 17:52:21 +0000666}
667
Johnny Chen9e088762010-03-17 17:52:21 +0000668// Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
669// register with shift forms.
670// REG 0 0 - e.g. R5
671// REG IMM, SH_OPC - e.g. R5, LSL #3
Chris Lattner35c33bd2010-04-04 04:47:45 +0000672void ARMInstPrinter::printT2SOOperand(const MCInst *MI, unsigned OpNum,
673 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000674 const MCOperand &MO1 = MI->getOperand(OpNum);
675 const MCOperand &MO2 = MI->getOperand(OpNum+1);
676
677 unsigned Reg = MO1.getReg();
678 O << getRegisterName(Reg);
679
680 // Print the shift opc.
Johnny Chen9e088762010-03-17 17:52:21 +0000681 assert(MO2.isImm() && "Not a valid t2_so_reg value!");
Bob Wilson1d9125a2010-08-05 00:34:42 +0000682 ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO2.getImm());
683 O << ", " << ARM_AM::getShiftOpcStr(ShOpc);
684 if (ShOpc != ARM_AM::rrx)
685 O << " #" << ARM_AM::getSORegOffset(MO2.getImm());
Johnny Chen9e088762010-03-17 17:52:21 +0000686}
687
Jim Grosbach458f2dc2010-10-25 20:00:01 +0000688void ARMInstPrinter::printAddrModeImm12Operand(const MCInst *MI, unsigned OpNum,
689 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000690 const MCOperand &MO1 = MI->getOperand(OpNum);
691 const MCOperand &MO2 = MI->getOperand(OpNum+1);
692
Jim Grosbach3e556122010-10-26 22:37:02 +0000693 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
694 printOperand(MI, OpNum, O);
695 return;
696 }
697
Johnny Chen9e088762010-03-17 17:52:21 +0000698 O << "[" << getRegisterName(MO1.getReg());
699
Jim Grosbach77aee8e2010-10-27 01:19:41 +0000700 int32_t OffImm = (int32_t)MO2.getImm();
Jim Grosbachab682a22010-10-28 18:34:10 +0000701 bool isSub = OffImm < 0;
702 // Special value for #-0. All others are normal.
703 if (OffImm == INT32_MIN)
704 OffImm = 0;
705 if (isSub)
Jim Grosbach77aee8e2010-10-27 01:19:41 +0000706 O << ", #-" << -OffImm;
707 else if (OffImm > 0)
Johnny Chen9e088762010-03-17 17:52:21 +0000708 O << ", #" << OffImm;
709 O << "]";
710}
711
712void ARMInstPrinter::printT2AddrModeImm8Operand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000713 unsigned OpNum,
714 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000715 const MCOperand &MO1 = MI->getOperand(OpNum);
716 const MCOperand &MO2 = MI->getOperand(OpNum+1);
717
718 O << "[" << getRegisterName(MO1.getReg());
719
720 int32_t OffImm = (int32_t)MO2.getImm();
721 // Don't print +0.
722 if (OffImm < 0)
723 O << ", #-" << -OffImm;
724 else if (OffImm > 0)
725 O << ", #" << OffImm;
726 O << "]";
727}
728
729void ARMInstPrinter::printT2AddrModeImm8s4Operand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000730 unsigned OpNum,
731 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000732 const MCOperand &MO1 = MI->getOperand(OpNum);
733 const MCOperand &MO2 = MI->getOperand(OpNum+1);
734
735 O << "[" << getRegisterName(MO1.getReg());
736
737 int32_t OffImm = (int32_t)MO2.getImm() / 4;
738 // Don't print +0.
739 if (OffImm < 0)
740 O << ", #-" << -OffImm * 4;
741 else if (OffImm > 0)
742 O << ", #" << OffImm * 4;
743 O << "]";
744}
745
746void ARMInstPrinter::printT2AddrModeImm8OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000747 unsigned OpNum,
748 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000749 const MCOperand &MO1 = MI->getOperand(OpNum);
750 int32_t OffImm = (int32_t)MO1.getImm();
751 // Don't print +0.
752 if (OffImm < 0)
753 O << "#-" << -OffImm;
754 else if (OffImm > 0)
755 O << "#" << OffImm;
756}
757
758void ARMInstPrinter::printT2AddrModeImm8s4OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000759 unsigned OpNum,
760 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000761 const MCOperand &MO1 = MI->getOperand(OpNum);
762 int32_t OffImm = (int32_t)MO1.getImm() / 4;
763 // Don't print +0.
764 if (OffImm < 0)
765 O << "#-" << -OffImm * 4;
766 else if (OffImm > 0)
767 O << "#" << OffImm * 4;
768}
769
770void ARMInstPrinter::printT2AddrModeSoRegOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000771 unsigned OpNum,
772 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000773 const MCOperand &MO1 = MI->getOperand(OpNum);
774 const MCOperand &MO2 = MI->getOperand(OpNum+1);
775 const MCOperand &MO3 = MI->getOperand(OpNum+2);
776
777 O << "[" << getRegisterName(MO1.getReg());
778
779 assert(MO2.getReg() && "Invalid so_reg load / store address!");
780 O << ", " << getRegisterName(MO2.getReg());
781
782 unsigned ShAmt = MO3.getImm();
783 if (ShAmt) {
784 assert(ShAmt <= 3 && "Not a valid Thumb2 addressing mode!");
785 O << ", lsl #" << ShAmt;
786 }
787 O << "]";
788}
789
Chris Lattner35c33bd2010-04-04 04:47:45 +0000790void ARMInstPrinter::printVFPf32ImmOperand(const MCInst *MI, unsigned OpNum,
791 raw_ostream &O) {
Bill Wendling8cb415e2011-01-26 20:57:43 +0000792 const MCOperand &MO = MI->getOperand(OpNum);
793 O << '#';
794 if (MO.isFPImm()) {
795 O << (float)MO.getFPImm();
796 } else {
797 union {
798 uint32_t I;
799 float F;
800 } FPUnion;
801
802 FPUnion.I = MO.getImm();
803 O << FPUnion.F;
804 }
Johnny Chen9e088762010-03-17 17:52:21 +0000805}
806
Chris Lattner35c33bd2010-04-04 04:47:45 +0000807void ARMInstPrinter::printVFPf64ImmOperand(const MCInst *MI, unsigned OpNum,
808 raw_ostream &O) {
Bill Wendling8cb415e2011-01-26 20:57:43 +0000809 const MCOperand &MO = MI->getOperand(OpNum);
810 O << '#';
811 if (MO.isFPImm()) {
812 O << MO.getFPImm();
813 } else {
814 // We expect the binary encoding of a floating point number here.
815 union {
816 uint64_t I;
817 double D;
818 } FPUnion;
819
820 FPUnion.I = MO.getImm();
821 O << FPUnion.D;
822 }
Johnny Chen9e088762010-03-17 17:52:21 +0000823}
824
Bob Wilson1a913ed2010-06-11 21:34:50 +0000825void ARMInstPrinter::printNEONModImmOperand(const MCInst *MI, unsigned OpNum,
826 raw_ostream &O) {
Bob Wilson6dce00c2010-07-13 04:44:34 +0000827 unsigned EncodedImm = MI->getOperand(OpNum).getImm();
828 unsigned EltBits;
829 uint64_t Val = ARM_AM::decodeNEONModImm(EncodedImm, EltBits);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000830 O << "#0x" << utohexstr(Val);
Johnny Chenc7b65912010-04-16 22:40:20 +0000831}
Jim Grosbach4a5ffb32011-07-22 23:16:18 +0000832
Jim Grosbachf4943352011-07-25 23:09:14 +0000833void ARMInstPrinter::printImmPlusOneOperand(const MCInst *MI, unsigned OpNum,
834 raw_ostream &O) {
Jim Grosbach4a5ffb32011-07-22 23:16:18 +0000835 unsigned Imm = MI->getOperand(OpNum).getImm();
836 O << "#" << Imm + 1;
837}
Jim Grosbach85bfd3b2011-07-26 21:28:43 +0000838
839void ARMInstPrinter::printRotImmOperand(const MCInst *MI, unsigned OpNum,
840 raw_ostream &O) {
841 unsigned Imm = MI->getOperand(OpNum).getImm();
842 if (Imm == 0)
843 return;
844 O << "ror #";
845 switch (Imm) {
846 default: assert (0 && "illegal ror immediate!");
847 case 1: O << "8\n"; break;
848 case 2: O << "16\n"; break;
849 case 3: O << "24\n"; break;
850 }
851}