blob: 14b0acc037f7bd003fbe4dce1a478af78dab5744 [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 }
Jim Grosbach99f53d12010-11-15 20:47:07 +0000217 uint32_t getAddrMode2OpValue(const MachineInstr &MI, unsigned OpIdx)
218 const { return 0;}
219 uint32_t getAddrMode2OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
220 const { return 0;}
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000221 uint32_t getAddrMode3OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
222 const { return 0;}
Jim Grosbach570a9222010-11-11 01:09:40 +0000223 uint32_t getAddrMode3OpValue(const MachineInstr &MI, unsigned Op) const
224 { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000225 uint32_t getAddrMode5OpValue(const MachineInstr &MI, unsigned Op) const {
226 // {12-9} = reg
227 // {8} = (U)nsigned (add == '1', sub == '0')
228 // {7-0} = imm12
229 const MachineOperand &MO = MI.getOperand(Op);
230 const MachineOperand &MO1 = MI.getOperand(Op + 1);
231 if (!MO.isReg()) {
232 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
233 return 0;
234 }
235 unsigned Reg = getARMRegisterNumbering(MO.getReg());
236 int32_t Imm8 = MO1.getImm();
237 uint32_t Binary;
238 Binary = Imm8 & 0xff;
239 if (Imm8 >= 0)
240 Binary |= (1 << 8);
241 Binary |= (Reg << 9);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000242 return Binary;
243 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000244 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
245 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000246
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000247 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
248 const { return 0; }
249
Shih-wei Liao5170b712010-05-26 00:02:28 +0000250 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000251 /// machine operand requires relocation, record the relocation and return
252 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000253 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000254 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000255
Evan Cheng83b5cf02008-11-05 23:22:34 +0000256 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000257 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000258 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000259
260 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000261 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000262 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000263 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000264 intptr_t ACPV = 0) const;
265 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
266 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
267 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000268 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000269 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000270 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000271}
272
Chris Lattner33fabd72010-02-02 21:48:51 +0000273char ARMCodeEmitter::ID = 0;
274
Bob Wilson87949d42010-03-17 21:16:45 +0000275/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000276/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000277FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
278 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000279 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000280}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000281
Chris Lattner33fabd72010-02-02 21:48:51 +0000282bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000283 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
284 MF.getTarget().getRelocationModel() != Reloc::Static) &&
285 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000286 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
287 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
288 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000289 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000290 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000291 MJTEs = 0;
292 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000293 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000294 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000295 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000296 MMI = &getAnalysis<MachineModuleInfo>();
297 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000298
299 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000300 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000301 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000302 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000303 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000304 MBB != E; ++MBB) {
305 MCE.StartMachineBasicBlock(MBB);
306 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
307 I != E; ++I)
308 emitInstruction(*I);
309 }
310 } while (MCE.finishFunction(MF));
311
312 return false;
313}
314
Evan Cheng83b5cf02008-11-05 23:22:34 +0000315/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000316///
Chris Lattner33fabd72010-02-02 21:48:51 +0000317unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000318 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000319 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000320 case ARM_AM::asr: return 2;
321 case ARM_AM::lsl: return 0;
322 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000323 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000324 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000325 }
Evan Cheng7602e112008-09-02 06:52:38 +0000326 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000327}
328
Shih-wei Liao5170b712010-05-26 00:02:28 +0000329/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000330/// machine operand requires relocation, record the relocation and return zero.
331unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000332 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000333 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000334 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000335 && "Relocation to this function should be for movt or movw");
336
337 if (MO.isImm())
338 return static_cast<unsigned>(MO.getImm());
339 else if (MO.isGlobal())
340 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
341 else if (MO.isSymbol())
342 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
343 else if (MO.isMBB())
344 emitMachineBasicBlock(MO.getMBB(), Reloc);
345 else {
346#ifndef NDEBUG
347 errs() << MO;
348#endif
349 llvm_unreachable("Unsupported operand type for movw/movt");
350 }
351 return 0;
352}
353
Evan Cheng7602e112008-09-02 06:52:38 +0000354/// getMachineOpValue - Return binary encoding of operand. If the machine
355/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000356unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000357 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000358 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000359 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000360 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000361 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000362 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000363 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000364 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000365 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000366 else if (MO.isCPI()) {
367 const TargetInstrDesc &TID = MI.getDesc();
368 // For VFP load, the immediate offset is multiplied by 4.
369 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
370 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
371 emitConstPoolAddress(MO.getIndex(), Reloc);
372 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000373 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000374 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000375 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000376 else {
Torok Edwindac237e2009-07-08 20:53:28 +0000377#ifndef NDEBUG
Chris Lattner705e07f2009-08-23 03:41:05 +0000378 errs() << MO;
Torok Edwindac237e2009-07-08 20:53:28 +0000379#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000380 llvm_unreachable(0);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000381 }
Evan Cheng7602e112008-09-02 06:52:38 +0000382 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000383}
384
Evan Cheng057d0c32008-09-18 07:28:19 +0000385/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000386///
Dan Gohman46510a72010-04-15 01:51:59 +0000387void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000388 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000389 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000390 MachineRelocation MR = Indirect
391 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000392 const_cast<GlobalValue *>(GV),
393 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000394 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000395 const_cast<GlobalValue *>(GV), ACPV,
396 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000397 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000398}
399
400/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
401/// be emitted to the current location in the function, and allow it to be PC
402/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000403void ARMCodeEmitter::
404emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000405 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
406 Reloc, ES));
407}
408
409/// emitConstPoolAddress - Arrange for the address of an constant pool
410/// to be emitted to the current location in the function, and allow it to be PC
411/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000412void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000413 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000414 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000415 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000416}
417
418/// emitJumpTableAddress - Arrange for the address of a jump table to
419/// be emitted to the current location in the function, and allow it to be PC
420/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000421void ARMCodeEmitter::
422emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000423 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000424 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000425}
426
Raul Herbster9c1a3822007-08-30 23:29:26 +0000427/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000428void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000429 unsigned Reloc,
430 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000431 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000432 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000433}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000434
Chris Lattner33fabd72010-02-02 21:48:51 +0000435void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000436 DEBUG(errs() << " 0x";
437 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000438 MCE.emitWordLE(Binary);
439}
440
Chris Lattner33fabd72010-02-02 21:48:51 +0000441void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000442 DEBUG(errs() << " 0x";
443 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000444 MCE.emitDWordLE(Binary);
445}
446
Chris Lattner33fabd72010-02-02 21:48:51 +0000447void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000448 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000449
Devang Patelaf0e2722009-10-06 02:19:11 +0000450 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000451
Dan Gohmanfe601042010-06-22 15:08:57 +0000452 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000453 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000454 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000455 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000456 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000457 }
Jim Grosbach85eb54c2010-11-17 23:33:14 +0000458 case ARMII::MiscFrm:
459 if (MI.getOpcode() == ARM::LEApcrelJT) {
460 // Materialize jumptable address.
461 emitLEApcrelJTInstruction(MI);
462 break;
463 }
464 llvm_unreachable("Unhandled instruction encoding!");
465 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000466 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000467 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000468 break;
469 case ARMII::DPFrm:
470 case ARMII::DPSoRegFrm:
471 emitDataProcessingInstruction(MI);
472 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000473 case ARMII::LdFrm:
474 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000475 emitLoadStoreInstruction(MI);
476 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000477 case ARMII::LdMiscFrm:
478 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000479 emitMiscLoadStoreInstruction(MI);
480 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000481 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000482 emitLoadStoreMultipleInstruction(MI);
483 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000484 case ARMII::MulFrm:
485 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000486 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000487 case ARMII::ExtFrm:
488 emitExtendInstruction(MI);
489 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000490 case ARMII::ArithMiscFrm:
491 emitMiscArithInstruction(MI);
492 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000493 case ARMII::SatFrm:
494 emitSaturateInstruction(MI);
495 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000496 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000497 emitBranchInstruction(MI);
498 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000499 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000500 emitMiscBranchInstruction(MI);
501 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000502 // VFP instructions.
503 case ARMII::VFPUnaryFrm:
504 case ARMII::VFPBinaryFrm:
505 emitVFPArithInstruction(MI);
506 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000507 case ARMII::VFPConv1Frm:
508 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000509 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000510 case ARMII::VFPConv4Frm:
511 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000512 emitVFPConversionInstruction(MI);
513 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000514 case ARMII::VFPLdStFrm:
515 emitVFPLoadStoreInstruction(MI);
516 break;
517 case ARMII::VFPLdStMulFrm:
518 emitVFPLoadStoreMultipleInstruction(MI);
519 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000520
Bob Wilson1a913ed2010-06-11 21:34:50 +0000521 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000522 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000523 case ARMII::NSetLnFrm:
524 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000525 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000526 case ARMII::NDupFrm:
527 emitNEONDupInstruction(MI);
528 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000529 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000530 emitNEON1RegModImmInstruction(MI);
531 break;
532 case ARMII::N2RegFrm:
533 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000534 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000535 case ARMII::N3RegFrm:
536 emitNEON3RegInstruction(MI);
537 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000538 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000539 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000540}
541
Chris Lattner33fabd72010-02-02 21:48:51 +0000542void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000543 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
544 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000545 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000546
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000547 // Remember the CONSTPOOL_ENTRY address for later relocation.
548 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
549
550 // Emit constpool island entry. In most cases, the actual values will be
551 // resolved and relocated after code emission.
552 if (MCPE.isMachineConstantPoolEntry()) {
553 ARMConstantPoolValue *ACPV =
554 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
555
Chris Lattner705e07f2009-08-23 03:41:05 +0000556 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
557 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000558
Bob Wilson28989a82009-11-02 16:59:06 +0000559 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000560 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000561 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000562 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000563 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000564 isa<Function>(GV),
565 Subtarget->GVIsIndirectSymbol(GV, RelocM),
566 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000567 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000568 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
569 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000570 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000571 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000572 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000573
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000574 DEBUG({
575 errs() << " ** Constant pool #" << CPI << " @ "
576 << (void*)MCE.getCurrentPCValue() << " ";
577 if (const Function *F = dyn_cast<Function>(CV))
578 errs() << F->getName();
579 else
580 errs() << *CV;
581 errs() << '\n';
582 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000583
Dan Gohman46510a72010-04-15 01:51:59 +0000584 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000585 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000586 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000587 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000588 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000589 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000590 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000591 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000592 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000593 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000594 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
595 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000596 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000597 }
598 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000599 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000600 }
601 }
602}
603
Zonr Changf86399b2010-05-25 08:42:45 +0000604void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
605 const MachineOperand &MO0 = MI.getOperand(0);
606 const MachineOperand &MO1 = MI.getOperand(1);
607
608 // Emit the 'movw' instruction.
609 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
610
611 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
612
613 // Set the conditional execution predicate.
614 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
615
616 // Encode Rd.
617 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
618
619 // Encode imm16 as imm4:imm12
620 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
621 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
622 emitWordLE(Binary);
623
624 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
625 // Emit the 'movt' instruction.
626 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
627
628 // Set the conditional execution predicate.
629 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
630
631 // Encode Rd.
632 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
633
634 // Encode imm16 as imm4:imm1, same as movw above.
635 Binary |= Hi16 & 0xFFF;
636 Binary |= ((Hi16 >> 12) & 0xF) << 16;
637 emitWordLE(Binary);
638}
639
Chris Lattner33fabd72010-02-02 21:48:51 +0000640void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000641 const MachineOperand &MO0 = MI.getOperand(0);
642 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000643 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
644 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000645 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
646 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
647
648 // Emit the 'mov' instruction.
649 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
650
651 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000652 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000653
654 // Encode Rd.
655 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
656
657 // Encode so_imm.
658 // Set bit I(25) to identify this is the immediate form of <shifter_op>
659 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000660 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000661 emitWordLE(Binary);
662
663 // Now the 'orr' instruction.
664 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
665
666 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000667 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000668
669 // Encode Rd.
670 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
671
672 // Encode Rn.
673 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
674
675 // Encode so_imm.
676 // Set bit I(25) to identify this is the immediate form of <shifter_op>
677 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000678 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000679 emitWordLE(Binary);
680}
681
Chris Lattner33fabd72010-02-02 21:48:51 +0000682void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000683 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000684
Evan Cheng4df60f52008-11-07 09:06:08 +0000685 const TargetInstrDesc &TID = MI.getDesc();
686
687 // Emit the 'add' instruction.
Jim Grosbach0129be22010-11-17 21:57:51 +0000688 unsigned Binary = 0x4 << 21; // add: Insts{24-21} = 0b0100
Evan Cheng4df60f52008-11-07 09:06:08 +0000689
690 // Set the conditional execution predicate
691 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
692
693 // Encode S bit if MI modifies CPSR.
694 Binary |= getAddrModeSBit(MI, TID);
695
696 // Encode Rd.
697 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
698
699 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000700 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000701
702 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000703 Binary |= 1 << ARMII::I_BitShift;
704 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
705
706 emitWordLE(Binary);
707}
708
Chris Lattner33fabd72010-02-02 21:48:51 +0000709void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000710 unsigned Opcode = MI.getDesc().Opcode;
711
712 // Part of binary is determined by TableGn.
713 unsigned Binary = getBinaryCodeForInstr(MI);
714
715 // Set the conditional execution predicate
716 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
717
718 // Encode S bit if MI modifies CPSR.
719 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
720 Binary |= 1 << ARMII::S_BitShift;
721
722 // Encode register def if there is one.
723 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
724
725 // Encode the shift operation.
726 switch (Opcode) {
727 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000728 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000729 // rrx
730 Binary |= 0x6 << 4;
731 break;
732 case ARM::MOVsrl_flag:
733 // lsr #1
734 Binary |= (0x2 << 4) | (1 << 7);
735 break;
736 case ARM::MOVsra_flag:
737 // asr #1
738 Binary |= (0x4 << 4) | (1 << 7);
739 break;
740 }
741
742 // Encode register Rm.
743 Binary |= getMachineOpValue(MI, 1);
744
745 emitWordLE(Binary);
746}
747
Chris Lattner33fabd72010-02-02 21:48:51 +0000748void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000749 DEBUG(errs() << " ** LPC" << LabelID << " @ "
750 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000751 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
752}
753
Chris Lattner33fabd72010-02-02 21:48:51 +0000754void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000755 unsigned Opcode = MI.getDesc().Opcode;
756 switch (Opcode) {
757 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000758 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000759 case ARM::BX:
760 case ARM::BMOVPCRX:
761 case ARM::BXr9:
762 case ARM::BMOVPCRXr9: {
763 // First emit mov lr, pc
764 unsigned Binary = 0x01a0e00f;
765 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
766 emitWordLE(Binary);
767
768 // and then emit the branch.
769 emitMiscBranchInstruction(MI);
770 break;
771 }
Chris Lattner518bb532010-02-09 19:54:29 +0000772 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000773 // We allow inline assembler nodes with empty bodies - they can
774 // implicitly define registers, which is ok for JIT.
775 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000776 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000777 }
Evan Chengffa6d962008-11-13 23:36:57 +0000778 break;
779 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000780 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000781 case TargetOpcode::EH_LABEL:
782 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
783 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000784 case TargetOpcode::IMPLICIT_DEF:
785 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000786 // Do nothing.
787 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000788 case ARM::CONSTPOOL_ENTRY:
789 emitConstPoolInstruction(MI);
790 break;
791 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000792 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000793 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000794 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000795 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000796 break;
797 }
798 case ARM::PICLDR:
799 case ARM::PICLDRB:
800 case ARM::PICSTR:
801 case ARM::PICSTRB: {
802 // Remember of the address of the PC label for relocation later.
803 addPCLabel(MI.getOperand(2).getImm());
804 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000805 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000806 break;
807 }
808 case ARM::PICLDRH:
809 case ARM::PICLDRSH:
810 case ARM::PICLDRSB:
811 case ARM::PICSTRH: {
812 // Remember of the address of the PC label for relocation later.
813 addPCLabel(MI.getOperand(2).getImm());
814 // These are just load / store instructions that implicitly read pc.
815 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000816 break;
817 }
Zonr Changf86399b2010-05-25 08:42:45 +0000818
819 case ARM::MOVi32imm:
Evan Cheng893d7fe2010-11-12 23:03:38 +0000820 // Two instructions to materialize a constant.
821 if (Subtarget->hasV6T2Ops())
822 emitMOVi32immInstruction(MI);
823 else
824 emitMOVi2piecesInstruction(MI);
Zonr Changf86399b2010-05-25 08:42:45 +0000825 break;
826
Evan Cheng4df60f52008-11-07 09:06:08 +0000827 case ARM::LEApcrelJT:
828 // Materialize jumptable address.
829 emitLEApcrelJTInstruction(MI);
830 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000831 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000832 case ARM::MOVsrl_flag:
833 case ARM::MOVsra_flag:
834 emitPseudoMoveInstruction(MI);
835 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000836 }
837}
838
Bob Wilson87949d42010-03-17 21:16:45 +0000839unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000840 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000841 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000842 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000843 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000844
845 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
846 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
847 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
848
849 // Encode the shift opcode.
850 unsigned SBits = 0;
851 unsigned Rs = MO1.getReg();
852 if (Rs) {
853 // Set shift operand (bit[7:4]).
854 // LSL - 0001
855 // LSR - 0011
856 // ASR - 0101
857 // ROR - 0111
858 // RRX - 0110 and bit[11:8] clear.
859 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000860 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000861 case ARM_AM::lsl: SBits = 0x1; break;
862 case ARM_AM::lsr: SBits = 0x3; break;
863 case ARM_AM::asr: SBits = 0x5; break;
864 case ARM_AM::ror: SBits = 0x7; break;
865 case ARM_AM::rrx: SBits = 0x6; break;
866 }
867 } else {
868 // Set shift operand (bit[6:4]).
869 // LSL - 000
870 // LSR - 010
871 // ASR - 100
872 // ROR - 110
873 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000874 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000875 case ARM_AM::lsl: SBits = 0x0; break;
876 case ARM_AM::lsr: SBits = 0x2; break;
877 case ARM_AM::asr: SBits = 0x4; break;
878 case ARM_AM::ror: SBits = 0x6; break;
879 }
880 }
881 Binary |= SBits << 4;
882 if (SOpc == ARM_AM::rrx)
883 return Binary;
884
885 // Encode the shift operation Rs or shift_imm (except rrx).
886 if (Rs) {
887 // Encode Rs bit[11:8].
888 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000889 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000890 }
891
892 // Encode shift_imm bit[11:7].
893 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
894}
895
Chris Lattner33fabd72010-02-02 21:48:51 +0000896unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000897 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
898 assert(SoImmVal != -1 && "Not a valid so_imm value!");
899
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000900 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000901 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000902 << ARMII::SoRotImmShift;
903
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000904 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000905 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000906 return Binary;
907}
908
Chris Lattner33fabd72010-02-02 21:48:51 +0000909unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000910 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000911 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000912 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000913 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000914 return 1 << ARMII::S_BitShift;
915 }
916 return 0;
917}
918
Bob Wilson87949d42010-03-17 21:16:45 +0000919void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000920 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000921 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000922 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000923
924 // Part of binary is determined by TableGn.
925 unsigned Binary = getBinaryCodeForInstr(MI);
926
Jim Grosbach33412622008-10-07 19:05:35 +0000927 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000928 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000929
Evan Cheng49a9f292008-09-12 22:45:55 +0000930 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000931 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000932
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000933 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000934 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000935 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000936 if (NumDefs)
937 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
938 else if (ImplicitRd)
939 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000940 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000941
Zonr Changf86399b2010-05-25 08:42:45 +0000942 if (TID.Opcode == ARM::MOVi16) {
943 // Get immediate from MI.
944 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
945 ARM::reloc_arm_movw);
946 // Encode imm which is the same as in emitMOVi32immInstruction().
947 Binary |= Lo16 & 0xFFF;
948 Binary |= ((Lo16 >> 12) & 0xF) << 16;
949 emitWordLE(Binary);
950 return;
951 } else if(TID.Opcode == ARM::MOVTi16) {
952 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
953 ARM::reloc_arm_movt) >> 16);
954 Binary |= Hi16 & 0xFFF;
955 Binary |= ((Hi16 >> 12) & 0xF) << 16;
956 emitWordLE(Binary);
957 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +0000958 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000959 uint32_t v = ~MI.getOperand(2).getImm();
960 int32_t lsb = CountTrailingZeros_32(v);
961 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000962 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000963 Binary |= (msb & 0x1F) << 16;
964 Binary |= (lsb & 0x1F) << 7;
965 emitWordLE(Binary);
966 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000967 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
968 // Encode Rn in Instr{0-3}
969 Binary |= getMachineOpValue(MI, OpIdx++);
970
971 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
972 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
973
974 // Instr{20-16} = widthm1, Instr{11-7} = lsb
975 Binary |= (widthm1 & 0x1F) << 16;
976 Binary |= (lsb & 0x1F) << 7;
977 emitWordLE(Binary);
978 return;
Zonr Changf86399b2010-05-25 08:42:45 +0000979 }
980
Evan Chengd87293c2008-11-06 08:47:38 +0000981 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
982 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
983 ++OpIdx;
984
Jim Grosbachefd30ba2008-10-01 18:16:49 +0000985 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +0000986 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
987 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000988 if (ImplicitRn)
989 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000990 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000991 else {
992 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
993 ++OpIdx;
994 }
Evan Cheng7602e112008-09-02 06:52:38 +0000995 }
996
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000997 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000998 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +0000999 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001000 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001001 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +00001002 return;
1003 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001004
Evan Chengedda31c2008-11-05 18:35:52 +00001005 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001006 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001007 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +00001008 return;
1009 }
Evan Cheng7602e112008-09-02 06:52:38 +00001010
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001011 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +00001012 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +00001013
Evan Cheng83b5cf02008-11-05 23:22:34 +00001014 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001015}
1016
Bob Wilson87949d42010-03-17 21:16:45 +00001017void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +00001018 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +00001019 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001020 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001021 unsigned Form = TID.TSFlags & ARMII::FormMask;
1022 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001023
Evan Chengedda31c2008-11-05 18:35:52 +00001024 // Part of binary is determined by TableGn.
1025 unsigned Binary = getBinaryCodeForInstr(MI);
1026
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001027 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
1028 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
1029 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +00001030 emitWordLE(Binary);
1031 return;
1032 }
1033
Jim Grosbach33412622008-10-07 19:05:35 +00001034 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001035 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001036
Evan Cheng4df60f52008-11-07 09:06:08 +00001037 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001038
1039 // Operand 0 of a pre- and post-indexed store is the address base
1040 // writeback. Skip it.
1041 bool Skipped = false;
1042 if (IsPrePost && Form == ARMII::StFrm) {
1043 ++OpIdx;
1044 Skipped = true;
1045 }
1046
1047 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001048 if (ImplicitRd)
1049 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001050 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001051 else
1052 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001053
1054 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001055 if (ImplicitRn)
1056 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001057 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001058 else
1059 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001060
Evan Cheng05c356e2008-11-08 01:44:13 +00001061 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001062 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001063 ++OpIdx;
1064
Evan Cheng83b5cf02008-11-05 23:22:34 +00001065 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001066 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001067 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001068
Evan Chenge7de7e32008-09-13 01:44:01 +00001069 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001070 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001071 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001072 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001073 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001074 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001075 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1076 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001077 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001078 }
1079
Bill Wendling7d31a162010-10-20 22:44:54 +00001080 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001081 Binary |= 1 << ARMII::I_BitShift;
1082 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1083 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001084 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001085
Evan Cheng70632912008-11-12 07:34:37 +00001086 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001087 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001088 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001089 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1090 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001091 }
1092
Evan Cheng83b5cf02008-11-05 23:22:34 +00001093 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001094}
1095
Chris Lattner33fabd72010-02-02 21:48:51 +00001096void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001097 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001098 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001099 unsigned Form = TID.TSFlags & ARMII::FormMask;
1100 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001101
Evan Chengedda31c2008-11-05 18:35:52 +00001102 // Part of binary is determined by TableGn.
1103 unsigned Binary = getBinaryCodeForInstr(MI);
1104
Jim Grosbach33412622008-10-07 19:05:35 +00001105 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001106 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001107
Evan Cheng148cad82008-11-13 07:34:59 +00001108 unsigned OpIdx = 0;
1109
1110 // Operand 0 of a pre- and post-indexed store is the address base
1111 // writeback. Skip it.
1112 bool Skipped = false;
1113 if (IsPrePost && Form == ARMII::StMiscFrm) {
1114 ++OpIdx;
1115 Skipped = true;
1116 }
1117
Evan Cheng7602e112008-09-02 06:52:38 +00001118 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001119 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001120
Evan Cheng358dec52009-06-15 08:28:29 +00001121 // Skip LDRD and STRD's second operand.
1122 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1123 ++OpIdx;
1124
Evan Cheng7602e112008-09-02 06:52:38 +00001125 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001126 if (ImplicitRn)
1127 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001128 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001129 else
1130 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001131
Evan Cheng05c356e2008-11-08 01:44:13 +00001132 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001133 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001134 ++OpIdx;
1135
Evan Cheng83b5cf02008-11-05 23:22:34 +00001136 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001137 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001138 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001139
Evan Chenge7de7e32008-09-13 01:44:01 +00001140 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001141 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001142 ARMII::U_BitShift);
1143
1144 // If this instr is in register offset/index encoding, set bit[3:0]
1145 // to the corresponding Rm register.
1146 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001147 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001148 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001149 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001150 }
1151
Evan Chengd87293c2008-11-06 08:47:38 +00001152 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001153 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001154 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001155 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001156 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1157 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001158 }
1159
Evan Cheng83b5cf02008-11-05 23:22:34 +00001160 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001161}
1162
Evan Chengcd8e66a2008-11-11 21:48:44 +00001163static unsigned getAddrModeUPBits(unsigned Mode) {
1164 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001165
1166 // Set addressing mode by modifying bits U(23) and P(24)
1167 // IA - Increment after - bit U = 1 and bit P = 0
1168 // IB - Increment before - bit U = 1 and bit P = 1
1169 // DA - Decrement after - bit U = 0 and bit P = 0
1170 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001171 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001172 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001173 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001174 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1175 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1176 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001177 }
1178
Evan Chengcd8e66a2008-11-11 21:48:44 +00001179 return Binary;
1180}
1181
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001182void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1183 const TargetInstrDesc &TID = MI.getDesc();
1184 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1185
Evan Chengcd8e66a2008-11-11 21:48:44 +00001186 // Part of binary is determined by TableGn.
1187 unsigned Binary = getBinaryCodeForInstr(MI);
1188
1189 // Set the conditional execution predicate
1190 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1191
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001192 // Skip operand 0 of an instruction with base register update.
1193 unsigned OpIdx = 0;
1194 if (IsUpdating)
1195 ++OpIdx;
1196
Evan Chengcd8e66a2008-11-11 21:48:44 +00001197 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001198 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001199
1200 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001201 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1202 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001203
Evan Cheng7602e112008-09-02 06:52:38 +00001204 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001205 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001206 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001207
1208 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001209 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001210 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001211 if (!MO.isReg() || MO.isImplicit())
1212 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001213 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001214 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1215 RegNum < 16);
1216 Binary |= 0x1 << RegNum;
1217 }
1218
Evan Cheng83b5cf02008-11-05 23:22:34 +00001219 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001220}
1221
Chris Lattner33fabd72010-02-02 21:48:51 +00001222void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001223 const TargetInstrDesc &TID = MI.getDesc();
1224
1225 // Part of binary is determined by TableGn.
1226 unsigned Binary = getBinaryCodeForInstr(MI);
1227
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001228 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001229 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001230
1231 // Encode S bit if MI modifies CPSR.
1232 Binary |= getAddrModeSBit(MI, TID);
1233
1234 // 32x32->64bit operations have two destination registers. The number
1235 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001236 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001237 if (TID.getNumDefs() == 2)
1238 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1239
1240 // Encode Rd
1241 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1242
1243 // Encode Rm
1244 Binary |= getMachineOpValue(MI, OpIdx++);
1245
1246 // Encode Rs
1247 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1248
Evan Chengfbc9d412008-11-06 01:21:28 +00001249 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1250 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001251 if (TID.getNumOperands() > OpIdx &&
1252 !TID.OpInfo[OpIdx].isPredicate() &&
1253 !TID.OpInfo[OpIdx].isOptionalDef())
1254 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1255
1256 emitWordLE(Binary);
1257}
1258
Chris Lattner33fabd72010-02-02 21:48:51 +00001259void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001260 const TargetInstrDesc &TID = MI.getDesc();
1261
1262 // Part of binary is determined by TableGn.
1263 unsigned Binary = getBinaryCodeForInstr(MI);
1264
1265 // Set the conditional execution predicate
1266 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1267
1268 unsigned OpIdx = 0;
1269
1270 // Encode Rd
1271 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1272
1273 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1274 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1275 if (MO2.isReg()) {
1276 // Two register operand form.
1277 // Encode Rn.
1278 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1279
1280 // Encode Rm.
1281 Binary |= getMachineOpValue(MI, MO2);
1282 ++OpIdx;
1283 } else {
1284 Binary |= getMachineOpValue(MI, MO1);
1285 }
1286
1287 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1288 if (MI.getOperand(OpIdx).isImm() &&
1289 !TID.OpInfo[OpIdx].isPredicate() &&
1290 !TID.OpInfo[OpIdx].isOptionalDef())
1291 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001292
Evan Cheng83b5cf02008-11-05 23:22:34 +00001293 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001294}
1295
Chris Lattner33fabd72010-02-02 21:48:51 +00001296void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001297 const TargetInstrDesc &TID = MI.getDesc();
1298
1299 // Part of binary is determined by TableGn.
1300 unsigned Binary = getBinaryCodeForInstr(MI);
1301
1302 // Set the conditional execution predicate
1303 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1304
1305 unsigned OpIdx = 0;
1306
1307 // Encode Rd
1308 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1309
1310 const MachineOperand &MO = MI.getOperand(OpIdx++);
1311 if (OpIdx == TID.getNumOperands() ||
1312 TID.OpInfo[OpIdx].isPredicate() ||
1313 TID.OpInfo[OpIdx].isOptionalDef()) {
1314 // Encode Rm and it's done.
1315 Binary |= getMachineOpValue(MI, MO);
1316 emitWordLE(Binary);
1317 return;
1318 }
1319
1320 // Encode Rn.
1321 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1322
1323 // Encode Rm.
1324 Binary |= getMachineOpValue(MI, OpIdx++);
1325
1326 // Encode shift_imm.
1327 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001328 if (TID.Opcode == ARM::PKHTB) {
1329 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1330 if (ShiftAmt == 32)
1331 ShiftAmt = 0;
1332 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001333 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1334 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001335
Evan Cheng8b59db32008-11-07 01:41:35 +00001336 emitWordLE(Binary);
1337}
1338
Bob Wilson9a1c1892010-08-11 00:01:18 +00001339void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1340 const TargetInstrDesc &TID = MI.getDesc();
1341
1342 // Part of binary is determined by TableGen.
1343 unsigned Binary = getBinaryCodeForInstr(MI);
1344
1345 // Set the conditional execution predicate
1346 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1347
1348 // Encode Rd
1349 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1350
1351 // Encode saturate bit position.
1352 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001353 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001354 Pos -= 1;
1355 assert((Pos < 16 || (Pos < 32 &&
1356 TID.Opcode != ARM::SSAT16 &&
1357 TID.Opcode != ARM::USAT16)) &&
1358 "saturate bit position out of range");
1359 Binary |= Pos << 16;
1360
1361 // Encode Rm
1362 Binary |= getMachineOpValue(MI, 2);
1363
1364 // Encode shift_imm.
1365 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001366 unsigned ShiftOp = MI.getOperand(3).getImm();
1367 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1368 if (Opc == ARM_AM::asr)
1369 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001370 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001371 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001372 ShiftAmt = 0;
1373 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1374 Binary |= ShiftAmt << ARMII::ShiftShift;
1375 }
1376
1377 emitWordLE(Binary);
1378}
1379
Chris Lattner33fabd72010-02-02 21:48:51 +00001380void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001381 const TargetInstrDesc &TID = MI.getDesc();
1382
Torok Edwindac237e2009-07-08 20:53:28 +00001383 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001384 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001385 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001386
Evan Cheng7602e112008-09-02 06:52:38 +00001387 // Part of binary is determined by TableGn.
1388 unsigned Binary = getBinaryCodeForInstr(MI);
1389
Evan Chengedda31c2008-11-05 18:35:52 +00001390 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001391 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001392
1393 // Set signed_immed_24 field
1394 Binary |= getMachineOpValue(MI, 0);
1395
Evan Cheng83b5cf02008-11-05 23:22:34 +00001396 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001397}
1398
Chris Lattner33fabd72010-02-02 21:48:51 +00001399void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001400 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001401 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001402 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001403 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1404 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001405
1406 // Now emit the jump table entries.
1407 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1408 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1409 if (IsPIC)
1410 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001411 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001412 else
1413 // Absolute DestBB address.
1414 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1415 emitWordLE(0);
1416 }
1417}
1418
Chris Lattner33fabd72010-02-02 21:48:51 +00001419void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001420 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001421
Evan Cheng437c1732008-11-07 22:30:53 +00001422 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001423 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001424 // First emit a ldr pc, [] instruction.
1425 emitDataProcessingInstruction(MI, ARM::PC);
1426
1427 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001428 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001429 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001430 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1431 emitInlineJumpTable(JTIndex);
1432 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001433 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001434 // First emit a ldr pc, [] instruction.
1435 emitLoadStoreInstruction(MI, ARM::PC);
1436
1437 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001438 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001439 return;
1440 }
1441
Evan Chengedda31c2008-11-05 18:35:52 +00001442 // Part of binary is determined by TableGn.
1443 unsigned Binary = getBinaryCodeForInstr(MI);
1444
1445 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001446 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001447
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001448 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001449 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001450 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001451 else
Evan Chengedda31c2008-11-05 18:35:52 +00001452 // otherwise, set the return register
1453 Binary |= getMachineOpValue(MI, 0);
1454
Evan Cheng83b5cf02008-11-05 23:22:34 +00001455 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001456}
Evan Cheng7602e112008-09-02 06:52:38 +00001457
Evan Cheng80a11982008-11-12 06:41:41 +00001458static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001459 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001460 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001461 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001462 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001463 if (!isSPVFP)
1464 Binary |= RegD << ARMII::RegRdShift;
1465 else {
1466 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1467 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1468 }
Evan Cheng80a11982008-11-12 06:41:41 +00001469 return Binary;
1470}
Evan Cheng78be83d2008-11-11 19:40:26 +00001471
Evan Cheng80a11982008-11-12 06:41:41 +00001472static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001473 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001474 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001475 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001476 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001477 if (!isSPVFP)
1478 Binary |= RegN << ARMII::RegRnShift;
1479 else {
1480 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1481 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1482 }
Evan Cheng80a11982008-11-12 06:41:41 +00001483 return Binary;
1484}
Evan Chengd06d48d2008-11-12 02:19:38 +00001485
Evan Cheng80a11982008-11-12 06:41:41 +00001486static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1487 unsigned RegM = MI.getOperand(OpIdx).getReg();
1488 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001489 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001490 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001491 if (!isSPVFP)
1492 Binary |= RegM;
1493 else {
1494 Binary |= ((RegM & 0x1E) >> 1);
1495 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001496 }
Evan Cheng80a11982008-11-12 06:41:41 +00001497 return Binary;
1498}
1499
Chris Lattner33fabd72010-02-02 21:48:51 +00001500void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001501 const TargetInstrDesc &TID = MI.getDesc();
1502
1503 // Part of binary is determined by TableGn.
1504 unsigned Binary = getBinaryCodeForInstr(MI);
1505
1506 // Set the conditional execution predicate
1507 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1508
1509 unsigned OpIdx = 0;
1510 assert((Binary & ARMII::D_BitShift) == 0 &&
1511 (Binary & ARMII::N_BitShift) == 0 &&
1512 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1513
1514 // Encode Dd / Sd.
1515 Binary |= encodeVFPRd(MI, OpIdx++);
1516
1517 // If this is a two-address operand, skip it, e.g. FMACD.
1518 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1519 ++OpIdx;
1520
1521 // Encode Dn / Sn.
1522 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001523 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001524
1525 if (OpIdx == TID.getNumOperands() ||
1526 TID.OpInfo[OpIdx].isPredicate() ||
1527 TID.OpInfo[OpIdx].isOptionalDef()) {
1528 // FCMPEZD etc. has only one operand.
1529 emitWordLE(Binary);
1530 return;
1531 }
1532
1533 // Encode Dm / Sm.
1534 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001535
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001536 emitWordLE(Binary);
1537}
1538
Bob Wilson87949d42010-03-17 21:16:45 +00001539void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001540 const TargetInstrDesc &TID = MI.getDesc();
1541 unsigned Form = TID.TSFlags & ARMII::FormMask;
1542
1543 // Part of binary is determined by TableGn.
1544 unsigned Binary = getBinaryCodeForInstr(MI);
1545
1546 // Set the conditional execution predicate
1547 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1548
1549 switch (Form) {
1550 default: break;
1551 case ARMII::VFPConv1Frm:
1552 case ARMII::VFPConv2Frm:
1553 case ARMII::VFPConv3Frm:
1554 // Encode Dd / Sd.
1555 Binary |= encodeVFPRd(MI, 0);
1556 break;
1557 case ARMII::VFPConv4Frm:
1558 // Encode Dn / Sn.
1559 Binary |= encodeVFPRn(MI, 0);
1560 break;
1561 case ARMII::VFPConv5Frm:
1562 // Encode Dm / Sm.
1563 Binary |= encodeVFPRm(MI, 0);
1564 break;
1565 }
1566
1567 switch (Form) {
1568 default: break;
1569 case ARMII::VFPConv1Frm:
1570 // Encode Dm / Sm.
1571 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001572 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001573 case ARMII::VFPConv2Frm:
1574 case ARMII::VFPConv3Frm:
1575 // Encode Dn / Sn.
1576 Binary |= encodeVFPRn(MI, 1);
1577 break;
1578 case ARMII::VFPConv4Frm:
1579 case ARMII::VFPConv5Frm:
1580 // Encode Dd / Sd.
1581 Binary |= encodeVFPRd(MI, 1);
1582 break;
1583 }
1584
1585 if (Form == ARMII::VFPConv5Frm)
1586 // Encode Dn / Sn.
1587 Binary |= encodeVFPRn(MI, 2);
1588 else if (Form == ARMII::VFPConv3Frm)
1589 // Encode Dm / Sm.
1590 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001591
1592 emitWordLE(Binary);
1593}
1594
Chris Lattner33fabd72010-02-02 21:48:51 +00001595void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001596 // Part of binary is determined by TableGn.
1597 unsigned Binary = getBinaryCodeForInstr(MI);
1598
1599 // Set the conditional execution predicate
1600 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1601
1602 unsigned OpIdx = 0;
1603
1604 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001605 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001606
1607 // Encode address base.
1608 const MachineOperand &Base = MI.getOperand(OpIdx++);
1609 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1610
1611 // If there is a non-zero immediate offset, encode it.
1612 if (Base.isReg()) {
1613 const MachineOperand &Offset = MI.getOperand(OpIdx);
1614 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1615 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1616 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001617 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001618 emitWordLE(Binary);
1619 return;
1620 }
1621 }
1622
1623 // If immediate offset is omitted, default to +0.
1624 Binary |= 1 << ARMII::U_BitShift;
1625
1626 emitWordLE(Binary);
1627}
1628
Bob Wilson87949d42010-03-17 21:16:45 +00001629void
1630ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001631 const TargetInstrDesc &TID = MI.getDesc();
1632 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1633
Evan Chengcd8e66a2008-11-11 21:48:44 +00001634 // Part of binary is determined by TableGn.
1635 unsigned Binary = getBinaryCodeForInstr(MI);
1636
1637 // Set the conditional execution predicate
1638 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1639
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001640 // Skip operand 0 of an instruction with base register update.
1641 unsigned OpIdx = 0;
1642 if (IsUpdating)
1643 ++OpIdx;
1644
Evan Chengcd8e66a2008-11-11 21:48:44 +00001645 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001646 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001647
1648 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001649 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1650 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001651
1652 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001653 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001654 Binary |= 0x1 << ARMII::W_BitShift;
1655
1656 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001657 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001658
Bob Wilsond4bfd542010-08-27 23:18:17 +00001659 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001660 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001661 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001662 const MachineOperand &MO = MI.getOperand(i);
1663 if (!MO.isReg() || MO.isImplicit())
1664 break;
1665 ++NumRegs;
1666 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001667 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1668 // Otherwise, it will be 0, in the case of 32-bit registers.
1669 if(Binary & 0x100)
1670 Binary |= NumRegs * 2;
1671 else
1672 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001673
1674 emitWordLE(Binary);
1675}
1676
Bob Wilson1a913ed2010-06-11 21:34:50 +00001677static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1678 unsigned RegD = MI.getOperand(OpIdx).getReg();
1679 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001680 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001681 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1682 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1683 return Binary;
1684}
1685
Bob Wilson5e7b6072010-06-25 22:40:46 +00001686static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1687 unsigned RegN = MI.getOperand(OpIdx).getReg();
1688 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001689 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001690 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1691 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1692 return Binary;
1693}
1694
Bob Wilson583a2a02010-06-25 21:17:19 +00001695static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1696 unsigned RegM = MI.getOperand(OpIdx).getReg();
1697 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001698 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001699 Binary |= (RegM & 0xf);
1700 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1701 return Binary;
1702}
1703
Bob Wilsond896a972010-06-28 21:12:19 +00001704/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1705/// data-processing instruction to the corresponding Thumb encoding.
1706static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1707 assert((Binary & 0xfe000000) == 0xf2000000 &&
1708 "not an ARM NEON data-processing instruction");
1709 unsigned UBit = (Binary >> 24) & 1;
1710 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1711}
1712
Bob Wilsond5a563d2010-06-29 17:34:07 +00001713void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001714 unsigned Binary = getBinaryCodeForInstr(MI);
1715
Bob Wilsond5a563d2010-06-29 17:34:07 +00001716 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1717 const TargetInstrDesc &TID = MI.getDesc();
1718 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1719 RegTOpIdx = 0;
1720 RegNOpIdx = 1;
1721 LnOpIdx = 2;
1722 } else { // ARMII::NSetLnFrm
1723 RegTOpIdx = 2;
1724 RegNOpIdx = 0;
1725 LnOpIdx = 3;
1726 }
1727
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001728 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001729 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001730
Bob Wilsond5a563d2010-06-29 17:34:07 +00001731 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001732 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001733 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001734 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001735
1736 unsigned LaneShift;
1737 if ((Binary & (1 << 22)) != 0)
1738 LaneShift = 0; // 8-bit elements
1739 else if ((Binary & (1 << 5)) != 0)
1740 LaneShift = 1; // 16-bit elements
1741 else
1742 LaneShift = 2; // 32-bit elements
1743
Bob Wilsond5a563d2010-06-29 17:34:07 +00001744 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001745 unsigned Opc1 = Lane >> 2;
1746 unsigned Opc2 = Lane & 3;
1747 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1748 Binary |= (Opc1 << 21);
1749 Binary |= (Opc2 << 5);
1750
1751 emitWordLE(Binary);
1752}
1753
Bob Wilson21773e72010-06-29 20:13:29 +00001754void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1755 unsigned Binary = getBinaryCodeForInstr(MI);
1756
1757 // Set the conditional execution predicate
1758 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1759
1760 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001761 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001762 Binary |= (RegT << ARMII::RegRdShift);
1763 Binary |= encodeNEONRn(MI, 0);
1764 emitWordLE(Binary);
1765}
1766
Bob Wilson583a2a02010-06-25 21:17:19 +00001767void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001768 unsigned Binary = getBinaryCodeForInstr(MI);
1769 // Destination register is encoded in Dd.
1770 Binary |= encodeNEONRd(MI, 0);
1771 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1772 unsigned Imm = MI.getOperand(1).getImm();
1773 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001774 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001775 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001776 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001777 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001778 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001779 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001780 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001781 emitWordLE(Binary);
1782}
1783
Bob Wilson583a2a02010-06-25 21:17:19 +00001784void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001785 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001786 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001787 // Destination register is encoded in Dd; source register in Dm.
1788 unsigned OpIdx = 0;
1789 Binary |= encodeNEONRd(MI, OpIdx++);
1790 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1791 ++OpIdx;
1792 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001793 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001794 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001795 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1796 emitWordLE(Binary);
1797}
1798
Bob Wilson5e7b6072010-06-25 22:40:46 +00001799void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1800 const TargetInstrDesc &TID = MI.getDesc();
1801 unsigned Binary = getBinaryCodeForInstr(MI);
1802 // Destination register is encoded in Dd; source registers in Dn and Dm.
1803 unsigned OpIdx = 0;
1804 Binary |= encodeNEONRd(MI, OpIdx++);
1805 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1806 ++OpIdx;
1807 Binary |= encodeNEONRn(MI, OpIdx++);
1808 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1809 ++OpIdx;
1810 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001811 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001812 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001813 // FIXME: This does not handle VMOVDneon or VMOVQ.
1814 emitWordLE(Binary);
1815}
1816
Evan Cheng7602e112008-09-02 06:52:38 +00001817#include "ARMGenCodeEmitter.inc"