blob: ef0ef80c898f76e4c8f1501cba094c853dcf9b74 [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 {
231 // {12-9} = reg
232 // {8} = (U)nsigned (add == '1', sub == '0')
233 // {7-0} = imm12
234 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());
241 int32_t Imm8 = MO1.getImm();
242 uint32_t Binary;
243 Binary = Imm8 & 0xff;
244 if (Imm8 >= 0)
245 Binary |= (1 << 8);
246 Binary |= (Reg << 9);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000247 return Binary;
248 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000249 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
250 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000251
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000252 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
253 const { return 0; }
254
Shih-wei Liao5170b712010-05-26 00:02:28 +0000255 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000256 /// machine operand requires relocation, record the relocation and return
257 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000258 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000259 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000260
Evan Cheng83b5cf02008-11-05 23:22:34 +0000261 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000262 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000263 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000264
265 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000266 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000267 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000268 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000269 intptr_t ACPV = 0) const;
270 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
271 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
272 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000273 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000274 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000275 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000276}
277
Chris Lattner33fabd72010-02-02 21:48:51 +0000278char ARMCodeEmitter::ID = 0;
279
Bob Wilson87949d42010-03-17 21:16:45 +0000280/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000281/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000282FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
283 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000284 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000285}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000286
Chris Lattner33fabd72010-02-02 21:48:51 +0000287bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000288 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
289 MF.getTarget().getRelocationModel() != Reloc::Static) &&
290 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000291 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
292 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
293 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000294 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000295 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000296 MJTEs = 0;
297 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000298 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000299 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000300 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000301 MMI = &getAnalysis<MachineModuleInfo>();
302 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000303
304 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000305 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000306 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000307 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000308 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000309 MBB != E; ++MBB) {
310 MCE.StartMachineBasicBlock(MBB);
311 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
312 I != E; ++I)
313 emitInstruction(*I);
314 }
315 } while (MCE.finishFunction(MF));
316
317 return false;
318}
319
Evan Cheng83b5cf02008-11-05 23:22:34 +0000320/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000321///
Chris Lattner33fabd72010-02-02 21:48:51 +0000322unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000323 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000324 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000325 case ARM_AM::asr: return 2;
326 case ARM_AM::lsl: return 0;
327 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000328 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000329 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000330 }
Evan Cheng7602e112008-09-02 06:52:38 +0000331 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000332}
333
Shih-wei Liao5170b712010-05-26 00:02:28 +0000334/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000335/// machine operand requires relocation, record the relocation and return zero.
336unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000337 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000338 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000339 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000340 && "Relocation to this function should be for movt or movw");
341
342 if (MO.isImm())
343 return static_cast<unsigned>(MO.getImm());
344 else if (MO.isGlobal())
345 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
346 else if (MO.isSymbol())
347 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
348 else if (MO.isMBB())
349 emitMachineBasicBlock(MO.getMBB(), Reloc);
350 else {
351#ifndef NDEBUG
352 errs() << MO;
353#endif
354 llvm_unreachable("Unsupported operand type for movw/movt");
355 }
356 return 0;
357}
358
Evan Cheng7602e112008-09-02 06:52:38 +0000359/// getMachineOpValue - Return binary encoding of operand. If the machine
360/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000361unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000362 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000363 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000364 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000365 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000366 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000367 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000368 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000369 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000370 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000371 else if (MO.isCPI()) {
372 const TargetInstrDesc &TID = MI.getDesc();
373 // For VFP load, the immediate offset is multiplied by 4.
374 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
375 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
376 emitConstPoolAddress(MO.getIndex(), Reloc);
377 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000378 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000379 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000380 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Jim Grosbach817c1a62010-11-19 00:27:09 +0000381 else
382 llvm_unreachable("Unable to encode MachineOperand!");
Evan Cheng7602e112008-09-02 06:52:38 +0000383 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000384}
385
Evan Cheng057d0c32008-09-18 07:28:19 +0000386/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000387///
Dan Gohman46510a72010-04-15 01:51:59 +0000388void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000389 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000390 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000391 MachineRelocation MR = Indirect
392 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000393 const_cast<GlobalValue *>(GV),
394 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000395 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000396 const_cast<GlobalValue *>(GV), ACPV,
397 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000398 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000399}
400
401/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
402/// be emitted to the current location in the function, and allow it to be PC
403/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000404void ARMCodeEmitter::
405emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000406 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
407 Reloc, ES));
408}
409
410/// emitConstPoolAddress - Arrange for the address of an constant pool
411/// to be emitted to the current location in the function, and allow it to be PC
412/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000413void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000414 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000415 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000416 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000417}
418
419/// emitJumpTableAddress - Arrange for the address of a jump table to
420/// be emitted to the current location in the function, and allow it to be PC
421/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000422void ARMCodeEmitter::
423emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000424 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000425 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000426}
427
Raul Herbster9c1a3822007-08-30 23:29:26 +0000428/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000429void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000430 unsigned Reloc,
431 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000432 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000433 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000434}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000435
Chris Lattner33fabd72010-02-02 21:48:51 +0000436void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000437 DEBUG(errs() << " 0x";
438 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000439 MCE.emitWordLE(Binary);
440}
441
Chris Lattner33fabd72010-02-02 21:48:51 +0000442void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000443 DEBUG(errs() << " 0x";
444 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000445 MCE.emitDWordLE(Binary);
446}
447
Chris Lattner33fabd72010-02-02 21:48:51 +0000448void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000449 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000450
Devang Patelaf0e2722009-10-06 02:19:11 +0000451 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000452
Dan Gohmanfe601042010-06-22 15:08:57 +0000453 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000454 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000455 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000456 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000457 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000458 }
Jim Grosbach85eb54c2010-11-17 23:33:14 +0000459 case ARMII::MiscFrm:
460 if (MI.getOpcode() == ARM::LEApcrelJT) {
461 // Materialize jumptable address.
462 emitLEApcrelJTInstruction(MI);
463 break;
464 }
465 llvm_unreachable("Unhandled instruction encoding!");
466 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000467 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000468 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000469 break;
470 case ARMII::DPFrm:
471 case ARMII::DPSoRegFrm:
472 emitDataProcessingInstruction(MI);
473 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000474 case ARMII::LdFrm:
475 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000476 emitLoadStoreInstruction(MI);
477 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000478 case ARMII::LdMiscFrm:
479 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000480 emitMiscLoadStoreInstruction(MI);
481 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000482 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000483 emitLoadStoreMultipleInstruction(MI);
484 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000485 case ARMII::MulFrm:
486 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000487 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000488 case ARMII::ExtFrm:
489 emitExtendInstruction(MI);
490 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000491 case ARMII::ArithMiscFrm:
492 emitMiscArithInstruction(MI);
493 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000494 case ARMII::SatFrm:
495 emitSaturateInstruction(MI);
496 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000497 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000498 emitBranchInstruction(MI);
499 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000500 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000501 emitMiscBranchInstruction(MI);
502 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000503 // VFP instructions.
504 case ARMII::VFPUnaryFrm:
505 case ARMII::VFPBinaryFrm:
506 emitVFPArithInstruction(MI);
507 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000508 case ARMII::VFPConv1Frm:
509 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000510 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000511 case ARMII::VFPConv4Frm:
512 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000513 emitVFPConversionInstruction(MI);
514 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000515 case ARMII::VFPLdStFrm:
516 emitVFPLoadStoreInstruction(MI);
517 break;
518 case ARMII::VFPLdStMulFrm:
519 emitVFPLoadStoreMultipleInstruction(MI);
520 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000521
Bob Wilson1a913ed2010-06-11 21:34:50 +0000522 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000523 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000524 case ARMII::NSetLnFrm:
525 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000526 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000527 case ARMII::NDupFrm:
528 emitNEONDupInstruction(MI);
529 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000530 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000531 emitNEON1RegModImmInstruction(MI);
532 break;
533 case ARMII::N2RegFrm:
534 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000535 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000536 case ARMII::N3RegFrm:
537 emitNEON3RegInstruction(MI);
538 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000539 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000540 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000541}
542
Chris Lattner33fabd72010-02-02 21:48:51 +0000543void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000544 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
545 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000546 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000547
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000548 // Remember the CONSTPOOL_ENTRY address for later relocation.
549 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
550
551 // Emit constpool island entry. In most cases, the actual values will be
552 // resolved and relocated after code emission.
553 if (MCPE.isMachineConstantPoolEntry()) {
554 ARMConstantPoolValue *ACPV =
555 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
556
Chris Lattner705e07f2009-08-23 03:41:05 +0000557 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
558 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000559
Bob Wilson28989a82009-11-02 16:59:06 +0000560 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000561 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000562 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000563 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000564 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000565 isa<Function>(GV),
566 Subtarget->GVIsIndirectSymbol(GV, RelocM),
567 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000568 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000569 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
570 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000571 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000572 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000573 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000574
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000575 DEBUG({
576 errs() << " ** Constant pool #" << CPI << " @ "
577 << (void*)MCE.getCurrentPCValue() << " ";
578 if (const Function *F = dyn_cast<Function>(CV))
579 errs() << F->getName();
580 else
581 errs() << *CV;
582 errs() << '\n';
583 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000584
Dan Gohman46510a72010-04-15 01:51:59 +0000585 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000586 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000587 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000588 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000589 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000590 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000591 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000592 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000593 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000594 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000595 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
596 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000597 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000598 }
599 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000600 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000601 }
602 }
603}
604
Zonr Changf86399b2010-05-25 08:42:45 +0000605void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
606 const MachineOperand &MO0 = MI.getOperand(0);
607 const MachineOperand &MO1 = MI.getOperand(1);
608
609 // Emit the 'movw' instruction.
610 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
611
612 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
613
614 // Set the conditional execution predicate.
615 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
616
617 // Encode Rd.
618 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
619
620 // Encode imm16 as imm4:imm12
621 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
622 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
623 emitWordLE(Binary);
624
625 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
626 // Emit the 'movt' instruction.
627 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
628
629 // Set the conditional execution predicate.
630 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
631
632 // Encode Rd.
633 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
634
635 // Encode imm16 as imm4:imm1, same as movw above.
636 Binary |= Hi16 & 0xFFF;
637 Binary |= ((Hi16 >> 12) & 0xF) << 16;
638 emitWordLE(Binary);
639}
640
Chris Lattner33fabd72010-02-02 21:48:51 +0000641void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000642 const MachineOperand &MO0 = MI.getOperand(0);
643 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000644 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
645 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000646 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
647 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
648
649 // Emit the 'mov' instruction.
650 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
651
652 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000653 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000654
655 // Encode Rd.
656 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
657
658 // Encode so_imm.
659 // Set bit I(25) to identify this is the immediate form of <shifter_op>
660 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000661 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000662 emitWordLE(Binary);
663
664 // Now the 'orr' instruction.
665 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
666
667 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000668 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000669
670 // Encode Rd.
671 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
672
673 // Encode Rn.
674 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
675
676 // Encode so_imm.
677 // Set bit I(25) to identify this is the immediate form of <shifter_op>
678 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000679 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000680 emitWordLE(Binary);
681}
682
Chris Lattner33fabd72010-02-02 21:48:51 +0000683void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000684 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000685
Evan Cheng4df60f52008-11-07 09:06:08 +0000686 const TargetInstrDesc &TID = MI.getDesc();
687
688 // Emit the 'add' instruction.
Jim Grosbach0129be22010-11-17 21:57:51 +0000689 unsigned Binary = 0x4 << 21; // add: Insts{24-21} = 0b0100
Evan Cheng4df60f52008-11-07 09:06:08 +0000690
691 // Set the conditional execution predicate
692 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
693
694 // Encode S bit if MI modifies CPSR.
695 Binary |= getAddrModeSBit(MI, TID);
696
697 // Encode Rd.
698 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
699
700 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000701 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000702
703 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000704 Binary |= 1 << ARMII::I_BitShift;
705 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
706
707 emitWordLE(Binary);
708}
709
Chris Lattner33fabd72010-02-02 21:48:51 +0000710void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000711 unsigned Opcode = MI.getDesc().Opcode;
712
713 // Part of binary is determined by TableGn.
714 unsigned Binary = getBinaryCodeForInstr(MI);
715
716 // Set the conditional execution predicate
717 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
718
719 // Encode S bit if MI modifies CPSR.
720 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
721 Binary |= 1 << ARMII::S_BitShift;
722
723 // Encode register def if there is one.
724 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
725
726 // Encode the shift operation.
727 switch (Opcode) {
728 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000729 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000730 // rrx
731 Binary |= 0x6 << 4;
732 break;
733 case ARM::MOVsrl_flag:
734 // lsr #1
735 Binary |= (0x2 << 4) | (1 << 7);
736 break;
737 case ARM::MOVsra_flag:
738 // asr #1
739 Binary |= (0x4 << 4) | (1 << 7);
740 break;
741 }
742
743 // Encode register Rm.
744 Binary |= getMachineOpValue(MI, 1);
745
746 emitWordLE(Binary);
747}
748
Chris Lattner33fabd72010-02-02 21:48:51 +0000749void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000750 DEBUG(errs() << " ** LPC" << LabelID << " @ "
751 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000752 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
753}
754
Chris Lattner33fabd72010-02-02 21:48:51 +0000755void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000756 unsigned Opcode = MI.getDesc().Opcode;
757 switch (Opcode) {
758 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000759 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000760 case ARM::BX:
761 case ARM::BMOVPCRX:
762 case ARM::BXr9:
763 case ARM::BMOVPCRXr9: {
764 // First emit mov lr, pc
765 unsigned Binary = 0x01a0e00f;
766 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
767 emitWordLE(Binary);
768
769 // and then emit the branch.
770 emitMiscBranchInstruction(MI);
771 break;
772 }
Chris Lattner518bb532010-02-09 19:54:29 +0000773 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000774 // We allow inline assembler nodes with empty bodies - they can
775 // implicitly define registers, which is ok for JIT.
776 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000777 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000778 }
Evan Chengffa6d962008-11-13 23:36:57 +0000779 break;
780 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000781 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000782 case TargetOpcode::EH_LABEL:
783 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
784 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000785 case TargetOpcode::IMPLICIT_DEF:
786 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000787 // Do nothing.
788 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000789 case ARM::CONSTPOOL_ENTRY:
790 emitConstPoolInstruction(MI);
791 break;
792 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000793 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000794 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000795 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000796 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000797 break;
798 }
799 case ARM::PICLDR:
800 case ARM::PICLDRB:
801 case ARM::PICSTR:
802 case ARM::PICSTRB: {
803 // Remember of the address of the PC label for relocation later.
804 addPCLabel(MI.getOperand(2).getImm());
805 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000806 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000807 break;
808 }
809 case ARM::PICLDRH:
810 case ARM::PICLDRSH:
811 case ARM::PICLDRSB:
812 case ARM::PICSTRH: {
813 // Remember of the address of the PC label for relocation later.
814 addPCLabel(MI.getOperand(2).getImm());
815 // These are just load / store instructions that implicitly read pc.
816 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000817 break;
818 }
Zonr Changf86399b2010-05-25 08:42:45 +0000819
820 case ARM::MOVi32imm:
Evan Cheng893d7fe2010-11-12 23:03:38 +0000821 // Two instructions to materialize a constant.
822 if (Subtarget->hasV6T2Ops())
823 emitMOVi32immInstruction(MI);
824 else
825 emitMOVi2piecesInstruction(MI);
Zonr Changf86399b2010-05-25 08:42:45 +0000826 break;
827
Evan Cheng4df60f52008-11-07 09:06:08 +0000828 case ARM::LEApcrelJT:
829 // Materialize jumptable address.
830 emitLEApcrelJTInstruction(MI);
831 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000832 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000833 case ARM::MOVsrl_flag:
834 case ARM::MOVsra_flag:
835 emitPseudoMoveInstruction(MI);
836 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000837 }
838}
839
Bob Wilson87949d42010-03-17 21:16:45 +0000840unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000841 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000842 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000843 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000844 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000845
846 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
847 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
848 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
849
850 // Encode the shift opcode.
851 unsigned SBits = 0;
852 unsigned Rs = MO1.getReg();
853 if (Rs) {
854 // Set shift operand (bit[7:4]).
855 // LSL - 0001
856 // LSR - 0011
857 // ASR - 0101
858 // ROR - 0111
859 // RRX - 0110 and bit[11:8] clear.
860 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000861 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000862 case ARM_AM::lsl: SBits = 0x1; break;
863 case ARM_AM::lsr: SBits = 0x3; break;
864 case ARM_AM::asr: SBits = 0x5; break;
865 case ARM_AM::ror: SBits = 0x7; break;
866 case ARM_AM::rrx: SBits = 0x6; break;
867 }
868 } else {
869 // Set shift operand (bit[6:4]).
870 // LSL - 000
871 // LSR - 010
872 // ASR - 100
873 // ROR - 110
874 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000875 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000876 case ARM_AM::lsl: SBits = 0x0; break;
877 case ARM_AM::lsr: SBits = 0x2; break;
878 case ARM_AM::asr: SBits = 0x4; break;
879 case ARM_AM::ror: SBits = 0x6; break;
880 }
881 }
882 Binary |= SBits << 4;
883 if (SOpc == ARM_AM::rrx)
884 return Binary;
885
886 // Encode the shift operation Rs or shift_imm (except rrx).
887 if (Rs) {
888 // Encode Rs bit[11:8].
889 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000890 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000891 }
892
893 // Encode shift_imm bit[11:7].
894 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
895}
896
Chris Lattner33fabd72010-02-02 21:48:51 +0000897unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000898 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
899 assert(SoImmVal != -1 && "Not a valid so_imm value!");
900
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000901 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000902 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000903 << ARMII::SoRotImmShift;
904
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000905 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000906 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000907 return Binary;
908}
909
Chris Lattner33fabd72010-02-02 21:48:51 +0000910unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000911 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000912 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000913 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000914 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000915 return 1 << ARMII::S_BitShift;
916 }
917 return 0;
918}
919
Bob Wilson87949d42010-03-17 21:16:45 +0000920void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000921 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000922 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000923 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000924
925 // Part of binary is determined by TableGn.
926 unsigned Binary = getBinaryCodeForInstr(MI);
927
Jim Grosbach33412622008-10-07 19:05:35 +0000928 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000929 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000930
Evan Cheng49a9f292008-09-12 22:45:55 +0000931 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000932 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000933
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000934 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000935 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000936 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000937 if (NumDefs)
938 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
939 else if (ImplicitRd)
940 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000941 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000942
Zonr Changf86399b2010-05-25 08:42:45 +0000943 if (TID.Opcode == ARM::MOVi16) {
944 // Get immediate from MI.
945 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
946 ARM::reloc_arm_movw);
947 // Encode imm which is the same as in emitMOVi32immInstruction().
948 Binary |= Lo16 & 0xFFF;
949 Binary |= ((Lo16 >> 12) & 0xF) << 16;
950 emitWordLE(Binary);
951 return;
952 } else if(TID.Opcode == ARM::MOVTi16) {
953 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
954 ARM::reloc_arm_movt) >> 16);
955 Binary |= Hi16 & 0xFFF;
956 Binary |= ((Hi16 >> 12) & 0xF) << 16;
957 emitWordLE(Binary);
958 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +0000959 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000960 uint32_t v = ~MI.getOperand(2).getImm();
961 int32_t lsb = CountTrailingZeros_32(v);
962 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000963 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000964 Binary |= (msb & 0x1F) << 16;
965 Binary |= (lsb & 0x1F) << 7;
966 emitWordLE(Binary);
967 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000968 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
969 // Encode Rn in Instr{0-3}
970 Binary |= getMachineOpValue(MI, OpIdx++);
971
972 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
973 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
974
975 // Instr{20-16} = widthm1, Instr{11-7} = lsb
976 Binary |= (widthm1 & 0x1F) << 16;
977 Binary |= (lsb & 0x1F) << 7;
978 emitWordLE(Binary);
979 return;
Zonr Changf86399b2010-05-25 08:42:45 +0000980 }
981
Evan Chengd87293c2008-11-06 08:47:38 +0000982 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
983 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
984 ++OpIdx;
985
Jim Grosbachefd30ba2008-10-01 18:16:49 +0000986 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +0000987 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
988 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000989 if (ImplicitRn)
990 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000991 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000992 else {
993 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
994 ++OpIdx;
995 }
Evan Cheng7602e112008-09-02 06:52:38 +0000996 }
997
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000998 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000999 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +00001000 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001001 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001002 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +00001003 return;
1004 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001005
Evan Chengedda31c2008-11-05 18:35:52 +00001006 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001007 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001008 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +00001009 return;
1010 }
Evan Cheng7602e112008-09-02 06:52:38 +00001011
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001012 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +00001013 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +00001014
Evan Cheng83b5cf02008-11-05 23:22:34 +00001015 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001016}
1017
Bob Wilson87949d42010-03-17 21:16:45 +00001018void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +00001019 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +00001020 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001021 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001022 unsigned Form = TID.TSFlags & ARMII::FormMask;
1023 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001024
Evan Chengedda31c2008-11-05 18:35:52 +00001025 // Part of binary is determined by TableGn.
1026 unsigned Binary = getBinaryCodeForInstr(MI);
1027
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001028 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
1029 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
1030 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +00001031 emitWordLE(Binary);
1032 return;
1033 }
1034
Jim Grosbach33412622008-10-07 19:05:35 +00001035 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001036 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001037
Evan Cheng4df60f52008-11-07 09:06:08 +00001038 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001039
1040 // Operand 0 of a pre- and post-indexed store is the address base
1041 // writeback. Skip it.
1042 bool Skipped = false;
1043 if (IsPrePost && Form == ARMII::StFrm) {
1044 ++OpIdx;
1045 Skipped = true;
1046 }
1047
1048 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001049 if (ImplicitRd)
1050 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001051 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001052 else
1053 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001054
1055 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001056 if (ImplicitRn)
1057 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001058 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001059 else
1060 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001061
Evan Cheng05c356e2008-11-08 01:44:13 +00001062 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001063 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001064 ++OpIdx;
1065
Evan Cheng83b5cf02008-11-05 23:22:34 +00001066 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001067 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001068 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001069
Evan Chenge7de7e32008-09-13 01:44:01 +00001070 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001071 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001072 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001073 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001074 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001075 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001076 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1077 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001078 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001079 }
1080
Bill Wendling7d31a162010-10-20 22:44:54 +00001081 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001082 Binary |= 1 << ARMII::I_BitShift;
1083 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1084 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001085 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001086
Evan Cheng70632912008-11-12 07:34:37 +00001087 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001088 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001089 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001090 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1091 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001092 }
1093
Evan Cheng83b5cf02008-11-05 23:22:34 +00001094 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001095}
1096
Chris Lattner33fabd72010-02-02 21:48:51 +00001097void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001098 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001099 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001100 unsigned Form = TID.TSFlags & ARMII::FormMask;
1101 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001102
Evan Chengedda31c2008-11-05 18:35:52 +00001103 // Part of binary is determined by TableGn.
1104 unsigned Binary = getBinaryCodeForInstr(MI);
1105
Jim Grosbach33412622008-10-07 19:05:35 +00001106 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001107 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001108
Evan Cheng148cad82008-11-13 07:34:59 +00001109 unsigned OpIdx = 0;
1110
1111 // Operand 0 of a pre- and post-indexed store is the address base
1112 // writeback. Skip it.
1113 bool Skipped = false;
1114 if (IsPrePost && Form == ARMII::StMiscFrm) {
1115 ++OpIdx;
1116 Skipped = true;
1117 }
1118
Evan Cheng7602e112008-09-02 06:52:38 +00001119 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001120 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001121
Evan Cheng358dec52009-06-15 08:28:29 +00001122 // Skip LDRD and STRD's second operand.
1123 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1124 ++OpIdx;
1125
Evan Cheng7602e112008-09-02 06:52:38 +00001126 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001127 if (ImplicitRn)
1128 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001129 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001130 else
1131 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001132
Evan Cheng05c356e2008-11-08 01:44:13 +00001133 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001134 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001135 ++OpIdx;
1136
Evan Cheng83b5cf02008-11-05 23:22:34 +00001137 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001138 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001139 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001140
Evan Chenge7de7e32008-09-13 01:44:01 +00001141 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001142 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001143 ARMII::U_BitShift);
1144
1145 // If this instr is in register offset/index encoding, set bit[3:0]
1146 // to the corresponding Rm register.
1147 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001148 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001149 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001150 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001151 }
1152
Evan Chengd87293c2008-11-06 08:47:38 +00001153 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001154 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001155 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001156 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001157 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1158 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001159 }
1160
Evan Cheng83b5cf02008-11-05 23:22:34 +00001161 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001162}
1163
Evan Chengcd8e66a2008-11-11 21:48:44 +00001164static unsigned getAddrModeUPBits(unsigned Mode) {
1165 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001166
1167 // Set addressing mode by modifying bits U(23) and P(24)
1168 // IA - Increment after - bit U = 1 and bit P = 0
1169 // IB - Increment before - bit U = 1 and bit P = 1
1170 // DA - Decrement after - bit U = 0 and bit P = 0
1171 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001172 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001173 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001174 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001175 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1176 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1177 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001178 }
1179
Evan Chengcd8e66a2008-11-11 21:48:44 +00001180 return Binary;
1181}
1182
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001183void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1184 const TargetInstrDesc &TID = MI.getDesc();
1185 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1186
Evan Chengcd8e66a2008-11-11 21:48:44 +00001187 // Part of binary is determined by TableGn.
1188 unsigned Binary = getBinaryCodeForInstr(MI);
1189
1190 // Set the conditional execution predicate
1191 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1192
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001193 // Skip operand 0 of an instruction with base register update.
1194 unsigned OpIdx = 0;
1195 if (IsUpdating)
1196 ++OpIdx;
1197
Evan Chengcd8e66a2008-11-11 21:48:44 +00001198 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001199 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001200
1201 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001202 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1203 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001204
Evan Cheng7602e112008-09-02 06:52:38 +00001205 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001206 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001207 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001208
1209 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001210 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001211 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001212 if (!MO.isReg() || MO.isImplicit())
1213 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001214 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001215 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1216 RegNum < 16);
1217 Binary |= 0x1 << RegNum;
1218 }
1219
Evan Cheng83b5cf02008-11-05 23:22:34 +00001220 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001221}
1222
Chris Lattner33fabd72010-02-02 21:48:51 +00001223void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001224 const TargetInstrDesc &TID = MI.getDesc();
1225
1226 // Part of binary is determined by TableGn.
1227 unsigned Binary = getBinaryCodeForInstr(MI);
1228
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001229 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001230 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001231
1232 // Encode S bit if MI modifies CPSR.
1233 Binary |= getAddrModeSBit(MI, TID);
1234
1235 // 32x32->64bit operations have two destination registers. The number
1236 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001237 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001238 if (TID.getNumDefs() == 2)
1239 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1240
1241 // Encode Rd
1242 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1243
1244 // Encode Rm
1245 Binary |= getMachineOpValue(MI, OpIdx++);
1246
1247 // Encode Rs
1248 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1249
Evan Chengfbc9d412008-11-06 01:21:28 +00001250 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1251 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001252 if (TID.getNumOperands() > OpIdx &&
1253 !TID.OpInfo[OpIdx].isPredicate() &&
1254 !TID.OpInfo[OpIdx].isOptionalDef())
1255 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1256
1257 emitWordLE(Binary);
1258}
1259
Chris Lattner33fabd72010-02-02 21:48:51 +00001260void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001261 const TargetInstrDesc &TID = MI.getDesc();
1262
1263 // Part of binary is determined by TableGn.
1264 unsigned Binary = getBinaryCodeForInstr(MI);
1265
1266 // Set the conditional execution predicate
1267 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1268
1269 unsigned OpIdx = 0;
1270
1271 // Encode Rd
1272 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1273
1274 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1275 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1276 if (MO2.isReg()) {
1277 // Two register operand form.
1278 // Encode Rn.
1279 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1280
1281 // Encode Rm.
1282 Binary |= getMachineOpValue(MI, MO2);
1283 ++OpIdx;
1284 } else {
1285 Binary |= getMachineOpValue(MI, MO1);
1286 }
1287
1288 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1289 if (MI.getOperand(OpIdx).isImm() &&
1290 !TID.OpInfo[OpIdx].isPredicate() &&
1291 !TID.OpInfo[OpIdx].isOptionalDef())
1292 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001293
Evan Cheng83b5cf02008-11-05 23:22:34 +00001294 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001295}
1296
Chris Lattner33fabd72010-02-02 21:48:51 +00001297void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001298 const TargetInstrDesc &TID = MI.getDesc();
1299
1300 // Part of binary is determined by TableGn.
1301 unsigned Binary = getBinaryCodeForInstr(MI);
1302
1303 // Set the conditional execution predicate
1304 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1305
1306 unsigned OpIdx = 0;
1307
1308 // Encode Rd
1309 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1310
1311 const MachineOperand &MO = MI.getOperand(OpIdx++);
1312 if (OpIdx == TID.getNumOperands() ||
1313 TID.OpInfo[OpIdx].isPredicate() ||
1314 TID.OpInfo[OpIdx].isOptionalDef()) {
1315 // Encode Rm and it's done.
1316 Binary |= getMachineOpValue(MI, MO);
1317 emitWordLE(Binary);
1318 return;
1319 }
1320
1321 // Encode Rn.
1322 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1323
1324 // Encode Rm.
1325 Binary |= getMachineOpValue(MI, OpIdx++);
1326
1327 // Encode shift_imm.
1328 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001329 if (TID.Opcode == ARM::PKHTB) {
1330 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1331 if (ShiftAmt == 32)
1332 ShiftAmt = 0;
1333 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001334 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1335 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001336
Evan Cheng8b59db32008-11-07 01:41:35 +00001337 emitWordLE(Binary);
1338}
1339
Bob Wilson9a1c1892010-08-11 00:01:18 +00001340void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1341 const TargetInstrDesc &TID = MI.getDesc();
1342
1343 // Part of binary is determined by TableGen.
1344 unsigned Binary = getBinaryCodeForInstr(MI);
1345
1346 // Set the conditional execution predicate
1347 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1348
1349 // Encode Rd
1350 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1351
1352 // Encode saturate bit position.
1353 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001354 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001355 Pos -= 1;
1356 assert((Pos < 16 || (Pos < 32 &&
1357 TID.Opcode != ARM::SSAT16 &&
1358 TID.Opcode != ARM::USAT16)) &&
1359 "saturate bit position out of range");
1360 Binary |= Pos << 16;
1361
1362 // Encode Rm
1363 Binary |= getMachineOpValue(MI, 2);
1364
1365 // Encode shift_imm.
1366 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001367 unsigned ShiftOp = MI.getOperand(3).getImm();
1368 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1369 if (Opc == ARM_AM::asr)
1370 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001371 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001372 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001373 ShiftAmt = 0;
1374 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1375 Binary |= ShiftAmt << ARMII::ShiftShift;
1376 }
1377
1378 emitWordLE(Binary);
1379}
1380
Chris Lattner33fabd72010-02-02 21:48:51 +00001381void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001382 const TargetInstrDesc &TID = MI.getDesc();
1383
Torok Edwindac237e2009-07-08 20:53:28 +00001384 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001385 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001386 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001387
Evan Cheng7602e112008-09-02 06:52:38 +00001388 // Part of binary is determined by TableGn.
1389 unsigned Binary = getBinaryCodeForInstr(MI);
1390
Evan Chengedda31c2008-11-05 18:35:52 +00001391 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001392 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001393
1394 // Set signed_immed_24 field
1395 Binary |= getMachineOpValue(MI, 0);
1396
Evan Cheng83b5cf02008-11-05 23:22:34 +00001397 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001398}
1399
Chris Lattner33fabd72010-02-02 21:48:51 +00001400void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001401 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001402 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001403 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001404 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1405 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001406
1407 // Now emit the jump table entries.
1408 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1409 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1410 if (IsPIC)
1411 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001412 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001413 else
1414 // Absolute DestBB address.
1415 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1416 emitWordLE(0);
1417 }
1418}
1419
Chris Lattner33fabd72010-02-02 21:48:51 +00001420void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001421 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001422
Evan Cheng437c1732008-11-07 22:30:53 +00001423 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001424 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001425 // First emit a ldr pc, [] instruction.
1426 emitDataProcessingInstruction(MI, ARM::PC);
1427
1428 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001429 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001430 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001431 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1432 emitInlineJumpTable(JTIndex);
1433 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001434 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001435 // First emit a ldr pc, [] instruction.
1436 emitLoadStoreInstruction(MI, ARM::PC);
1437
1438 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001439 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001440 return;
1441 }
1442
Evan Chengedda31c2008-11-05 18:35:52 +00001443 // Part of binary is determined by TableGn.
1444 unsigned Binary = getBinaryCodeForInstr(MI);
1445
1446 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001447 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001448
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001449 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001450 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001451 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001452 else
Evan Chengedda31c2008-11-05 18:35:52 +00001453 // otherwise, set the return register
1454 Binary |= getMachineOpValue(MI, 0);
1455
Evan Cheng83b5cf02008-11-05 23:22:34 +00001456 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001457}
Evan Cheng7602e112008-09-02 06:52:38 +00001458
Evan Cheng80a11982008-11-12 06:41:41 +00001459static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001460 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001461 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001462 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001463 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001464 if (!isSPVFP)
1465 Binary |= RegD << ARMII::RegRdShift;
1466 else {
1467 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1468 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1469 }
Evan Cheng80a11982008-11-12 06:41:41 +00001470 return Binary;
1471}
Evan Cheng78be83d2008-11-11 19:40:26 +00001472
Evan Cheng80a11982008-11-12 06:41:41 +00001473static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001474 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001475 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001476 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001477 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001478 if (!isSPVFP)
1479 Binary |= RegN << ARMII::RegRnShift;
1480 else {
1481 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1482 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1483 }
Evan Cheng80a11982008-11-12 06:41:41 +00001484 return Binary;
1485}
Evan Chengd06d48d2008-11-12 02:19:38 +00001486
Evan Cheng80a11982008-11-12 06:41:41 +00001487static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1488 unsigned RegM = MI.getOperand(OpIdx).getReg();
1489 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001490 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001491 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001492 if (!isSPVFP)
1493 Binary |= RegM;
1494 else {
1495 Binary |= ((RegM & 0x1E) >> 1);
1496 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001497 }
Evan Cheng80a11982008-11-12 06:41:41 +00001498 return Binary;
1499}
1500
Chris Lattner33fabd72010-02-02 21:48:51 +00001501void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001502 const TargetInstrDesc &TID = MI.getDesc();
1503
1504 // Part of binary is determined by TableGn.
1505 unsigned Binary = getBinaryCodeForInstr(MI);
1506
1507 // Set the conditional execution predicate
1508 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1509
1510 unsigned OpIdx = 0;
1511 assert((Binary & ARMII::D_BitShift) == 0 &&
1512 (Binary & ARMII::N_BitShift) == 0 &&
1513 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1514
1515 // Encode Dd / Sd.
1516 Binary |= encodeVFPRd(MI, OpIdx++);
1517
1518 // If this is a two-address operand, skip it, e.g. FMACD.
1519 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1520 ++OpIdx;
1521
1522 // Encode Dn / Sn.
1523 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001524 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001525
1526 if (OpIdx == TID.getNumOperands() ||
1527 TID.OpInfo[OpIdx].isPredicate() ||
1528 TID.OpInfo[OpIdx].isOptionalDef()) {
1529 // FCMPEZD etc. has only one operand.
1530 emitWordLE(Binary);
1531 return;
1532 }
1533
1534 // Encode Dm / Sm.
1535 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001536
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001537 emitWordLE(Binary);
1538}
1539
Bob Wilson87949d42010-03-17 21:16:45 +00001540void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001541 const TargetInstrDesc &TID = MI.getDesc();
1542 unsigned Form = TID.TSFlags & ARMII::FormMask;
1543
1544 // Part of binary is determined by TableGn.
1545 unsigned Binary = getBinaryCodeForInstr(MI);
1546
1547 // Set the conditional execution predicate
1548 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1549
1550 switch (Form) {
1551 default: break;
1552 case ARMII::VFPConv1Frm:
1553 case ARMII::VFPConv2Frm:
1554 case ARMII::VFPConv3Frm:
1555 // Encode Dd / Sd.
1556 Binary |= encodeVFPRd(MI, 0);
1557 break;
1558 case ARMII::VFPConv4Frm:
1559 // Encode Dn / Sn.
1560 Binary |= encodeVFPRn(MI, 0);
1561 break;
1562 case ARMII::VFPConv5Frm:
1563 // Encode Dm / Sm.
1564 Binary |= encodeVFPRm(MI, 0);
1565 break;
1566 }
1567
1568 switch (Form) {
1569 default: break;
1570 case ARMII::VFPConv1Frm:
1571 // Encode Dm / Sm.
1572 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001573 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001574 case ARMII::VFPConv2Frm:
1575 case ARMII::VFPConv3Frm:
1576 // Encode Dn / Sn.
1577 Binary |= encodeVFPRn(MI, 1);
1578 break;
1579 case ARMII::VFPConv4Frm:
1580 case ARMII::VFPConv5Frm:
1581 // Encode Dd / Sd.
1582 Binary |= encodeVFPRd(MI, 1);
1583 break;
1584 }
1585
1586 if (Form == ARMII::VFPConv5Frm)
1587 // Encode Dn / Sn.
1588 Binary |= encodeVFPRn(MI, 2);
1589 else if (Form == ARMII::VFPConv3Frm)
1590 // Encode Dm / Sm.
1591 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001592
1593 emitWordLE(Binary);
1594}
1595
Chris Lattner33fabd72010-02-02 21:48:51 +00001596void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001597 // Part of binary is determined by TableGn.
1598 unsigned Binary = getBinaryCodeForInstr(MI);
1599
1600 // Set the conditional execution predicate
1601 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1602
1603 unsigned OpIdx = 0;
1604
1605 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001606 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001607
1608 // Encode address base.
1609 const MachineOperand &Base = MI.getOperand(OpIdx++);
1610 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1611
1612 // If there is a non-zero immediate offset, encode it.
1613 if (Base.isReg()) {
1614 const MachineOperand &Offset = MI.getOperand(OpIdx);
1615 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1616 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1617 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001618 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001619 emitWordLE(Binary);
1620 return;
1621 }
1622 }
1623
1624 // If immediate offset is omitted, default to +0.
1625 Binary |= 1 << ARMII::U_BitShift;
1626
1627 emitWordLE(Binary);
1628}
1629
Bob Wilson87949d42010-03-17 21:16:45 +00001630void
1631ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001632 const TargetInstrDesc &TID = MI.getDesc();
1633 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1634
Evan Chengcd8e66a2008-11-11 21:48:44 +00001635 // Part of binary is determined by TableGn.
1636 unsigned Binary = getBinaryCodeForInstr(MI);
1637
1638 // Set the conditional execution predicate
1639 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1640
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001641 // Skip operand 0 of an instruction with base register update.
1642 unsigned OpIdx = 0;
1643 if (IsUpdating)
1644 ++OpIdx;
1645
Evan Chengcd8e66a2008-11-11 21:48:44 +00001646 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001647 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001648
1649 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001650 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1651 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001652
1653 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001654 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001655 Binary |= 0x1 << ARMII::W_BitShift;
1656
1657 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001658 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001659
Bob Wilsond4bfd542010-08-27 23:18:17 +00001660 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001661 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001662 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001663 const MachineOperand &MO = MI.getOperand(i);
1664 if (!MO.isReg() || MO.isImplicit())
1665 break;
1666 ++NumRegs;
1667 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001668 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1669 // Otherwise, it will be 0, in the case of 32-bit registers.
1670 if(Binary & 0x100)
1671 Binary |= NumRegs * 2;
1672 else
1673 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001674
1675 emitWordLE(Binary);
1676}
1677
Bob Wilson1a913ed2010-06-11 21:34:50 +00001678static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1679 unsigned RegD = MI.getOperand(OpIdx).getReg();
1680 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001681 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001682 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1683 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1684 return Binary;
1685}
1686
Bob Wilson5e7b6072010-06-25 22:40:46 +00001687static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1688 unsigned RegN = MI.getOperand(OpIdx).getReg();
1689 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001690 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001691 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1692 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1693 return Binary;
1694}
1695
Bob Wilson583a2a02010-06-25 21:17:19 +00001696static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1697 unsigned RegM = MI.getOperand(OpIdx).getReg();
1698 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001699 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001700 Binary |= (RegM & 0xf);
1701 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1702 return Binary;
1703}
1704
Bob Wilsond896a972010-06-28 21:12:19 +00001705/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1706/// data-processing instruction to the corresponding Thumb encoding.
1707static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1708 assert((Binary & 0xfe000000) == 0xf2000000 &&
1709 "not an ARM NEON data-processing instruction");
1710 unsigned UBit = (Binary >> 24) & 1;
1711 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1712}
1713
Bob Wilsond5a563d2010-06-29 17:34:07 +00001714void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001715 unsigned Binary = getBinaryCodeForInstr(MI);
1716
Bob Wilsond5a563d2010-06-29 17:34:07 +00001717 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1718 const TargetInstrDesc &TID = MI.getDesc();
1719 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1720 RegTOpIdx = 0;
1721 RegNOpIdx = 1;
1722 LnOpIdx = 2;
1723 } else { // ARMII::NSetLnFrm
1724 RegTOpIdx = 2;
1725 RegNOpIdx = 0;
1726 LnOpIdx = 3;
1727 }
1728
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001729 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001730 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001731
Bob Wilsond5a563d2010-06-29 17:34:07 +00001732 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001733 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001734 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001735 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001736
1737 unsigned LaneShift;
1738 if ((Binary & (1 << 22)) != 0)
1739 LaneShift = 0; // 8-bit elements
1740 else if ((Binary & (1 << 5)) != 0)
1741 LaneShift = 1; // 16-bit elements
1742 else
1743 LaneShift = 2; // 32-bit elements
1744
Bob Wilsond5a563d2010-06-29 17:34:07 +00001745 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001746 unsigned Opc1 = Lane >> 2;
1747 unsigned Opc2 = Lane & 3;
1748 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1749 Binary |= (Opc1 << 21);
1750 Binary |= (Opc2 << 5);
1751
1752 emitWordLE(Binary);
1753}
1754
Bob Wilson21773e72010-06-29 20:13:29 +00001755void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1756 unsigned Binary = getBinaryCodeForInstr(MI);
1757
1758 // Set the conditional execution predicate
1759 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1760
1761 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001762 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001763 Binary |= (RegT << ARMII::RegRdShift);
1764 Binary |= encodeNEONRn(MI, 0);
1765 emitWordLE(Binary);
1766}
1767
Bob Wilson583a2a02010-06-25 21:17:19 +00001768void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001769 unsigned Binary = getBinaryCodeForInstr(MI);
1770 // Destination register is encoded in Dd.
1771 Binary |= encodeNEONRd(MI, 0);
1772 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1773 unsigned Imm = MI.getOperand(1).getImm();
1774 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001775 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001776 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001777 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001778 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001779 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001780 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001781 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001782 emitWordLE(Binary);
1783}
1784
Bob Wilson583a2a02010-06-25 21:17:19 +00001785void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001786 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001787 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001788 // Destination register is encoded in Dd; source register in Dm.
1789 unsigned OpIdx = 0;
1790 Binary |= encodeNEONRd(MI, OpIdx++);
1791 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1792 ++OpIdx;
1793 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001794 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001795 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001796 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1797 emitWordLE(Binary);
1798}
1799
Bob Wilson5e7b6072010-06-25 22:40:46 +00001800void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1801 const TargetInstrDesc &TID = MI.getDesc();
1802 unsigned Binary = getBinaryCodeForInstr(MI);
1803 // Destination register is encoded in Dd; source registers in Dn and Dm.
1804 unsigned OpIdx = 0;
1805 Binary |= encodeNEONRd(MI, OpIdx++);
1806 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1807 ++OpIdx;
1808 Binary |= encodeNEONRn(MI, OpIdx++);
1809 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1810 ++OpIdx;
1811 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001812 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001813 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001814 // FIXME: This does not handle VMOVDneon or VMOVQ.
1815 emitWordLE(Binary);
1816}
1817
Evan Cheng7602e112008-09-02 06:52:38 +00001818#include "ARMGenCodeEmitter.inc"