blob: 0e6922128c37b32798d16fffbe0e1783faa9ba0e [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
Chris Lattner2ac19022010-11-15 05:19:05 +000014#define DEBUG_TYPE "mccodeemitter"
Jim Grosbach568eeed2010-09-17 18:46:17 +000015#include "ARM.h"
Jim Grosbach42fac8e2010-10-11 23:16:21 +000016#include "ARMAddressingModes.h"
Jim Grosbach70933262010-11-04 01:12:30 +000017#include "ARMFixupKinds.h"
Jim Grosbachd6d4b422010-10-07 22:12:50 +000018#include "ARMInstrInfo.h"
Jim Grosbach568eeed2010-09-17 18:46:17 +000019#include "llvm/MC/MCCodeEmitter.h"
20#include "llvm/MC/MCExpr.h"
21#include "llvm/MC/MCInst.h"
Jim Grosbachd6d4b422010-10-07 22:12:50 +000022#include "llvm/ADT/Statistic.h"
Jim Grosbach568eeed2010-09-17 18:46:17 +000023#include "llvm/Support/raw_ostream.h"
24using namespace llvm;
25
Jim Grosbach70933262010-11-04 01:12:30 +000026STATISTIC(MCNumEmitted, "Number of MC instructions emitted.");
27STATISTIC(MCNumCPRelocations, "Number of constant pool relocations created.");
Jim Grosbachd6d4b422010-10-07 22:12:50 +000028
Jim Grosbach568eeed2010-09-17 18:46:17 +000029namespace {
30class ARMMCCodeEmitter : public MCCodeEmitter {
31 ARMMCCodeEmitter(const ARMMCCodeEmitter &); // DO NOT IMPLEMENT
32 void operator=(const ARMMCCodeEmitter &); // DO NOT IMPLEMENT
33 const TargetMachine &TM;
34 const TargetInstrInfo &TII;
35 MCContext &Ctx;
36
37public:
38 ARMMCCodeEmitter(TargetMachine &tm, MCContext &ctx)
39 : TM(tm), TII(*TM.getInstrInfo()), Ctx(ctx) {
Jim Grosbach568eeed2010-09-17 18:46:17 +000040 }
41
42 ~ARMMCCodeEmitter() {}
43
Jim Grosbach0de6ab32010-10-12 17:11:26 +000044 unsigned getMachineSoImmOpValue(unsigned SoImm) const;
45
Jim Grosbach9af82ba2010-10-07 21:57:55 +000046 // getBinaryCodeForInstr - TableGen'erated function for getting the
47 // binary encoding for an instruction.
Jim Grosbach806e80e2010-11-03 23:52:49 +000048 unsigned getBinaryCodeForInstr(const MCInst &MI,
49 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach9af82ba2010-10-07 21:57:55 +000050
51 /// getMachineOpValue - Return binary encoding of operand. If the machine
52 /// operand requires relocation, record the relocation and return zero.
Jim Grosbach806e80e2010-11-03 23:52:49 +000053 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
54 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach9af82ba2010-10-07 21:57:55 +000055
Jason W Kim837caa92010-11-18 23:37:15 +000056 /// getMovtImmOpValue - Return the encoding for the movw/movt pair
57 uint32_t getMovtImmOpValue(const MCInst &MI, unsigned OpIdx,
58 SmallVectorImpl<MCFixup> &Fixups) const;
59
Bill Wendling92b5a2e2010-11-03 01:49:29 +000060 bool EncodeAddrModeOpValues(const MCInst &MI, unsigned OpIdx,
Jim Grosbach806e80e2010-11-03 23:52:49 +000061 unsigned &Reg, unsigned &Imm,
62 SmallVectorImpl<MCFixup> &Fixups) const;
Bill Wendling92b5a2e2010-11-03 01:49:29 +000063
Jim Grosbach662a8162010-12-06 23:57:07 +000064 /// getThumbBLTargetOpValue - Return encoding info for Thumb immediate
Bill Wendling09aa3f02010-12-09 00:39:08 +000065 /// BL branch target.
Jim Grosbach662a8162010-12-06 23:57:07 +000066 uint32_t getThumbBLTargetOpValue(const MCInst &MI, unsigned OpIdx,
67 SmallVectorImpl<MCFixup> &Fixups) const;
68
Bill Wendling09aa3f02010-12-09 00:39:08 +000069 /// getThumbBLXTargetOpValue - Return encoding info for Thumb immediate
70 /// BLX branch target.
71 uint32_t getThumbBLXTargetOpValue(const MCInst &MI, unsigned OpIdx,
72 SmallVectorImpl<MCFixup> &Fixups) const;
73
Jim Grosbache2467172010-12-10 18:21:33 +000074 /// getThumbBRTargetOpValue - Return encoding info for Thumb branch target.
75 uint32_t getThumbBRTargetOpValue(const MCInst &MI, unsigned OpIdx,
76 SmallVectorImpl<MCFixup> &Fixups) const;
77
Jim Grosbach01086452010-12-10 17:13:40 +000078 /// getThumbBCCTargetOpValue - Return encoding info for Thumb branch target.
79 uint32_t getThumbBCCTargetOpValue(const MCInst &MI, unsigned OpIdx,
80 SmallVectorImpl<MCFixup> &Fixups) const;
81
Jim Grosbach027d6e82010-12-09 19:04:53 +000082 /// getThumbCBTargetOpValue - Return encoding info for Thumb branch target.
83 uint32_t getThumbCBTargetOpValue(const MCInst &MI, unsigned OpIdx,
Bill Wendlingdff2f712010-12-08 23:01:43 +000084 SmallVectorImpl<MCFixup> &Fixups) const;
85
Jim Grosbachc466b932010-11-11 18:04:49 +000086 /// getBranchTargetOpValue - Return encoding info for 24-bit immediate
87 /// branch target.
88 uint32_t getBranchTargetOpValue(const MCInst &MI, unsigned OpIdx,
89 SmallVectorImpl<MCFixup> &Fixups) const;
90
Owen Andersonc2666002010-12-13 19:31:11 +000091 /// getUnconditionalBranchTargetOpValue - Return encoding info for 24-bit
92 /// immediate Thumb2 direct branch target.
93 uint32_t getUnconditionalBranchTargetOpValue(const MCInst &MI, unsigned OpIdx,
94 SmallVectorImpl<MCFixup> &Fixups) const;
95
96
Jim Grosbach5d14f9b2010-12-01 19:47:31 +000097 /// getAdrLabelOpValue - Return encoding info for 12-bit immediate
98 /// ADR label target.
99 uint32_t getAdrLabelOpValue(const MCInst &MI, unsigned OpIdx,
100 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbachd40963c2010-12-14 22:28:03 +0000101 uint32_t getThumbAdrLabelOpValue(const MCInst &MI, unsigned OpIdx,
102 SmallVectorImpl<MCFixup> &Fixups) const;
Owen Andersona838a252010-12-14 00:36:49 +0000103 uint32_t getT2AdrLabelOpValue(const MCInst &MI, unsigned OpIdx,
104 SmallVectorImpl<MCFixup> &Fixups) const;
105
Jim Grosbach5d14f9b2010-12-01 19:47:31 +0000106
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000107 /// getAddrModeImm12OpValue - Return encoding info for 'reg +/- imm12'
108 /// operand.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000109 uint32_t getAddrModeImm12OpValue(const MCInst &MI, unsigned OpIdx,
110 SmallVectorImpl<MCFixup> &Fixups) const;
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000111
Bill Wendlingf4caf692010-12-14 03:36:38 +0000112 /// getThumbAddrModeRegRegOpValue - Return encoding for 'reg + reg' operand.
113 uint32_t getThumbAddrModeRegRegOpValue(const MCInst &MI, unsigned OpIdx,
114 SmallVectorImpl<MCFixup> &Fixups)const;
Owen Anderson0f4b60d2010-12-10 22:11:13 +0000115
Owen Anderson9d63d902010-12-01 19:18:46 +0000116 /// getT2AddrModeImm8s4OpValue - Return encoding info for 'reg +/- imm8<<2'
117 /// operand.
118 uint32_t getT2AddrModeImm8s4OpValue(const MCInst &MI, unsigned OpIdx,
119 SmallVectorImpl<MCFixup> &Fixups) const;
120
121
Jim Grosbach54fea632010-11-09 17:20:53 +0000122 /// getLdStSORegOpValue - Return encoding info for 'reg +/- reg shop imm'
123 /// operand as needed by load/store instructions.
124 uint32_t getLdStSORegOpValue(const MCInst &MI, unsigned OpIdx,
125 SmallVectorImpl<MCFixup> &Fixups) const;
126
Jim Grosbach5d5eb9e2010-11-10 23:38:36 +0000127 /// getLdStmModeOpValue - Return encoding for load/store multiple mode.
128 uint32_t getLdStmModeOpValue(const MCInst &MI, unsigned OpIdx,
129 SmallVectorImpl<MCFixup> &Fixups) const {
130 ARM_AM::AMSubMode Mode = (ARM_AM::AMSubMode)MI.getOperand(OpIdx).getImm();
131 switch (Mode) {
132 default: assert(0 && "Unknown addressing sub-mode!");
133 case ARM_AM::da: return 0;
134 case ARM_AM::ia: return 1;
135 case ARM_AM::db: return 2;
136 case ARM_AM::ib: return 3;
137 }
138 }
Jim Grosbach99f53d12010-11-15 20:47:07 +0000139 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
140 ///
141 unsigned getShiftOp(ARM_AM::ShiftOpc ShOpc) const {
142 switch (ShOpc) {
143 default: llvm_unreachable("Unknown shift opc!");
144 case ARM_AM::no_shift:
145 case ARM_AM::lsl: return 0;
146 case ARM_AM::lsr: return 1;
147 case ARM_AM::asr: return 2;
148 case ARM_AM::ror:
149 case ARM_AM::rrx: return 3;
150 }
151 return 0;
152 }
153
154 /// getAddrMode2OpValue - Return encoding for addrmode2 operands.
155 uint32_t getAddrMode2OpValue(const MCInst &MI, unsigned OpIdx,
156 SmallVectorImpl<MCFixup> &Fixups) const;
157
158 /// getAddrMode2OffsetOpValue - Return encoding for am2offset operands.
159 uint32_t getAddrMode2OffsetOpValue(const MCInst &MI, unsigned OpIdx,
160 SmallVectorImpl<MCFixup> &Fixups) const;
161
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000162 /// getAddrMode3OffsetOpValue - Return encoding for am3offset operands.
163 uint32_t getAddrMode3OffsetOpValue(const MCInst &MI, unsigned OpIdx,
164 SmallVectorImpl<MCFixup> &Fixups) const;
165
Jim Grosbach570a9222010-11-11 01:09:40 +0000166 /// getAddrMode3OpValue - Return encoding for addrmode3 operands.
167 uint32_t getAddrMode3OpValue(const MCInst &MI, unsigned OpIdx,
168 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach5d5eb9e2010-11-10 23:38:36 +0000169
Jim Grosbachd967cd02010-12-07 21:50:47 +0000170 /// getAddrModeThumbSPOpValue - Return encoding info for 'reg +/- imm12'
171 /// operand.
172 uint32_t getAddrModeThumbSPOpValue(const MCInst &MI, unsigned OpIdx,
173 SmallVectorImpl<MCFixup> &Fixups) const;
174
Bill Wendlingf4caf692010-12-14 03:36:38 +0000175 /// getAddrModeISOpValue - Encode the t_addrmode_is# operands.
176 uint32_t getAddrModeISOpValue(const MCInst &MI, unsigned OpIdx,
Bill Wendling22447ae2010-12-15 08:51:02 +0000177 SmallVectorImpl<MCFixup> &Fixups) const;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000178
Bill Wendlingb8958b02010-12-08 01:57:09 +0000179 /// getAddrModePCOpValue - Return encoding for t_addrmode_pc operands.
180 uint32_t getAddrModePCOpValue(const MCInst &MI, unsigned OpIdx,
181 SmallVectorImpl<MCFixup> &Fixups) const;
182
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000183 /// getAddrMode5OpValue - Return encoding info for 'reg +/- imm8' operand.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000184 uint32_t getAddrMode5OpValue(const MCInst &MI, unsigned OpIdx,
185 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach3e556122010-10-26 22:37:02 +0000186
Jim Grosbach08bd5492010-10-12 23:00:24 +0000187 /// getCCOutOpValue - Return encoding of the 's' bit.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000188 unsigned getCCOutOpValue(const MCInst &MI, unsigned Op,
189 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbach08bd5492010-10-12 23:00:24 +0000190 // The operand is either reg0 or CPSR. The 's' bit is encoded as '0' or
191 // '1' respectively.
192 return MI.getOperand(Op).getReg() == ARM::CPSR;
193 }
Jim Grosbachef324d72010-10-12 23:53:58 +0000194
Jim Grosbach2a6a93d2010-10-12 23:18:08 +0000195 /// getSOImmOpValue - Return an encoded 12-bit shifted-immediate value.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000196 unsigned getSOImmOpValue(const MCInst &MI, unsigned Op,
197 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbach2a6a93d2010-10-12 23:18:08 +0000198 unsigned SoImm = MI.getOperand(Op).getImm();
199 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
200 assert(SoImmVal != -1 && "Not a valid so_imm value!");
201
202 // Encode rotate_imm.
203 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
204 << ARMII::SoRotImmShift;
205
206 // Encode immed_8.
207 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
208 return Binary;
209 }
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000210
Owen Anderson5de6d842010-11-12 21:12:40 +0000211 /// getT2SOImmOpValue - Return an encoded 12-bit shifted-immediate value.
212 unsigned getT2SOImmOpValue(const MCInst &MI, unsigned Op,
213 SmallVectorImpl<MCFixup> &Fixups) const {
214 unsigned SoImm = MI.getOperand(Op).getImm();
215 unsigned Encoded = ARM_AM::getT2SOImmVal(SoImm);
216 assert(Encoded != ~0U && "Not a Thumb2 so_imm value?");
217 return Encoded;
218 }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000219
Owen Anderson75579f72010-11-29 22:44:32 +0000220 unsigned getT2AddrModeSORegOpValue(const MCInst &MI, unsigned OpNum,
221 SmallVectorImpl<MCFixup> &Fixups) const;
222 unsigned getT2AddrModeImm8OpValue(const MCInst &MI, unsigned OpNum,
223 SmallVectorImpl<MCFixup> &Fixups) const;
Owen Anderson6af50f72010-11-30 00:14:31 +0000224 unsigned getT2AddrModeImm8OffsetOpValue(const MCInst &MI, unsigned OpNum,
225 SmallVectorImpl<MCFixup> &Fixups) const;
Owen Anderson0e1bcdf2010-11-30 19:19:31 +0000226 unsigned getT2AddrModeImm12OffsetOpValue(const MCInst &MI, unsigned OpNum,
227 SmallVectorImpl<MCFixup> &Fixups) const;
Owen Anderson75579f72010-11-29 22:44:32 +0000228
Jim Grosbachef324d72010-10-12 23:53:58 +0000229 /// getSORegOpValue - Return an encoded so_reg shifted register value.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000230 unsigned getSORegOpValue(const MCInst &MI, unsigned Op,
231 SmallVectorImpl<MCFixup> &Fixups) const;
Owen Anderson5de6d842010-11-12 21:12:40 +0000232 unsigned getT2SORegOpValue(const MCInst &MI, unsigned Op,
233 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbachef324d72010-10-12 23:53:58 +0000234
Jim Grosbach806e80e2010-11-03 23:52:49 +0000235 unsigned getRotImmOpValue(const MCInst &MI, unsigned Op,
236 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbachb35ad412010-10-13 19:56:10 +0000237 switch (MI.getOperand(Op).getImm()) {
238 default: assert (0 && "Not a valid rot_imm value!");
239 case 0: return 0;
240 case 8: return 1;
241 case 16: return 2;
242 case 24: return 3;
243 }
244 }
245
Jim Grosbach806e80e2010-11-03 23:52:49 +0000246 unsigned getImmMinusOneOpValue(const MCInst &MI, unsigned Op,
247 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000248 return MI.getOperand(Op).getImm() - 1;
249 }
Jim Grosbachd8a11c22010-10-29 23:21:03 +0000250
Jim Grosbach806e80e2010-11-03 23:52:49 +0000251 unsigned getNEONVcvtImm32OpValue(const MCInst &MI, unsigned Op,
252 SmallVectorImpl<MCFixup> &Fixups) const {
Owen Anderson498ec202010-10-27 22:49:00 +0000253 return 64 - MI.getOperand(Op).getImm();
254 }
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000255
Jim Grosbach806e80e2010-11-03 23:52:49 +0000256 unsigned getBitfieldInvertedMaskOpValue(const MCInst &MI, unsigned Op,
257 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach3fea191052010-10-21 22:03:21 +0000258
Jim Grosbach806e80e2010-11-03 23:52:49 +0000259 unsigned getRegisterListOpValue(const MCInst &MI, unsigned Op,
260 SmallVectorImpl<MCFixup> &Fixups) const;
261 unsigned getAddrMode6AddressOpValue(const MCInst &MI, unsigned Op,
262 SmallVectorImpl<MCFixup> &Fixups) const;
Bob Wilson8e0c7b52010-11-30 00:00:42 +0000263 unsigned getAddrMode6DupAddressOpValue(const MCInst &MI, unsigned Op,
264 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach806e80e2010-11-03 23:52:49 +0000265 unsigned getAddrMode6OffsetOpValue(const MCInst &MI, unsigned Op,
266 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000267
Owen Andersonc7139a62010-11-11 19:07:48 +0000268 unsigned NEONThumb2DataIPostEncoder(const MCInst &MI,
269 unsigned EncodedValue) const;
Owen Anderson57dac882010-11-11 21:36:43 +0000270 unsigned NEONThumb2LoadStorePostEncoder(const MCInst &MI,
Bill Wendlingcf590262010-12-01 21:54:50 +0000271 unsigned EncodedValue) const;
Owen Anderson8f143912010-11-11 23:12:55 +0000272 unsigned NEONThumb2DupPostEncoder(const MCInst &MI,
Bill Wendlingcf590262010-12-01 21:54:50 +0000273 unsigned EncodedValue) const;
274
275 unsigned VFPThumb2PostEncoder(const MCInst &MI,
276 unsigned EncodedValue) const;
Owen Andersonc7139a62010-11-11 19:07:48 +0000277
Jim Grosbach70933262010-11-04 01:12:30 +0000278 void EmitByte(unsigned char C, raw_ostream &OS) const {
Jim Grosbach568eeed2010-09-17 18:46:17 +0000279 OS << (char)C;
Jim Grosbach568eeed2010-09-17 18:46:17 +0000280 }
281
Jim Grosbach70933262010-11-04 01:12:30 +0000282 void EmitConstant(uint64_t Val, unsigned Size, raw_ostream &OS) const {
Jim Grosbach568eeed2010-09-17 18:46:17 +0000283 // Output the constant in little endian byte order.
284 for (unsigned i = 0; i != Size; ++i) {
Jim Grosbach70933262010-11-04 01:12:30 +0000285 EmitByte(Val & 255, OS);
Jim Grosbach568eeed2010-09-17 18:46:17 +0000286 Val >>= 8;
287 }
288 }
289
Jim Grosbach568eeed2010-09-17 18:46:17 +0000290 void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
291 SmallVectorImpl<MCFixup> &Fixups) const;
Jim Grosbach568eeed2010-09-17 18:46:17 +0000292};
293
294} // end anonymous namespace
295
Bill Wendling0800ce72010-11-02 22:53:11 +0000296MCCodeEmitter *llvm::createARMMCCodeEmitter(const Target &, TargetMachine &TM,
297 MCContext &Ctx) {
Jim Grosbach568eeed2010-09-17 18:46:17 +0000298 return new ARMMCCodeEmitter(TM, Ctx);
299}
300
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000301/// NEONThumb2DataIPostEncoder - Post-process encoded NEON data-processing
302/// instructions, and rewrite them to their Thumb2 form if we are currently in
Owen Andersonc7139a62010-11-11 19:07:48 +0000303/// Thumb2 mode.
304unsigned ARMMCCodeEmitter::NEONThumb2DataIPostEncoder(const MCInst &MI,
305 unsigned EncodedValue) const {
306 const ARMSubtarget &Subtarget = TM.getSubtarget<ARMSubtarget>();
307 if (Subtarget.isThumb2()) {
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000308 // NEON Thumb2 data-processsing encodings are very simple: bit 24 is moved
Owen Andersonc7139a62010-11-11 19:07:48 +0000309 // to bit 12 of the high half-word (i.e. bit 28), and bits 27-24 are
310 // set to 1111.
311 unsigned Bit24 = EncodedValue & 0x01000000;
312 unsigned Bit28 = Bit24 << 4;
313 EncodedValue &= 0xEFFFFFFF;
314 EncodedValue |= Bit28;
315 EncodedValue |= 0x0F000000;
316 }
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000317
Owen Andersonc7139a62010-11-11 19:07:48 +0000318 return EncodedValue;
319}
320
Owen Anderson57dac882010-11-11 21:36:43 +0000321/// NEONThumb2LoadStorePostEncoder - Post-process encoded NEON load/store
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000322/// instructions, and rewrite them to their Thumb2 form if we are currently in
Owen Anderson57dac882010-11-11 21:36:43 +0000323/// Thumb2 mode.
324unsigned ARMMCCodeEmitter::NEONThumb2LoadStorePostEncoder(const MCInst &MI,
325 unsigned EncodedValue) const {
326 const ARMSubtarget &Subtarget = TM.getSubtarget<ARMSubtarget>();
327 if (Subtarget.isThumb2()) {
328 EncodedValue &= 0xF0FFFFFF;
329 EncodedValue |= 0x09000000;
330 }
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000331
Owen Anderson57dac882010-11-11 21:36:43 +0000332 return EncodedValue;
333}
334
Owen Anderson8f143912010-11-11 23:12:55 +0000335/// NEONThumb2DupPostEncoder - Post-process encoded NEON vdup
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000336/// instructions, and rewrite them to their Thumb2 form if we are currently in
Owen Anderson8f143912010-11-11 23:12:55 +0000337/// Thumb2 mode.
338unsigned ARMMCCodeEmitter::NEONThumb2DupPostEncoder(const MCInst &MI,
339 unsigned EncodedValue) const {
340 const ARMSubtarget &Subtarget = TM.getSubtarget<ARMSubtarget>();
341 if (Subtarget.isThumb2()) {
342 EncodedValue &= 0x00FFFFFF;
343 EncodedValue |= 0xEE000000;
344 }
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000345
Owen Anderson8f143912010-11-11 23:12:55 +0000346 return EncodedValue;
347}
348
Bill Wendlingcf590262010-12-01 21:54:50 +0000349/// VFPThumb2PostEncoder - Post-process encoded VFP instructions and rewrite
350/// them to their Thumb2 form if we are currently in Thumb2 mode.
351unsigned ARMMCCodeEmitter::
352VFPThumb2PostEncoder(const MCInst &MI, unsigned EncodedValue) const {
353 if (TM.getSubtarget<ARMSubtarget>().isThumb2()) {
354 EncodedValue &= 0x0FFFFFFF;
355 EncodedValue |= 0xE0000000;
356 }
357 return EncodedValue;
358}
Owen Anderson57dac882010-11-11 21:36:43 +0000359
Jim Grosbach56ac9072010-10-08 21:45:55 +0000360/// getMachineOpValue - Return binary encoding of operand. If the machine
361/// operand requires relocation, record the relocation and return zero.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000362unsigned ARMMCCodeEmitter::
363getMachineOpValue(const MCInst &MI, const MCOperand &MO,
364 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000365 if (MO.isReg()) {
Bill Wendling0800ce72010-11-02 22:53:11 +0000366 unsigned Reg = MO.getReg();
367 unsigned RegNo = getARMRegisterNumbering(Reg);
Jim Grosbachd8a11c22010-10-29 23:21:03 +0000368
Jim Grosbachb0708d22010-11-30 23:51:41 +0000369 // Q registers are encoded as 2x their register number.
Bill Wendling0800ce72010-11-02 22:53:11 +0000370 switch (Reg) {
371 default:
372 return RegNo;
373 case ARM::Q0: case ARM::Q1: case ARM::Q2: case ARM::Q3:
374 case ARM::Q4: case ARM::Q5: case ARM::Q6: case ARM::Q7:
375 case ARM::Q8: case ARM::Q9: case ARM::Q10: case ARM::Q11:
376 case ARM::Q12: case ARM::Q13: case ARM::Q14: case ARM::Q15:
377 return 2 * RegNo;
Owen Anderson90d4cf92010-10-21 20:49:13 +0000378 }
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000379 } else if (MO.isImm()) {
Jim Grosbach56ac9072010-10-08 21:45:55 +0000380 return static_cast<unsigned>(MO.getImm());
Bill Wendlingbbbdcd42010-10-14 02:33:26 +0000381 } else if (MO.isFPImm()) {
382 return static_cast<unsigned>(APFloat(MO.getFPImm())
383 .bitcastToAPInt().getHiBits(32).getLimitedValue());
Jim Grosbach56ac9072010-10-08 21:45:55 +0000384 }
Bill Wendling0800ce72010-11-02 22:53:11 +0000385
Jim Grosbach817c1a62010-11-19 00:27:09 +0000386 llvm_unreachable("Unable to encode MCOperand!");
Jim Grosbach56ac9072010-10-08 21:45:55 +0000387 return 0;
388}
389
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000390/// getAddrModeImmOpValue - Return encoding info for 'reg +/- imm' operand.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000391bool ARMMCCodeEmitter::
392EncodeAddrModeOpValues(const MCInst &MI, unsigned OpIdx, unsigned &Reg,
393 unsigned &Imm, SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbach3e556122010-10-26 22:37:02 +0000394 const MCOperand &MO = MI.getOperand(OpIdx);
395 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
Jim Grosbach9af3d1c2010-11-01 23:45:50 +0000396
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000397 Reg = getARMRegisterNumbering(MO.getReg());
398
399 int32_t SImm = MO1.getImm();
400 bool isAdd = true;
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000401
Jim Grosbachab682a22010-10-28 18:34:10 +0000402 // Special value for #-0
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000403 if (SImm == INT32_MIN)
404 SImm = 0;
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000405
Jim Grosbachab682a22010-10-28 18:34:10 +0000406 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000407 if (SImm < 0) {
408 SImm = -SImm;
409 isAdd = false;
410 }
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000411
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000412 Imm = SImm;
413 return isAdd;
414}
415
Bill Wendlingdff2f712010-12-08 23:01:43 +0000416/// getBranchTargetOpValue - Helper function to get the branch target operand,
417/// which is either an immediate or requires a fixup.
418static uint32_t getBranchTargetOpValue(const MCInst &MI, unsigned OpIdx,
419 unsigned FixupKind,
420 SmallVectorImpl<MCFixup> &Fixups) {
421 const MCOperand &MO = MI.getOperand(OpIdx);
422
423 // If the destination is an immediate, we have nothing to do.
424 if (MO.isImm()) return MO.getImm();
425 assert(MO.isExpr() && "Unexpected branch target type!");
426 const MCExpr *Expr = MO.getExpr();
427 MCFixupKind Kind = MCFixupKind(FixupKind);
428 Fixups.push_back(MCFixup::Create(0, Expr, Kind));
429
430 // All of the information is in the fixup.
431 return 0;
432}
433
434/// getThumbBLTargetOpValue - Return encoding info for immediate branch target.
Jim Grosbach662a8162010-12-06 23:57:07 +0000435uint32_t ARMMCCodeEmitter::
436getThumbBLTargetOpValue(const MCInst &MI, unsigned OpIdx,
437 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendlingdff2f712010-12-08 23:01:43 +0000438 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_thumb_bl, Fixups);
Jim Grosbach662a8162010-12-06 23:57:07 +0000439}
440
Bill Wendling09aa3f02010-12-09 00:39:08 +0000441/// getThumbBLXTargetOpValue - Return encoding info for Thumb immediate
442/// BLX branch target.
443uint32_t ARMMCCodeEmitter::
444getThumbBLXTargetOpValue(const MCInst &MI, unsigned OpIdx,
445 SmallVectorImpl<MCFixup> &Fixups) const {
446 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_thumb_blx, Fixups);
447}
448
Jim Grosbache2467172010-12-10 18:21:33 +0000449/// getThumbBRTargetOpValue - Return encoding info for Thumb branch target.
450uint32_t ARMMCCodeEmitter::
451getThumbBRTargetOpValue(const MCInst &MI, unsigned OpIdx,
452 SmallVectorImpl<MCFixup> &Fixups) const {
453 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_thumb_br, Fixups);
454}
455
Jim Grosbach01086452010-12-10 17:13:40 +0000456/// getThumbBCCTargetOpValue - Return encoding info for Thumb branch target.
457uint32_t ARMMCCodeEmitter::
458getThumbBCCTargetOpValue(const MCInst &MI, unsigned OpIdx,
Jim Grosbache2467172010-12-10 18:21:33 +0000459 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbach01086452010-12-10 17:13:40 +0000460 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_thumb_bcc, Fixups);
461}
462
Jim Grosbach027d6e82010-12-09 19:04:53 +0000463/// getThumbCBTargetOpValue - Return encoding info for Thumb branch target.
Bill Wendlingdff2f712010-12-08 23:01:43 +0000464uint32_t ARMMCCodeEmitter::
Jim Grosbach027d6e82010-12-09 19:04:53 +0000465getThumbCBTargetOpValue(const MCInst &MI, unsigned OpIdx,
Bill Wendlingdff2f712010-12-08 23:01:43 +0000466 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbachb492a7c2010-12-09 19:50:12 +0000467 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_thumb_cb, Fixups);
Bill Wendlingdff2f712010-12-08 23:01:43 +0000468}
469
470/// getBranchTargetOpValue - Return encoding info for 24-bit immediate branch
471/// target.
Jim Grosbachc466b932010-11-11 18:04:49 +0000472uint32_t ARMMCCodeEmitter::
473getBranchTargetOpValue(const MCInst &MI, unsigned OpIdx,
Bill Wendlingdff2f712010-12-08 23:01:43 +0000474 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbach092e2cd2010-12-10 23:41:10 +0000475 // FIXME: This really, really shouldn't use TargetMachine. We don't want
476 // coupling between MC and TM anywhere we can help it.
Owen Andersonfb20d892010-12-09 00:27:41 +0000477 const ARMSubtarget &Subtarget = TM.getSubtarget<ARMSubtarget>();
478 if (Subtarget.isThumb2())
Owen Andersonc2666002010-12-13 19:31:11 +0000479 return
480 ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_t2_condbranch, Fixups);
Bill Wendlingdff2f712010-12-08 23:01:43 +0000481 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_branch, Fixups);
Jim Grosbachc466b932010-11-11 18:04:49 +0000482}
483
Owen Andersonc2666002010-12-13 19:31:11 +0000484/// getUnconditionalBranchTargetOpValue - Return encoding info for 24-bit
485/// immediate branch target.
486uint32_t ARMMCCodeEmitter::
487getUnconditionalBranchTargetOpValue(const MCInst &MI, unsigned OpIdx,
488 SmallVectorImpl<MCFixup> &Fixups) const {
489 unsigned Val =
490 ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_t2_uncondbranch, Fixups);
491 bool I = (Val & 0x800000);
492 bool J1 = (Val & 0x400000);
493 bool J2 = (Val & 0x200000);
494 if (I ^ J1)
495 Val &= ~0x400000;
496 else
497 Val |= 0x400000;
498
499 if (I ^ J2)
500 Val &= ~0x200000;
501 else
502 Val |= 0x200000;
503
504 return Val;
505}
506
Bill Wendlingdff2f712010-12-08 23:01:43 +0000507/// getAdrLabelOpValue - Return encoding info for 12-bit immediate ADR label
508/// target.
Jim Grosbach5d14f9b2010-12-01 19:47:31 +0000509uint32_t ARMMCCodeEmitter::
510getAdrLabelOpValue(const MCInst &MI, unsigned OpIdx,
511 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendlingdff2f712010-12-08 23:01:43 +0000512 assert(MI.getOperand(OpIdx).isExpr() && "Unexpected adr target type!");
513 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_adr_pcrel_12,
514 Fixups);
Jim Grosbach5d14f9b2010-12-01 19:47:31 +0000515}
516
Owen Andersona838a252010-12-14 00:36:49 +0000517/// getAdrLabelOpValue - Return encoding info for 12-bit immediate ADR label
518/// target.
519uint32_t ARMMCCodeEmitter::
520getT2AdrLabelOpValue(const MCInst &MI, unsigned OpIdx,
521 SmallVectorImpl<MCFixup> &Fixups) const {
522 assert(MI.getOperand(OpIdx).isExpr() && "Unexpected adr target type!");
523 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_t2_adr_pcrel_12,
524 Fixups);
525}
526
Jim Grosbachd40963c2010-12-14 22:28:03 +0000527/// getAdrLabelOpValue - Return encoding info for 8-bit immediate ADR label
528/// target.
529uint32_t ARMMCCodeEmitter::
530getThumbAdrLabelOpValue(const MCInst &MI, unsigned OpIdx,
531 SmallVectorImpl<MCFixup> &Fixups) const {
532 assert(MI.getOperand(OpIdx).isExpr() && "Unexpected adr target type!");
533 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_thumb_adr_pcrel_10,
534 Fixups);
535}
536
Bill Wendlingf4caf692010-12-14 03:36:38 +0000537/// getThumbAddrModeRegRegOpValue - Return encoding info for 'reg + reg'
538/// operand.
Owen Anderson0f4b60d2010-12-10 22:11:13 +0000539uint32_t ARMMCCodeEmitter::
Bill Wendlingf4caf692010-12-14 03:36:38 +0000540getThumbAddrModeRegRegOpValue(const MCInst &MI, unsigned OpIdx,
541 SmallVectorImpl<MCFixup> &) const {
542 // [Rn, Rm]
543 // {5-3} = Rm
544 // {2-0} = Rn
Owen Anderson0f4b60d2010-12-10 22:11:13 +0000545 const MCOperand &MO1 = MI.getOperand(OpIdx);
Bill Wendlingf4caf692010-12-14 03:36:38 +0000546 const MCOperand &MO2 = MI.getOperand(OpIdx + 1);
Owen Anderson0f4b60d2010-12-10 22:11:13 +0000547 unsigned Rn = getARMRegisterNumbering(MO1.getReg());
548 unsigned Rm = getARMRegisterNumbering(MO2.getReg());
549 return (Rm << 3) | Rn;
550}
551
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000552/// getAddrModeImm12OpValue - Return encoding info for 'reg +/- imm12' operand.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000553uint32_t ARMMCCodeEmitter::
554getAddrModeImm12OpValue(const MCInst &MI, unsigned OpIdx,
555 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000556 // {17-13} = reg
557 // {12} = (U)nsigned (add == '1', sub == '0')
558 // {11-0} = imm12
559 unsigned Reg, Imm12;
Jim Grosbach70933262010-11-04 01:12:30 +0000560 bool isAdd = true;
561 // If The first operand isn't a register, we have a label reference.
562 const MCOperand &MO = MI.getOperand(OpIdx);
Owen Andersoneb6779c2010-12-07 00:45:21 +0000563 const MCOperand &MO2 = MI.getOperand(OpIdx+1);
564 if (!MO.isReg() || (MO.getReg() == ARM::PC && MO2.isExpr())) {
Jim Grosbach679cbd32010-11-09 01:37:15 +0000565 Reg = getARMRegisterNumbering(ARM::PC); // Rn is PC.
Jim Grosbach70933262010-11-04 01:12:30 +0000566 Imm12 = 0;
Jim Grosbach97dd28f2010-11-30 22:40:36 +0000567 isAdd = false ; // 'U' bit is set as part of the fixup.
Jim Grosbach70933262010-11-04 01:12:30 +0000568
Owen Andersoneb6779c2010-12-07 00:45:21 +0000569 const MCExpr *Expr = 0;
570 if (!MO.isReg())
571 Expr = MO.getExpr();
572 else
573 Expr = MO2.getExpr();
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000574
Owen Andersond7b3f582010-12-09 01:51:07 +0000575 const ARMSubtarget &Subtarget = TM.getSubtarget<ARMSubtarget>();
576 MCFixupKind Kind;
577 if (Subtarget.isThumb2())
578 Kind = MCFixupKind(ARM::fixup_t2_ldst_pcrel_12);
579 else
580 Kind = MCFixupKind(ARM::fixup_arm_ldst_pcrel_12);
Jim Grosbach70933262010-11-04 01:12:30 +0000581 Fixups.push_back(MCFixup::Create(0, Expr, Kind));
582
583 ++MCNumCPRelocations;
584 } else
585 isAdd = EncodeAddrModeOpValues(MI, OpIdx, Reg, Imm12, Fixups);
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000586
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000587 uint32_t Binary = Imm12 & 0xfff;
588 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
Jim Grosbachab682a22010-10-28 18:34:10 +0000589 if (isAdd)
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000590 Binary |= (1 << 12);
591 Binary |= (Reg << 13);
592 return Binary;
593}
594
Owen Anderson9d63d902010-12-01 19:18:46 +0000595/// getT2AddrModeImm8s4OpValue - Return encoding info for
596/// 'reg +/- imm8<<2' operand.
597uint32_t ARMMCCodeEmitter::
598getT2AddrModeImm8s4OpValue(const MCInst &MI, unsigned OpIdx,
599 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbach90cc5332010-12-10 21:05:07 +0000600 // {12-9} = reg
601 // {8} = (U)nsigned (add == '1', sub == '0')
602 // {7-0} = imm8
Owen Anderson9d63d902010-12-01 19:18:46 +0000603 unsigned Reg, Imm8;
604 bool isAdd = true;
605 // If The first operand isn't a register, we have a label reference.
606 const MCOperand &MO = MI.getOperand(OpIdx);
607 if (!MO.isReg()) {
608 Reg = getARMRegisterNumbering(ARM::PC); // Rn is PC.
609 Imm8 = 0;
610 isAdd = false ; // 'U' bit is set as part of the fixup.
611
612 assert(MO.isExpr() && "Unexpected machine operand type!");
613 const MCExpr *Expr = MO.getExpr();
614 MCFixupKind Kind = MCFixupKind(ARM::fixup_arm_pcrel_10);
615 Fixups.push_back(MCFixup::Create(0, Expr, Kind));
616
617 ++MCNumCPRelocations;
618 } else
619 isAdd = EncodeAddrModeOpValues(MI, OpIdx, Reg, Imm8, Fixups);
620
621 uint32_t Binary = (Imm8 >> 2) & 0xff;
622 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
623 if (isAdd)
Jim Grosbach90cc5332010-12-10 21:05:07 +0000624 Binary |= (1 << 8);
Owen Anderson9d63d902010-12-01 19:18:46 +0000625 Binary |= (Reg << 9);
626 return Binary;
627}
628
Jim Grosbach54fea632010-11-09 17:20:53 +0000629uint32_t ARMMCCodeEmitter::
Jason W Kim837caa92010-11-18 23:37:15 +0000630getMovtImmOpValue(const MCInst &MI, unsigned OpIdx,
631 SmallVectorImpl<MCFixup> &Fixups) const {
632 // {20-16} = imm{15-12}
633 // {11-0} = imm{11-0}
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000634 const MCOperand &MO = MI.getOperand(OpIdx);
Jason W Kim837caa92010-11-18 23:37:15 +0000635 if (MO.isImm()) {
636 return static_cast<unsigned>(MO.getImm());
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000637 } else if (const MCSymbolRefExpr *Expr =
Jason W Kim837caa92010-11-18 23:37:15 +0000638 dyn_cast<MCSymbolRefExpr>(MO.getExpr())) {
639 MCFixupKind Kind;
640 switch (Expr->getKind()) {
Duncan Sands3d938932010-11-22 09:38:00 +0000641 default: assert(0 && "Unsupported ARMFixup");
Jason W Kim837caa92010-11-18 23:37:15 +0000642 case MCSymbolRefExpr::VK_ARM_HI16:
643 Kind = MCFixupKind(ARM::fixup_arm_movt_hi16);
644 break;
645 case MCSymbolRefExpr::VK_ARM_LO16:
646 Kind = MCFixupKind(ARM::fixup_arm_movw_lo16);
647 break;
Jason W Kim837caa92010-11-18 23:37:15 +0000648 }
649 Fixups.push_back(MCFixup::Create(0, Expr, Kind));
650 return 0;
Jim Grosbach817c1a62010-11-19 00:27:09 +0000651 };
652 llvm_unreachable("Unsupported MCExpr type in MCOperand!");
Jason W Kim837caa92010-11-18 23:37:15 +0000653 return 0;
654}
655
656uint32_t ARMMCCodeEmitter::
Jim Grosbach54fea632010-11-09 17:20:53 +0000657getLdStSORegOpValue(const MCInst &MI, unsigned OpIdx,
658 SmallVectorImpl<MCFixup> &Fixups) const {
659 const MCOperand &MO = MI.getOperand(OpIdx);
660 const MCOperand &MO1 = MI.getOperand(OpIdx+1);
661 const MCOperand &MO2 = MI.getOperand(OpIdx+2);
662 unsigned Rn = getARMRegisterNumbering(MO.getReg());
663 unsigned Rm = getARMRegisterNumbering(MO1.getReg());
Jim Grosbach54fea632010-11-09 17:20:53 +0000664 unsigned ShImm = ARM_AM::getAM2Offset(MO2.getImm());
665 bool isAdd = ARM_AM::getAM2Op(MO2.getImm()) == ARM_AM::add;
Jim Grosbach99f53d12010-11-15 20:47:07 +0000666 ARM_AM::ShiftOpc ShOp = ARM_AM::getAM2ShiftOpc(MO2.getImm());
667 unsigned SBits = getShiftOp(ShOp);
Jim Grosbach54fea632010-11-09 17:20:53 +0000668
669 // {16-13} = Rn
670 // {12} = isAdd
671 // {11-0} = shifter
672 // {3-0} = Rm
673 // {4} = 0
674 // {6-5} = type
675 // {11-7} = imm
Jim Grosbach570a9222010-11-11 01:09:40 +0000676 uint32_t Binary = Rm;
Jim Grosbach54fea632010-11-09 17:20:53 +0000677 Binary |= Rn << 13;
678 Binary |= SBits << 5;
679 Binary |= ShImm << 7;
680 if (isAdd)
681 Binary |= 1 << 12;
682 return Binary;
683}
684
Jim Grosbach570a9222010-11-11 01:09:40 +0000685uint32_t ARMMCCodeEmitter::
Jim Grosbach99f53d12010-11-15 20:47:07 +0000686getAddrMode2OpValue(const MCInst &MI, unsigned OpIdx,
687 SmallVectorImpl<MCFixup> &Fixups) const {
688 // {17-14} Rn
689 // {13} 1 == imm12, 0 == Rm
690 // {12} isAdd
691 // {11-0} imm12/Rm
692 const MCOperand &MO = MI.getOperand(OpIdx);
693 unsigned Rn = getARMRegisterNumbering(MO.getReg());
694 uint32_t Binary = getAddrMode2OffsetOpValue(MI, OpIdx + 1, Fixups);
695 Binary |= Rn << 14;
696 return Binary;
697}
698
699uint32_t ARMMCCodeEmitter::
700getAddrMode2OffsetOpValue(const MCInst &MI, unsigned OpIdx,
701 SmallVectorImpl<MCFixup> &Fixups) const {
702 // {13} 1 == imm12, 0 == Rm
703 // {12} isAdd
704 // {11-0} imm12/Rm
705 const MCOperand &MO = MI.getOperand(OpIdx);
706 const MCOperand &MO1 = MI.getOperand(OpIdx+1);
707 unsigned Imm = MO1.getImm();
708 bool isAdd = ARM_AM::getAM2Op(Imm) == ARM_AM::add;
709 bool isReg = MO.getReg() != 0;
710 uint32_t Binary = ARM_AM::getAM2Offset(Imm);
711 // if reg +/- reg, Rm will be non-zero. Otherwise, we have reg +/- imm12
712 if (isReg) {
713 ARM_AM::ShiftOpc ShOp = ARM_AM::getAM2ShiftOpc(Imm);
714 Binary <<= 7; // Shift amount is bits [11:7]
715 Binary |= getShiftOp(ShOp) << 5; // Shift type is bits [6:5]
716 Binary |= getARMRegisterNumbering(MO.getReg()); // Rm is bits [3:0]
717 }
718 return Binary | (isAdd << 12) | (isReg << 13);
719}
720
721uint32_t ARMMCCodeEmitter::
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000722getAddrMode3OffsetOpValue(const MCInst &MI, unsigned OpIdx,
723 SmallVectorImpl<MCFixup> &Fixups) const {
724 // {9} 1 == imm8, 0 == Rm
725 // {8} isAdd
726 // {7-4} imm7_4/zero
727 // {3-0} imm3_0/Rm
728 const MCOperand &MO = MI.getOperand(OpIdx);
729 const MCOperand &MO1 = MI.getOperand(OpIdx+1);
730 unsigned Imm = MO1.getImm();
731 bool isAdd = ARM_AM::getAM3Op(Imm) == ARM_AM::add;
732 bool isImm = MO.getReg() == 0;
733 uint32_t Imm8 = ARM_AM::getAM3Offset(Imm);
734 // if reg +/- reg, Rm will be non-zero. Otherwise, we have reg +/- imm8
735 if (!isImm)
736 Imm8 = getARMRegisterNumbering(MO.getReg());
737 return Imm8 | (isAdd << 8) | (isImm << 9);
738}
739
740uint32_t ARMMCCodeEmitter::
Jim Grosbach570a9222010-11-11 01:09:40 +0000741getAddrMode3OpValue(const MCInst &MI, unsigned OpIdx,
742 SmallVectorImpl<MCFixup> &Fixups) const {
743 // {13} 1 == imm8, 0 == Rm
744 // {12-9} Rn
745 // {8} isAdd
746 // {7-4} imm7_4/zero
747 // {3-0} imm3_0/Rm
748 const MCOperand &MO = MI.getOperand(OpIdx);
749 const MCOperand &MO1 = MI.getOperand(OpIdx+1);
750 const MCOperand &MO2 = MI.getOperand(OpIdx+2);
751 unsigned Rn = getARMRegisterNumbering(MO.getReg());
752 unsigned Imm = MO2.getImm();
753 bool isAdd = ARM_AM::getAM3Op(Imm) == ARM_AM::add;
754 bool isImm = MO1.getReg() == 0;
755 uint32_t Imm8 = ARM_AM::getAM3Offset(Imm);
756 // if reg +/- reg, Rm will be non-zero. Otherwise, we have reg +/- imm8
757 if (!isImm)
758 Imm8 = getARMRegisterNumbering(MO1.getReg());
759 return (Rn << 9) | Imm8 | (isAdd << 8) | (isImm << 13);
760}
761
Bill Wendlingb8958b02010-12-08 01:57:09 +0000762/// getAddrModeThumbSPOpValue - Encode the t_addrmode_sp operands.
Jim Grosbachd967cd02010-12-07 21:50:47 +0000763uint32_t ARMMCCodeEmitter::
764getAddrModeThumbSPOpValue(const MCInst &MI, unsigned OpIdx,
765 SmallVectorImpl<MCFixup> &Fixups) const {
766 // [SP, #imm]
767 // {7-0} = imm8
Jim Grosbachd967cd02010-12-07 21:50:47 +0000768 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
Bill Wendlingb8958b02010-12-08 01:57:09 +0000769 assert(MI.getOperand(OpIdx).getReg() == ARM::SP &&
770 "Unexpected base register!");
Bill Wendling7a905a82010-12-15 23:32:27 +0000771
Jim Grosbachd967cd02010-12-07 21:50:47 +0000772 // The immediate is already shifted for the implicit zeroes, so no change
773 // here.
774 return MO1.getImm() & 0xff;
775}
776
Bill Wendlingf4caf692010-12-14 03:36:38 +0000777/// getAddrModeISOpValue - Encode the t_addrmode_is# operands.
Bill Wendling272df512010-12-09 21:49:07 +0000778uint32_t ARMMCCodeEmitter::
Bill Wendlingf4caf692010-12-14 03:36:38 +0000779getAddrModeISOpValue(const MCInst &MI, unsigned OpIdx,
Bill Wendling22447ae2010-12-15 08:51:02 +0000780 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000781 // [Rn, #imm]
782 // {7-3} = imm5
783 // {2-0} = Rn
784 const MCOperand &MO = MI.getOperand(OpIdx);
785 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000786 unsigned Rn = getARMRegisterNumbering(MO.getReg());
Matt Beaumont-Gay656b3d22010-12-16 01:34:26 +0000787 unsigned Imm5 = MO1.getImm();
Bill Wendling272df512010-12-09 21:49:07 +0000788 return ((Imm5 & 0x1f) << 3) | Rn;
Bill Wendling1fd374e2010-11-30 22:57:21 +0000789}
790
Bill Wendlingb8958b02010-12-08 01:57:09 +0000791/// getAddrModePCOpValue - Return encoding for t_addrmode_pc operands.
792uint32_t ARMMCCodeEmitter::
793getAddrModePCOpValue(const MCInst &MI, unsigned OpIdx,
794 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendling09aa3f02010-12-09 00:39:08 +0000795 return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_thumb_cp, Fixups);
Bill Wendlingb8958b02010-12-08 01:57:09 +0000796}
797
Jim Grosbach5177f792010-12-01 21:09:40 +0000798/// getAddrMode5OpValue - Return encoding info for 'reg +/- imm10' operand.
Jim Grosbach806e80e2010-11-03 23:52:49 +0000799uint32_t ARMMCCodeEmitter::
800getAddrMode5OpValue(const MCInst &MI, unsigned OpIdx,
801 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000802 // {12-9} = reg
803 // {8} = (U)nsigned (add == '1', sub == '0')
804 // {7-0} = imm8
805 unsigned Reg, Imm8;
Jim Grosbach97dd28f2010-11-30 22:40:36 +0000806 bool isAdd;
Jim Grosbach70933262010-11-04 01:12:30 +0000807 // If The first operand isn't a register, we have a label reference.
808 const MCOperand &MO = MI.getOperand(OpIdx);
809 if (!MO.isReg()) {
Jim Grosbach679cbd32010-11-09 01:37:15 +0000810 Reg = getARMRegisterNumbering(ARM::PC); // Rn is PC.
Jim Grosbach70933262010-11-04 01:12:30 +0000811 Imm8 = 0;
Jim Grosbach97dd28f2010-11-30 22:40:36 +0000812 isAdd = false; // 'U' bit is handled as part of the fixup.
Jim Grosbach70933262010-11-04 01:12:30 +0000813
814 assert(MO.isExpr() && "Unexpected machine operand type!");
815 const MCExpr *Expr = MO.getExpr();
Owen Andersond8e351b2010-12-08 00:18:36 +0000816 MCFixupKind Kind;
817 const ARMSubtarget &Subtarget = TM.getSubtarget<ARMSubtarget>();
818 if (Subtarget.isThumb2())
819 Kind = MCFixupKind(ARM::fixup_t2_pcrel_10);
820 else
821 Kind = MCFixupKind(ARM::fixup_arm_pcrel_10);
Jim Grosbach70933262010-11-04 01:12:30 +0000822 Fixups.push_back(MCFixup::Create(0, Expr, Kind));
823
824 ++MCNumCPRelocations;
Jim Grosbach97dd28f2010-11-30 22:40:36 +0000825 } else {
Jim Grosbach70933262010-11-04 01:12:30 +0000826 EncodeAddrModeOpValues(MI, OpIdx, Reg, Imm8, Fixups);
Jim Grosbach97dd28f2010-11-30 22:40:36 +0000827 isAdd = ARM_AM::getAM5Op(Imm8) == ARM_AM::add;
828 }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000829
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000830 uint32_t Binary = ARM_AM::getAM5Offset(Imm8);
831 // Immediate is always encoded as positive. The 'U' bit controls add vs sub.
Jim Grosbach97dd28f2010-11-30 22:40:36 +0000832 if (isAdd)
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000833 Binary |= (1 << 8);
834 Binary |= (Reg << 9);
Jim Grosbach3e556122010-10-26 22:37:02 +0000835 return Binary;
836}
837
Jim Grosbach806e80e2010-11-03 23:52:49 +0000838unsigned ARMMCCodeEmitter::
839getSORegOpValue(const MCInst &MI, unsigned OpIdx,
840 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendling0800ce72010-11-02 22:53:11 +0000841 // Sub-operands are [reg, reg, imm]. The first register is Rm, the reg to be
842 // shifted. The second is either Rs, the amount to shift by, or reg0 in which
843 // case the imm contains the amount to shift by.
Jim Grosbach35b2de02010-11-03 22:03:20 +0000844 //
Jim Grosbachef324d72010-10-12 23:53:58 +0000845 // {3-0} = Rm.
Bill Wendling0800ce72010-11-02 22:53:11 +0000846 // {4} = 1 if reg shift, 0 if imm shift
Jim Grosbachef324d72010-10-12 23:53:58 +0000847 // {6-5} = type
848 // If reg shift:
Jim Grosbachef324d72010-10-12 23:53:58 +0000849 // {11-8} = Rs
Bill Wendling0800ce72010-11-02 22:53:11 +0000850 // {7} = 0
Jim Grosbachef324d72010-10-12 23:53:58 +0000851 // else (imm shift)
852 // {11-7} = imm
853
854 const MCOperand &MO = MI.getOperand(OpIdx);
855 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
856 const MCOperand &MO2 = MI.getOperand(OpIdx + 2);
857 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
858
859 // Encode Rm.
860 unsigned Binary = getARMRegisterNumbering(MO.getReg());
861
862 // Encode the shift opcode.
863 unsigned SBits = 0;
864 unsigned Rs = MO1.getReg();
865 if (Rs) {
866 // Set shift operand (bit[7:4]).
867 // LSL - 0001
868 // LSR - 0011
869 // ASR - 0101
870 // ROR - 0111
871 // RRX - 0110 and bit[11:8] clear.
872 switch (SOpc) {
873 default: llvm_unreachable("Unknown shift opc!");
874 case ARM_AM::lsl: SBits = 0x1; break;
875 case ARM_AM::lsr: SBits = 0x3; break;
876 case ARM_AM::asr: SBits = 0x5; break;
877 case ARM_AM::ror: SBits = 0x7; break;
878 case ARM_AM::rrx: SBits = 0x6; break;
879 }
880 } else {
881 // Set shift operand (bit[6:4]).
882 // LSL - 000
883 // LSR - 010
884 // ASR - 100
885 // ROR - 110
886 switch (SOpc) {
887 default: llvm_unreachable("Unknown shift opc!");
888 case ARM_AM::lsl: SBits = 0x0; break;
889 case ARM_AM::lsr: SBits = 0x2; break;
890 case ARM_AM::asr: SBits = 0x4; break;
891 case ARM_AM::ror: SBits = 0x6; break;
892 }
893 }
Bill Wendling0800ce72010-11-02 22:53:11 +0000894
Jim Grosbachef324d72010-10-12 23:53:58 +0000895 Binary |= SBits << 4;
896 if (SOpc == ARM_AM::rrx)
897 return Binary;
898
899 // Encode the shift operation Rs or shift_imm (except rrx).
900 if (Rs) {
901 // Encode Rs bit[11:8].
902 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
903 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
904 }
905
906 // Encode shift_imm bit[11:7].
907 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
908}
909
Jim Grosbach806e80e2010-11-03 23:52:49 +0000910unsigned ARMMCCodeEmitter::
Owen Anderson75579f72010-11-29 22:44:32 +0000911getT2AddrModeSORegOpValue(const MCInst &MI, unsigned OpNum,
912 SmallVectorImpl<MCFixup> &Fixups) const {
913 const MCOperand &MO1 = MI.getOperand(OpNum);
914 const MCOperand &MO2 = MI.getOperand(OpNum+1);
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000915 const MCOperand &MO3 = MI.getOperand(OpNum+2);
916
Owen Anderson75579f72010-11-29 22:44:32 +0000917 // Encoded as [Rn, Rm, imm].
918 // FIXME: Needs fixup support.
919 unsigned Value = getARMRegisterNumbering(MO1.getReg());
920 Value <<= 4;
921 Value |= getARMRegisterNumbering(MO2.getReg());
922 Value <<= 2;
923 Value |= MO3.getImm();
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000924
Owen Anderson75579f72010-11-29 22:44:32 +0000925 return Value;
926}
927
928unsigned ARMMCCodeEmitter::
929getT2AddrModeImm8OpValue(const MCInst &MI, unsigned OpNum,
930 SmallVectorImpl<MCFixup> &Fixups) const {
931 const MCOperand &MO1 = MI.getOperand(OpNum);
932 const MCOperand &MO2 = MI.getOperand(OpNum+1);
933
934 // FIXME: Needs fixup support.
935 unsigned Value = getARMRegisterNumbering(MO1.getReg());
Jim Grosbach7bf4c022010-12-10 21:57:34 +0000936
Owen Anderson75579f72010-11-29 22:44:32 +0000937 // Even though the immediate is 8 bits long, we need 9 bits in order
938 // to represent the (inverse of the) sign bit.
939 Value <<= 9;
Owen Anderson6af50f72010-11-30 00:14:31 +0000940 int32_t tmp = (int32_t)MO2.getImm();
941 if (tmp < 0)
942 tmp = abs(tmp);
943 else
944 Value |= 256; // Set the ADD bit
945 Value |= tmp & 255;
946 return Value;
947}
948
949unsigned ARMMCCodeEmitter::
950getT2AddrModeImm8OffsetOpValue(const MCInst &MI, unsigned OpNum,
951 SmallVectorImpl<MCFixup> &Fixups) const {
952 const MCOperand &MO1 = MI.getOperand(OpNum);
953
954 // FIXME: Needs fixup support.
955 unsigned Value = 0;
956 int32_t tmp = (int32_t)MO1.getImm();
957 if (tmp < 0)
958 tmp = abs(tmp);
959 else
960 Value |= 256; // Set the ADD bit
961 Value |= tmp & 255;
Owen Anderson75579f72010-11-29 22:44:32 +0000962 return Value;
963}
964
965unsigned ARMMCCodeEmitter::
Owen Anderson0e1bcdf2010-11-30 19:19:31 +0000966getT2AddrModeImm12OffsetOpValue(const MCInst &MI, unsigned OpNum,
967 SmallVectorImpl<MCFixup> &Fixups) const {
968 const MCOperand &MO1 = MI.getOperand(OpNum);
969
970 // FIXME: Needs fixup support.
971 unsigned Value = 0;
972 int32_t tmp = (int32_t)MO1.getImm();
973 if (tmp < 0)
974 tmp = abs(tmp);
975 else
976 Value |= 4096; // Set the ADD bit
977 Value |= tmp & 4095;
978 return Value;
979}
980
981unsigned ARMMCCodeEmitter::
Owen Anderson5de6d842010-11-12 21:12:40 +0000982getT2SORegOpValue(const MCInst &MI, unsigned OpIdx,
983 SmallVectorImpl<MCFixup> &Fixups) const {
984 // Sub-operands are [reg, imm]. The first register is Rm, the reg to be
985 // shifted. The second is the amount to shift by.
986 //
987 // {3-0} = Rm.
988 // {4} = 0
989 // {6-5} = type
990 // {11-7} = imm
991
992 const MCOperand &MO = MI.getOperand(OpIdx);
993 const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
994 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO1.getImm());
995
996 // Encode Rm.
997 unsigned Binary = getARMRegisterNumbering(MO.getReg());
998
999 // Encode the shift opcode.
1000 unsigned SBits = 0;
1001 // Set shift operand (bit[6:4]).
1002 // LSL - 000
1003 // LSR - 010
1004 // ASR - 100
1005 // ROR - 110
1006 switch (SOpc) {
1007 default: llvm_unreachable("Unknown shift opc!");
1008 case ARM_AM::lsl: SBits = 0x0; break;
1009 case ARM_AM::lsr: SBits = 0x2; break;
1010 case ARM_AM::asr: SBits = 0x4; break;
1011 case ARM_AM::ror: SBits = 0x6; break;
1012 }
1013
1014 Binary |= SBits << 4;
1015 if (SOpc == ARM_AM::rrx)
1016 return Binary;
1017
1018 // Encode shift_imm bit[11:7].
1019 return Binary | ARM_AM::getSORegOffset(MO1.getImm()) << 7;
1020}
1021
1022unsigned ARMMCCodeEmitter::
Jim Grosbach806e80e2010-11-03 23:52:49 +00001023getBitfieldInvertedMaskOpValue(const MCInst &MI, unsigned Op,
1024 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbach3fea191052010-10-21 22:03:21 +00001025 // 10 bits. lower 5 bits are are the lsb of the mask, high five bits are the
1026 // msb of the mask.
1027 const MCOperand &MO = MI.getOperand(Op);
1028 uint32_t v = ~MO.getImm();
1029 uint32_t lsb = CountTrailingZeros_32(v);
1030 uint32_t msb = (32 - CountLeadingZeros_32 (v)) - 1;
1031 assert (v != 0 && lsb < 32 && msb < 32 && "Illegal bitfield mask!");
1032 return lsb | (msb << 5);
1033}
1034
Jim Grosbach806e80e2010-11-03 23:52:49 +00001035unsigned ARMMCCodeEmitter::
1036getRegisterListOpValue(const MCInst &MI, unsigned Op,
Bill Wendling5e559a22010-11-09 00:30:18 +00001037 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendling6bc105a2010-11-17 00:45:23 +00001038 // VLDM/VSTM:
1039 // {12-8} = Vd
1040 // {7-0} = Number of registers
1041 //
1042 // LDM/STM:
1043 // {15-0} = Bitfield of GPRs.
1044 unsigned Reg = MI.getOperand(Op).getReg();
1045 bool SPRRegs = ARM::SPRRegClass.contains(Reg);
1046 bool DPRRegs = ARM::DPRRegClass.contains(Reg);
1047
Bill Wendling5e559a22010-11-09 00:30:18 +00001048 unsigned Binary = 0;
Bill Wendling6bc105a2010-11-17 00:45:23 +00001049
1050 if (SPRRegs || DPRRegs) {
1051 // VLDM/VSTM
1052 unsigned RegNo = getARMRegisterNumbering(Reg);
1053 unsigned NumRegs = (MI.getNumOperands() - Op) & 0xff;
1054 Binary |= (RegNo & 0x1f) << 8;
1055 if (SPRRegs)
1056 Binary |= NumRegs;
1057 else
1058 Binary |= NumRegs * 2;
1059 } else {
1060 for (unsigned I = Op, E = MI.getNumOperands(); I < E; ++I) {
1061 unsigned RegNo = getARMRegisterNumbering(MI.getOperand(I).getReg());
1062 Binary |= 1 << RegNo;
1063 }
Bill Wendling5e559a22010-11-09 00:30:18 +00001064 }
Bill Wendling6bc105a2010-11-17 00:45:23 +00001065
Jim Grosbach6b5252d2010-10-30 00:37:59 +00001066 return Binary;
1067}
1068
Bob Wilson8e0c7b52010-11-30 00:00:42 +00001069/// getAddrMode6AddressOpValue - Encode an addrmode6 register number along
1070/// with the alignment operand.
Jim Grosbach806e80e2010-11-03 23:52:49 +00001071unsigned ARMMCCodeEmitter::
1072getAddrMode6AddressOpValue(const MCInst &MI, unsigned Op,
1073 SmallVectorImpl<MCFixup> &Fixups) const {
Owen Andersond9aa7d32010-11-02 00:05:05 +00001074 const MCOperand &Reg = MI.getOperand(Op);
Bill Wendling0800ce72010-11-02 22:53:11 +00001075 const MCOperand &Imm = MI.getOperand(Op + 1);
Jim Grosbach35b2de02010-11-03 22:03:20 +00001076
Owen Andersond9aa7d32010-11-02 00:05:05 +00001077 unsigned RegNo = getARMRegisterNumbering(Reg.getReg());
Bill Wendling0800ce72010-11-02 22:53:11 +00001078 unsigned Align = 0;
1079
1080 switch (Imm.getImm()) {
1081 default: break;
1082 case 2:
1083 case 4:
1084 case 8: Align = 0x01; break;
1085 case 16: Align = 0x02; break;
1086 case 32: Align = 0x03; break;
Owen Andersond9aa7d32010-11-02 00:05:05 +00001087 }
Bill Wendling0800ce72010-11-02 22:53:11 +00001088
Owen Andersond9aa7d32010-11-02 00:05:05 +00001089 return RegNo | (Align << 4);
1090}
1091
Bob Wilson8e0c7b52010-11-30 00:00:42 +00001092/// getAddrMode6DupAddressOpValue - Encode an addrmode6 register number and
1093/// alignment operand for use in VLD-dup instructions. This is the same as
1094/// getAddrMode6AddressOpValue except for the alignment encoding, which is
1095/// different for VLD4-dup.
1096unsigned ARMMCCodeEmitter::
1097getAddrMode6DupAddressOpValue(const MCInst &MI, unsigned Op,
1098 SmallVectorImpl<MCFixup> &Fixups) const {
1099 const MCOperand &Reg = MI.getOperand(Op);
1100 const MCOperand &Imm = MI.getOperand(Op + 1);
1101
1102 unsigned RegNo = getARMRegisterNumbering(Reg.getReg());
1103 unsigned Align = 0;
1104
1105 switch (Imm.getImm()) {
1106 default: break;
1107 case 2:
1108 case 4:
1109 case 8: Align = 0x01; break;
1110 case 16: Align = 0x03; break;
1111 }
1112
1113 return RegNo | (Align << 4);
1114}
1115
Jim Grosbach806e80e2010-11-03 23:52:49 +00001116unsigned ARMMCCodeEmitter::
1117getAddrMode6OffsetOpValue(const MCInst &MI, unsigned Op,
1118 SmallVectorImpl<MCFixup> &Fixups) const {
Bill Wendling0800ce72010-11-02 22:53:11 +00001119 const MCOperand &MO = MI.getOperand(Op);
1120 if (MO.getReg() == 0) return 0x0D;
1121 return MO.getReg();
Owen Andersoncf667be2010-11-02 01:24:55 +00001122}
1123
Jim Grosbach568eeed2010-09-17 18:46:17 +00001124void ARMMCCodeEmitter::
1125EncodeInstruction(const MCInst &MI, raw_ostream &OS,
Jim Grosbach806e80e2010-11-03 23:52:49 +00001126 SmallVectorImpl<MCFixup> &Fixups) const {
Jim Grosbachd91f4e42010-12-03 22:31:40 +00001127 const ARMSubtarget &Subtarget = TM.getSubtarget<ARMSubtarget>();
Jim Grosbachd6d4b422010-10-07 22:12:50 +00001128 // Pseudo instructions don't get encoded.
Bill Wendling7292e0a2010-11-02 22:44:12 +00001129 const TargetInstrDesc &Desc = TII.get(MI.getOpcode());
Jim Grosbache50e6bc2010-11-11 23:41:09 +00001130 uint64_t TSFlags = Desc.TSFlags;
1131 if ((TSFlags & ARMII::FormMask) == ARMII::Pseudo)
Jim Grosbachd6d4b422010-10-07 22:12:50 +00001132 return;
Jim Grosbache50e6bc2010-11-11 23:41:09 +00001133 int Size;
1134 // Basic size info comes from the TSFlags field.
1135 switch ((TSFlags & ARMII::SizeMask) >> ARMII::SizeShift) {
1136 default: llvm_unreachable("Unexpected instruction size!");
1137 case ARMII::Size2Bytes: Size = 2; break;
1138 case ARMII::Size4Bytes: Size = 4; break;
1139 }
Jim Grosbachd91f4e42010-12-03 22:31:40 +00001140 uint32_t Binary = getBinaryCodeForInstr(MI, Fixups);
1141 // Thumb 32-bit wide instructions need to be have the high order halfword
1142 // emitted first.
1143 if (Subtarget.isThumb() && Size == 4) {
1144 EmitConstant(Binary >> 16, 2, OS);
1145 EmitConstant(Binary & 0xffff, 2, OS);
1146 } else
1147 EmitConstant(Binary, Size, OS);
Bill Wendling7292e0a2010-11-02 22:44:12 +00001148 ++MCNumEmitted; // Keep track of the # of mi's emitted.
Jim Grosbach568eeed2010-09-17 18:46:17 +00001149}
Jim Grosbach9af82ba2010-10-07 21:57:55 +00001150
Jim Grosbach806e80e2010-11-03 23:52:49 +00001151#include "ARMGenMCCodeEmitter.inc"