blob: 895ad7322d9ffc07e715119bff929532b48d105a [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; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000190 unsigned getCCOutOpValue(const MachineInstr &MI, unsigned Op)
191 const { return 0; }
Jim Grosbach2a6a93d2010-10-12 23:18:08 +0000192 unsigned getSOImmOpValue(const MachineInstr &MI, unsigned Op)
193 const { return 0; }
Owen Anderson5de6d842010-11-12 21:12:40 +0000194 unsigned getT2SOImmOpValue(const MachineInstr &MI, unsigned Op)
195 const { return 0; }
Jim Grosbachef324d72010-10-12 23:53:58 +0000196 unsigned getSORegOpValue(const MachineInstr &MI, unsigned Op)
197 const { return 0; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000198 unsigned getThumbAddrModeRegRegOpValue(const MachineInstr &MI, unsigned Op)
Owen Anderson0f4b60d2010-12-10 22:11:13 +0000199 const { return 0; }
Owen Anderson75579f72010-11-29 22:44:32 +0000200 unsigned getT2AddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
201 const { return 0; }
202 unsigned getT2AddrModeImm8OpValue(const MachineInstr &MI, unsigned Op)
203 const { return 0; }
Owen Anderson9d63d902010-12-01 19:18:46 +0000204 unsigned getT2AddrModeImm8s4OpValue(const MachineInstr &MI, unsigned Op)
205 const { return 0; }
Owen Anderson6af50f72010-11-30 00:14:31 +0000206 unsigned getT2AddrModeImm8OffsetOpValue(const MachineInstr &MI, unsigned Op)
207 const { return 0; }
Owen Anderson0e1bcdf2010-11-30 19:19:31 +0000208 unsigned getT2AddrModeImm12OffsetOpValue(const MachineInstr &MI,unsigned Op)
209 const { return 0; }
Owen Anderson75579f72010-11-29 22:44:32 +0000210 unsigned getT2AddrModeSORegOpValue(const MachineInstr &MI, unsigned Op)
211 const { return 0; }
Owen Anderson5de6d842010-11-12 21:12:40 +0000212 unsigned getT2SORegOpValue(const MachineInstr &MI, unsigned Op)
213 const { return 0; }
Jim Grosbachb35ad412010-10-13 19:56:10 +0000214 unsigned getRotImmOpValue(const MachineInstr &MI, unsigned Op)
215 const { return 0; }
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000216 unsigned getImmMinusOneOpValue(const MachineInstr &MI, unsigned Op)
217 const { return 0; }
Owen Andersona838a252010-12-14 00:36:49 +0000218 unsigned getT2AdrLabelOpValue(const MachineInstr &MI, unsigned Op)
219 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000220 unsigned getAddrMode6AddressOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersond9aa7d32010-11-02 00:05:05 +0000221 const { return 0; }
Bob Wilson8e0c7b52010-11-30 00:00:42 +0000222 unsigned getAddrMode6DupAddressOpValue(const MachineInstr &MI, unsigned Op)
223 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000224 unsigned getAddrMode6OffsetOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersoncf667be2010-11-02 01:24:55 +0000225 const { return 0; }
Jim Grosbach3fea191052010-10-21 22:03:21 +0000226 unsigned getBitfieldInvertedMaskOpValue(const MachineInstr &MI,
227 unsigned Op) const { return 0; }
Jim Grosbach5d5eb9e2010-11-10 23:38:36 +0000228 uint32_t getLdStmModeOpValue(const MachineInstr &MI, unsigned OpIdx)
229 const {return 0; }
Jim Grosbach54fea632010-11-09 17:20:53 +0000230 uint32_t getLdStSORegOpValue(const MachineInstr &MI, unsigned OpIdx)
231 const { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000232
233 unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
234 const {
235 // {17-13} = reg
236 // {12} = (U)nsigned (add == '1', sub == '0')
237 // {11-0} = imm12
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000238 const MachineOperand &MO = MI.getOperand(Op);
239 const MachineOperand &MO1 = MI.getOperand(Op + 1);
240 if (!MO.isReg()) {
241 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
242 return 0;
Jim Grosbachf31430f2010-10-27 19:55:59 +0000243 }
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000244 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000245 int32_t Imm12 = MO1.getImm();
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000246 uint32_t Binary;
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000247 Binary = Imm12 & 0xfff;
248 if (Imm12 >= 0)
249 Binary |= (1 << 12);
250 Binary |= (Reg << 13);
251 return Binary;
252 }
Jason W Kim837caa92010-11-18 23:37:15 +0000253
Evan Cheng75972122011-01-13 07:58:56 +0000254 unsigned getHiLo16ImmOpValue(const MachineInstr &MI, unsigned Op) const {
Jason W Kim837caa92010-11-18 23:37:15 +0000255 return 0;
256 }
257
Jim Grosbach99f53d12010-11-15 20:47:07 +0000258 uint32_t getAddrMode2OpValue(const MachineInstr &MI, unsigned OpIdx)
259 const { return 0;}
260 uint32_t getAddrMode2OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
261 const { return 0;}
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000262 uint32_t getAddrMode3OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
263 const { return 0;}
Bill Wendlingef4a68b2010-11-30 07:44:32 +0000264 uint32_t getAddrMode3OpValue(const MachineInstr &MI, unsigned Op)
265 const { return 0; }
Jim Grosbachd967cd02010-12-07 21:50:47 +0000266 uint32_t getAddrModeThumbSPOpValue(const MachineInstr &MI, unsigned Op)
267 const { return 0; }
Bill Wendling272df512010-12-09 21:49:07 +0000268 uint32_t getAddrModeSOpValue(const MachineInstr &MI, unsigned Op)
Bill Wendling1fd374e2010-11-30 22:57:21 +0000269 const { return 0; }
Bill Wendlingf4caf692010-12-14 03:36:38 +0000270 uint32_t getAddrModeISOpValue(const MachineInstr &MI, unsigned Op)
271 const { return 0; }
Bill Wendlingb8958b02010-12-08 01:57:09 +0000272 uint32_t getAddrModePCOpValue(const MachineInstr &MI, unsigned Op)
273 const { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000274 uint32_t getAddrMode5OpValue(const MachineInstr &MI, unsigned Op) const {
Bill Wendling20272a72010-11-20 00:26:37 +0000275 // {17-13} = reg
276 // {12} = (U)nsigned (add == '1', sub == '0')
277 // {11-0} = imm12
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000278 const MachineOperand &MO = MI.getOperand(Op);
279 const MachineOperand &MO1 = MI.getOperand(Op + 1);
280 if (!MO.isReg()) {
281 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
282 return 0;
283 }
284 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling20272a72010-11-20 00:26:37 +0000285 int32_t Imm12 = MO1.getImm();
286
287 // Special value for #-0
288 if (Imm12 == INT32_MIN)
289 Imm12 = 0;
290
291 // Immediate is always encoded as positive. The 'U' bit controls add vs
292 // sub.
293 bool isAdd = true;
294 if (Imm12 < 0) {
295 Imm12 = -Imm12;
296 isAdd = false;
297 }
298
299 uint32_t Binary = Imm12 & 0xfff;
300 if (isAdd)
301 Binary |= (1 << 12);
302 Binary |= (Reg << 13);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000303 return Binary;
304 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000305 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
306 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000307
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000308 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
309 const { return 0; }
310
Shih-wei Liao5170b712010-05-26 00:02:28 +0000311 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000312 /// machine operand requires relocation, record the relocation and return
313 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000314 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000315 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000316
Evan Cheng83b5cf02008-11-05 23:22:34 +0000317 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000318 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000319 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000320
321 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000322 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000323 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000324 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000325 intptr_t ACPV = 0) const;
326 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
327 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
328 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000329 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000330 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000331 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000332}
333
Chris Lattner33fabd72010-02-02 21:48:51 +0000334char ARMCodeEmitter::ID = 0;
335
Bob Wilson87949d42010-03-17 21:16:45 +0000336/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000337/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000338FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
339 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000340 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000341}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000342
Chris Lattner33fabd72010-02-02 21:48:51 +0000343bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000344 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
345 MF.getTarget().getRelocationModel() != Reloc::Static) &&
346 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000347 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
348 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
349 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000350 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000351 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000352 MJTEs = 0;
353 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000354 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000355 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000356 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000357 MMI = &getAnalysis<MachineModuleInfo>();
358 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000359
360 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000361 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000362 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000363 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000364 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000365 MBB != E; ++MBB) {
366 MCE.StartMachineBasicBlock(MBB);
367 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
368 I != E; ++I)
369 emitInstruction(*I);
370 }
371 } while (MCE.finishFunction(MF));
372
373 return false;
374}
375
Evan Cheng83b5cf02008-11-05 23:22:34 +0000376/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000377///
Chris Lattner33fabd72010-02-02 21:48:51 +0000378unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000379 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000380 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000381 case ARM_AM::asr: return 2;
382 case ARM_AM::lsl: return 0;
383 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000384 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000385 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000386 }
Evan Cheng7602e112008-09-02 06:52:38 +0000387 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000388}
389
Shih-wei Liao5170b712010-05-26 00:02:28 +0000390/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000391/// machine operand requires relocation, record the relocation and return zero.
392unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000393 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000394 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000395 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000396 && "Relocation to this function should be for movt or movw");
397
398 if (MO.isImm())
399 return static_cast<unsigned>(MO.getImm());
400 else if (MO.isGlobal())
401 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
402 else if (MO.isSymbol())
403 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
404 else if (MO.isMBB())
405 emitMachineBasicBlock(MO.getMBB(), Reloc);
406 else {
407#ifndef NDEBUG
408 errs() << MO;
409#endif
410 llvm_unreachable("Unsupported operand type for movw/movt");
411 }
412 return 0;
413}
414
Evan Cheng7602e112008-09-02 06:52:38 +0000415/// getMachineOpValue - Return binary encoding of operand. If the machine
416/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000417unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000418 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000419 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000420 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000421 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000422 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000423 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000424 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000425 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000426 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000427 else if (MO.isCPI()) {
428 const TargetInstrDesc &TID = MI.getDesc();
429 // For VFP load, the immediate offset is multiplied by 4.
430 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
431 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
432 emitConstPoolAddress(MO.getIndex(), Reloc);
433 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000434 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000435 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000436 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Jim Grosbach817c1a62010-11-19 00:27:09 +0000437 else
438 llvm_unreachable("Unable to encode MachineOperand!");
Evan Cheng7602e112008-09-02 06:52:38 +0000439 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000440}
441
Evan Cheng057d0c32008-09-18 07:28:19 +0000442/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000443///
Dan Gohman46510a72010-04-15 01:51:59 +0000444void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000445 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000446 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000447 MachineRelocation MR = Indirect
448 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000449 const_cast<GlobalValue *>(GV),
450 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000451 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000452 const_cast<GlobalValue *>(GV), ACPV,
453 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000454 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000455}
456
457/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
458/// be emitted to the current location in the function, and allow it to be PC
459/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000460void ARMCodeEmitter::
461emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000462 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
463 Reloc, ES));
464}
465
466/// emitConstPoolAddress - Arrange for the address of an constant pool
467/// to be emitted to the current location in the function, and allow it to be PC
468/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000469void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000470 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000471 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000472 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000473}
474
475/// emitJumpTableAddress - Arrange for the address of a jump table to
476/// be emitted to the current location in the function, and allow it to be PC
477/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000478void ARMCodeEmitter::
479emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000480 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000481 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000482}
483
Raul Herbster9c1a3822007-08-30 23:29:26 +0000484/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000485void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000486 unsigned Reloc,
487 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000488 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000489 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000490}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000491
Chris Lattner33fabd72010-02-02 21:48:51 +0000492void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000493 DEBUG(errs() << " 0x";
494 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000495 MCE.emitWordLE(Binary);
496}
497
Chris Lattner33fabd72010-02-02 21:48:51 +0000498void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000499 DEBUG(errs() << " 0x";
500 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000501 MCE.emitDWordLE(Binary);
502}
503
Chris Lattner33fabd72010-02-02 21:48:51 +0000504void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000505 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000506
Devang Patelaf0e2722009-10-06 02:19:11 +0000507 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000508
Dan Gohmanfe601042010-06-22 15:08:57 +0000509 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000510 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000511 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000512 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000513 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000514 }
Jim Grosbach85eb54c2010-11-17 23:33:14 +0000515 case ARMII::MiscFrm:
516 if (MI.getOpcode() == ARM::LEApcrelJT) {
517 // Materialize jumptable address.
518 emitLEApcrelJTInstruction(MI);
519 break;
520 }
521 llvm_unreachable("Unhandled instruction encoding!");
522 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000523 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000524 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000525 break;
526 case ARMII::DPFrm:
527 case ARMII::DPSoRegFrm:
528 emitDataProcessingInstruction(MI);
529 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000530 case ARMII::LdFrm:
531 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000532 emitLoadStoreInstruction(MI);
533 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000534 case ARMII::LdMiscFrm:
535 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000536 emitMiscLoadStoreInstruction(MI);
537 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000538 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000539 emitLoadStoreMultipleInstruction(MI);
540 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000541 case ARMII::MulFrm:
542 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000543 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000544 case ARMII::ExtFrm:
545 emitExtendInstruction(MI);
546 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000547 case ARMII::ArithMiscFrm:
548 emitMiscArithInstruction(MI);
549 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000550 case ARMII::SatFrm:
551 emitSaturateInstruction(MI);
552 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000553 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000554 emitBranchInstruction(MI);
555 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000556 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000557 emitMiscBranchInstruction(MI);
558 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000559 // VFP instructions.
560 case ARMII::VFPUnaryFrm:
561 case ARMII::VFPBinaryFrm:
562 emitVFPArithInstruction(MI);
563 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000564 case ARMII::VFPConv1Frm:
565 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000566 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000567 case ARMII::VFPConv4Frm:
568 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000569 emitVFPConversionInstruction(MI);
570 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000571 case ARMII::VFPLdStFrm:
572 emitVFPLoadStoreInstruction(MI);
573 break;
574 case ARMII::VFPLdStMulFrm:
575 emitVFPLoadStoreMultipleInstruction(MI);
576 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000577
Bob Wilson1a913ed2010-06-11 21:34:50 +0000578 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000579 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000580 case ARMII::NSetLnFrm:
581 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000582 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000583 case ARMII::NDupFrm:
584 emitNEONDupInstruction(MI);
585 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000586 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000587 emitNEON1RegModImmInstruction(MI);
588 break;
589 case ARMII::N2RegFrm:
590 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000591 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000592 case ARMII::N3RegFrm:
593 emitNEON3RegInstruction(MI);
594 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000595 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000596 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000597}
598
Chris Lattner33fabd72010-02-02 21:48:51 +0000599void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000600 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
601 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000602 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000603
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000604 // Remember the CONSTPOOL_ENTRY address for later relocation.
605 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
606
607 // Emit constpool island entry. In most cases, the actual values will be
608 // resolved and relocated after code emission.
609 if (MCPE.isMachineConstantPoolEntry()) {
610 ARMConstantPoolValue *ACPV =
611 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
612
Chris Lattner705e07f2009-08-23 03:41:05 +0000613 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
614 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000615
Bob Wilson28989a82009-11-02 16:59:06 +0000616 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000617 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000618 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000619 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000620 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000621 isa<Function>(GV),
622 Subtarget->GVIsIndirectSymbol(GV, RelocM),
623 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000624 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000625 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
626 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000627 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000628 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000629 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000630
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000631 DEBUG({
632 errs() << " ** Constant pool #" << CPI << " @ "
633 << (void*)MCE.getCurrentPCValue() << " ";
634 if (const Function *F = dyn_cast<Function>(CV))
635 errs() << F->getName();
636 else
637 errs() << *CV;
638 errs() << '\n';
639 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000640
Dan Gohman46510a72010-04-15 01:51:59 +0000641 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000642 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000643 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000644 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000645 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000646 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000647 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000648 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000649 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000650 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000651 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
652 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000653 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000654 }
655 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000656 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000657 }
658 }
659}
660
Zonr Changf86399b2010-05-25 08:42:45 +0000661void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
662 const MachineOperand &MO0 = MI.getOperand(0);
663 const MachineOperand &MO1 = MI.getOperand(1);
664
665 // Emit the 'movw' instruction.
666 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
667
668 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
669
670 // Set the conditional execution predicate.
671 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
672
673 // Encode Rd.
674 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
675
676 // Encode imm16 as imm4:imm12
677 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
678 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
679 emitWordLE(Binary);
680
681 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
682 // Emit the 'movt' instruction.
683 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
684
685 // Set the conditional execution predicate.
686 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
687
688 // Encode Rd.
689 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
690
691 // Encode imm16 as imm4:imm1, same as movw above.
692 Binary |= Hi16 & 0xFFF;
693 Binary |= ((Hi16 >> 12) & 0xF) << 16;
694 emitWordLE(Binary);
695}
696
Chris Lattner33fabd72010-02-02 21:48:51 +0000697void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000698 const MachineOperand &MO0 = MI.getOperand(0);
699 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000700 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
701 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000702 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
703 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
704
705 // Emit the 'mov' instruction.
706 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
707
708 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000709 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000710
711 // Encode Rd.
712 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
713
714 // Encode so_imm.
715 // Set bit I(25) to identify this is the immediate form of <shifter_op>
716 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000717 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000718 emitWordLE(Binary);
719
720 // Now the 'orr' instruction.
721 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
722
723 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000724 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000725
726 // Encode Rd.
727 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
728
729 // Encode Rn.
730 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
731
732 // Encode so_imm.
733 // Set bit I(25) to identify this is the immediate form of <shifter_op>
734 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000735 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000736 emitWordLE(Binary);
737}
738
Chris Lattner33fabd72010-02-02 21:48:51 +0000739void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000740 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000741
Evan Cheng4df60f52008-11-07 09:06:08 +0000742 const TargetInstrDesc &TID = MI.getDesc();
743
744 // Emit the 'add' instruction.
Jim Grosbach0129be22010-11-17 21:57:51 +0000745 unsigned Binary = 0x4 << 21; // add: Insts{24-21} = 0b0100
Evan Cheng4df60f52008-11-07 09:06:08 +0000746
747 // Set the conditional execution predicate
748 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
749
750 // Encode S bit if MI modifies CPSR.
751 Binary |= getAddrModeSBit(MI, TID);
752
753 // Encode Rd.
754 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
755
756 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000757 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000758
759 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000760 Binary |= 1 << ARMII::I_BitShift;
761 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
762
763 emitWordLE(Binary);
764}
765
Chris Lattner33fabd72010-02-02 21:48:51 +0000766void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000767 unsigned Opcode = MI.getDesc().Opcode;
768
769 // Part of binary is determined by TableGn.
770 unsigned Binary = getBinaryCodeForInstr(MI);
771
772 // Set the conditional execution predicate
773 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
774
775 // Encode S bit if MI modifies CPSR.
776 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
777 Binary |= 1 << ARMII::S_BitShift;
778
779 // Encode register def if there is one.
780 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
781
782 // Encode the shift operation.
783 switch (Opcode) {
784 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000785 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000786 // rrx
787 Binary |= 0x6 << 4;
788 break;
789 case ARM::MOVsrl_flag:
790 // lsr #1
791 Binary |= (0x2 << 4) | (1 << 7);
792 break;
793 case ARM::MOVsra_flag:
794 // asr #1
795 Binary |= (0x4 << 4) | (1 << 7);
796 break;
797 }
798
799 // Encode register Rm.
800 Binary |= getMachineOpValue(MI, 1);
801
802 emitWordLE(Binary);
803}
804
Chris Lattner33fabd72010-02-02 21:48:51 +0000805void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000806 DEBUG(errs() << " ** LPC" << LabelID << " @ "
807 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000808 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
809}
810
Chris Lattner33fabd72010-02-02 21:48:51 +0000811void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000812 unsigned Opcode = MI.getDesc().Opcode;
813 switch (Opcode) {
814 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000815 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Jim Grosbach532c2f12010-11-30 00:24:05 +0000816 case ARM::BX_CALL:
817 case ARM::BMOVPCRX_CALL:
818 case ARM::BXr9_CALL:
819 case ARM::BMOVPCRXr9_CALL: {
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000820 // First emit mov lr, pc
821 unsigned Binary = 0x01a0e00f;
822 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
823 emitWordLE(Binary);
824
825 // and then emit the branch.
826 emitMiscBranchInstruction(MI);
827 break;
828 }
Chris Lattner518bb532010-02-09 19:54:29 +0000829 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000830 // We allow inline assembler nodes with empty bodies - they can
831 // implicitly define registers, which is ok for JIT.
832 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000833 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000834 }
Evan Chengffa6d962008-11-13 23:36:57 +0000835 break;
836 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000837 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000838 case TargetOpcode::EH_LABEL:
839 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
840 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000841 case TargetOpcode::IMPLICIT_DEF:
842 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000843 // Do nothing.
844 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000845 case ARM::CONSTPOOL_ENTRY:
846 emitConstPoolInstruction(MI);
847 break;
848 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000849 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000850 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000851 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000852 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000853 break;
854 }
855 case ARM::PICLDR:
856 case ARM::PICLDRB:
857 case ARM::PICSTR:
858 case ARM::PICSTRB: {
859 // Remember of the address of the PC label for relocation later.
860 addPCLabel(MI.getOperand(2).getImm());
861 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000862 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000863 break;
864 }
865 case ARM::PICLDRH:
866 case ARM::PICLDRSH:
867 case ARM::PICLDRSB:
868 case ARM::PICSTRH: {
869 // Remember of the address of the PC label for relocation later.
870 addPCLabel(MI.getOperand(2).getImm());
871 // These are just load / store instructions that implicitly read pc.
872 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000873 break;
874 }
Zonr Changf86399b2010-05-25 08:42:45 +0000875
876 case ARM::MOVi32imm:
Evan Cheng893d7fe2010-11-12 23:03:38 +0000877 // Two instructions to materialize a constant.
878 if (Subtarget->hasV6T2Ops())
879 emitMOVi32immInstruction(MI);
880 else
881 emitMOVi2piecesInstruction(MI);
Zonr Changf86399b2010-05-25 08:42:45 +0000882 break;
883
Evan Cheng4df60f52008-11-07 09:06:08 +0000884 case ARM::LEApcrelJT:
885 // Materialize jumptable address.
886 emitLEApcrelJTInstruction(MI);
887 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000888 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000889 case ARM::MOVsrl_flag:
890 case ARM::MOVsra_flag:
891 emitPseudoMoveInstruction(MI);
892 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000893 }
894}
895
Bob Wilson87949d42010-03-17 21:16:45 +0000896unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000897 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000898 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000899 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000900 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000901
902 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
903 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
904 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
905
906 // Encode the shift opcode.
907 unsigned SBits = 0;
908 unsigned Rs = MO1.getReg();
909 if (Rs) {
910 // Set shift operand (bit[7:4]).
911 // LSL - 0001
912 // LSR - 0011
913 // ASR - 0101
914 // ROR - 0111
915 // RRX - 0110 and bit[11:8] clear.
916 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000917 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000918 case ARM_AM::lsl: SBits = 0x1; break;
919 case ARM_AM::lsr: SBits = 0x3; break;
920 case ARM_AM::asr: SBits = 0x5; break;
921 case ARM_AM::ror: SBits = 0x7; break;
922 case ARM_AM::rrx: SBits = 0x6; break;
923 }
924 } else {
925 // Set shift operand (bit[6:4]).
926 // LSL - 000
927 // LSR - 010
928 // ASR - 100
929 // ROR - 110
930 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000931 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000932 case ARM_AM::lsl: SBits = 0x0; break;
933 case ARM_AM::lsr: SBits = 0x2; break;
934 case ARM_AM::asr: SBits = 0x4; break;
935 case ARM_AM::ror: SBits = 0x6; break;
936 }
937 }
938 Binary |= SBits << 4;
939 if (SOpc == ARM_AM::rrx)
940 return Binary;
941
942 // Encode the shift operation Rs or shift_imm (except rrx).
943 if (Rs) {
944 // Encode Rs bit[11:8].
945 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000946 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000947 }
948
949 // Encode shift_imm bit[11:7].
950 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
951}
952
Chris Lattner33fabd72010-02-02 21:48:51 +0000953unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000954 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
955 assert(SoImmVal != -1 && "Not a valid so_imm value!");
956
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000957 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000958 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000959 << ARMII::SoRotImmShift;
960
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000961 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000962 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000963 return Binary;
964}
965
Chris Lattner33fabd72010-02-02 21:48:51 +0000966unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000967 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000968 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000969 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000970 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000971 return 1 << ARMII::S_BitShift;
972 }
973 return 0;
974}
975
Bob Wilson87949d42010-03-17 21:16:45 +0000976void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000977 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000978 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000979 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000980
981 // Part of binary is determined by TableGn.
982 unsigned Binary = getBinaryCodeForInstr(MI);
983
Jim Grosbach33412622008-10-07 19:05:35 +0000984 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000985 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000986
Evan Cheng49a9f292008-09-12 22:45:55 +0000987 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000988 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000989
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000990 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000991 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000992 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000993 if (NumDefs)
994 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
995 else if (ImplicitRd)
996 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000997 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000998
Zonr Changf86399b2010-05-25 08:42:45 +0000999 if (TID.Opcode == ARM::MOVi16) {
1000 // Get immediate from MI.
1001 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
1002 ARM::reloc_arm_movw);
1003 // Encode imm which is the same as in emitMOVi32immInstruction().
1004 Binary |= Lo16 & 0xFFF;
1005 Binary |= ((Lo16 >> 12) & 0xF) << 16;
1006 emitWordLE(Binary);
1007 return;
1008 } else if(TID.Opcode == ARM::MOVTi16) {
1009 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
1010 ARM::reloc_arm_movt) >> 16);
1011 Binary |= Hi16 & 0xFFF;
1012 Binary |= ((Hi16 >> 12) & 0xF) << 16;
1013 emitWordLE(Binary);
1014 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +00001015 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +00001016 uint32_t v = ~MI.getOperand(2).getImm();
1017 int32_t lsb = CountTrailingZeros_32(v);
1018 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +00001019 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +00001020 Binary |= (msb & 0x1F) << 16;
1021 Binary |= (lsb & 0x1F) << 7;
1022 emitWordLE(Binary);
1023 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +00001024 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
1025 // Encode Rn in Instr{0-3}
1026 Binary |= getMachineOpValue(MI, OpIdx++);
1027
1028 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
1029 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
1030
1031 // Instr{20-16} = widthm1, Instr{11-7} = lsb
1032 Binary |= (widthm1 & 0x1F) << 16;
1033 Binary |= (lsb & 0x1F) << 7;
1034 emitWordLE(Binary);
1035 return;
Zonr Changf86399b2010-05-25 08:42:45 +00001036 }
1037
Evan Chengd87293c2008-11-06 08:47:38 +00001038 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
1039 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1040 ++OpIdx;
1041
Jim Grosbachefd30ba2008-10-01 18:16:49 +00001042 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +00001043 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
1044 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +00001045 if (ImplicitRn)
1046 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001047 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001048 else {
1049 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
1050 ++OpIdx;
1051 }
Evan Cheng7602e112008-09-02 06:52:38 +00001052 }
1053
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001054 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001055 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +00001056 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001057 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001058 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +00001059 return;
1060 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +00001061
Evan Chengedda31c2008-11-05 18:35:52 +00001062 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001063 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001064 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +00001065 return;
1066 }
Evan Cheng7602e112008-09-02 06:52:38 +00001067
Evan Cheng5f1db7b2008-09-12 22:01:15 +00001068 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +00001069 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +00001070
Evan Cheng83b5cf02008-11-05 23:22:34 +00001071 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001072}
1073
Bob Wilson87949d42010-03-17 21:16:45 +00001074void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +00001075 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +00001076 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001077 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001078 unsigned Form = TID.TSFlags & ARMII::FormMask;
1079 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001080
Evan Chengedda31c2008-11-05 18:35:52 +00001081 // Part of binary is determined by TableGn.
1082 unsigned Binary = getBinaryCodeForInstr(MI);
1083
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001084 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
1085 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
1086 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +00001087 emitWordLE(Binary);
1088 return;
1089 }
1090
Jim Grosbach33412622008-10-07 19:05:35 +00001091 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001092 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001093
Evan Cheng4df60f52008-11-07 09:06:08 +00001094 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001095
1096 // Operand 0 of a pre- and post-indexed store is the address base
1097 // writeback. Skip it.
1098 bool Skipped = false;
1099 if (IsPrePost && Form == ARMII::StFrm) {
1100 ++OpIdx;
1101 Skipped = true;
1102 }
1103
1104 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001105 if (ImplicitRd)
1106 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001107 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001108 else
1109 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001110
1111 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001112 if (ImplicitRn)
1113 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001114 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001115 else
1116 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001117
Evan Cheng05c356e2008-11-08 01:44:13 +00001118 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001119 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001120 ++OpIdx;
1121
Evan Cheng83b5cf02008-11-05 23:22:34 +00001122 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001123 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001124 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001125
Evan Chenge7de7e32008-09-13 01:44:01 +00001126 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001127 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001128 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001129 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001130 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001131 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001132 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1133 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001134 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001135 }
1136
Bill Wendling7d31a162010-10-20 22:44:54 +00001137 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001138 Binary |= 1 << ARMII::I_BitShift;
1139 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1140 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001141 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001142
Evan Cheng70632912008-11-12 07:34:37 +00001143 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001144 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001145 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001146 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1147 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001148 }
1149
Evan Cheng83b5cf02008-11-05 23:22:34 +00001150 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001151}
1152
Chris Lattner33fabd72010-02-02 21:48:51 +00001153void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001154 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001155 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001156 unsigned Form = TID.TSFlags & ARMII::FormMask;
1157 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001158
Evan Chengedda31c2008-11-05 18:35:52 +00001159 // Part of binary is determined by TableGn.
1160 unsigned Binary = getBinaryCodeForInstr(MI);
1161
Jim Grosbach33412622008-10-07 19:05:35 +00001162 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001163 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001164
Evan Cheng148cad82008-11-13 07:34:59 +00001165 unsigned OpIdx = 0;
1166
1167 // Operand 0 of a pre- and post-indexed store is the address base
1168 // writeback. Skip it.
1169 bool Skipped = false;
1170 if (IsPrePost && Form == ARMII::StMiscFrm) {
1171 ++OpIdx;
1172 Skipped = true;
1173 }
1174
Evan Cheng7602e112008-09-02 06:52:38 +00001175 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001176 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001177
Evan Cheng358dec52009-06-15 08:28:29 +00001178 // Skip LDRD and STRD's second operand.
1179 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1180 ++OpIdx;
1181
Evan Cheng7602e112008-09-02 06:52:38 +00001182 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001183 if (ImplicitRn)
1184 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001185 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001186 else
1187 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001188
Evan Cheng05c356e2008-11-08 01:44:13 +00001189 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001190 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001191 ++OpIdx;
1192
Evan Cheng83b5cf02008-11-05 23:22:34 +00001193 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001194 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001195 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001196
Evan Chenge7de7e32008-09-13 01:44:01 +00001197 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001198 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001199 ARMII::U_BitShift);
1200
1201 // If this instr is in register offset/index encoding, set bit[3:0]
1202 // to the corresponding Rm register.
1203 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001204 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001205 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001206 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001207 }
1208
Evan Chengd87293c2008-11-06 08:47:38 +00001209 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001210 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001211 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001212 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001213 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1214 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001215 }
1216
Evan Cheng83b5cf02008-11-05 23:22:34 +00001217 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001218}
1219
Evan Chengcd8e66a2008-11-11 21:48:44 +00001220static unsigned getAddrModeUPBits(unsigned Mode) {
1221 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001222
1223 // Set addressing mode by modifying bits U(23) and P(24)
1224 // IA - Increment after - bit U = 1 and bit P = 0
1225 // IB - Increment before - bit U = 1 and bit P = 1
1226 // DA - Decrement after - bit U = 0 and bit P = 0
1227 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001228 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001229 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001230 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001231 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1232 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1233 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001234 }
1235
Evan Chengcd8e66a2008-11-11 21:48:44 +00001236 return Binary;
1237}
1238
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001239void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1240 const TargetInstrDesc &TID = MI.getDesc();
1241 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1242
Evan Chengcd8e66a2008-11-11 21:48:44 +00001243 // Part of binary is determined by TableGn.
1244 unsigned Binary = getBinaryCodeForInstr(MI);
1245
1246 // Set the conditional execution predicate
1247 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1248
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001249 // Skip operand 0 of an instruction with base register update.
1250 unsigned OpIdx = 0;
1251 if (IsUpdating)
1252 ++OpIdx;
1253
Evan Chengcd8e66a2008-11-11 21:48:44 +00001254 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001255 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001256
1257 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001258 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1259 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001260
Evan Cheng7602e112008-09-02 06:52:38 +00001261 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001262 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001263 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001264
1265 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001266 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001267 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001268 if (!MO.isReg() || MO.isImplicit())
1269 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001270 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001271 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1272 RegNum < 16);
1273 Binary |= 0x1 << RegNum;
1274 }
1275
Evan Cheng83b5cf02008-11-05 23:22:34 +00001276 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001277}
1278
Chris Lattner33fabd72010-02-02 21:48:51 +00001279void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001280 const TargetInstrDesc &TID = MI.getDesc();
1281
1282 // Part of binary is determined by TableGn.
1283 unsigned Binary = getBinaryCodeForInstr(MI);
1284
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001285 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001286 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001287
1288 // Encode S bit if MI modifies CPSR.
1289 Binary |= getAddrModeSBit(MI, TID);
1290
1291 // 32x32->64bit operations have two destination registers. The number
1292 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001293 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001294 if (TID.getNumDefs() == 2)
1295 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1296
1297 // Encode Rd
1298 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1299
1300 // Encode Rm
1301 Binary |= getMachineOpValue(MI, OpIdx++);
1302
1303 // Encode Rs
1304 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1305
Evan Chengfbc9d412008-11-06 01:21:28 +00001306 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1307 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001308 if (TID.getNumOperands() > OpIdx &&
1309 !TID.OpInfo[OpIdx].isPredicate() &&
1310 !TID.OpInfo[OpIdx].isOptionalDef())
1311 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1312
1313 emitWordLE(Binary);
1314}
1315
Chris Lattner33fabd72010-02-02 21:48:51 +00001316void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001317 const TargetInstrDesc &TID = MI.getDesc();
1318
1319 // Part of binary is determined by TableGn.
1320 unsigned Binary = getBinaryCodeForInstr(MI);
1321
1322 // Set the conditional execution predicate
1323 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1324
1325 unsigned OpIdx = 0;
1326
1327 // Encode Rd
1328 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1329
1330 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1331 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1332 if (MO2.isReg()) {
1333 // Two register operand form.
1334 // Encode Rn.
1335 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1336
1337 // Encode Rm.
1338 Binary |= getMachineOpValue(MI, MO2);
1339 ++OpIdx;
1340 } else {
1341 Binary |= getMachineOpValue(MI, MO1);
1342 }
1343
1344 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1345 if (MI.getOperand(OpIdx).isImm() &&
1346 !TID.OpInfo[OpIdx].isPredicate() &&
1347 !TID.OpInfo[OpIdx].isOptionalDef())
1348 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001349
Evan Cheng83b5cf02008-11-05 23:22:34 +00001350 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001351}
1352
Chris Lattner33fabd72010-02-02 21:48:51 +00001353void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001354 const TargetInstrDesc &TID = MI.getDesc();
1355
1356 // Part of binary is determined by TableGn.
1357 unsigned Binary = getBinaryCodeForInstr(MI);
1358
1359 // Set the conditional execution predicate
1360 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1361
1362 unsigned OpIdx = 0;
1363
1364 // Encode Rd
1365 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1366
1367 const MachineOperand &MO = MI.getOperand(OpIdx++);
1368 if (OpIdx == TID.getNumOperands() ||
1369 TID.OpInfo[OpIdx].isPredicate() ||
1370 TID.OpInfo[OpIdx].isOptionalDef()) {
1371 // Encode Rm and it's done.
1372 Binary |= getMachineOpValue(MI, MO);
1373 emitWordLE(Binary);
1374 return;
1375 }
1376
1377 // Encode Rn.
1378 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1379
1380 // Encode Rm.
1381 Binary |= getMachineOpValue(MI, OpIdx++);
1382
1383 // Encode shift_imm.
1384 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001385 if (TID.Opcode == ARM::PKHTB) {
1386 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1387 if (ShiftAmt == 32)
1388 ShiftAmt = 0;
1389 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001390 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1391 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001392
Evan Cheng8b59db32008-11-07 01:41:35 +00001393 emitWordLE(Binary);
1394}
1395
Bob Wilson9a1c1892010-08-11 00:01:18 +00001396void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1397 const TargetInstrDesc &TID = MI.getDesc();
1398
1399 // Part of binary is determined by TableGen.
1400 unsigned Binary = getBinaryCodeForInstr(MI);
1401
1402 // Set the conditional execution predicate
1403 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1404
1405 // Encode Rd
1406 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1407
1408 // Encode saturate bit position.
1409 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001410 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001411 Pos -= 1;
1412 assert((Pos < 16 || (Pos < 32 &&
1413 TID.Opcode != ARM::SSAT16 &&
1414 TID.Opcode != ARM::USAT16)) &&
1415 "saturate bit position out of range");
1416 Binary |= Pos << 16;
1417
1418 // Encode Rm
1419 Binary |= getMachineOpValue(MI, 2);
1420
1421 // Encode shift_imm.
1422 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001423 unsigned ShiftOp = MI.getOperand(3).getImm();
1424 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1425 if (Opc == ARM_AM::asr)
1426 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001427 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001428 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001429 ShiftAmt = 0;
1430 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1431 Binary |= ShiftAmt << ARMII::ShiftShift;
1432 }
1433
1434 emitWordLE(Binary);
1435}
1436
Chris Lattner33fabd72010-02-02 21:48:51 +00001437void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001438 const TargetInstrDesc &TID = MI.getDesc();
1439
Torok Edwindac237e2009-07-08 20:53:28 +00001440 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001441 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001442 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001443
Evan Cheng7602e112008-09-02 06:52:38 +00001444 // Part of binary is determined by TableGn.
1445 unsigned Binary = getBinaryCodeForInstr(MI);
1446
Evan Chengedda31c2008-11-05 18:35:52 +00001447 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001448 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001449
1450 // Set signed_immed_24 field
1451 Binary |= getMachineOpValue(MI, 0);
1452
Evan Cheng83b5cf02008-11-05 23:22:34 +00001453 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001454}
1455
Chris Lattner33fabd72010-02-02 21:48:51 +00001456void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001457 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001458 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001459 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001460 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1461 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001462
1463 // Now emit the jump table entries.
1464 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1465 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1466 if (IsPIC)
1467 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001468 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001469 else
1470 // Absolute DestBB address.
1471 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1472 emitWordLE(0);
1473 }
1474}
1475
Chris Lattner33fabd72010-02-02 21:48:51 +00001476void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001477 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001478
Evan Cheng437c1732008-11-07 22:30:53 +00001479 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001480 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001481 // First emit a ldr pc, [] instruction.
1482 emitDataProcessingInstruction(MI, ARM::PC);
1483
1484 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001485 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001486 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001487 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1488 emitInlineJumpTable(JTIndex);
1489 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001490 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001491 // First emit a ldr pc, [] instruction.
1492 emitLoadStoreInstruction(MI, ARM::PC);
1493
1494 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001495 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001496 return;
1497 }
1498
Evan Chengedda31c2008-11-05 18:35:52 +00001499 // Part of binary is determined by TableGn.
1500 unsigned Binary = getBinaryCodeForInstr(MI);
1501
1502 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001503 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001504
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001505 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001506 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001507 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001508 else
Evan Chengedda31c2008-11-05 18:35:52 +00001509 // otherwise, set the return register
1510 Binary |= getMachineOpValue(MI, 0);
1511
Evan Cheng83b5cf02008-11-05 23:22:34 +00001512 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001513}
Evan Cheng7602e112008-09-02 06:52:38 +00001514
Evan Cheng80a11982008-11-12 06:41:41 +00001515static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001516 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001517 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001518 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001519 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001520 if (!isSPVFP)
1521 Binary |= RegD << ARMII::RegRdShift;
1522 else {
1523 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1524 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1525 }
Evan Cheng80a11982008-11-12 06:41:41 +00001526 return Binary;
1527}
Evan Cheng78be83d2008-11-11 19:40:26 +00001528
Evan Cheng80a11982008-11-12 06:41:41 +00001529static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001530 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001531 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001532 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001533 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001534 if (!isSPVFP)
1535 Binary |= RegN << ARMII::RegRnShift;
1536 else {
1537 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1538 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1539 }
Evan Cheng80a11982008-11-12 06:41:41 +00001540 return Binary;
1541}
Evan Chengd06d48d2008-11-12 02:19:38 +00001542
Evan Cheng80a11982008-11-12 06:41:41 +00001543static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1544 unsigned RegM = MI.getOperand(OpIdx).getReg();
1545 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001546 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001547 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001548 if (!isSPVFP)
1549 Binary |= RegM;
1550 else {
1551 Binary |= ((RegM & 0x1E) >> 1);
1552 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001553 }
Evan Cheng80a11982008-11-12 06:41:41 +00001554 return Binary;
1555}
1556
Chris Lattner33fabd72010-02-02 21:48:51 +00001557void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001558 const TargetInstrDesc &TID = MI.getDesc();
1559
1560 // Part of binary is determined by TableGn.
1561 unsigned Binary = getBinaryCodeForInstr(MI);
1562
1563 // Set the conditional execution predicate
1564 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1565
1566 unsigned OpIdx = 0;
1567 assert((Binary & ARMII::D_BitShift) == 0 &&
1568 (Binary & ARMII::N_BitShift) == 0 &&
1569 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1570
1571 // Encode Dd / Sd.
1572 Binary |= encodeVFPRd(MI, OpIdx++);
1573
1574 // If this is a two-address operand, skip it, e.g. FMACD.
1575 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1576 ++OpIdx;
1577
1578 // Encode Dn / Sn.
1579 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001580 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001581
1582 if (OpIdx == TID.getNumOperands() ||
1583 TID.OpInfo[OpIdx].isPredicate() ||
1584 TID.OpInfo[OpIdx].isOptionalDef()) {
1585 // FCMPEZD etc. has only one operand.
1586 emitWordLE(Binary);
1587 return;
1588 }
1589
1590 // Encode Dm / Sm.
1591 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001592
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001593 emitWordLE(Binary);
1594}
1595
Bob Wilson87949d42010-03-17 21:16:45 +00001596void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001597 const TargetInstrDesc &TID = MI.getDesc();
1598 unsigned Form = TID.TSFlags & ARMII::FormMask;
1599
1600 // Part of binary is determined by TableGn.
1601 unsigned Binary = getBinaryCodeForInstr(MI);
1602
1603 // Set the conditional execution predicate
1604 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1605
1606 switch (Form) {
1607 default: break;
1608 case ARMII::VFPConv1Frm:
1609 case ARMII::VFPConv2Frm:
1610 case ARMII::VFPConv3Frm:
1611 // Encode Dd / Sd.
1612 Binary |= encodeVFPRd(MI, 0);
1613 break;
1614 case ARMII::VFPConv4Frm:
1615 // Encode Dn / Sn.
1616 Binary |= encodeVFPRn(MI, 0);
1617 break;
1618 case ARMII::VFPConv5Frm:
1619 // Encode Dm / Sm.
1620 Binary |= encodeVFPRm(MI, 0);
1621 break;
1622 }
1623
1624 switch (Form) {
1625 default: break;
1626 case ARMII::VFPConv1Frm:
1627 // Encode Dm / Sm.
1628 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001629 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001630 case ARMII::VFPConv2Frm:
1631 case ARMII::VFPConv3Frm:
1632 // Encode Dn / Sn.
1633 Binary |= encodeVFPRn(MI, 1);
1634 break;
1635 case ARMII::VFPConv4Frm:
1636 case ARMII::VFPConv5Frm:
1637 // Encode Dd / Sd.
1638 Binary |= encodeVFPRd(MI, 1);
1639 break;
1640 }
1641
1642 if (Form == ARMII::VFPConv5Frm)
1643 // Encode Dn / Sn.
1644 Binary |= encodeVFPRn(MI, 2);
1645 else if (Form == ARMII::VFPConv3Frm)
1646 // Encode Dm / Sm.
1647 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001648
1649 emitWordLE(Binary);
1650}
1651
Chris Lattner33fabd72010-02-02 21:48:51 +00001652void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001653 // Part of binary is determined by TableGn.
1654 unsigned Binary = getBinaryCodeForInstr(MI);
1655
1656 // Set the conditional execution predicate
1657 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1658
1659 unsigned OpIdx = 0;
1660
1661 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001662 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001663
1664 // Encode address base.
1665 const MachineOperand &Base = MI.getOperand(OpIdx++);
1666 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1667
1668 // If there is a non-zero immediate offset, encode it.
1669 if (Base.isReg()) {
1670 const MachineOperand &Offset = MI.getOperand(OpIdx);
1671 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1672 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1673 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001674 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001675 emitWordLE(Binary);
1676 return;
1677 }
1678 }
1679
1680 // If immediate offset is omitted, default to +0.
1681 Binary |= 1 << ARMII::U_BitShift;
1682
1683 emitWordLE(Binary);
1684}
1685
Bob Wilson87949d42010-03-17 21:16:45 +00001686void
1687ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001688 const TargetInstrDesc &TID = MI.getDesc();
1689 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1690
Evan Chengcd8e66a2008-11-11 21:48:44 +00001691 // Part of binary is determined by TableGn.
1692 unsigned Binary = getBinaryCodeForInstr(MI);
1693
1694 // Set the conditional execution predicate
1695 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1696
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001697 // Skip operand 0 of an instruction with base register update.
1698 unsigned OpIdx = 0;
1699 if (IsUpdating)
1700 ++OpIdx;
1701
Evan Chengcd8e66a2008-11-11 21:48:44 +00001702 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001703 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001704
1705 // Set addressing mode by modifying bits U(23) and P(24)
Bill Wendling2567eec2010-11-17 05:31:09 +00001706 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1707 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001708
1709 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001710 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001711 Binary |= 0x1 << ARMII::W_BitShift;
1712
1713 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001714 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001715
Bob Wilsond4bfd542010-08-27 23:18:17 +00001716 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001717 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001718 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001719 const MachineOperand &MO = MI.getOperand(i);
1720 if (!MO.isReg() || MO.isImplicit())
1721 break;
1722 ++NumRegs;
1723 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001724 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1725 // Otherwise, it will be 0, in the case of 32-bit registers.
1726 if(Binary & 0x100)
1727 Binary |= NumRegs * 2;
1728 else
1729 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001730
1731 emitWordLE(Binary);
1732}
1733
Bob Wilson1a913ed2010-06-11 21:34:50 +00001734static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1735 unsigned RegD = MI.getOperand(OpIdx).getReg();
1736 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001737 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001738 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1739 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1740 return Binary;
1741}
1742
Bob Wilson5e7b6072010-06-25 22:40:46 +00001743static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1744 unsigned RegN = MI.getOperand(OpIdx).getReg();
1745 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001746 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001747 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1748 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1749 return Binary;
1750}
1751
Bob Wilson583a2a02010-06-25 21:17:19 +00001752static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1753 unsigned RegM = MI.getOperand(OpIdx).getReg();
1754 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001755 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001756 Binary |= (RegM & 0xf);
1757 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1758 return Binary;
1759}
1760
Bob Wilsond896a972010-06-28 21:12:19 +00001761/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1762/// data-processing instruction to the corresponding Thumb encoding.
1763static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1764 assert((Binary & 0xfe000000) == 0xf2000000 &&
1765 "not an ARM NEON data-processing instruction");
1766 unsigned UBit = (Binary >> 24) & 1;
1767 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1768}
1769
Bob Wilsond5a563d2010-06-29 17:34:07 +00001770void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001771 unsigned Binary = getBinaryCodeForInstr(MI);
1772
Bob Wilsond5a563d2010-06-29 17:34:07 +00001773 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1774 const TargetInstrDesc &TID = MI.getDesc();
1775 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1776 RegTOpIdx = 0;
1777 RegNOpIdx = 1;
1778 LnOpIdx = 2;
1779 } else { // ARMII::NSetLnFrm
1780 RegTOpIdx = 2;
1781 RegNOpIdx = 0;
1782 LnOpIdx = 3;
1783 }
1784
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001785 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001786 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001787
Bob Wilsond5a563d2010-06-29 17:34:07 +00001788 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001789 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001790 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001791 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001792
1793 unsigned LaneShift;
1794 if ((Binary & (1 << 22)) != 0)
1795 LaneShift = 0; // 8-bit elements
1796 else if ((Binary & (1 << 5)) != 0)
1797 LaneShift = 1; // 16-bit elements
1798 else
1799 LaneShift = 2; // 32-bit elements
1800
Bob Wilsond5a563d2010-06-29 17:34:07 +00001801 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001802 unsigned Opc1 = Lane >> 2;
1803 unsigned Opc2 = Lane & 3;
1804 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1805 Binary |= (Opc1 << 21);
1806 Binary |= (Opc2 << 5);
1807
1808 emitWordLE(Binary);
1809}
1810
Bob Wilson21773e72010-06-29 20:13:29 +00001811void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1812 unsigned Binary = getBinaryCodeForInstr(MI);
1813
1814 // Set the conditional execution predicate
1815 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1816
1817 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001818 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001819 Binary |= (RegT << ARMII::RegRdShift);
1820 Binary |= encodeNEONRn(MI, 0);
1821 emitWordLE(Binary);
1822}
1823
Bob Wilson583a2a02010-06-25 21:17:19 +00001824void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001825 unsigned Binary = getBinaryCodeForInstr(MI);
1826 // Destination register is encoded in Dd.
1827 Binary |= encodeNEONRd(MI, 0);
1828 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1829 unsigned Imm = MI.getOperand(1).getImm();
1830 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001831 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001832 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001833 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001834 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001835 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001836 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001837 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001838 emitWordLE(Binary);
1839}
1840
Bob Wilson583a2a02010-06-25 21:17:19 +00001841void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001842 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001843 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001844 // Destination register is encoded in Dd; source register in Dm.
1845 unsigned OpIdx = 0;
1846 Binary |= encodeNEONRd(MI, OpIdx++);
1847 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1848 ++OpIdx;
1849 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001850 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001851 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001852 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1853 emitWordLE(Binary);
1854}
1855
Bob Wilson5e7b6072010-06-25 22:40:46 +00001856void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1857 const TargetInstrDesc &TID = MI.getDesc();
1858 unsigned Binary = getBinaryCodeForInstr(MI);
1859 // Destination register is encoded in Dd; source registers in Dn and Dm.
1860 unsigned OpIdx = 0;
1861 Binary |= encodeNEONRd(MI, OpIdx++);
1862 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1863 ++OpIdx;
1864 Binary |= encodeNEONRn(MI, OpIdx++);
1865 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1866 ++OpIdx;
1867 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001868 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001869 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001870 // FIXME: This does not handle VMOVDneon or VMOVQ.
1871 emitWordLE(Binary);
1872}
1873
Evan Cheng7602e112008-09-02 06:52:38 +00001874#include "ARMGenCodeEmitter.inc"