blob: fa7371626f2938d88b7fd409337ce34ebd7f6200 [file] [log] [blame]
Jim Grosbach2cee75a2010-10-08 17:28:40 +00001//===-- ARM/ARMCodeEmitter.cpp - Convert ARM code to machine code ---------===//
Evan Cheng148b6a42007-07-05 21:15:40 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Cheng148b6a42007-07-05 21:15:40 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the pass that transforms the ARM machine instructions into
11// relocatable machine code.
12//
13//===----------------------------------------------------------------------===//
14
Evan Cheng0f282432008-10-29 23:55:43 +000015#define DEBUG_TYPE "jit"
Evan Cheng7602e112008-09-02 06:52:38 +000016#include "ARM.h"
17#include "ARMAddressingModes.h"
Evan Cheng0f282432008-10-29 23:55:43 +000018#include "ARMConstantPoolValue.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000019#include "ARMInstrInfo.h"
Evan Cheng7602e112008-09-02 06:52:38 +000020#include "ARMRelocations.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000021#include "ARMSubtarget.h"
22#include "ARMTargetMachine.h"
Jim Grosbachbc6d8762008-10-28 18:25:49 +000023#include "llvm/Constants.h"
24#include "llvm/DerivedTypes.h"
Evan Cheng42d5ee062008-09-13 01:15:21 +000025#include "llvm/Function.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000026#include "llvm/PassManager.h"
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000027#include "llvm/CodeGen/JITCodeEmitter.h"
Evan Cheng057d0c32008-09-18 07:28:19 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000029#include "llvm/CodeGen/MachineFunctionPass.h"
30#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng4df60f52008-11-07 09:06:08 +000031#include "llvm/CodeGen/MachineJumpTableInfo.h"
Daniel Dunbar003de662009-09-21 05:58:35 +000032#include "llvm/CodeGen/MachineModuleInfo.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000033#include "llvm/CodeGen/Passes.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000034#include "llvm/ADT/Statistic.h"
Evan Cheng42d5ee062008-09-13 01:15:21 +000035#include "llvm/Support/Debug.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000036#include "llvm/Support/ErrorHandling.h"
37#include "llvm/Support/raw_ostream.h"
Evan Cheng4df60f52008-11-07 09:06:08 +000038#ifndef NDEBUG
39#include <iomanip>
40#endif
Evan Cheng148b6a42007-07-05 21:15:40 +000041using namespace llvm;
42
43STATISTIC(NumEmitted, "Number of machine instructions emitted");
44
45namespace {
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000046
Chris Lattner33fabd72010-02-02 21:48:51 +000047 class ARMCodeEmitter : public MachineFunctionPass {
Evan Cheng057d0c32008-09-18 07:28:19 +000048 ARMJITInfo *JTI;
49 const ARMInstrInfo *II;
50 const TargetData *TD;
Evan Cheng08669742009-09-10 01:23:53 +000051 const ARMSubtarget *Subtarget;
Evan Cheng057d0c32008-09-18 07:28:19 +000052 TargetMachine &TM;
Chris Lattner33fabd72010-02-02 21:48:51 +000053 JITCodeEmitter &MCE;
Chris Lattner16112732010-03-14 01:41:15 +000054 MachineModuleInfo *MMI;
Evan Cheng938b9d82008-10-31 19:55:13 +000055 const std::vector<MachineConstantPoolEntry> *MCPEs;
Evan Cheng4df60f52008-11-07 09:06:08 +000056 const std::vector<MachineJumpTableEntry> *MJTEs;
57 bool IsPIC;
Bob Wilson62d24a42010-06-28 22:23:17 +000058 bool IsThumb;
Bob Wilson87949d42010-03-17 21:16:45 +000059
Daniel Dunbar003de662009-09-21 05:58:35 +000060 void getAnalysisUsage(AnalysisUsage &AU) const {
61 AU.addRequired<MachineModuleInfo>();
62 MachineFunctionPass::getAnalysisUsage(AU);
63 }
Bob Wilson87949d42010-03-17 21:16:45 +000064
Evan Cheng148b6a42007-07-05 21:15:40 +000065 static char ID;
Chris Lattner33fabd72010-02-02 21:48:51 +000066 public:
67 ARMCodeEmitter(TargetMachine &tm, JITCodeEmitter &mce)
Owen Anderson90c579d2010-08-06 18:33:48 +000068 : MachineFunctionPass(ID), JTI(0),
Dan Gohman3fb150a2010-04-17 17:42:52 +000069 II((const ARMInstrInfo *)tm.getInstrInfo()),
Chris Lattner33fabd72010-02-02 21:48:51 +000070 TD(tm.getTargetData()), TM(tm),
Bob Wilson62d24a42010-06-28 22:23:17 +000071 MCE(mce), MCPEs(0), MJTEs(0),
72 IsPIC(TM.getRelocationModel() == Reloc::PIC_), IsThumb(false) {}
Bob Wilson87949d42010-03-17 21:16:45 +000073
Chris Lattner33fabd72010-02-02 21:48:51 +000074 /// getBinaryCodeForInstr - This function, generated by the
75 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
76 /// machine instructions.
Jim Grosbachbade37b2010-10-08 00:21:28 +000077 unsigned getBinaryCodeForInstr(const MachineInstr &MI) const;
Evan Cheng148b6a42007-07-05 21:15:40 +000078
79 bool runOnMachineFunction(MachineFunction &MF);
80
81 virtual const char *getPassName() const {
82 return "ARM Machine Code Emitter";
83 }
84
85 void emitInstruction(const MachineInstr &MI);
Evan Cheng7602e112008-09-02 06:52:38 +000086
87 private:
Evan Cheng057d0c32008-09-18 07:28:19 +000088
Evan Cheng83b5cf02008-11-05 23:22:34 +000089 void emitWordLE(unsigned Binary);
Evan Chengcb5201f2008-11-11 22:19:31 +000090 void emitDWordLE(uint64_t Binary);
Evan Cheng057d0c32008-09-18 07:28:19 +000091 void emitConstPoolInstruction(const MachineInstr &MI);
Zonr Changf86399b2010-05-25 08:42:45 +000092 void emitMOVi32immInstruction(const MachineInstr &MI);
Evan Cheng90922132008-11-06 02:25:39 +000093 void emitMOVi2piecesInstruction(const MachineInstr &MI);
Evan Cheng4df60f52008-11-07 09:06:08 +000094 void emitLEApcrelJTInstruction(const MachineInstr &MI);
Evan Chenga9562552008-11-14 20:09:11 +000095 void emitPseudoMoveInstruction(const MachineInstr &MI);
Evan Cheng83b5cf02008-11-05 23:22:34 +000096 void addPCLabel(unsigned LabelID);
Evan Cheng057d0c32008-09-18 07:28:19 +000097 void emitPseudoInstruction(const MachineInstr &MI);
Evan Cheng5f1db7b2008-09-12 22:01:15 +000098 unsigned getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +000099 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000100 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000101 unsigned OpIdx);
102
Evan Cheng90922132008-11-06 02:25:39 +0000103 unsigned getMachineSoImmOpValue(unsigned SoImm);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000104 unsigned getAddrModeSBit(const MachineInstr &MI,
105 const TargetInstrDesc &TID) const;
Evan Cheng49a9f292008-09-12 22:45:55 +0000106
Evan Cheng83b5cf02008-11-05 23:22:34 +0000107 void emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000108 unsigned ImplicitRd = 0,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000109 unsigned ImplicitRn = 0);
Evan Cheng7602e112008-09-02 06:52:38 +0000110
Evan Cheng83b5cf02008-11-05 23:22:34 +0000111 void emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000112 unsigned ImplicitRd = 0,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000113 unsigned ImplicitRn = 0);
Evan Chengedda31c2008-11-05 18:35:52 +0000114
Evan Cheng83b5cf02008-11-05 23:22:34 +0000115 void emitMiscLoadStoreInstruction(const MachineInstr &MI,
116 unsigned ImplicitRn = 0);
Evan Chengedda31c2008-11-05 18:35:52 +0000117
118 void emitLoadStoreMultipleInstruction(const MachineInstr &MI);
119
Evan Chengfbc9d412008-11-06 01:21:28 +0000120 void emitMulFrmInstruction(const MachineInstr &MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000121
Evan Cheng97f48c32008-11-06 22:15:19 +0000122 void emitExtendInstruction(const MachineInstr &MI);
123
Evan Cheng8b59db32008-11-07 01:41:35 +0000124 void emitMiscArithInstruction(const MachineInstr &MI);
125
Bob Wilson9a1c1892010-08-11 00:01:18 +0000126 void emitSaturateInstruction(const MachineInstr &MI);
127
Evan Chengedda31c2008-11-05 18:35:52 +0000128 void emitBranchInstruction(const MachineInstr &MI);
129
Evan Cheng437c1732008-11-07 22:30:53 +0000130 void emitInlineJumpTable(unsigned JTIndex);
Evan Cheng4df60f52008-11-07 09:06:08 +0000131
Evan Chengedda31c2008-11-05 18:35:52 +0000132 void emitMiscBranchInstruction(const MachineInstr &MI);
Evan Cheng7602e112008-09-02 06:52:38 +0000133
Evan Cheng96581d32008-11-11 02:11:05 +0000134 void emitVFPArithInstruction(const MachineInstr &MI);
135
Evan Cheng78be83d2008-11-11 19:40:26 +0000136 void emitVFPConversionInstruction(const MachineInstr &MI);
137
Evan Chengcd8e66a2008-11-11 21:48:44 +0000138 void emitVFPLoadStoreInstruction(const MachineInstr &MI);
139
140 void emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI);
141
Bob Wilsond5a563d2010-06-29 17:34:07 +0000142 void emitNEONLaneInstruction(const MachineInstr &MI);
Bob Wilson21773e72010-06-29 20:13:29 +0000143 void emitNEONDupInstruction(const MachineInstr &MI);
Bob Wilson583a2a02010-06-25 21:17:19 +0000144 void emitNEON1RegModImmInstruction(const MachineInstr &MI);
145 void emitNEON2RegInstruction(const MachineInstr &MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +0000146 void emitNEON3RegInstruction(const MachineInstr &MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000147
Evan Cheng7602e112008-09-02 06:52:38 +0000148 /// getMachineOpValue - Return binary encoding of operand. If the machine
149 /// operand requires relocation, record the relocation and return zero.
Jim Grosbach3e094132010-10-08 17:45:54 +0000150 unsigned getMachineOpValue(const MachineInstr &MI,
151 const MachineOperand &MO) const;
152 unsigned getMachineOpValue(const MachineInstr &MI, unsigned OpIdx) const {
Evan Cheng7602e112008-09-02 06:52:38 +0000153 return getMachineOpValue(MI, MI.getOperand(OpIdx));
154 }
Evan Cheng7602e112008-09-02 06:52:38 +0000155
Jim Grosbach08bd5492010-10-12 23:00:24 +0000156 // FIXME: The legacy JIT ARMCodeEmitter doesn't rely on the the
157 // TableGen'erated getBinaryCodeForInstr() function to encode any
158 // operand values, instead querying getMachineOpValue() directly for
159 // each operand it needs to encode. Thus, any of the new encoder
160 // helper functions can simply return 0 as the values the return
161 // are already handled elsewhere. They are placeholders to allow this
162 // encoder to continue to function until the MC encoder is sufficiently
163 // far along that this one can be eliminated entirely.
Owen Andersonc7139a62010-11-11 19:07:48 +0000164 unsigned NEONThumb2DataIPostEncoder(const MachineInstr &MI, unsigned Val)
165 const { return 0; }
Owen Anderson57dac882010-11-11 21:36:43 +0000166 unsigned NEONThumb2LoadStorePostEncoder(const MachineInstr &MI,unsigned Val)
167 const { return 0; }
Owen Anderson8f143912010-11-11 23:12:55 +0000168 unsigned NEONThumb2DupPostEncoder(const MachineInstr &MI,unsigned Val)
169 const { return 0; }
Bill Wendlingcf590262010-12-01 21:54:50 +0000170 unsigned VFPThumb2PostEncoder(const MachineInstr&MI, unsigned Val)
171 const { return 0; }
Jim Grosbach5d14f9b2010-12-01 19:47:31 +0000172 unsigned getAdrLabelOpValue(const MachineInstr &MI, unsigned Op)
173 const { return 0; }
Jim Grosbachd40963c2010-12-14 22:28:03 +0000174 unsigned getThumbAdrLabelOpValue(const MachineInstr &MI, unsigned Op)
175 const { return 0; }
Jim Grosbach662a8162010-12-06 23:57:07 +0000176 unsigned getThumbBLTargetOpValue(const MachineInstr &MI, unsigned Op)
177 const { return 0; }
Bill Wendling09aa3f02010-12-09 00:39:08 +0000178 unsigned getThumbBLXTargetOpValue(const MachineInstr &MI, unsigned Op)
179 const { return 0; }
Jim Grosbache2467172010-12-10 18:21:33 +0000180 unsigned getThumbBRTargetOpValue(const MachineInstr &MI, unsigned Op)
181 const { return 0; }
Jim Grosbach01086452010-12-10 17:13:40 +0000182 unsigned getThumbBCCTargetOpValue(const MachineInstr &MI, unsigned Op)
183 const { return 0; }
Jim Grosbach027d6e82010-12-09 19:04:53 +0000184 unsigned getThumbCBTargetOpValue(const MachineInstr &MI, unsigned Op)
Bill Wendlingdff2f712010-12-08 23:01:43 +0000185 const { return 0; }
Jim Grosbachc466b932010-11-11 18:04:49 +0000186 unsigned getBranchTargetOpValue(const MachineInstr &MI, unsigned Op)
187 const { return 0; }
Owen Andersonc2666002010-12-13 19:31:11 +0000188 unsigned getUnconditionalBranchTargetOpValue(const MachineInstr &MI,
189 unsigned Op) const { return 0; }
Jason W Kim685c3502011-02-04 19:47:15 +0000190 unsigned getARMBranchTargetOpValue(const MachineInstr &MI, unsigned Op)
191 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000192 unsigned getCCOutOpValue(const MachineInstr &MI, unsigned Op)
193 const { return 0; }
Jim Grosbach2a6a93d2010-10-12 23:18:08 +0000194 unsigned getSOImmOpValue(const MachineInstr &MI, unsigned Op)
195 const { return 0; }
Owen Anderson5de6d842010-11-12 21:12:40 +0000196 unsigned getT2SOImmOpValue(const MachineInstr &MI, unsigned Op)
197 const { return 0; }
Jim Grosbachef324d72010-10-12 23:53:58 +0000198 unsigned getSORegOpValue(const MachineInstr &MI, unsigned Op)
199 const { return 0; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000200 unsigned getThumbAddrModeRegRegOpValue(const MachineInstr &MI, unsigned Op)
Owen Anderson0f4b60d2010-12-10 22:11:13 +0000201 const { return 0; }
Owen Anderson75579f72010-11-29 22:44:32 +0000202 unsigned getT2AddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
203 const { return 0; }
204 unsigned getT2AddrModeImm8OpValue(const MachineInstr &MI, unsigned Op)
205 const { return 0; }
Owen Anderson9d63d902010-12-01 19:18:46 +0000206 unsigned getT2AddrModeImm8s4OpValue(const MachineInstr &MI, unsigned Op)
207 const { return 0; }
Owen Anderson6af50f72010-11-30 00:14:31 +0000208 unsigned getT2AddrModeImm8OffsetOpValue(const MachineInstr &MI, unsigned Op)
209 const { return 0; }
Owen Anderson0e1bcdf2010-11-30 19:19:31 +0000210 unsigned getT2AddrModeImm12OffsetOpValue(const MachineInstr &MI,unsigned Op)
211 const { return 0; }
Owen Anderson75579f72010-11-29 22:44:32 +0000212 unsigned getT2AddrModeSORegOpValue(const MachineInstr &MI, unsigned Op)
213 const { return 0; }
Owen Anderson5de6d842010-11-12 21:12:40 +0000214 unsigned getT2SORegOpValue(const MachineInstr &MI, unsigned Op)
215 const { return 0; }
Jim Grosbachb35ad412010-10-13 19:56:10 +0000216 unsigned getRotImmOpValue(const MachineInstr &MI, unsigned Op)
217 const { return 0; }
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000218 unsigned getImmMinusOneOpValue(const MachineInstr &MI, unsigned Op)
219 const { return 0; }
Owen Andersona838a252010-12-14 00:36:49 +0000220 unsigned getT2AdrLabelOpValue(const MachineInstr &MI, unsigned Op)
221 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000222 unsigned getAddrMode6AddressOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersond9aa7d32010-11-02 00:05:05 +0000223 const { return 0; }
Bob Wilson8e0c7b52010-11-30 00:00:42 +0000224 unsigned getAddrMode6DupAddressOpValue(const MachineInstr &MI, unsigned Op)
225 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000226 unsigned getAddrMode6OffsetOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersoncf667be2010-11-02 01:24:55 +0000227 const { return 0; }
Jim Grosbach3fea191052010-10-21 22:03:21 +0000228 unsigned getBitfieldInvertedMaskOpValue(const MachineInstr &MI,
229 unsigned Op) const { return 0; }
Bruno Cardoso Lopesa461d422011-01-18 20:45:56 +0000230 unsigned getMsbOpValue(const MachineInstr &MI,
231 unsigned Op) const { return 0; }
Jim Grosbach5d5eb9e2010-11-10 23:38:36 +0000232 uint32_t getLdStmModeOpValue(const MachineInstr &MI, unsigned OpIdx)
233 const {return 0; }
Jim Grosbach54fea632010-11-09 17:20:53 +0000234 uint32_t getLdStSORegOpValue(const MachineInstr &MI, unsigned OpIdx)
235 const { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000236
237 unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
238 const {
239 // {17-13} = reg
240 // {12} = (U)nsigned (add == '1', sub == '0')
241 // {11-0} = imm12
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000242 const MachineOperand &MO = MI.getOperand(Op);
243 const MachineOperand &MO1 = MI.getOperand(Op + 1);
244 if (!MO.isReg()) {
245 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
246 return 0;
Jim Grosbachf31430f2010-10-27 19:55:59 +0000247 }
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000248 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000249 int32_t Imm12 = MO1.getImm();
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000250 uint32_t Binary;
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000251 Binary = Imm12 & 0xfff;
252 if (Imm12 >= 0)
253 Binary |= (1 << 12);
254 Binary |= (Reg << 13);
255 return Binary;
256 }
Jason W Kim837caa92010-11-18 23:37:15 +0000257
Evan Cheng75972122011-01-13 07:58:56 +0000258 unsigned getHiLo16ImmOpValue(const MachineInstr &MI, unsigned Op) const {
Jason W Kim837caa92010-11-18 23:37:15 +0000259 return 0;
260 }
261
Jim Grosbach99f53d12010-11-15 20:47:07 +0000262 uint32_t getAddrMode2OpValue(const MachineInstr &MI, unsigned OpIdx)
263 const { return 0;}
264 uint32_t getAddrMode2OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
265 const { return 0;}
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000266 uint32_t getAddrMode3OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
267 const { return 0;}
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000268 uint32_t getAddrMode3OpValue(const MachineInstr &MI, unsigned Op)
269 const { return 0; }
Jim Grosbachd967cd02010-12-07 21:50:47 +0000270 uint32_t getAddrModeThumbSPOpValue(const MachineInstr &MI, unsigned Op)
271 const { return 0; }
Bill Wendling272df512010-12-09 21:49:07 +0000272 uint32_t getAddrModeSOpValue(const MachineInstr &MI, unsigned Op)
Bill Wendling1fd374e2010-11-30 22:57:21 +0000273 const { return 0; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000274 uint32_t getAddrModeISOpValue(const MachineInstr &MI, unsigned Op)
275 const { return 0; }
Bill Wendlingb8958b02010-12-08 01:57:09 +0000276 uint32_t getAddrModePCOpValue(const MachineInstr &MI, unsigned Op)
277 const { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000278 uint32_t getAddrMode5OpValue(const MachineInstr &MI, unsigned Op) const {
Bill Wendling20272a72010-11-20 00:26:37 +0000279 // {17-13} = reg
280 // {12} = (U)nsigned (add == '1', sub == '0')
281 // {11-0} = imm12
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000282 const MachineOperand &MO = MI.getOperand(Op);
283 const MachineOperand &MO1 = MI.getOperand(Op + 1);
284 if (!MO.isReg()) {
285 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
286 return 0;
287 }
288 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling20272a72010-11-20 00:26:37 +0000289 int32_t Imm12 = MO1.getImm();
290
291 // Special value for #-0
292 if (Imm12 == INT32_MIN)
293 Imm12 = 0;
294
295 // Immediate is always encoded as positive. The 'U' bit controls add vs
296 // sub.
297 bool isAdd = true;
298 if (Imm12 < 0) {
299 Imm12 = -Imm12;
300 isAdd = false;
301 }
302
303 uint32_t Binary = Imm12 & 0xfff;
304 if (isAdd)
305 Binary |= (1 << 12);
306 Binary |= (Reg << 13);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000307 return Binary;
308 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000309 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
310 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000311
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000312 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
313 const { return 0; }
314
Bill Wendling3116dce2011-03-07 23:38:41 +0000315 unsigned getShiftRight8Imm(const MachineInstr &MI, unsigned Op)
Bill Wendlinga656b632011-03-01 01:00:59 +0000316 const { return 0; }
Bill Wendling3116dce2011-03-07 23:38:41 +0000317 unsigned getShiftRight16Imm(const MachineInstr &MI, unsigned Op)
Bill Wendlinga656b632011-03-01 01:00:59 +0000318 const { return 0; }
Bill Wendling3116dce2011-03-07 23:38:41 +0000319 unsigned getShiftRight32Imm(const MachineInstr &MI, unsigned Op)
320 const { return 0; }
321 unsigned getShiftRight64Imm(const MachineInstr &MI, unsigned Op)
Bill Wendlinga656b632011-03-01 01:00:59 +0000322 const { return 0; }
323
Shih-wei Liao5170b712010-05-26 00:02:28 +0000324 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000325 /// machine operand requires relocation, record the relocation and return
326 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000327 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000328 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000329
Evan Cheng83b5cf02008-11-05 23:22:34 +0000330 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000331 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000332 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000333
334 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000335 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000336 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000337 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000338 intptr_t ACPV = 0) const;
339 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
340 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
341 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000342 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000343 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000344 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000345}
346
Chris Lattner33fabd72010-02-02 21:48:51 +0000347char ARMCodeEmitter::ID = 0;
348
Bob Wilson87949d42010-03-17 21:16:45 +0000349/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000350/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000351FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
352 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000353 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000354}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000355
Chris Lattner33fabd72010-02-02 21:48:51 +0000356bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000357 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
358 MF.getTarget().getRelocationModel() != Reloc::Static) &&
359 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000360 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
361 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
362 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000363 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000364 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000365 MJTEs = 0;
366 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000367 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000368 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000369 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000370 MMI = &getAnalysis<MachineModuleInfo>();
371 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000372
373 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000374 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000375 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000376 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000377 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000378 MBB != E; ++MBB) {
379 MCE.StartMachineBasicBlock(MBB);
380 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
381 I != E; ++I)
382 emitInstruction(*I);
383 }
384 } while (MCE.finishFunction(MF));
385
386 return false;
387}
388
Evan Cheng83b5cf02008-11-05 23:22:34 +0000389/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000390///
Chris Lattner33fabd72010-02-02 21:48:51 +0000391unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000392 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000393 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000394 case ARM_AM::asr: return 2;
395 case ARM_AM::lsl: return 0;
396 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000397 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000398 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000399 }
Evan Cheng7602e112008-09-02 06:52:38 +0000400 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000401}
402
Shih-wei Liao5170b712010-05-26 00:02:28 +0000403/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000404/// machine operand requires relocation, record the relocation and return zero.
405unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000406 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000407 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000408 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000409 && "Relocation to this function should be for movt or movw");
410
411 if (MO.isImm())
412 return static_cast<unsigned>(MO.getImm());
413 else if (MO.isGlobal())
414 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
415 else if (MO.isSymbol())
416 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
417 else if (MO.isMBB())
418 emitMachineBasicBlock(MO.getMBB(), Reloc);
419 else {
420#ifndef NDEBUG
421 errs() << MO;
422#endif
423 llvm_unreachable("Unsupported operand type for movw/movt");
424 }
425 return 0;
426}
427
Evan Cheng7602e112008-09-02 06:52:38 +0000428/// getMachineOpValue - Return binary encoding of operand. If the machine
429/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000430unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000431 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000432 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000433 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000434 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000435 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000436 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000437 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000438 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000439 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000440 else if (MO.isCPI()) {
441 const TargetInstrDesc &TID = MI.getDesc();
442 // For VFP load, the immediate offset is multiplied by 4.
443 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
444 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
445 emitConstPoolAddress(MO.getIndex(), Reloc);
446 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000447 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000448 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000449 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Jim Grosbach817c1a62010-11-19 00:27:09 +0000450 else
451 llvm_unreachable("Unable to encode MachineOperand!");
Evan Cheng7602e112008-09-02 06:52:38 +0000452 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000453}
454
Evan Cheng057d0c32008-09-18 07:28:19 +0000455/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000456///
Dan Gohman46510a72010-04-15 01:51:59 +0000457void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000458 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000459 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000460 MachineRelocation MR = Indirect
461 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000462 const_cast<GlobalValue *>(GV),
463 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000464 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000465 const_cast<GlobalValue *>(GV), ACPV,
466 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000467 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000468}
469
470/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
471/// be emitted to the current location in the function, and allow it to be PC
472/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000473void ARMCodeEmitter::
474emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000475 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
476 Reloc, ES));
477}
478
479/// emitConstPoolAddress - Arrange for the address of an constant pool
480/// to be emitted to the current location in the function, and allow it to be PC
481/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000482void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000483 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000484 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000485 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000486}
487
488/// emitJumpTableAddress - Arrange for the address of a jump table to
489/// be emitted to the current location in the function, and allow it to be PC
490/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000491void ARMCodeEmitter::
492emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000493 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000494 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000495}
496
Raul Herbster9c1a3822007-08-30 23:29:26 +0000497/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000498void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000499 unsigned Reloc,
500 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000501 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000502 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000503}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000504
Chris Lattner33fabd72010-02-02 21:48:51 +0000505void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000506 DEBUG(errs() << " 0x";
507 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000508 MCE.emitWordLE(Binary);
509}
510
Chris Lattner33fabd72010-02-02 21:48:51 +0000511void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000512 DEBUG(errs() << " 0x";
513 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000514 MCE.emitDWordLE(Binary);
515}
516
Chris Lattner33fabd72010-02-02 21:48:51 +0000517void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000518 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000519
Devang Patelaf0e2722009-10-06 02:19:11 +0000520 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000521
Dan Gohmanfe601042010-06-22 15:08:57 +0000522 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000523 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000524 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000525 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000526 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000527 }
Jim Grosbach85eb54c2010-11-17 23:33:14 +0000528 case ARMII::MiscFrm:
529 if (MI.getOpcode() == ARM::LEApcrelJT) {
530 // Materialize jumptable address.
531 emitLEApcrelJTInstruction(MI);
532 break;
533 }
534 llvm_unreachable("Unhandled instruction encoding!");
535 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000536 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000537 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000538 break;
539 case ARMII::DPFrm:
540 case ARMII::DPSoRegFrm:
541 emitDataProcessingInstruction(MI);
542 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000543 case ARMII::LdFrm:
544 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000545 emitLoadStoreInstruction(MI);
546 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000547 case ARMII::LdMiscFrm:
548 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000549 emitMiscLoadStoreInstruction(MI);
550 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000551 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000552 emitLoadStoreMultipleInstruction(MI);
553 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000554 case ARMII::MulFrm:
555 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000556 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000557 case ARMII::ExtFrm:
558 emitExtendInstruction(MI);
559 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000560 case ARMII::ArithMiscFrm:
561 emitMiscArithInstruction(MI);
562 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000563 case ARMII::SatFrm:
564 emitSaturateInstruction(MI);
565 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000566 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000567 emitBranchInstruction(MI);
568 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000569 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000570 emitMiscBranchInstruction(MI);
571 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000572 // VFP instructions.
573 case ARMII::VFPUnaryFrm:
574 case ARMII::VFPBinaryFrm:
575 emitVFPArithInstruction(MI);
576 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000577 case ARMII::VFPConv1Frm:
578 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000579 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000580 case ARMII::VFPConv4Frm:
581 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000582 emitVFPConversionInstruction(MI);
583 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000584 case ARMII::VFPLdStFrm:
585 emitVFPLoadStoreInstruction(MI);
586 break;
587 case ARMII::VFPLdStMulFrm:
588 emitVFPLoadStoreMultipleInstruction(MI);
589 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000590
Bob Wilson1a913ed2010-06-11 21:34:50 +0000591 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000592 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000593 case ARMII::NSetLnFrm:
594 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000595 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000596 case ARMII::NDupFrm:
597 emitNEONDupInstruction(MI);
598 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000599 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000600 emitNEON1RegModImmInstruction(MI);
601 break;
602 case ARMII::N2RegFrm:
603 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000604 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000605 case ARMII::N3RegFrm:
606 emitNEON3RegInstruction(MI);
607 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000608 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000609 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000610}
611
Chris Lattner33fabd72010-02-02 21:48:51 +0000612void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000613 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
614 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000615 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000616
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000617 // Remember the CONSTPOOL_ENTRY address for later relocation.
618 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
619
620 // Emit constpool island entry. In most cases, the actual values will be
621 // resolved and relocated after code emission.
622 if (MCPE.isMachineConstantPoolEntry()) {
623 ARMConstantPoolValue *ACPV =
624 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
625
Chris Lattner705e07f2009-08-23 03:41:05 +0000626 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
627 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000628
Bob Wilson28989a82009-11-02 16:59:06 +0000629 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000630 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000631 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000632 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000633 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000634 isa<Function>(GV),
635 Subtarget->GVIsIndirectSymbol(GV, RelocM),
636 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000637 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000638 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
639 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000640 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000641 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000642 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000643
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000644 DEBUG({
645 errs() << " ** Constant pool #" << CPI << " @ "
646 << (void*)MCE.getCurrentPCValue() << " ";
647 if (const Function *F = dyn_cast<Function>(CV))
648 errs() << F->getName();
649 else
650 errs() << *CV;
651 errs() << '\n';
652 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000653
Dan Gohman46510a72010-04-15 01:51:59 +0000654 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000655 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000656 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000657 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000658 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000659 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000660 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000661 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000662 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000663 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000664 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
665 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000666 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000667 }
668 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000669 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000670 }
671 }
672}
673
Zonr Changf86399b2010-05-25 08:42:45 +0000674void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
675 const MachineOperand &MO0 = MI.getOperand(0);
676 const MachineOperand &MO1 = MI.getOperand(1);
677
678 // Emit the 'movw' instruction.
679 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
680
681 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
682
683 // Set the conditional execution predicate.
684 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
685
686 // Encode Rd.
687 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
688
689 // Encode imm16 as imm4:imm12
690 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
691 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
692 emitWordLE(Binary);
693
694 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
695 // Emit the 'movt' instruction.
696 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
697
698 // Set the conditional execution predicate.
699 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
700
701 // Encode Rd.
702 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
703
704 // Encode imm16 as imm4:imm1, same as movw above.
705 Binary |= Hi16 & 0xFFF;
706 Binary |= ((Hi16 >> 12) & 0xF) << 16;
707 emitWordLE(Binary);
708}
709
Chris Lattner33fabd72010-02-02 21:48:51 +0000710void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000711 const MachineOperand &MO0 = MI.getOperand(0);
712 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000713 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
714 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000715 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
716 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
717
718 // Emit the 'mov' instruction.
719 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
720
721 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000722 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000723
724 // Encode Rd.
725 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
726
727 // Encode so_imm.
728 // Set bit I(25) to identify this is the immediate form of <shifter_op>
729 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000730 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000731 emitWordLE(Binary);
732
733 // Now the 'orr' instruction.
734 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
735
736 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000737 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000738
739 // Encode Rd.
740 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
741
742 // Encode Rn.
743 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
744
745 // Encode so_imm.
746 // Set bit I(25) to identify this is the immediate form of <shifter_op>
747 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000748 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000749 emitWordLE(Binary);
750}
751
Chris Lattner33fabd72010-02-02 21:48:51 +0000752void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000753 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000754
Evan Cheng4df60f52008-11-07 09:06:08 +0000755 const TargetInstrDesc &TID = MI.getDesc();
756
757 // Emit the 'add' instruction.
Jim Grosbach0129be22010-11-17 21:57:51 +0000758 unsigned Binary = 0x4 << 21; // add: Insts{24-21} = 0b0100
Evan Cheng4df60f52008-11-07 09:06:08 +0000759
760 // Set the conditional execution predicate
761 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
762
763 // Encode S bit if MI modifies CPSR.
764 Binary |= getAddrModeSBit(MI, TID);
765
766 // Encode Rd.
767 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
768
769 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000770 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000771
772 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000773 Binary |= 1 << ARMII::I_BitShift;
774 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
775
776 emitWordLE(Binary);
777}
778
Chris Lattner33fabd72010-02-02 21:48:51 +0000779void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000780 unsigned Opcode = MI.getDesc().Opcode;
781
782 // Part of binary is determined by TableGn.
783 unsigned Binary = getBinaryCodeForInstr(MI);
784
785 // Set the conditional execution predicate
786 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
787
788 // Encode S bit if MI modifies CPSR.
789 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
790 Binary |= 1 << ARMII::S_BitShift;
791
792 // Encode register def if there is one.
793 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
794
795 // Encode the shift operation.
796 switch (Opcode) {
797 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000798 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000799 // rrx
800 Binary |= 0x6 << 4;
801 break;
802 case ARM::MOVsrl_flag:
803 // lsr #1
804 Binary |= (0x2 << 4) | (1 << 7);
805 break;
806 case ARM::MOVsra_flag:
807 // asr #1
808 Binary |= (0x4 << 4) | (1 << 7);
809 break;
810 }
811
812 // Encode register Rm.
813 Binary |= getMachineOpValue(MI, 1);
814
815 emitWordLE(Binary);
816}
817
Chris Lattner33fabd72010-02-02 21:48:51 +0000818void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000819 DEBUG(errs() << " ** LPC" << LabelID << " @ "
820 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000821 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
822}
823
Chris Lattner33fabd72010-02-02 21:48:51 +0000824void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000825 unsigned Opcode = MI.getDesc().Opcode;
826 switch (Opcode) {
827 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000828 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Jim Grosbach532c2f12010-11-30 00:24:05 +0000829 case ARM::BX_CALL:
830 case ARM::BMOVPCRX_CALL:
831 case ARM::BXr9_CALL:
832 case ARM::BMOVPCRXr9_CALL: {
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000833 // First emit mov lr, pc
834 unsigned Binary = 0x01a0e00f;
835 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
836 emitWordLE(Binary);
837
838 // and then emit the branch.
839 emitMiscBranchInstruction(MI);
840 break;
841 }
Chris Lattner518bb532010-02-09 19:54:29 +0000842 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000843 // We allow inline assembler nodes with empty bodies - they can
844 // implicitly define registers, which is ok for JIT.
845 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000846 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000847 }
Evan Chengffa6d962008-11-13 23:36:57 +0000848 break;
849 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000850 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000851 case TargetOpcode::EH_LABEL:
852 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
853 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000854 case TargetOpcode::IMPLICIT_DEF:
855 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000856 // Do nothing.
857 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000858 case ARM::CONSTPOOL_ENTRY:
859 emitConstPoolInstruction(MI);
860 break;
861 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000862 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000863 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000864 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000865 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000866 break;
867 }
868 case ARM::PICLDR:
869 case ARM::PICLDRB:
870 case ARM::PICSTR:
871 case ARM::PICSTRB: {
872 // Remember of the address of the PC label for relocation later.
873 addPCLabel(MI.getOperand(2).getImm());
874 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000875 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000876 break;
877 }
878 case ARM::PICLDRH:
879 case ARM::PICLDRSH:
880 case ARM::PICLDRSB:
881 case ARM::PICSTRH: {
882 // Remember of the address of the PC label for relocation later.
883 addPCLabel(MI.getOperand(2).getImm());
884 // These are just load / store instructions that implicitly read pc.
885 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000886 break;
887 }
Zonr Changf86399b2010-05-25 08:42:45 +0000888
889 case ARM::MOVi32imm:
Evan Cheng893d7fe2010-11-12 23:03:38 +0000890 // Two instructions to materialize a constant.
891 if (Subtarget->hasV6T2Ops())
892 emitMOVi32immInstruction(MI);
893 else
894 emitMOVi2piecesInstruction(MI);
Zonr Changf86399b2010-05-25 08:42:45 +0000895 break;
896
Evan Cheng4df60f52008-11-07 09:06:08 +0000897 case ARM::LEApcrelJT:
898 // Materialize jumptable address.
899 emitLEApcrelJTInstruction(MI);
900 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000901 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000902 case ARM::MOVsrl_flag:
903 case ARM::MOVsra_flag:
904 emitPseudoMoveInstruction(MI);
905 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000906 }
907}
908
Bob Wilson87949d42010-03-17 21:16:45 +0000909unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000910 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000911 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000912 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000913 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000914
915 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
916 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
917 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
918
919 // Encode the shift opcode.
920 unsigned SBits = 0;
921 unsigned Rs = MO1.getReg();
922 if (Rs) {
923 // Set shift operand (bit[7:4]).
924 // LSL - 0001
925 // LSR - 0011
926 // ASR - 0101
927 // ROR - 0111
928 // RRX - 0110 and bit[11:8] clear.
929 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000930 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000931 case ARM_AM::lsl: SBits = 0x1; break;
932 case ARM_AM::lsr: SBits = 0x3; break;
933 case ARM_AM::asr: SBits = 0x5; break;
934 case ARM_AM::ror: SBits = 0x7; break;
935 case ARM_AM::rrx: SBits = 0x6; break;
936 }
937 } else {
938 // Set shift operand (bit[6:4]).
939 // LSL - 000
940 // LSR - 010
941 // ASR - 100
942 // ROR - 110
943 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000944 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000945 case ARM_AM::lsl: SBits = 0x0; break;
946 case ARM_AM::lsr: SBits = 0x2; break;
947 case ARM_AM::asr: SBits = 0x4; break;
948 case ARM_AM::ror: SBits = 0x6; break;
949 }
950 }
951 Binary |= SBits << 4;
952 if (SOpc == ARM_AM::rrx)
953 return Binary;
954
955 // Encode the shift operation Rs or shift_imm (except rrx).
956 if (Rs) {
957 // Encode Rs bit[11:8].
958 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000959 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000960 }
961
962 // Encode shift_imm bit[11:7].
963 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
964}
965
Chris Lattner33fabd72010-02-02 21:48:51 +0000966unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000967 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
968 assert(SoImmVal != -1 && "Not a valid so_imm value!");
969
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000970 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000971 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000972 << ARMII::SoRotImmShift;
973
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000974 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000975 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000976 return Binary;
977}
978
Chris Lattner33fabd72010-02-02 21:48:51 +0000979unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000980 const TargetInstrDesc &TID) const {
Bob Wilson58f04fd2011-03-03 23:07:15 +0000981 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i >= e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000982 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000983 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000984 return 1 << ARMII::S_BitShift;
985 }
986 return 0;
987}
988
Bob Wilson87949d42010-03-17 21:16:45 +0000989void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000990 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000991 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000992 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000993
994 // Part of binary is determined by TableGn.
995 unsigned Binary = getBinaryCodeForInstr(MI);
996
Jim Grosbach33412622008-10-07 19:05:35 +0000997 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000998 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000999
Evan Cheng49a9f292008-09-12 22:45:55 +00001000 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001001 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +00001002
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001003 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +00001004 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +00001005 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +00001006 if (NumDefs)
1007 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1008 else if (ImplicitRd)
1009 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001010 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001011
Zonr Changf86399b2010-05-25 08:42:45 +00001012 if (TID.Opcode == ARM::MOVi16) {
1013 // Get immediate from MI.
1014 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
1015 ARM::reloc_arm_movw);
1016 // Encode imm which is the same as in emitMOVi32immInstruction().
1017 Binary |= Lo16 & 0xFFF;
1018 Binary |= ((Lo16 >> 12) & 0xF) << 16;
1019 emitWordLE(Binary);
1020 return;
1021 } else if(TID.Opcode == ARM::MOVTi16) {
1022 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
1023 ARM::reloc_arm_movt) >> 16);
1024 Binary |= Hi16 & 0xFFF;
1025 Binary |= ((Hi16 >> 12) & 0xF) << 16;
1026 emitWordLE(Binary);
1027 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +00001028 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +00001029 uint32_t v = ~MI.getOperand(2).getImm();
1030 int32_t lsb = CountTrailingZeros_32(v);
1031 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +00001032 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +00001033 Binary |= (msb & 0x1F) << 16;
1034 Binary |= (lsb & 0x1F) << 7;
1035 emitWordLE(Binary);
1036 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +00001037 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
1038 // Encode Rn in Instr{0-3}
1039 Binary |= getMachineOpValue(MI, OpIdx++);
1040
1041 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
1042 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
1043
1044 // Instr{20-16} = widthm1, Instr{11-7} = lsb
1045 Binary |= (widthm1 & 0x1F) << 16;
1046 Binary |= (lsb & 0x1F) << 7;
1047 emitWordLE(Binary);
1048 return;
Zonr Changf86399b2010-05-25 08:42:45 +00001049 }
1050
Evan Chengd87293c2008-11-06 08:47:38 +00001051 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
1052 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1053 ++OpIdx;
1054
Jim Grosbachefd30ba2008-10-01 18:16:49 +00001055 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +00001056 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
1057 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +00001058 if (ImplicitRn)
1059 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001060 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001061 else {
1062 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
1063 ++OpIdx;
1064 }
Evan Cheng7602e112008-09-02 06:52:38 +00001065 }
1066
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001067 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001068 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +00001069 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001070 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001071 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +00001072 return;
1073 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001074
Evan Chengedda31c2008-11-05 18:35:52 +00001075 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001076 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001077 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +00001078 return;
1079 }
Evan Cheng7602e112008-09-02 06:52:38 +00001080
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001081 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +00001082 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +00001083
Evan Cheng83b5cf02008-11-05 23:22:34 +00001084 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001085}
1086
Bob Wilson87949d42010-03-17 21:16:45 +00001087void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +00001088 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +00001089 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001090 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001091 unsigned Form = TID.TSFlags & ARMII::FormMask;
1092 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001093
Evan Chengedda31c2008-11-05 18:35:52 +00001094 // Part of binary is determined by TableGn.
1095 unsigned Binary = getBinaryCodeForInstr(MI);
1096
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001097 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
1098 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
1099 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +00001100 emitWordLE(Binary);
1101 return;
1102 }
1103
Jim Grosbach33412622008-10-07 19:05:35 +00001104 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001105 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001106
Evan Cheng4df60f52008-11-07 09:06:08 +00001107 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001108
1109 // Operand 0 of a pre- and post-indexed store is the address base
1110 // writeback. Skip it.
1111 bool Skipped = false;
1112 if (IsPrePost && Form == ARMII::StFrm) {
1113 ++OpIdx;
1114 Skipped = true;
1115 }
1116
1117 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001118 if (ImplicitRd)
1119 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001120 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001121 else
1122 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001123
1124 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001125 if (ImplicitRn)
1126 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001127 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001128 else
1129 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001130
Evan Cheng05c356e2008-11-08 01:44:13 +00001131 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001132 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001133 ++OpIdx;
1134
Evan Cheng83b5cf02008-11-05 23:22:34 +00001135 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001136 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001137 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001138
Evan Chenge7de7e32008-09-13 01:44:01 +00001139 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001140 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001141 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001142 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001143 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001144 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001145 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1146 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001147 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001148 }
1149
Bill Wendling7d31a162010-10-20 22:44:54 +00001150 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001151 Binary |= 1 << ARMII::I_BitShift;
1152 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1153 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001154 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001155
Evan Cheng70632912008-11-12 07:34:37 +00001156 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001157 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001158 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001159 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1160 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001161 }
1162
Evan Cheng83b5cf02008-11-05 23:22:34 +00001163 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001164}
1165
Chris Lattner33fabd72010-02-02 21:48:51 +00001166void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001167 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001168 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001169 unsigned Form = TID.TSFlags & ARMII::FormMask;
1170 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001171
Evan Chengedda31c2008-11-05 18:35:52 +00001172 // Part of binary is determined by TableGn.
1173 unsigned Binary = getBinaryCodeForInstr(MI);
1174
Jim Grosbach33412622008-10-07 19:05:35 +00001175 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001176 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001177
Evan Cheng148cad82008-11-13 07:34:59 +00001178 unsigned OpIdx = 0;
1179
1180 // Operand 0 of a pre- and post-indexed store is the address base
1181 // writeback. Skip it.
1182 bool Skipped = false;
1183 if (IsPrePost && Form == ARMII::StMiscFrm) {
1184 ++OpIdx;
1185 Skipped = true;
1186 }
1187
Evan Cheng7602e112008-09-02 06:52:38 +00001188 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001189 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001190
Evan Cheng358dec52009-06-15 08:28:29 +00001191 // Skip LDRD and STRD's second operand.
1192 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1193 ++OpIdx;
1194
Evan Cheng7602e112008-09-02 06:52:38 +00001195 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001196 if (ImplicitRn)
1197 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001198 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001199 else
1200 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001201
Evan Cheng05c356e2008-11-08 01:44:13 +00001202 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001203 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001204 ++OpIdx;
1205
Evan Cheng83b5cf02008-11-05 23:22:34 +00001206 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001207 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001208 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001209
Evan Chenge7de7e32008-09-13 01:44:01 +00001210 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001211 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001212 ARMII::U_BitShift);
1213
1214 // If this instr is in register offset/index encoding, set bit[3:0]
1215 // to the corresponding Rm register.
1216 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001217 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001218 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001219 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001220 }
1221
Evan Chengd87293c2008-11-06 08:47:38 +00001222 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001223 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001224 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001225 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001226 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1227 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001228 }
1229
Evan Cheng83b5cf02008-11-05 23:22:34 +00001230 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001231}
1232
Evan Chengcd8e66a2008-11-11 21:48:44 +00001233static unsigned getAddrModeUPBits(unsigned Mode) {
1234 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001235
1236 // Set addressing mode by modifying bits U(23) and P(24)
1237 // IA - Increment after - bit U = 1 and bit P = 0
1238 // IB - Increment before - bit U = 1 and bit P = 1
1239 // DA - Decrement after - bit U = 0 and bit P = 0
1240 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001241 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001242 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001243 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001244 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1245 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1246 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001247 }
1248
Evan Chengcd8e66a2008-11-11 21:48:44 +00001249 return Binary;
1250}
1251
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001252void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1253 const TargetInstrDesc &TID = MI.getDesc();
1254 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1255
Evan Chengcd8e66a2008-11-11 21:48:44 +00001256 // Part of binary is determined by TableGn.
1257 unsigned Binary = getBinaryCodeForInstr(MI);
1258
1259 // Set the conditional execution predicate
1260 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1261
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001262 // Skip operand 0 of an instruction with base register update.
1263 unsigned OpIdx = 0;
1264 if (IsUpdating)
1265 ++OpIdx;
1266
Evan Chengcd8e66a2008-11-11 21:48:44 +00001267 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001268 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001269
1270 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001271 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1272 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001273
Evan Cheng7602e112008-09-02 06:52:38 +00001274 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001275 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001276 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001277
1278 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001279 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001280 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001281 if (!MO.isReg() || MO.isImplicit())
1282 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001283 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001284 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1285 RegNum < 16);
1286 Binary |= 0x1 << RegNum;
1287 }
1288
Evan Cheng83b5cf02008-11-05 23:22:34 +00001289 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001290}
1291
Chris Lattner33fabd72010-02-02 21:48:51 +00001292void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001293 const TargetInstrDesc &TID = MI.getDesc();
1294
1295 // Part of binary is determined by TableGn.
1296 unsigned Binary = getBinaryCodeForInstr(MI);
1297
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001298 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001299 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001300
1301 // Encode S bit if MI modifies CPSR.
1302 Binary |= getAddrModeSBit(MI, TID);
1303
1304 // 32x32->64bit operations have two destination registers. The number
1305 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001306 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001307 if (TID.getNumDefs() == 2)
1308 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1309
1310 // Encode Rd
1311 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1312
1313 // Encode Rm
1314 Binary |= getMachineOpValue(MI, OpIdx++);
1315
1316 // Encode Rs
1317 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1318
Evan Chengfbc9d412008-11-06 01:21:28 +00001319 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1320 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001321 if (TID.getNumOperands() > OpIdx &&
1322 !TID.OpInfo[OpIdx].isPredicate() &&
1323 !TID.OpInfo[OpIdx].isOptionalDef())
1324 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1325
1326 emitWordLE(Binary);
1327}
1328
Chris Lattner33fabd72010-02-02 21:48:51 +00001329void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001330 const TargetInstrDesc &TID = MI.getDesc();
1331
1332 // Part of binary is determined by TableGn.
1333 unsigned Binary = getBinaryCodeForInstr(MI);
1334
1335 // Set the conditional execution predicate
1336 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1337
1338 unsigned OpIdx = 0;
1339
1340 // Encode Rd
1341 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1342
1343 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1344 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1345 if (MO2.isReg()) {
1346 // Two register operand form.
1347 // Encode Rn.
1348 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1349
1350 // Encode Rm.
1351 Binary |= getMachineOpValue(MI, MO2);
1352 ++OpIdx;
1353 } else {
1354 Binary |= getMachineOpValue(MI, MO1);
1355 }
1356
1357 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1358 if (MI.getOperand(OpIdx).isImm() &&
1359 !TID.OpInfo[OpIdx].isPredicate() &&
1360 !TID.OpInfo[OpIdx].isOptionalDef())
1361 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001362
Evan Cheng83b5cf02008-11-05 23:22:34 +00001363 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001364}
1365
Chris Lattner33fabd72010-02-02 21:48:51 +00001366void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001367 const TargetInstrDesc &TID = MI.getDesc();
1368
1369 // Part of binary is determined by TableGn.
1370 unsigned Binary = getBinaryCodeForInstr(MI);
1371
1372 // Set the conditional execution predicate
1373 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1374
1375 unsigned OpIdx = 0;
1376
1377 // Encode Rd
1378 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1379
1380 const MachineOperand &MO = MI.getOperand(OpIdx++);
1381 if (OpIdx == TID.getNumOperands() ||
1382 TID.OpInfo[OpIdx].isPredicate() ||
1383 TID.OpInfo[OpIdx].isOptionalDef()) {
1384 // Encode Rm and it's done.
1385 Binary |= getMachineOpValue(MI, MO);
1386 emitWordLE(Binary);
1387 return;
1388 }
1389
1390 // Encode Rn.
1391 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1392
1393 // Encode Rm.
1394 Binary |= getMachineOpValue(MI, OpIdx++);
1395
1396 // Encode shift_imm.
1397 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001398 if (TID.Opcode == ARM::PKHTB) {
1399 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1400 if (ShiftAmt == 32)
1401 ShiftAmt = 0;
1402 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001403 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1404 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001405
Evan Cheng8b59db32008-11-07 01:41:35 +00001406 emitWordLE(Binary);
1407}
1408
Bob Wilson9a1c1892010-08-11 00:01:18 +00001409void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1410 const TargetInstrDesc &TID = MI.getDesc();
1411
1412 // Part of binary is determined by TableGen.
1413 unsigned Binary = getBinaryCodeForInstr(MI);
1414
1415 // Set the conditional execution predicate
1416 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1417
1418 // Encode Rd
1419 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1420
1421 // Encode saturate bit position.
1422 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001423 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001424 Pos -= 1;
1425 assert((Pos < 16 || (Pos < 32 &&
1426 TID.Opcode != ARM::SSAT16 &&
1427 TID.Opcode != ARM::USAT16)) &&
1428 "saturate bit position out of range");
1429 Binary |= Pos << 16;
1430
1431 // Encode Rm
1432 Binary |= getMachineOpValue(MI, 2);
1433
1434 // Encode shift_imm.
1435 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001436 unsigned ShiftOp = MI.getOperand(3).getImm();
1437 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1438 if (Opc == ARM_AM::asr)
1439 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001440 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001441 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001442 ShiftAmt = 0;
1443 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1444 Binary |= ShiftAmt << ARMII::ShiftShift;
1445 }
1446
1447 emitWordLE(Binary);
1448}
1449
Chris Lattner33fabd72010-02-02 21:48:51 +00001450void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001451 const TargetInstrDesc &TID = MI.getDesc();
1452
Torok Edwindac237e2009-07-08 20:53:28 +00001453 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001454 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001455 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001456
Evan Cheng7602e112008-09-02 06:52:38 +00001457 // Part of binary is determined by TableGn.
1458 unsigned Binary = getBinaryCodeForInstr(MI);
1459
Evan Chengedda31c2008-11-05 18:35:52 +00001460 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001461 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001462
1463 // Set signed_immed_24 field
1464 Binary |= getMachineOpValue(MI, 0);
1465
Evan Cheng83b5cf02008-11-05 23:22:34 +00001466 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001467}
1468
Chris Lattner33fabd72010-02-02 21:48:51 +00001469void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001470 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001471 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001472 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001473 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1474 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001475
1476 // Now emit the jump table entries.
1477 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1478 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1479 if (IsPIC)
1480 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001481 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001482 else
1483 // Absolute DestBB address.
1484 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1485 emitWordLE(0);
1486 }
1487}
1488
Chris Lattner33fabd72010-02-02 21:48:51 +00001489void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001490 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001491
Evan Cheng437c1732008-11-07 22:30:53 +00001492 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001493 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001494 // First emit a ldr pc, [] instruction.
1495 emitDataProcessingInstruction(MI, ARM::PC);
1496
1497 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001498 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001499 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001500 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1501 emitInlineJumpTable(JTIndex);
1502 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001503 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001504 // First emit a ldr pc, [] instruction.
1505 emitLoadStoreInstruction(MI, ARM::PC);
1506
1507 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001508 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001509 return;
1510 }
1511
Evan Chengedda31c2008-11-05 18:35:52 +00001512 // Part of binary is determined by TableGn.
1513 unsigned Binary = getBinaryCodeForInstr(MI);
1514
1515 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001516 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001517
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001518 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001519 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001520 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001521 else
Evan Chengedda31c2008-11-05 18:35:52 +00001522 // otherwise, set the return register
1523 Binary |= getMachineOpValue(MI, 0);
1524
Evan Cheng83b5cf02008-11-05 23:22:34 +00001525 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001526}
Evan Cheng7602e112008-09-02 06:52:38 +00001527
Evan Cheng80a11982008-11-12 06:41:41 +00001528static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001529 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001530 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001531 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001532 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001533 if (!isSPVFP)
1534 Binary |= RegD << ARMII::RegRdShift;
1535 else {
1536 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1537 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1538 }
Evan Cheng80a11982008-11-12 06:41:41 +00001539 return Binary;
1540}
Evan Cheng78be83d2008-11-11 19:40:26 +00001541
Evan Cheng80a11982008-11-12 06:41:41 +00001542static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001543 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001544 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001545 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001546 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001547 if (!isSPVFP)
1548 Binary |= RegN << ARMII::RegRnShift;
1549 else {
1550 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1551 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1552 }
Evan Cheng80a11982008-11-12 06:41:41 +00001553 return Binary;
1554}
Evan Chengd06d48d2008-11-12 02:19:38 +00001555
Evan Cheng80a11982008-11-12 06:41:41 +00001556static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1557 unsigned RegM = MI.getOperand(OpIdx).getReg();
1558 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001559 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001560 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001561 if (!isSPVFP)
1562 Binary |= RegM;
1563 else {
1564 Binary |= ((RegM & 0x1E) >> 1);
1565 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001566 }
Evan Cheng80a11982008-11-12 06:41:41 +00001567 return Binary;
1568}
1569
Chris Lattner33fabd72010-02-02 21:48:51 +00001570void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001571 const TargetInstrDesc &TID = MI.getDesc();
1572
1573 // Part of binary is determined by TableGn.
1574 unsigned Binary = getBinaryCodeForInstr(MI);
1575
1576 // Set the conditional execution predicate
1577 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1578
1579 unsigned OpIdx = 0;
1580 assert((Binary & ARMII::D_BitShift) == 0 &&
1581 (Binary & ARMII::N_BitShift) == 0 &&
1582 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1583
1584 // Encode Dd / Sd.
1585 Binary |= encodeVFPRd(MI, OpIdx++);
1586
1587 // If this is a two-address operand, skip it, e.g. FMACD.
1588 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1589 ++OpIdx;
1590
1591 // Encode Dn / Sn.
1592 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001593 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001594
1595 if (OpIdx == TID.getNumOperands() ||
1596 TID.OpInfo[OpIdx].isPredicate() ||
1597 TID.OpInfo[OpIdx].isOptionalDef()) {
1598 // FCMPEZD etc. has only one operand.
1599 emitWordLE(Binary);
1600 return;
1601 }
1602
1603 // Encode Dm / Sm.
1604 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001605
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001606 emitWordLE(Binary);
1607}
1608
Bob Wilson87949d42010-03-17 21:16:45 +00001609void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001610 const TargetInstrDesc &TID = MI.getDesc();
1611 unsigned Form = TID.TSFlags & ARMII::FormMask;
1612
1613 // Part of binary is determined by TableGn.
1614 unsigned Binary = getBinaryCodeForInstr(MI);
1615
1616 // Set the conditional execution predicate
1617 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1618
1619 switch (Form) {
1620 default: break;
1621 case ARMII::VFPConv1Frm:
1622 case ARMII::VFPConv2Frm:
1623 case ARMII::VFPConv3Frm:
1624 // Encode Dd / Sd.
1625 Binary |= encodeVFPRd(MI, 0);
1626 break;
1627 case ARMII::VFPConv4Frm:
1628 // Encode Dn / Sn.
1629 Binary |= encodeVFPRn(MI, 0);
1630 break;
1631 case ARMII::VFPConv5Frm:
1632 // Encode Dm / Sm.
1633 Binary |= encodeVFPRm(MI, 0);
1634 break;
1635 }
1636
1637 switch (Form) {
1638 default: break;
1639 case ARMII::VFPConv1Frm:
1640 // Encode Dm / Sm.
1641 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001642 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001643 case ARMII::VFPConv2Frm:
1644 case ARMII::VFPConv3Frm:
1645 // Encode Dn / Sn.
1646 Binary |= encodeVFPRn(MI, 1);
1647 break;
1648 case ARMII::VFPConv4Frm:
1649 case ARMII::VFPConv5Frm:
1650 // Encode Dd / Sd.
1651 Binary |= encodeVFPRd(MI, 1);
1652 break;
1653 }
1654
1655 if (Form == ARMII::VFPConv5Frm)
1656 // Encode Dn / Sn.
1657 Binary |= encodeVFPRn(MI, 2);
1658 else if (Form == ARMII::VFPConv3Frm)
1659 // Encode Dm / Sm.
1660 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001661
1662 emitWordLE(Binary);
1663}
1664
Chris Lattner33fabd72010-02-02 21:48:51 +00001665void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001666 // Part of binary is determined by TableGn.
1667 unsigned Binary = getBinaryCodeForInstr(MI);
1668
1669 // Set the conditional execution predicate
1670 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1671
1672 unsigned OpIdx = 0;
1673
1674 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001675 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001676
1677 // Encode address base.
1678 const MachineOperand &Base = MI.getOperand(OpIdx++);
1679 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1680
1681 // If there is a non-zero immediate offset, encode it.
1682 if (Base.isReg()) {
1683 const MachineOperand &Offset = MI.getOperand(OpIdx);
1684 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1685 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1686 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001687 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001688 emitWordLE(Binary);
1689 return;
1690 }
1691 }
1692
1693 // If immediate offset is omitted, default to +0.
1694 Binary |= 1 << ARMII::U_BitShift;
1695
1696 emitWordLE(Binary);
1697}
1698
Bob Wilson87949d42010-03-17 21:16:45 +00001699void
1700ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001701 const TargetInstrDesc &TID = MI.getDesc();
1702 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1703
Evan Chengcd8e66a2008-11-11 21:48:44 +00001704 // Part of binary is determined by TableGn.
1705 unsigned Binary = getBinaryCodeForInstr(MI);
1706
1707 // Set the conditional execution predicate
1708 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1709
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001710 // Skip operand 0 of an instruction with base register update.
1711 unsigned OpIdx = 0;
1712 if (IsUpdating)
1713 ++OpIdx;
1714
Evan Chengcd8e66a2008-11-11 21:48:44 +00001715 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001716 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001717
1718 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001719 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1720 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001721
1722 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001723 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001724 Binary |= 0x1 << ARMII::W_BitShift;
1725
1726 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001727 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001728
Bob Wilsond4bfd542010-08-27 23:18:17 +00001729 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001730 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001731 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001732 const MachineOperand &MO = MI.getOperand(i);
1733 if (!MO.isReg() || MO.isImplicit())
1734 break;
1735 ++NumRegs;
1736 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001737 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1738 // Otherwise, it will be 0, in the case of 32-bit registers.
1739 if(Binary & 0x100)
1740 Binary |= NumRegs * 2;
1741 else
1742 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001743
1744 emitWordLE(Binary);
1745}
1746
Bob Wilson1a913ed2010-06-11 21:34:50 +00001747static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1748 unsigned RegD = MI.getOperand(OpIdx).getReg();
1749 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001750 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001751 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1752 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1753 return Binary;
1754}
1755
Bob Wilson5e7b6072010-06-25 22:40:46 +00001756static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1757 unsigned RegN = MI.getOperand(OpIdx).getReg();
1758 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001759 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001760 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1761 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1762 return Binary;
1763}
1764
Bob Wilson583a2a02010-06-25 21:17:19 +00001765static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1766 unsigned RegM = MI.getOperand(OpIdx).getReg();
1767 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001768 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001769 Binary |= (RegM & 0xf);
1770 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1771 return Binary;
1772}
1773
Bob Wilsond896a972010-06-28 21:12:19 +00001774/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1775/// data-processing instruction to the corresponding Thumb encoding.
1776static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1777 assert((Binary & 0xfe000000) == 0xf2000000 &&
1778 "not an ARM NEON data-processing instruction");
1779 unsigned UBit = (Binary >> 24) & 1;
1780 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1781}
1782
Bob Wilsond5a563d2010-06-29 17:34:07 +00001783void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001784 unsigned Binary = getBinaryCodeForInstr(MI);
1785
Bob Wilsond5a563d2010-06-29 17:34:07 +00001786 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1787 const TargetInstrDesc &TID = MI.getDesc();
1788 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1789 RegTOpIdx = 0;
1790 RegNOpIdx = 1;
1791 LnOpIdx = 2;
1792 } else { // ARMII::NSetLnFrm
1793 RegTOpIdx = 2;
1794 RegNOpIdx = 0;
1795 LnOpIdx = 3;
1796 }
1797
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001798 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001799 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001800
Bob Wilsond5a563d2010-06-29 17:34:07 +00001801 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001802 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001803 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001804 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001805
1806 unsigned LaneShift;
1807 if ((Binary & (1 << 22)) != 0)
1808 LaneShift = 0; // 8-bit elements
1809 else if ((Binary & (1 << 5)) != 0)
1810 LaneShift = 1; // 16-bit elements
1811 else
1812 LaneShift = 2; // 32-bit elements
1813
Bob Wilsond5a563d2010-06-29 17:34:07 +00001814 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001815 unsigned Opc1 = Lane >> 2;
1816 unsigned Opc2 = Lane & 3;
1817 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1818 Binary |= (Opc1 << 21);
1819 Binary |= (Opc2 << 5);
1820
1821 emitWordLE(Binary);
1822}
1823
Bob Wilson21773e72010-06-29 20:13:29 +00001824void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1825 unsigned Binary = getBinaryCodeForInstr(MI);
1826
1827 // Set the conditional execution predicate
1828 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1829
1830 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001831 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001832 Binary |= (RegT << ARMII::RegRdShift);
1833 Binary |= encodeNEONRn(MI, 0);
1834 emitWordLE(Binary);
1835}
1836
Bob Wilson583a2a02010-06-25 21:17:19 +00001837void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001838 unsigned Binary = getBinaryCodeForInstr(MI);
1839 // Destination register is encoded in Dd.
1840 Binary |= encodeNEONRd(MI, 0);
1841 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1842 unsigned Imm = MI.getOperand(1).getImm();
1843 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001844 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001845 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001846 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001847 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001848 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001849 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001850 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001851 emitWordLE(Binary);
1852}
1853
Bob Wilson583a2a02010-06-25 21:17:19 +00001854void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001855 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001856 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001857 // Destination register is encoded in Dd; source register in Dm.
1858 unsigned OpIdx = 0;
1859 Binary |= encodeNEONRd(MI, OpIdx++);
1860 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1861 ++OpIdx;
1862 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001863 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001864 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001865 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1866 emitWordLE(Binary);
1867}
1868
Bob Wilson5e7b6072010-06-25 22:40:46 +00001869void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1870 const TargetInstrDesc &TID = MI.getDesc();
1871 unsigned Binary = getBinaryCodeForInstr(MI);
1872 // Destination register is encoded in Dd; source registers in Dn and Dm.
1873 unsigned OpIdx = 0;
1874 Binary |= encodeNEONRd(MI, OpIdx++);
1875 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1876 ++OpIdx;
1877 Binary |= encodeNEONRn(MI, OpIdx++);
1878 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1879 ++OpIdx;
1880 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001881 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001882 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001883 // FIXME: This does not handle VMOVDneon or VMOVQ.
1884 emitWordLE(Binary);
1885}
1886
Evan Cheng7602e112008-09-02 06:52:38 +00001887#include "ARMGenCodeEmitter.inc"