blob: e85c7d92877592f2796977219aae5f531c043520 [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.
Jim Grosbachc466b932010-11-11 18:04:49 +0000164 unsigned getBranchTargetOpValue(const MachineInstr &MI, unsigned Op)
165 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000166 unsigned getCCOutOpValue(const MachineInstr &MI, unsigned Op)
167 const { return 0; }
Jim Grosbach2a6a93d2010-10-12 23:18:08 +0000168 unsigned getSOImmOpValue(const MachineInstr &MI, unsigned Op)
169 const { return 0; }
Jim Grosbachef324d72010-10-12 23:53:58 +0000170 unsigned getSORegOpValue(const MachineInstr &MI, unsigned Op)
171 const { return 0; }
Jim Grosbachb35ad412010-10-13 19:56:10 +0000172 unsigned getRotImmOpValue(const MachineInstr &MI, unsigned Op)
173 const { return 0; }
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000174 unsigned getImmMinusOneOpValue(const MachineInstr &MI, unsigned Op)
175 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000176 unsigned getAddrMode6AddressOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersond9aa7d32010-11-02 00:05:05 +0000177 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000178 unsigned getAddrMode6OffsetOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersoncf667be2010-11-02 01:24:55 +0000179 const { return 0; }
Jim Grosbach3fea191052010-10-21 22:03:21 +0000180 unsigned getBitfieldInvertedMaskOpValue(const MachineInstr &MI,
181 unsigned Op) const { return 0; }
Jim Grosbach5d5eb9e2010-11-10 23:38:36 +0000182 uint32_t getLdStmModeOpValue(const MachineInstr &MI, unsigned OpIdx)
183 const {return 0; }
Jim Grosbach54fea632010-11-09 17:20:53 +0000184 uint32_t getLdStSORegOpValue(const MachineInstr &MI, unsigned OpIdx)
185 const { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000186
187 unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
188 const {
189 // {17-13} = reg
190 // {12} = (U)nsigned (add == '1', sub == '0')
191 // {11-0} = imm12
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000192 const MachineOperand &MO = MI.getOperand(Op);
193 const MachineOperand &MO1 = MI.getOperand(Op + 1);
194 if (!MO.isReg()) {
195 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
196 return 0;
Jim Grosbachf31430f2010-10-27 19:55:59 +0000197 }
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000198 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000199 int32_t Imm12 = MO1.getImm();
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000200 uint32_t Binary;
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000201 Binary = Imm12 & 0xfff;
202 if (Imm12 >= 0)
203 Binary |= (1 << 12);
204 Binary |= (Reg << 13);
205 return Binary;
206 }
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000207 uint32_t getAddrMode3OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
208 const { return 0;}
Jim Grosbach570a9222010-11-11 01:09:40 +0000209 uint32_t getAddrMode3OpValue(const MachineInstr &MI, unsigned Op) const
210 { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000211 uint32_t getAddrMode5OpValue(const MachineInstr &MI, unsigned Op) const {
212 // {12-9} = reg
213 // {8} = (U)nsigned (add == '1', sub == '0')
214 // {7-0} = imm12
215 const MachineOperand &MO = MI.getOperand(Op);
216 const MachineOperand &MO1 = MI.getOperand(Op + 1);
217 if (!MO.isReg()) {
218 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
219 return 0;
220 }
221 unsigned Reg = getARMRegisterNumbering(MO.getReg());
222 int32_t Imm8 = MO1.getImm();
223 uint32_t Binary;
224 Binary = Imm8 & 0xff;
225 if (Imm8 >= 0)
226 Binary |= (1 << 8);
227 Binary |= (Reg << 9);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000228 return Binary;
229 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000230 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
231 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000232
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000233 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
234 const { return 0; }
235
Shih-wei Liao5170b712010-05-26 00:02:28 +0000236 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000237 /// machine operand requires relocation, record the relocation and return
238 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000239 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000240 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000241
Evan Cheng83b5cf02008-11-05 23:22:34 +0000242 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000243 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000244 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000245
246 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000247 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000248 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000249 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000250 intptr_t ACPV = 0) const;
251 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
252 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
253 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000254 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000255 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000256 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000257}
258
Chris Lattner33fabd72010-02-02 21:48:51 +0000259char ARMCodeEmitter::ID = 0;
260
Bob Wilson87949d42010-03-17 21:16:45 +0000261/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000262/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000263FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
264 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000265 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000266}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000267
Chris Lattner33fabd72010-02-02 21:48:51 +0000268bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000269 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
270 MF.getTarget().getRelocationModel() != Reloc::Static) &&
271 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000272 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
273 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
274 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000275 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000276 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000277 MJTEs = 0;
278 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000279 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000280 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000281 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000282 MMI = &getAnalysis<MachineModuleInfo>();
283 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000284
285 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000286 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000287 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000288 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000289 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000290 MBB != E; ++MBB) {
291 MCE.StartMachineBasicBlock(MBB);
292 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
293 I != E; ++I)
294 emitInstruction(*I);
295 }
296 } while (MCE.finishFunction(MF));
297
298 return false;
299}
300
Evan Cheng83b5cf02008-11-05 23:22:34 +0000301/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000302///
Chris Lattner33fabd72010-02-02 21:48:51 +0000303unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000304 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000305 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000306 case ARM_AM::asr: return 2;
307 case ARM_AM::lsl: return 0;
308 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000309 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000310 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000311 }
Evan Cheng7602e112008-09-02 06:52:38 +0000312 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000313}
314
Shih-wei Liao5170b712010-05-26 00:02:28 +0000315/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000316/// machine operand requires relocation, record the relocation and return zero.
317unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000318 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000319 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000320 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000321 && "Relocation to this function should be for movt or movw");
322
323 if (MO.isImm())
324 return static_cast<unsigned>(MO.getImm());
325 else if (MO.isGlobal())
326 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
327 else if (MO.isSymbol())
328 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
329 else if (MO.isMBB())
330 emitMachineBasicBlock(MO.getMBB(), Reloc);
331 else {
332#ifndef NDEBUG
333 errs() << MO;
334#endif
335 llvm_unreachable("Unsupported operand type for movw/movt");
336 }
337 return 0;
338}
339
Evan Cheng7602e112008-09-02 06:52:38 +0000340/// getMachineOpValue - Return binary encoding of operand. If the machine
341/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000342unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000343 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000344 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000345 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000346 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000347 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000348 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000349 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000350 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000351 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000352 else if (MO.isCPI()) {
353 const TargetInstrDesc &TID = MI.getDesc();
354 // For VFP load, the immediate offset is multiplied by 4.
355 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
356 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
357 emitConstPoolAddress(MO.getIndex(), Reloc);
358 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000359 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000360 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000361 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000362 else {
Torok Edwindac237e2009-07-08 20:53:28 +0000363#ifndef NDEBUG
Chris Lattner705e07f2009-08-23 03:41:05 +0000364 errs() << MO;
Torok Edwindac237e2009-07-08 20:53:28 +0000365#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000366 llvm_unreachable(0);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000367 }
Evan Cheng7602e112008-09-02 06:52:38 +0000368 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000369}
370
Evan Cheng057d0c32008-09-18 07:28:19 +0000371/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000372///
Dan Gohman46510a72010-04-15 01:51:59 +0000373void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000374 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000375 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000376 MachineRelocation MR = Indirect
377 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000378 const_cast<GlobalValue *>(GV),
379 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000380 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000381 const_cast<GlobalValue *>(GV), ACPV,
382 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000383 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000384}
385
386/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
387/// be emitted to the current location in the function, and allow it to be PC
388/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000389void ARMCodeEmitter::
390emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000391 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
392 Reloc, ES));
393}
394
395/// emitConstPoolAddress - Arrange for the address of an constant pool
396/// to be emitted to the current location in the function, and allow it to be PC
397/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000398void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000399 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000400 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000401 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000402}
403
404/// emitJumpTableAddress - Arrange for the address of a jump table to
405/// be emitted to the current location in the function, and allow it to be PC
406/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000407void ARMCodeEmitter::
408emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000409 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000410 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000411}
412
Raul Herbster9c1a3822007-08-30 23:29:26 +0000413/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000414void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000415 unsigned Reloc,
416 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000417 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000418 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000419}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000420
Chris Lattner33fabd72010-02-02 21:48:51 +0000421void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000422 DEBUG(errs() << " 0x";
423 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000424 MCE.emitWordLE(Binary);
425}
426
Chris Lattner33fabd72010-02-02 21:48:51 +0000427void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000428 DEBUG(errs() << " 0x";
429 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000430 MCE.emitDWordLE(Binary);
431}
432
Chris Lattner33fabd72010-02-02 21:48:51 +0000433void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000434 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000435
Devang Patelaf0e2722009-10-06 02:19:11 +0000436 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000437
Dan Gohmanfe601042010-06-22 15:08:57 +0000438 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000439 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000440 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000441 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000442 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000443 }
Evan Chengedda31c2008-11-05 18:35:52 +0000444 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000445 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000446 break;
447 case ARMII::DPFrm:
448 case ARMII::DPSoRegFrm:
449 emitDataProcessingInstruction(MI);
450 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000451 case ARMII::LdFrm:
452 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000453 emitLoadStoreInstruction(MI);
454 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000455 case ARMII::LdMiscFrm:
456 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000457 emitMiscLoadStoreInstruction(MI);
458 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000459 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000460 emitLoadStoreMultipleInstruction(MI);
461 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000462 case ARMII::MulFrm:
463 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000464 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000465 case ARMII::ExtFrm:
466 emitExtendInstruction(MI);
467 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000468 case ARMII::ArithMiscFrm:
469 emitMiscArithInstruction(MI);
470 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000471 case ARMII::SatFrm:
472 emitSaturateInstruction(MI);
473 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000474 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000475 emitBranchInstruction(MI);
476 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000477 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000478 emitMiscBranchInstruction(MI);
479 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000480 // VFP instructions.
481 case ARMII::VFPUnaryFrm:
482 case ARMII::VFPBinaryFrm:
483 emitVFPArithInstruction(MI);
484 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000485 case ARMII::VFPConv1Frm:
486 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000487 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000488 case ARMII::VFPConv4Frm:
489 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000490 emitVFPConversionInstruction(MI);
491 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000492 case ARMII::VFPLdStFrm:
493 emitVFPLoadStoreInstruction(MI);
494 break;
495 case ARMII::VFPLdStMulFrm:
496 emitVFPLoadStoreMultipleInstruction(MI);
497 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000498
Bob Wilson1a913ed2010-06-11 21:34:50 +0000499 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000500 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000501 case ARMII::NSetLnFrm:
502 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000503 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000504 case ARMII::NDupFrm:
505 emitNEONDupInstruction(MI);
506 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000507 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000508 emitNEON1RegModImmInstruction(MI);
509 break;
510 case ARMII::N2RegFrm:
511 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000512 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000513 case ARMII::N3RegFrm:
514 emitNEON3RegInstruction(MI);
515 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000516 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000517 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000518}
519
Chris Lattner33fabd72010-02-02 21:48:51 +0000520void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000521 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
522 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000523 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000524
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000525 // Remember the CONSTPOOL_ENTRY address for later relocation.
526 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
527
528 // Emit constpool island entry. In most cases, the actual values will be
529 // resolved and relocated after code emission.
530 if (MCPE.isMachineConstantPoolEntry()) {
531 ARMConstantPoolValue *ACPV =
532 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
533
Chris Lattner705e07f2009-08-23 03:41:05 +0000534 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
535 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000536
Bob Wilson28989a82009-11-02 16:59:06 +0000537 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000538 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000539 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000540 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000541 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000542 isa<Function>(GV),
543 Subtarget->GVIsIndirectSymbol(GV, RelocM),
544 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000545 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000546 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
547 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000548 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000549 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000550 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000551
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000552 DEBUG({
553 errs() << " ** Constant pool #" << CPI << " @ "
554 << (void*)MCE.getCurrentPCValue() << " ";
555 if (const Function *F = dyn_cast<Function>(CV))
556 errs() << F->getName();
557 else
558 errs() << *CV;
559 errs() << '\n';
560 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000561
Dan Gohman46510a72010-04-15 01:51:59 +0000562 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000563 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000564 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000565 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000566 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000567 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000568 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000569 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000570 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000571 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000572 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
573 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000574 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000575 }
576 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000577 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000578 }
579 }
580}
581
Zonr Changf86399b2010-05-25 08:42:45 +0000582void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
583 const MachineOperand &MO0 = MI.getOperand(0);
584 const MachineOperand &MO1 = MI.getOperand(1);
585
586 // Emit the 'movw' instruction.
587 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
588
589 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
590
591 // Set the conditional execution predicate.
592 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
593
594 // Encode Rd.
595 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
596
597 // Encode imm16 as imm4:imm12
598 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
599 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
600 emitWordLE(Binary);
601
602 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
603 // Emit the 'movt' instruction.
604 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
605
606 // Set the conditional execution predicate.
607 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
608
609 // Encode Rd.
610 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
611
612 // Encode imm16 as imm4:imm1, same as movw above.
613 Binary |= Hi16 & 0xFFF;
614 Binary |= ((Hi16 >> 12) & 0xF) << 16;
615 emitWordLE(Binary);
616}
617
Chris Lattner33fabd72010-02-02 21:48:51 +0000618void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000619 const MachineOperand &MO0 = MI.getOperand(0);
620 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000621 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
622 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000623 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
624 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
625
626 // Emit the 'mov' instruction.
627 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
628
629 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000630 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000631
632 // Encode Rd.
633 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
634
635 // Encode so_imm.
636 // Set bit I(25) to identify this is the immediate form of <shifter_op>
637 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000638 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000639 emitWordLE(Binary);
640
641 // Now the 'orr' instruction.
642 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
643
644 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000645 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000646
647 // Encode Rd.
648 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
649
650 // Encode Rn.
651 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
652
653 // Encode so_imm.
654 // Set bit I(25) to identify this is the immediate form of <shifter_op>
655 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000656 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000657 emitWordLE(Binary);
658}
659
Chris Lattner33fabd72010-02-02 21:48:51 +0000660void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000661 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000662
Evan Cheng4df60f52008-11-07 09:06:08 +0000663 const TargetInstrDesc &TID = MI.getDesc();
664
665 // Emit the 'add' instruction.
666 unsigned Binary = 0x4 << 21; // add: Insts{24-31} = 0b0100
667
668 // Set the conditional execution predicate
669 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
670
671 // Encode S bit if MI modifies CPSR.
672 Binary |= getAddrModeSBit(MI, TID);
673
674 // Encode Rd.
675 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
676
677 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000678 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000679
680 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000681 Binary |= 1 << ARMII::I_BitShift;
682 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
683
684 emitWordLE(Binary);
685}
686
Chris Lattner33fabd72010-02-02 21:48:51 +0000687void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000688 unsigned Opcode = MI.getDesc().Opcode;
689
690 // Part of binary is determined by TableGn.
691 unsigned Binary = getBinaryCodeForInstr(MI);
692
693 // Set the conditional execution predicate
694 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
695
696 // Encode S bit if MI modifies CPSR.
697 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
698 Binary |= 1 << ARMII::S_BitShift;
699
700 // Encode register def if there is one.
701 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
702
703 // Encode the shift operation.
704 switch (Opcode) {
705 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000706 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000707 // rrx
708 Binary |= 0x6 << 4;
709 break;
710 case ARM::MOVsrl_flag:
711 // lsr #1
712 Binary |= (0x2 << 4) | (1 << 7);
713 break;
714 case ARM::MOVsra_flag:
715 // asr #1
716 Binary |= (0x4 << 4) | (1 << 7);
717 break;
718 }
719
720 // Encode register Rm.
721 Binary |= getMachineOpValue(MI, 1);
722
723 emitWordLE(Binary);
724}
725
Chris Lattner33fabd72010-02-02 21:48:51 +0000726void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000727 DEBUG(errs() << " ** LPC" << LabelID << " @ "
728 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000729 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
730}
731
Chris Lattner33fabd72010-02-02 21:48:51 +0000732void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000733 unsigned Opcode = MI.getDesc().Opcode;
734 switch (Opcode) {
735 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000736 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000737 case ARM::BX:
738 case ARM::BMOVPCRX:
739 case ARM::BXr9:
740 case ARM::BMOVPCRXr9: {
741 // First emit mov lr, pc
742 unsigned Binary = 0x01a0e00f;
743 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
744 emitWordLE(Binary);
745
746 // and then emit the branch.
747 emitMiscBranchInstruction(MI);
748 break;
749 }
Chris Lattner518bb532010-02-09 19:54:29 +0000750 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000751 // We allow inline assembler nodes with empty bodies - they can
752 // implicitly define registers, which is ok for JIT.
753 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000754 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000755 }
Evan Chengffa6d962008-11-13 23:36:57 +0000756 break;
757 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000758 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000759 case TargetOpcode::EH_LABEL:
760 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
761 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000762 case TargetOpcode::IMPLICIT_DEF:
763 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000764 // Do nothing.
765 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000766 case ARM::CONSTPOOL_ENTRY:
767 emitConstPoolInstruction(MI);
768 break;
769 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000770 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000771 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000772 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000773 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000774 break;
775 }
776 case ARM::PICLDR:
777 case ARM::PICLDRB:
778 case ARM::PICSTR:
779 case ARM::PICSTRB: {
780 // Remember of the address of the PC label for relocation later.
781 addPCLabel(MI.getOperand(2).getImm());
782 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000783 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000784 break;
785 }
786 case ARM::PICLDRH:
787 case ARM::PICLDRSH:
788 case ARM::PICLDRSB:
789 case ARM::PICSTRH: {
790 // Remember of the address of the PC label for relocation later.
791 addPCLabel(MI.getOperand(2).getImm());
792 // These are just load / store instructions that implicitly read pc.
793 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000794 break;
795 }
Zonr Changf86399b2010-05-25 08:42:45 +0000796
797 case ARM::MOVi32imm:
798 emitMOVi32immInstruction(MI);
799 break;
800
Evan Cheng90922132008-11-06 02:25:39 +0000801 case ARM::MOVi2pieces:
802 // Two instructions to materialize a constant.
803 emitMOVi2piecesInstruction(MI);
804 break;
Evan Cheng4df60f52008-11-07 09:06:08 +0000805 case ARM::LEApcrelJT:
806 // Materialize jumptable address.
807 emitLEApcrelJTInstruction(MI);
808 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000809 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000810 case ARM::MOVsrl_flag:
811 case ARM::MOVsra_flag:
812 emitPseudoMoveInstruction(MI);
813 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000814 }
815}
816
Bob Wilson87949d42010-03-17 21:16:45 +0000817unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000818 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000819 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000820 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000821 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000822
823 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
824 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
825 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
826
827 // Encode the shift opcode.
828 unsigned SBits = 0;
829 unsigned Rs = MO1.getReg();
830 if (Rs) {
831 // Set shift operand (bit[7:4]).
832 // LSL - 0001
833 // LSR - 0011
834 // ASR - 0101
835 // ROR - 0111
836 // RRX - 0110 and bit[11:8] clear.
837 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000838 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000839 case ARM_AM::lsl: SBits = 0x1; break;
840 case ARM_AM::lsr: SBits = 0x3; break;
841 case ARM_AM::asr: SBits = 0x5; break;
842 case ARM_AM::ror: SBits = 0x7; break;
843 case ARM_AM::rrx: SBits = 0x6; break;
844 }
845 } else {
846 // Set shift operand (bit[6:4]).
847 // LSL - 000
848 // LSR - 010
849 // ASR - 100
850 // ROR - 110
851 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000852 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000853 case ARM_AM::lsl: SBits = 0x0; break;
854 case ARM_AM::lsr: SBits = 0x2; break;
855 case ARM_AM::asr: SBits = 0x4; break;
856 case ARM_AM::ror: SBits = 0x6; break;
857 }
858 }
859 Binary |= SBits << 4;
860 if (SOpc == ARM_AM::rrx)
861 return Binary;
862
863 // Encode the shift operation Rs or shift_imm (except rrx).
864 if (Rs) {
865 // Encode Rs bit[11:8].
866 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000867 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000868 }
869
870 // Encode shift_imm bit[11:7].
871 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
872}
873
Chris Lattner33fabd72010-02-02 21:48:51 +0000874unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000875 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
876 assert(SoImmVal != -1 && "Not a valid so_imm value!");
877
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000878 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000879 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000880 << ARMII::SoRotImmShift;
881
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000882 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000883 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000884 return Binary;
885}
886
Chris Lattner33fabd72010-02-02 21:48:51 +0000887unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000888 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000889 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000890 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000891 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000892 return 1 << ARMII::S_BitShift;
893 }
894 return 0;
895}
896
Bob Wilson87949d42010-03-17 21:16:45 +0000897void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000898 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000899 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000900 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000901
902 // Part of binary is determined by TableGn.
903 unsigned Binary = getBinaryCodeForInstr(MI);
904
Jim Grosbach33412622008-10-07 19:05:35 +0000905 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000906 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000907
Evan Cheng49a9f292008-09-12 22:45:55 +0000908 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000909 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000910
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000911 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000912 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000913 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000914 if (NumDefs)
915 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
916 else if (ImplicitRd)
917 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000918 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000919
Zonr Changf86399b2010-05-25 08:42:45 +0000920 if (TID.Opcode == ARM::MOVi16) {
921 // Get immediate from MI.
922 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
923 ARM::reloc_arm_movw);
924 // Encode imm which is the same as in emitMOVi32immInstruction().
925 Binary |= Lo16 & 0xFFF;
926 Binary |= ((Lo16 >> 12) & 0xF) << 16;
927 emitWordLE(Binary);
928 return;
929 } else if(TID.Opcode == ARM::MOVTi16) {
930 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
931 ARM::reloc_arm_movt) >> 16);
932 Binary |= Hi16 & 0xFFF;
933 Binary |= ((Hi16 >> 12) & 0xF) << 16;
934 emitWordLE(Binary);
935 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +0000936 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000937 uint32_t v = ~MI.getOperand(2).getImm();
938 int32_t lsb = CountTrailingZeros_32(v);
939 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000940 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000941 Binary |= (msb & 0x1F) << 16;
942 Binary |= (lsb & 0x1F) << 7;
943 emitWordLE(Binary);
944 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000945 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
946 // Encode Rn in Instr{0-3}
947 Binary |= getMachineOpValue(MI, OpIdx++);
948
949 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
950 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
951
952 // Instr{20-16} = widthm1, Instr{11-7} = lsb
953 Binary |= (widthm1 & 0x1F) << 16;
954 Binary |= (lsb & 0x1F) << 7;
955 emitWordLE(Binary);
956 return;
Zonr Changf86399b2010-05-25 08:42:45 +0000957 }
958
Evan Chengd87293c2008-11-06 08:47:38 +0000959 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
960 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
961 ++OpIdx;
962
Jim Grosbachefd30ba2008-10-01 18:16:49 +0000963 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +0000964 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
965 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000966 if (ImplicitRn)
967 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000968 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000969 else {
970 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
971 ++OpIdx;
972 }
Evan Cheng7602e112008-09-02 06:52:38 +0000973 }
974
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000975 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000976 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +0000977 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000978 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000979 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +0000980 return;
981 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000982
Evan Chengedda31c2008-11-05 18:35:52 +0000983 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000984 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000985 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +0000986 return;
987 }
Evan Cheng7602e112008-09-02 06:52:38 +0000988
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000989 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000990 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +0000991
Evan Cheng83b5cf02008-11-05 23:22:34 +0000992 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +0000993}
994
Bob Wilson87949d42010-03-17 21:16:45 +0000995void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000996 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000997 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +0000998 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +0000999 unsigned Form = TID.TSFlags & ARMII::FormMask;
1000 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001001
Evan Chengedda31c2008-11-05 18:35:52 +00001002 // Part of binary is determined by TableGn.
1003 unsigned Binary = getBinaryCodeForInstr(MI);
1004
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001005 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
1006 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
1007 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +00001008 emitWordLE(Binary);
1009 return;
1010 }
1011
Jim Grosbach33412622008-10-07 19:05:35 +00001012 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001013 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001014
Evan Cheng4df60f52008-11-07 09:06:08 +00001015 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001016
1017 // Operand 0 of a pre- and post-indexed store is the address base
1018 // writeback. Skip it.
1019 bool Skipped = false;
1020 if (IsPrePost && Form == ARMII::StFrm) {
1021 ++OpIdx;
1022 Skipped = true;
1023 }
1024
1025 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001026 if (ImplicitRd)
1027 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001028 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001029 else
1030 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001031
1032 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001033 if (ImplicitRn)
1034 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001035 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001036 else
1037 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001038
Evan Cheng05c356e2008-11-08 01:44:13 +00001039 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001040 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001041 ++OpIdx;
1042
Evan Cheng83b5cf02008-11-05 23:22:34 +00001043 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001044 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001045 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001046
Evan Chenge7de7e32008-09-13 01:44:01 +00001047 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001048 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001049 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001050 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001051 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001052 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001053 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1054 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001055 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001056 }
1057
Bill Wendling7d31a162010-10-20 22:44:54 +00001058 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001059 Binary |= 1 << ARMII::I_BitShift;
1060 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1061 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001062 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001063
Evan Cheng70632912008-11-12 07:34:37 +00001064 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001065 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001066 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001067 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1068 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001069 }
1070
Evan Cheng83b5cf02008-11-05 23:22:34 +00001071 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001072}
1073
Chris Lattner33fabd72010-02-02 21:48:51 +00001074void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001075 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001076 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001077 unsigned Form = TID.TSFlags & ARMII::FormMask;
1078 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001079
Evan Chengedda31c2008-11-05 18:35:52 +00001080 // Part of binary is determined by TableGn.
1081 unsigned Binary = getBinaryCodeForInstr(MI);
1082
Jim Grosbach33412622008-10-07 19:05:35 +00001083 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001084 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001085
Evan Cheng148cad82008-11-13 07:34:59 +00001086 unsigned OpIdx = 0;
1087
1088 // Operand 0 of a pre- and post-indexed store is the address base
1089 // writeback. Skip it.
1090 bool Skipped = false;
1091 if (IsPrePost && Form == ARMII::StMiscFrm) {
1092 ++OpIdx;
1093 Skipped = true;
1094 }
1095
Evan Cheng7602e112008-09-02 06:52:38 +00001096 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001097 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001098
Evan Cheng358dec52009-06-15 08:28:29 +00001099 // Skip LDRD and STRD's second operand.
1100 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1101 ++OpIdx;
1102
Evan Cheng7602e112008-09-02 06:52:38 +00001103 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001104 if (ImplicitRn)
1105 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001106 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001107 else
1108 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001109
Evan Cheng05c356e2008-11-08 01:44:13 +00001110 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001111 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001112 ++OpIdx;
1113
Evan Cheng83b5cf02008-11-05 23:22:34 +00001114 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001115 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001116 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001117
Evan Chenge7de7e32008-09-13 01:44:01 +00001118 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001119 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001120 ARMII::U_BitShift);
1121
1122 // If this instr is in register offset/index encoding, set bit[3:0]
1123 // to the corresponding Rm register.
1124 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001125 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001126 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001127 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001128 }
1129
Evan Chengd87293c2008-11-06 08:47:38 +00001130 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001131 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001132 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001133 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001134 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1135 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001136 }
1137
Evan Cheng83b5cf02008-11-05 23:22:34 +00001138 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001139}
1140
Evan Chengcd8e66a2008-11-11 21:48:44 +00001141static unsigned getAddrModeUPBits(unsigned Mode) {
1142 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001143
1144 // Set addressing mode by modifying bits U(23) and P(24)
1145 // IA - Increment after - bit U = 1 and bit P = 0
1146 // IB - Increment before - bit U = 1 and bit P = 1
1147 // DA - Decrement after - bit U = 0 and bit P = 0
1148 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001149 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001150 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001151 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001152 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1153 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1154 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001155 }
1156
Evan Chengcd8e66a2008-11-11 21:48:44 +00001157 return Binary;
1158}
1159
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001160void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1161 const TargetInstrDesc &TID = MI.getDesc();
1162 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1163
Evan Chengcd8e66a2008-11-11 21:48:44 +00001164 // Part of binary is determined by TableGn.
1165 unsigned Binary = getBinaryCodeForInstr(MI);
1166
1167 // Set the conditional execution predicate
1168 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1169
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001170 // Skip operand 0 of an instruction with base register update.
1171 unsigned OpIdx = 0;
1172 if (IsUpdating)
1173 ++OpIdx;
1174
Evan Chengcd8e66a2008-11-11 21:48:44 +00001175 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001176 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001177
1178 // Set addressing mode by modifying bits U(23) and P(24)
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001179 const MachineOperand &MO = MI.getOperand(OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001180 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
1181
Evan Cheng7602e112008-09-02 06:52:38 +00001182 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001183 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001184 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001185
1186 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001187 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001188 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001189 if (!MO.isReg() || MO.isImplicit())
1190 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001191 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001192 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1193 RegNum < 16);
1194 Binary |= 0x1 << RegNum;
1195 }
1196
Evan Cheng83b5cf02008-11-05 23:22:34 +00001197 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001198}
1199
Chris Lattner33fabd72010-02-02 21:48:51 +00001200void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001201 const TargetInstrDesc &TID = MI.getDesc();
1202
1203 // Part of binary is determined by TableGn.
1204 unsigned Binary = getBinaryCodeForInstr(MI);
1205
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001206 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001207 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001208
1209 // Encode S bit if MI modifies CPSR.
1210 Binary |= getAddrModeSBit(MI, TID);
1211
1212 // 32x32->64bit operations have two destination registers. The number
1213 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001214 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001215 if (TID.getNumDefs() == 2)
1216 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1217
1218 // Encode Rd
1219 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1220
1221 // Encode Rm
1222 Binary |= getMachineOpValue(MI, OpIdx++);
1223
1224 // Encode Rs
1225 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1226
Evan Chengfbc9d412008-11-06 01:21:28 +00001227 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1228 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001229 if (TID.getNumOperands() > OpIdx &&
1230 !TID.OpInfo[OpIdx].isPredicate() &&
1231 !TID.OpInfo[OpIdx].isOptionalDef())
1232 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1233
1234 emitWordLE(Binary);
1235}
1236
Chris Lattner33fabd72010-02-02 21:48:51 +00001237void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001238 const TargetInstrDesc &TID = MI.getDesc();
1239
1240 // Part of binary is determined by TableGn.
1241 unsigned Binary = getBinaryCodeForInstr(MI);
1242
1243 // Set the conditional execution predicate
1244 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1245
1246 unsigned OpIdx = 0;
1247
1248 // Encode Rd
1249 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1250
1251 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1252 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1253 if (MO2.isReg()) {
1254 // Two register operand form.
1255 // Encode Rn.
1256 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1257
1258 // Encode Rm.
1259 Binary |= getMachineOpValue(MI, MO2);
1260 ++OpIdx;
1261 } else {
1262 Binary |= getMachineOpValue(MI, MO1);
1263 }
1264
1265 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1266 if (MI.getOperand(OpIdx).isImm() &&
1267 !TID.OpInfo[OpIdx].isPredicate() &&
1268 !TID.OpInfo[OpIdx].isOptionalDef())
1269 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001270
Evan Cheng83b5cf02008-11-05 23:22:34 +00001271 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001272}
1273
Chris Lattner33fabd72010-02-02 21:48:51 +00001274void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001275 const TargetInstrDesc &TID = MI.getDesc();
1276
1277 // Part of binary is determined by TableGn.
1278 unsigned Binary = getBinaryCodeForInstr(MI);
1279
1280 // Set the conditional execution predicate
1281 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1282
1283 unsigned OpIdx = 0;
1284
1285 // Encode Rd
1286 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1287
1288 const MachineOperand &MO = MI.getOperand(OpIdx++);
1289 if (OpIdx == TID.getNumOperands() ||
1290 TID.OpInfo[OpIdx].isPredicate() ||
1291 TID.OpInfo[OpIdx].isOptionalDef()) {
1292 // Encode Rm and it's done.
1293 Binary |= getMachineOpValue(MI, MO);
1294 emitWordLE(Binary);
1295 return;
1296 }
1297
1298 // Encode Rn.
1299 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1300
1301 // Encode Rm.
1302 Binary |= getMachineOpValue(MI, OpIdx++);
1303
1304 // Encode shift_imm.
1305 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001306 if (TID.Opcode == ARM::PKHTB) {
1307 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1308 if (ShiftAmt == 32)
1309 ShiftAmt = 0;
1310 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001311 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1312 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001313
Evan Cheng8b59db32008-11-07 01:41:35 +00001314 emitWordLE(Binary);
1315}
1316
Bob Wilson9a1c1892010-08-11 00:01:18 +00001317void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1318 const TargetInstrDesc &TID = MI.getDesc();
1319
1320 // Part of binary is determined by TableGen.
1321 unsigned Binary = getBinaryCodeForInstr(MI);
1322
1323 // Set the conditional execution predicate
1324 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1325
1326 // Encode Rd
1327 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1328
1329 // Encode saturate bit position.
1330 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001331 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001332 Pos -= 1;
1333 assert((Pos < 16 || (Pos < 32 &&
1334 TID.Opcode != ARM::SSAT16 &&
1335 TID.Opcode != ARM::USAT16)) &&
1336 "saturate bit position out of range");
1337 Binary |= Pos << 16;
1338
1339 // Encode Rm
1340 Binary |= getMachineOpValue(MI, 2);
1341
1342 // Encode shift_imm.
1343 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001344 unsigned ShiftOp = MI.getOperand(3).getImm();
1345 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1346 if (Opc == ARM_AM::asr)
1347 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001348 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001349 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001350 ShiftAmt = 0;
1351 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1352 Binary |= ShiftAmt << ARMII::ShiftShift;
1353 }
1354
1355 emitWordLE(Binary);
1356}
1357
Chris Lattner33fabd72010-02-02 21:48:51 +00001358void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001359 const TargetInstrDesc &TID = MI.getDesc();
1360
Torok Edwindac237e2009-07-08 20:53:28 +00001361 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001362 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001363 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001364
Evan Cheng7602e112008-09-02 06:52:38 +00001365 // Part of binary is determined by TableGn.
1366 unsigned Binary = getBinaryCodeForInstr(MI);
1367
Evan Chengedda31c2008-11-05 18:35:52 +00001368 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001369 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001370
1371 // Set signed_immed_24 field
1372 Binary |= getMachineOpValue(MI, 0);
1373
Evan Cheng83b5cf02008-11-05 23:22:34 +00001374 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001375}
1376
Chris Lattner33fabd72010-02-02 21:48:51 +00001377void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001378 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001379 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001380 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001381 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1382 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001383
1384 // Now emit the jump table entries.
1385 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1386 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1387 if (IsPIC)
1388 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001389 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001390 else
1391 // Absolute DestBB address.
1392 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1393 emitWordLE(0);
1394 }
1395}
1396
Chris Lattner33fabd72010-02-02 21:48:51 +00001397void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001398 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001399
Evan Cheng437c1732008-11-07 22:30:53 +00001400 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001401 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001402 // First emit a ldr pc, [] instruction.
1403 emitDataProcessingInstruction(MI, ARM::PC);
1404
1405 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001406 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001407 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001408 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1409 emitInlineJumpTable(JTIndex);
1410 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001411 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001412 // First emit a ldr pc, [] instruction.
1413 emitLoadStoreInstruction(MI, ARM::PC);
1414
1415 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001416 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001417 return;
1418 }
1419
Evan Chengedda31c2008-11-05 18:35:52 +00001420 // Part of binary is determined by TableGn.
1421 unsigned Binary = getBinaryCodeForInstr(MI);
1422
1423 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001424 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001425
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001426 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001427 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001428 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001429 else
Evan Chengedda31c2008-11-05 18:35:52 +00001430 // otherwise, set the return register
1431 Binary |= getMachineOpValue(MI, 0);
1432
Evan Cheng83b5cf02008-11-05 23:22:34 +00001433 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001434}
Evan Cheng7602e112008-09-02 06:52:38 +00001435
Evan Cheng80a11982008-11-12 06:41:41 +00001436static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001437 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001438 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001439 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001440 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001441 if (!isSPVFP)
1442 Binary |= RegD << ARMII::RegRdShift;
1443 else {
1444 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1445 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1446 }
Evan Cheng80a11982008-11-12 06:41:41 +00001447 return Binary;
1448}
Evan Cheng78be83d2008-11-11 19:40:26 +00001449
Evan Cheng80a11982008-11-12 06:41:41 +00001450static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001451 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001452 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001453 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001454 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001455 if (!isSPVFP)
1456 Binary |= RegN << ARMII::RegRnShift;
1457 else {
1458 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1459 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1460 }
Evan Cheng80a11982008-11-12 06:41:41 +00001461 return Binary;
1462}
Evan Chengd06d48d2008-11-12 02:19:38 +00001463
Evan Cheng80a11982008-11-12 06:41:41 +00001464static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1465 unsigned RegM = MI.getOperand(OpIdx).getReg();
1466 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001467 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001468 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001469 if (!isSPVFP)
1470 Binary |= RegM;
1471 else {
1472 Binary |= ((RegM & 0x1E) >> 1);
1473 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001474 }
Evan Cheng80a11982008-11-12 06:41:41 +00001475 return Binary;
1476}
1477
Chris Lattner33fabd72010-02-02 21:48:51 +00001478void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001479 const TargetInstrDesc &TID = MI.getDesc();
1480
1481 // Part of binary is determined by TableGn.
1482 unsigned Binary = getBinaryCodeForInstr(MI);
1483
1484 // Set the conditional execution predicate
1485 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1486
1487 unsigned OpIdx = 0;
1488 assert((Binary & ARMII::D_BitShift) == 0 &&
1489 (Binary & ARMII::N_BitShift) == 0 &&
1490 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1491
1492 // Encode Dd / Sd.
1493 Binary |= encodeVFPRd(MI, OpIdx++);
1494
1495 // If this is a two-address operand, skip it, e.g. FMACD.
1496 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1497 ++OpIdx;
1498
1499 // Encode Dn / Sn.
1500 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001501 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001502
1503 if (OpIdx == TID.getNumOperands() ||
1504 TID.OpInfo[OpIdx].isPredicate() ||
1505 TID.OpInfo[OpIdx].isOptionalDef()) {
1506 // FCMPEZD etc. has only one operand.
1507 emitWordLE(Binary);
1508 return;
1509 }
1510
1511 // Encode Dm / Sm.
1512 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001513
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001514 emitWordLE(Binary);
1515}
1516
Bob Wilson87949d42010-03-17 21:16:45 +00001517void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001518 const TargetInstrDesc &TID = MI.getDesc();
1519 unsigned Form = TID.TSFlags & ARMII::FormMask;
1520
1521 // Part of binary is determined by TableGn.
1522 unsigned Binary = getBinaryCodeForInstr(MI);
1523
1524 // Set the conditional execution predicate
1525 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1526
1527 switch (Form) {
1528 default: break;
1529 case ARMII::VFPConv1Frm:
1530 case ARMII::VFPConv2Frm:
1531 case ARMII::VFPConv3Frm:
1532 // Encode Dd / Sd.
1533 Binary |= encodeVFPRd(MI, 0);
1534 break;
1535 case ARMII::VFPConv4Frm:
1536 // Encode Dn / Sn.
1537 Binary |= encodeVFPRn(MI, 0);
1538 break;
1539 case ARMII::VFPConv5Frm:
1540 // Encode Dm / Sm.
1541 Binary |= encodeVFPRm(MI, 0);
1542 break;
1543 }
1544
1545 switch (Form) {
1546 default: break;
1547 case ARMII::VFPConv1Frm:
1548 // Encode Dm / Sm.
1549 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001550 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001551 case ARMII::VFPConv2Frm:
1552 case ARMII::VFPConv3Frm:
1553 // Encode Dn / Sn.
1554 Binary |= encodeVFPRn(MI, 1);
1555 break;
1556 case ARMII::VFPConv4Frm:
1557 case ARMII::VFPConv5Frm:
1558 // Encode Dd / Sd.
1559 Binary |= encodeVFPRd(MI, 1);
1560 break;
1561 }
1562
1563 if (Form == ARMII::VFPConv5Frm)
1564 // Encode Dn / Sn.
1565 Binary |= encodeVFPRn(MI, 2);
1566 else if (Form == ARMII::VFPConv3Frm)
1567 // Encode Dm / Sm.
1568 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001569
1570 emitWordLE(Binary);
1571}
1572
Chris Lattner33fabd72010-02-02 21:48:51 +00001573void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001574 // Part of binary is determined by TableGn.
1575 unsigned Binary = getBinaryCodeForInstr(MI);
1576
1577 // Set the conditional execution predicate
1578 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1579
1580 unsigned OpIdx = 0;
1581
1582 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001583 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001584
1585 // Encode address base.
1586 const MachineOperand &Base = MI.getOperand(OpIdx++);
1587 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1588
1589 // If there is a non-zero immediate offset, encode it.
1590 if (Base.isReg()) {
1591 const MachineOperand &Offset = MI.getOperand(OpIdx);
1592 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1593 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1594 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001595 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001596 emitWordLE(Binary);
1597 return;
1598 }
1599 }
1600
1601 // If immediate offset is omitted, default to +0.
1602 Binary |= 1 << ARMII::U_BitShift;
1603
1604 emitWordLE(Binary);
1605}
1606
Bob Wilson87949d42010-03-17 21:16:45 +00001607void
1608ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001609 const TargetInstrDesc &TID = MI.getDesc();
1610 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1611
Evan Chengcd8e66a2008-11-11 21:48:44 +00001612 // Part of binary is determined by TableGn.
1613 unsigned Binary = getBinaryCodeForInstr(MI);
1614
1615 // Set the conditional execution predicate
1616 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1617
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001618 // Skip operand 0 of an instruction with base register update.
1619 unsigned OpIdx = 0;
1620 if (IsUpdating)
1621 ++OpIdx;
1622
Evan Chengcd8e66a2008-11-11 21:48:44 +00001623 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001624 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001625
1626 // Set addressing mode by modifying bits U(23) and P(24)
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001627 const MachineOperand &MO = MI.getOperand(OpIdx++);
Bob Wilsond4bfd542010-08-27 23:18:17 +00001628 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001629
1630 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001631 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001632 Binary |= 0x1 << ARMII::W_BitShift;
1633
1634 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001635 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001636
Bob Wilsond4bfd542010-08-27 23:18:17 +00001637 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001638 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001639 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001640 const MachineOperand &MO = MI.getOperand(i);
1641 if (!MO.isReg() || MO.isImplicit())
1642 break;
1643 ++NumRegs;
1644 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001645 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1646 // Otherwise, it will be 0, in the case of 32-bit registers.
1647 if(Binary & 0x100)
1648 Binary |= NumRegs * 2;
1649 else
1650 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001651
1652 emitWordLE(Binary);
1653}
1654
Bob Wilson1a913ed2010-06-11 21:34:50 +00001655static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1656 unsigned RegD = MI.getOperand(OpIdx).getReg();
1657 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001658 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001659 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1660 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1661 return Binary;
1662}
1663
Bob Wilson5e7b6072010-06-25 22:40:46 +00001664static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1665 unsigned RegN = MI.getOperand(OpIdx).getReg();
1666 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001667 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001668 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1669 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1670 return Binary;
1671}
1672
Bob Wilson583a2a02010-06-25 21:17:19 +00001673static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1674 unsigned RegM = MI.getOperand(OpIdx).getReg();
1675 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001676 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001677 Binary |= (RegM & 0xf);
1678 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1679 return Binary;
1680}
1681
Bob Wilsond896a972010-06-28 21:12:19 +00001682/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1683/// data-processing instruction to the corresponding Thumb encoding.
1684static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1685 assert((Binary & 0xfe000000) == 0xf2000000 &&
1686 "not an ARM NEON data-processing instruction");
1687 unsigned UBit = (Binary >> 24) & 1;
1688 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1689}
1690
Bob Wilsond5a563d2010-06-29 17:34:07 +00001691void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001692 unsigned Binary = getBinaryCodeForInstr(MI);
1693
Bob Wilsond5a563d2010-06-29 17:34:07 +00001694 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1695 const TargetInstrDesc &TID = MI.getDesc();
1696 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1697 RegTOpIdx = 0;
1698 RegNOpIdx = 1;
1699 LnOpIdx = 2;
1700 } else { // ARMII::NSetLnFrm
1701 RegTOpIdx = 2;
1702 RegNOpIdx = 0;
1703 LnOpIdx = 3;
1704 }
1705
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001706 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001707 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001708
Bob Wilsond5a563d2010-06-29 17:34:07 +00001709 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001710 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001711 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001712 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001713
1714 unsigned LaneShift;
1715 if ((Binary & (1 << 22)) != 0)
1716 LaneShift = 0; // 8-bit elements
1717 else if ((Binary & (1 << 5)) != 0)
1718 LaneShift = 1; // 16-bit elements
1719 else
1720 LaneShift = 2; // 32-bit elements
1721
Bob Wilsond5a563d2010-06-29 17:34:07 +00001722 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001723 unsigned Opc1 = Lane >> 2;
1724 unsigned Opc2 = Lane & 3;
1725 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1726 Binary |= (Opc1 << 21);
1727 Binary |= (Opc2 << 5);
1728
1729 emitWordLE(Binary);
1730}
1731
Bob Wilson21773e72010-06-29 20:13:29 +00001732void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1733 unsigned Binary = getBinaryCodeForInstr(MI);
1734
1735 // Set the conditional execution predicate
1736 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1737
1738 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001739 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001740 Binary |= (RegT << ARMII::RegRdShift);
1741 Binary |= encodeNEONRn(MI, 0);
1742 emitWordLE(Binary);
1743}
1744
Bob Wilson583a2a02010-06-25 21:17:19 +00001745void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001746 unsigned Binary = getBinaryCodeForInstr(MI);
1747 // Destination register is encoded in Dd.
1748 Binary |= encodeNEONRd(MI, 0);
1749 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1750 unsigned Imm = MI.getOperand(1).getImm();
1751 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001752 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001753 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001754 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001755 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001756 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001757 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001758 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001759 emitWordLE(Binary);
1760}
1761
Bob Wilson583a2a02010-06-25 21:17:19 +00001762void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001763 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001764 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001765 // Destination register is encoded in Dd; source register in Dm.
1766 unsigned OpIdx = 0;
1767 Binary |= encodeNEONRd(MI, OpIdx++);
1768 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1769 ++OpIdx;
1770 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001771 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001772 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001773 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1774 emitWordLE(Binary);
1775}
1776
Bob Wilson5e7b6072010-06-25 22:40:46 +00001777void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1778 const TargetInstrDesc &TID = MI.getDesc();
1779 unsigned Binary = getBinaryCodeForInstr(MI);
1780 // Destination register is encoded in Dd; source registers in Dn and Dm.
1781 unsigned OpIdx = 0;
1782 Binary |= encodeNEONRd(MI, OpIdx++);
1783 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1784 ++OpIdx;
1785 Binary |= encodeNEONRn(MI, OpIdx++);
1786 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1787 ++OpIdx;
1788 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001789 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001790 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001791 // FIXME: This does not handle VMOVDneon or VMOVQ.
1792 emitWordLE(Binary);
1793}
1794
Evan Cheng7602e112008-09-02 06:52:38 +00001795#include "ARMGenCodeEmitter.inc"