blob: 4aa73851a041dbb2a6dc1a0f1bf5af4530741b0e [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.
164 unsigned getCCOutOpValue(const MachineInstr &MI, unsigned Op)
165 const { return 0; }
Jim Grosbach2a6a93d2010-10-12 23:18:08 +0000166 unsigned getSOImmOpValue(const MachineInstr &MI, unsigned Op)
167 const { return 0; }
Jim Grosbachef324d72010-10-12 23:53:58 +0000168 unsigned getSORegOpValue(const MachineInstr &MI, unsigned Op)
169 const { return 0; }
Jim Grosbachb35ad412010-10-13 19:56:10 +0000170 unsigned getRotImmOpValue(const MachineInstr &MI, unsigned Op)
171 const { return 0; }
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000172 unsigned getImmMinusOneOpValue(const MachineInstr &MI, unsigned Op)
173 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000174 unsigned getAddrMode6AddressOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersond9aa7d32010-11-02 00:05:05 +0000175 const { return 0; }
Owen Andersona2b50b32010-11-02 22:28:01 +0000176 unsigned getAddrMode6OffsetOpValue(const MachineInstr &MI, unsigned Op)
Owen Andersoncf667be2010-11-02 01:24:55 +0000177 const { return 0; }
Jim Grosbach3fea191052010-10-21 22:03:21 +0000178 unsigned getBitfieldInvertedMaskOpValue(const MachineInstr &MI,
179 unsigned Op) const { return 0; }
Jim Grosbach5d5eb9e2010-11-10 23:38:36 +0000180 uint32_t getLdStmModeOpValue(const MachineInstr &MI, unsigned OpIdx)
181 const {return 0; }
Jim Grosbach54fea632010-11-09 17:20:53 +0000182 uint32_t getLdStSORegOpValue(const MachineInstr &MI, unsigned OpIdx)
183 const { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000184
185 unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
186 const {
187 // {17-13} = reg
188 // {12} = (U)nsigned (add == '1', sub == '0')
189 // {11-0} = imm12
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000190 const MachineOperand &MO = MI.getOperand(Op);
191 const MachineOperand &MO1 = MI.getOperand(Op + 1);
192 if (!MO.isReg()) {
193 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
194 return 0;
Jim Grosbachf31430f2010-10-27 19:55:59 +0000195 }
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000196 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000197 int32_t Imm12 = MO1.getImm();
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000198 uint32_t Binary;
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000199 Binary = Imm12 & 0xfff;
200 if (Imm12 >= 0)
201 Binary |= (1 << 12);
202 Binary |= (Reg << 13);
203 return Binary;
204 }
Jim Grosbach7eab97f2010-11-11 16:55:29 +0000205 uint32_t getAddrMode3OffsetOpValue(const MachineInstr &MI, unsigned OpIdx)
206 const { return 0;}
Jim Grosbach570a9222010-11-11 01:09:40 +0000207 uint32_t getAddrMode3OpValue(const MachineInstr &MI, unsigned Op) const
208 { return 0; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000209 uint32_t getAddrMode5OpValue(const MachineInstr &MI, unsigned Op) const {
210 // {12-9} = reg
211 // {8} = (U)nsigned (add == '1', sub == '0')
212 // {7-0} = imm12
213 const MachineOperand &MO = MI.getOperand(Op);
214 const MachineOperand &MO1 = MI.getOperand(Op + 1);
215 if (!MO.isReg()) {
216 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
217 return 0;
218 }
219 unsigned Reg = getARMRegisterNumbering(MO.getReg());
220 int32_t Imm8 = MO1.getImm();
221 uint32_t Binary;
222 Binary = Imm8 & 0xff;
223 if (Imm8 >= 0)
224 Binary |= (1 << 8);
225 Binary |= (Reg << 9);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000226 return Binary;
227 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000228 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
229 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000230
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000231 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
232 const { return 0; }
233
Shih-wei Liao5170b712010-05-26 00:02:28 +0000234 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000235 /// machine operand requires relocation, record the relocation and return
236 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000237 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000238 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000239
Evan Cheng83b5cf02008-11-05 23:22:34 +0000240 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000241 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000242 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000243
244 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000245 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000246 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000247 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000248 intptr_t ACPV = 0) const;
249 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
250 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
251 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000252 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000253 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000254 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000255}
256
Chris Lattner33fabd72010-02-02 21:48:51 +0000257char ARMCodeEmitter::ID = 0;
258
Bob Wilson87949d42010-03-17 21:16:45 +0000259/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000260/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000261FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
262 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000263 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000264}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000265
Chris Lattner33fabd72010-02-02 21:48:51 +0000266bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000267 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
268 MF.getTarget().getRelocationModel() != Reloc::Static) &&
269 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000270 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
271 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
272 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000273 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000274 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000275 MJTEs = 0;
276 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000277 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000278 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000279 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000280 MMI = &getAnalysis<MachineModuleInfo>();
281 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000282
283 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000284 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000285 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000286 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000287 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000288 MBB != E; ++MBB) {
289 MCE.StartMachineBasicBlock(MBB);
290 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
291 I != E; ++I)
292 emitInstruction(*I);
293 }
294 } while (MCE.finishFunction(MF));
295
296 return false;
297}
298
Evan Cheng83b5cf02008-11-05 23:22:34 +0000299/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000300///
Chris Lattner33fabd72010-02-02 21:48:51 +0000301unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000302 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000303 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000304 case ARM_AM::asr: return 2;
305 case ARM_AM::lsl: return 0;
306 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000307 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000308 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000309 }
Evan Cheng7602e112008-09-02 06:52:38 +0000310 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000311}
312
Shih-wei Liao5170b712010-05-26 00:02:28 +0000313/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000314/// machine operand requires relocation, record the relocation and return zero.
315unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000316 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000317 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000318 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000319 && "Relocation to this function should be for movt or movw");
320
321 if (MO.isImm())
322 return static_cast<unsigned>(MO.getImm());
323 else if (MO.isGlobal())
324 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
325 else if (MO.isSymbol())
326 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
327 else if (MO.isMBB())
328 emitMachineBasicBlock(MO.getMBB(), Reloc);
329 else {
330#ifndef NDEBUG
331 errs() << MO;
332#endif
333 llvm_unreachable("Unsupported operand type for movw/movt");
334 }
335 return 0;
336}
337
Evan Cheng7602e112008-09-02 06:52:38 +0000338/// getMachineOpValue - Return binary encoding of operand. If the machine
339/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000340unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000341 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000342 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000343 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000344 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000345 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000346 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000347 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000348 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000349 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000350 else if (MO.isCPI()) {
351 const TargetInstrDesc &TID = MI.getDesc();
352 // For VFP load, the immediate offset is multiplied by 4.
353 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
354 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
355 emitConstPoolAddress(MO.getIndex(), Reloc);
356 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000357 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000358 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000359 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000360 else {
Torok Edwindac237e2009-07-08 20:53:28 +0000361#ifndef NDEBUG
Chris Lattner705e07f2009-08-23 03:41:05 +0000362 errs() << MO;
Torok Edwindac237e2009-07-08 20:53:28 +0000363#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000364 llvm_unreachable(0);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000365 }
Evan Cheng7602e112008-09-02 06:52:38 +0000366 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000367}
368
Evan Cheng057d0c32008-09-18 07:28:19 +0000369/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000370///
Dan Gohman46510a72010-04-15 01:51:59 +0000371void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000372 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000373 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000374 MachineRelocation MR = Indirect
375 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000376 const_cast<GlobalValue *>(GV),
377 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000378 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000379 const_cast<GlobalValue *>(GV), ACPV,
380 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000381 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000382}
383
384/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
385/// be emitted to the current location in the function, and allow it to be PC
386/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000387void ARMCodeEmitter::
388emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000389 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
390 Reloc, ES));
391}
392
393/// emitConstPoolAddress - Arrange for the address of an constant pool
394/// to be emitted to the current location in the function, and allow it to be PC
395/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000396void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000397 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000398 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000399 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000400}
401
402/// emitJumpTableAddress - Arrange for the address of a jump table to
403/// be emitted to the current location in the function, and allow it to be PC
404/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000405void ARMCodeEmitter::
406emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000407 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000408 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000409}
410
Raul Herbster9c1a3822007-08-30 23:29:26 +0000411/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000412void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000413 unsigned Reloc,
414 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000415 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000416 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000417}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000418
Chris Lattner33fabd72010-02-02 21:48:51 +0000419void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000420 DEBUG(errs() << " 0x";
421 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000422 MCE.emitWordLE(Binary);
423}
424
Chris Lattner33fabd72010-02-02 21:48:51 +0000425void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000426 DEBUG(errs() << " 0x";
427 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000428 MCE.emitDWordLE(Binary);
429}
430
Chris Lattner33fabd72010-02-02 21:48:51 +0000431void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000432 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000433
Devang Patelaf0e2722009-10-06 02:19:11 +0000434 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000435
Dan Gohmanfe601042010-06-22 15:08:57 +0000436 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000437 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000438 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000439 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000440 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000441 }
Evan Chengedda31c2008-11-05 18:35:52 +0000442 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000443 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000444 break;
445 case ARMII::DPFrm:
446 case ARMII::DPSoRegFrm:
447 emitDataProcessingInstruction(MI);
448 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000449 case ARMII::LdFrm:
450 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000451 emitLoadStoreInstruction(MI);
452 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000453 case ARMII::LdMiscFrm:
454 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000455 emitMiscLoadStoreInstruction(MI);
456 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000457 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000458 emitLoadStoreMultipleInstruction(MI);
459 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000460 case ARMII::MulFrm:
461 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000462 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000463 case ARMII::ExtFrm:
464 emitExtendInstruction(MI);
465 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000466 case ARMII::ArithMiscFrm:
467 emitMiscArithInstruction(MI);
468 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000469 case ARMII::SatFrm:
470 emitSaturateInstruction(MI);
471 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000472 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000473 emitBranchInstruction(MI);
474 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000475 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000476 emitMiscBranchInstruction(MI);
477 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000478 // VFP instructions.
479 case ARMII::VFPUnaryFrm:
480 case ARMII::VFPBinaryFrm:
481 emitVFPArithInstruction(MI);
482 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000483 case ARMII::VFPConv1Frm:
484 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000485 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000486 case ARMII::VFPConv4Frm:
487 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000488 emitVFPConversionInstruction(MI);
489 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000490 case ARMII::VFPLdStFrm:
491 emitVFPLoadStoreInstruction(MI);
492 break;
493 case ARMII::VFPLdStMulFrm:
494 emitVFPLoadStoreMultipleInstruction(MI);
495 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000496
Bob Wilson1a913ed2010-06-11 21:34:50 +0000497 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000498 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000499 case ARMII::NSetLnFrm:
500 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000501 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000502 case ARMII::NDupFrm:
503 emitNEONDupInstruction(MI);
504 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000505 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000506 emitNEON1RegModImmInstruction(MI);
507 break;
508 case ARMII::N2RegFrm:
509 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000510 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000511 case ARMII::N3RegFrm:
512 emitNEON3RegInstruction(MI);
513 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000514 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000515 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000516}
517
Chris Lattner33fabd72010-02-02 21:48:51 +0000518void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000519 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
520 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000521 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000522
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000523 // Remember the CONSTPOOL_ENTRY address for later relocation.
524 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
525
526 // Emit constpool island entry. In most cases, the actual values will be
527 // resolved and relocated after code emission.
528 if (MCPE.isMachineConstantPoolEntry()) {
529 ARMConstantPoolValue *ACPV =
530 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
531
Chris Lattner705e07f2009-08-23 03:41:05 +0000532 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
533 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000534
Bob Wilson28989a82009-11-02 16:59:06 +0000535 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000536 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000537 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000538 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000539 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000540 isa<Function>(GV),
541 Subtarget->GVIsIndirectSymbol(GV, RelocM),
542 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000543 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000544 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
545 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000546 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000547 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000548 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000549
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000550 DEBUG({
551 errs() << " ** Constant pool #" << CPI << " @ "
552 << (void*)MCE.getCurrentPCValue() << " ";
553 if (const Function *F = dyn_cast<Function>(CV))
554 errs() << F->getName();
555 else
556 errs() << *CV;
557 errs() << '\n';
558 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000559
Dan Gohman46510a72010-04-15 01:51:59 +0000560 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000561 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000562 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000563 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000564 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000565 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000566 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000567 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000568 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000569 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000570 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
571 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000572 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000573 }
574 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000575 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000576 }
577 }
578}
579
Zonr Changf86399b2010-05-25 08:42:45 +0000580void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
581 const MachineOperand &MO0 = MI.getOperand(0);
582 const MachineOperand &MO1 = MI.getOperand(1);
583
584 // Emit the 'movw' instruction.
585 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
586
587 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
588
589 // Set the conditional execution predicate.
590 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
591
592 // Encode Rd.
593 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
594
595 // Encode imm16 as imm4:imm12
596 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
597 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
598 emitWordLE(Binary);
599
600 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
601 // Emit the 'movt' instruction.
602 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
603
604 // Set the conditional execution predicate.
605 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
606
607 // Encode Rd.
608 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
609
610 // Encode imm16 as imm4:imm1, same as movw above.
611 Binary |= Hi16 & 0xFFF;
612 Binary |= ((Hi16 >> 12) & 0xF) << 16;
613 emitWordLE(Binary);
614}
615
Chris Lattner33fabd72010-02-02 21:48:51 +0000616void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000617 const MachineOperand &MO0 = MI.getOperand(0);
618 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000619 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
620 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000621 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
622 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
623
624 // Emit the 'mov' instruction.
625 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
626
627 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000628 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000629
630 // Encode Rd.
631 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
632
633 // Encode so_imm.
634 // Set bit I(25) to identify this is the immediate form of <shifter_op>
635 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000636 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000637 emitWordLE(Binary);
638
639 // Now the 'orr' instruction.
640 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
641
642 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000643 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000644
645 // Encode Rd.
646 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
647
648 // Encode Rn.
649 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
650
651 // Encode so_imm.
652 // Set bit I(25) to identify this is the immediate form of <shifter_op>
653 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000654 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000655 emitWordLE(Binary);
656}
657
Chris Lattner33fabd72010-02-02 21:48:51 +0000658void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000659 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000660
Evan Cheng4df60f52008-11-07 09:06:08 +0000661 const TargetInstrDesc &TID = MI.getDesc();
662
663 // Emit the 'add' instruction.
664 unsigned Binary = 0x4 << 21; // add: Insts{24-31} = 0b0100
665
666 // Set the conditional execution predicate
667 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
668
669 // Encode S bit if MI modifies CPSR.
670 Binary |= getAddrModeSBit(MI, TID);
671
672 // Encode Rd.
673 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
674
675 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000676 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000677
678 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000679 Binary |= 1 << ARMII::I_BitShift;
680 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
681
682 emitWordLE(Binary);
683}
684
Chris Lattner33fabd72010-02-02 21:48:51 +0000685void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000686 unsigned Opcode = MI.getDesc().Opcode;
687
688 // Part of binary is determined by TableGn.
689 unsigned Binary = getBinaryCodeForInstr(MI);
690
691 // Set the conditional execution predicate
692 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
693
694 // Encode S bit if MI modifies CPSR.
695 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
696 Binary |= 1 << ARMII::S_BitShift;
697
698 // Encode register def if there is one.
699 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
700
701 // Encode the shift operation.
702 switch (Opcode) {
703 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000704 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000705 // rrx
706 Binary |= 0x6 << 4;
707 break;
708 case ARM::MOVsrl_flag:
709 // lsr #1
710 Binary |= (0x2 << 4) | (1 << 7);
711 break;
712 case ARM::MOVsra_flag:
713 // asr #1
714 Binary |= (0x4 << 4) | (1 << 7);
715 break;
716 }
717
718 // Encode register Rm.
719 Binary |= getMachineOpValue(MI, 1);
720
721 emitWordLE(Binary);
722}
723
Chris Lattner33fabd72010-02-02 21:48:51 +0000724void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000725 DEBUG(errs() << " ** LPC" << LabelID << " @ "
726 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000727 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
728}
729
Chris Lattner33fabd72010-02-02 21:48:51 +0000730void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000731 unsigned Opcode = MI.getDesc().Opcode;
732 switch (Opcode) {
733 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000734 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000735 case ARM::BX:
736 case ARM::BMOVPCRX:
737 case ARM::BXr9:
738 case ARM::BMOVPCRXr9: {
739 // First emit mov lr, pc
740 unsigned Binary = 0x01a0e00f;
741 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
742 emitWordLE(Binary);
743
744 // and then emit the branch.
745 emitMiscBranchInstruction(MI);
746 break;
747 }
Chris Lattner518bb532010-02-09 19:54:29 +0000748 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000749 // We allow inline assembler nodes with empty bodies - they can
750 // implicitly define registers, which is ok for JIT.
751 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000752 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000753 }
Evan Chengffa6d962008-11-13 23:36:57 +0000754 break;
755 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000756 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000757 case TargetOpcode::EH_LABEL:
758 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
759 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000760 case TargetOpcode::IMPLICIT_DEF:
761 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000762 // Do nothing.
763 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000764 case ARM::CONSTPOOL_ENTRY:
765 emitConstPoolInstruction(MI);
766 break;
767 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000768 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000769 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000770 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000771 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000772 break;
773 }
774 case ARM::PICLDR:
775 case ARM::PICLDRB:
776 case ARM::PICSTR:
777 case ARM::PICSTRB: {
778 // Remember of the address of the PC label for relocation later.
779 addPCLabel(MI.getOperand(2).getImm());
780 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000781 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000782 break;
783 }
784 case ARM::PICLDRH:
785 case ARM::PICLDRSH:
786 case ARM::PICLDRSB:
787 case ARM::PICSTRH: {
788 // Remember of the address of the PC label for relocation later.
789 addPCLabel(MI.getOperand(2).getImm());
790 // These are just load / store instructions that implicitly read pc.
791 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000792 break;
793 }
Zonr Changf86399b2010-05-25 08:42:45 +0000794
795 case ARM::MOVi32imm:
796 emitMOVi32immInstruction(MI);
797 break;
798
Evan Cheng90922132008-11-06 02:25:39 +0000799 case ARM::MOVi2pieces:
800 // Two instructions to materialize a constant.
801 emitMOVi2piecesInstruction(MI);
802 break;
Evan Cheng4df60f52008-11-07 09:06:08 +0000803 case ARM::LEApcrelJT:
804 // Materialize jumptable address.
805 emitLEApcrelJTInstruction(MI);
806 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000807 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000808 case ARM::MOVsrl_flag:
809 case ARM::MOVsra_flag:
810 emitPseudoMoveInstruction(MI);
811 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000812 }
813}
814
Bob Wilson87949d42010-03-17 21:16:45 +0000815unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000816 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000817 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000818 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000819 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000820
821 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
822 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
823 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
824
825 // Encode the shift opcode.
826 unsigned SBits = 0;
827 unsigned Rs = MO1.getReg();
828 if (Rs) {
829 // Set shift operand (bit[7:4]).
830 // LSL - 0001
831 // LSR - 0011
832 // ASR - 0101
833 // ROR - 0111
834 // RRX - 0110 and bit[11:8] clear.
835 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000836 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000837 case ARM_AM::lsl: SBits = 0x1; break;
838 case ARM_AM::lsr: SBits = 0x3; break;
839 case ARM_AM::asr: SBits = 0x5; break;
840 case ARM_AM::ror: SBits = 0x7; break;
841 case ARM_AM::rrx: SBits = 0x6; break;
842 }
843 } else {
844 // Set shift operand (bit[6:4]).
845 // LSL - 000
846 // LSR - 010
847 // ASR - 100
848 // ROR - 110
849 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000850 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000851 case ARM_AM::lsl: SBits = 0x0; break;
852 case ARM_AM::lsr: SBits = 0x2; break;
853 case ARM_AM::asr: SBits = 0x4; break;
854 case ARM_AM::ror: SBits = 0x6; break;
855 }
856 }
857 Binary |= SBits << 4;
858 if (SOpc == ARM_AM::rrx)
859 return Binary;
860
861 // Encode the shift operation Rs or shift_imm (except rrx).
862 if (Rs) {
863 // Encode Rs bit[11:8].
864 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000865 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000866 }
867
868 // Encode shift_imm bit[11:7].
869 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
870}
871
Chris Lattner33fabd72010-02-02 21:48:51 +0000872unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000873 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
874 assert(SoImmVal != -1 && "Not a valid so_imm value!");
875
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000876 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000877 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000878 << ARMII::SoRotImmShift;
879
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000880 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000881 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000882 return Binary;
883}
884
Chris Lattner33fabd72010-02-02 21:48:51 +0000885unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000886 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000887 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000888 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000889 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000890 return 1 << ARMII::S_BitShift;
891 }
892 return 0;
893}
894
Bob Wilson87949d42010-03-17 21:16:45 +0000895void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000896 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000897 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000898 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000899
900 // Part of binary is determined by TableGn.
901 unsigned Binary = getBinaryCodeForInstr(MI);
902
Jim Grosbach33412622008-10-07 19:05:35 +0000903 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000904 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000905
Evan Cheng49a9f292008-09-12 22:45:55 +0000906 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000907 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000908
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000909 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000910 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000911 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000912 if (NumDefs)
913 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
914 else if (ImplicitRd)
915 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000916 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000917
Zonr Changf86399b2010-05-25 08:42:45 +0000918 if (TID.Opcode == ARM::MOVi16) {
919 // Get immediate from MI.
920 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
921 ARM::reloc_arm_movw);
922 // Encode imm which is the same as in emitMOVi32immInstruction().
923 Binary |= Lo16 & 0xFFF;
924 Binary |= ((Lo16 >> 12) & 0xF) << 16;
925 emitWordLE(Binary);
926 return;
927 } else if(TID.Opcode == ARM::MOVTi16) {
928 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
929 ARM::reloc_arm_movt) >> 16);
930 Binary |= Hi16 & 0xFFF;
931 Binary |= ((Hi16 >> 12) & 0xF) << 16;
932 emitWordLE(Binary);
933 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +0000934 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000935 uint32_t v = ~MI.getOperand(2).getImm();
936 int32_t lsb = CountTrailingZeros_32(v);
937 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000938 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000939 Binary |= (msb & 0x1F) << 16;
940 Binary |= (lsb & 0x1F) << 7;
941 emitWordLE(Binary);
942 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000943 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
944 // Encode Rn in Instr{0-3}
945 Binary |= getMachineOpValue(MI, OpIdx++);
946
947 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
948 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
949
950 // Instr{20-16} = widthm1, Instr{11-7} = lsb
951 Binary |= (widthm1 & 0x1F) << 16;
952 Binary |= (lsb & 0x1F) << 7;
953 emitWordLE(Binary);
954 return;
Zonr Changf86399b2010-05-25 08:42:45 +0000955 }
956
Evan Chengd87293c2008-11-06 08:47:38 +0000957 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
958 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
959 ++OpIdx;
960
Jim Grosbachefd30ba2008-10-01 18:16:49 +0000961 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +0000962 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
963 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000964 if (ImplicitRn)
965 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000966 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000967 else {
968 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
969 ++OpIdx;
970 }
Evan Cheng7602e112008-09-02 06:52:38 +0000971 }
972
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000973 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000974 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +0000975 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000976 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000977 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +0000978 return;
979 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000980
Evan Chengedda31c2008-11-05 18:35:52 +0000981 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000982 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000983 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +0000984 return;
985 }
Evan Cheng7602e112008-09-02 06:52:38 +0000986
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000987 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000988 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +0000989
Evan Cheng83b5cf02008-11-05 23:22:34 +0000990 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +0000991}
992
Bob Wilson87949d42010-03-17 21:16:45 +0000993void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000994 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000995 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +0000996 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +0000997 unsigned Form = TID.TSFlags & ARMII::FormMask;
998 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +0000999
Evan Chengedda31c2008-11-05 18:35:52 +00001000 // Part of binary is determined by TableGn.
1001 unsigned Binary = getBinaryCodeForInstr(MI);
1002
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001003 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
1004 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
1005 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +00001006 emitWordLE(Binary);
1007 return;
1008 }
1009
Jim Grosbach33412622008-10-07 19:05:35 +00001010 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001011 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001012
Evan Cheng4df60f52008-11-07 09:06:08 +00001013 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001014
1015 // Operand 0 of a pre- and post-indexed store is the address base
1016 // writeback. Skip it.
1017 bool Skipped = false;
1018 if (IsPrePost && Form == ARMII::StFrm) {
1019 ++OpIdx;
1020 Skipped = true;
1021 }
1022
1023 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001024 if (ImplicitRd)
1025 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001026 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001027 else
1028 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001029
1030 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001031 if (ImplicitRn)
1032 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001033 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001034 else
1035 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001036
Evan Cheng05c356e2008-11-08 01:44:13 +00001037 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001038 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001039 ++OpIdx;
1040
Evan Cheng83b5cf02008-11-05 23:22:34 +00001041 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001042 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001043 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001044
Evan Chenge7de7e32008-09-13 01:44:01 +00001045 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001046 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001047 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001048 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001049 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001050 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001051 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1052 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001053 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001054 }
1055
Bill Wendling7d31a162010-10-20 22:44:54 +00001056 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001057 Binary |= 1 << ARMII::I_BitShift;
1058 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1059 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001060 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001061
Evan Cheng70632912008-11-12 07:34:37 +00001062 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001063 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001064 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001065 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1066 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001067 }
1068
Evan Cheng83b5cf02008-11-05 23:22:34 +00001069 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001070}
1071
Chris Lattner33fabd72010-02-02 21:48:51 +00001072void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001073 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001074 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001075 unsigned Form = TID.TSFlags & ARMII::FormMask;
1076 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001077
Evan Chengedda31c2008-11-05 18:35:52 +00001078 // Part of binary is determined by TableGn.
1079 unsigned Binary = getBinaryCodeForInstr(MI);
1080
Jim Grosbach33412622008-10-07 19:05:35 +00001081 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001082 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001083
Evan Cheng148cad82008-11-13 07:34:59 +00001084 unsigned OpIdx = 0;
1085
1086 // Operand 0 of a pre- and post-indexed store is the address base
1087 // writeback. Skip it.
1088 bool Skipped = false;
1089 if (IsPrePost && Form == ARMII::StMiscFrm) {
1090 ++OpIdx;
1091 Skipped = true;
1092 }
1093
Evan Cheng7602e112008-09-02 06:52:38 +00001094 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001095 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001096
Evan Cheng358dec52009-06-15 08:28:29 +00001097 // Skip LDRD and STRD's second operand.
1098 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1099 ++OpIdx;
1100
Evan Cheng7602e112008-09-02 06:52:38 +00001101 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001102 if (ImplicitRn)
1103 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001104 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001105 else
1106 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001107
Evan Cheng05c356e2008-11-08 01:44:13 +00001108 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001109 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001110 ++OpIdx;
1111
Evan Cheng83b5cf02008-11-05 23:22:34 +00001112 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001113 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001114 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001115
Evan Chenge7de7e32008-09-13 01:44:01 +00001116 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001117 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001118 ARMII::U_BitShift);
1119
1120 // If this instr is in register offset/index encoding, set bit[3:0]
1121 // to the corresponding Rm register.
1122 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001123 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001124 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001125 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001126 }
1127
Evan Chengd87293c2008-11-06 08:47:38 +00001128 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001129 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001130 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001131 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001132 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1133 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001134 }
1135
Evan Cheng83b5cf02008-11-05 23:22:34 +00001136 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001137}
1138
Evan Chengcd8e66a2008-11-11 21:48:44 +00001139static unsigned getAddrModeUPBits(unsigned Mode) {
1140 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001141
1142 // Set addressing mode by modifying bits U(23) and P(24)
1143 // IA - Increment after - bit U = 1 and bit P = 0
1144 // IB - Increment before - bit U = 1 and bit P = 1
1145 // DA - Decrement after - bit U = 0 and bit P = 0
1146 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001147 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001148 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001149 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001150 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1151 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1152 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001153 }
1154
Evan Chengcd8e66a2008-11-11 21:48:44 +00001155 return Binary;
1156}
1157
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001158void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1159 const TargetInstrDesc &TID = MI.getDesc();
1160 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1161
Evan Chengcd8e66a2008-11-11 21:48:44 +00001162 // Part of binary is determined by TableGn.
1163 unsigned Binary = getBinaryCodeForInstr(MI);
1164
1165 // Set the conditional execution predicate
1166 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1167
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001168 // Skip operand 0 of an instruction with base register update.
1169 unsigned OpIdx = 0;
1170 if (IsUpdating)
1171 ++OpIdx;
1172
Evan Chengcd8e66a2008-11-11 21:48:44 +00001173 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001174 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001175
1176 // Set addressing mode by modifying bits U(23) and P(24)
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001177 const MachineOperand &MO = MI.getOperand(OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001178 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
1179
Evan Cheng7602e112008-09-02 06:52:38 +00001180 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001181 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001182 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001183
1184 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001185 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001186 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001187 if (!MO.isReg() || MO.isImplicit())
1188 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001189 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001190 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1191 RegNum < 16);
1192 Binary |= 0x1 << RegNum;
1193 }
1194
Evan Cheng83b5cf02008-11-05 23:22:34 +00001195 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001196}
1197
Chris Lattner33fabd72010-02-02 21:48:51 +00001198void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001199 const TargetInstrDesc &TID = MI.getDesc();
1200
1201 // Part of binary is determined by TableGn.
1202 unsigned Binary = getBinaryCodeForInstr(MI);
1203
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001204 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001205 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001206
1207 // Encode S bit if MI modifies CPSR.
1208 Binary |= getAddrModeSBit(MI, TID);
1209
1210 // 32x32->64bit operations have two destination registers. The number
1211 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001212 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001213 if (TID.getNumDefs() == 2)
1214 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1215
1216 // Encode Rd
1217 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1218
1219 // Encode Rm
1220 Binary |= getMachineOpValue(MI, OpIdx++);
1221
1222 // Encode Rs
1223 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1224
Evan Chengfbc9d412008-11-06 01:21:28 +00001225 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1226 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001227 if (TID.getNumOperands() > OpIdx &&
1228 !TID.OpInfo[OpIdx].isPredicate() &&
1229 !TID.OpInfo[OpIdx].isOptionalDef())
1230 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1231
1232 emitWordLE(Binary);
1233}
1234
Chris Lattner33fabd72010-02-02 21:48:51 +00001235void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001236 const TargetInstrDesc &TID = MI.getDesc();
1237
1238 // Part of binary is determined by TableGn.
1239 unsigned Binary = getBinaryCodeForInstr(MI);
1240
1241 // Set the conditional execution predicate
1242 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1243
1244 unsigned OpIdx = 0;
1245
1246 // Encode Rd
1247 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1248
1249 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1250 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1251 if (MO2.isReg()) {
1252 // Two register operand form.
1253 // Encode Rn.
1254 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1255
1256 // Encode Rm.
1257 Binary |= getMachineOpValue(MI, MO2);
1258 ++OpIdx;
1259 } else {
1260 Binary |= getMachineOpValue(MI, MO1);
1261 }
1262
1263 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1264 if (MI.getOperand(OpIdx).isImm() &&
1265 !TID.OpInfo[OpIdx].isPredicate() &&
1266 !TID.OpInfo[OpIdx].isOptionalDef())
1267 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001268
Evan Cheng83b5cf02008-11-05 23:22:34 +00001269 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001270}
1271
Chris Lattner33fabd72010-02-02 21:48:51 +00001272void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001273 const TargetInstrDesc &TID = MI.getDesc();
1274
1275 // Part of binary is determined by TableGn.
1276 unsigned Binary = getBinaryCodeForInstr(MI);
1277
1278 // Set the conditional execution predicate
1279 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1280
1281 unsigned OpIdx = 0;
1282
1283 // Encode Rd
1284 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1285
1286 const MachineOperand &MO = MI.getOperand(OpIdx++);
1287 if (OpIdx == TID.getNumOperands() ||
1288 TID.OpInfo[OpIdx].isPredicate() ||
1289 TID.OpInfo[OpIdx].isOptionalDef()) {
1290 // Encode Rm and it's done.
1291 Binary |= getMachineOpValue(MI, MO);
1292 emitWordLE(Binary);
1293 return;
1294 }
1295
1296 // Encode Rn.
1297 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1298
1299 // Encode Rm.
1300 Binary |= getMachineOpValue(MI, OpIdx++);
1301
1302 // Encode shift_imm.
1303 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001304 if (TID.Opcode == ARM::PKHTB) {
1305 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1306 if (ShiftAmt == 32)
1307 ShiftAmt = 0;
1308 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001309 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1310 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001311
Evan Cheng8b59db32008-11-07 01:41:35 +00001312 emitWordLE(Binary);
1313}
1314
Bob Wilson9a1c1892010-08-11 00:01:18 +00001315void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1316 const TargetInstrDesc &TID = MI.getDesc();
1317
1318 // Part of binary is determined by TableGen.
1319 unsigned Binary = getBinaryCodeForInstr(MI);
1320
1321 // Set the conditional execution predicate
1322 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1323
1324 // Encode Rd
1325 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1326
1327 // Encode saturate bit position.
1328 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001329 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001330 Pos -= 1;
1331 assert((Pos < 16 || (Pos < 32 &&
1332 TID.Opcode != ARM::SSAT16 &&
1333 TID.Opcode != ARM::USAT16)) &&
1334 "saturate bit position out of range");
1335 Binary |= Pos << 16;
1336
1337 // Encode Rm
1338 Binary |= getMachineOpValue(MI, 2);
1339
1340 // Encode shift_imm.
1341 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001342 unsigned ShiftOp = MI.getOperand(3).getImm();
1343 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1344 if (Opc == ARM_AM::asr)
1345 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001346 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001347 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001348 ShiftAmt = 0;
1349 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1350 Binary |= ShiftAmt << ARMII::ShiftShift;
1351 }
1352
1353 emitWordLE(Binary);
1354}
1355
Chris Lattner33fabd72010-02-02 21:48:51 +00001356void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001357 const TargetInstrDesc &TID = MI.getDesc();
1358
Torok Edwindac237e2009-07-08 20:53:28 +00001359 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001360 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001361 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001362
Evan Cheng7602e112008-09-02 06:52:38 +00001363 // Part of binary is determined by TableGn.
1364 unsigned Binary = getBinaryCodeForInstr(MI);
1365
Evan Chengedda31c2008-11-05 18:35:52 +00001366 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001367 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001368
1369 // Set signed_immed_24 field
1370 Binary |= getMachineOpValue(MI, 0);
1371
Evan Cheng83b5cf02008-11-05 23:22:34 +00001372 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001373}
1374
Chris Lattner33fabd72010-02-02 21:48:51 +00001375void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001376 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001377 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001378 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001379 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1380 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001381
1382 // Now emit the jump table entries.
1383 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1384 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1385 if (IsPIC)
1386 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001387 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001388 else
1389 // Absolute DestBB address.
1390 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1391 emitWordLE(0);
1392 }
1393}
1394
Chris Lattner33fabd72010-02-02 21:48:51 +00001395void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001396 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001397
Evan Cheng437c1732008-11-07 22:30:53 +00001398 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001399 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001400 // First emit a ldr pc, [] instruction.
1401 emitDataProcessingInstruction(MI, ARM::PC);
1402
1403 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001404 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001405 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001406 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1407 emitInlineJumpTable(JTIndex);
1408 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001409 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001410 // First emit a ldr pc, [] instruction.
1411 emitLoadStoreInstruction(MI, ARM::PC);
1412
1413 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001414 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001415 return;
1416 }
1417
Evan Chengedda31c2008-11-05 18:35:52 +00001418 // Part of binary is determined by TableGn.
1419 unsigned Binary = getBinaryCodeForInstr(MI);
1420
1421 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001422 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001423
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001424 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001425 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001426 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001427 else
Evan Chengedda31c2008-11-05 18:35:52 +00001428 // otherwise, set the return register
1429 Binary |= getMachineOpValue(MI, 0);
1430
Evan Cheng83b5cf02008-11-05 23:22:34 +00001431 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001432}
Evan Cheng7602e112008-09-02 06:52:38 +00001433
Evan Cheng80a11982008-11-12 06:41:41 +00001434static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001435 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001436 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001437 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001438 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001439 if (!isSPVFP)
1440 Binary |= RegD << ARMII::RegRdShift;
1441 else {
1442 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1443 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1444 }
Evan Cheng80a11982008-11-12 06:41:41 +00001445 return Binary;
1446}
Evan Cheng78be83d2008-11-11 19:40:26 +00001447
Evan Cheng80a11982008-11-12 06:41:41 +00001448static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001449 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001450 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001451 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001452 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001453 if (!isSPVFP)
1454 Binary |= RegN << ARMII::RegRnShift;
1455 else {
1456 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1457 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1458 }
Evan Cheng80a11982008-11-12 06:41:41 +00001459 return Binary;
1460}
Evan Chengd06d48d2008-11-12 02:19:38 +00001461
Evan Cheng80a11982008-11-12 06:41:41 +00001462static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1463 unsigned RegM = MI.getOperand(OpIdx).getReg();
1464 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001465 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001466 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001467 if (!isSPVFP)
1468 Binary |= RegM;
1469 else {
1470 Binary |= ((RegM & 0x1E) >> 1);
1471 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001472 }
Evan Cheng80a11982008-11-12 06:41:41 +00001473 return Binary;
1474}
1475
Chris Lattner33fabd72010-02-02 21:48:51 +00001476void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001477 const TargetInstrDesc &TID = MI.getDesc();
1478
1479 // Part of binary is determined by TableGn.
1480 unsigned Binary = getBinaryCodeForInstr(MI);
1481
1482 // Set the conditional execution predicate
1483 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1484
1485 unsigned OpIdx = 0;
1486 assert((Binary & ARMII::D_BitShift) == 0 &&
1487 (Binary & ARMII::N_BitShift) == 0 &&
1488 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1489
1490 // Encode Dd / Sd.
1491 Binary |= encodeVFPRd(MI, OpIdx++);
1492
1493 // If this is a two-address operand, skip it, e.g. FMACD.
1494 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1495 ++OpIdx;
1496
1497 // Encode Dn / Sn.
1498 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001499 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001500
1501 if (OpIdx == TID.getNumOperands() ||
1502 TID.OpInfo[OpIdx].isPredicate() ||
1503 TID.OpInfo[OpIdx].isOptionalDef()) {
1504 // FCMPEZD etc. has only one operand.
1505 emitWordLE(Binary);
1506 return;
1507 }
1508
1509 // Encode Dm / Sm.
1510 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001511
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001512 emitWordLE(Binary);
1513}
1514
Bob Wilson87949d42010-03-17 21:16:45 +00001515void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001516 const TargetInstrDesc &TID = MI.getDesc();
1517 unsigned Form = TID.TSFlags & ARMII::FormMask;
1518
1519 // Part of binary is determined by TableGn.
1520 unsigned Binary = getBinaryCodeForInstr(MI);
1521
1522 // Set the conditional execution predicate
1523 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1524
1525 switch (Form) {
1526 default: break;
1527 case ARMII::VFPConv1Frm:
1528 case ARMII::VFPConv2Frm:
1529 case ARMII::VFPConv3Frm:
1530 // Encode Dd / Sd.
1531 Binary |= encodeVFPRd(MI, 0);
1532 break;
1533 case ARMII::VFPConv4Frm:
1534 // Encode Dn / Sn.
1535 Binary |= encodeVFPRn(MI, 0);
1536 break;
1537 case ARMII::VFPConv5Frm:
1538 // Encode Dm / Sm.
1539 Binary |= encodeVFPRm(MI, 0);
1540 break;
1541 }
1542
1543 switch (Form) {
1544 default: break;
1545 case ARMII::VFPConv1Frm:
1546 // Encode Dm / Sm.
1547 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001548 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001549 case ARMII::VFPConv2Frm:
1550 case ARMII::VFPConv3Frm:
1551 // Encode Dn / Sn.
1552 Binary |= encodeVFPRn(MI, 1);
1553 break;
1554 case ARMII::VFPConv4Frm:
1555 case ARMII::VFPConv5Frm:
1556 // Encode Dd / Sd.
1557 Binary |= encodeVFPRd(MI, 1);
1558 break;
1559 }
1560
1561 if (Form == ARMII::VFPConv5Frm)
1562 // Encode Dn / Sn.
1563 Binary |= encodeVFPRn(MI, 2);
1564 else if (Form == ARMII::VFPConv3Frm)
1565 // Encode Dm / Sm.
1566 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001567
1568 emitWordLE(Binary);
1569}
1570
Chris Lattner33fabd72010-02-02 21:48:51 +00001571void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001572 // Part of binary is determined by TableGn.
1573 unsigned Binary = getBinaryCodeForInstr(MI);
1574
1575 // Set the conditional execution predicate
1576 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1577
1578 unsigned OpIdx = 0;
1579
1580 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001581 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001582
1583 // Encode address base.
1584 const MachineOperand &Base = MI.getOperand(OpIdx++);
1585 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1586
1587 // If there is a non-zero immediate offset, encode it.
1588 if (Base.isReg()) {
1589 const MachineOperand &Offset = MI.getOperand(OpIdx);
1590 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1591 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1592 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001593 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001594 emitWordLE(Binary);
1595 return;
1596 }
1597 }
1598
1599 // If immediate offset is omitted, default to +0.
1600 Binary |= 1 << ARMII::U_BitShift;
1601
1602 emitWordLE(Binary);
1603}
1604
Bob Wilson87949d42010-03-17 21:16:45 +00001605void
1606ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001607 const TargetInstrDesc &TID = MI.getDesc();
1608 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1609
Evan Chengcd8e66a2008-11-11 21:48:44 +00001610 // Part of binary is determined by TableGn.
1611 unsigned Binary = getBinaryCodeForInstr(MI);
1612
1613 // Set the conditional execution predicate
1614 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1615
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001616 // Skip operand 0 of an instruction with base register update.
1617 unsigned OpIdx = 0;
1618 if (IsUpdating)
1619 ++OpIdx;
1620
Evan Chengcd8e66a2008-11-11 21:48:44 +00001621 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001622 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001623
1624 // Set addressing mode by modifying bits U(23) and P(24)
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001625 const MachineOperand &MO = MI.getOperand(OpIdx++);
Bob Wilsond4bfd542010-08-27 23:18:17 +00001626 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001627
1628 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001629 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001630 Binary |= 0x1 << ARMII::W_BitShift;
1631
1632 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001633 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001634
Bob Wilsond4bfd542010-08-27 23:18:17 +00001635 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001636 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001637 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001638 const MachineOperand &MO = MI.getOperand(i);
1639 if (!MO.isReg() || MO.isImplicit())
1640 break;
1641 ++NumRegs;
1642 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001643 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1644 // Otherwise, it will be 0, in the case of 32-bit registers.
1645 if(Binary & 0x100)
1646 Binary |= NumRegs * 2;
1647 else
1648 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001649
1650 emitWordLE(Binary);
1651}
1652
Bob Wilson1a913ed2010-06-11 21:34:50 +00001653static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1654 unsigned RegD = MI.getOperand(OpIdx).getReg();
1655 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001656 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001657 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1658 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1659 return Binary;
1660}
1661
Bob Wilson5e7b6072010-06-25 22:40:46 +00001662static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1663 unsigned RegN = MI.getOperand(OpIdx).getReg();
1664 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001665 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001666 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1667 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1668 return Binary;
1669}
1670
Bob Wilson583a2a02010-06-25 21:17:19 +00001671static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1672 unsigned RegM = MI.getOperand(OpIdx).getReg();
1673 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001674 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001675 Binary |= (RegM & 0xf);
1676 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1677 return Binary;
1678}
1679
Bob Wilsond896a972010-06-28 21:12:19 +00001680/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1681/// data-processing instruction to the corresponding Thumb encoding.
1682static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1683 assert((Binary & 0xfe000000) == 0xf2000000 &&
1684 "not an ARM NEON data-processing instruction");
1685 unsigned UBit = (Binary >> 24) & 1;
1686 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1687}
1688
Bob Wilsond5a563d2010-06-29 17:34:07 +00001689void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001690 unsigned Binary = getBinaryCodeForInstr(MI);
1691
Bob Wilsond5a563d2010-06-29 17:34:07 +00001692 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1693 const TargetInstrDesc &TID = MI.getDesc();
1694 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1695 RegTOpIdx = 0;
1696 RegNOpIdx = 1;
1697 LnOpIdx = 2;
1698 } else { // ARMII::NSetLnFrm
1699 RegTOpIdx = 2;
1700 RegNOpIdx = 0;
1701 LnOpIdx = 3;
1702 }
1703
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001704 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001705 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001706
Bob Wilsond5a563d2010-06-29 17:34:07 +00001707 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001708 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001709 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001710 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001711
1712 unsigned LaneShift;
1713 if ((Binary & (1 << 22)) != 0)
1714 LaneShift = 0; // 8-bit elements
1715 else if ((Binary & (1 << 5)) != 0)
1716 LaneShift = 1; // 16-bit elements
1717 else
1718 LaneShift = 2; // 32-bit elements
1719
Bob Wilsond5a563d2010-06-29 17:34:07 +00001720 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001721 unsigned Opc1 = Lane >> 2;
1722 unsigned Opc2 = Lane & 3;
1723 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1724 Binary |= (Opc1 << 21);
1725 Binary |= (Opc2 << 5);
1726
1727 emitWordLE(Binary);
1728}
1729
Bob Wilson21773e72010-06-29 20:13:29 +00001730void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1731 unsigned Binary = getBinaryCodeForInstr(MI);
1732
1733 // Set the conditional execution predicate
1734 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1735
1736 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001737 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001738 Binary |= (RegT << ARMII::RegRdShift);
1739 Binary |= encodeNEONRn(MI, 0);
1740 emitWordLE(Binary);
1741}
1742
Bob Wilson583a2a02010-06-25 21:17:19 +00001743void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001744 unsigned Binary = getBinaryCodeForInstr(MI);
1745 // Destination register is encoded in Dd.
1746 Binary |= encodeNEONRd(MI, 0);
1747 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1748 unsigned Imm = MI.getOperand(1).getImm();
1749 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001750 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001751 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001752 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001753 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001754 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001755 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001756 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001757 emitWordLE(Binary);
1758}
1759
Bob Wilson583a2a02010-06-25 21:17:19 +00001760void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001761 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001762 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001763 // Destination register is encoded in Dd; source register in Dm.
1764 unsigned OpIdx = 0;
1765 Binary |= encodeNEONRd(MI, OpIdx++);
1766 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1767 ++OpIdx;
1768 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001769 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001770 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001771 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1772 emitWordLE(Binary);
1773}
1774
Bob Wilson5e7b6072010-06-25 22:40:46 +00001775void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1776 const TargetInstrDesc &TID = MI.getDesc();
1777 unsigned Binary = getBinaryCodeForInstr(MI);
1778 // Destination register is encoded in Dd; source registers in Dn and Dm.
1779 unsigned OpIdx = 0;
1780 Binary |= encodeNEONRd(MI, OpIdx++);
1781 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1782 ++OpIdx;
1783 Binary |= encodeNEONRn(MI, OpIdx++);
1784 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1785 ++OpIdx;
1786 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001787 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001788 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001789 // FIXME: This does not handle VMOVDneon or VMOVQ.
1790 emitWordLE(Binary);
1791}
1792
Evan Cheng7602e112008-09-02 06:52:38 +00001793#include "ARMGenCodeEmitter.inc"