blob: d22f9b0144674235d5c9b0868fa1c10a059ea7c0 [file] [log] [blame]
Jim Grosbach568eeed2010-09-17 18:46:17 +00001//===-- ARM/ARMMCCodeEmitter.cpp - Convert ARM code to machine code -------===//
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 file implements the ARMMCCodeEmitter class.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "arm-emitter"
15#include "ARM.h"
Jim Grosbach42fac8e2010-10-11 23:16:21 +000016#include "ARMAddressingModes.h"
Jim Grosbachd6d4b422010-10-07 22:12:50 +000017#include "ARMInstrInfo.h"
Jim Grosbach568eeed2010-09-17 18:46:17 +000018#include "llvm/MC/MCCodeEmitter.h"
19#include "llvm/MC/MCExpr.h"
20#include "llvm/MC/MCInst.h"
Jim Grosbachd6d4b422010-10-07 22:12:50 +000021#include "llvm/ADT/Statistic.h"
Jim Grosbach568eeed2010-09-17 18:46:17 +000022#include "llvm/Support/raw_ostream.h"
23using namespace llvm;
24
Jim Grosbachd6d4b422010-10-07 22:12:50 +000025STATISTIC(MCNumEmitted, "Number of MC instructions emitted");
26
Jim Grosbach568eeed2010-09-17 18:46:17 +000027namespace {
28class ARMMCCodeEmitter : public MCCodeEmitter {
29 ARMMCCodeEmitter(const ARMMCCodeEmitter &); // DO NOT IMPLEMENT
30 void operator=(const ARMMCCodeEmitter &); // DO NOT IMPLEMENT
31 const TargetMachine &TM;
32 const TargetInstrInfo &TII;
33 MCContext &Ctx;
34
35public:
36 ARMMCCodeEmitter(TargetMachine &tm, MCContext &ctx)
37 : TM(tm), TII(*TM.getInstrInfo()), Ctx(ctx) {
Jim Grosbach568eeed2010-09-17 18:46:17 +000038 }
39
40 ~ARMMCCodeEmitter() {}
41
Jim Grosbach0de6ab32010-10-12 17:11:26 +000042 unsigned getMachineSoImmOpValue(unsigned SoImm) const;
43
Jim Grosbach9af82ba2010-10-07 21:57:55 +000044 // getBinaryCodeForInstr - TableGen'erated function for getting the
45 // binary encoding for an instruction.
Jim Grosbachbade37b2010-10-08 00:21:28 +000046 unsigned getBinaryCodeForInstr(const MCInst &MI) const;
Jim Grosbach9af82ba2010-10-07 21:57:55 +000047
48 /// getMachineOpValue - Return binary encoding of operand. If the machine
49 /// operand requires relocation, record the relocation and return zero.
Jim Grosbach3e094132010-10-08 17:45:54 +000050 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO) const;
Jim Grosbach9af82ba2010-10-07 21:57:55 +000051
Jim Grosbach3e556122010-10-26 22:37:02 +000052 /// getAddrModeImm12OpValue - Return encoding info for 'reg +/- imm12'
53 /// operand.
54 unsigned getAddrModeImm12OpValue(const MCInst &MI, unsigned Op) const;
55
Jim Grosbach08bd5492010-10-12 23:00:24 +000056 /// getCCOutOpValue - Return encoding of the 's' bit.
57 unsigned getCCOutOpValue(const MCInst &MI, unsigned Op) const {
58 // The operand is either reg0 or CPSR. The 's' bit is encoded as '0' or
59 // '1' respectively.
60 return MI.getOperand(Op).getReg() == ARM::CPSR;
61 }
Jim Grosbachef324d72010-10-12 23:53:58 +000062
Jim Grosbach2a6a93d2010-10-12 23:18:08 +000063 /// getSOImmOpValue - Return an encoded 12-bit shifted-immediate value.
64 unsigned getSOImmOpValue(const MCInst &MI, unsigned Op) const {
65 unsigned SoImm = MI.getOperand(Op).getImm();
66 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
67 assert(SoImmVal != -1 && "Not a valid so_imm value!");
68
69 // Encode rotate_imm.
70 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
71 << ARMII::SoRotImmShift;
72
73 // Encode immed_8.
74 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
75 return Binary;
76 }
Jim Grosbach08bd5492010-10-12 23:00:24 +000077
Jim Grosbachef324d72010-10-12 23:53:58 +000078 /// getSORegOpValue - Return an encoded so_reg shifted register value.
79 unsigned getSORegOpValue(const MCInst &MI, unsigned Op) const;
80
Jim Grosbachb35ad412010-10-13 19:56:10 +000081 unsigned getRotImmOpValue(const MCInst &MI, unsigned Op) const {
82 switch (MI.getOperand(Op).getImm()) {
83 default: assert (0 && "Not a valid rot_imm value!");
84 case 0: return 0;
85 case 8: return 1;
86 case 16: return 2;
87 case 24: return 3;
88 }
89 }
90
Jim Grosbach8abe32a2010-10-15 17:15:16 +000091 unsigned getImmMinusOneOpValue(const MCInst &MI, unsigned Op) const {
92 return MI.getOperand(Op).getImm() - 1;
93 }
Jim Grosbachd8a11c22010-10-29 23:21:03 +000094
Jim Grosbach0d2d2e92010-10-29 23:19:55 +000095 unsigned getNEONVcvtImm32OpValue(const MCInst &MI, unsigned Op) const {
Owen Anderson498ec202010-10-27 22:49:00 +000096 return 64 - MI.getOperand(Op).getImm();
97 }
Jim Grosbach8abe32a2010-10-15 17:15:16 +000098
Jim Grosbach3fea191052010-10-21 22:03:21 +000099 unsigned getBitfieldInvertedMaskOpValue(const MCInst &MI, unsigned Op) const;
100
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000101 unsigned getRegisterListOpValue(const MCInst &MI, unsigned Op) const;
102
103
Jim Grosbach568eeed2010-09-17 18:46:17 +0000104 unsigned getNumFixupKinds() const {
105 assert(0 && "ARMMCCodeEmitter::getNumFixupKinds() not yet implemented.");
Michael J. Spencer895dda62010-09-18 17:54:37 +0000106 return 0;
Jim Grosbach568eeed2010-09-17 18:46:17 +0000107 }
108
109 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const {
110 static MCFixupKindInfo rtn;
111 assert(0 && "ARMMCCodeEmitter::getFixupKindInfo() not yet implemented.");
112 return rtn;
113 }
114
Jim Grosbach568eeed2010-09-17 18:46:17 +0000115 void EmitByte(unsigned char C, unsigned &CurByte, raw_ostream &OS) const {
116 OS << (char)C;
117 ++CurByte;
118 }
119
120 void EmitConstant(uint64_t Val, unsigned Size, unsigned &CurByte,
121 raw_ostream &OS) const {
122 // Output the constant in little endian byte order.
123 for (unsigned i = 0; i != Size; ++i) {
124 EmitByte(Val & 255, CurByte, OS);
125 Val >>= 8;
126 }
127 }
128
129 void EmitImmediate(const MCOperand &Disp,
130 unsigned ImmSize, MCFixupKind FixupKind,
131 unsigned &CurByte, raw_ostream &OS,
132 SmallVectorImpl<MCFixup> &Fixups,
133 int ImmOffset = 0) const;
134
135 void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
136 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach568eeed2010-09-17 18:46:17 +0000137};
138
139} // end anonymous namespace
140
Jim Grosbach568eeed2010-09-17 18:46:17 +0000141MCCodeEmitter *llvm::createARMMCCodeEmitter(const Target &,
142 TargetMachine &TM,
143 MCContext &Ctx) {
144 return new ARMMCCodeEmitter(TM, Ctx);
145}
146
147void ARMMCCodeEmitter::
148EmitImmediate(const MCOperand &DispOp, unsigned Size, MCFixupKind FixupKind,
149 unsigned &CurByte, raw_ostream &OS,
150 SmallVectorImpl<MCFixup> &Fixups, int ImmOffset) const {
151 assert(0 && "ARMMCCodeEmitter::EmitImmediate() not yet implemented.");
152}
153
Jim Grosbach56ac9072010-10-08 21:45:55 +0000154/// getMachineOpValue - Return binary encoding of operand. If the machine
155/// operand requires relocation, record the relocation and return zero.
156unsigned ARMMCCodeEmitter::getMachineOpValue(const MCInst &MI,
157 const MCOperand &MO) const {
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000158 if (MO.isReg()) {
Owen Anderson90d4cf92010-10-21 20:49:13 +0000159 unsigned regno = getARMRegisterNumbering(MO.getReg());
Jim Grosbachd8a11c22010-10-29 23:21:03 +0000160
Owen Anderson90d4cf92010-10-21 20:49:13 +0000161 // Q registers are encodes as 2x their register number.
162 switch (MO.getReg()) {
163 case ARM::Q0: case ARM::Q1: case ARM::Q2: case ARM::Q3:
164 case ARM::Q4: case ARM::Q5: case ARM::Q6: case ARM::Q7:
165 case ARM::Q8: case ARM::Q9: case ARM::Q10: case ARM::Q11:
166 case ARM::Q12: case ARM::Q13: case ARM::Q14: case ARM::Q15:
167 return 2 * regno;
168 default:
169 return regno;
170 }
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000171 } else if (MO.isImm()) {
Jim Grosbach56ac9072010-10-08 21:45:55 +0000172 return static_cast<unsigned>(MO.getImm());
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000173 } else if (MO.isFPImm()) {
174 return static_cast<unsigned>(APFloat(MO.getFPImm())
175 .bitcastToAPInt().getHiBits(32).getLimitedValue());
Jim Grosbach0de6ab32010-10-12 17:11:26 +0000176 } else {
Jim Grosbach56ac9072010-10-08 21:45:55 +0000177#ifndef NDEBUG
178 errs() << MO;
179#endif
180 llvm_unreachable(0);
181 }
182 return 0;
183}
184
Jim Grosbach3e556122010-10-26 22:37:02 +0000185/// getAddrModeImm12OpValue - Return encoding info for 'reg +/- imm12'
186/// operand.
187unsigned ARMMCCodeEmitter::getAddrModeImm12OpValue(const MCInst &MI,
188 unsigned OpIdx) const {
189 // {17-13} = reg
190 // {12} = (U)nsigned (add == '1', sub == '0')
191 // {11-0} = imm12
192 const MCOperand &MO = MI.getOperand(OpIdx);
193 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
194 unsigned Reg = getARMRegisterNumbering(MO.getReg());
195 int32_t Imm12 = MO1.getImm();
Jim Grosbachab682a22010-10-28 18:34:10 +0000196 bool isAdd = Imm12 >= 0;
197 // Special value for #-0
198 if (Imm12 == INT32_MIN)
199 Imm12 = 0;
200 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
201 if (Imm12 < 0)
202 Imm12 = -Imm12;
203 uint32_t Binary = Imm12 & 0xfff;
204 if (isAdd)
Jim Grosbach3e556122010-10-26 22:37:02 +0000205 Binary |= (1 << 12);
206 Binary |= (Reg << 13);
207 return Binary;
208}
209
Jim Grosbachef324d72010-10-12 23:53:58 +0000210unsigned ARMMCCodeEmitter::getSORegOpValue(const MCInst &MI,
211 unsigned OpIdx) const {
212 // Sub-operands are [reg, reg, imm]. The first register is Rm, the reg
213 // to be shifted. The second is either Rs, the amount to shift by, or
214 // reg0 in which case the imm contains the amount to shift by.
215 // {3-0} = Rm.
216 // {4} = 1 if reg shift, 0 if imm shift
217 // {6-5} = type
218 // If reg shift:
219 // {7} = 0
220 // {11-8} = Rs
221 // else (imm shift)
222 // {11-7} = imm
223
224 const MCOperand &MO = MI.getOperand(OpIdx);
225 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
226 const MCOperand &MO2 = MI.getOperand(OpIdx + 2);
227 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
228
229 // Encode Rm.
230 unsigned Binary = getARMRegisterNumbering(MO.getReg());
231
232 // Encode the shift opcode.
233 unsigned SBits = 0;
234 unsigned Rs = MO1.getReg();
235 if (Rs) {
236 // Set shift operand (bit[7:4]).
237 // LSL - 0001
238 // LSR - 0011
239 // ASR - 0101
240 // ROR - 0111
241 // RRX - 0110 and bit[11:8] clear.
242 switch (SOpc) {
243 default: llvm_unreachable("Unknown shift opc!");
244 case ARM_AM::lsl: SBits = 0x1; break;
245 case ARM_AM::lsr: SBits = 0x3; break;
246 case ARM_AM::asr: SBits = 0x5; break;
247 case ARM_AM::ror: SBits = 0x7; break;
248 case ARM_AM::rrx: SBits = 0x6; break;
249 }
250 } else {
251 // Set shift operand (bit[6:4]).
252 // LSL - 000
253 // LSR - 010
254 // ASR - 100
255 // ROR - 110
256 switch (SOpc) {
257 default: llvm_unreachable("Unknown shift opc!");
258 case ARM_AM::lsl: SBits = 0x0; break;
259 case ARM_AM::lsr: SBits = 0x2; break;
260 case ARM_AM::asr: SBits = 0x4; break;
261 case ARM_AM::ror: SBits = 0x6; break;
262 }
263 }
264 Binary |= SBits << 4;
265 if (SOpc == ARM_AM::rrx)
266 return Binary;
267
268 // Encode the shift operation Rs or shift_imm (except rrx).
269 if (Rs) {
270 // Encode Rs bit[11:8].
271 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
272 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
273 }
274
275 // Encode shift_imm bit[11:7].
276 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
277}
278
Jim Grosbach3fea191052010-10-21 22:03:21 +0000279unsigned ARMMCCodeEmitter::getBitfieldInvertedMaskOpValue(const MCInst &MI,
280 unsigned Op) const {
281 // 10 bits. lower 5 bits are are the lsb of the mask, high five bits are the
282 // msb of the mask.
283 const MCOperand &MO = MI.getOperand(Op);
284 uint32_t v = ~MO.getImm();
285 uint32_t lsb = CountTrailingZeros_32(v);
286 uint32_t msb = (32 - CountLeadingZeros_32 (v)) - 1;
287 assert (v != 0 && lsb < 32 && msb < 32 && "Illegal bitfield mask!");
288 return lsb | (msb << 5);
289}
290
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000291unsigned ARMMCCodeEmitter::getRegisterListOpValue(const MCInst &MI,
292 unsigned Op) const {
293 // Convert a list of GPRs into a bitfield (R0 -> bit 0). For each
294 // register in the list, set the corresponding bit.
295 unsigned Binary = 0;
Jim Grosbach4b5236c2010-10-30 01:40:16 +0000296 for (unsigned i = Op, e = MI.getNumOperands(); i < e; ++i) {
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000297 unsigned regno = getARMRegisterNumbering(MI.getOperand(i).getReg());
298 Binary |= 1 << regno;
299 }
300 return Binary;
301}
302
Jim Grosbach568eeed2010-09-17 18:46:17 +0000303void ARMMCCodeEmitter::
304EncodeInstruction(const MCInst &MI, raw_ostream &OS,
305 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbachd6d4b422010-10-07 22:12:50 +0000306 unsigned Opcode = MI.getOpcode();
307 const TargetInstrDesc &Desc = TII.get(Opcode);
308 uint64_t TSFlags = Desc.TSFlags;
Jim Grosbach58f38bf2010-10-08 00:39:21 +0000309 // Keep track of the current byte being emitted.
310 unsigned CurByte = 0;
Jim Grosbachd6d4b422010-10-07 22:12:50 +0000311
312 // Pseudo instructions don't get encoded.
313 if ((TSFlags & ARMII::FormMask) == ARMII::Pseudo)
314 return;
315
316 ++MCNumEmitted; // Keep track of the # of mi's emitted
Jim Grosbach0de6ab32010-10-12 17:11:26 +0000317 unsigned Value = getBinaryCodeForInstr(MI);
Jim Grosbach3e094132010-10-08 17:45:54 +0000318 switch (Opcode) {
Jim Grosbach0de6ab32010-10-12 17:11:26 +0000319 default: break;
Jim Grosbachd6d4b422010-10-07 22:12:50 +0000320 }
Jim Grosbach0de6ab32010-10-12 17:11:26 +0000321 EmitConstant(Value, 4, CurByte, OS);
Jim Grosbach568eeed2010-09-17 18:46:17 +0000322}
Jim Grosbach9af82ba2010-10-07 21:57:55 +0000323
324// FIXME: These #defines shouldn't be necessary. Instead, tblgen should
325// be able to generate code emitter helpers for either variant, like it
326// does for the AsmWriter.
327#define ARMCodeEmitter ARMMCCodeEmitter
328#define MachineInstr MCInst
329#include "ARMGenCodeEmitter.inc"
330#undef ARMCodeEmitter
331#undef MachineInstr