blob: f5d63a8ac04c28fbbd298607df20d56bac855e98 [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);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000104
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000105 unsigned getAddrModeSBit(const MachineInstr &MI,
106 const TargetInstrDesc &TID) const;
Evan Cheng49a9f292008-09-12 22:45:55 +0000107
Evan Cheng83b5cf02008-11-05 23:22:34 +0000108 void emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000109 unsigned ImplicitRd = 0,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000110 unsigned ImplicitRn = 0);
Evan Cheng7602e112008-09-02 06:52:38 +0000111
Evan Cheng83b5cf02008-11-05 23:22:34 +0000112 void emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000113 unsigned ImplicitRd = 0,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000114 unsigned ImplicitRn = 0);
Evan Chengedda31c2008-11-05 18:35:52 +0000115
Evan Cheng83b5cf02008-11-05 23:22:34 +0000116 void emitMiscLoadStoreInstruction(const MachineInstr &MI,
117 unsigned ImplicitRn = 0);
Evan Chengedda31c2008-11-05 18:35:52 +0000118
119 void emitLoadStoreMultipleInstruction(const MachineInstr &MI);
120
Evan Chengfbc9d412008-11-06 01:21:28 +0000121 void emitMulFrmInstruction(const MachineInstr &MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000122
Evan Cheng97f48c32008-11-06 22:15:19 +0000123 void emitExtendInstruction(const MachineInstr &MI);
124
Evan Cheng8b59db32008-11-07 01:41:35 +0000125 void emitMiscArithInstruction(const MachineInstr &MI);
126
Bob Wilson9a1c1892010-08-11 00:01:18 +0000127 void emitSaturateInstruction(const MachineInstr &MI);
128
Evan Chengedda31c2008-11-05 18:35:52 +0000129 void emitBranchInstruction(const MachineInstr &MI);
130
Evan Cheng437c1732008-11-07 22:30:53 +0000131 void emitInlineJumpTable(unsigned JTIndex);
Evan Cheng4df60f52008-11-07 09:06:08 +0000132
Evan Chengedda31c2008-11-05 18:35:52 +0000133 void emitMiscBranchInstruction(const MachineInstr &MI);
Evan Cheng7602e112008-09-02 06:52:38 +0000134
Evan Cheng96581d32008-11-11 02:11:05 +0000135 void emitVFPArithInstruction(const MachineInstr &MI);
136
Evan Cheng78be83d2008-11-11 19:40:26 +0000137 void emitVFPConversionInstruction(const MachineInstr &MI);
138
Evan Chengcd8e66a2008-11-11 21:48:44 +0000139 void emitVFPLoadStoreInstruction(const MachineInstr &MI);
140
141 void emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI);
142
Bob Wilsond5a563d2010-06-29 17:34:07 +0000143 void emitNEONLaneInstruction(const MachineInstr &MI);
Bob Wilson21773e72010-06-29 20:13:29 +0000144 void emitNEONDupInstruction(const MachineInstr &MI);
Bob Wilson583a2a02010-06-25 21:17:19 +0000145 void emitNEON1RegModImmInstruction(const MachineInstr &MI);
146 void emitNEON2RegInstruction(const MachineInstr &MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +0000147 void emitNEON3RegInstruction(const MachineInstr &MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000148
Evan Cheng7602e112008-09-02 06:52:38 +0000149 /// getMachineOpValue - Return binary encoding of operand. If the machine
150 /// operand requires relocation, record the relocation and return zero.
Jim Grosbach3e094132010-10-08 17:45:54 +0000151 unsigned getMachineOpValue(const MachineInstr &MI,
152 const MachineOperand &MO) const;
153 unsigned getMachineOpValue(const MachineInstr &MI, unsigned OpIdx) const {
Evan Cheng7602e112008-09-02 06:52:38 +0000154 return getMachineOpValue(MI, MI.getOperand(OpIdx));
155 }
Evan Cheng7602e112008-09-02 06:52:38 +0000156
Jim Grosbach08bd5492010-10-12 23:00:24 +0000157 // FIXME: The legacy JIT ARMCodeEmitter doesn't rely on the the
158 // TableGen'erated getBinaryCodeForInstr() function to encode any
159 // operand values, instead querying getMachineOpValue() directly for
160 // each operand it needs to encode. Thus, any of the new encoder
161 // helper functions can simply return 0 as the values the return
162 // are already handled elsewhere. They are placeholders to allow this
163 // encoder to continue to function until the MC encoder is sufficiently
164 // far along that this one can be eliminated entirely.
165 unsigned getCCOutOpValue(const MachineInstr &MI, unsigned Op)
166 const { return 0; }
Jim Grosbach2a6a93d2010-10-12 23:18:08 +0000167 unsigned getSOImmOpValue(const MachineInstr &MI, unsigned Op)
168 const { return 0; }
Jim Grosbachef324d72010-10-12 23:53:58 +0000169 unsigned getSORegOpValue(const MachineInstr &MI, unsigned Op)
170 const { return 0; }
Jim Grosbachb35ad412010-10-13 19:56:10 +0000171 unsigned getRotImmOpValue(const MachineInstr &MI, unsigned Op)
172 const { return 0; }
Jim Grosbach8abe32a2010-10-15 17:15:16 +0000173 unsigned getImmMinusOneOpValue(const MachineInstr &MI, unsigned Op)
174 const { return 0; }
Jim Grosbach3fea191052010-10-21 22:03:21 +0000175 unsigned getBitfieldInvertedMaskOpValue(const MachineInstr &MI,
176 unsigned Op) const { return 0; }
Jim Grosbach3e556122010-10-26 22:37:02 +0000177 unsigned getAddrModeImm12OpValue(const MachineInstr &MI, unsigned Op)
Jim Grosbachf31430f2010-10-27 19:55:59 +0000178 const {
179 // {17-13} = reg
180 // {12} = (U)nsigned (add == '1', sub == '0')
181 // {11-0} = imm12
182 const MachineOperand &MO = MI.getOperand(Op);
183 const MachineOperand &MO1 = MI.getOperand(Op + 1);
Jim Grosbachccf72ca2010-10-27 20:39:40 +0000184 if (!MO.isReg()) {
185 emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
186 return 0;
187 }
Jim Grosbachf31430f2010-10-27 19:55:59 +0000188 unsigned Reg = getARMRegisterNumbering(MO.getReg());
189 int32_t Imm12 = MO1.getImm();
190 uint32_t Binary;
191 Binary = Imm12 & 0xfff;
192 if (Imm12 >= 0)
193 Binary |= (1 << 12);
194 Binary |= (Reg << 13);
195 return Binary;
196 }
Jim Grosbachc4bc2112010-10-29 23:21:57 +0000197 unsigned getNEONVcvtImm32OpValue(const MachineInstr &MI, unsigned Op)
198 const { return 0; }
Jim Grosbach08bd5492010-10-12 23:00:24 +0000199
Shih-wei Liao5170b712010-05-26 00:02:28 +0000200 /// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Jim Grosbach18f30e62010-06-02 21:53:11 +0000201 /// machine operand requires relocation, record the relocation and return
202 /// zero.
Shih-wei Liao5170b712010-05-26 00:02:28 +0000203 unsigned getMovi32Value(const MachineInstr &MI,const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000204 unsigned Reloc);
Zonr Changf86399b2010-05-25 08:42:45 +0000205
Evan Cheng83b5cf02008-11-05 23:22:34 +0000206 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000207 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000208 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000209
210 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000211 /// fixed up by the relocation stage.
Dan Gohman46510a72010-04-15 01:51:59 +0000212 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Jeffrey Yasskin2d274412009-11-07 08:51:52 +0000213 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000214 intptr_t ACPV = 0) const;
215 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
216 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
217 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
Evan Cheng437c1732008-11-07 22:30:53 +0000218 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
Jim Grosbach3e094132010-10-08 17:45:54 +0000219 intptr_t JTBase = 0) const;
Evan Cheng148b6a42007-07-05 21:15:40 +0000220 };
Evan Cheng148b6a42007-07-05 21:15:40 +0000221}
222
Chris Lattner33fabd72010-02-02 21:48:51 +0000223char ARMCodeEmitter::ID = 0;
224
Bob Wilson87949d42010-03-17 21:16:45 +0000225/// createARMJITCodeEmitterPass - Return a pass that emits the collected ARM
Chris Lattnere0faa542010-02-02 21:38:59 +0000226/// code to the specified MCE object.
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000227FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
228 JITCodeEmitter &JCE) {
Chris Lattner33fabd72010-02-02 21:48:51 +0000229 return new ARMCodeEmitter(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000230}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000231
Chris Lattner33fabd72010-02-02 21:48:51 +0000232bool ARMCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000233 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
234 MF.getTarget().getRelocationModel() != Reloc::Static) &&
235 "JIT relocation model must be set to static or default!");
Dan Gohman3fb150a2010-04-17 17:42:52 +0000236 JTI = ((ARMTargetMachine &)MF.getTarget()).getJITInfo();
237 II = ((const ARMTargetMachine &)MF.getTarget()).getInstrInfo();
238 TD = ((const ARMTargetMachine &)MF.getTarget()).getTargetData();
Evan Cheng08669742009-09-10 01:23:53 +0000239 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Cheng938b9d82008-10-31 19:55:13 +0000240 MCPEs = &MF.getConstantPool()->getConstants();
Chris Lattnerb1e80392010-01-25 23:22:00 +0000241 MJTEs = 0;
242 if (MF.getJumpTableInfo()) MJTEs = &MF.getJumpTableInfo()->getJumpTables();
Evan Cheng4df60f52008-11-07 09:06:08 +0000243 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Bob Wilson62d24a42010-06-28 22:23:17 +0000244 IsThumb = MF.getInfo<ARMFunctionInfo>()->isThumbFunction();
Evan Cheng3cc82232008-11-08 07:38:22 +0000245 JTI->Initialize(MF, IsPIC);
Chris Lattner16112732010-03-14 01:41:15 +0000246 MMI = &getAnalysis<MachineModuleInfo>();
247 MCE.setModuleInfo(MMI);
Evan Cheng148b6a42007-07-05 21:15:40 +0000248
249 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000250 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000251 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000252 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000253 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000254 MBB != E; ++MBB) {
255 MCE.StartMachineBasicBlock(MBB);
256 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
257 I != E; ++I)
258 emitInstruction(*I);
259 }
260 } while (MCE.finishFunction(MF));
261
262 return false;
263}
264
Evan Cheng83b5cf02008-11-05 23:22:34 +0000265/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000266///
Chris Lattner33fabd72010-02-02 21:48:51 +0000267unsigned ARMCodeEmitter::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000268 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000269 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000270 case ARM_AM::asr: return 2;
271 case ARM_AM::lsl: return 0;
272 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000273 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000274 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000275 }
Evan Cheng7602e112008-09-02 06:52:38 +0000276 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000277}
278
Shih-wei Liao5170b712010-05-26 00:02:28 +0000279/// getMovi32Value - Return binary encoding of operand for movw/movt. If the
Zonr Changf86399b2010-05-25 08:42:45 +0000280/// machine operand requires relocation, record the relocation and return zero.
281unsigned ARMCodeEmitter::getMovi32Value(const MachineInstr &MI,
Shih-wei Liao5170b712010-05-26 00:02:28 +0000282 const MachineOperand &MO,
Zonr Changf86399b2010-05-25 08:42:45 +0000283 unsigned Reloc) {
Shih-wei Liao5170b712010-05-26 00:02:28 +0000284 assert(((Reloc == ARM::reloc_arm_movt) || (Reloc == ARM::reloc_arm_movw))
Zonr Changf86399b2010-05-25 08:42:45 +0000285 && "Relocation to this function should be for movt or movw");
286
287 if (MO.isImm())
288 return static_cast<unsigned>(MO.getImm());
289 else if (MO.isGlobal())
290 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
291 else if (MO.isSymbol())
292 emitExternalSymbolAddress(MO.getSymbolName(), Reloc);
293 else if (MO.isMBB())
294 emitMachineBasicBlock(MO.getMBB(), Reloc);
295 else {
296#ifndef NDEBUG
297 errs() << MO;
298#endif
299 llvm_unreachable("Unsupported operand type for movw/movt");
300 }
301 return 0;
302}
303
Evan Cheng7602e112008-09-02 06:52:38 +0000304/// getMachineOpValue - Return binary encoding of operand. If the machine
305/// operand requires relocation, record the relocation and return zero.
Chris Lattner33fabd72010-02-02 21:48:51 +0000306unsigned ARMCodeEmitter::getMachineOpValue(const MachineInstr &MI,
Jim Grosbach3e094132010-10-08 17:45:54 +0000307 const MachineOperand &MO) const {
Dan Gohmand735b802008-10-03 15:45:36 +0000308 if (MO.isReg())
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000309 return getARMRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000310 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000311 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000312 else if (MO.isGlobal())
Evan Cheng08669742009-09-10 01:23:53 +0000313 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000314 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000315 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000316 else if (MO.isCPI()) {
317 const TargetInstrDesc &TID = MI.getDesc();
318 // For VFP load, the immediate offset is multiplied by 4.
319 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
320 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
321 emitConstPoolAddress(MO.getIndex(), Reloc);
322 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000323 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000324 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000325 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000326 else {
Torok Edwindac237e2009-07-08 20:53:28 +0000327#ifndef NDEBUG
Chris Lattner705e07f2009-08-23 03:41:05 +0000328 errs() << MO;
Torok Edwindac237e2009-07-08 20:53:28 +0000329#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000330 llvm_unreachable(0);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000331 }
Evan Cheng7602e112008-09-02 06:52:38 +0000332 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000333}
334
Evan Cheng057d0c32008-09-18 07:28:19 +0000335/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000336///
Dan Gohman46510a72010-04-15 01:51:59 +0000337void ARMCodeEmitter::emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
Chris Lattner33fabd72010-02-02 21:48:51 +0000338 bool MayNeedFarStub, bool Indirect,
Jim Grosbach3e094132010-10-08 17:45:54 +0000339 intptr_t ACPV) const {
Evan Cheng08669742009-09-10 01:23:53 +0000340 MachineRelocation MR = Indirect
341 ? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000342 const_cast<GlobalValue *>(GV),
343 ACPV, MayNeedFarStub)
Evan Cheng08669742009-09-10 01:23:53 +0000344 : MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
Dan Gohman46510a72010-04-15 01:51:59 +0000345 const_cast<GlobalValue *>(GV), ACPV,
346 MayNeedFarStub);
Evan Cheng08669742009-09-10 01:23:53 +0000347 MCE.addRelocation(MR);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000348}
349
350/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
351/// be emitted to the current location in the function, and allow it to be PC
352/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000353void ARMCodeEmitter::
354emitExternalSymbolAddress(const char *ES, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000355 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
356 Reloc, ES));
357}
358
359/// emitConstPoolAddress - Arrange for the address of an constant pool
360/// to be emitted to the current location in the function, and allow it to be PC
361/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000362void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const {
Evan Cheng0f282432008-10-29 23:55:43 +0000363 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000364 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000365 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000366}
367
368/// emitJumpTableAddress - Arrange for the address of a jump table to
369/// be emitted to the current location in the function, and allow it to be PC
370/// relative.
Jim Grosbach3e094132010-10-08 17:45:54 +0000371void ARMCodeEmitter::
372emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000373 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000374 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000375}
376
Raul Herbster9c1a3822007-08-30 23:29:26 +0000377/// emitMachineBasicBlock - Emit the specified address basic block.
Chris Lattner33fabd72010-02-02 21:48:51 +0000378void ARMCodeEmitter::emitMachineBasicBlock(MachineBasicBlock *BB,
Jim Grosbach3e094132010-10-08 17:45:54 +0000379 unsigned Reloc,
380 intptr_t JTBase) const {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000381 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000382 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000383}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000384
Chris Lattner33fabd72010-02-02 21:48:51 +0000385void ARMCodeEmitter::emitWordLE(unsigned Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000386 DEBUG(errs() << " 0x";
387 errs().write_hex(Binary) << "\n");
Evan Cheng83b5cf02008-11-05 23:22:34 +0000388 MCE.emitWordLE(Binary);
389}
390
Chris Lattner33fabd72010-02-02 21:48:51 +0000391void ARMCodeEmitter::emitDWordLE(uint64_t Binary) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000392 DEBUG(errs() << " 0x";
393 errs().write_hex(Binary) << "\n");
Evan Chengcb5201f2008-11-11 22:19:31 +0000394 MCE.emitDWordLE(Binary);
395}
396
Chris Lattner33fabd72010-02-02 21:48:51 +0000397void ARMCodeEmitter::emitInstruction(const MachineInstr &MI) {
Chris Lattner705e07f2009-08-23 03:41:05 +0000398 DEBUG(errs() << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI);
Evan Cheng42d5ee062008-09-13 01:15:21 +0000399
Devang Patelaf0e2722009-10-06 02:19:11 +0000400 MCE.processDebugLoc(MI.getDebugLoc(), true);
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000401
Dan Gohmanfe601042010-06-22 15:08:57 +0000402 ++NumEmitted; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000403 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000404 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000405 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000406 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000407 }
Evan Chengedda31c2008-11-05 18:35:52 +0000408 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000409 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000410 break;
411 case ARMII::DPFrm:
412 case ARMII::DPSoRegFrm:
413 emitDataProcessingInstruction(MI);
414 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000415 case ARMII::LdFrm:
416 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000417 emitLoadStoreInstruction(MI);
418 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000419 case ARMII::LdMiscFrm:
420 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000421 emitMiscLoadStoreInstruction(MI);
422 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000423 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000424 emitLoadStoreMultipleInstruction(MI);
425 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000426 case ARMII::MulFrm:
427 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000428 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000429 case ARMII::ExtFrm:
430 emitExtendInstruction(MI);
431 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000432 case ARMII::ArithMiscFrm:
433 emitMiscArithInstruction(MI);
434 break;
Bob Wilson9a1c1892010-08-11 00:01:18 +0000435 case ARMII::SatFrm:
436 emitSaturateInstruction(MI);
437 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000438 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000439 emitBranchInstruction(MI);
440 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000441 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000442 emitMiscBranchInstruction(MI);
443 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000444 // VFP instructions.
445 case ARMII::VFPUnaryFrm:
446 case ARMII::VFPBinaryFrm:
447 emitVFPArithInstruction(MI);
448 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000449 case ARMII::VFPConv1Frm:
450 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000451 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000452 case ARMII::VFPConv4Frm:
453 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000454 emitVFPConversionInstruction(MI);
455 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000456 case ARMII::VFPLdStFrm:
457 emitVFPLoadStoreInstruction(MI);
458 break;
459 case ARMII::VFPLdStMulFrm:
460 emitVFPLoadStoreMultipleInstruction(MI);
461 break;
Bill Wendling07fda9f2010-10-15 23:35:12 +0000462
Bob Wilson1a913ed2010-06-11 21:34:50 +0000463 // NEON instructions.
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000464 case ARMII::NGetLnFrm:
Bob Wilsond5a563d2010-06-29 17:34:07 +0000465 case ARMII::NSetLnFrm:
466 emitNEONLaneInstruction(MI);
Bob Wilson52e4a0a2010-06-26 04:07:15 +0000467 break;
Bob Wilson21773e72010-06-29 20:13:29 +0000468 case ARMII::NDupFrm:
469 emitNEONDupInstruction(MI);
470 break;
Bob Wilson1a913ed2010-06-11 21:34:50 +0000471 case ARMII::N1RegModImmFrm:
Bob Wilson583a2a02010-06-25 21:17:19 +0000472 emitNEON1RegModImmInstruction(MI);
473 break;
474 case ARMII::N2RegFrm:
475 emitNEON2RegInstruction(MI);
Bob Wilson1a913ed2010-06-11 21:34:50 +0000476 break;
Bob Wilson5e7b6072010-06-25 22:40:46 +0000477 case ARMII::N3RegFrm:
478 emitNEON3RegInstruction(MI);
479 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000480 }
Devang Patelaf0e2722009-10-06 02:19:11 +0000481 MCE.processDebugLoc(MI.getDebugLoc(), false);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000482}
483
Chris Lattner33fabd72010-02-02 21:48:51 +0000484void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000485 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
486 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000487 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000488
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000489 // Remember the CONSTPOOL_ENTRY address for later relocation.
490 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
491
492 // Emit constpool island entry. In most cases, the actual values will be
493 // resolved and relocated after code emission.
494 if (MCPE.isMachineConstantPoolEntry()) {
495 ARMConstantPoolValue *ACPV =
496 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
497
Chris Lattner705e07f2009-08-23 03:41:05 +0000498 DEBUG(errs() << " ** ARM constant pool #" << CPI << " @ "
499 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n');
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000500
Bob Wilson28989a82009-11-02 16:59:06 +0000501 assert(ACPV->isGlobalValue() && "unsupported constant pool value");
Dan Gohman46510a72010-04-15 01:51:59 +0000502 const GlobalValue *GV = ACPV->getGV();
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000503 if (GV) {
Evan Cheng08669742009-09-10 01:23:53 +0000504 Reloc::Model RelocM = TM.getRelocationModel();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000505 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng08669742009-09-10 01:23:53 +0000506 isa<Function>(GV),
507 Subtarget->GVIsIndirectSymbol(GV, RelocM),
508 (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000509 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000510 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
511 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000512 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000513 } else {
Dan Gohman46510a72010-04-15 01:51:59 +0000514 const Constant *CV = MCPE.Val.ConstVal;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000515
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000516 DEBUG({
517 errs() << " ** Constant pool #" << CPI << " @ "
518 << (void*)MCE.getCurrentPCValue() << " ";
519 if (const Function *F = dyn_cast<Function>(CV))
520 errs() << F->getName();
521 else
522 errs() << *CV;
523 errs() << '\n';
524 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000525
Dan Gohman46510a72010-04-15 01:51:59 +0000526 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng08669742009-09-10 01:23:53 +0000527 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV), false);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000528 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000529 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Gabor Greif41f31ef2010-10-22 23:16:11 +0000530 uint32_t Val = uint32_t(*CI->getValue().getRawData());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000531 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000532 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000533 if (CFP->getType()->isFloatTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000534 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Chris Lattnercf0fe8d2009-10-05 05:54:46 +0000535 else if (CFP->getType()->isDoubleTy())
Evan Chengcb5201f2008-11-11 22:19:31 +0000536 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
537 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000538 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000539 }
540 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000541 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000542 }
543 }
544}
545
Zonr Changf86399b2010-05-25 08:42:45 +0000546void ARMCodeEmitter::emitMOVi32immInstruction(const MachineInstr &MI) {
547 const MachineOperand &MO0 = MI.getOperand(0);
548 const MachineOperand &MO1 = MI.getOperand(1);
549
550 // Emit the 'movw' instruction.
551 unsigned Binary = 0x30 << 20; // mov: Insts{27-20} = 0b00110000
552
553 unsigned Lo16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movw) & 0xFFFF;
554
555 // Set the conditional execution predicate.
556 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
557
558 // Encode Rd.
559 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
560
561 // Encode imm16 as imm4:imm12
562 Binary |= Lo16 & 0xFFF; // Insts{11-0} = imm12
563 Binary |= ((Lo16 >> 12) & 0xF) << 16; // Insts{19-16} = imm4
564 emitWordLE(Binary);
565
566 unsigned Hi16 = getMovi32Value(MI, MO1, ARM::reloc_arm_movt) >> 16;
567 // Emit the 'movt' instruction.
568 Binary = 0x34 << 20; // movt: Insts{27-20} = 0b00110100
569
570 // Set the conditional execution predicate.
571 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
572
573 // Encode Rd.
574 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
575
576 // Encode imm16 as imm4:imm1, same as movw above.
577 Binary |= Hi16 & 0xFFF;
578 Binary |= ((Hi16 >> 12) & 0xF) << 16;
579 emitWordLE(Binary);
580}
581
Chris Lattner33fabd72010-02-02 21:48:51 +0000582void ARMCodeEmitter::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000583 const MachineOperand &MO0 = MI.getOperand(0);
584 const MachineOperand &MO1 = MI.getOperand(1);
Bob Wilson5265a122010-03-11 00:46:22 +0000585 assert(MO1.isImm() && ARM_AM::isSOImmTwoPartVal(MO1.getImm()) &&
586 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000587 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
588 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
589
590 // Emit the 'mov' instruction.
591 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
592
593 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000594 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000595
596 // Encode Rd.
597 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
598
599 // Encode so_imm.
600 // Set bit I(25) to identify this is the immediate form of <shifter_op>
601 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000602 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000603 emitWordLE(Binary);
604
605 // Now the 'orr' instruction.
606 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
607
608 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000609 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000610
611 // Encode Rd.
612 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
613
614 // Encode Rn.
615 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
616
617 // Encode so_imm.
618 // Set bit I(25) to identify this is the immediate form of <shifter_op>
619 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000620 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000621 emitWordLE(Binary);
622}
623
Chris Lattner33fabd72010-02-02 21:48:51 +0000624void ARMCodeEmitter::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000625 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000626
Evan Cheng4df60f52008-11-07 09:06:08 +0000627 const TargetInstrDesc &TID = MI.getDesc();
628
629 // Emit the 'add' instruction.
630 unsigned Binary = 0x4 << 21; // add: Insts{24-31} = 0b0100
631
632 // Set the conditional execution predicate
633 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
634
635 // Encode S bit if MI modifies CPSR.
636 Binary |= getAddrModeSBit(MI, TID);
637
638 // Encode Rd.
639 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
640
641 // Encode Rn which is PC.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000642 Binary |= getARMRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
Evan Cheng4df60f52008-11-07 09:06:08 +0000643
644 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000645 Binary |= 1 << ARMII::I_BitShift;
646 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
647
648 emitWordLE(Binary);
649}
650
Chris Lattner33fabd72010-02-02 21:48:51 +0000651void ARMCodeEmitter::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000652 unsigned Opcode = MI.getDesc().Opcode;
653
654 // Part of binary is determined by TableGn.
655 unsigned Binary = getBinaryCodeForInstr(MI);
656
657 // Set the conditional execution predicate
658 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
659
660 // Encode S bit if MI modifies CPSR.
661 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
662 Binary |= 1 << ARMII::S_BitShift;
663
664 // Encode register def if there is one.
665 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
666
667 // Encode the shift operation.
668 switch (Opcode) {
669 default: break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000670 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000671 // rrx
672 Binary |= 0x6 << 4;
673 break;
674 case ARM::MOVsrl_flag:
675 // lsr #1
676 Binary |= (0x2 << 4) | (1 << 7);
677 break;
678 case ARM::MOVsra_flag:
679 // asr #1
680 Binary |= (0x4 << 4) | (1 << 7);
681 break;
682 }
683
684 // Encode register Rm.
685 Binary |= getMachineOpValue(MI, 1);
686
687 emitWordLE(Binary);
688}
689
Chris Lattner33fabd72010-02-02 21:48:51 +0000690void ARMCodeEmitter::addPCLabel(unsigned LabelID) {
Chris Lattner893e1c92009-08-23 06:49:22 +0000691 DEBUG(errs() << " ** LPC" << LabelID << " @ "
692 << (void*)MCE.getCurrentPCValue() << '\n');
Evan Cheng83b5cf02008-11-05 23:22:34 +0000693 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
694}
695
Chris Lattner33fabd72010-02-02 21:48:51 +0000696void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000697 unsigned Opcode = MI.getDesc().Opcode;
698 switch (Opcode) {
699 default:
Evan Cheng5adb66a2009-09-28 09:14:39 +0000700 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");
Xerxes Ranby99ccffe2010-07-22 17:28:34 +0000701 case ARM::BX:
702 case ARM::BMOVPCRX:
703 case ARM::BXr9:
704 case ARM::BMOVPCRXr9: {
705 // First emit mov lr, pc
706 unsigned Binary = 0x01a0e00f;
707 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
708 emitWordLE(Binary);
709
710 // and then emit the branch.
711 emitMiscBranchInstruction(MI);
712 break;
713 }
Chris Lattner518bb532010-02-09 19:54:29 +0000714 case TargetOpcode::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000715 // We allow inline assembler nodes with empty bodies - they can
716 // implicitly define registers, which is ok for JIT.
717 if (MI.getOperand(0).getSymbolName()[0]) {
Chris Lattner75361b62010-04-07 22:58:41 +0000718 report_fatal_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000719 }
Evan Chengffa6d962008-11-13 23:36:57 +0000720 break;
721 }
Bill Wendling7431bea2010-07-16 22:20:36 +0000722 case TargetOpcode::PROLOG_LABEL:
Chris Lattner7561d482010-03-14 02:33:54 +0000723 case TargetOpcode::EH_LABEL:
724 MCE.emitLabel(MI.getOperand(0).getMCSymbol());
725 break;
Chris Lattner518bb532010-02-09 19:54:29 +0000726 case TargetOpcode::IMPLICIT_DEF:
727 case TargetOpcode::KILL:
Evan Chengffa6d962008-11-13 23:36:57 +0000728 // Do nothing.
729 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000730 case ARM::CONSTPOOL_ENTRY:
731 emitConstPoolInstruction(MI);
732 break;
733 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000734 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000735 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000736 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000737 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000738 break;
739 }
740 case ARM::PICLDR:
741 case ARM::PICLDRB:
742 case ARM::PICSTR:
743 case ARM::PICSTRB: {
744 // Remember of the address of the PC label for relocation later.
745 addPCLabel(MI.getOperand(2).getImm());
746 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000747 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000748 break;
749 }
750 case ARM::PICLDRH:
751 case ARM::PICLDRSH:
752 case ARM::PICLDRSB:
753 case ARM::PICSTRH: {
754 // Remember of the address of the PC label for relocation later.
755 addPCLabel(MI.getOperand(2).getImm());
756 // These are just load / store instructions that implicitly read pc.
757 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000758 break;
759 }
Zonr Changf86399b2010-05-25 08:42:45 +0000760
761 case ARM::MOVi32imm:
762 emitMOVi32immInstruction(MI);
763 break;
764
Evan Cheng90922132008-11-06 02:25:39 +0000765 case ARM::MOVi2pieces:
766 // Two instructions to materialize a constant.
767 emitMOVi2piecesInstruction(MI);
768 break;
Evan Cheng4df60f52008-11-07 09:06:08 +0000769 case ARM::LEApcrelJT:
770 // Materialize jumptable address.
771 emitLEApcrelJTInstruction(MI);
772 break;
Jim Grosbach792e9792010-10-14 20:43:44 +0000773 case ARM::RRX:
Evan Chenga9562552008-11-14 20:09:11 +0000774 case ARM::MOVsrl_flag:
775 case ARM::MOVsra_flag:
776 emitPseudoMoveInstruction(MI);
777 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000778 }
779}
780
Bob Wilson87949d42010-03-17 21:16:45 +0000781unsigned ARMCodeEmitter::getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000782 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000783 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000784 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000785 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000786
787 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
788 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
789 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
790
791 // Encode the shift opcode.
792 unsigned SBits = 0;
793 unsigned Rs = MO1.getReg();
794 if (Rs) {
795 // Set shift operand (bit[7:4]).
796 // LSL - 0001
797 // LSR - 0011
798 // ASR - 0101
799 // ROR - 0111
800 // RRX - 0110 and bit[11:8] clear.
801 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000802 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000803 case ARM_AM::lsl: SBits = 0x1; break;
804 case ARM_AM::lsr: SBits = 0x3; break;
805 case ARM_AM::asr: SBits = 0x5; break;
806 case ARM_AM::ror: SBits = 0x7; break;
807 case ARM_AM::rrx: SBits = 0x6; break;
808 }
809 } else {
810 // Set shift operand (bit[6:4]).
811 // LSL - 000
812 // LSR - 010
813 // ASR - 100
814 // ROR - 110
815 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000816 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000817 case ARM_AM::lsl: SBits = 0x0; break;
818 case ARM_AM::lsr: SBits = 0x2; break;
819 case ARM_AM::asr: SBits = 0x4; break;
820 case ARM_AM::ror: SBits = 0x6; break;
821 }
822 }
823 Binary |= SBits << 4;
824 if (SOpc == ARM_AM::rrx)
825 return Binary;
826
827 // Encode the shift operation Rs or shift_imm (except rrx).
828 if (Rs) {
829 // Encode Rs bit[11:8].
830 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000831 return Binary | (getARMRegisterNumbering(Rs) << ARMII::RegRsShift);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000832 }
833
834 // Encode shift_imm bit[11:7].
835 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
836}
837
Chris Lattner33fabd72010-02-02 21:48:51 +0000838unsigned ARMCodeEmitter::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000839 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
840 assert(SoImmVal != -1 && "Not a valid so_imm value!");
841
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000842 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000843 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000844 << ARMII::SoRotImmShift;
845
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000846 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000847 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000848 return Binary;
849}
850
Chris Lattner33fabd72010-02-02 21:48:51 +0000851unsigned ARMCodeEmitter::getAddrModeSBit(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +0000852 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000853 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000854 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000855 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000856 return 1 << ARMII::S_BitShift;
857 }
858 return 0;
859}
860
Bob Wilson87949d42010-03-17 21:16:45 +0000861void ARMCodeEmitter::emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000862 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000863 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000864 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000865
866 // Part of binary is determined by TableGn.
867 unsigned Binary = getBinaryCodeForInstr(MI);
868
Jim Grosbach33412622008-10-07 19:05:35 +0000869 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000870 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000871
Evan Cheng49a9f292008-09-12 22:45:55 +0000872 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000873 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000874
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000875 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000876 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000877 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000878 if (NumDefs)
879 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
880 else if (ImplicitRd)
881 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000882 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000883
Zonr Changf86399b2010-05-25 08:42:45 +0000884 if (TID.Opcode == ARM::MOVi16) {
885 // Get immediate from MI.
886 unsigned Lo16 = getMovi32Value(MI, MI.getOperand(OpIdx),
887 ARM::reloc_arm_movw);
888 // Encode imm which is the same as in emitMOVi32immInstruction().
889 Binary |= Lo16 & 0xFFF;
890 Binary |= ((Lo16 >> 12) & 0xF) << 16;
891 emitWordLE(Binary);
892 return;
893 } else if(TID.Opcode == ARM::MOVTi16) {
894 unsigned Hi16 = (getMovi32Value(MI, MI.getOperand(OpIdx),
895 ARM::reloc_arm_movt) >> 16);
896 Binary |= Hi16 & 0xFFF;
897 Binary |= ((Hi16 >> 12) & 0xF) << 16;
898 emitWordLE(Binary);
899 return;
Shih-wei Liao9f3b6a32010-05-26 04:46:50 +0000900 } else if ((TID.Opcode == ARM::BFC) || (TID.Opcode == ARM::BFI)) {
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000901 uint32_t v = ~MI.getOperand(2).getImm();
902 int32_t lsb = CountTrailingZeros_32(v);
903 int32_t msb = (32 - CountLeadingZeros_32(v)) - 1;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000904 // Instr{20-16} = msb, Instr{11-7} = lsb
Shih-wei Liao6d37a292010-05-26 00:25:05 +0000905 Binary |= (msb & 0x1F) << 16;
906 Binary |= (lsb & 0x1F) << 7;
907 emitWordLE(Binary);
908 return;
Shih-wei Liao45469f32010-05-26 03:21:39 +0000909 } else if ((TID.Opcode == ARM::UBFX) || (TID.Opcode == ARM::SBFX)) {
910 // Encode Rn in Instr{0-3}
911 Binary |= getMachineOpValue(MI, OpIdx++);
912
913 uint32_t lsb = MI.getOperand(OpIdx++).getImm();
914 uint32_t widthm1 = MI.getOperand(OpIdx++).getImm() - 1;
915
916 // Instr{20-16} = widthm1, Instr{11-7} = lsb
917 Binary |= (widthm1 & 0x1F) << 16;
918 Binary |= (lsb & 0x1F) << 7;
919 emitWordLE(Binary);
920 return;
Zonr Changf86399b2010-05-25 08:42:45 +0000921 }
922
Evan Chengd87293c2008-11-06 08:47:38 +0000923 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
924 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
925 ++OpIdx;
926
Jim Grosbachefd30ba2008-10-01 18:16:49 +0000927 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +0000928 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
929 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000930 if (ImplicitRn)
931 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000932 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000933 else {
934 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
935 ++OpIdx;
936 }
Evan Cheng7602e112008-09-02 06:52:38 +0000937 }
938
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000939 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000940 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +0000941 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000942 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000943 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +0000944 return;
945 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000946
Evan Chengedda31c2008-11-05 18:35:52 +0000947 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000948 // Encode register Rm.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000949 emitWordLE(Binary | getARMRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +0000950 return;
951 }
Evan Cheng7602e112008-09-02 06:52:38 +0000952
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000953 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000954 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +0000955
Evan Cheng83b5cf02008-11-05 23:22:34 +0000956 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +0000957}
958
Bob Wilson87949d42010-03-17 21:16:45 +0000959void ARMCodeEmitter::emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000960 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000961 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +0000962 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +0000963 unsigned Form = TID.TSFlags & ARMII::FormMask;
964 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +0000965
Evan Chengedda31c2008-11-05 18:35:52 +0000966 // Part of binary is determined by TableGn.
967 unsigned Binary = getBinaryCodeForInstr(MI);
968
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000969 // If this is an LDRi12, STRi12 or LDRcp, nothing more needs be done.
970 if (MI.getOpcode() == ARM::LDRi12 || MI.getOpcode() == ARM::LDRcp ||
971 MI.getOpcode() == ARM::STRi12) {
Jim Grosbach093177d2010-10-27 17:52:51 +0000972 emitWordLE(Binary);
973 return;
974 }
975
Jim Grosbach33412622008-10-07 19:05:35 +0000976 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000977 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +0000978
Evan Cheng4df60f52008-11-07 09:06:08 +0000979 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +0000980
981 // Operand 0 of a pre- and post-indexed store is the address base
982 // writeback. Skip it.
983 bool Skipped = false;
984 if (IsPrePost && Form == ARMII::StFrm) {
985 ++OpIdx;
986 Skipped = true;
987 }
988
989 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +0000990 if (ImplicitRd)
991 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000992 Binary |= (getARMRegisterNumbering(ImplicitRd) << ARMII::RegRdShift);
Evan Cheng4df60f52008-11-07 09:06:08 +0000993 else
994 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +0000995
996 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +0000997 if (ImplicitRn)
998 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000999 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001000 else
1001 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001002
Evan Cheng05c356e2008-11-08 01:44:13 +00001003 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +00001004 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001005 ++OpIdx;
1006
Evan Cheng83b5cf02008-11-05 23:22:34 +00001007 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001008 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001009 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001010
Evan Chenge7de7e32008-09-13 01:44:01 +00001011 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +00001012 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +00001013 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +00001014 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +00001015 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +00001016 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +00001017 Binary |= ARM_AM::getAM2Offset(AM2Opc);
1018 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001019 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001020 }
1021
Bill Wendling7d31a162010-10-20 22:44:54 +00001022 // Set bit I(25), because this is not in immediate encoding.
Evan Cheng7602e112008-09-02 06:52:38 +00001023 Binary |= 1 << ARMII::I_BitShift;
1024 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
1025 // Set bit[3:0] to the corresponding Rm register
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001026 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001027
Evan Cheng70632912008-11-12 07:34:37 +00001028 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +00001029 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +00001030 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +00001031 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
1032 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +00001033 }
1034
Evan Cheng83b5cf02008-11-05 23:22:34 +00001035 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001036}
1037
Chris Lattner33fabd72010-02-02 21:48:51 +00001038void ARMCodeEmitter::emitMiscLoadStoreInstruction(const MachineInstr &MI,
Bob Wilson87949d42010-03-17 21:16:45 +00001039 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +00001040 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +00001041 unsigned Form = TID.TSFlags & ARMII::FormMask;
1042 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +00001043
Evan Chengedda31c2008-11-05 18:35:52 +00001044 // Part of binary is determined by TableGn.
1045 unsigned Binary = getBinaryCodeForInstr(MI);
1046
Jim Grosbach33412622008-10-07 19:05:35 +00001047 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001048 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +00001049
Evan Cheng148cad82008-11-13 07:34:59 +00001050 unsigned OpIdx = 0;
1051
1052 // Operand 0 of a pre- and post-indexed store is the address base
1053 // writeback. Skip it.
1054 bool Skipped = false;
1055 if (IsPrePost && Form == ARMII::StMiscFrm) {
1056 ++OpIdx;
1057 Skipped = true;
1058 }
1059
Evan Cheng7602e112008-09-02 06:52:38 +00001060 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +00001061 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001062
Evan Cheng358dec52009-06-15 08:28:29 +00001063 // Skip LDRD and STRD's second operand.
1064 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
1065 ++OpIdx;
1066
Evan Cheng7602e112008-09-02 06:52:38 +00001067 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +00001068 if (ImplicitRn)
1069 // Special handling for implicit use (e.g. PC).
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001070 Binary |= (getARMRegisterNumbering(ImplicitRn) << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +00001071 else
1072 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001073
Evan Cheng05c356e2008-11-08 01:44:13 +00001074 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +00001075 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +00001076 ++OpIdx;
1077
Evan Cheng83b5cf02008-11-05 23:22:34 +00001078 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +00001079 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001080 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +00001081
Evan Chenge7de7e32008-09-13 01:44:01 +00001082 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +00001083 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +00001084 ARMII::U_BitShift);
1085
1086 // If this instr is in register offset/index encoding, set bit[3:0]
1087 // to the corresponding Rm register.
1088 if (MO2.getReg()) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001089 Binary |= getARMRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +00001090 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001091 return;
Evan Cheng7602e112008-09-02 06:52:38 +00001092 }
1093
Evan Chengd87293c2008-11-06 08:47:38 +00001094 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +00001095 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +00001096 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +00001097 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +00001098 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
1099 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +00001100 }
1101
Evan Cheng83b5cf02008-11-05 23:22:34 +00001102 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001103}
1104
Evan Chengcd8e66a2008-11-11 21:48:44 +00001105static unsigned getAddrModeUPBits(unsigned Mode) {
1106 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +00001107
1108 // Set addressing mode by modifying bits U(23) and P(24)
1109 // IA - Increment after - bit U = 1 and bit P = 0
1110 // IB - Increment before - bit U = 1 and bit P = 1
1111 // DA - Decrement after - bit U = 0 and bit P = 0
1112 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +00001113 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001114 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng10bf7342009-09-09 23:55:03 +00001115 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +00001116 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
1117 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
1118 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +00001119 }
1120
Evan Chengcd8e66a2008-11-11 21:48:44 +00001121 return Binary;
1122}
1123
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001124void ARMCodeEmitter::emitLoadStoreMultipleInstruction(const MachineInstr &MI) {
1125 const TargetInstrDesc &TID = MI.getDesc();
1126 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1127
Evan Chengcd8e66a2008-11-11 21:48:44 +00001128 // Part of binary is determined by TableGn.
1129 unsigned Binary = getBinaryCodeForInstr(MI);
1130
1131 // Set the conditional execution predicate
1132 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1133
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001134 // Skip operand 0 of an instruction with base register update.
1135 unsigned OpIdx = 0;
1136 if (IsUpdating)
1137 ++OpIdx;
1138
Evan Chengcd8e66a2008-11-11 21:48:44 +00001139 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001140 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001141
1142 // Set addressing mode by modifying bits U(23) and P(24)
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001143 const MachineOperand &MO = MI.getOperand(OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001144 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
1145
Evan Cheng7602e112008-09-02 06:52:38 +00001146 // Set bit W(21)
Bob Wilsonab346052010-03-16 17:46:45 +00001147 if (IsUpdating)
Evan Cheng97f48c32008-11-06 22:15:19 +00001148 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +00001149
1150 // Set registers
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001151 for (unsigned i = OpIdx+2, e = MI.getNumOperands(); i != e; ++i) {
Evan Cheng7602e112008-09-02 06:52:38 +00001152 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001153 if (!MO.isReg() || MO.isImplicit())
1154 break;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001155 unsigned RegNum = getARMRegisterNumbering(MO.getReg());
Evan Cheng7602e112008-09-02 06:52:38 +00001156 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1157 RegNum < 16);
1158 Binary |= 0x1 << RegNum;
1159 }
1160
Evan Cheng83b5cf02008-11-05 23:22:34 +00001161 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001162}
1163
Chris Lattner33fabd72010-02-02 21:48:51 +00001164void ARMCodeEmitter::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001165 const TargetInstrDesc &TID = MI.getDesc();
1166
1167 // Part of binary is determined by TableGn.
1168 unsigned Binary = getBinaryCodeForInstr(MI);
1169
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001170 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001171 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001172
1173 // Encode S bit if MI modifies CPSR.
1174 Binary |= getAddrModeSBit(MI, TID);
1175
1176 // 32x32->64bit operations have two destination registers. The number
1177 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001178 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001179 if (TID.getNumDefs() == 2)
1180 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1181
1182 // Encode Rd
1183 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1184
1185 // Encode Rm
1186 Binary |= getMachineOpValue(MI, OpIdx++);
1187
1188 // Encode Rs
1189 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1190
Evan Chengfbc9d412008-11-06 01:21:28 +00001191 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1192 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001193 if (TID.getNumOperands() > OpIdx &&
1194 !TID.OpInfo[OpIdx].isPredicate() &&
1195 !TID.OpInfo[OpIdx].isOptionalDef())
1196 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1197
1198 emitWordLE(Binary);
1199}
1200
Chris Lattner33fabd72010-02-02 21:48:51 +00001201void ARMCodeEmitter::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001202 const TargetInstrDesc &TID = MI.getDesc();
1203
1204 // Part of binary is determined by TableGn.
1205 unsigned Binary = getBinaryCodeForInstr(MI);
1206
1207 // Set the conditional execution predicate
1208 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1209
1210 unsigned OpIdx = 0;
1211
1212 // Encode Rd
1213 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1214
1215 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1216 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1217 if (MO2.isReg()) {
1218 // Two register operand form.
1219 // Encode Rn.
1220 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1221
1222 // Encode Rm.
1223 Binary |= getMachineOpValue(MI, MO2);
1224 ++OpIdx;
1225 } else {
1226 Binary |= getMachineOpValue(MI, MO1);
1227 }
1228
1229 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1230 if (MI.getOperand(OpIdx).isImm() &&
1231 !TID.OpInfo[OpIdx].isPredicate() &&
1232 !TID.OpInfo[OpIdx].isOptionalDef())
1233 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001234
Evan Cheng83b5cf02008-11-05 23:22:34 +00001235 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001236}
1237
Chris Lattner33fabd72010-02-02 21:48:51 +00001238void ARMCodeEmitter::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001239 const TargetInstrDesc &TID = MI.getDesc();
1240
1241 // Part of binary is determined by TableGn.
1242 unsigned Binary = getBinaryCodeForInstr(MI);
1243
1244 // Set the conditional execution predicate
1245 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1246
1247 unsigned OpIdx = 0;
1248
1249 // Encode Rd
1250 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1251
1252 const MachineOperand &MO = MI.getOperand(OpIdx++);
1253 if (OpIdx == TID.getNumOperands() ||
1254 TID.OpInfo[OpIdx].isPredicate() ||
1255 TID.OpInfo[OpIdx].isOptionalDef()) {
1256 // Encode Rm and it's done.
1257 Binary |= getMachineOpValue(MI, MO);
1258 emitWordLE(Binary);
1259 return;
1260 }
1261
1262 // Encode Rn.
1263 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1264
1265 // Encode Rm.
1266 Binary |= getMachineOpValue(MI, OpIdx++);
1267
1268 // Encode shift_imm.
1269 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
Bob Wilsonf955f292010-08-17 17:23:19 +00001270 if (TID.Opcode == ARM::PKHTB) {
1271 assert(ShiftAmt != 0 && "PKHTB shift_imm is 0!");
1272 if (ShiftAmt == 32)
1273 ShiftAmt = 0;
1274 }
Evan Cheng8b59db32008-11-07 01:41:35 +00001275 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1276 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001277
Evan Cheng8b59db32008-11-07 01:41:35 +00001278 emitWordLE(Binary);
1279}
1280
Bob Wilson9a1c1892010-08-11 00:01:18 +00001281void ARMCodeEmitter::emitSaturateInstruction(const MachineInstr &MI) {
1282 const TargetInstrDesc &TID = MI.getDesc();
1283
1284 // Part of binary is determined by TableGen.
1285 unsigned Binary = getBinaryCodeForInstr(MI);
1286
1287 // Set the conditional execution predicate
1288 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1289
1290 // Encode Rd
1291 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
1292
1293 // Encode saturate bit position.
1294 unsigned Pos = MI.getOperand(1).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001295 if (TID.Opcode == ARM::SSAT || TID.Opcode == ARM::SSAT16)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001296 Pos -= 1;
1297 assert((Pos < 16 || (Pos < 32 &&
1298 TID.Opcode != ARM::SSAT16 &&
1299 TID.Opcode != ARM::USAT16)) &&
1300 "saturate bit position out of range");
1301 Binary |= Pos << 16;
1302
1303 // Encode Rm
1304 Binary |= getMachineOpValue(MI, 2);
1305
1306 // Encode shift_imm.
1307 if (TID.getNumOperands() == 4) {
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001308 unsigned ShiftOp = MI.getOperand(3).getImm();
1309 ARM_AM::ShiftOpc Opc = ARM_AM::getSORegShOp(ShiftOp);
1310 if (Opc == ARM_AM::asr)
1311 Binary |= (1 << 6);
Bob Wilson9a1c1892010-08-11 00:01:18 +00001312 unsigned ShiftAmt = MI.getOperand(3).getImm();
Bob Wilsoneaf1c982010-08-11 23:10:46 +00001313 if (ShiftAmt == 32 && Opc == ARM_AM::asr)
Bob Wilson9a1c1892010-08-11 00:01:18 +00001314 ShiftAmt = 0;
1315 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1316 Binary |= ShiftAmt << ARMII::ShiftShift;
1317 }
1318
1319 emitWordLE(Binary);
1320}
1321
Chris Lattner33fabd72010-02-02 21:48:51 +00001322void ARMCodeEmitter::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001323 const TargetInstrDesc &TID = MI.getDesc();
1324
Torok Edwindac237e2009-07-08 20:53:28 +00001325 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001326 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001327 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001328
Evan Cheng7602e112008-09-02 06:52:38 +00001329 // Part of binary is determined by TableGn.
1330 unsigned Binary = getBinaryCodeForInstr(MI);
1331
Evan Chengedda31c2008-11-05 18:35:52 +00001332 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001333 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001334
1335 // Set signed_immed_24 field
1336 Binary |= getMachineOpValue(MI, 0);
1337
Evan Cheng83b5cf02008-11-05 23:22:34 +00001338 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001339}
1340
Chris Lattner33fabd72010-02-02 21:48:51 +00001341void ARMCodeEmitter::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001342 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001343 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001344 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
Chris Lattner893e1c92009-08-23 06:49:22 +00001345 DEBUG(errs() << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase
1346 << '\n');
Evan Cheng4df60f52008-11-07 09:06:08 +00001347
1348 // Now emit the jump table entries.
1349 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1350 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1351 if (IsPIC)
1352 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001353 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001354 else
1355 // Absolute DestBB address.
1356 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1357 emitWordLE(0);
1358 }
1359}
1360
Chris Lattner33fabd72010-02-02 21:48:51 +00001361void ARMCodeEmitter::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001362 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001363
Evan Cheng437c1732008-11-07 22:30:53 +00001364 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001365 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001366 // First emit a ldr pc, [] instruction.
1367 emitDataProcessingInstruction(MI, ARM::PC);
1368
1369 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001370 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001371 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001372 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1373 emitInlineJumpTable(JTIndex);
1374 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001375 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001376 // First emit a ldr pc, [] instruction.
1377 emitLoadStoreInstruction(MI, ARM::PC);
1378
1379 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001380 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001381 return;
1382 }
1383
Evan Chengedda31c2008-11-05 18:35:52 +00001384 // Part of binary is determined by TableGn.
1385 unsigned Binary = getBinaryCodeForInstr(MI);
1386
1387 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001388 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001389
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +00001390 if (TID.Opcode == ARM::BX_RET || TID.Opcode == ARM::MOVPCLR)
Evan Chengedda31c2008-11-05 18:35:52 +00001391 // The return register is LR.
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001392 Binary |= getARMRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001393 else
Evan Chengedda31c2008-11-05 18:35:52 +00001394 // otherwise, set the return register
1395 Binary |= getMachineOpValue(MI, 0);
1396
Evan Cheng83b5cf02008-11-05 23:22:34 +00001397 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001398}
Evan Cheng7602e112008-09-02 06:52:38 +00001399
Evan Cheng80a11982008-11-12 06:41:41 +00001400static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001401 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001402 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001403 bool isSPVFP = ARM::SPRRegisterClass->contains(RegD);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001404 RegD = getARMRegisterNumbering(RegD);
Evan Chengd06d48d2008-11-12 02:19:38 +00001405 if (!isSPVFP)
1406 Binary |= RegD << ARMII::RegRdShift;
1407 else {
1408 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1409 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1410 }
Evan Cheng80a11982008-11-12 06:41:41 +00001411 return Binary;
1412}
Evan Cheng78be83d2008-11-11 19:40:26 +00001413
Evan Cheng80a11982008-11-12 06:41:41 +00001414static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001415 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001416 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001417 bool isSPVFP = ARM::SPRRegisterClass->contains(RegN);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001418 RegN = getARMRegisterNumbering(RegN);
Evan Chengd06d48d2008-11-12 02:19:38 +00001419 if (!isSPVFP)
1420 Binary |= RegN << ARMII::RegRnShift;
1421 else {
1422 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1423 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1424 }
Evan Cheng80a11982008-11-12 06:41:41 +00001425 return Binary;
1426}
Evan Chengd06d48d2008-11-12 02:19:38 +00001427
Evan Cheng80a11982008-11-12 06:41:41 +00001428static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1429 unsigned RegM = MI.getOperand(OpIdx).getReg();
1430 unsigned Binary = 0;
Jim Grosbach7e2c04f2010-09-15 19:44:57 +00001431 bool isSPVFP = ARM::SPRRegisterClass->contains(RegM);
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001432 RegM = getARMRegisterNumbering(RegM);
Evan Cheng80a11982008-11-12 06:41:41 +00001433 if (!isSPVFP)
1434 Binary |= RegM;
1435 else {
1436 Binary |= ((RegM & 0x1E) >> 1);
1437 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001438 }
Evan Cheng80a11982008-11-12 06:41:41 +00001439 return Binary;
1440}
1441
Chris Lattner33fabd72010-02-02 21:48:51 +00001442void ARMCodeEmitter::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001443 const TargetInstrDesc &TID = MI.getDesc();
1444
1445 // Part of binary is determined by TableGn.
1446 unsigned Binary = getBinaryCodeForInstr(MI);
1447
1448 // Set the conditional execution predicate
1449 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1450
1451 unsigned OpIdx = 0;
1452 assert((Binary & ARMII::D_BitShift) == 0 &&
1453 (Binary & ARMII::N_BitShift) == 0 &&
1454 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1455
1456 // Encode Dd / Sd.
1457 Binary |= encodeVFPRd(MI, OpIdx++);
1458
1459 // If this is a two-address operand, skip it, e.g. FMACD.
1460 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1461 ++OpIdx;
1462
1463 // Encode Dn / Sn.
1464 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001465 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001466
1467 if (OpIdx == TID.getNumOperands() ||
1468 TID.OpInfo[OpIdx].isPredicate() ||
1469 TID.OpInfo[OpIdx].isOptionalDef()) {
1470 // FCMPEZD etc. has only one operand.
1471 emitWordLE(Binary);
1472 return;
1473 }
1474
1475 // Encode Dm / Sm.
1476 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001477
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001478 emitWordLE(Binary);
1479}
1480
Bob Wilson87949d42010-03-17 21:16:45 +00001481void ARMCodeEmitter::emitVFPConversionInstruction(const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001482 const TargetInstrDesc &TID = MI.getDesc();
1483 unsigned Form = TID.TSFlags & ARMII::FormMask;
1484
1485 // Part of binary is determined by TableGn.
1486 unsigned Binary = getBinaryCodeForInstr(MI);
1487
1488 // Set the conditional execution predicate
1489 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1490
1491 switch (Form) {
1492 default: break;
1493 case ARMII::VFPConv1Frm:
1494 case ARMII::VFPConv2Frm:
1495 case ARMII::VFPConv3Frm:
1496 // Encode Dd / Sd.
1497 Binary |= encodeVFPRd(MI, 0);
1498 break;
1499 case ARMII::VFPConv4Frm:
1500 // Encode Dn / Sn.
1501 Binary |= encodeVFPRn(MI, 0);
1502 break;
1503 case ARMII::VFPConv5Frm:
1504 // Encode Dm / Sm.
1505 Binary |= encodeVFPRm(MI, 0);
1506 break;
1507 }
1508
1509 switch (Form) {
1510 default: break;
1511 case ARMII::VFPConv1Frm:
1512 // Encode Dm / Sm.
1513 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001514 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001515 case ARMII::VFPConv2Frm:
1516 case ARMII::VFPConv3Frm:
1517 // Encode Dn / Sn.
1518 Binary |= encodeVFPRn(MI, 1);
1519 break;
1520 case ARMII::VFPConv4Frm:
1521 case ARMII::VFPConv5Frm:
1522 // Encode Dd / Sd.
1523 Binary |= encodeVFPRd(MI, 1);
1524 break;
1525 }
1526
1527 if (Form == ARMII::VFPConv5Frm)
1528 // Encode Dn / Sn.
1529 Binary |= encodeVFPRn(MI, 2);
1530 else if (Form == ARMII::VFPConv3Frm)
1531 // Encode Dm / Sm.
1532 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001533
1534 emitWordLE(Binary);
1535}
1536
Chris Lattner33fabd72010-02-02 21:48:51 +00001537void ARMCodeEmitter::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001538 // Part of binary is determined by TableGn.
1539 unsigned Binary = getBinaryCodeForInstr(MI);
1540
1541 // Set the conditional execution predicate
1542 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1543
1544 unsigned OpIdx = 0;
1545
1546 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001547 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001548
1549 // Encode address base.
1550 const MachineOperand &Base = MI.getOperand(OpIdx++);
1551 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1552
1553 // If there is a non-zero immediate offset, encode it.
1554 if (Base.isReg()) {
1555 const MachineOperand &Offset = MI.getOperand(OpIdx);
1556 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1557 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1558 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001559 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001560 emitWordLE(Binary);
1561 return;
1562 }
1563 }
1564
1565 // If immediate offset is omitted, default to +0.
1566 Binary |= 1 << ARMII::U_BitShift;
1567
1568 emitWordLE(Binary);
1569}
1570
Bob Wilson87949d42010-03-17 21:16:45 +00001571void
1572ARMCodeEmitter::emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI) {
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001573 const TargetInstrDesc &TID = MI.getDesc();
1574 bool IsUpdating = (TID.TSFlags & ARMII::IndexModeMask) != 0;
1575
Evan Chengcd8e66a2008-11-11 21:48:44 +00001576 // Part of binary is determined by TableGn.
1577 unsigned Binary = getBinaryCodeForInstr(MI);
1578
1579 // Set the conditional execution predicate
1580 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1581
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001582 // Skip operand 0 of an instruction with base register update.
1583 unsigned OpIdx = 0;
1584 if (IsUpdating)
1585 ++OpIdx;
1586
Evan Chengcd8e66a2008-11-11 21:48:44 +00001587 // Set base address operand
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001588 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001589
1590 // Set addressing mode by modifying bits U(23) and P(24)
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001591 const MachineOperand &MO = MI.getOperand(OpIdx++);
Bob Wilsond4bfd542010-08-27 23:18:17 +00001592 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
Evan Chengcd8e66a2008-11-11 21:48:44 +00001593
1594 // Set bit W(21)
Bob Wilson2d357f62010-03-16 18:38:09 +00001595 if (IsUpdating)
Evan Chengcd8e66a2008-11-11 21:48:44 +00001596 Binary |= 0x1 << ARMII::W_BitShift;
1597
1598 // First register is encoded in Dd.
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001599 Binary |= encodeVFPRd(MI, OpIdx+2);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001600
Bob Wilsond4bfd542010-08-27 23:18:17 +00001601 // Count the number of registers.
Evan Chengcd8e66a2008-11-11 21:48:44 +00001602 unsigned NumRegs = 1;
Bob Wilsonbffb5b32010-03-13 07:34:35 +00001603 for (unsigned i = OpIdx+3, e = MI.getNumOperands(); i != e; ++i) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001604 const MachineOperand &MO = MI.getOperand(i);
1605 if (!MO.isReg() || MO.isImplicit())
1606 break;
1607 ++NumRegs;
1608 }
Shih-wei Liao5170b712010-05-26 00:02:28 +00001609 // Bit 8 will be set if <list> is consecutive 64-bit registers (e.g., D0)
1610 // Otherwise, it will be 0, in the case of 32-bit registers.
1611 if(Binary & 0x100)
1612 Binary |= NumRegs * 2;
1613 else
1614 Binary |= NumRegs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001615
1616 emitWordLE(Binary);
1617}
1618
Bob Wilson1a913ed2010-06-11 21:34:50 +00001619static unsigned encodeNEONRd(const MachineInstr &MI, unsigned OpIdx) {
1620 unsigned RegD = MI.getOperand(OpIdx).getReg();
1621 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001622 RegD = getARMRegisterNumbering(RegD);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001623 Binary |= (RegD & 0xf) << ARMII::RegRdShift;
1624 Binary |= ((RegD >> 4) & 1) << ARMII::D_BitShift;
1625 return Binary;
1626}
1627
Bob Wilson5e7b6072010-06-25 22:40:46 +00001628static unsigned encodeNEONRn(const MachineInstr &MI, unsigned OpIdx) {
1629 unsigned RegN = MI.getOperand(OpIdx).getReg();
1630 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001631 RegN = getARMRegisterNumbering(RegN);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001632 Binary |= (RegN & 0xf) << ARMII::RegRnShift;
1633 Binary |= ((RegN >> 4) & 1) << ARMII::N_BitShift;
1634 return Binary;
1635}
1636
Bob Wilson583a2a02010-06-25 21:17:19 +00001637static unsigned encodeNEONRm(const MachineInstr &MI, unsigned OpIdx) {
1638 unsigned RegM = MI.getOperand(OpIdx).getReg();
1639 unsigned Binary = 0;
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001640 RegM = getARMRegisterNumbering(RegM);
Bob Wilson583a2a02010-06-25 21:17:19 +00001641 Binary |= (RegM & 0xf);
1642 Binary |= ((RegM >> 4) & 1) << ARMII::M_BitShift;
1643 return Binary;
1644}
1645
Bob Wilsond896a972010-06-28 21:12:19 +00001646/// convertNEONDataProcToThumb - Convert the ARM mode encoding for a NEON
1647/// data-processing instruction to the corresponding Thumb encoding.
1648static unsigned convertNEONDataProcToThumb(unsigned Binary) {
1649 assert((Binary & 0xfe000000) == 0xf2000000 &&
1650 "not an ARM NEON data-processing instruction");
1651 unsigned UBit = (Binary >> 24) & 1;
1652 return 0xef000000 | (UBit << 28) | (Binary & 0xffffff);
1653}
1654
Bob Wilsond5a563d2010-06-29 17:34:07 +00001655void ARMCodeEmitter::emitNEONLaneInstruction(const MachineInstr &MI) {
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001656 unsigned Binary = getBinaryCodeForInstr(MI);
1657
Bob Wilsond5a563d2010-06-29 17:34:07 +00001658 unsigned RegTOpIdx, RegNOpIdx, LnOpIdx;
1659 const TargetInstrDesc &TID = MI.getDesc();
1660 if ((TID.TSFlags & ARMII::FormMask) == ARMII::NGetLnFrm) {
1661 RegTOpIdx = 0;
1662 RegNOpIdx = 1;
1663 LnOpIdx = 2;
1664 } else { // ARMII::NSetLnFrm
1665 RegTOpIdx = 2;
1666 RegNOpIdx = 0;
1667 LnOpIdx = 3;
1668 }
1669
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001670 // Set the conditional execution predicate
Bob Wilson5cdede42010-06-29 00:26:13 +00001671 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001672
Bob Wilsond5a563d2010-06-29 17:34:07 +00001673 unsigned RegT = MI.getOperand(RegTOpIdx).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001674 RegT = getARMRegisterNumbering(RegT);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001675 Binary |= (RegT << ARMII::RegRdShift);
Bob Wilsond5a563d2010-06-29 17:34:07 +00001676 Binary |= encodeNEONRn(MI, RegNOpIdx);
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001677
1678 unsigned LaneShift;
1679 if ((Binary & (1 << 22)) != 0)
1680 LaneShift = 0; // 8-bit elements
1681 else if ((Binary & (1 << 5)) != 0)
1682 LaneShift = 1; // 16-bit elements
1683 else
1684 LaneShift = 2; // 32-bit elements
1685
Bob Wilsond5a563d2010-06-29 17:34:07 +00001686 unsigned Lane = MI.getOperand(LnOpIdx).getImm() << LaneShift;
Bob Wilson52e4a0a2010-06-26 04:07:15 +00001687 unsigned Opc1 = Lane >> 2;
1688 unsigned Opc2 = Lane & 3;
1689 assert((Opc1 & 3) == 0 && "out-of-range lane number operand");
1690 Binary |= (Opc1 << 21);
1691 Binary |= (Opc2 << 5);
1692
1693 emitWordLE(Binary);
1694}
1695
Bob Wilson21773e72010-06-29 20:13:29 +00001696void ARMCodeEmitter::emitNEONDupInstruction(const MachineInstr &MI) {
1697 unsigned Binary = getBinaryCodeForInstr(MI);
1698
1699 // Set the conditional execution predicate
1700 Binary |= (IsThumb ? ARMCC::AL : II->getPredicate(&MI)) << ARMII::CondShift;
1701
1702 unsigned RegT = MI.getOperand(1).getReg();
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +00001703 RegT = getARMRegisterNumbering(RegT);
Bob Wilson21773e72010-06-29 20:13:29 +00001704 Binary |= (RegT << ARMII::RegRdShift);
1705 Binary |= encodeNEONRn(MI, 0);
1706 emitWordLE(Binary);
1707}
1708
Bob Wilson583a2a02010-06-25 21:17:19 +00001709void ARMCodeEmitter::emitNEON1RegModImmInstruction(const MachineInstr &MI) {
Bob Wilson1a913ed2010-06-11 21:34:50 +00001710 unsigned Binary = getBinaryCodeForInstr(MI);
1711 // Destination register is encoded in Dd.
1712 Binary |= encodeNEONRd(MI, 0);
1713 // Immediate fields: Op, Cmode, I, Imm3, Imm4
1714 unsigned Imm = MI.getOperand(1).getImm();
1715 unsigned Op = (Imm >> 12) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001716 unsigned Cmode = (Imm >> 8) & 0xf;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001717 unsigned I = (Imm >> 7) & 1;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001718 unsigned Imm3 = (Imm >> 4) & 0x7;
Bob Wilson1a913ed2010-06-11 21:34:50 +00001719 unsigned Imm4 = Imm & 0xf;
Bob Wilson08baddb2010-06-28 21:16:30 +00001720 Binary |= (I << 24) | (Imm3 << 16) | (Cmode << 8) | (Op << 5) | Imm4;
Bob Wilson62d24a42010-06-28 22:23:17 +00001721 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001722 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson1a913ed2010-06-11 21:34:50 +00001723 emitWordLE(Binary);
1724}
1725
Bob Wilson583a2a02010-06-25 21:17:19 +00001726void ARMCodeEmitter::emitNEON2RegInstruction(const MachineInstr &MI) {
Bob Wilson5e7b6072010-06-25 22:40:46 +00001727 const TargetInstrDesc &TID = MI.getDesc();
Bob Wilson583a2a02010-06-25 21:17:19 +00001728 unsigned Binary = getBinaryCodeForInstr(MI);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001729 // Destination register is encoded in Dd; source register in Dm.
1730 unsigned OpIdx = 0;
1731 Binary |= encodeNEONRd(MI, OpIdx++);
1732 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1733 ++OpIdx;
1734 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001735 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001736 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson583a2a02010-06-25 21:17:19 +00001737 // FIXME: This does not handle VDUPfdf or VDUPfqf.
1738 emitWordLE(Binary);
1739}
1740
Bob Wilson5e7b6072010-06-25 22:40:46 +00001741void ARMCodeEmitter::emitNEON3RegInstruction(const MachineInstr &MI) {
1742 const TargetInstrDesc &TID = MI.getDesc();
1743 unsigned Binary = getBinaryCodeForInstr(MI);
1744 // Destination register is encoded in Dd; source registers in Dn and Dm.
1745 unsigned OpIdx = 0;
1746 Binary |= encodeNEONRd(MI, OpIdx++);
1747 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1748 ++OpIdx;
1749 Binary |= encodeNEONRn(MI, OpIdx++);
1750 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1751 ++OpIdx;
1752 Binary |= encodeNEONRm(MI, OpIdx);
Bob Wilson62d24a42010-06-28 22:23:17 +00001753 if (IsThumb)
Bob Wilsond896a972010-06-28 21:12:19 +00001754 Binary = convertNEONDataProcToThumb(Binary);
Bob Wilson5e7b6072010-06-25 22:40:46 +00001755 // FIXME: This does not handle VMOVDneon or VMOVQ.
1756 emitWordLE(Binary);
1757}
1758
Evan Cheng7602e112008-09-02 06:52:38 +00001759#include "ARMGenCodeEmitter.inc"