blob: e50f3b208753803331e1da385a2f03d7b278019d [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"
Jim Grosbachd8be4102010-09-15 19:27:50 +000015#include "ARMBaseInfo.h"
Chris Lattnerfd603822009-10-19 19:56:26 +000016#include "ARMInstPrinter.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();
453 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
454 switch (Opc) {
455 case ARM_AM::no_shift:
456 return;
457 case ARM_AM::lsl:
458 O << ", lsl #";
459 break;
460 case ARM_AM::asr:
461 O << ", asr #";
462 break;
463 default:
Bob Wilson22f5dc72010-08-16 18:27:34 +0000464 assert(0 && "unexpected shift opcode for shift immediate operand");
Bob Wilsoneaf1c982010-08-11 23:10:46 +0000465 }
466 O << ARM_AM::getSORegOffset(ShiftOp);
467}
468
Jim Grosbachdde038a2011-07-20 21:40:26 +0000469void ARMInstPrinter::printPKHLSLShiftImm(const MCInst *MI, unsigned OpNum,
470 raw_ostream &O) {
471 unsigned Imm = MI->getOperand(OpNum).getImm();
472 if (Imm == 0)
473 return;
474 assert(Imm > 0 && Imm < 32 && "Invalid PKH shift immediate value!");
475 O << ", lsl #" << Imm;
476}
477
478void ARMInstPrinter::printPKHASRShiftImm(const MCInst *MI, unsigned OpNum,
479 raw_ostream &O) {
480 unsigned Imm = MI->getOperand(OpNum).getImm();
481 // A shift amount of 32 is encoded as 0.
482 if (Imm == 0)
483 Imm = 32;
484 assert(Imm > 0 && Imm <= 32 && "Invalid PKH shift immediate value!");
485 O << ", asr #" << Imm;
486}
487
Chris Lattner35c33bd2010-04-04 04:47:45 +0000488void ARMInstPrinter::printRegisterList(const MCInst *MI, unsigned OpNum,
489 raw_ostream &O) {
Chris Lattnere306d8d2009-10-19 22:09:23 +0000490 O << "{";
Johnny Chen9e088762010-03-17 17:52:21 +0000491 for (unsigned i = OpNum, e = MI->getNumOperands(); i != e; ++i) {
492 if (i != OpNum) O << ", ";
Chris Lattnere306d8d2009-10-19 22:09:23 +0000493 O << getRegisterName(MI->getOperand(i).getReg());
494 }
495 O << "}";
496}
Chris Lattner4d152222009-10-19 22:23:04 +0000497
Jim Grosbachb3af5de2010-10-13 21:00:04 +0000498void ARMInstPrinter::printSetendOperand(const MCInst *MI, unsigned OpNum,
499 raw_ostream &O) {
500 const MCOperand &Op = MI->getOperand(OpNum);
501 if (Op.getImm())
502 O << "be";
503 else
504 O << "le";
505}
506
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000507void ARMInstPrinter::printCPSIMod(const MCInst *MI, unsigned OpNum,
508 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000509 const MCOperand &Op = MI->getOperand(OpNum);
Bruno Cardoso Lopesa2b6e412011-02-14 13:09:44 +0000510 O << ARM_PROC::IModToString(Op.getImm());
511}
512
513void ARMInstPrinter::printCPSIFlag(const MCInst *MI, unsigned OpNum,
514 raw_ostream &O) {
515 const MCOperand &Op = MI->getOperand(OpNum);
516 unsigned IFlags = Op.getImm();
517 for (int i=2; i >= 0; --i)
518 if (IFlags & (1 << i))
519 O << ARM_PROC::IFlagsToString(1 << i);
Johnny Chen9e088762010-03-17 17:52:21 +0000520}
521
Chris Lattner35c33bd2010-04-04 04:47:45 +0000522void ARMInstPrinter::printMSRMaskOperand(const MCInst *MI, unsigned OpNum,
523 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000524 const MCOperand &Op = MI->getOperand(OpNum);
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000525 unsigned SpecRegRBit = Op.getImm() >> 4;
526 unsigned Mask = Op.getImm() & 0xf;
527
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000528 // As special cases, CPSR_f, CPSR_s and CPSR_fs prefer printing as
529 // APSR_nzcvq, APSR_g and APSRnzcvqg, respectively.
530 if (!SpecRegRBit && (Mask == 8 || Mask == 4 || Mask == 12)) {
531 O << "APSR_";
532 switch (Mask) {
533 default: assert(0);
534 case 4: O << "g"; return;
535 case 8: O << "nzcvq"; return;
536 case 12: O << "nzcvqg"; return;
537 }
538 llvm_unreachable("Unexpected mask value!");
539 }
540
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000541 if (SpecRegRBit)
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000542 O << "SPSR";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000543 else
Jim Grosbachb29b4dd2011-07-19 22:45:10 +0000544 O << "CPSR";
Bruno Cardoso Lopes584bf7b2011-02-18 19:45:59 +0000545
Johnny Chen9e088762010-03-17 17:52:21 +0000546 if (Mask) {
547 O << '_';
548 if (Mask & 8) O << 'f';
549 if (Mask & 4) O << 's';
550 if (Mask & 2) O << 'x';
551 if (Mask & 1) O << 'c';
552 }
553}
554
Chris Lattner35c33bd2010-04-04 04:47:45 +0000555void ARMInstPrinter::printPredicateOperand(const MCInst *MI, unsigned OpNum,
556 raw_ostream &O) {
Chris Lattner413ae252009-10-20 00:42:49 +0000557 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
558 if (CC != ARMCC::AL)
559 O << ARMCondCodeToString(CC);
560}
561
Jim Grosbach15d78982010-09-14 22:27:15 +0000562void ARMInstPrinter::printMandatoryPredicateOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000563 unsigned OpNum,
564 raw_ostream &O) {
Johnny Chen9d3acaa2010-03-02 17:57:15 +0000565 ARMCC::CondCodes CC = (ARMCC::CondCodes)MI->getOperand(OpNum).getImm();
566 O << ARMCondCodeToString(CC);
567}
568
Chris Lattner35c33bd2010-04-04 04:47:45 +0000569void ARMInstPrinter::printSBitModifierOperand(const MCInst *MI, unsigned OpNum,
570 raw_ostream &O) {
Daniel Dunbara7cc6522009-10-20 22:10:05 +0000571 if (MI->getOperand(OpNum).getReg()) {
572 assert(MI->getOperand(OpNum).getReg() == ARM::CPSR &&
573 "Expect ARM CPSR register!");
Chris Lattner233917c2009-10-20 00:46:11 +0000574 O << 's';
575 }
576}
577
Chris Lattner35c33bd2010-04-04 04:47:45 +0000578void ARMInstPrinter::printNoHashImmediate(const MCInst *MI, unsigned OpNum,
579 raw_ostream &O) {
Chris Lattnerbf16faa2009-10-20 06:15:28 +0000580 O << MI->getOperand(OpNum).getImm();
581}
582
Owen Andersone4e5e2a2011-01-13 21:46:02 +0000583void ARMInstPrinter::printPImmediate(const MCInst *MI, unsigned OpNum,
584 raw_ostream &O) {
585 O << "p" << MI->getOperand(OpNum).getImm();
586}
587
588void ARMInstPrinter::printCImmediate(const MCInst *MI, unsigned OpNum,
589 raw_ostream &O) {
590 O << "c" << MI->getOperand(OpNum).getImm();
591}
592
Chris Lattner35c33bd2010-04-04 04:47:45 +0000593void ARMInstPrinter::printPCLabel(const MCInst *MI, unsigned OpNum,
594 raw_ostream &O) {
Jim Grosbachd30cfde2010-09-18 00:04:53 +0000595 llvm_unreachable("Unhandled PC-relative pseudo-instruction!");
Chris Lattner4d152222009-10-19 22:23:04 +0000596}
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000597
Chris Lattner35c33bd2010-04-04 04:47:45 +0000598void ARMInstPrinter::printThumbS4ImmOperand(const MCInst *MI, unsigned OpNum,
599 raw_ostream &O) {
Johnny Chen541ba7d2010-01-25 22:13:10 +0000600 O << "#" << MI->getOperand(OpNum).getImm() * 4;
Evan Cheng2ef9c8a2009-11-19 06:57:41 +0000601}
Johnny Chen9e088762010-03-17 17:52:21 +0000602
Chris Lattner35c33bd2010-04-04 04:47:45 +0000603void ARMInstPrinter::printThumbITMask(const MCInst *MI, unsigned OpNum,
604 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000605 // (3 - the number of trailing zeros) is the number of then / else.
606 unsigned Mask = MI->getOperand(OpNum).getImm();
607 unsigned CondBit0 = Mask >> 4 & 1;
608 unsigned NumTZ = CountTrailingZeros_32(Mask);
609 assert(NumTZ <= 3 && "Invalid IT mask!");
610 for (unsigned Pos = 3, e = NumTZ; Pos > e; --Pos) {
611 bool T = ((Mask >> Pos) & 1) == CondBit0;
612 if (T)
613 O << 't';
614 else
615 O << 'e';
616 }
617}
618
Chris Lattner35c33bd2010-04-04 04:47:45 +0000619void ARMInstPrinter::printThumbAddrModeRROperand(const MCInst *MI, unsigned Op,
620 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000621 const MCOperand &MO1 = MI->getOperand(Op);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000622 const MCOperand &MO2 = MI->getOperand(Op + 1);
Johnny Chen9e088762010-03-17 17:52:21 +0000623
624 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000625 printOperand(MI, Op, O);
Johnny Chen9e088762010-03-17 17:52:21 +0000626 return;
627 }
628
629 O << "[" << getRegisterName(MO1.getReg());
Bill Wendlingf4caf692010-12-14 03:36:38 +0000630 if (unsigned RegNum = MO2.getReg())
631 O << ", " << getRegisterName(RegNum);
632 O << "]";
633}
634
635void ARMInstPrinter::printThumbAddrModeImm5SOperand(const MCInst *MI,
636 unsigned Op,
637 raw_ostream &O,
638 unsigned Scale) {
639 const MCOperand &MO1 = MI->getOperand(Op);
640 const MCOperand &MO2 = MI->getOperand(Op + 1);
641
642 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
643 printOperand(MI, Op, O);
644 return;
645 }
646
647 O << "[" << getRegisterName(MO1.getReg());
648 if (unsigned ImmOffs = MO2.getImm())
Johnny Chen9e088762010-03-17 17:52:21 +0000649 O << ", #" << ImmOffs * Scale;
650 O << "]";
651}
652
Bill Wendlingf4caf692010-12-14 03:36:38 +0000653void ARMInstPrinter::printThumbAddrModeImm5S1Operand(const MCInst *MI,
654 unsigned Op,
655 raw_ostream &O) {
656 printThumbAddrModeImm5SOperand(MI, Op, O, 1);
Johnny Chen9e088762010-03-17 17:52:21 +0000657}
658
Bill Wendlingf4caf692010-12-14 03:36:38 +0000659void ARMInstPrinter::printThumbAddrModeImm5S2Operand(const MCInst *MI,
660 unsigned Op,
661 raw_ostream &O) {
662 printThumbAddrModeImm5SOperand(MI, Op, O, 2);
Johnny Chen9e088762010-03-17 17:52:21 +0000663}
664
Bill Wendlingf4caf692010-12-14 03:36:38 +0000665void ARMInstPrinter::printThumbAddrModeImm5S4Operand(const MCInst *MI,
666 unsigned Op,
667 raw_ostream &O) {
668 printThumbAddrModeImm5SOperand(MI, Op, O, 4);
Johnny Chen9e088762010-03-17 17:52:21 +0000669}
670
Chris Lattner35c33bd2010-04-04 04:47:45 +0000671void ARMInstPrinter::printThumbAddrModeSPOperand(const MCInst *MI, unsigned Op,
672 raw_ostream &O) {
Bill Wendlingf4caf692010-12-14 03:36:38 +0000673 printThumbAddrModeImm5SOperand(MI, Op, O, 4);
Johnny Chen9e088762010-03-17 17:52:21 +0000674}
675
Johnny Chen9e088762010-03-17 17:52:21 +0000676// Constant shifts t2_so_reg is a 2-operand unit corresponding to the Thumb2
677// register with shift forms.
678// REG 0 0 - e.g. R5
679// REG IMM, SH_OPC - e.g. R5, LSL #3
Chris Lattner35c33bd2010-04-04 04:47:45 +0000680void ARMInstPrinter::printT2SOOperand(const MCInst *MI, unsigned OpNum,
681 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000682 const MCOperand &MO1 = MI->getOperand(OpNum);
683 const MCOperand &MO2 = MI->getOperand(OpNum+1);
684
685 unsigned Reg = MO1.getReg();
686 O << getRegisterName(Reg);
687
688 // Print the shift opc.
Johnny Chen9e088762010-03-17 17:52:21 +0000689 assert(MO2.isImm() && "Not a valid t2_so_reg value!");
Bob Wilson1d9125a2010-08-05 00:34:42 +0000690 ARM_AM::ShiftOpc ShOpc = ARM_AM::getSORegShOp(MO2.getImm());
691 O << ", " << ARM_AM::getShiftOpcStr(ShOpc);
692 if (ShOpc != ARM_AM::rrx)
693 O << " #" << ARM_AM::getSORegOffset(MO2.getImm());
Johnny Chen9e088762010-03-17 17:52:21 +0000694}
695
Jim Grosbach458f2dc2010-10-25 20:00:01 +0000696void ARMInstPrinter::printAddrModeImm12Operand(const MCInst *MI, unsigned OpNum,
697 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000698 const MCOperand &MO1 = MI->getOperand(OpNum);
699 const MCOperand &MO2 = MI->getOperand(OpNum+1);
700
Jim Grosbach3e556122010-10-26 22:37:02 +0000701 if (!MO1.isReg()) { // FIXME: This is for CP entries, but isn't right.
702 printOperand(MI, OpNum, O);
703 return;
704 }
705
Johnny Chen9e088762010-03-17 17:52:21 +0000706 O << "[" << getRegisterName(MO1.getReg());
707
Jim Grosbach77aee8e2010-10-27 01:19:41 +0000708 int32_t OffImm = (int32_t)MO2.getImm();
Jim Grosbachab682a22010-10-28 18:34:10 +0000709 bool isSub = OffImm < 0;
710 // Special value for #-0. All others are normal.
711 if (OffImm == INT32_MIN)
712 OffImm = 0;
713 if (isSub)
Jim Grosbach77aee8e2010-10-27 01:19:41 +0000714 O << ", #-" << -OffImm;
715 else if (OffImm > 0)
Johnny Chen9e088762010-03-17 17:52:21 +0000716 O << ", #" << OffImm;
717 O << "]";
718}
719
720void ARMInstPrinter::printT2AddrModeImm8Operand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000721 unsigned OpNum,
722 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000723 const MCOperand &MO1 = MI->getOperand(OpNum);
724 const MCOperand &MO2 = MI->getOperand(OpNum+1);
725
726 O << "[" << getRegisterName(MO1.getReg());
727
728 int32_t OffImm = (int32_t)MO2.getImm();
729 // Don't print +0.
730 if (OffImm < 0)
731 O << ", #-" << -OffImm;
732 else if (OffImm > 0)
733 O << ", #" << OffImm;
734 O << "]";
735}
736
737void ARMInstPrinter::printT2AddrModeImm8s4Operand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000738 unsigned OpNum,
739 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000740 const MCOperand &MO1 = MI->getOperand(OpNum);
741 const MCOperand &MO2 = MI->getOperand(OpNum+1);
742
743 O << "[" << getRegisterName(MO1.getReg());
744
745 int32_t OffImm = (int32_t)MO2.getImm() / 4;
746 // Don't print +0.
747 if (OffImm < 0)
748 O << ", #-" << -OffImm * 4;
749 else if (OffImm > 0)
750 O << ", #" << OffImm * 4;
751 O << "]";
752}
753
754void ARMInstPrinter::printT2AddrModeImm8OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000755 unsigned OpNum,
756 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000757 const MCOperand &MO1 = MI->getOperand(OpNum);
758 int32_t OffImm = (int32_t)MO1.getImm();
759 // Don't print +0.
760 if (OffImm < 0)
761 O << "#-" << -OffImm;
762 else if (OffImm > 0)
763 O << "#" << OffImm;
764}
765
766void ARMInstPrinter::printT2AddrModeImm8s4OffsetOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000767 unsigned OpNum,
768 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000769 const MCOperand &MO1 = MI->getOperand(OpNum);
770 int32_t OffImm = (int32_t)MO1.getImm() / 4;
771 // Don't print +0.
772 if (OffImm < 0)
773 O << "#-" << -OffImm * 4;
774 else if (OffImm > 0)
775 O << "#" << OffImm * 4;
776}
777
778void ARMInstPrinter::printT2AddrModeSoRegOperand(const MCInst *MI,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000779 unsigned OpNum,
780 raw_ostream &O) {
Johnny Chen9e088762010-03-17 17:52:21 +0000781 const MCOperand &MO1 = MI->getOperand(OpNum);
782 const MCOperand &MO2 = MI->getOperand(OpNum+1);
783 const MCOperand &MO3 = MI->getOperand(OpNum+2);
784
785 O << "[" << getRegisterName(MO1.getReg());
786
787 assert(MO2.getReg() && "Invalid so_reg load / store address!");
788 O << ", " << getRegisterName(MO2.getReg());
789
790 unsigned ShAmt = MO3.getImm();
791 if (ShAmt) {
792 assert(ShAmt <= 3 && "Not a valid Thumb2 addressing mode!");
793 O << ", lsl #" << ShAmt;
794 }
795 O << "]";
796}
797
Chris Lattner35c33bd2010-04-04 04:47:45 +0000798void ARMInstPrinter::printVFPf32ImmOperand(const MCInst *MI, unsigned OpNum,
799 raw_ostream &O) {
Bill Wendling8cb415e2011-01-26 20:57:43 +0000800 const MCOperand &MO = MI->getOperand(OpNum);
801 O << '#';
802 if (MO.isFPImm()) {
803 O << (float)MO.getFPImm();
804 } else {
805 union {
806 uint32_t I;
807 float F;
808 } FPUnion;
809
810 FPUnion.I = MO.getImm();
811 O << FPUnion.F;
812 }
Johnny Chen9e088762010-03-17 17:52:21 +0000813}
814
Chris Lattner35c33bd2010-04-04 04:47:45 +0000815void ARMInstPrinter::printVFPf64ImmOperand(const MCInst *MI, unsigned OpNum,
816 raw_ostream &O) {
Bill Wendling8cb415e2011-01-26 20:57:43 +0000817 const MCOperand &MO = MI->getOperand(OpNum);
818 O << '#';
819 if (MO.isFPImm()) {
820 O << MO.getFPImm();
821 } else {
822 // We expect the binary encoding of a floating point number here.
823 union {
824 uint64_t I;
825 double D;
826 } FPUnion;
827
828 FPUnion.I = MO.getImm();
829 O << FPUnion.D;
830 }
Johnny Chen9e088762010-03-17 17:52:21 +0000831}
832
Bob Wilson1a913ed2010-06-11 21:34:50 +0000833void ARMInstPrinter::printNEONModImmOperand(const MCInst *MI, unsigned OpNum,
834 raw_ostream &O) {
Bob Wilson6dce00c2010-07-13 04:44:34 +0000835 unsigned EncodedImm = MI->getOperand(OpNum).getImm();
836 unsigned EltBits;
837 uint64_t Val = ARM_AM::decodeNEONModImm(EncodedImm, EltBits);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000838 O << "#0x" << utohexstr(Val);
Johnny Chenc7b65912010-04-16 22:40:20 +0000839}