blob: 5f18673a3c8da898624dc5c9b9a0fa45721cb47a [file] [log] [blame]
Jim Grosbach2cee75a2010-10-08 17:28:40 +00001//===-- ARM/ARMCodeEmitter.cpp - Convert ARM code to machine code ---------===//
Evan Cheng148b6a42007-07-05 21:15:40 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Cheng148b6a42007-07-05 21:15:40 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the pass that transforms the ARM machine instructions into
11// relocatable machine code.
12//
13//===----------------------------------------------------------------------===//
14
Evan Cheng0f282432008-10-29 23:55:43 +000015#define DEBUG_TYPE "jit"
Evan Cheng7602e112008-09-02 06:52:38 +000016#include "ARM.h"
17#include "ARMAddressingModes.h"
Evan Cheng0f282432008-10-29 23:55:43 +000018#include "ARMConstantPoolValue.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000019#include "ARMInstrInfo.h"
Evan Cheng7602e112008-09-02 06:52:38 +000020#include "ARMRelocations.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000021#include "ARMSubtarget.h"
22#include "ARMTargetMachine.h"
Jim Grosbachbc6d8762008-10-28 18:25:49 +000023#include "llvm/Constants.h"
24#include "llvm/DerivedTypes.h"
Evan Cheng42d5ee062008-09-13 01:15:21 +000025#include "llvm/Function.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000026#include "llvm/PassManager.h"
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000027#include "llvm/CodeGen/JITCodeEmitter.h"
Evan Cheng057d0c32008-09-18 07:28:19 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000029#include "llvm/CodeGen/MachineFunctionPass.h"
30#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng4df60f52008-11-07 09:06:08 +000031#include "llvm/CodeGen/MachineJumpTableInfo.h"
Daniel Dunbar003de662009-09-21 05:58:35 +000032#include "llvm/CodeGen/MachineModuleInfo.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000033#include "llvm/CodeGen/Passes.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000034#include "llvm/ADT/Statistic.h"
Evan Cheng42d5ee062008-09-13 01:15:21 +000035#include "llvm/Support/Debug.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000036#include "llvm/Support/ErrorHandling.h"
37#include "llvm/Support/raw_ostream.h"
Evan Cheng4df60f52008-11-07 09:06:08 +000038#ifndef NDEBUG
39#include <iomanip>
40#endif
Evan Cheng148b6a42007-07-05 21:15:40 +000041using namespace llvm;
42
43STATISTIC(NumEmitted, "Number of machine instructions emitted");
44
45namespace {
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000046
Chris Lattner33fabd72010-02-02 21:48:51 +000047 class ARMCodeEmitter : public MachineFunctionPass {
Evan Cheng057d0c32008-09-18 07:28:19 +000048 ARMJITInfo *JTI;
49 const ARMInstrInfo *II;
50 const TargetData *TD;
Evan Cheng08669742009-09-10 01:23:53 +000051 const ARMSubtarget *Subtarget;
Evan Cheng057d0c32008-09-18 07:28:19 +000052 TargetMachine &TM;
Chris Lattner33fabd72010-02-02 21:48:51 +000053 JITCodeEmitter &MCE;
Chris Lattner16112732010-03-14 01:41:15 +000054 MachineModuleInfo *MMI;
Evan Cheng938b9d82008-10-31 19:55:13 +000055 const std::vector<MachineConstantPoolEntry> *MCPEs;
Evan Cheng4df60f52008-11-07 09:06:08 +000056 const std::vector<MachineJumpTableEntry> *MJTEs;
57 bool IsPIC;
Bob Wilson62d24a42010-06-28 22:23:17 +000058 bool IsThumb;
Bob Wilson87949d42010-03-17 21:16:45 +000059
Daniel Dunbar003de662009-09-21 05:58:35 +000060 void getAnalysisUsage(AnalysisUsage &AU) const {
61 AU.addRequired<MachineModuleInfo>();
62 MachineFunctionPass::getAnalysisUsage(AU);
63 }
Bob Wilson87949d42010-03-17 21:16:45 +000064
Evan Cheng148b6a42007-07-05 21:15:40 +000065 static char ID;
Chris Lattner33fabd72010-02-02 21:48:51 +000066 public:
67 ARMCodeEmitter(TargetMachine &tm, JITCodeEmitter &mce)
Owen Anderson90c579d2010-08-06 18:33:48 +000068 : MachineFunctionPass(ID), JTI(0),
Dan Gohman3fb150a2010-04-17 17:42:52 +000069 II((const ARMInstrInfo *)tm.getInstrInfo()),
Chris Lattner33fabd72010-02-02 21:48:51 +000070 TD(tm.getTargetData()), TM(tm),
Bob Wilson62d24a42010-06-28 22:23:17 +000071 MCE(mce), MCPEs(0), MJTEs(0),
72 IsPIC(TM.getRelocationModel() == Reloc::PIC_), IsThumb(false) {}
Bob Wilson87949d42010-03-17 21:16:45 +000073
Chris Lattner33fabd72010-02-02 21:48:51 +000074 /// getBinaryCodeForInstr - This function, generated by the
75 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
76 /// machine instructions.
Jim Grosbachbade37b2010-10-08 00:21:28 +000077 unsigned getBinaryCodeForInstr(const MachineInstr &MI) const;
Evan Cheng148b6a42007-07-05 21:15:40 +000078
79 bool runOnMachineFunction(MachineFunction &MF);
80
81 virtual const char *getPassName() const {
82 return "ARM Machine Code Emitter";
83 }
84
85 void emitInstruction(const MachineInstr &MI);
Evan Cheng7602e112008-09-02 06:52:38 +000086
87 private:
Evan Cheng057d0c32008-09-18 07:28:19 +000088
Evan Cheng83b5cf02008-11-05 23:22:34 +000089 void emitWordLE(unsigned Binary);
Evan Chengcb5201f2008-11-11 22:19:31 +000090 void emitDWordLE(uint64_t Binary);
Evan Cheng057d0c32008-09-18 07:28:19 +000091 void emitConstPoolInstruction(const MachineInstr &MI);
Zonr Changf86399b2010-05-25 08:42:45 +000092 void emitMOVi32immInstruction(const MachineInstr &MI);
Evan Cheng90922132008-11-06 02:25:39 +000093 void emitMOVi2piecesInstruction(const MachineInstr &MI);
Evan Cheng4df60f52008-11-07 09:06:08 +000094 void emitLEApcrelJTInstruction(const MachineInstr &MI);
Evan Chenga9562552008-11-14 20:09:11 +000095 void emitPseudoMoveInstruction(const MachineInstr &MI);
Evan Cheng83b5cf02008-11-05 23:22:34 +000096 void addPCLabel(unsigned LabelID);
Evan Cheng057d0c32008-09-18 07:28:19 +000097 void emitPseudoInstruction(const MachineInstr &MI);
Evan Cheng5f1db7b2008-09-12 22:01:15 +000098 unsigned getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +000099 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000100 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000101 unsigned OpIdx);
102
Evan Cheng90922132008-11-06 02:25:39 +0000103 unsigned getMachineSoImmOpValue(unsigned SoImm);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000104 unsigned getAddrModeSBit(const MachineInstr &MI,
105 const TargetInstrDesc &TID) const;
Evan Cheng49a9f292008-09-12 22:45:55 +0000106
Evan Cheng83b5cf02008-11-05 23:22:34 +0000107 void emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000108 unsigned ImplicitRd = 0,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000109 unsigned ImplicitRn = 0);
Evan Cheng7602e112008-09-02 06:52:38 +0000110
Evan Cheng83b5cf02008-11-05 23:22:34 +0000111 void emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000112 unsigned ImplicitRd = 0,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000113 unsigned ImplicitRn = 0);
Evan Chengedda31c2008-11-05 18:35:52 +0000114
Evan Cheng83b5cf02008-11-05 23:22:34 +0000115 void emitMiscLoadStoreInstruction(const MachineInstr &MI,
116 unsigned ImplicitRn = 0);
Evan Chengedda31c2008-11-05 18:35:52 +0000117
118 void emitLoadStoreMultipleInstruction(const MachineInstr &MI);
119
Evan Chengfbc9d412008-11-06 01:21:28 +0000120 void emitMulFrmInstruction(const MachineInstr &MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000121
Evan Cheng97f48c32008-11-06 22:15:19 +0000122 void emitExtendInstruction(const MachineInstr &MI);
123
Evan Cheng8b59db32008-11-07 01:41:35 +0000124 void emitMiscArithInstruction(const MachineInstr &MI);
125
Bob Wilson9a1c1892010-08-11 00:01:18 +0000126 void emitSaturateInstruction(const MachineInstr &MI);
127
Evan Chengedda31c2008-11-05 18:35:52 +0000128 void emitBranchInstruction(const MachineInstr &MI);
129
Evan Cheng437c1732008-11-07 22:30:53 +0000130 void emitInlineJumpTable(unsigned JTIndex);
Evan Cheng4df60f52008-11-07 09:06:08 +0000131
Evan Chengedda31c2008-11-05 18:35:52 +0000132 void emitMiscBranchInstruction(const MachineInstr &MI);
Evan Cheng7602e112008-09-02 06:52:38 +0000133
Evan Cheng96581d32008-11-11 02:11:05 +0000134 void emitVFPArithInstruction(const MachineInstr &MI);
135
Evan Cheng78be83d2008-11-11 19:40:26 +0000136 void emitVFPConversionInstruction(const MachineInstr &MI);
137
Evan Chengcd8e66a2008-11-11 21:48:44 +0000138 void emitVFPLoadStoreInstruction(const MachineInstr &MI);
139
140 void emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI);
141
Bob Wilsond5a563d2010-06-29 17:34:07 +0000142 void emitNEONLaneInstruction(const MachineInstr &MI);
Bob Wilson21773e72010-06-29 20:13:29 +0000143 void emitNEONDupInstruction(const MachineInstr &MI);
Bob Wilson583a2a02010-06-25 21:17:19 +0000144 void emitNEON1RegModImmInstruction(const MachineInstr &MI);
145 void emitNEON2RegInstruction(const MachineInstr &MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +0000146 void emitNEON3RegInstruction(const MachineInstr &MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000147
Evan Cheng7602e112008-09-02 06:52:38 +0000148 /// getMachineOpValue - Return binary encoding of operand. If the machine
149 /// operand requires relocation, record the relocation and return zero.
Jim Grosbach3e094132010-10-08 17:45:54 +0000150 unsigned getMachineOpValue(const MachineInstr &MI,
151 const MachineOperand &MO) const;
152 unsigned getMachineOpValue(const MachineInstr &MI, unsigned OpIdx) const {
Evan Cheng7602e112008-09-02 06:52:38 +0000153 return getMachineOpValue(MI, MI.getOperand(OpIdx));
154 }
Evan Cheng7602e112008-09-02 06:52:38 +0000155
Jim Grosbach08bd5492010-10-12 23:00:24 +0000156 // FIXME: The legacy JIT ARMCodeEmitter doesn't rely on the the
157 // TableGen'erated getBinaryCodeForInstr() function to encode any
158 // operand values, instead querying getMachineOpValue() directly for
159 // each operand it needs to encode. Thus, any of the new encoder
160 // helper functions can simply return 0 as the values the return
161 // are already handled elsewhere. They are placeholders to allow this
162 // encoder to continue to function until the MC encoder is sufficiently
163 // far along that this one can be eliminated entirely.
Owen Andersonc7139a62010-11-11 19:07:48 +0000164 unsigned NEONThumb2DataIPostEncoder(const MachineInstr &MI, unsigned Val)
165 const { return 0; }
Owen Anderson57dac882010-11-11 21:36:43 +0000166 unsigned NEONThumb2LoadStorePostEncoder(const MachineInstr &MI,unsigned Val)
167 const { return 0; }
Owen Anderson8f143912010-11-11 23:12:55 +0000168 unsigned NEONThumb2DupPostEncoder(const MachineInstr &MI,unsigned Val)
169 const { return 0; }
Jim Grosbachc466b932010-11-11 18:04:49 +0000170 unsigned getBranchTargetOpValue(const MachineInstr &MI, unsigned Op)
171 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000172 unsigned getCCOutOpValue(const MachineInstr &MI, unsigned Op)
173 const { return 0; }
Jim Grosbach2a6a93d2010-10-12 23:18:08 +0000174 unsigned getSOImmOpValue(const MachineInstr &MI, unsigned Op)
175 const { return 0; }
Owen Anderson5de6d842010-11-12 21:12:40 +0000176 unsigned getT2SOImmOpValue(const MachineInstr &MI, unsigned Op)
177 const { return 0; }
Jim Grosbachef324d72010-10-12 23:53:58 +0000178 unsigned getSORegOpValue(const MachineInstr &MI, unsigned Op)
179 const { return 0; }
Owen Anderson75579f72010-11-29 22:44:32 +0000180 unsigned getT2AddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
181 const { return 0; }
182 unsigned getT2AddrModeImm8OpValue(const MachineInstr &MI, unsigned Op)
183 const { return 0; }
184 unsigned getT2AddrModeSORegOpValue(const MachineInstr &MI, unsigned Op)
185 const { return 0; }
Owen Anderson5de6d842010-11-12 21:12:40 +0000186 unsigned getT2SORegOpValue(const MachineInstr &MI, unsigned Op)
187 const { return 0; }
Jim Grosbachb35ad412010-10-13 19:56:10 +0000188 unsigned getRotImmOpValue(const MachineInstr &MI, unsigned Op)
189 const { return 0; }
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000190 unsigned getImmMinusOneOpValue(const MachineInstr &MI, unsigned Op)
191 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000192 unsigned getAddrMode6AddressOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersond9aa7d32010-11-02 00:05:05 +0000193 const { return 0; }
Bob Wilson8e0c7b52010-11-30 00:00:42 +0000194 unsigned getAddrMode6DupAddressOpValue(const MachineInstr &MI, unsigned Op)
195 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000196 unsigned getAddrMode6OffsetOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersoncf667be2010-11-02 01:24:55 +0000197 const { return 0; }
Jim Grosbach3fea191052010-10-21 22:03:21 +0000198 unsigned getBitfieldInvertedMaskOpValue(const MachineInstr &MI,
199 unsigned Op) const { return 0; }
Jim Grosbach5d5eb9e2010-11-10 23:38:36 +0000200 uint32_t getLdStmModeOpValue(const MachineInstr &MI, unsigned OpIdx)
201 const {return 0; }
Jim Grosbach54fea632010-11-09 17:20:53 +0000202 uint32_t getLdStSORegOpValue(const MachineInstr &MI, unsigned OpIdx)
203 const { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000204
205 unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
206 const {
207 // {17-13} = reg
208 // {12} = (U)nsigned (add == '1', sub == '0')
209 // {11-0} = imm12
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000210 const MachineOperand &MO = MI.getOperand(Op);
211 const MachineOperand &MO1 = MI.getOperand(Op + 1);
212 if (!MO.isReg()) {
213 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
214 return 0;
Jim Grosbachf31430f2010-10-27 19:55:59 +0000215 }
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000216 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000217 int32_t Imm12 = MO1.getImm();
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000218 uint32_t Binary;
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000219 Binary = Imm12 & 0xfff;
220 if (Imm12 >= 0)
221 Binary |= (1 << 12);
222 Binary |= (Reg << 13);
223 return Binary;
224 }
Jason W Kim837caa92010-11-18 23:37:15 +0000225
226 unsigned getMovtImmOpValue(const MachineInstr &MI, unsigned Op) const {
227 return 0;
228 }
229
Jim Grosbach99f53d12010-11-15 20:47:07 +0000230 uint32_t getAddrMode2OpValue(const MachineInstr &MI, unsigned OpIdx)
231 const { return 0;}
232 uint32_t getAddrMode2OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
233 const { return 0;}
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000234 uint32_t getAddrMode3OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
235 const { return 0;}
Jim Grosbach570a9222010-11-11 01:09:40 +0000236 uint32_t getAddrMode3OpValue(const MachineInstr &MI, unsigned Op) const
237 { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000238 uint32_t getAddrMode5OpValue(const MachineInstr &MI, unsigned Op) const {
Bill Wendling20272a72010-11-20 00:26:37 +0000239 // {17-13} = reg
240 // {12} = (U)nsigned (add == '1', sub == '0')
241 // {11-0} = imm12
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000242 const MachineOperand &MO = MI.getOperand(Op);
243 const MachineOperand &MO1 = MI.getOperand(Op + 1);
244 if (!MO.isReg()) {
245 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
246 return 0;
247 }
248 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling20272a72010-11-20 00:26:37 +0000249 int32_t Imm12 = MO1.getImm();
250
251 // Special value for #-0
252 if (Imm12 == INT32_MIN)
253 Imm12 = 0;
254
255 // Immediate is always encoded as positive. The 'U' bit controls add vs
256 // sub.
257 bool isAdd = true;
258 if (Imm12 < 0) {
259 Imm12 = -Imm12;
260 isAdd = false;
261 }
262
263 uint32_t Binary = Imm12 & 0xfff;
264 if (isAdd)
265 Binary |= (1 << 12);
266 Binary |= (Reg << 13);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000267 return Binary;
268 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000269 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
270 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000271
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000272 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
273 const { return 0; }
274
Shih-wei Liao5170b712010-05-26 00:02:28 +0000275 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000276 /// machine operand requires relocation, record the relocation and return
277 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000278 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000279 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000280
Evan Cheng83b5cf02008-11-05 23:22:34 +0000281 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000282 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000283 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000284
285 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000286 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000287 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000288 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000289 intptr_t ACPV = 0) const;
290 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
291 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
292 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000293 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000294 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000295 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000296}
297
Chris Lattner33fabd72010-02-02 21:48:51 +0000298char ARMCodeEmitter::ID = 0;
299
Bob Wilson87949d42010-03-17 21:16:45 +0000300/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000301/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000302FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
303 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000304 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000305}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000306
Chris Lattner33fabd72010-02-02 21:48:51 +0000307bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000308 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
309 MF.getTarget().getRelocationModel() != Reloc::Static) &&
310 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000311 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
312 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
313 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000314 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000315 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000316 MJTEs = 0;
317 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000318 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000319 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000320 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000321 MMI = &getAnalysis<MachineModuleInfo>();
322 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000323
324 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000325 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000326 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000327 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000328 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000329 MBB != E; ++MBB) {
330 MCE.StartMachineBasicBlock(MBB);
331 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
332 I != E; ++I)
333 emitInstruction(*I);
334 }
335 } while (MCE.finishFunction(MF));
336
337 return false;
338}
339
Evan Cheng83b5cf02008-11-05 23:22:34 +0000340/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000341///
Chris Lattner33fabd72010-02-02 21:48:51 +0000342unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000343 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000344 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000345 case ARM_AM::asr: return 2;
346 case ARM_AM::lsl: return 0;
347 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000348 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000349 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000350 }
Evan Cheng7602e112008-09-02 06:52:38 +0000351 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000352}
353
Shih-wei Liao5170b712010-05-26 00:02:28 +0000354/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000355/// machine operand requires relocation, record the relocation and return zero.
356unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000357 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000358 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000359 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000360 && "Relocation to this function should be for movt or movw");
361
362 if (MO.isImm())
363 return static_cast<unsigned>(MO.getImm());
364 else if (MO.isGlobal())
365 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
366 else if (MO.isSymbol())
367 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
368 else if (MO.isMBB())
369 emitMachineBasicBlock(MO.getMBB(), Reloc);
370 else {
371#ifndef NDEBUG
372 errs() << MO;
373#endif
374 llvm_unreachable("Unsupported operand type for movw/movt");
375 }
376 return 0;
377}
378
Evan Cheng7602e112008-09-02 06:52:38 +0000379/// getMachineOpValue - Return binary encoding of operand. If the machine
380/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000381unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000382 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000383 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000384 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000385 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000386 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000387 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000388 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000389 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000390 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000391 else if (MO.isCPI()) {
392 const TargetInstrDesc &TID = MI.getDesc();
393 // For VFP load, the immediate offset is multiplied by 4.
394 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
395 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
396 emitConstPoolAddress(MO.getIndex(), Reloc);
397 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000398 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000399 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000400 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Jim Grosbach817c1a62010-11-19 00:27:09 +0000401 else
402 llvm_unreachable("Unable to encode MachineOperand!");
Evan Cheng7602e112008-09-02 06:52:38 +0000403 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000404}
405
Evan Cheng057d0c32008-09-18 07:28:19 +0000406/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000407///
Dan Gohman46510a72010-04-15 01:51:59 +0000408void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000409 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000410 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000411 MachineRelocation MR = Indirect
412 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000413 const_cast<GlobalValue *>(GV),
414 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000415 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000416 const_cast<GlobalValue *>(GV), ACPV,
417 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000418 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000419}
420
421/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
422/// be emitted to the current location in the function, and allow it to be PC
423/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000424void ARMCodeEmitter::
425emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000426 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
427 Reloc, ES));
428}
429
430/// emitConstPoolAddress - Arrange for the address of an constant pool
431/// to be emitted to the current location in the function, and allow it to be PC
432/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000433void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000434 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000435 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000436 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000437}
438
439/// emitJumpTableAddress - Arrange for the address of a jump table to
440/// be emitted to the current location in the function, and allow it to be PC
441/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000442void ARMCodeEmitter::
443emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000444 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000445 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000446}
447
Raul Herbster9c1a3822007-08-30 23:29:26 +0000448/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000449void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000450 unsigned Reloc,
451 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000452 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000453 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000454}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000455
Chris Lattner33fabd72010-02-02 21:48:51 +0000456void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000457 DEBUG(errs() << " 0x";
458 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000459 MCE.emitWordLE(Binary);
460}
461
Chris Lattner33fabd72010-02-02 21:48:51 +0000462void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000463 DEBUG(errs() << " 0x";
464 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000465 MCE.emitDWordLE(Binary);
466}
467
Chris Lattner33fabd72010-02-02 21:48:51 +0000468void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000469 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000470
Devang Patelaf0e2722009-10-06 02:19:11 +0000471 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000472
Dan Gohmanfe601042010-06-22 15:08:57 +0000473 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000474 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000475 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000476 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000477 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000478 }
Jim Grosbach85eb54c2010-11-17 23:33:14 +0000479 case ARMII::MiscFrm:
480 if (MI.getOpcode() == ARM::LEApcrelJT) {
481 // Materialize jumptable address.
482 emitLEApcrelJTInstruction(MI);
483 break;
484 }
485 llvm_unreachable("Unhandled instruction encoding!");
486 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000487 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000488 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000489 break;
490 case ARMII::DPFrm:
491 case ARMII::DPSoRegFrm:
492 emitDataProcessingInstruction(MI);
493 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000494 case ARMII::LdFrm:
495 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000496 emitLoadStoreInstruction(MI);
497 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000498 case ARMII::LdMiscFrm:
499 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000500 emitMiscLoadStoreInstruction(MI);
501 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000502 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000503 emitLoadStoreMultipleInstruction(MI);
504 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000505 case ARMII::MulFrm:
506 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000507 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000508 case ARMII::ExtFrm:
509 emitExtendInstruction(MI);
510 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000511 case ARMII::ArithMiscFrm:
512 emitMiscArithInstruction(MI);
513 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000514 case ARMII::SatFrm:
515 emitSaturateInstruction(MI);
516 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000517 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000518 emitBranchInstruction(MI);
519 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000520 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000521 emitMiscBranchInstruction(MI);
522 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000523 // VFP instructions.
524 case ARMII::VFPUnaryFrm:
525 case ARMII::VFPBinaryFrm:
526 emitVFPArithInstruction(MI);
527 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000528 case ARMII::VFPConv1Frm:
529 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000530 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000531 case ARMII::VFPConv4Frm:
532 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000533 emitVFPConversionInstruction(MI);
534 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000535 case ARMII::VFPLdStFrm:
536 emitVFPLoadStoreInstruction(MI);
537 break;
538 case ARMII::VFPLdStMulFrm:
539 emitVFPLoadStoreMultipleInstruction(MI);
540 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000541
Bob Wilson1a913ed2010-06-11 21:34:50 +0000542 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000543 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000544 case ARMII::NSetLnFrm:
545 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000546 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000547 case ARMII::NDupFrm:
548 emitNEONDupInstruction(MI);
549 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000550 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000551 emitNEON1RegModImmInstruction(MI);
552 break;
553 case ARMII::N2RegFrm:
554 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000555 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000556 case ARMII::N3RegFrm:
557 emitNEON3RegInstruction(MI);
558 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000559 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000560 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000561}
562
Chris Lattner33fabd72010-02-02 21:48:51 +0000563void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000564 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
565 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000566 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000567
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000568 // Remember the CONSTPOOL_ENTRY address for later relocation.
569 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
570
571 // Emit constpool island entry. In most cases, the actual values will be
572 // resolved and relocated after code emission.
573 if (MCPE.isMachineConstantPoolEntry()) {
574 ARMConstantPoolValue *ACPV =
575 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
576
Chris Lattner705e07f2009-08-23 03:41:05 +0000577 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
578 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000579
Bob Wilson28989a82009-11-02 16:59:06 +0000580 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000581 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000582 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000583 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000584 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000585 isa<Function>(GV),
586 Subtarget->GVIsIndirectSymbol(GV, RelocM),
587 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000588 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000589 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
590 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000591 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000592 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000593 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000594
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000595 DEBUG({
596 errs() << " ** Constant pool #" << CPI << " @ "
597 << (void*)MCE.getCurrentPCValue() << " ";
598 if (const Function *F = dyn_cast<Function>(CV))
599 errs() << F->getName();
600 else
601 errs() << *CV;
602 errs() << '\n';
603 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000604
Dan Gohman46510a72010-04-15 01:51:59 +0000605 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000606 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000607 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000608 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000609 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000610 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000611 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000612 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000613 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000614 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000615 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
616 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000617 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000618 }
619 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000620 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000621 }
622 }
623}
624
Zonr Changf86399b2010-05-25 08:42:45 +0000625void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
626 const MachineOperand &MO0 = MI.getOperand(0);
627 const MachineOperand &MO1 = MI.getOperand(1);
628
629 // Emit the 'movw' instruction.
630 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
631
632 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
633
634 // Set the conditional execution predicate.
635 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
636
637 // Encode Rd.
638 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
639
640 // Encode imm16 as imm4:imm12
641 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
642 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
643 emitWordLE(Binary);
644
645 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
646 // Emit the 'movt' instruction.
647 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
648
649 // Set the conditional execution predicate.
650 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
651
652 // Encode Rd.
653 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
654
655 // Encode imm16 as imm4:imm1, same as movw above.
656 Binary |= Hi16 & 0xFFF;
657 Binary |= ((Hi16 >> 12) & 0xF) << 16;
658 emitWordLE(Binary);
659}
660
Chris Lattner33fabd72010-02-02 21:48:51 +0000661void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000662 const MachineOperand &MO0 = MI.getOperand(0);
663 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000664 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
665 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000666 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
667 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
668
669 // Emit the 'mov' instruction.
670 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
671
672 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000673 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000674
675 // Encode Rd.
676 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
677
678 // Encode so_imm.
679 // Set bit I(25) to identify this is the immediate form of <shifter_op>
680 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000681 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000682 emitWordLE(Binary);
683
684 // Now the 'orr' instruction.
685 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
686
687 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000688 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000689
690 // Encode Rd.
691 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
692
693 // Encode Rn.
694 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
695
696 // Encode so_imm.
697 // Set bit I(25) to identify this is the immediate form of <shifter_op>
698 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000699 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000700 emitWordLE(Binary);
701}
702
Chris Lattner33fabd72010-02-02 21:48:51 +0000703void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000704 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000705
Evan Cheng4df60f52008-11-07 09:06:08 +0000706 const TargetInstrDesc &TID = MI.getDesc();
707
708 // Emit the 'add' instruction.
Jim Grosbach0129be22010-11-17 21:57:51 +0000709 unsigned Binary = 0x4 << 21; // add: Insts{24-21} = 0b0100
Evan Cheng4df60f52008-11-07 09:06:08 +0000710
711 // Set the conditional execution predicate
712 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
713
714 // Encode S bit if MI modifies CPSR.
715 Binary |= getAddrModeSBit(MI, TID);
716
717 // Encode Rd.
718 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
719
720 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000721 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000722
723 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000724 Binary |= 1 << ARMII::I_BitShift;
725 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
726
727 emitWordLE(Binary);
728}
729
Chris Lattner33fabd72010-02-02 21:48:51 +0000730void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000731 unsigned Opcode = MI.getDesc().Opcode;
732
733 // Part of binary is determined by TableGn.
734 unsigned Binary = getBinaryCodeForInstr(MI);
735
736 // Set the conditional execution predicate
737 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
738
739 // Encode S bit if MI modifies CPSR.
740 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
741 Binary |= 1 << ARMII::S_BitShift;
742
743 // Encode register def if there is one.
744 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
745
746 // Encode the shift operation.
747 switch (Opcode) {
748 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000749 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000750 // rrx
751 Binary |= 0x6 << 4;
752 break;
753 case ARM::MOVsrl_flag:
754 // lsr #1
755 Binary |= (0x2 << 4) | (1 << 7);
756 break;
757 case ARM::MOVsra_flag:
758 // asr #1
759 Binary |= (0x4 << 4) | (1 << 7);
760 break;
761 }
762
763 // Encode register Rm.
764 Binary |= getMachineOpValue(MI, 1);
765
766 emitWordLE(Binary);
767}
768
Chris Lattner33fabd72010-02-02 21:48:51 +0000769void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000770 DEBUG(errs() << " ** LPC" << LabelID << " @ "
771 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000772 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
773}
774
Chris Lattner33fabd72010-02-02 21:48:51 +0000775void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000776 unsigned Opcode = MI.getDesc().Opcode;
777 switch (Opcode) {
778 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000779 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000780 case ARM::BX:
781 case ARM::BMOVPCRX:
782 case ARM::BXr9:
783 case ARM::BMOVPCRXr9: {
784 // First emit mov lr, pc
785 unsigned Binary = 0x01a0e00f;
786 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
787 emitWordLE(Binary);
788
789 // and then emit the branch.
790 emitMiscBranchInstruction(MI);
791 break;
792 }
Chris Lattner518bb532010-02-09 19:54:29 +0000793 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000794 // We allow inline assembler nodes with empty bodies - they can
795 // implicitly define registers, which is ok for JIT.
796 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000797 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000798 }
Evan Chengffa6d962008-11-13 23:36:57 +0000799 break;
800 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000801 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000802 case TargetOpcode::EH_LABEL:
803 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
804 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000805 case TargetOpcode::IMPLICIT_DEF:
806 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000807 // Do nothing.
808 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000809 case ARM::CONSTPOOL_ENTRY:
810 emitConstPoolInstruction(MI);
811 break;
812 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000813 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000814 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000815 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000816 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000817 break;
818 }
819 case ARM::PICLDR:
820 case ARM::PICLDRB:
821 case ARM::PICSTR:
822 case ARM::PICSTRB: {
823 // Remember of the address of the PC label for relocation later.
824 addPCLabel(MI.getOperand(2).getImm());
825 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000826 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000827 break;
828 }
829 case ARM::PICLDRH:
830 case ARM::PICLDRSH:
831 case ARM::PICLDRSB:
832 case ARM::PICSTRH: {
833 // Remember of the address of the PC label for relocation later.
834 addPCLabel(MI.getOperand(2).getImm());
835 // These are just load / store instructions that implicitly read pc.
836 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000837 break;
838 }
Zonr Changf86399b2010-05-25 08:42:45 +0000839
840 case ARM::MOVi32imm:
Evan Cheng893d7fe2010-11-12 23:03:38 +0000841 // Two instructions to materialize a constant.
842 if (Subtarget->hasV6T2Ops())
843 emitMOVi32immInstruction(MI);
844 else
845 emitMOVi2piecesInstruction(MI);
Zonr Changf86399b2010-05-25 08:42:45 +0000846 break;
847
Evan Cheng4df60f52008-11-07 09:06:08 +0000848 case ARM::LEApcrelJT:
849 // Materialize jumptable address.
850 emitLEApcrelJTInstruction(MI);
851 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000852 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000853 case ARM::MOVsrl_flag:
854 case ARM::MOVsra_flag:
855 emitPseudoMoveInstruction(MI);
856 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000857 }
858}
859
Bob Wilson87949d42010-03-17 21:16:45 +0000860unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000861 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000862 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000863 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000864 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000865
866 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
867 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
868 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
869
870 // Encode the shift opcode.
871 unsigned SBits = 0;
872 unsigned Rs = MO1.getReg();
873 if (Rs) {
874 // Set shift operand (bit[7:4]).
875 // LSL - 0001
876 // LSR - 0011
877 // ASR - 0101
878 // ROR - 0111
879 // RRX - 0110 and bit[11:8] clear.
880 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000881 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000882 case ARM_AM::lsl: SBits = 0x1; break;
883 case ARM_AM::lsr: SBits = 0x3; break;
884 case ARM_AM::asr: SBits = 0x5; break;
885 case ARM_AM::ror: SBits = 0x7; break;
886 case ARM_AM::rrx: SBits = 0x6; break;
887 }
888 } else {
889 // Set shift operand (bit[6:4]).
890 // LSL - 000
891 // LSR - 010
892 // ASR - 100
893 // ROR - 110
894 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000895 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000896 case ARM_AM::lsl: SBits = 0x0; break;
897 case ARM_AM::lsr: SBits = 0x2; break;
898 case ARM_AM::asr: SBits = 0x4; break;
899 case ARM_AM::ror: SBits = 0x6; break;
900 }
901 }
902 Binary |= SBits << 4;
903 if (SOpc == ARM_AM::rrx)
904 return Binary;
905
906 // Encode the shift operation Rs or shift_imm (except rrx).
907 if (Rs) {
908 // Encode Rs bit[11:8].
909 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000910 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000911 }
912
913 // Encode shift_imm bit[11:7].
914 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
915}
916
Chris Lattner33fabd72010-02-02 21:48:51 +0000917unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000918 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
919 assert(SoImmVal != -1 && "Not a valid so_imm value!");
920
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000921 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000922 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000923 << ARMII::SoRotImmShift;
924
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000925 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000926 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000927 return Binary;
928}
929
Chris Lattner33fabd72010-02-02 21:48:51 +0000930unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000931 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000932 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000933 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000934 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000935 return 1 << ARMII::S_BitShift;
936 }
937 return 0;
938}
939
Bob Wilson87949d42010-03-17 21:16:45 +0000940void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000941 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000942 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000943 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000944
945 // Part of binary is determined by TableGn.
946 unsigned Binary = getBinaryCodeForInstr(MI);
947
Jim Grosbach33412622008-10-07 19:05:35 +0000948 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000949 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000950
Evan Cheng49a9f292008-09-12 22:45:55 +0000951 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000952 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000953
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000954 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000955 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000956 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000957 if (NumDefs)
958 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
959 else if (ImplicitRd)
960 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000961 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000962
Zonr Changf86399b2010-05-25 08:42:45 +0000963 if (TID.Opcode == ARM::MOVi16) {
964 // Get immediate from MI.
965 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
966 ARM::reloc_arm_movw);
967 // Encode imm which is the same as in emitMOVi32immInstruction().
968 Binary |= Lo16 & 0xFFF;
969 Binary |= ((Lo16 >> 12) & 0xF) << 16;
970 emitWordLE(Binary);
971 return;
972 } else if(TID.Opcode == ARM::MOVTi16) {
973 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
974 ARM::reloc_arm_movt) >> 16);
975 Binary |= Hi16 & 0xFFF;
976 Binary |= ((Hi16 >> 12) & 0xF) << 16;
977 emitWordLE(Binary);
978 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +0000979 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000980 uint32_t v = ~MI.getOperand(2).getImm();
981 int32_t lsb = CountTrailingZeros_32(v);
982 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000983 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000984 Binary |= (msb & 0x1F) << 16;
985 Binary |= (lsb & 0x1F) << 7;
986 emitWordLE(Binary);
987 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000988 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
989 // Encode Rn in Instr{0-3}
990 Binary |= getMachineOpValue(MI, OpIdx++);
991
992 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
993 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
994
995 // Instr{20-16} = widthm1, Instr{11-7} = lsb
996 Binary |= (widthm1 & 0x1F) << 16;
997 Binary |= (lsb & 0x1F) << 7;
998 emitWordLE(Binary);
999 return;
Zonr Changf86399b2010-05-25 08:42:45 +00001000 }
1001
Evan Chengd87293c2008-11-06 08:47:38 +00001002 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
1003 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1004 ++OpIdx;
1005
Jim Grosbachefd30ba2008-10-01 18:16:49 +00001006 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +00001007 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
1008 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +00001009 if (ImplicitRn)
1010 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001011 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001012 else {
1013 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
1014 ++OpIdx;
1015 }
Evan Cheng7602e112008-09-02 06:52:38 +00001016 }
1017
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001018 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001019 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +00001020 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001021 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001022 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +00001023 return;
1024 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001025
Evan Chengedda31c2008-11-05 18:35:52 +00001026 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001027 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001028 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +00001029 return;
1030 }
Evan Cheng7602e112008-09-02 06:52:38 +00001031
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001032 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +00001033 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +00001034
Evan Cheng83b5cf02008-11-05 23:22:34 +00001035 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001036}
1037
Bob Wilson87949d42010-03-17 21:16:45 +00001038void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +00001039 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +00001040 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001041 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001042 unsigned Form = TID.TSFlags & ARMII::FormMask;
1043 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001044
Evan Chengedda31c2008-11-05 18:35:52 +00001045 // Part of binary is determined by TableGn.
1046 unsigned Binary = getBinaryCodeForInstr(MI);
1047
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001048 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
1049 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
1050 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +00001051 emitWordLE(Binary);
1052 return;
1053 }
1054
Jim Grosbach33412622008-10-07 19:05:35 +00001055 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001056 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001057
Evan Cheng4df60f52008-11-07 09:06:08 +00001058 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001059
1060 // Operand 0 of a pre- and post-indexed store is the address base
1061 // writeback. Skip it.
1062 bool Skipped = false;
1063 if (IsPrePost && Form == ARMII::StFrm) {
1064 ++OpIdx;
1065 Skipped = true;
1066 }
1067
1068 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001069 if (ImplicitRd)
1070 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001071 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001072 else
1073 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001074
1075 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001076 if (ImplicitRn)
1077 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001078 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001079 else
1080 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001081
Evan Cheng05c356e2008-11-08 01:44:13 +00001082 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001083 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001084 ++OpIdx;
1085
Evan Cheng83b5cf02008-11-05 23:22:34 +00001086 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001087 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001088 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001089
Evan Chenge7de7e32008-09-13 01:44:01 +00001090 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001091 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001092 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001093 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001094 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001095 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001096 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1097 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001098 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001099 }
1100
Bill Wendling7d31a162010-10-20 22:44:54 +00001101 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001102 Binary |= 1 << ARMII::I_BitShift;
1103 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1104 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001105 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001106
Evan Cheng70632912008-11-12 07:34:37 +00001107 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001108 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001109 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001110 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1111 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001112 }
1113
Evan Cheng83b5cf02008-11-05 23:22:34 +00001114 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001115}
1116
Chris Lattner33fabd72010-02-02 21:48:51 +00001117void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001118 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001119 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001120 unsigned Form = TID.TSFlags & ARMII::FormMask;
1121 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001122
Evan Chengedda31c2008-11-05 18:35:52 +00001123 // Part of binary is determined by TableGn.
1124 unsigned Binary = getBinaryCodeForInstr(MI);
1125
Jim Grosbach33412622008-10-07 19:05:35 +00001126 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001127 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001128
Evan Cheng148cad82008-11-13 07:34:59 +00001129 unsigned OpIdx = 0;
1130
1131 // Operand 0 of a pre- and post-indexed store is the address base
1132 // writeback. Skip it.
1133 bool Skipped = false;
1134 if (IsPrePost && Form == ARMII::StMiscFrm) {
1135 ++OpIdx;
1136 Skipped = true;
1137 }
1138
Evan Cheng7602e112008-09-02 06:52:38 +00001139 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001140 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001141
Evan Cheng358dec52009-06-15 08:28:29 +00001142 // Skip LDRD and STRD's second operand.
1143 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1144 ++OpIdx;
1145
Evan Cheng7602e112008-09-02 06:52:38 +00001146 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001147 if (ImplicitRn)
1148 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001149 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001150 else
1151 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001152
Evan Cheng05c356e2008-11-08 01:44:13 +00001153 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001154 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001155 ++OpIdx;
1156
Evan Cheng83b5cf02008-11-05 23:22:34 +00001157 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001158 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001159 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001160
Evan Chenge7de7e32008-09-13 01:44:01 +00001161 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001162 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001163 ARMII::U_BitShift);
1164
1165 // If this instr is in register offset/index encoding, set bit[3:0]
1166 // to the corresponding Rm register.
1167 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001168 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001169 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001170 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001171 }
1172
Evan Chengd87293c2008-11-06 08:47:38 +00001173 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001174 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001175 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001176 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001177 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1178 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001179 }
1180
Evan Cheng83b5cf02008-11-05 23:22:34 +00001181 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001182}
1183
Evan Chengcd8e66a2008-11-11 21:48:44 +00001184static unsigned getAddrModeUPBits(unsigned Mode) {
1185 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001186
1187 // Set addressing mode by modifying bits U(23) and P(24)
1188 // IA - Increment after - bit U = 1 and bit P = 0
1189 // IB - Increment before - bit U = 1 and bit P = 1
1190 // DA - Decrement after - bit U = 0 and bit P = 0
1191 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001192 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001193 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001194 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001195 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1196 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1197 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001198 }
1199
Evan Chengcd8e66a2008-11-11 21:48:44 +00001200 return Binary;
1201}
1202
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001203void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1204 const TargetInstrDesc &TID = MI.getDesc();
1205 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1206
Evan Chengcd8e66a2008-11-11 21:48:44 +00001207 // Part of binary is determined by TableGn.
1208 unsigned Binary = getBinaryCodeForInstr(MI);
1209
1210 // Set the conditional execution predicate
1211 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1212
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001213 // Skip operand 0 of an instruction with base register update.
1214 unsigned OpIdx = 0;
1215 if (IsUpdating)
1216 ++OpIdx;
1217
Evan Chengcd8e66a2008-11-11 21:48:44 +00001218 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001219 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001220
1221 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001222 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1223 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001224
Evan Cheng7602e112008-09-02 06:52:38 +00001225 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001226 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001227 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001228
1229 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001230 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001231 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001232 if (!MO.isReg() || MO.isImplicit())
1233 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001234 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001235 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1236 RegNum < 16);
1237 Binary |= 0x1 << RegNum;
1238 }
1239
Evan Cheng83b5cf02008-11-05 23:22:34 +00001240 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001241}
1242
Chris Lattner33fabd72010-02-02 21:48:51 +00001243void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001244 const TargetInstrDesc &TID = MI.getDesc();
1245
1246 // Part of binary is determined by TableGn.
1247 unsigned Binary = getBinaryCodeForInstr(MI);
1248
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001249 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001250 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001251
1252 // Encode S bit if MI modifies CPSR.
1253 Binary |= getAddrModeSBit(MI, TID);
1254
1255 // 32x32->64bit operations have two destination registers. The number
1256 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001257 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001258 if (TID.getNumDefs() == 2)
1259 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1260
1261 // Encode Rd
1262 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1263
1264 // Encode Rm
1265 Binary |= getMachineOpValue(MI, OpIdx++);
1266
1267 // Encode Rs
1268 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1269
Evan Chengfbc9d412008-11-06 01:21:28 +00001270 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1271 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001272 if (TID.getNumOperands() > OpIdx &&
1273 !TID.OpInfo[OpIdx].isPredicate() &&
1274 !TID.OpInfo[OpIdx].isOptionalDef())
1275 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1276
1277 emitWordLE(Binary);
1278}
1279
Chris Lattner33fabd72010-02-02 21:48:51 +00001280void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001281 const TargetInstrDesc &TID = MI.getDesc();
1282
1283 // Part of binary is determined by TableGn.
1284 unsigned Binary = getBinaryCodeForInstr(MI);
1285
1286 // Set the conditional execution predicate
1287 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1288
1289 unsigned OpIdx = 0;
1290
1291 // Encode Rd
1292 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1293
1294 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1295 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1296 if (MO2.isReg()) {
1297 // Two register operand form.
1298 // Encode Rn.
1299 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1300
1301 // Encode Rm.
1302 Binary |= getMachineOpValue(MI, MO2);
1303 ++OpIdx;
1304 } else {
1305 Binary |= getMachineOpValue(MI, MO1);
1306 }
1307
1308 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1309 if (MI.getOperand(OpIdx).isImm() &&
1310 !TID.OpInfo[OpIdx].isPredicate() &&
1311 !TID.OpInfo[OpIdx].isOptionalDef())
1312 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001313
Evan Cheng83b5cf02008-11-05 23:22:34 +00001314 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001315}
1316
Chris Lattner33fabd72010-02-02 21:48:51 +00001317void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001318 const TargetInstrDesc &TID = MI.getDesc();
1319
1320 // Part of binary is determined by TableGn.
1321 unsigned Binary = getBinaryCodeForInstr(MI);
1322
1323 // Set the conditional execution predicate
1324 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1325
1326 unsigned OpIdx = 0;
1327
1328 // Encode Rd
1329 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1330
1331 const MachineOperand &MO = MI.getOperand(OpIdx++);
1332 if (OpIdx == TID.getNumOperands() ||
1333 TID.OpInfo[OpIdx].isPredicate() ||
1334 TID.OpInfo[OpIdx].isOptionalDef()) {
1335 // Encode Rm and it's done.
1336 Binary |= getMachineOpValue(MI, MO);
1337 emitWordLE(Binary);
1338 return;
1339 }
1340
1341 // Encode Rn.
1342 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1343
1344 // Encode Rm.
1345 Binary |= getMachineOpValue(MI, OpIdx++);
1346
1347 // Encode shift_imm.
1348 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001349 if (TID.Opcode == ARM::PKHTB) {
1350 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1351 if (ShiftAmt == 32)
1352 ShiftAmt = 0;
1353 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001354 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1355 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001356
Evan Cheng8b59db32008-11-07 01:41:35 +00001357 emitWordLE(Binary);
1358}
1359
Bob Wilson9a1c1892010-08-11 00:01:18 +00001360void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1361 const TargetInstrDesc &TID = MI.getDesc();
1362
1363 // Part of binary is determined by TableGen.
1364 unsigned Binary = getBinaryCodeForInstr(MI);
1365
1366 // Set the conditional execution predicate
1367 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1368
1369 // Encode Rd
1370 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1371
1372 // Encode saturate bit position.
1373 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001374 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001375 Pos -= 1;
1376 assert((Pos < 16 || (Pos < 32 &&
1377 TID.Opcode != ARM::SSAT16 &&
1378 TID.Opcode != ARM::USAT16)) &&
1379 "saturate bit position out of range");
1380 Binary |= Pos << 16;
1381
1382 // Encode Rm
1383 Binary |= getMachineOpValue(MI, 2);
1384
1385 // Encode shift_imm.
1386 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001387 unsigned ShiftOp = MI.getOperand(3).getImm();
1388 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1389 if (Opc == ARM_AM::asr)
1390 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001391 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001392 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001393 ShiftAmt = 0;
1394 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1395 Binary |= ShiftAmt << ARMII::ShiftShift;
1396 }
1397
1398 emitWordLE(Binary);
1399}
1400
Chris Lattner33fabd72010-02-02 21:48:51 +00001401void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001402 const TargetInstrDesc &TID = MI.getDesc();
1403
Torok Edwindac237e2009-07-08 20:53:28 +00001404 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001405 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001406 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001407
Evan Cheng7602e112008-09-02 06:52:38 +00001408 // Part of binary is determined by TableGn.
1409 unsigned Binary = getBinaryCodeForInstr(MI);
1410
Evan Chengedda31c2008-11-05 18:35:52 +00001411 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001412 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001413
1414 // Set signed_immed_24 field
1415 Binary |= getMachineOpValue(MI, 0);
1416
Evan Cheng83b5cf02008-11-05 23:22:34 +00001417 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001418}
1419
Chris Lattner33fabd72010-02-02 21:48:51 +00001420void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001421 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001422 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001423 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001424 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1425 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001426
1427 // Now emit the jump table entries.
1428 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1429 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1430 if (IsPIC)
1431 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001432 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001433 else
1434 // Absolute DestBB address.
1435 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1436 emitWordLE(0);
1437 }
1438}
1439
Chris Lattner33fabd72010-02-02 21:48:51 +00001440void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001441 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001442
Evan Cheng437c1732008-11-07 22:30:53 +00001443 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001444 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001445 // First emit a ldr pc, [] instruction.
1446 emitDataProcessingInstruction(MI, ARM::PC);
1447
1448 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001449 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001450 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001451 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1452 emitInlineJumpTable(JTIndex);
1453 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001454 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001455 // First emit a ldr pc, [] instruction.
1456 emitLoadStoreInstruction(MI, ARM::PC);
1457
1458 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001459 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001460 return;
1461 }
1462
Evan Chengedda31c2008-11-05 18:35:52 +00001463 // Part of binary is determined by TableGn.
1464 unsigned Binary = getBinaryCodeForInstr(MI);
1465
1466 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001467 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001468
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001469 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001470 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001471 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001472 else
Evan Chengedda31c2008-11-05 18:35:52 +00001473 // otherwise, set the return register
1474 Binary |= getMachineOpValue(MI, 0);
1475
Evan Cheng83b5cf02008-11-05 23:22:34 +00001476 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001477}
Evan Cheng7602e112008-09-02 06:52:38 +00001478
Evan Cheng80a11982008-11-12 06:41:41 +00001479static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001480 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001481 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001482 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001483 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001484 if (!isSPVFP)
1485 Binary |= RegD << ARMII::RegRdShift;
1486 else {
1487 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1488 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1489 }
Evan Cheng80a11982008-11-12 06:41:41 +00001490 return Binary;
1491}
Evan Cheng78be83d2008-11-11 19:40:26 +00001492
Evan Cheng80a11982008-11-12 06:41:41 +00001493static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001494 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001495 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001496 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001497 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001498 if (!isSPVFP)
1499 Binary |= RegN << ARMII::RegRnShift;
1500 else {
1501 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1502 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1503 }
Evan Cheng80a11982008-11-12 06:41:41 +00001504 return Binary;
1505}
Evan Chengd06d48d2008-11-12 02:19:38 +00001506
Evan Cheng80a11982008-11-12 06:41:41 +00001507static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1508 unsigned RegM = MI.getOperand(OpIdx).getReg();
1509 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001510 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001511 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001512 if (!isSPVFP)
1513 Binary |= RegM;
1514 else {
1515 Binary |= ((RegM & 0x1E) >> 1);
1516 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001517 }
Evan Cheng80a11982008-11-12 06:41:41 +00001518 return Binary;
1519}
1520
Chris Lattner33fabd72010-02-02 21:48:51 +00001521void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001522 const TargetInstrDesc &TID = MI.getDesc();
1523
1524 // Part of binary is determined by TableGn.
1525 unsigned Binary = getBinaryCodeForInstr(MI);
1526
1527 // Set the conditional execution predicate
1528 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1529
1530 unsigned OpIdx = 0;
1531 assert((Binary & ARMII::D_BitShift) == 0 &&
1532 (Binary & ARMII::N_BitShift) == 0 &&
1533 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1534
1535 // Encode Dd / Sd.
1536 Binary |= encodeVFPRd(MI, OpIdx++);
1537
1538 // If this is a two-address operand, skip it, e.g. FMACD.
1539 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1540 ++OpIdx;
1541
1542 // Encode Dn / Sn.
1543 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001544 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001545
1546 if (OpIdx == TID.getNumOperands() ||
1547 TID.OpInfo[OpIdx].isPredicate() ||
1548 TID.OpInfo[OpIdx].isOptionalDef()) {
1549 // FCMPEZD etc. has only one operand.
1550 emitWordLE(Binary);
1551 return;
1552 }
1553
1554 // Encode Dm / Sm.
1555 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001556
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001557 emitWordLE(Binary);
1558}
1559
Bob Wilson87949d42010-03-17 21:16:45 +00001560void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001561 const TargetInstrDesc &TID = MI.getDesc();
1562 unsigned Form = TID.TSFlags & ARMII::FormMask;
1563
1564 // Part of binary is determined by TableGn.
1565 unsigned Binary = getBinaryCodeForInstr(MI);
1566
1567 // Set the conditional execution predicate
1568 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1569
1570 switch (Form) {
1571 default: break;
1572 case ARMII::VFPConv1Frm:
1573 case ARMII::VFPConv2Frm:
1574 case ARMII::VFPConv3Frm:
1575 // Encode Dd / Sd.
1576 Binary |= encodeVFPRd(MI, 0);
1577 break;
1578 case ARMII::VFPConv4Frm:
1579 // Encode Dn / Sn.
1580 Binary |= encodeVFPRn(MI, 0);
1581 break;
1582 case ARMII::VFPConv5Frm:
1583 // Encode Dm / Sm.
1584 Binary |= encodeVFPRm(MI, 0);
1585 break;
1586 }
1587
1588 switch (Form) {
1589 default: break;
1590 case ARMII::VFPConv1Frm:
1591 // Encode Dm / Sm.
1592 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001593 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001594 case ARMII::VFPConv2Frm:
1595 case ARMII::VFPConv3Frm:
1596 // Encode Dn / Sn.
1597 Binary |= encodeVFPRn(MI, 1);
1598 break;
1599 case ARMII::VFPConv4Frm:
1600 case ARMII::VFPConv5Frm:
1601 // Encode Dd / Sd.
1602 Binary |= encodeVFPRd(MI, 1);
1603 break;
1604 }
1605
1606 if (Form == ARMII::VFPConv5Frm)
1607 // Encode Dn / Sn.
1608 Binary |= encodeVFPRn(MI, 2);
1609 else if (Form == ARMII::VFPConv3Frm)
1610 // Encode Dm / Sm.
1611 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001612
1613 emitWordLE(Binary);
1614}
1615
Chris Lattner33fabd72010-02-02 21:48:51 +00001616void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001617 // Part of binary is determined by TableGn.
1618 unsigned Binary = getBinaryCodeForInstr(MI);
1619
1620 // Set the conditional execution predicate
1621 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1622
1623 unsigned OpIdx = 0;
1624
1625 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001626 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001627
1628 // Encode address base.
1629 const MachineOperand &Base = MI.getOperand(OpIdx++);
1630 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1631
1632 // If there is a non-zero immediate offset, encode it.
1633 if (Base.isReg()) {
1634 const MachineOperand &Offset = MI.getOperand(OpIdx);
1635 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1636 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1637 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001638 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001639 emitWordLE(Binary);
1640 return;
1641 }
1642 }
1643
1644 // If immediate offset is omitted, default to +0.
1645 Binary |= 1 << ARMII::U_BitShift;
1646
1647 emitWordLE(Binary);
1648}
1649
Bob Wilson87949d42010-03-17 21:16:45 +00001650void
1651ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001652 const TargetInstrDesc &TID = MI.getDesc();
1653 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1654
Evan Chengcd8e66a2008-11-11 21:48:44 +00001655 // Part of binary is determined by TableGn.
1656 unsigned Binary = getBinaryCodeForInstr(MI);
1657
1658 // Set the conditional execution predicate
1659 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1660
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001661 // Skip operand 0 of an instruction with base register update.
1662 unsigned OpIdx = 0;
1663 if (IsUpdating)
1664 ++OpIdx;
1665
Evan Chengcd8e66a2008-11-11 21:48:44 +00001666 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001667 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001668
1669 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001670 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1671 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001672
1673 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001674 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001675 Binary |= 0x1 << ARMII::W_BitShift;
1676
1677 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001678 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001679
Bob Wilsond4bfd542010-08-27 23:18:17 +00001680 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001681 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001682 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001683 const MachineOperand &MO = MI.getOperand(i);
1684 if (!MO.isReg() || MO.isImplicit())
1685 break;
1686 ++NumRegs;
1687 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001688 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1689 // Otherwise, it will be 0, in the case of 32-bit registers.
1690 if(Binary & 0x100)
1691 Binary |= NumRegs * 2;
1692 else
1693 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001694
1695 emitWordLE(Binary);
1696}
1697
Bob Wilson1a913ed2010-06-11 21:34:50 +00001698static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1699 unsigned RegD = MI.getOperand(OpIdx).getReg();
1700 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001701 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001702 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1703 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1704 return Binary;
1705}
1706
Bob Wilson5e7b6072010-06-25 22:40:46 +00001707static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1708 unsigned RegN = MI.getOperand(OpIdx).getReg();
1709 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001710 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001711 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1712 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1713 return Binary;
1714}
1715
Bob Wilson583a2a02010-06-25 21:17:19 +00001716static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1717 unsigned RegM = MI.getOperand(OpIdx).getReg();
1718 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001719 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001720 Binary |= (RegM & 0xf);
1721 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1722 return Binary;
1723}
1724
Bob Wilsond896a972010-06-28 21:12:19 +00001725/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1726/// data-processing instruction to the corresponding Thumb encoding.
1727static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1728 assert((Binary & 0xfe000000) == 0xf2000000 &&
1729 "not an ARM NEON data-processing instruction");
1730 unsigned UBit = (Binary >> 24) & 1;
1731 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1732}
1733
Bob Wilsond5a563d2010-06-29 17:34:07 +00001734void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001735 unsigned Binary = getBinaryCodeForInstr(MI);
1736
Bob Wilsond5a563d2010-06-29 17:34:07 +00001737 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1738 const TargetInstrDesc &TID = MI.getDesc();
1739 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1740 RegTOpIdx = 0;
1741 RegNOpIdx = 1;
1742 LnOpIdx = 2;
1743 } else { // ARMII::NSetLnFrm
1744 RegTOpIdx = 2;
1745 RegNOpIdx = 0;
1746 LnOpIdx = 3;
1747 }
1748
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001749 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001750 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001751
Bob Wilsond5a563d2010-06-29 17:34:07 +00001752 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001753 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001754 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001755 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001756
1757 unsigned LaneShift;
1758 if ((Binary & (1 << 22)) != 0)
1759 LaneShift = 0; // 8-bit elements
1760 else if ((Binary & (1 << 5)) != 0)
1761 LaneShift = 1; // 16-bit elements
1762 else
1763 LaneShift = 2; // 32-bit elements
1764
Bob Wilsond5a563d2010-06-29 17:34:07 +00001765 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001766 unsigned Opc1 = Lane >> 2;
1767 unsigned Opc2 = Lane & 3;
1768 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1769 Binary |= (Opc1 << 21);
1770 Binary |= (Opc2 << 5);
1771
1772 emitWordLE(Binary);
1773}
1774
Bob Wilson21773e72010-06-29 20:13:29 +00001775void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1776 unsigned Binary = getBinaryCodeForInstr(MI);
1777
1778 // Set the conditional execution predicate
1779 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1780
1781 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001782 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001783 Binary |= (RegT << ARMII::RegRdShift);
1784 Binary |= encodeNEONRn(MI, 0);
1785 emitWordLE(Binary);
1786}
1787
Bob Wilson583a2a02010-06-25 21:17:19 +00001788void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001789 unsigned Binary = getBinaryCodeForInstr(MI);
1790 // Destination register is encoded in Dd.
1791 Binary |= encodeNEONRd(MI, 0);
1792 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1793 unsigned Imm = MI.getOperand(1).getImm();
1794 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001795 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001796 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001797 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001798 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001799 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001800 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001801 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001802 emitWordLE(Binary);
1803}
1804
Bob Wilson583a2a02010-06-25 21:17:19 +00001805void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001806 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001807 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001808 // Destination register is encoded in Dd; source register in Dm.
1809 unsigned OpIdx = 0;
1810 Binary |= encodeNEONRd(MI, OpIdx++);
1811 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1812 ++OpIdx;
1813 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001814 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001815 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001816 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1817 emitWordLE(Binary);
1818}
1819
Bob Wilson5e7b6072010-06-25 22:40:46 +00001820void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1821 const TargetInstrDesc &TID = MI.getDesc();
1822 unsigned Binary = getBinaryCodeForInstr(MI);
1823 // Destination register is encoded in Dd; source registers in Dn and Dm.
1824 unsigned OpIdx = 0;
1825 Binary |= encodeNEONRd(MI, OpIdx++);
1826 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1827 ++OpIdx;
1828 Binary |= encodeNEONRn(MI, OpIdx++);
1829 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1830 ++OpIdx;
1831 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001832 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001833 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001834 // FIXME: This does not handle VMOVDneon or VMOVQ.
1835 emitWordLE(Binary);
1836}
1837
Evan Cheng7602e112008-09-02 06:52:38 +00001838#include "ARMGenCodeEmitter.inc"