blob: 15b3aab5b3acb4c206d400f28589ef6e904e2e9d [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; }
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000180
181 unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
182 const {
183 // {17-13} = reg
184 // {12} = (U)nsigned (add == '1', sub == '0')
185 // {11-0} = imm12
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000186 const MachineOperand &MO = MI.getOperand(Op);
187 const MachineOperand &MO1 = MI.getOperand(Op + 1);
188 if (!MO.isReg()) {
189 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
190 return 0;
Jim Grosbachf31430f2010-10-27 19:55:59 +0000191 }
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000192 unsigned Reg = getARMRegisterNumbering(MO.getReg());
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000193 int32_t Imm12 = MO1.getImm();
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000194 uint32_t Binary;
Bill Wendling92b5a2e2010-11-03 01:49:29 +0000195 Binary = Imm12 & 0xfff;
196 if (Imm12 >= 0)
197 Binary |= (1 << 12);
198 Binary |= (Reg << 13);
199 return Binary;
200 }
201 uint32_t getAddrMode5OpValue(const MachineInstr &MI, unsigned Op) const {
202 // {12-9} = reg
203 // {8} = (U)nsigned (add == '1', sub == '0')
204 // {7-0} = imm12
205 const MachineOperand &MO = MI.getOperand(Op);
206 const MachineOperand &MO1 = MI.getOperand(Op + 1);
207 if (!MO.isReg()) {
208 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
209 return 0;
210 }
211 unsigned Reg = getARMRegisterNumbering(MO.getReg());
212 int32_t Imm8 = MO1.getImm();
213 uint32_t Binary;
214 Binary = Imm8 & 0xff;
215 if (Imm8 >= 0)
216 Binary |= (1 << 8);
217 Binary |= (Reg << 9);
Bill Wendling5df0e0a2010-11-02 22:31:46 +0000218 return Binary;
219 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000220 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
221 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000222
Jim Grosbach6b5252d2010-10-30 00:37:59 +0000223 unsigned getRegisterListOpValue(const MachineInstr &MI, unsigned Op)
224 const { return 0; }
225
Shih-wei Liao5170b712010-05-26 00:02:28 +0000226 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000227 /// machine operand requires relocation, record the relocation and return
228 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000229 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000230 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000231
Evan Cheng83b5cf02008-11-05 23:22:34 +0000232 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000233 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000234 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000235
236 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000237 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000238 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000239 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000240 intptr_t ACPV = 0) const;
241 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
242 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
243 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000244 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000245 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000246 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000247}
248
Chris Lattner33fabd72010-02-02 21:48:51 +0000249char ARMCodeEmitter::ID = 0;
250
Bob Wilson87949d42010-03-17 21:16:45 +0000251/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000252/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000253FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
254 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000255 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000256}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000257
Chris Lattner33fabd72010-02-02 21:48:51 +0000258bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000259 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
260 MF.getTarget().getRelocationModel() != Reloc::Static) &&
261 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000262 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
263 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
264 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000265 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000266 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000267 MJTEs = 0;
268 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000269 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000270 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000271 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000272 MMI = &getAnalysis<MachineModuleInfo>();
273 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000274
275 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000276 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000277 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000278 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000279 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000280 MBB != E; ++MBB) {
281 MCE.StartMachineBasicBlock(MBB);
282 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
283 I != E; ++I)
284 emitInstruction(*I);
285 }
286 } while (MCE.finishFunction(MF));
287
288 return false;
289}
290
Evan Cheng83b5cf02008-11-05 23:22:34 +0000291/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000292///
Chris Lattner33fabd72010-02-02 21:48:51 +0000293unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000294 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000295 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000296 case ARM_AM::asr: return 2;
297 case ARM_AM::lsl: return 0;
298 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000299 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000300 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000301 }
Evan Cheng7602e112008-09-02 06:52:38 +0000302 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000303}
304
Shih-wei Liao5170b712010-05-26 00:02:28 +0000305/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000306/// machine operand requires relocation, record the relocation and return zero.
307unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000308 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000309 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000310 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000311 && "Relocation to this function should be for movt or movw");
312
313 if (MO.isImm())
314 return static_cast<unsigned>(MO.getImm());
315 else if (MO.isGlobal())
316 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
317 else if (MO.isSymbol())
318 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
319 else if (MO.isMBB())
320 emitMachineBasicBlock(MO.getMBB(), Reloc);
321 else {
322#ifndef NDEBUG
323 errs() << MO;
324#endif
325 llvm_unreachable("Unsupported operand type for movw/movt");
326 }
327 return 0;
328}
329
Evan Cheng7602e112008-09-02 06:52:38 +0000330/// getMachineOpValue - Return binary encoding of operand. If the machine
331/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000332unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000333 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000334 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000335 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000336 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000337 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000338 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000339 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000340 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000341 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000342 else if (MO.isCPI()) {
343 const TargetInstrDesc &TID = MI.getDesc();
344 // For VFP load, the immediate offset is multiplied by 4.
345 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
346 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
347 emitConstPoolAddress(MO.getIndex(), Reloc);
348 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000349 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000350 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000351 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000352 else {
Torok Edwindac237e2009-07-08 20:53:28 +0000353#ifndef NDEBUG
Chris Lattner705e07f2009-08-23 03:41:05 +0000354 errs() << MO;
Torok Edwindac237e2009-07-08 20:53:28 +0000355#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000356 llvm_unreachable(0);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000357 }
Evan Cheng7602e112008-09-02 06:52:38 +0000358 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000359}
360
Evan Cheng057d0c32008-09-18 07:28:19 +0000361/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000362///
Dan Gohman46510a72010-04-15 01:51:59 +0000363void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000364 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000365 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000366 MachineRelocation MR = Indirect
367 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000368 const_cast<GlobalValue *>(GV),
369 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000370 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000371 const_cast<GlobalValue *>(GV), ACPV,
372 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000373 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000374}
375
376/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
377/// be emitted to the current location in the function, and allow it to be PC
378/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000379void ARMCodeEmitter::
380emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000381 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
382 Reloc, ES));
383}
384
385/// emitConstPoolAddress - Arrange for the address of an constant pool
386/// to be emitted to the current location in the function, and allow it to be PC
387/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000388void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000389 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000390 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000391 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000392}
393
394/// emitJumpTableAddress - Arrange for the address of a jump table to
395/// be emitted to the current location in the function, and allow it to be PC
396/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000397void ARMCodeEmitter::
398emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000399 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000400 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000401}
402
Raul Herbster9c1a3822007-08-30 23:29:26 +0000403/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000404void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000405 unsigned Reloc,
406 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000407 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000408 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000409}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000410
Chris Lattner33fabd72010-02-02 21:48:51 +0000411void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000412 DEBUG(errs() << " 0x";
413 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000414 MCE.emitWordLE(Binary);
415}
416
Chris Lattner33fabd72010-02-02 21:48:51 +0000417void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000418 DEBUG(errs() << " 0x";
419 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000420 MCE.emitDWordLE(Binary);
421}
422
Chris Lattner33fabd72010-02-02 21:48:51 +0000423void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000424 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000425
Devang Patelaf0e2722009-10-06 02:19:11 +0000426 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000427
Dan Gohmanfe601042010-06-22 15:08:57 +0000428 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000429 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000430 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000431 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000432 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000433 }
Evan Chengedda31c2008-11-05 18:35:52 +0000434 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000435 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000436 break;
437 case ARMII::DPFrm:
438 case ARMII::DPSoRegFrm:
439 emitDataProcessingInstruction(MI);
440 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000441 case ARMII::LdFrm:
442 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000443 emitLoadStoreInstruction(MI);
444 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000445 case ARMII::LdMiscFrm:
446 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000447 emitMiscLoadStoreInstruction(MI);
448 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000449 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000450 emitLoadStoreMultipleInstruction(MI);
451 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000452 case ARMII::MulFrm:
453 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000454 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000455 case ARMII::ExtFrm:
456 emitExtendInstruction(MI);
457 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000458 case ARMII::ArithMiscFrm:
459 emitMiscArithInstruction(MI);
460 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000461 case ARMII::SatFrm:
462 emitSaturateInstruction(MI);
463 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000464 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000465 emitBranchInstruction(MI);
466 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000467 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000468 emitMiscBranchInstruction(MI);
469 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000470 // VFP instructions.
471 case ARMII::VFPUnaryFrm:
472 case ARMII::VFPBinaryFrm:
473 emitVFPArithInstruction(MI);
474 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000475 case ARMII::VFPConv1Frm:
476 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000477 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000478 case ARMII::VFPConv4Frm:
479 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000480 emitVFPConversionInstruction(MI);
481 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000482 case ARMII::VFPLdStFrm:
483 emitVFPLoadStoreInstruction(MI);
484 break;
485 case ARMII::VFPLdStMulFrm:
486 emitVFPLoadStoreMultipleInstruction(MI);
487 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000488
Bob Wilson1a913ed2010-06-11 21:34:50 +0000489 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000490 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000491 case ARMII::NSetLnFrm:
492 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000493 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000494 case ARMII::NDupFrm:
495 emitNEONDupInstruction(MI);
496 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000497 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000498 emitNEON1RegModImmInstruction(MI);
499 break;
500 case ARMII::N2RegFrm:
501 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000502 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000503 case ARMII::N3RegFrm:
504 emitNEON3RegInstruction(MI);
505 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000506 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000507 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000508}
509
Chris Lattner33fabd72010-02-02 21:48:51 +0000510void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000511 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
512 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000513 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000514
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000515 // Remember the CONSTPOOL_ENTRY address for later relocation.
516 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
517
518 // Emit constpool island entry. In most cases, the actual values will be
519 // resolved and relocated after code emission.
520 if (MCPE.isMachineConstantPoolEntry()) {
521 ARMConstantPoolValue *ACPV =
522 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
523
Chris Lattner705e07f2009-08-23 03:41:05 +0000524 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
525 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000526
Bob Wilson28989a82009-11-02 16:59:06 +0000527 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000528 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000529 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000530 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000531 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000532 isa<Function>(GV),
533 Subtarget->GVIsIndirectSymbol(GV, RelocM),
534 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000535 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000536 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
537 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000538 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000539 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000540 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000541
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000542 DEBUG({
543 errs() << " ** Constant pool #" << CPI << " @ "
544 << (void*)MCE.getCurrentPCValue() << " ";
545 if (const Function *F = dyn_cast<Function>(CV))
546 errs() << F->getName();
547 else
548 errs() << *CV;
549 errs() << '\n';
550 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000551
Dan Gohman46510a72010-04-15 01:51:59 +0000552 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000553 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000554 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000555 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000556 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000557 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000558 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000559 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000560 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000561 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000562 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
563 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000564 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000565 }
566 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000567 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000568 }
569 }
570}
571
Zonr Changf86399b2010-05-25 08:42:45 +0000572void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
573 const MachineOperand &MO0 = MI.getOperand(0);
574 const MachineOperand &MO1 = MI.getOperand(1);
575
576 // Emit the 'movw' instruction.
577 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
578
579 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
580
581 // Set the conditional execution predicate.
582 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
583
584 // Encode Rd.
585 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
586
587 // Encode imm16 as imm4:imm12
588 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
589 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
590 emitWordLE(Binary);
591
592 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
593 // Emit the 'movt' instruction.
594 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
595
596 // Set the conditional execution predicate.
597 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
598
599 // Encode Rd.
600 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
601
602 // Encode imm16 as imm4:imm1, same as movw above.
603 Binary |= Hi16 & 0xFFF;
604 Binary |= ((Hi16 >> 12) & 0xF) << 16;
605 emitWordLE(Binary);
606}
607
Chris Lattner33fabd72010-02-02 21:48:51 +0000608void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000609 const MachineOperand &MO0 = MI.getOperand(0);
610 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000611 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
612 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000613 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
614 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
615
616 // Emit the 'mov' instruction.
617 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
618
619 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000620 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000621
622 // Encode Rd.
623 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
624
625 // Encode so_imm.
626 // Set bit I(25) to identify this is the immediate form of <shifter_op>
627 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000628 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000629 emitWordLE(Binary);
630
631 // Now the 'orr' instruction.
632 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
633
634 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000635 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000636
637 // Encode Rd.
638 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
639
640 // Encode Rn.
641 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
642
643 // Encode so_imm.
644 // Set bit I(25) to identify this is the immediate form of <shifter_op>
645 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000646 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000647 emitWordLE(Binary);
648}
649
Chris Lattner33fabd72010-02-02 21:48:51 +0000650void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000651 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000652
Evan Cheng4df60f52008-11-07 09:06:08 +0000653 const TargetInstrDesc &TID = MI.getDesc();
654
655 // Emit the 'add' instruction.
656 unsigned Binary = 0x4 << 21; // add: Insts{24-31} = 0b0100
657
658 // Set the conditional execution predicate
659 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
660
661 // Encode S bit if MI modifies CPSR.
662 Binary |= getAddrModeSBit(MI, TID);
663
664 // Encode Rd.
665 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
666
667 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000668 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000669
670 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000671 Binary |= 1 << ARMII::I_BitShift;
672 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
673
674 emitWordLE(Binary);
675}
676
Chris Lattner33fabd72010-02-02 21:48:51 +0000677void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000678 unsigned Opcode = MI.getDesc().Opcode;
679
680 // Part of binary is determined by TableGn.
681 unsigned Binary = getBinaryCodeForInstr(MI);
682
683 // Set the conditional execution predicate
684 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
685
686 // Encode S bit if MI modifies CPSR.
687 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
688 Binary |= 1 << ARMII::S_BitShift;
689
690 // Encode register def if there is one.
691 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
692
693 // Encode the shift operation.
694 switch (Opcode) {
695 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000696 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000697 // rrx
698 Binary |= 0x6 << 4;
699 break;
700 case ARM::MOVsrl_flag:
701 // lsr #1
702 Binary |= (0x2 << 4) | (1 << 7);
703 break;
704 case ARM::MOVsra_flag:
705 // asr #1
706 Binary |= (0x4 << 4) | (1 << 7);
707 break;
708 }
709
710 // Encode register Rm.
711 Binary |= getMachineOpValue(MI, 1);
712
713 emitWordLE(Binary);
714}
715
Chris Lattner33fabd72010-02-02 21:48:51 +0000716void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000717 DEBUG(errs() << " ** LPC" << LabelID << " @ "
718 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000719 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
720}
721
Chris Lattner33fabd72010-02-02 21:48:51 +0000722void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000723 unsigned Opcode = MI.getDesc().Opcode;
724 switch (Opcode) {
725 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000726 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000727 case ARM::BX:
728 case ARM::BMOVPCRX:
729 case ARM::BXr9:
730 case ARM::BMOVPCRXr9: {
731 // First emit mov lr, pc
732 unsigned Binary = 0x01a0e00f;
733 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
734 emitWordLE(Binary);
735
736 // and then emit the branch.
737 emitMiscBranchInstruction(MI);
738 break;
739 }
Chris Lattner518bb532010-02-09 19:54:29 +0000740 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000741 // We allow inline assembler nodes with empty bodies - they can
742 // implicitly define registers, which is ok for JIT.
743 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000744 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000745 }
Evan Chengffa6d962008-11-13 23:36:57 +0000746 break;
747 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000748 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000749 case TargetOpcode::EH_LABEL:
750 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
751 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000752 case TargetOpcode::IMPLICIT_DEF:
753 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000754 // Do nothing.
755 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000756 case ARM::CONSTPOOL_ENTRY:
757 emitConstPoolInstruction(MI);
758 break;
759 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000760 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000761 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000762 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000763 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000764 break;
765 }
766 case ARM::PICLDR:
767 case ARM::PICLDRB:
768 case ARM::PICSTR:
769 case ARM::PICSTRB: {
770 // Remember of the address of the PC label for relocation later.
771 addPCLabel(MI.getOperand(2).getImm());
772 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000773 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000774 break;
775 }
776 case ARM::PICLDRH:
777 case ARM::PICLDRSH:
778 case ARM::PICLDRSB:
779 case ARM::PICSTRH: {
780 // Remember of the address of the PC label for relocation later.
781 addPCLabel(MI.getOperand(2).getImm());
782 // These are just load / store instructions that implicitly read pc.
783 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000784 break;
785 }
Zonr Changf86399b2010-05-25 08:42:45 +0000786
787 case ARM::MOVi32imm:
788 emitMOVi32immInstruction(MI);
789 break;
790
Evan Cheng90922132008-11-06 02:25:39 +0000791 case ARM::MOVi2pieces:
792 // Two instructions to materialize a constant.
793 emitMOVi2piecesInstruction(MI);
794 break;
Evan Cheng4df60f52008-11-07 09:06:08 +0000795 case ARM::LEApcrelJT:
796 // Materialize jumptable address.
797 emitLEApcrelJTInstruction(MI);
798 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000799 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000800 case ARM::MOVsrl_flag:
801 case ARM::MOVsra_flag:
802 emitPseudoMoveInstruction(MI);
803 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000804 }
805}
806
Bob Wilson87949d42010-03-17 21:16:45 +0000807unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000808 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000809 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000810 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000811 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000812
813 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
814 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
815 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
816
817 // Encode the shift opcode.
818 unsigned SBits = 0;
819 unsigned Rs = MO1.getReg();
820 if (Rs) {
821 // Set shift operand (bit[7:4]).
822 // LSL - 0001
823 // LSR - 0011
824 // ASR - 0101
825 // ROR - 0111
826 // RRX - 0110 and bit[11:8] clear.
827 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000828 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000829 case ARM_AM::lsl: SBits = 0x1; break;
830 case ARM_AM::lsr: SBits = 0x3; break;
831 case ARM_AM::asr: SBits = 0x5; break;
832 case ARM_AM::ror: SBits = 0x7; break;
833 case ARM_AM::rrx: SBits = 0x6; break;
834 }
835 } else {
836 // Set shift operand (bit[6:4]).
837 // LSL - 000
838 // LSR - 010
839 // ASR - 100
840 // ROR - 110
841 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000842 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000843 case ARM_AM::lsl: SBits = 0x0; break;
844 case ARM_AM::lsr: SBits = 0x2; break;
845 case ARM_AM::asr: SBits = 0x4; break;
846 case ARM_AM::ror: SBits = 0x6; break;
847 }
848 }
849 Binary |= SBits << 4;
850 if (SOpc == ARM_AM::rrx)
851 return Binary;
852
853 // Encode the shift operation Rs or shift_imm (except rrx).
854 if (Rs) {
855 // Encode Rs bit[11:8].
856 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000857 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000858 }
859
860 // Encode shift_imm bit[11:7].
861 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
862}
863
Chris Lattner33fabd72010-02-02 21:48:51 +0000864unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000865 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
866 assert(SoImmVal != -1 && "Not a valid so_imm value!");
867
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000868 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000869 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000870 << ARMII::SoRotImmShift;
871
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000872 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000873 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000874 return Binary;
875}
876
Chris Lattner33fabd72010-02-02 21:48:51 +0000877unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000878 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000879 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000880 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000881 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000882 return 1 << ARMII::S_BitShift;
883 }
884 return 0;
885}
886
Bob Wilson87949d42010-03-17 21:16:45 +0000887void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000888 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000889 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000890 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000891
892 // Part of binary is determined by TableGn.
893 unsigned Binary = getBinaryCodeForInstr(MI);
894
Jim Grosbach33412622008-10-07 19:05:35 +0000895 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000896 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000897
Evan Cheng49a9f292008-09-12 22:45:55 +0000898 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000899 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000900
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000901 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000902 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000903 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000904 if (NumDefs)
905 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
906 else if (ImplicitRd)
907 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000908 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000909
Zonr Changf86399b2010-05-25 08:42:45 +0000910 if (TID.Opcode == ARM::MOVi16) {
911 // Get immediate from MI.
912 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
913 ARM::reloc_arm_movw);
914 // Encode imm which is the same as in emitMOVi32immInstruction().
915 Binary |= Lo16 & 0xFFF;
916 Binary |= ((Lo16 >> 12) & 0xF) << 16;
917 emitWordLE(Binary);
918 return;
919 } else if(TID.Opcode == ARM::MOVTi16) {
920 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
921 ARM::reloc_arm_movt) >> 16);
922 Binary |= Hi16 & 0xFFF;
923 Binary |= ((Hi16 >> 12) & 0xF) << 16;
924 emitWordLE(Binary);
925 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +0000926 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000927 uint32_t v = ~MI.getOperand(2).getImm();
928 int32_t lsb = CountTrailingZeros_32(v);
929 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000930 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000931 Binary |= (msb & 0x1F) << 16;
932 Binary |= (lsb & 0x1F) << 7;
933 emitWordLE(Binary);
934 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000935 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
936 // Encode Rn in Instr{0-3}
937 Binary |= getMachineOpValue(MI, OpIdx++);
938
939 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
940 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
941
942 // Instr{20-16} = widthm1, Instr{11-7} = lsb
943 Binary |= (widthm1 & 0x1F) << 16;
944 Binary |= (lsb & 0x1F) << 7;
945 emitWordLE(Binary);
946 return;
Zonr Changf86399b2010-05-25 08:42:45 +0000947 }
948
Evan Chengd87293c2008-11-06 08:47:38 +0000949 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
950 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
951 ++OpIdx;
952
Jim Grosbachefd30ba2008-10-01 18:16:49 +0000953 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +0000954 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
955 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000956 if (ImplicitRn)
957 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000958 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000959 else {
960 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
961 ++OpIdx;
962 }
Evan Cheng7602e112008-09-02 06:52:38 +0000963 }
964
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000965 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000966 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +0000967 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000968 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000969 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +0000970 return;
971 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000972
Evan Chengedda31c2008-11-05 18:35:52 +0000973 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000974 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000975 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +0000976 return;
977 }
Evan Cheng7602e112008-09-02 06:52:38 +0000978
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000979 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000980 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +0000981
Evan Cheng83b5cf02008-11-05 23:22:34 +0000982 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +0000983}
984
Bob Wilson87949d42010-03-17 21:16:45 +0000985void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000986 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000987 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +0000988 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +0000989 unsigned Form = TID.TSFlags & ARMII::FormMask;
990 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +0000991
Evan Chengedda31c2008-11-05 18:35:52 +0000992 // Part of binary is determined by TableGn.
993 unsigned Binary = getBinaryCodeForInstr(MI);
994
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000995 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
996 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
997 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +0000998 emitWordLE(Binary);
999 return;
1000 }
1001
Jim Grosbach33412622008-10-07 19:05:35 +00001002 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001003 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001004
Evan Cheng4df60f52008-11-07 09:06:08 +00001005 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +00001006
1007 // Operand 0 of a pre- and post-indexed store is the address base
1008 // writeback. Skip it.
1009 bool Skipped = false;
1010 if (IsPrePost && Form == ARMII::StFrm) {
1011 ++OpIdx;
1012 Skipped = true;
1013 }
1014
1015 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +00001016 if (ImplicitRd)
1017 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001018 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001019 else
1020 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001021
1022 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001023 if (ImplicitRn)
1024 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001025 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001026 else
1027 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001028
Evan Cheng05c356e2008-11-08 01:44:13 +00001029 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001030 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001031 ++OpIdx;
1032
Evan Cheng83b5cf02008-11-05 23:22:34 +00001033 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001034 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001035 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001036
Evan Chenge7de7e32008-09-13 01:44:01 +00001037 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001038 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001039 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001040 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001041 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001042 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001043 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1044 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001045 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001046 }
1047
Bill Wendling7d31a162010-10-20 22:44:54 +00001048 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001049 Binary |= 1 << ARMII::I_BitShift;
1050 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1051 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001052 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001053
Evan Cheng70632912008-11-12 07:34:37 +00001054 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001055 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001056 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001057 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1058 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001059 }
1060
Evan Cheng83b5cf02008-11-05 23:22:34 +00001061 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001062}
1063
Chris Lattner33fabd72010-02-02 21:48:51 +00001064void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001065 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001066 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001067 unsigned Form = TID.TSFlags & ARMII::FormMask;
1068 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001069
Evan Chengedda31c2008-11-05 18:35:52 +00001070 // Part of binary is determined by TableGn.
1071 unsigned Binary = getBinaryCodeForInstr(MI);
1072
Jim Grosbach33412622008-10-07 19:05:35 +00001073 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001074 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001075
Evan Cheng148cad82008-11-13 07:34:59 +00001076 unsigned OpIdx = 0;
1077
1078 // Operand 0 of a pre- and post-indexed store is the address base
1079 // writeback. Skip it.
1080 bool Skipped = false;
1081 if (IsPrePost && Form == ARMII::StMiscFrm) {
1082 ++OpIdx;
1083 Skipped = true;
1084 }
1085
Evan Cheng7602e112008-09-02 06:52:38 +00001086 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001087 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001088
Evan Cheng358dec52009-06-15 08:28:29 +00001089 // Skip LDRD and STRD's second operand.
1090 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1091 ++OpIdx;
1092
Evan Cheng7602e112008-09-02 06:52:38 +00001093 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001094 if (ImplicitRn)
1095 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001096 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001097 else
1098 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001099
Evan Cheng05c356e2008-11-08 01:44:13 +00001100 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001101 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001102 ++OpIdx;
1103
Evan Cheng83b5cf02008-11-05 23:22:34 +00001104 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001105 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001106 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001107
Evan Chenge7de7e32008-09-13 01:44:01 +00001108 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001109 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001110 ARMII::U_BitShift);
1111
1112 // If this instr is in register offset/index encoding, set bit[3:0]
1113 // to the corresponding Rm register.
1114 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001115 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001116 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001117 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001118 }
1119
Evan Chengd87293c2008-11-06 08:47:38 +00001120 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001121 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001122 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001123 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001124 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1125 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001126 }
1127
Evan Cheng83b5cf02008-11-05 23:22:34 +00001128 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001129}
1130
Evan Chengcd8e66a2008-11-11 21:48:44 +00001131static unsigned getAddrModeUPBits(unsigned Mode) {
1132 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001133
1134 // Set addressing mode by modifying bits U(23) and P(24)
1135 // IA - Increment after - bit U = 1 and bit P = 0
1136 // IB - Increment before - bit U = 1 and bit P = 1
1137 // DA - Decrement after - bit U = 0 and bit P = 0
1138 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001139 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001140 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001141 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001142 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1143 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1144 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001145 }
1146
Evan Chengcd8e66a2008-11-11 21:48:44 +00001147 return Binary;
1148}
1149
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001150void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1151 const TargetInstrDesc &TID = MI.getDesc();
1152 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1153
Evan Chengcd8e66a2008-11-11 21:48:44 +00001154 // Part of binary is determined by TableGn.
1155 unsigned Binary = getBinaryCodeForInstr(MI);
1156
1157 // Set the conditional execution predicate
1158 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1159
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001160 // Skip operand 0 of an instruction with base register update.
1161 unsigned OpIdx = 0;
1162 if (IsUpdating)
1163 ++OpIdx;
1164
Evan Chengcd8e66a2008-11-11 21:48:44 +00001165 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001166 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001167
1168 // Set addressing mode by modifying bits U(23) and P(24)
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001169 const MachineOperand &MO = MI.getOperand(OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001170 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
1171
Evan Cheng7602e112008-09-02 06:52:38 +00001172 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001173 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001174 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001175
1176 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001177 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001178 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001179 if (!MO.isReg() || MO.isImplicit())
1180 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001181 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001182 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1183 RegNum < 16);
1184 Binary |= 0x1 << RegNum;
1185 }
1186
Evan Cheng83b5cf02008-11-05 23:22:34 +00001187 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001188}
1189
Chris Lattner33fabd72010-02-02 21:48:51 +00001190void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001191 const TargetInstrDesc &TID = MI.getDesc();
1192
1193 // Part of binary is determined by TableGn.
1194 unsigned Binary = getBinaryCodeForInstr(MI);
1195
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001196 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001197 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001198
1199 // Encode S bit if MI modifies CPSR.
1200 Binary |= getAddrModeSBit(MI, TID);
1201
1202 // 32x32->64bit operations have two destination registers. The number
1203 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001204 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001205 if (TID.getNumDefs() == 2)
1206 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1207
1208 // Encode Rd
1209 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1210
1211 // Encode Rm
1212 Binary |= getMachineOpValue(MI, OpIdx++);
1213
1214 // Encode Rs
1215 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1216
Evan Chengfbc9d412008-11-06 01:21:28 +00001217 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1218 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001219 if (TID.getNumOperands() > OpIdx &&
1220 !TID.OpInfo[OpIdx].isPredicate() &&
1221 !TID.OpInfo[OpIdx].isOptionalDef())
1222 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1223
1224 emitWordLE(Binary);
1225}
1226
Chris Lattner33fabd72010-02-02 21:48:51 +00001227void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001228 const TargetInstrDesc &TID = MI.getDesc();
1229
1230 // Part of binary is determined by TableGn.
1231 unsigned Binary = getBinaryCodeForInstr(MI);
1232
1233 // Set the conditional execution predicate
1234 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1235
1236 unsigned OpIdx = 0;
1237
1238 // Encode Rd
1239 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1240
1241 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1242 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1243 if (MO2.isReg()) {
1244 // Two register operand form.
1245 // Encode Rn.
1246 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1247
1248 // Encode Rm.
1249 Binary |= getMachineOpValue(MI, MO2);
1250 ++OpIdx;
1251 } else {
1252 Binary |= getMachineOpValue(MI, MO1);
1253 }
1254
1255 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1256 if (MI.getOperand(OpIdx).isImm() &&
1257 !TID.OpInfo[OpIdx].isPredicate() &&
1258 !TID.OpInfo[OpIdx].isOptionalDef())
1259 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001260
Evan Cheng83b5cf02008-11-05 23:22:34 +00001261 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001262}
1263
Chris Lattner33fabd72010-02-02 21:48:51 +00001264void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001265 const TargetInstrDesc &TID = MI.getDesc();
1266
1267 // Part of binary is determined by TableGn.
1268 unsigned Binary = getBinaryCodeForInstr(MI);
1269
1270 // Set the conditional execution predicate
1271 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1272
1273 unsigned OpIdx = 0;
1274
1275 // Encode Rd
1276 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1277
1278 const MachineOperand &MO = MI.getOperand(OpIdx++);
1279 if (OpIdx == TID.getNumOperands() ||
1280 TID.OpInfo[OpIdx].isPredicate() ||
1281 TID.OpInfo[OpIdx].isOptionalDef()) {
1282 // Encode Rm and it's done.
1283 Binary |= getMachineOpValue(MI, MO);
1284 emitWordLE(Binary);
1285 return;
1286 }
1287
1288 // Encode Rn.
1289 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1290
1291 // Encode Rm.
1292 Binary |= getMachineOpValue(MI, OpIdx++);
1293
1294 // Encode shift_imm.
1295 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001296 if (TID.Opcode == ARM::PKHTB) {
1297 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1298 if (ShiftAmt == 32)
1299 ShiftAmt = 0;
1300 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001301 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1302 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001303
Evan Cheng8b59db32008-11-07 01:41:35 +00001304 emitWordLE(Binary);
1305}
1306
Bob Wilson9a1c1892010-08-11 00:01:18 +00001307void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1308 const TargetInstrDesc &TID = MI.getDesc();
1309
1310 // Part of binary is determined by TableGen.
1311 unsigned Binary = getBinaryCodeForInstr(MI);
1312
1313 // Set the conditional execution predicate
1314 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1315
1316 // Encode Rd
1317 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1318
1319 // Encode saturate bit position.
1320 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001321 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001322 Pos -= 1;
1323 assert((Pos < 16 || (Pos < 32 &&
1324 TID.Opcode != ARM::SSAT16 &&
1325 TID.Opcode != ARM::USAT16)) &&
1326 "saturate bit position out of range");
1327 Binary |= Pos << 16;
1328
1329 // Encode Rm
1330 Binary |= getMachineOpValue(MI, 2);
1331
1332 // Encode shift_imm.
1333 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001334 unsigned ShiftOp = MI.getOperand(3).getImm();
1335 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1336 if (Opc == ARM_AM::asr)
1337 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001338 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001339 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001340 ShiftAmt = 0;
1341 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1342 Binary |= ShiftAmt << ARMII::ShiftShift;
1343 }
1344
1345 emitWordLE(Binary);
1346}
1347
Chris Lattner33fabd72010-02-02 21:48:51 +00001348void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001349 const TargetInstrDesc &TID = MI.getDesc();
1350
Torok Edwindac237e2009-07-08 20:53:28 +00001351 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001352 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001353 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001354
Evan Cheng7602e112008-09-02 06:52:38 +00001355 // Part of binary is determined by TableGn.
1356 unsigned Binary = getBinaryCodeForInstr(MI);
1357
Evan Chengedda31c2008-11-05 18:35:52 +00001358 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001359 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001360
1361 // Set signed_immed_24 field
1362 Binary |= getMachineOpValue(MI, 0);
1363
Evan Cheng83b5cf02008-11-05 23:22:34 +00001364 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001365}
1366
Chris Lattner33fabd72010-02-02 21:48:51 +00001367void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001368 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001369 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001370 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001371 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1372 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001373
1374 // Now emit the jump table entries.
1375 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1376 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1377 if (IsPIC)
1378 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001379 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001380 else
1381 // Absolute DestBB address.
1382 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1383 emitWordLE(0);
1384 }
1385}
1386
Chris Lattner33fabd72010-02-02 21:48:51 +00001387void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001388 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001389
Evan Cheng437c1732008-11-07 22:30:53 +00001390 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001391 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001392 // First emit a ldr pc, [] instruction.
1393 emitDataProcessingInstruction(MI, ARM::PC);
1394
1395 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001396 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001397 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001398 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1399 emitInlineJumpTable(JTIndex);
1400 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001401 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001402 // First emit a ldr pc, [] instruction.
1403 emitLoadStoreInstruction(MI, ARM::PC);
1404
1405 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001406 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001407 return;
1408 }
1409
Evan Chengedda31c2008-11-05 18:35:52 +00001410 // Part of binary is determined by TableGn.
1411 unsigned Binary = getBinaryCodeForInstr(MI);
1412
1413 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001414 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001415
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001416 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001417 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001418 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001419 else
Evan Chengedda31c2008-11-05 18:35:52 +00001420 // otherwise, set the return register
1421 Binary |= getMachineOpValue(MI, 0);
1422
Evan Cheng83b5cf02008-11-05 23:22:34 +00001423 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001424}
Evan Cheng7602e112008-09-02 06:52:38 +00001425
Evan Cheng80a11982008-11-12 06:41:41 +00001426static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001427 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001428 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001429 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001430 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001431 if (!isSPVFP)
1432 Binary |= RegD << ARMII::RegRdShift;
1433 else {
1434 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1435 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1436 }
Evan Cheng80a11982008-11-12 06:41:41 +00001437 return Binary;
1438}
Evan Cheng78be83d2008-11-11 19:40:26 +00001439
Evan Cheng80a11982008-11-12 06:41:41 +00001440static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001441 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001442 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001443 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001444 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001445 if (!isSPVFP)
1446 Binary |= RegN << ARMII::RegRnShift;
1447 else {
1448 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1449 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1450 }
Evan Cheng80a11982008-11-12 06:41:41 +00001451 return Binary;
1452}
Evan Chengd06d48d2008-11-12 02:19:38 +00001453
Evan Cheng80a11982008-11-12 06:41:41 +00001454static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1455 unsigned RegM = MI.getOperand(OpIdx).getReg();
1456 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001457 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001458 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001459 if (!isSPVFP)
1460 Binary |= RegM;
1461 else {
1462 Binary |= ((RegM & 0x1E) >> 1);
1463 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001464 }
Evan Cheng80a11982008-11-12 06:41:41 +00001465 return Binary;
1466}
1467
Chris Lattner33fabd72010-02-02 21:48:51 +00001468void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001469 const TargetInstrDesc &TID = MI.getDesc();
1470
1471 // Part of binary is determined by TableGn.
1472 unsigned Binary = getBinaryCodeForInstr(MI);
1473
1474 // Set the conditional execution predicate
1475 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1476
1477 unsigned OpIdx = 0;
1478 assert((Binary & ARMII::D_BitShift) == 0 &&
1479 (Binary & ARMII::N_BitShift) == 0 &&
1480 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1481
1482 // Encode Dd / Sd.
1483 Binary |= encodeVFPRd(MI, OpIdx++);
1484
1485 // If this is a two-address operand, skip it, e.g. FMACD.
1486 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1487 ++OpIdx;
1488
1489 // Encode Dn / Sn.
1490 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001491 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001492
1493 if (OpIdx == TID.getNumOperands() ||
1494 TID.OpInfo[OpIdx].isPredicate() ||
1495 TID.OpInfo[OpIdx].isOptionalDef()) {
1496 // FCMPEZD etc. has only one operand.
1497 emitWordLE(Binary);
1498 return;
1499 }
1500
1501 // Encode Dm / Sm.
1502 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001503
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001504 emitWordLE(Binary);
1505}
1506
Bob Wilson87949d42010-03-17 21:16:45 +00001507void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001508 const TargetInstrDesc &TID = MI.getDesc();
1509 unsigned Form = TID.TSFlags & ARMII::FormMask;
1510
1511 // Part of binary is determined by TableGn.
1512 unsigned Binary = getBinaryCodeForInstr(MI);
1513
1514 // Set the conditional execution predicate
1515 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1516
1517 switch (Form) {
1518 default: break;
1519 case ARMII::VFPConv1Frm:
1520 case ARMII::VFPConv2Frm:
1521 case ARMII::VFPConv3Frm:
1522 // Encode Dd / Sd.
1523 Binary |= encodeVFPRd(MI, 0);
1524 break;
1525 case ARMII::VFPConv4Frm:
1526 // Encode Dn / Sn.
1527 Binary |= encodeVFPRn(MI, 0);
1528 break;
1529 case ARMII::VFPConv5Frm:
1530 // Encode Dm / Sm.
1531 Binary |= encodeVFPRm(MI, 0);
1532 break;
1533 }
1534
1535 switch (Form) {
1536 default: break;
1537 case ARMII::VFPConv1Frm:
1538 // Encode Dm / Sm.
1539 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001540 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001541 case ARMII::VFPConv2Frm:
1542 case ARMII::VFPConv3Frm:
1543 // Encode Dn / Sn.
1544 Binary |= encodeVFPRn(MI, 1);
1545 break;
1546 case ARMII::VFPConv4Frm:
1547 case ARMII::VFPConv5Frm:
1548 // Encode Dd / Sd.
1549 Binary |= encodeVFPRd(MI, 1);
1550 break;
1551 }
1552
1553 if (Form == ARMII::VFPConv5Frm)
1554 // Encode Dn / Sn.
1555 Binary |= encodeVFPRn(MI, 2);
1556 else if (Form == ARMII::VFPConv3Frm)
1557 // Encode Dm / Sm.
1558 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001559
1560 emitWordLE(Binary);
1561}
1562
Chris Lattner33fabd72010-02-02 21:48:51 +00001563void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001564 // Part of binary is determined by TableGn.
1565 unsigned Binary = getBinaryCodeForInstr(MI);
1566
1567 // Set the conditional execution predicate
1568 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1569
1570 unsigned OpIdx = 0;
1571
1572 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001573 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001574
1575 // Encode address base.
1576 const MachineOperand &Base = MI.getOperand(OpIdx++);
1577 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1578
1579 // If there is a non-zero immediate offset, encode it.
1580 if (Base.isReg()) {
1581 const MachineOperand &Offset = MI.getOperand(OpIdx);
1582 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1583 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1584 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001585 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001586 emitWordLE(Binary);
1587 return;
1588 }
1589 }
1590
1591 // If immediate offset is omitted, default to +0.
1592 Binary |= 1 << ARMII::U_BitShift;
1593
1594 emitWordLE(Binary);
1595}
1596
Bob Wilson87949d42010-03-17 21:16:45 +00001597void
1598ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001599 const TargetInstrDesc &TID = MI.getDesc();
1600 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1601
Evan Chengcd8e66a2008-11-11 21:48:44 +00001602 // Part of binary is determined by TableGn.
1603 unsigned Binary = getBinaryCodeForInstr(MI);
1604
1605 // Set the conditional execution predicate
1606 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1607
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001608 // Skip operand 0 of an instruction with base register update.
1609 unsigned OpIdx = 0;
1610 if (IsUpdating)
1611 ++OpIdx;
1612
Evan Chengcd8e66a2008-11-11 21:48:44 +00001613 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001614 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001615
1616 // Set addressing mode by modifying bits U(23) and P(24)
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001617 const MachineOperand &MO = MI.getOperand(OpIdx++);
Bob Wilsond4bfd542010-08-27 23:18:17 +00001618 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001619
1620 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001621 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001622 Binary |= 0x1 << ARMII::W_BitShift;
1623
1624 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001625 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001626
Bob Wilsond4bfd542010-08-27 23:18:17 +00001627 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001628 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001629 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001630 const MachineOperand &MO = MI.getOperand(i);
1631 if (!MO.isReg() || MO.isImplicit())
1632 break;
1633 ++NumRegs;
1634 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001635 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1636 // Otherwise, it will be 0, in the case of 32-bit registers.
1637 if(Binary & 0x100)
1638 Binary |= NumRegs * 2;
1639 else
1640 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001641
1642 emitWordLE(Binary);
1643}
1644
Bob Wilson1a913ed2010-06-11 21:34:50 +00001645static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1646 unsigned RegD = MI.getOperand(OpIdx).getReg();
1647 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001648 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001649 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1650 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1651 return Binary;
1652}
1653
Bob Wilson5e7b6072010-06-25 22:40:46 +00001654static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1655 unsigned RegN = MI.getOperand(OpIdx).getReg();
1656 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001657 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001658 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1659 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1660 return Binary;
1661}
1662
Bob Wilson583a2a02010-06-25 21:17:19 +00001663static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1664 unsigned RegM = MI.getOperand(OpIdx).getReg();
1665 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001666 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001667 Binary |= (RegM & 0xf);
1668 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1669 return Binary;
1670}
1671
Bob Wilsond896a972010-06-28 21:12:19 +00001672/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1673/// data-processing instruction to the corresponding Thumb encoding.
1674static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1675 assert((Binary & 0xfe000000) == 0xf2000000 &&
1676 "not an ARM NEON data-processing instruction");
1677 unsigned UBit = (Binary >> 24) & 1;
1678 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1679}
1680
Bob Wilsond5a563d2010-06-29 17:34:07 +00001681void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001682 unsigned Binary = getBinaryCodeForInstr(MI);
1683
Bob Wilsond5a563d2010-06-29 17:34:07 +00001684 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1685 const TargetInstrDesc &TID = MI.getDesc();
1686 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1687 RegTOpIdx = 0;
1688 RegNOpIdx = 1;
1689 LnOpIdx = 2;
1690 } else { // ARMII::NSetLnFrm
1691 RegTOpIdx = 2;
1692 RegNOpIdx = 0;
1693 LnOpIdx = 3;
1694 }
1695
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001696 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001697 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001698
Bob Wilsond5a563d2010-06-29 17:34:07 +00001699 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001700 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001701 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001702 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001703
1704 unsigned LaneShift;
1705 if ((Binary & (1 << 22)) != 0)
1706 LaneShift = 0; // 8-bit elements
1707 else if ((Binary & (1 << 5)) != 0)
1708 LaneShift = 1; // 16-bit elements
1709 else
1710 LaneShift = 2; // 32-bit elements
1711
Bob Wilsond5a563d2010-06-29 17:34:07 +00001712 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001713 unsigned Opc1 = Lane >> 2;
1714 unsigned Opc2 = Lane & 3;
1715 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1716 Binary |= (Opc1 << 21);
1717 Binary |= (Opc2 << 5);
1718
1719 emitWordLE(Binary);
1720}
1721
Bob Wilson21773e72010-06-29 20:13:29 +00001722void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1723 unsigned Binary = getBinaryCodeForInstr(MI);
1724
1725 // Set the conditional execution predicate
1726 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1727
1728 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001729 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001730 Binary |= (RegT << ARMII::RegRdShift);
1731 Binary |= encodeNEONRn(MI, 0);
1732 emitWordLE(Binary);
1733}
1734
Bob Wilson583a2a02010-06-25 21:17:19 +00001735void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001736 unsigned Binary = getBinaryCodeForInstr(MI);
1737 // Destination register is encoded in Dd.
1738 Binary |= encodeNEONRd(MI, 0);
1739 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1740 unsigned Imm = MI.getOperand(1).getImm();
1741 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001742 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001743 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001744 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001745 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001746 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001747 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001748 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001749 emitWordLE(Binary);
1750}
1751
Bob Wilson583a2a02010-06-25 21:17:19 +00001752void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001753 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001754 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001755 // Destination register is encoded in Dd; source register in Dm.
1756 unsigned OpIdx = 0;
1757 Binary |= encodeNEONRd(MI, OpIdx++);
1758 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1759 ++OpIdx;
1760 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001761 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001762 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001763 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1764 emitWordLE(Binary);
1765}
1766
Bob Wilson5e7b6072010-06-25 22:40:46 +00001767void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1768 const TargetInstrDesc &TID = MI.getDesc();
1769 unsigned Binary = getBinaryCodeForInstr(MI);
1770 // Destination register is encoded in Dd; source registers in Dn and Dm.
1771 unsigned OpIdx = 0;
1772 Binary |= encodeNEONRd(MI, OpIdx++);
1773 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1774 ++OpIdx;
1775 Binary |= encodeNEONRn(MI, OpIdx++);
1776 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1777 ++OpIdx;
1778 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001779 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001780 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001781 // FIXME: This does not handle VMOVDneon or VMOVQ.
1782 emitWordLE(Binary);
1783}
1784
Evan Cheng7602e112008-09-02 06:52:38 +00001785#include "ARMGenCodeEmitter.inc"