blob: 363232df10aacd46c2bcd0fbb204f8ecbfd0bb1f [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 Anderson5de6d842010-11-12 21:12:40 +0000180 unsigned getT2SORegOpValue(const MachineInstr &MI, unsigned Op)
181 const { return 0; }
Jim Grosbachb35ad412010-10-13 19:56:10 +0000182 unsigned getRotImmOpValue(const MachineInstr &MI, unsigned Op)
183 const { return 0; }
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000184 unsigned getImmMinusOneOpValue(const MachineInstr &MI, unsigned Op)
185 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000186 unsigned getAddrMode6AddressOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersond9aa7d32010-11-02 00:05:05 +0000187 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000188 unsigned getAddrMode6OffsetOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersoncf667be2010-11-02 01:24:55 +0000189 const { return 0; }
Jim Grosbach3fea191052010-10-21 22:03:21 +0000190 unsigned getBitfieldInvertedMaskOpValue(const MachineInstr &MI,
191 unsigned Op) const { return 0; }
Jim Grosbach5d5eb9e2010-11-10 23:38:36 +0000192 uint32_t getLdStmModeOpValue(const MachineInstr &MI, unsigned OpIdx)
193 const {return 0; }
Jim Grosbach54fea632010-11-09 17:20:53 +0000194 uint32_t getLdStSORegOpValue(const MachineInstr &MI, unsigned OpIdx)
195 const { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000196
197 unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
198 const {
199 // {17-13} = reg
200 // {12} = (U)nsigned (add == '1', sub == '0')
201 // {11-0} = imm12
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000202 const MachineOperand &MO = MI.getOperand(Op);
203 const MachineOperand &MO1 = MI.getOperand(Op + 1);
204 if (!MO.isReg()) {
205 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
206 return 0;
Jim Grosbachf31430f2010-10-27 19:55:59 +0000207 }
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000208 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000209 int32_t Imm12 = MO1.getImm();
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000210 uint32_t Binary;
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000211 Binary = Imm12 & 0xfff;
212 if (Imm12 >= 0)
213 Binary |= (1 << 12);
214 Binary |= (Reg << 13);
215 return Binary;
216 }
Jason W Kim837caa92010-11-18 23:37:15 +0000217
218 unsigned getMovtImmOpValue(const MachineInstr &MI, unsigned Op) const {
219 return 0;
220 }
221
Jim Grosbach99f53d12010-11-15 20:47:07 +0000222 uint32_t getAddrMode2OpValue(const MachineInstr &MI, unsigned OpIdx)
223 const { return 0;}
224 uint32_t getAddrMode2OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
225 const { return 0;}
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000226 uint32_t getAddrMode3OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
227 const { return 0;}
Jim Grosbach570a9222010-11-11 01:09:40 +0000228 uint32_t getAddrMode3OpValue(const MachineInstr &MI, unsigned Op) const
229 { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000230 uint32_t getAddrMode5OpValue(const MachineInstr &MI, unsigned Op) const {
Bill Wendling20272a72010-11-20 00:26:37 +0000231 // {17-13} = reg
232 // {12} = (U)nsigned (add == '1', sub == '0')
233 // {11-0} = imm12
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000234 const MachineOperand &MO = MI.getOperand(Op);
235 const MachineOperand &MO1 = MI.getOperand(Op + 1);
236 if (!MO.isReg()) {
237 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
238 return 0;
239 }
240 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling20272a72010-11-20 00:26:37 +0000241 int32_t Imm12 = MO1.getImm();
242
243 // Special value for #-0
244 if (Imm12 == INT32_MIN)
245 Imm12 = 0;
246
247 // Immediate is always encoded as positive. The 'U' bit controls add vs
248 // sub.
249 bool isAdd = true;
250 if (Imm12 < 0) {
251 Imm12 = -Imm12;
252 isAdd = false;
253 }
254
255 uint32_t Binary = Imm12 & 0xfff;
256 if (isAdd)
257 Binary |= (1 << 12);
258 Binary |= (Reg << 13);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000259 return Binary;
260 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000261 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
262 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000263
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000264 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
265 const { return 0; }
266
Shih-wei Liao5170b712010-05-26 00:02:28 +0000267 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000268 /// machine operand requires relocation, record the relocation and return
269 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000270 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000271 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000272
Evan Cheng83b5cf02008-11-05 23:22:34 +0000273 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000274 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000275 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000276
277 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000278 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000279 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000280 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000281 intptr_t ACPV = 0) const;
282 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
283 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
284 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000285 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000286 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000287 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000288}
289
Chris Lattner33fabd72010-02-02 21:48:51 +0000290char ARMCodeEmitter::ID = 0;
291
Bob Wilson87949d42010-03-17 21:16:45 +0000292/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000293/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000294FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
295 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000296 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000297}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000298
Chris Lattner33fabd72010-02-02 21:48:51 +0000299bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000300 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
301 MF.getTarget().getRelocationModel() != Reloc::Static) &&
302 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000303 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
304 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
305 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000306 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000307 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000308 MJTEs = 0;
309 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000310 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000311 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000312 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000313 MMI = &getAnalysis<MachineModuleInfo>();
314 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000315
316 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000317 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000318 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000319 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000320 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000321 MBB != E; ++MBB) {
322 MCE.StartMachineBasicBlock(MBB);
323 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
324 I != E; ++I)
325 emitInstruction(*I);
326 }
327 } while (MCE.finishFunction(MF));
328
329 return false;
330}
331
Evan Cheng83b5cf02008-11-05 23:22:34 +0000332/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000333///
Chris Lattner33fabd72010-02-02 21:48:51 +0000334unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000335 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000336 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000337 case ARM_AM::asr: return 2;
338 case ARM_AM::lsl: return 0;
339 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000340 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000341 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000342 }
Evan Cheng7602e112008-09-02 06:52:38 +0000343 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000344}
345
Shih-wei Liao5170b712010-05-26 00:02:28 +0000346/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000347/// machine operand requires relocation, record the relocation and return zero.
348unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000349 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000350 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000351 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000352 && "Relocation to this function should be for movt or movw");
353
354 if (MO.isImm())
355 return static_cast<unsigned>(MO.getImm());
356 else if (MO.isGlobal())
357 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
358 else if (MO.isSymbol())
359 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
360 else if (MO.isMBB())
361 emitMachineBasicBlock(MO.getMBB(), Reloc);
362 else {
363#ifndef NDEBUG
364 errs() << MO;
365#endif
366 llvm_unreachable("Unsupported operand type for movw/movt");
367 }
368 return 0;
369}
370
Evan Cheng7602e112008-09-02 06:52:38 +0000371/// getMachineOpValue - Return binary encoding of operand. If the machine
372/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000373unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000374 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000375 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000376 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000377 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000378 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000379 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000380 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000381 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000382 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000383 else if (MO.isCPI()) {
384 const TargetInstrDesc &TID = MI.getDesc();
385 // For VFP load, the immediate offset is multiplied by 4.
386 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
387 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
388 emitConstPoolAddress(MO.getIndex(), Reloc);
389 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000390 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000391 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000392 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Jim Grosbach817c1a62010-11-19 00:27:09 +0000393 else
394 llvm_unreachable("Unable to encode MachineOperand!");
Evan Cheng7602e112008-09-02 06:52:38 +0000395 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000396}
397
Evan Cheng057d0c32008-09-18 07:28:19 +0000398/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000399///
Dan Gohman46510a72010-04-15 01:51:59 +0000400void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000401 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000402 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000403 MachineRelocation MR = Indirect
404 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000405 const_cast<GlobalValue *>(GV),
406 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000407 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000408 const_cast<GlobalValue *>(GV), ACPV,
409 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000410 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000411}
412
413/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
414/// be emitted to the current location in the function, and allow it to be PC
415/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000416void ARMCodeEmitter::
417emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000418 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
419 Reloc, ES));
420}
421
422/// emitConstPoolAddress - Arrange for the address of an constant pool
423/// to be emitted to the current location in the function, and allow it to be PC
424/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000425void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000426 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000427 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000428 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000429}
430
431/// emitJumpTableAddress - Arrange for the address of a jump table to
432/// be emitted to the current location in the function, and allow it to be PC
433/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000434void ARMCodeEmitter::
435emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000436 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000437 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000438}
439
Raul Herbster9c1a3822007-08-30 23:29:26 +0000440/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000441void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000442 unsigned Reloc,
443 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000444 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000445 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000446}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000447
Chris Lattner33fabd72010-02-02 21:48:51 +0000448void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000449 DEBUG(errs() << " 0x";
450 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000451 MCE.emitWordLE(Binary);
452}
453
Chris Lattner33fabd72010-02-02 21:48:51 +0000454void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000455 DEBUG(errs() << " 0x";
456 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000457 MCE.emitDWordLE(Binary);
458}
459
Chris Lattner33fabd72010-02-02 21:48:51 +0000460void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000461 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000462
Devang Patelaf0e2722009-10-06 02:19:11 +0000463 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000464
Dan Gohmanfe601042010-06-22 15:08:57 +0000465 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000466 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000467 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000468 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000469 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000470 }
Jim Grosbach85eb54c2010-11-17 23:33:14 +0000471 case ARMII::MiscFrm:
472 if (MI.getOpcode() == ARM::LEApcrelJT) {
473 // Materialize jumptable address.
474 emitLEApcrelJTInstruction(MI);
475 break;
476 }
477 llvm_unreachable("Unhandled instruction encoding!");
478 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000479 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000480 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000481 break;
482 case ARMII::DPFrm:
483 case ARMII::DPSoRegFrm:
484 emitDataProcessingInstruction(MI);
485 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000486 case ARMII::LdFrm:
487 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000488 emitLoadStoreInstruction(MI);
489 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000490 case ARMII::LdMiscFrm:
491 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000492 emitMiscLoadStoreInstruction(MI);
493 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000494 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000495 emitLoadStoreMultipleInstruction(MI);
496 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000497 case ARMII::MulFrm:
498 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000499 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000500 case ARMII::ExtFrm:
501 emitExtendInstruction(MI);
502 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000503 case ARMII::ArithMiscFrm:
504 emitMiscArithInstruction(MI);
505 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000506 case ARMII::SatFrm:
507 emitSaturateInstruction(MI);
508 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000509 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000510 emitBranchInstruction(MI);
511 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000512 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000513 emitMiscBranchInstruction(MI);
514 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000515 // VFP instructions.
516 case ARMII::VFPUnaryFrm:
517 case ARMII::VFPBinaryFrm:
518 emitVFPArithInstruction(MI);
519 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000520 case ARMII::VFPConv1Frm:
521 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000522 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000523 case ARMII::VFPConv4Frm:
524 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000525 emitVFPConversionInstruction(MI);
526 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000527 case ARMII::VFPLdStFrm:
528 emitVFPLoadStoreInstruction(MI);
529 break;
530 case ARMII::VFPLdStMulFrm:
531 emitVFPLoadStoreMultipleInstruction(MI);
532 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000533
Bob Wilson1a913ed2010-06-11 21:34:50 +0000534 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000535 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000536 case ARMII::NSetLnFrm:
537 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000538 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000539 case ARMII::NDupFrm:
540 emitNEONDupInstruction(MI);
541 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000542 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000543 emitNEON1RegModImmInstruction(MI);
544 break;
545 case ARMII::N2RegFrm:
546 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000547 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000548 case ARMII::N3RegFrm:
549 emitNEON3RegInstruction(MI);
550 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000551 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000552 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000553}
554
Chris Lattner33fabd72010-02-02 21:48:51 +0000555void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000556 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
557 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000558 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000559
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000560 // Remember the CONSTPOOL_ENTRY address for later relocation.
561 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
562
563 // Emit constpool island entry. In most cases, the actual values will be
564 // resolved and relocated after code emission.
565 if (MCPE.isMachineConstantPoolEntry()) {
566 ARMConstantPoolValue *ACPV =
567 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
568
Chris Lattner705e07f2009-08-23 03:41:05 +0000569 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
570 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000571
Bob Wilson28989a82009-11-02 16:59:06 +0000572 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000573 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000574 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000575 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000576 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000577 isa<Function>(GV),
578 Subtarget->GVIsIndirectSymbol(GV, RelocM),
579 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000580 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000581 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
582 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000583 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000584 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000585 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000586
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000587 DEBUG({
588 errs() << " ** Constant pool #" << CPI << " @ "
589 << (void*)MCE.getCurrentPCValue() << " ";
590 if (const Function *F = dyn_cast<Function>(CV))
591 errs() << F->getName();
592 else
593 errs() << *CV;
594 errs() << '\n';
595 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000596
Dan Gohman46510a72010-04-15 01:51:59 +0000597 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000598 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000599 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000600 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000601 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000602 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000603 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000604 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000605 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000606 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000607 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
608 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000609 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000610 }
611 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000612 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000613 }
614 }
615}
616
Zonr Changf86399b2010-05-25 08:42:45 +0000617void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
618 const MachineOperand &MO0 = MI.getOperand(0);
619 const MachineOperand &MO1 = MI.getOperand(1);
620
621 // Emit the 'movw' instruction.
622 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
623
624 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
625
626 // Set the conditional execution predicate.
627 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
628
629 // Encode Rd.
630 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
631
632 // Encode imm16 as imm4:imm12
633 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
634 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
635 emitWordLE(Binary);
636
637 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
638 // Emit the 'movt' instruction.
639 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
640
641 // Set the conditional execution predicate.
642 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
643
644 // Encode Rd.
645 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
646
647 // Encode imm16 as imm4:imm1, same as movw above.
648 Binary |= Hi16 & 0xFFF;
649 Binary |= ((Hi16 >> 12) & 0xF) << 16;
650 emitWordLE(Binary);
651}
652
Chris Lattner33fabd72010-02-02 21:48:51 +0000653void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000654 const MachineOperand &MO0 = MI.getOperand(0);
655 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000656 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
657 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000658 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
659 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
660
661 // Emit the 'mov' instruction.
662 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
663
664 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000665 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000666
667 // Encode Rd.
668 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
669
670 // Encode so_imm.
671 // Set bit I(25) to identify this is the immediate form of <shifter_op>
672 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000673 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000674 emitWordLE(Binary);
675
676 // Now the 'orr' instruction.
677 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
678
679 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000680 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000681
682 // Encode Rd.
683 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
684
685 // Encode Rn.
686 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
687
688 // Encode so_imm.
689 // Set bit I(25) to identify this is the immediate form of <shifter_op>
690 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000691 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000692 emitWordLE(Binary);
693}
694
Chris Lattner33fabd72010-02-02 21:48:51 +0000695void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000696 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000697
Evan Cheng4df60f52008-11-07 09:06:08 +0000698 const TargetInstrDesc &TID = MI.getDesc();
699
700 // Emit the 'add' instruction.
Jim Grosbach0129be22010-11-17 21:57:51 +0000701 unsigned Binary = 0x4 << 21; // add: Insts{24-21} = 0b0100
Evan Cheng4df60f52008-11-07 09:06:08 +0000702
703 // Set the conditional execution predicate
704 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
705
706 // Encode S bit if MI modifies CPSR.
707 Binary |= getAddrModeSBit(MI, TID);
708
709 // Encode Rd.
710 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
711
712 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000713 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000714
715 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000716 Binary |= 1 << ARMII::I_BitShift;
717 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
718
719 emitWordLE(Binary);
720}
721
Chris Lattner33fabd72010-02-02 21:48:51 +0000722void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000723 unsigned Opcode = MI.getDesc().Opcode;
724
725 // Part of binary is determined by TableGn.
726 unsigned Binary = getBinaryCodeForInstr(MI);
727
728 // Set the conditional execution predicate
729 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
730
731 // Encode S bit if MI modifies CPSR.
732 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
733 Binary |= 1 << ARMII::S_BitShift;
734
735 // Encode register def if there is one.
736 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
737
738 // Encode the shift operation.
739 switch (Opcode) {
740 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000741 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000742 // rrx
743 Binary |= 0x6 << 4;
744 break;
745 case ARM::MOVsrl_flag:
746 // lsr #1
747 Binary |= (0x2 << 4) | (1 << 7);
748 break;
749 case ARM::MOVsra_flag:
750 // asr #1
751 Binary |= (0x4 << 4) | (1 << 7);
752 break;
753 }
754
755 // Encode register Rm.
756 Binary |= getMachineOpValue(MI, 1);
757
758 emitWordLE(Binary);
759}
760
Chris Lattner33fabd72010-02-02 21:48:51 +0000761void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000762 DEBUG(errs() << " ** LPC" << LabelID << " @ "
763 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000764 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
765}
766
Chris Lattner33fabd72010-02-02 21:48:51 +0000767void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000768 unsigned Opcode = MI.getDesc().Opcode;
769 switch (Opcode) {
770 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000771 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000772 case ARM::BX:
773 case ARM::BMOVPCRX:
774 case ARM::BXr9:
775 case ARM::BMOVPCRXr9: {
776 // First emit mov lr, pc
777 unsigned Binary = 0x01a0e00f;
778 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
779 emitWordLE(Binary);
780
781 // and then emit the branch.
782 emitMiscBranchInstruction(MI);
783 break;
784 }
Chris Lattner518bb532010-02-09 19:54:29 +0000785 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000786 // We allow inline assembler nodes with empty bodies - they can
787 // implicitly define registers, which is ok for JIT.
788 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000789 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000790 }
Evan Chengffa6d962008-11-13 23:36:57 +0000791 break;
792 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000793 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000794 case TargetOpcode::EH_LABEL:
795 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
796 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000797 case TargetOpcode::IMPLICIT_DEF:
798 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000799 // Do nothing.
800 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000801 case ARM::CONSTPOOL_ENTRY:
802 emitConstPoolInstruction(MI);
803 break;
804 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000805 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000806 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000807 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000808 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000809 break;
810 }
811 case ARM::PICLDR:
812 case ARM::PICLDRB:
813 case ARM::PICSTR:
814 case ARM::PICSTRB: {
815 // Remember of the address of the PC label for relocation later.
816 addPCLabel(MI.getOperand(2).getImm());
817 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000818 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000819 break;
820 }
821 case ARM::PICLDRH:
822 case ARM::PICLDRSH:
823 case ARM::PICLDRSB:
824 case ARM::PICSTRH: {
825 // Remember of the address of the PC label for relocation later.
826 addPCLabel(MI.getOperand(2).getImm());
827 // These are just load / store instructions that implicitly read pc.
828 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000829 break;
830 }
Zonr Changf86399b2010-05-25 08:42:45 +0000831
832 case ARM::MOVi32imm:
Evan Cheng893d7fe2010-11-12 23:03:38 +0000833 // Two instructions to materialize a constant.
834 if (Subtarget->hasV6T2Ops())
835 emitMOVi32immInstruction(MI);
836 else
837 emitMOVi2piecesInstruction(MI);
Zonr Changf86399b2010-05-25 08:42:45 +0000838 break;
839
Evan Cheng4df60f52008-11-07 09:06:08 +0000840 case ARM::LEApcrelJT:
841 // Materialize jumptable address.
842 emitLEApcrelJTInstruction(MI);
843 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000844 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000845 case ARM::MOVsrl_flag:
846 case ARM::MOVsra_flag:
847 emitPseudoMoveInstruction(MI);
848 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000849 }
850}
851
Bob Wilson87949d42010-03-17 21:16:45 +0000852unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000853 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000854 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000855 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000856 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000857
858 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
859 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
860 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
861
862 // Encode the shift opcode.
863 unsigned SBits = 0;
864 unsigned Rs = MO1.getReg();
865 if (Rs) {
866 // Set shift operand (bit[7:4]).
867 // LSL - 0001
868 // LSR - 0011
869 // ASR - 0101
870 // ROR - 0111
871 // RRX - 0110 and bit[11:8] clear.
872 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000873 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000874 case ARM_AM::lsl: SBits = 0x1; break;
875 case ARM_AM::lsr: SBits = 0x3; break;
876 case ARM_AM::asr: SBits = 0x5; break;
877 case ARM_AM::ror: SBits = 0x7; break;
878 case ARM_AM::rrx: SBits = 0x6; break;
879 }
880 } else {
881 // Set shift operand (bit[6:4]).
882 // LSL - 000
883 // LSR - 010
884 // ASR - 100
885 // ROR - 110
886 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000887 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000888 case ARM_AM::lsl: SBits = 0x0; break;
889 case ARM_AM::lsr: SBits = 0x2; break;
890 case ARM_AM::asr: SBits = 0x4; break;
891 case ARM_AM::ror: SBits = 0x6; break;
892 }
893 }
894 Binary |= SBits << 4;
895 if (SOpc == ARM_AM::rrx)
896 return Binary;
897
898 // Encode the shift operation Rs or shift_imm (except rrx).
899 if (Rs) {
900 // Encode Rs bit[11:8].
901 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000902 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000903 }
904
905 // Encode shift_imm bit[11:7].
906 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
907}
908
Chris Lattner33fabd72010-02-02 21:48:51 +0000909unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000910 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
911 assert(SoImmVal != -1 && "Not a valid so_imm value!");
912
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000913 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000914 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000915 << ARMII::SoRotImmShift;
916
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000917 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000918 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000919 return Binary;
920}
921
Chris Lattner33fabd72010-02-02 21:48:51 +0000922unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000923 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000924 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000925 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000926 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000927 return 1 << ARMII::S_BitShift;
928 }
929 return 0;
930}
931
Bob Wilson87949d42010-03-17 21:16:45 +0000932void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000933 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000934 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000935 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000936
937 // Part of binary is determined by TableGn.
938 unsigned Binary = getBinaryCodeForInstr(MI);
939
Jim Grosbach33412622008-10-07 19:05:35 +0000940 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000941 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000942
Evan Cheng49a9f292008-09-12 22:45:55 +0000943 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000944 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000945
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000946 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000947 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000948 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000949 if (NumDefs)
950 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
951 else if (ImplicitRd)
952 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000953 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000954
Zonr Changf86399b2010-05-25 08:42:45 +0000955 if (TID.Opcode == ARM::MOVi16) {
956 // Get immediate from MI.
957 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
958 ARM::reloc_arm_movw);
959 // Encode imm which is the same as in emitMOVi32immInstruction().
960 Binary |= Lo16 & 0xFFF;
961 Binary |= ((Lo16 >> 12) & 0xF) << 16;
962 emitWordLE(Binary);
963 return;
964 } else if(TID.Opcode == ARM::MOVTi16) {
965 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
966 ARM::reloc_arm_movt) >> 16);
967 Binary |= Hi16 & 0xFFF;
968 Binary |= ((Hi16 >> 12) & 0xF) << 16;
969 emitWordLE(Binary);
970 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +0000971 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000972 uint32_t v = ~MI.getOperand(2).getImm();
973 int32_t lsb = CountTrailingZeros_32(v);
974 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000975 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000976 Binary |= (msb & 0x1F) << 16;
977 Binary |= (lsb & 0x1F) << 7;
978 emitWordLE(Binary);
979 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000980 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
981 // Encode Rn in Instr{0-3}
982 Binary |= getMachineOpValue(MI, OpIdx++);
983
984 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
985 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
986
987 // Instr{20-16} = widthm1, Instr{11-7} = lsb
988 Binary |= (widthm1 & 0x1F) << 16;
989 Binary |= (lsb & 0x1F) << 7;
990 emitWordLE(Binary);
991 return;
Zonr Changf86399b2010-05-25 08:42:45 +0000992 }
993
Evan Chengd87293c2008-11-06 08:47:38 +0000994 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
995 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
996 ++OpIdx;
997
Jim Grosbachefd30ba2008-10-01 18:16:49 +0000998 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +0000999 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
1000 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +00001001 if (ImplicitRn)
1002 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001003 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001004 else {
1005 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
1006 ++OpIdx;
1007 }
Evan Cheng7602e112008-09-02 06:52:38 +00001008 }
1009
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001010 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001011 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +00001012 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001013 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001014 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +00001015 return;
1016 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001017
Evan Chengedda31c2008-11-05 18:35:52 +00001018 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001019 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001020 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +00001021 return;
1022 }
Evan Cheng7602e112008-09-02 06:52:38 +00001023
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001024 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +00001025 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +00001026
Evan Cheng83b5cf02008-11-05 23:22:34 +00001027 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001028}
1029
Bob Wilson87949d42010-03-17 21:16:45 +00001030void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +00001031 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +00001032 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001033 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001034 unsigned Form = TID.TSFlags & ARMII::FormMask;
1035 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001036
Evan Chengedda31c2008-11-05 18:35:52 +00001037 // Part of binary is determined by TableGn.
1038 unsigned Binary = getBinaryCodeForInstr(MI);
1039
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001040 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
1041 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
1042 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +00001043 emitWordLE(Binary);
1044 return;
1045 }
1046
Jim Grosbach33412622008-10-07 19:05:35 +00001047 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001048 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001049
Evan Cheng4df60f52008-11-07 09:06:08 +00001050 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001051
1052 // Operand 0 of a pre- and post-indexed store is the address base
1053 // writeback. Skip it.
1054 bool Skipped = false;
1055 if (IsPrePost && Form == ARMII::StFrm) {
1056 ++OpIdx;
1057 Skipped = true;
1058 }
1059
1060 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001061 if (ImplicitRd)
1062 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001063 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001064 else
1065 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001066
1067 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001068 if (ImplicitRn)
1069 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001070 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001071 else
1072 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001073
Evan Cheng05c356e2008-11-08 01:44:13 +00001074 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001075 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001076 ++OpIdx;
1077
Evan Cheng83b5cf02008-11-05 23:22:34 +00001078 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001079 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001080 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001081
Evan Chenge7de7e32008-09-13 01:44:01 +00001082 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001083 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001084 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001085 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001086 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001087 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001088 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1089 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001090 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001091 }
1092
Bill Wendling7d31a162010-10-20 22:44:54 +00001093 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001094 Binary |= 1 << ARMII::I_BitShift;
1095 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1096 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001097 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001098
Evan Cheng70632912008-11-12 07:34:37 +00001099 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001100 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001101 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001102 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1103 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001104 }
1105
Evan Cheng83b5cf02008-11-05 23:22:34 +00001106 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001107}
1108
Chris Lattner33fabd72010-02-02 21:48:51 +00001109void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001110 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001111 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001112 unsigned Form = TID.TSFlags & ARMII::FormMask;
1113 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001114
Evan Chengedda31c2008-11-05 18:35:52 +00001115 // Part of binary is determined by TableGn.
1116 unsigned Binary = getBinaryCodeForInstr(MI);
1117
Jim Grosbach33412622008-10-07 19:05:35 +00001118 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001119 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001120
Evan Cheng148cad82008-11-13 07:34:59 +00001121 unsigned OpIdx = 0;
1122
1123 // Operand 0 of a pre- and post-indexed store is the address base
1124 // writeback. Skip it.
1125 bool Skipped = false;
1126 if (IsPrePost && Form == ARMII::StMiscFrm) {
1127 ++OpIdx;
1128 Skipped = true;
1129 }
1130
Evan Cheng7602e112008-09-02 06:52:38 +00001131 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001132 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001133
Evan Cheng358dec52009-06-15 08:28:29 +00001134 // Skip LDRD and STRD's second operand.
1135 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1136 ++OpIdx;
1137
Evan Cheng7602e112008-09-02 06:52:38 +00001138 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001139 if (ImplicitRn)
1140 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001141 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001142 else
1143 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001144
Evan Cheng05c356e2008-11-08 01:44:13 +00001145 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001146 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001147 ++OpIdx;
1148
Evan Cheng83b5cf02008-11-05 23:22:34 +00001149 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001150 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001151 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001152
Evan Chenge7de7e32008-09-13 01:44:01 +00001153 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001154 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001155 ARMII::U_BitShift);
1156
1157 // If this instr is in register offset/index encoding, set bit[3:0]
1158 // to the corresponding Rm register.
1159 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001160 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001161 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001162 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001163 }
1164
Evan Chengd87293c2008-11-06 08:47:38 +00001165 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001166 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001167 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001168 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001169 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1170 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001171 }
1172
Evan Cheng83b5cf02008-11-05 23:22:34 +00001173 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001174}
1175
Evan Chengcd8e66a2008-11-11 21:48:44 +00001176static unsigned getAddrModeUPBits(unsigned Mode) {
1177 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001178
1179 // Set addressing mode by modifying bits U(23) and P(24)
1180 // IA - Increment after - bit U = 1 and bit P = 0
1181 // IB - Increment before - bit U = 1 and bit P = 1
1182 // DA - Decrement after - bit U = 0 and bit P = 0
1183 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001184 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001185 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001186 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001187 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1188 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1189 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001190 }
1191
Evan Chengcd8e66a2008-11-11 21:48:44 +00001192 return Binary;
1193}
1194
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001195void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1196 const TargetInstrDesc &TID = MI.getDesc();
1197 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1198
Evan Chengcd8e66a2008-11-11 21:48:44 +00001199 // Part of binary is determined by TableGn.
1200 unsigned Binary = getBinaryCodeForInstr(MI);
1201
1202 // Set the conditional execution predicate
1203 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1204
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001205 // Skip operand 0 of an instruction with base register update.
1206 unsigned OpIdx = 0;
1207 if (IsUpdating)
1208 ++OpIdx;
1209
Evan Chengcd8e66a2008-11-11 21:48:44 +00001210 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001211 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001212
1213 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001214 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1215 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001216
Evan Cheng7602e112008-09-02 06:52:38 +00001217 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001218 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001219 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001220
1221 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001222 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001223 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001224 if (!MO.isReg() || MO.isImplicit())
1225 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001226 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001227 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1228 RegNum < 16);
1229 Binary |= 0x1 << RegNum;
1230 }
1231
Evan Cheng83b5cf02008-11-05 23:22:34 +00001232 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001233}
1234
Chris Lattner33fabd72010-02-02 21:48:51 +00001235void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001236 const TargetInstrDesc &TID = MI.getDesc();
1237
1238 // Part of binary is determined by TableGn.
1239 unsigned Binary = getBinaryCodeForInstr(MI);
1240
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001241 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001242 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001243
1244 // Encode S bit if MI modifies CPSR.
1245 Binary |= getAddrModeSBit(MI, TID);
1246
1247 // 32x32->64bit operations have two destination registers. The number
1248 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001249 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001250 if (TID.getNumDefs() == 2)
1251 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1252
1253 // Encode Rd
1254 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1255
1256 // Encode Rm
1257 Binary |= getMachineOpValue(MI, OpIdx++);
1258
1259 // Encode Rs
1260 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1261
Evan Chengfbc9d412008-11-06 01:21:28 +00001262 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1263 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001264 if (TID.getNumOperands() > OpIdx &&
1265 !TID.OpInfo[OpIdx].isPredicate() &&
1266 !TID.OpInfo[OpIdx].isOptionalDef())
1267 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1268
1269 emitWordLE(Binary);
1270}
1271
Chris Lattner33fabd72010-02-02 21:48:51 +00001272void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001273 const TargetInstrDesc &TID = MI.getDesc();
1274
1275 // Part of binary is determined by TableGn.
1276 unsigned Binary = getBinaryCodeForInstr(MI);
1277
1278 // Set the conditional execution predicate
1279 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1280
1281 unsigned OpIdx = 0;
1282
1283 // Encode Rd
1284 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1285
1286 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1287 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1288 if (MO2.isReg()) {
1289 // Two register operand form.
1290 // Encode Rn.
1291 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1292
1293 // Encode Rm.
1294 Binary |= getMachineOpValue(MI, MO2);
1295 ++OpIdx;
1296 } else {
1297 Binary |= getMachineOpValue(MI, MO1);
1298 }
1299
1300 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1301 if (MI.getOperand(OpIdx).isImm() &&
1302 !TID.OpInfo[OpIdx].isPredicate() &&
1303 !TID.OpInfo[OpIdx].isOptionalDef())
1304 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001305
Evan Cheng83b5cf02008-11-05 23:22:34 +00001306 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001307}
1308
Chris Lattner33fabd72010-02-02 21:48:51 +00001309void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001310 const TargetInstrDesc &TID = MI.getDesc();
1311
1312 // Part of binary is determined by TableGn.
1313 unsigned Binary = getBinaryCodeForInstr(MI);
1314
1315 // Set the conditional execution predicate
1316 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1317
1318 unsigned OpIdx = 0;
1319
1320 // Encode Rd
1321 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1322
1323 const MachineOperand &MO = MI.getOperand(OpIdx++);
1324 if (OpIdx == TID.getNumOperands() ||
1325 TID.OpInfo[OpIdx].isPredicate() ||
1326 TID.OpInfo[OpIdx].isOptionalDef()) {
1327 // Encode Rm and it's done.
1328 Binary |= getMachineOpValue(MI, MO);
1329 emitWordLE(Binary);
1330 return;
1331 }
1332
1333 // Encode Rn.
1334 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1335
1336 // Encode Rm.
1337 Binary |= getMachineOpValue(MI, OpIdx++);
1338
1339 // Encode shift_imm.
1340 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001341 if (TID.Opcode == ARM::PKHTB) {
1342 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1343 if (ShiftAmt == 32)
1344 ShiftAmt = 0;
1345 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001346 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1347 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001348
Evan Cheng8b59db32008-11-07 01:41:35 +00001349 emitWordLE(Binary);
1350}
1351
Bob Wilson9a1c1892010-08-11 00:01:18 +00001352void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1353 const TargetInstrDesc &TID = MI.getDesc();
1354
1355 // Part of binary is determined by TableGen.
1356 unsigned Binary = getBinaryCodeForInstr(MI);
1357
1358 // Set the conditional execution predicate
1359 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1360
1361 // Encode Rd
1362 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1363
1364 // Encode saturate bit position.
1365 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001366 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001367 Pos -= 1;
1368 assert((Pos < 16 || (Pos < 32 &&
1369 TID.Opcode != ARM::SSAT16 &&
1370 TID.Opcode != ARM::USAT16)) &&
1371 "saturate bit position out of range");
1372 Binary |= Pos << 16;
1373
1374 // Encode Rm
1375 Binary |= getMachineOpValue(MI, 2);
1376
1377 // Encode shift_imm.
1378 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001379 unsigned ShiftOp = MI.getOperand(3).getImm();
1380 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1381 if (Opc == ARM_AM::asr)
1382 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001383 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001384 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001385 ShiftAmt = 0;
1386 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1387 Binary |= ShiftAmt << ARMII::ShiftShift;
1388 }
1389
1390 emitWordLE(Binary);
1391}
1392
Chris Lattner33fabd72010-02-02 21:48:51 +00001393void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001394 const TargetInstrDesc &TID = MI.getDesc();
1395
Torok Edwindac237e2009-07-08 20:53:28 +00001396 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001397 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001398 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001399
Evan Cheng7602e112008-09-02 06:52:38 +00001400 // Part of binary is determined by TableGn.
1401 unsigned Binary = getBinaryCodeForInstr(MI);
1402
Evan Chengedda31c2008-11-05 18:35:52 +00001403 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001404 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001405
1406 // Set signed_immed_24 field
1407 Binary |= getMachineOpValue(MI, 0);
1408
Evan Cheng83b5cf02008-11-05 23:22:34 +00001409 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001410}
1411
Chris Lattner33fabd72010-02-02 21:48:51 +00001412void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001413 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001414 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001415 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001416 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1417 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001418
1419 // Now emit the jump table entries.
1420 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1421 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1422 if (IsPIC)
1423 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001424 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001425 else
1426 // Absolute DestBB address.
1427 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1428 emitWordLE(0);
1429 }
1430}
1431
Chris Lattner33fabd72010-02-02 21:48:51 +00001432void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001433 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001434
Evan Cheng437c1732008-11-07 22:30:53 +00001435 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001436 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001437 // First emit a ldr pc, [] instruction.
1438 emitDataProcessingInstruction(MI, ARM::PC);
1439
1440 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001441 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001442 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001443 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1444 emitInlineJumpTable(JTIndex);
1445 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001446 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001447 // First emit a ldr pc, [] instruction.
1448 emitLoadStoreInstruction(MI, ARM::PC);
1449
1450 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001451 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001452 return;
1453 }
1454
Evan Chengedda31c2008-11-05 18:35:52 +00001455 // Part of binary is determined by TableGn.
1456 unsigned Binary = getBinaryCodeForInstr(MI);
1457
1458 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001459 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001460
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001461 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001462 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001463 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001464 else
Evan Chengedda31c2008-11-05 18:35:52 +00001465 // otherwise, set the return register
1466 Binary |= getMachineOpValue(MI, 0);
1467
Evan Cheng83b5cf02008-11-05 23:22:34 +00001468 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001469}
Evan Cheng7602e112008-09-02 06:52:38 +00001470
Evan Cheng80a11982008-11-12 06:41:41 +00001471static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001472 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001473 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001474 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001475 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001476 if (!isSPVFP)
1477 Binary |= RegD << ARMII::RegRdShift;
1478 else {
1479 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1480 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1481 }
Evan Cheng80a11982008-11-12 06:41:41 +00001482 return Binary;
1483}
Evan Cheng78be83d2008-11-11 19:40:26 +00001484
Evan Cheng80a11982008-11-12 06:41:41 +00001485static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001486 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001487 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001488 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001489 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001490 if (!isSPVFP)
1491 Binary |= RegN << ARMII::RegRnShift;
1492 else {
1493 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1494 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1495 }
Evan Cheng80a11982008-11-12 06:41:41 +00001496 return Binary;
1497}
Evan Chengd06d48d2008-11-12 02:19:38 +00001498
Evan Cheng80a11982008-11-12 06:41:41 +00001499static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1500 unsigned RegM = MI.getOperand(OpIdx).getReg();
1501 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001502 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001503 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001504 if (!isSPVFP)
1505 Binary |= RegM;
1506 else {
1507 Binary |= ((RegM & 0x1E) >> 1);
1508 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001509 }
Evan Cheng80a11982008-11-12 06:41:41 +00001510 return Binary;
1511}
1512
Chris Lattner33fabd72010-02-02 21:48:51 +00001513void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001514 const TargetInstrDesc &TID = MI.getDesc();
1515
1516 // Part of binary is determined by TableGn.
1517 unsigned Binary = getBinaryCodeForInstr(MI);
1518
1519 // Set the conditional execution predicate
1520 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1521
1522 unsigned OpIdx = 0;
1523 assert((Binary & ARMII::D_BitShift) == 0 &&
1524 (Binary & ARMII::N_BitShift) == 0 &&
1525 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1526
1527 // Encode Dd / Sd.
1528 Binary |= encodeVFPRd(MI, OpIdx++);
1529
1530 // If this is a two-address operand, skip it, e.g. FMACD.
1531 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1532 ++OpIdx;
1533
1534 // Encode Dn / Sn.
1535 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001536 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001537
1538 if (OpIdx == TID.getNumOperands() ||
1539 TID.OpInfo[OpIdx].isPredicate() ||
1540 TID.OpInfo[OpIdx].isOptionalDef()) {
1541 // FCMPEZD etc. has only one operand.
1542 emitWordLE(Binary);
1543 return;
1544 }
1545
1546 // Encode Dm / Sm.
1547 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001548
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001549 emitWordLE(Binary);
1550}
1551
Bob Wilson87949d42010-03-17 21:16:45 +00001552void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001553 const TargetInstrDesc &TID = MI.getDesc();
1554 unsigned Form = TID.TSFlags & ARMII::FormMask;
1555
1556 // Part of binary is determined by TableGn.
1557 unsigned Binary = getBinaryCodeForInstr(MI);
1558
1559 // Set the conditional execution predicate
1560 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1561
1562 switch (Form) {
1563 default: break;
1564 case ARMII::VFPConv1Frm:
1565 case ARMII::VFPConv2Frm:
1566 case ARMII::VFPConv3Frm:
1567 // Encode Dd / Sd.
1568 Binary |= encodeVFPRd(MI, 0);
1569 break;
1570 case ARMII::VFPConv4Frm:
1571 // Encode Dn / Sn.
1572 Binary |= encodeVFPRn(MI, 0);
1573 break;
1574 case ARMII::VFPConv5Frm:
1575 // Encode Dm / Sm.
1576 Binary |= encodeVFPRm(MI, 0);
1577 break;
1578 }
1579
1580 switch (Form) {
1581 default: break;
1582 case ARMII::VFPConv1Frm:
1583 // Encode Dm / Sm.
1584 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001585 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001586 case ARMII::VFPConv2Frm:
1587 case ARMII::VFPConv3Frm:
1588 // Encode Dn / Sn.
1589 Binary |= encodeVFPRn(MI, 1);
1590 break;
1591 case ARMII::VFPConv4Frm:
1592 case ARMII::VFPConv5Frm:
1593 // Encode Dd / Sd.
1594 Binary |= encodeVFPRd(MI, 1);
1595 break;
1596 }
1597
1598 if (Form == ARMII::VFPConv5Frm)
1599 // Encode Dn / Sn.
1600 Binary |= encodeVFPRn(MI, 2);
1601 else if (Form == ARMII::VFPConv3Frm)
1602 // Encode Dm / Sm.
1603 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001604
1605 emitWordLE(Binary);
1606}
1607
Chris Lattner33fabd72010-02-02 21:48:51 +00001608void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001609 // Part of binary is determined by TableGn.
1610 unsigned Binary = getBinaryCodeForInstr(MI);
1611
1612 // Set the conditional execution predicate
1613 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1614
1615 unsigned OpIdx = 0;
1616
1617 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001618 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001619
1620 // Encode address base.
1621 const MachineOperand &Base = MI.getOperand(OpIdx++);
1622 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1623
1624 // If there is a non-zero immediate offset, encode it.
1625 if (Base.isReg()) {
1626 const MachineOperand &Offset = MI.getOperand(OpIdx);
1627 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1628 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1629 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001630 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001631 emitWordLE(Binary);
1632 return;
1633 }
1634 }
1635
1636 // If immediate offset is omitted, default to +0.
1637 Binary |= 1 << ARMII::U_BitShift;
1638
1639 emitWordLE(Binary);
1640}
1641
Bob Wilson87949d42010-03-17 21:16:45 +00001642void
1643ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001644 const TargetInstrDesc &TID = MI.getDesc();
1645 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1646
Evan Chengcd8e66a2008-11-11 21:48:44 +00001647 // Part of binary is determined by TableGn.
1648 unsigned Binary = getBinaryCodeForInstr(MI);
1649
1650 // Set the conditional execution predicate
1651 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1652
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001653 // Skip operand 0 of an instruction with base register update.
1654 unsigned OpIdx = 0;
1655 if (IsUpdating)
1656 ++OpIdx;
1657
Evan Chengcd8e66a2008-11-11 21:48:44 +00001658 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001659 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001660
1661 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001662 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1663 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001664
1665 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001666 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001667 Binary |= 0x1 << ARMII::W_BitShift;
1668
1669 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001670 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001671
Bob Wilsond4bfd542010-08-27 23:18:17 +00001672 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001673 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001674 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001675 const MachineOperand &MO = MI.getOperand(i);
1676 if (!MO.isReg() || MO.isImplicit())
1677 break;
1678 ++NumRegs;
1679 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001680 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1681 // Otherwise, it will be 0, in the case of 32-bit registers.
1682 if(Binary & 0x100)
1683 Binary |= NumRegs * 2;
1684 else
1685 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001686
1687 emitWordLE(Binary);
1688}
1689
Bob Wilson1a913ed2010-06-11 21:34:50 +00001690static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1691 unsigned RegD = MI.getOperand(OpIdx).getReg();
1692 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001693 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001694 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1695 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1696 return Binary;
1697}
1698
Bob Wilson5e7b6072010-06-25 22:40:46 +00001699static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1700 unsigned RegN = MI.getOperand(OpIdx).getReg();
1701 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001702 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001703 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1704 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1705 return Binary;
1706}
1707
Bob Wilson583a2a02010-06-25 21:17:19 +00001708static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1709 unsigned RegM = MI.getOperand(OpIdx).getReg();
1710 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001711 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001712 Binary |= (RegM & 0xf);
1713 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1714 return Binary;
1715}
1716
Bob Wilsond896a972010-06-28 21:12:19 +00001717/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1718/// data-processing instruction to the corresponding Thumb encoding.
1719static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1720 assert((Binary & 0xfe000000) == 0xf2000000 &&
1721 "not an ARM NEON data-processing instruction");
1722 unsigned UBit = (Binary >> 24) & 1;
1723 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1724}
1725
Bob Wilsond5a563d2010-06-29 17:34:07 +00001726void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001727 unsigned Binary = getBinaryCodeForInstr(MI);
1728
Bob Wilsond5a563d2010-06-29 17:34:07 +00001729 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1730 const TargetInstrDesc &TID = MI.getDesc();
1731 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1732 RegTOpIdx = 0;
1733 RegNOpIdx = 1;
1734 LnOpIdx = 2;
1735 } else { // ARMII::NSetLnFrm
1736 RegTOpIdx = 2;
1737 RegNOpIdx = 0;
1738 LnOpIdx = 3;
1739 }
1740
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001741 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001742 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001743
Bob Wilsond5a563d2010-06-29 17:34:07 +00001744 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001745 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001746 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001747 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001748
1749 unsigned LaneShift;
1750 if ((Binary & (1 << 22)) != 0)
1751 LaneShift = 0; // 8-bit elements
1752 else if ((Binary & (1 << 5)) != 0)
1753 LaneShift = 1; // 16-bit elements
1754 else
1755 LaneShift = 2; // 32-bit elements
1756
Bob Wilsond5a563d2010-06-29 17:34:07 +00001757 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001758 unsigned Opc1 = Lane >> 2;
1759 unsigned Opc2 = Lane & 3;
1760 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1761 Binary |= (Opc1 << 21);
1762 Binary |= (Opc2 << 5);
1763
1764 emitWordLE(Binary);
1765}
1766
Bob Wilson21773e72010-06-29 20:13:29 +00001767void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1768 unsigned Binary = getBinaryCodeForInstr(MI);
1769
1770 // Set the conditional execution predicate
1771 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1772
1773 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001774 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001775 Binary |= (RegT << ARMII::RegRdShift);
1776 Binary |= encodeNEONRn(MI, 0);
1777 emitWordLE(Binary);
1778}
1779
Bob Wilson583a2a02010-06-25 21:17:19 +00001780void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001781 unsigned Binary = getBinaryCodeForInstr(MI);
1782 // Destination register is encoded in Dd.
1783 Binary |= encodeNEONRd(MI, 0);
1784 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1785 unsigned Imm = MI.getOperand(1).getImm();
1786 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001787 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001788 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001789 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001790 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001791 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001792 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001793 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001794 emitWordLE(Binary);
1795}
1796
Bob Wilson583a2a02010-06-25 21:17:19 +00001797void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001798 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001799 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001800 // Destination register is encoded in Dd; source register in Dm.
1801 unsigned OpIdx = 0;
1802 Binary |= encodeNEONRd(MI, OpIdx++);
1803 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1804 ++OpIdx;
1805 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001806 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001807 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001808 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1809 emitWordLE(Binary);
1810}
1811
Bob Wilson5e7b6072010-06-25 22:40:46 +00001812void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1813 const TargetInstrDesc &TID = MI.getDesc();
1814 unsigned Binary = getBinaryCodeForInstr(MI);
1815 // Destination register is encoded in Dd; source registers in Dn and Dm.
1816 unsigned OpIdx = 0;
1817 Binary |= encodeNEONRd(MI, OpIdx++);
1818 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1819 ++OpIdx;
1820 Binary |= encodeNEONRn(MI, OpIdx++);
1821 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1822 ++OpIdx;
1823 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001824 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001825 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001826 // FIXME: This does not handle VMOVDneon or VMOVQ.
1827 emitWordLE(Binary);
1828}
1829
Evan Cheng7602e112008-09-02 06:52:38 +00001830#include "ARMGenCodeEmitter.inc"