blob: cafd3f235c3ebfe354fe93bdfac45a80f4c0b922 [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 Grosbach08bd5492010-10-12 23:00:24 +000052 /// getCCOutOpValue - Return encoding of the 's' bit.
53 unsigned getCCOutOpValue(const MCInst &MI, unsigned Op) const {
54 // The operand is either reg0 or CPSR. The 's' bit is encoded as '0' or
55 // '1' respectively.
56 return MI.getOperand(Op).getReg() == ARM::CPSR;
57 }
Jim Grosbachef324d72010-10-12 23:53:58 +000058
Jim Grosbach2a6a93d2010-10-12 23:18:08 +000059 /// getSOImmOpValue - Return an encoded 12-bit shifted-immediate value.
60 unsigned getSOImmOpValue(const MCInst &MI, unsigned Op) const {
61 unsigned SoImm = MI.getOperand(Op).getImm();
62 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
63 assert(SoImmVal != -1 && "Not a valid so_imm value!");
64
65 // Encode rotate_imm.
66 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
67 << ARMII::SoRotImmShift;
68
69 // Encode immed_8.
70 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
71 return Binary;
72 }
Jim Grosbach08bd5492010-10-12 23:00:24 +000073
Jim Grosbachef324d72010-10-12 23:53:58 +000074 /// getSORegOpValue - Return an encoded so_reg shifted register value.
75 unsigned getSORegOpValue(const MCInst &MI, unsigned Op) const;
76
Jim Grosbachb35ad412010-10-13 19:56:10 +000077 unsigned getRotImmOpValue(const MCInst &MI, unsigned Op) const {
78 switch (MI.getOperand(Op).getImm()) {
79 default: assert (0 && "Not a valid rot_imm value!");
80 case 0: return 0;
81 case 8: return 1;
82 case 16: return 2;
83 case 24: return 3;
84 }
85 }
86
Jim Grosbach568eeed2010-09-17 18:46:17 +000087 unsigned getNumFixupKinds() const {
88 assert(0 && "ARMMCCodeEmitter::getNumFixupKinds() not yet implemented.");
Michael J. Spencer895dda62010-09-18 17:54:37 +000089 return 0;
Jim Grosbach568eeed2010-09-17 18:46:17 +000090 }
91
92 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const {
93 static MCFixupKindInfo rtn;
94 assert(0 && "ARMMCCodeEmitter::getFixupKindInfo() not yet implemented.");
95 return rtn;
96 }
97
Jim Grosbach568eeed2010-09-17 18:46:17 +000098 void EmitByte(unsigned char C, unsigned &CurByte, raw_ostream &OS) const {
99 OS << (char)C;
100 ++CurByte;
101 }
102
103 void EmitConstant(uint64_t Val, unsigned Size, unsigned &CurByte,
104 raw_ostream &OS) const {
105 // Output the constant in little endian byte order.
106 for (unsigned i = 0; i != Size; ++i) {
107 EmitByte(Val & 255, CurByte, OS);
108 Val >>= 8;
109 }
110 }
111
112 void EmitImmediate(const MCOperand &Disp,
113 unsigned ImmSize, MCFixupKind FixupKind,
114 unsigned &CurByte, raw_ostream &OS,
115 SmallVectorImpl<MCFixup> &Fixups,
116 int ImmOffset = 0) const;
117
118 void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
119 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach568eeed2010-09-17 18:46:17 +0000120};
121
122} // end anonymous namespace
123
Jim Grosbach568eeed2010-09-17 18:46:17 +0000124MCCodeEmitter *llvm::createARMMCCodeEmitter(const Target &,
125 TargetMachine &TM,
126 MCContext &Ctx) {
127 return new ARMMCCodeEmitter(TM, Ctx);
128}
129
130void ARMMCCodeEmitter::
131EmitImmediate(const MCOperand &DispOp, unsigned Size, MCFixupKind FixupKind,
132 unsigned &CurByte, raw_ostream &OS,
133 SmallVectorImpl<MCFixup> &Fixups, int ImmOffset) const {
134 assert(0 && "ARMMCCodeEmitter::EmitImmediate() not yet implemented.");
135}
136
Jim Grosbach56ac9072010-10-08 21:45:55 +0000137/// getMachineOpValue - Return binary encoding of operand. If the machine
138/// operand requires relocation, record the relocation and return zero.
139unsigned ARMMCCodeEmitter::getMachineOpValue(const MCInst &MI,
140 const MCOperand &MO) const {
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000141 if (MO.isReg()) {
Jim Grosbach56ac9072010-10-08 21:45:55 +0000142 return getARMRegisterNumbering(MO.getReg());
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000143 } else if (MO.isImm()) {
Jim Grosbach56ac9072010-10-08 21:45:55 +0000144 return static_cast<unsigned>(MO.getImm());
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000145 } else if (MO.isFPImm()) {
146 return static_cast<unsigned>(APFloat(MO.getFPImm())
147 .bitcastToAPInt().getHiBits(32).getLimitedValue());
Jim Grosbach0de6ab32010-10-12 17:11:26 +0000148 } else {
Jim Grosbach56ac9072010-10-08 21:45:55 +0000149#ifndef NDEBUG
150 errs() << MO;
151#endif
152 llvm_unreachable(0);
153 }
154 return 0;
155}
156
Jim Grosbachef324d72010-10-12 23:53:58 +0000157unsigned ARMMCCodeEmitter::getSORegOpValue(const MCInst &MI,
158 unsigned OpIdx) const {
159 // Sub-operands are [reg, reg, imm]. The first register is Rm, the reg
160 // to be shifted. The second is either Rs, the amount to shift by, or
161 // reg0 in which case the imm contains the amount to shift by.
162 // {3-0} = Rm.
163 // {4} = 1 if reg shift, 0 if imm shift
164 // {6-5} = type
165 // If reg shift:
166 // {7} = 0
167 // {11-8} = Rs
168 // else (imm shift)
169 // {11-7} = imm
170
171 const MCOperand &MO = MI.getOperand(OpIdx);
172 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
173 const MCOperand &MO2 = MI.getOperand(OpIdx + 2);
174 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
175
176 // Encode Rm.
177 unsigned Binary = getARMRegisterNumbering(MO.getReg());
178
179 // Encode the shift opcode.
180 unsigned SBits = 0;
181 unsigned Rs = MO1.getReg();
182 if (Rs) {
183 // Set shift operand (bit[7:4]).
184 // LSL - 0001
185 // LSR - 0011
186 // ASR - 0101
187 // ROR - 0111
188 // RRX - 0110 and bit[11:8] clear.
189 switch (SOpc) {
190 default: llvm_unreachable("Unknown shift opc!");
191 case ARM_AM::lsl: SBits = 0x1; break;
192 case ARM_AM::lsr: SBits = 0x3; break;
193 case ARM_AM::asr: SBits = 0x5; break;
194 case ARM_AM::ror: SBits = 0x7; break;
195 case ARM_AM::rrx: SBits = 0x6; break;
196 }
197 } else {
198 // Set shift operand (bit[6:4]).
199 // LSL - 000
200 // LSR - 010
201 // ASR - 100
202 // ROR - 110
203 switch (SOpc) {
204 default: llvm_unreachable("Unknown shift opc!");
205 case ARM_AM::lsl: SBits = 0x0; break;
206 case ARM_AM::lsr: SBits = 0x2; break;
207 case ARM_AM::asr: SBits = 0x4; break;
208 case ARM_AM::ror: SBits = 0x6; break;
209 }
210 }
211 Binary |= SBits << 4;
212 if (SOpc == ARM_AM::rrx)
213 return Binary;
214
215 // Encode the shift operation Rs or shift_imm (except rrx).
216 if (Rs) {
217 // Encode Rs bit[11:8].
218 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
219 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
220 }
221
222 // Encode shift_imm bit[11:7].
223 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
224}
225
Jim Grosbach568eeed2010-09-17 18:46:17 +0000226void ARMMCCodeEmitter::
227EncodeInstruction(const MCInst &MI, raw_ostream &OS,
228 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbachd6d4b422010-10-07 22:12:50 +0000229 unsigned Opcode = MI.getOpcode();
230 const TargetInstrDesc &Desc = TII.get(Opcode);
231 uint64_t TSFlags = Desc.TSFlags;
Jim Grosbach58f38bf2010-10-08 00:39:21 +0000232 // Keep track of the current byte being emitted.
233 unsigned CurByte = 0;
Jim Grosbachd6d4b422010-10-07 22:12:50 +0000234
235 // Pseudo instructions don't get encoded.
236 if ((TSFlags & ARMII::FormMask) == ARMII::Pseudo)
237 return;
238
239 ++MCNumEmitted; // Keep track of the # of mi's emitted
Jim Grosbach0de6ab32010-10-12 17:11:26 +0000240 unsigned Value = getBinaryCodeForInstr(MI);
Jim Grosbach3e094132010-10-08 17:45:54 +0000241 switch (Opcode) {
Jim Grosbach0de6ab32010-10-12 17:11:26 +0000242 default: break;
Jim Grosbachd6d4b422010-10-07 22:12:50 +0000243 }
Jim Grosbach0de6ab32010-10-12 17:11:26 +0000244 EmitConstant(Value, 4, CurByte, OS);
Jim Grosbach568eeed2010-09-17 18:46:17 +0000245}
Jim Grosbach9af82ba2010-10-07 21:57:55 +0000246
247// FIXME: These #defines shouldn't be necessary. Instead, tblgen should
248// be able to generate code emitter helpers for either variant, like it
249// does for the AsmWriter.
250#define ARMCodeEmitter ARMMCCodeEmitter
251#define MachineInstr MCInst
252#include "ARMGenCodeEmitter.inc"
253#undef ARMCodeEmitter
254#undef MachineInstr