blob: 6218fceac1c215634d2cc684638a5a32fdb0ef44 [file] [log] [blame]
Evan Cheng148b6a42007-07-05 21:15:40 +00001//===-- ARM/ARMCodeEmitter.cpp - Convert ARM code to machine code ---------===//
2//
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"
27#include "llvm/CodeGen/MachineCodeEmitter.h"
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000028#include "llvm/CodeGen/JITCodeEmitter.h"
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +000029#include "llvm/CodeGen/ObjectCodeEmitter.h"
Evan Cheng057d0c32008-09-18 07:28:19 +000030#include "llvm/CodeGen/MachineConstantPool.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000031#include "llvm/CodeGen/MachineFunctionPass.h"
32#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng4df60f52008-11-07 09:06:08 +000033#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000034#include "llvm/CodeGen/Passes.h"
Evan Cheng148b6a42007-07-05 21:15:40 +000035#include "llvm/ADT/Statistic.h"
36#include "llvm/Support/Compiler.h"
Evan Cheng42d5ee062008-09-13 01:15:21 +000037#include "llvm/Support/Debug.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000038#include "llvm/Support/ErrorHandling.h"
39#include "llvm/Support/raw_ostream.h"
Evan Cheng4df60f52008-11-07 09:06:08 +000040#ifndef NDEBUG
41#include <iomanip>
42#endif
Evan Cheng148b6a42007-07-05 21:15:40 +000043using namespace llvm;
44
45STATISTIC(NumEmitted, "Number of machine instructions emitted");
46
47namespace {
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000048
49 class ARMCodeEmitter {
50 public:
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000051 /// getBinaryCodeForInstr - This function, generated by the
52 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
53 /// machine instructions.
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +000054 unsigned getBinaryCodeForInstr(const MachineInstr &MI);
55 };
56
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +000057 template<class CodeEmitter>
58 class VISIBILITY_HIDDEN Emitter : public MachineFunctionPass,
59 public ARMCodeEmitter {
Evan Cheng057d0c32008-09-18 07:28:19 +000060 ARMJITInfo *JTI;
61 const ARMInstrInfo *II;
62 const TargetData *TD;
63 TargetMachine &TM;
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +000064 CodeEmitter &MCE;
Evan Cheng938b9d82008-10-31 19:55:13 +000065 const std::vector<MachineConstantPoolEntry> *MCPEs;
Evan Cheng4df60f52008-11-07 09:06:08 +000066 const std::vector<MachineJumpTableEntry> *MJTEs;
67 bool IsPIC;
68
Evan Cheng148b6a42007-07-05 21:15:40 +000069 public:
70 static char ID;
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +000071 explicit Emitter(TargetMachine &tm, CodeEmitter &mce)
Evan Cheng057d0c32008-09-18 07:28:19 +000072 : MachineFunctionPass(&ID), JTI(0), II(0), TD(0), TM(tm),
Evan Cheng4df60f52008-11-07 09:06:08 +000073 MCE(mce), MCPEs(0), MJTEs(0),
74 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +000075 Emitter(TargetMachine &tm, CodeEmitter &mce,
Evan Cheng148b6a42007-07-05 21:15:40 +000076 const ARMInstrInfo &ii, const TargetData &td)
Evan Cheng057d0c32008-09-18 07:28:19 +000077 : MachineFunctionPass(&ID), JTI(0), II(&ii), TD(&td), TM(tm),
Evan Cheng4df60f52008-11-07 09:06:08 +000078 MCE(mce), MCPEs(0), MJTEs(0),
79 IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
Evan Cheng148b6a42007-07-05 21:15:40 +000080
81 bool runOnMachineFunction(MachineFunction &MF);
82
83 virtual const char *getPassName() const {
84 return "ARM Machine Code Emitter";
85 }
86
87 void emitInstruction(const MachineInstr &MI);
Evan Cheng7602e112008-09-02 06:52:38 +000088
89 private:
Evan Cheng057d0c32008-09-18 07:28:19 +000090
Evan Cheng83b5cf02008-11-05 23:22:34 +000091 void emitWordLE(unsigned Binary);
92
Evan Chengcb5201f2008-11-11 22:19:31 +000093 void emitDWordLE(uint64_t Binary);
94
Evan Cheng057d0c32008-09-18 07:28:19 +000095 void emitConstPoolInstruction(const MachineInstr &MI);
96
Evan Cheng90922132008-11-06 02:25:39 +000097 void emitMOVi2piecesInstruction(const MachineInstr &MI);
98
Evan Cheng4df60f52008-11-07 09:06:08 +000099 void emitLEApcrelJTInstruction(const MachineInstr &MI);
100
Evan Chenga9562552008-11-14 20:09:11 +0000101 void emitPseudoMoveInstruction(const MachineInstr &MI);
102
Evan Cheng83b5cf02008-11-05 23:22:34 +0000103 void addPCLabel(unsigned LabelID);
104
Evan Cheng057d0c32008-09-18 07:28:19 +0000105 void emitPseudoInstruction(const MachineInstr &MI);
106
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000107 unsigned getMachineSoRegOpValue(const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000108 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000109 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000110 unsigned OpIdx);
111
Evan Cheng90922132008-11-06 02:25:39 +0000112 unsigned getMachineSoImmOpValue(unsigned SoImm);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000113
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000114 unsigned getAddrModeSBit(const MachineInstr &MI,
115 const TargetInstrDesc &TID) const;
Evan Cheng49a9f292008-09-12 22:45:55 +0000116
Evan Cheng83b5cf02008-11-05 23:22:34 +0000117 void emitDataProcessingInstruction(const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000118 unsigned ImplicitRd = 0,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000119 unsigned ImplicitRn = 0);
Evan Cheng7602e112008-09-02 06:52:38 +0000120
Evan Cheng83b5cf02008-11-05 23:22:34 +0000121 void emitLoadStoreInstruction(const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000122 unsigned ImplicitRd = 0,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000123 unsigned ImplicitRn = 0);
Evan Chengedda31c2008-11-05 18:35:52 +0000124
Evan Cheng83b5cf02008-11-05 23:22:34 +0000125 void emitMiscLoadStoreInstruction(const MachineInstr &MI,
126 unsigned ImplicitRn = 0);
Evan Chengedda31c2008-11-05 18:35:52 +0000127
128 void emitLoadStoreMultipleInstruction(const MachineInstr &MI);
129
Evan Chengfbc9d412008-11-06 01:21:28 +0000130 void emitMulFrmInstruction(const MachineInstr &MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000131
Evan Cheng97f48c32008-11-06 22:15:19 +0000132 void emitExtendInstruction(const MachineInstr &MI);
133
Evan Cheng8b59db32008-11-07 01:41:35 +0000134 void emitMiscArithInstruction(const MachineInstr &MI);
135
Evan Chengedda31c2008-11-05 18:35:52 +0000136 void emitBranchInstruction(const MachineInstr &MI);
137
Evan Cheng437c1732008-11-07 22:30:53 +0000138 void emitInlineJumpTable(unsigned JTIndex);
Evan Cheng4df60f52008-11-07 09:06:08 +0000139
Evan Chengedda31c2008-11-05 18:35:52 +0000140 void emitMiscBranchInstruction(const MachineInstr &MI);
Evan Cheng7602e112008-09-02 06:52:38 +0000141
Evan Cheng96581d32008-11-11 02:11:05 +0000142 void emitVFPArithInstruction(const MachineInstr &MI);
143
Evan Cheng78be83d2008-11-11 19:40:26 +0000144 void emitVFPConversionInstruction(const MachineInstr &MI);
145
Evan Chengcd8e66a2008-11-11 21:48:44 +0000146 void emitVFPLoadStoreInstruction(const MachineInstr &MI);
147
148 void emitVFPLoadStoreMultipleInstruction(const MachineInstr &MI);
149
150 void emitMiscInstruction(const MachineInstr &MI);
151
Evan Cheng7602e112008-09-02 06:52:38 +0000152 /// getMachineOpValue - Return binary encoding of operand. If the machine
153 /// operand requires relocation, record the relocation and return zero.
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000154 unsigned getMachineOpValue(const MachineInstr &MI,const MachineOperand &MO);
Evan Cheng7602e112008-09-02 06:52:38 +0000155 unsigned getMachineOpValue(const MachineInstr &MI, unsigned OpIdx) {
156 return getMachineOpValue(MI, MI.getOperand(OpIdx));
157 }
Evan Cheng7602e112008-09-02 06:52:38 +0000158
Evan Cheng83b5cf02008-11-05 23:22:34 +0000159 /// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000160 ///
Evan Cheng83b5cf02008-11-05 23:22:34 +0000161 unsigned getShiftOp(unsigned Imm) const ;
Evan Cheng7602e112008-09-02 06:52:38 +0000162
163 /// Routines that handle operands which add machine relocations which are
Evan Cheng437c1732008-11-07 22:30:53 +0000164 /// fixed up by the relocation stage.
Evan Cheng057d0c32008-09-18 07:28:19 +0000165 void emitGlobalAddress(GlobalValue *GV, unsigned Reloc,
Evan Cheng413a89f2008-11-07 22:57:53 +0000166 bool NeedStub, intptr_t ACPV = 0);
Evan Cheng0ff94f72007-08-07 01:37:15 +0000167 void emitExternalSymbolAddress(const char *ES, unsigned Reloc);
Evan Cheng437c1732008-11-07 22:30:53 +0000168 void emitConstPoolAddress(unsigned CPI, unsigned Reloc);
169 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc);
170 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
171 intptr_t JTBase = 0);
Evan Cheng148b6a42007-07-05 21:15:40 +0000172 };
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000173 template <class CodeEmitter>
174 char Emitter<CodeEmitter>::ID = 0;
Evan Cheng148b6a42007-07-05 21:15:40 +0000175}
176
177/// createARMCodeEmitterPass - Return a pass that emits the collected ARM code
178/// to the specified MCE object.
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000179
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000180FunctionPass *llvm::createARMCodeEmitterPass(ARMBaseTargetMachine &TM,
181 MachineCodeEmitter &MCE) {
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000182 return new Emitter<MachineCodeEmitter>(TM, MCE);
183}
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000184FunctionPass *llvm::createARMJITCodeEmitterPass(ARMBaseTargetMachine &TM,
185 JITCodeEmitter &JCE) {
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000186 return new Emitter<JITCodeEmitter>(TM, JCE);
Evan Cheng148b6a42007-07-05 21:15:40 +0000187}
Bruno Cardoso Lopesac57e6e2009-07-06 05:09:34 +0000188FunctionPass *llvm::createARMObjectCodeEmitterPass(ARMBaseTargetMachine &TM,
189 ObjectCodeEmitter &OCE) {
190 return new Emitter<ObjectCodeEmitter>(TM, OCE);
191}
Bruno Cardoso Lopesa3f99f92009-05-30 20:51:52 +0000192
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000193template<class CodeEmitter>
194bool Emitter<CodeEmitter>::runOnMachineFunction(MachineFunction &MF) {
Evan Cheng148b6a42007-07-05 21:15:40 +0000195 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
196 MF.getTarget().getRelocationModel() != Reloc::Static) &&
197 "JIT relocation model must be set to static or default!");
198 II = ((ARMTargetMachine&)MF.getTarget()).getInstrInfo();
199 TD = ((ARMTargetMachine&)MF.getTarget()).getTargetData();
Evan Cheng057d0c32008-09-18 07:28:19 +0000200 JTI = ((ARMTargetMachine&)MF.getTarget()).getJITInfo();
Evan Cheng938b9d82008-10-31 19:55:13 +0000201 MCPEs = &MF.getConstantPool()->getConstants();
Evan Cheng4df60f52008-11-07 09:06:08 +0000202 MJTEs = &MF.getJumpTableInfo()->getJumpTables();
203 IsPIC = TM.getRelocationModel() == Reloc::PIC_;
Evan Cheng3cc82232008-11-08 07:38:22 +0000204 JTI->Initialize(MF, IsPIC);
Evan Cheng148b6a42007-07-05 21:15:40 +0000205
206 do {
Jim Grosbach764ab522009-08-11 15:33:49 +0000207 DEBUG(errs() << "JITTing function '"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000208 << MF.getFunction()->getName() << "'\n");
Evan Cheng148b6a42007-07-05 21:15:40 +0000209 MCE.startFunction(MF);
Jim Grosbach764ab522009-08-11 15:33:49 +0000210 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Evan Cheng148b6a42007-07-05 21:15:40 +0000211 MBB != E; ++MBB) {
212 MCE.StartMachineBasicBlock(MBB);
213 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
214 I != E; ++I)
215 emitInstruction(*I);
216 }
217 } while (MCE.finishFunction(MF));
218
219 return false;
220}
221
Evan Cheng83b5cf02008-11-05 23:22:34 +0000222/// getShiftOp - Return the shift opcode (bit[6:5]) of the immediate value.
Evan Cheng7602e112008-09-02 06:52:38 +0000223///
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000224template<class CodeEmitter>
225unsigned Emitter<CodeEmitter>::getShiftOp(unsigned Imm) const {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000226 switch (ARM_AM::getAM2ShiftOpc(Imm)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000227 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng7602e112008-09-02 06:52:38 +0000228 case ARM_AM::asr: return 2;
229 case ARM_AM::lsl: return 0;
230 case ARM_AM::lsr: return 1;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000231 case ARM_AM::ror:
Evan Cheng7602e112008-09-02 06:52:38 +0000232 case ARM_AM::rrx: return 3;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000233 }
Evan Cheng7602e112008-09-02 06:52:38 +0000234 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000235}
236
Evan Cheng7602e112008-09-02 06:52:38 +0000237/// getMachineOpValue - Return binary encoding of operand. If the machine
238/// operand requires relocation, record the relocation and return zero.
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000239template<class CodeEmitter>
240unsigned Emitter<CodeEmitter>::getMachineOpValue(const MachineInstr &MI,
241 const MachineOperand &MO) {
Dan Gohmand735b802008-10-03 15:45:36 +0000242 if (MO.isReg())
Evan Cheng7602e112008-09-02 06:52:38 +0000243 return ARMRegisterInfo::getRegisterNumbering(MO.getReg());
Dan Gohmand735b802008-10-03 15:45:36 +0000244 else if (MO.isImm())
Evan Cheng7602e112008-09-02 06:52:38 +0000245 return static_cast<unsigned>(MO.getImm());
Dan Gohmand735b802008-10-03 15:45:36 +0000246 else if (MO.isGlobal())
Jim Grosbach016d34c2008-10-03 15:52:42 +0000247 emitGlobalAddress(MO.getGlobal(), ARM::reloc_arm_branch, true);
Dan Gohmand735b802008-10-03 15:45:36 +0000248 else if (MO.isSymbol())
Evan Cheng10332512008-11-08 07:22:33 +0000249 emitExternalSymbolAddress(MO.getSymbolName(), ARM::reloc_arm_branch);
Evan Cheng580c0df2008-11-12 01:02:24 +0000250 else if (MO.isCPI()) {
251 const TargetInstrDesc &TID = MI.getDesc();
252 // For VFP load, the immediate offset is multiplied by 4.
253 unsigned Reloc = ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPLdStFrm)
254 ? ARM::reloc_arm_vfp_cp_entry : ARM::reloc_arm_cp_entry;
255 emitConstPoolAddress(MO.getIndex(), Reloc);
256 } else if (MO.isJTI())
Chris Lattner8aa797a2007-12-30 23:10:15 +0000257 emitJumpTableAddress(MO.getIndex(), ARM::reloc_arm_relative);
Dan Gohmand735b802008-10-03 15:45:36 +0000258 else if (MO.isMBB())
Evan Cheng4df60f52008-11-07 09:06:08 +0000259 emitMachineBasicBlock(MO.getMBB(), ARM::reloc_arm_branch);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000260 else {
Torok Edwindac237e2009-07-08 20:53:28 +0000261#ifndef NDEBUG
262 cerr << MO;
263#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000264 llvm_unreachable(0);
Evan Cheng2aa0e642008-09-13 01:55:59 +0000265 }
Evan Cheng7602e112008-09-02 06:52:38 +0000266 return 0;
Evan Cheng0ff94f72007-08-07 01:37:15 +0000267}
268
Evan Cheng057d0c32008-09-18 07:28:19 +0000269/// emitGlobalAddress - Emit the specified address to the code stream.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000270///
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000271template<class CodeEmitter>
272void Emitter<CodeEmitter>::emitGlobalAddress(GlobalValue *GV, unsigned Reloc,
273 bool NeedStub, intptr_t ACPV) {
274 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
275 GV, ACPV, NeedStub));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000276}
277
278/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
279/// be emitted to the current location in the function, and allow it to be PC
280/// relative.
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000281template<class CodeEmitter>
282void Emitter<CodeEmitter>::emitExternalSymbolAddress(const char *ES,
283 unsigned Reloc) {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000284 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
285 Reloc, ES));
286}
287
288/// emitConstPoolAddress - Arrange for the address of an constant pool
289/// to be emitted to the current location in the function, and allow it to be PC
290/// relative.
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000291template<class CodeEmitter>
292void Emitter<CodeEmitter>::emitConstPoolAddress(unsigned CPI,
293 unsigned Reloc) {
Evan Cheng0f282432008-10-29 23:55:43 +0000294 // Tell JIT emitter we'll resolve the address.
Evan Cheng0ff94f72007-08-07 01:37:15 +0000295 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000296 Reloc, CPI, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000297}
298
299/// emitJumpTableAddress - Arrange for the address of a jump table to
300/// be emitted to the current location in the function, and allow it to be PC
301/// relative.
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000302template<class CodeEmitter>
Jim Grosbach764ab522009-08-11 15:33:49 +0000303void Emitter<CodeEmitter>::emitJumpTableAddress(unsigned JTIndex,
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000304 unsigned Reloc) {
Evan Cheng0ff94f72007-08-07 01:37:15 +0000305 MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000306 Reloc, JTIndex, 0, true));
Evan Cheng0ff94f72007-08-07 01:37:15 +0000307}
308
Raul Herbster9c1a3822007-08-30 23:29:26 +0000309/// emitMachineBasicBlock - Emit the specified address basic block.
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000310template<class CodeEmitter>
311void Emitter<CodeEmitter>::emitMachineBasicBlock(MachineBasicBlock *BB,
312 unsigned Reloc, intptr_t JTBase) {
Raul Herbster9c1a3822007-08-30 23:29:26 +0000313 MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
Evan Cheng437c1732008-11-07 22:30:53 +0000314 Reloc, BB, JTBase));
Raul Herbster9c1a3822007-08-30 23:29:26 +0000315}
Evan Cheng0ff94f72007-08-07 01:37:15 +0000316
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000317template<class CodeEmitter>
318void Emitter<CodeEmitter>::emitWordLE(unsigned Binary) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000319#ifndef NDEBUG
320 DOUT << " 0x" << std::hex << std::setw(8) << std::setfill('0')
321 << Binary << std::dec << "\n";
322#endif
Evan Cheng83b5cf02008-11-05 23:22:34 +0000323 MCE.emitWordLE(Binary);
324}
325
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000326template<class CodeEmitter>
327void Emitter<CodeEmitter>::emitDWordLE(uint64_t Binary) {
Evan Chengcb5201f2008-11-11 22:19:31 +0000328#ifndef NDEBUG
329 DOUT << " 0x" << std::hex << std::setw(8) << std::setfill('0')
330 << (unsigned)Binary << std::dec << "\n";
331 DOUT << " 0x" << std::hex << std::setw(8) << std::setfill('0')
332 << (unsigned)(Binary >> 32) << std::dec << "\n";
333#endif
334 MCE.emitDWordLE(Binary);
335}
336
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000337template<class CodeEmitter>
338void Emitter<CodeEmitter>::emitInstruction(const MachineInstr &MI) {
Evan Cheng25e04782008-11-04 00:50:32 +0000339 DOUT << "JIT: " << (void*)MCE.getCurrentPCValue() << ":\t" << MI;
Evan Cheng42d5ee062008-09-13 01:15:21 +0000340
Jeffrey Yasskin75402822009-07-17 18:49:39 +0000341 MCE.processDebugLoc(MI.getDebugLoc());
342
Evan Cheng148b6a42007-07-05 21:15:40 +0000343 NumEmitted++; // Keep track of the # of mi's emitted
Evan Chengedda31c2008-11-05 18:35:52 +0000344 switch (MI.getDesc().TSFlags & ARMII::FormMask) {
Evan Chengffa6d962008-11-13 23:36:57 +0000345 default: {
Torok Edwinc23197a2009-07-14 16:55:14 +0000346 llvm_unreachable("Unhandled instruction encoding format!");
Evan Chengedda31c2008-11-05 18:35:52 +0000347 break;
Evan Chengffa6d962008-11-13 23:36:57 +0000348 }
Evan Chengedda31c2008-11-05 18:35:52 +0000349 case ARMII::Pseudo:
Evan Cheng057d0c32008-09-18 07:28:19 +0000350 emitPseudoInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000351 break;
352 case ARMII::DPFrm:
353 case ARMII::DPSoRegFrm:
354 emitDataProcessingInstruction(MI);
355 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000356 case ARMII::LdFrm:
357 case ARMII::StFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000358 emitLoadStoreInstruction(MI);
359 break;
Evan Cheng148cad82008-11-13 07:34:59 +0000360 case ARMII::LdMiscFrm:
361 case ARMII::StMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000362 emitMiscLoadStoreInstruction(MI);
363 break;
Evan Cheng3c4a4ff2008-11-12 07:18:38 +0000364 case ARMII::LdStMulFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000365 emitLoadStoreMultipleInstruction(MI);
366 break;
Evan Chengfbc9d412008-11-06 01:21:28 +0000367 case ARMII::MulFrm:
368 emitMulFrmInstruction(MI);
Evan Chengedda31c2008-11-05 18:35:52 +0000369 break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000370 case ARMII::ExtFrm:
371 emitExtendInstruction(MI);
372 break;
Evan Cheng8b59db32008-11-07 01:41:35 +0000373 case ARMII::ArithMiscFrm:
374 emitMiscArithInstruction(MI);
375 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000376 case ARMII::BrFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000377 emitBranchInstruction(MI);
378 break;
Evan Cheng12c3a532008-11-06 17:48:05 +0000379 case ARMII::BrMiscFrm:
Evan Chengedda31c2008-11-05 18:35:52 +0000380 emitMiscBranchInstruction(MI);
381 break;
Evan Cheng96581d32008-11-11 02:11:05 +0000382 // VFP instructions.
383 case ARMII::VFPUnaryFrm:
384 case ARMII::VFPBinaryFrm:
385 emitVFPArithInstruction(MI);
386 break;
Evan Cheng78be83d2008-11-11 19:40:26 +0000387 case ARMII::VFPConv1Frm:
388 case ARMII::VFPConv2Frm:
Evan Cheng0a0ab132008-11-11 22:46:12 +0000389 case ARMII::VFPConv3Frm:
Evan Cheng80a11982008-11-12 06:41:41 +0000390 case ARMII::VFPConv4Frm:
391 case ARMII::VFPConv5Frm:
Evan Cheng78be83d2008-11-11 19:40:26 +0000392 emitVFPConversionInstruction(MI);
393 break;
Evan Chengcd8e66a2008-11-11 21:48:44 +0000394 case ARMII::VFPLdStFrm:
395 emitVFPLoadStoreInstruction(MI);
396 break;
397 case ARMII::VFPLdStMulFrm:
398 emitVFPLoadStoreMultipleInstruction(MI);
399 break;
400 case ARMII::VFPMiscFrm:
401 emitMiscInstruction(MI);
402 break;
Evan Chengedda31c2008-11-05 18:35:52 +0000403 }
Evan Cheng0ff94f72007-08-07 01:37:15 +0000404}
405
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000406template<class CodeEmitter>
407void Emitter<CodeEmitter>::emitConstPoolInstruction(const MachineInstr &MI) {
Evan Cheng437c1732008-11-07 22:30:53 +0000408 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index.
409 unsigned CPIndex = MI.getOperand(1).getIndex(); // Actual cp entry index.
Evan Cheng938b9d82008-10-31 19:55:13 +0000410 const MachineConstantPoolEntry &MCPE = (*MCPEs)[CPIndex];
Jim Grosbach764ab522009-08-11 15:33:49 +0000411
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000412 // Remember the CONSTPOOL_ENTRY address for later relocation.
413 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
414
415 // Emit constpool island entry. In most cases, the actual values will be
416 // resolved and relocated after code emission.
417 if (MCPE.isMachineConstantPoolEntry()) {
418 ARMConstantPoolValue *ACPV =
419 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal);
420
Evan Cheng12c3a532008-11-06 17:48:05 +0000421 DOUT << " ** ARM constant pool #" << CPI << " @ "
Evan Cheng437c1732008-11-07 22:30:53 +0000422 << (void*)MCE.getCurrentPCValue() << " " << *ACPV << '\n';
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000423
424 GlobalValue *GV = ACPV->getGV();
425 if (GV) {
426 assert(!ACPV->isStub() && "Don't know how to deal this yet!");
Evan Chenge96a4902008-11-08 01:31:27 +0000427 if (ACPV->isNonLazyPointer())
Evan Cheng9ed2f802008-11-10 01:08:07 +0000428 MCE.addRelocation(MachineRelocation::getIndirectSymbol(
Evan Chenge96a4902008-11-08 01:31:27 +0000429 MCE.getCurrentPCOffset(), ARM::reloc_arm_machine_cp_entry, GV,
430 (intptr_t)ACPV, false));
Jim Grosbach764ab522009-08-11 15:33:49 +0000431 else
Evan Chenge96a4902008-11-08 01:31:27 +0000432 emitGlobalAddress(GV, ARM::reloc_arm_machine_cp_entry,
Evan Cheng35b0bfd2008-11-13 19:22:28 +0000433 ACPV->isStub() || isa<Function>(GV), (intptr_t)ACPV);
Evan Cheng25e04782008-11-04 00:50:32 +0000434 } else {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000435 assert(!ACPV->isNonLazyPointer() && "Don't know how to deal this yet!");
436 emitExternalSymbolAddress(ACPV->getSymbol(), ARM::reloc_arm_absolute);
437 }
Evan Cheng83b5cf02008-11-05 23:22:34 +0000438 emitWordLE(0);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000439 } else {
440 Constant *CV = MCPE.Val.ConstVal;
441
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000442 DEBUG({
443 errs() << " ** Constant pool #" << CPI << " @ "
444 << (void*)MCE.getCurrentPCValue() << " ";
445 if (const Function *F = dyn_cast<Function>(CV))
446 errs() << F->getName();
447 else
448 errs() << *CV;
449 errs() << '\n';
450 });
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000451
452 if (GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
Evan Cheng35b0bfd2008-11-13 19:22:28 +0000453 emitGlobalAddress(GV, ARM::reloc_arm_absolute, isa<Function>(GV));
Evan Cheng83b5cf02008-11-05 23:22:34 +0000454 emitWordLE(0);
Evan Chengcb5201f2008-11-11 22:19:31 +0000455 } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000456 uint32_t Val = *(uint32_t*)CI->getValue().getRawData();
Evan Cheng83b5cf02008-11-05 23:22:34 +0000457 emitWordLE(Val);
Evan Chengcb5201f2008-11-11 22:19:31 +0000458 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000459 if (CFP->getType() == Type::getFloatTy(CFP->getContext()))
Evan Chengcb5201f2008-11-11 22:19:31 +0000460 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
Owen Anderson1d0be152009-08-13 21:58:54 +0000461 else if (CFP->getType() == Type::getDoubleTy(CFP->getContext()))
Evan Chengcb5201f2008-11-11 22:19:31 +0000462 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
463 else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000464 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengcb5201f2008-11-11 22:19:31 +0000465 }
466 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000467 llvm_unreachable("Unable to handle this constantpool entry!");
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000468 }
469 }
470}
471
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000472template<class CodeEmitter>
473void Emitter<CodeEmitter>::emitMOVi2piecesInstruction(const MachineInstr &MI) {
Evan Cheng90922132008-11-06 02:25:39 +0000474 const MachineOperand &MO0 = MI.getOperand(0);
475 const MachineOperand &MO1 = MI.getOperand(1);
Evan Chenge7cbe412009-07-08 21:03:57 +0000476 assert(MO1.isImm() && ARM_AM::getSOImmVal(MO1.isImm()) != -1 &&
477 "Not a valid so_imm value!");
Evan Cheng90922132008-11-06 02:25:39 +0000478 unsigned V1 = ARM_AM::getSOImmTwoPartFirst(MO1.getImm());
479 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
480
481 // Emit the 'mov' instruction.
482 unsigned Binary = 0xd << 21; // mov: Insts{24-21} = 0b1101
483
484 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000485 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000486
487 // Encode Rd.
488 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
489
490 // Encode so_imm.
491 // Set bit I(25) to identify this is the immediate form of <shifter_op>
492 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000493 Binary |= getMachineSoImmOpValue(V1);
Evan Cheng90922132008-11-06 02:25:39 +0000494 emitWordLE(Binary);
495
496 // Now the 'orr' instruction.
497 Binary = 0xc << 21; // orr: Insts{24-21} = 0b1100
498
499 // Set the conditional execution predicate.
Evan Cheng97f48c32008-11-06 22:15:19 +0000500 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng90922132008-11-06 02:25:39 +0000501
502 // Encode Rd.
503 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRdShift;
504
505 // Encode Rn.
506 Binary |= getMachineOpValue(MI, MO0) << ARMII::RegRnShift;
507
508 // Encode so_imm.
509 // Set bit I(25) to identify this is the immediate form of <shifter_op>
510 Binary |= 1 << ARMII::I_BitShift;
Evan Chenge7cbe412009-07-08 21:03:57 +0000511 Binary |= getMachineSoImmOpValue(V2);
Evan Cheng90922132008-11-06 02:25:39 +0000512 emitWordLE(Binary);
513}
514
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000515template<class CodeEmitter>
516void Emitter<CodeEmitter>::emitLEApcrelJTInstruction(const MachineInstr &MI) {
Evan Cheng4df60f52008-11-07 09:06:08 +0000517 // It's basically add r, pc, (LJTI - $+8)
Jim Grosbach764ab522009-08-11 15:33:49 +0000518
Evan Cheng4df60f52008-11-07 09:06:08 +0000519 const TargetInstrDesc &TID = MI.getDesc();
520
521 // Emit the 'add' instruction.
522 unsigned Binary = 0x4 << 21; // add: Insts{24-31} = 0b0100
523
524 // Set the conditional execution predicate
525 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
526
527 // Encode S bit if MI modifies CPSR.
528 Binary |= getAddrModeSBit(MI, TID);
529
530 // Encode Rd.
531 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
532
533 // Encode Rn which is PC.
534 Binary |= ARMRegisterInfo::getRegisterNumbering(ARM::PC) << ARMII::RegRnShift;
535
536 // Encode the displacement.
Evan Cheng4df60f52008-11-07 09:06:08 +0000537 Binary |= 1 << ARMII::I_BitShift;
538 emitJumpTableAddress(MI.getOperand(1).getIndex(), ARM::reloc_arm_jt_base);
539
540 emitWordLE(Binary);
541}
542
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000543template<class CodeEmitter>
544void Emitter<CodeEmitter>::emitPseudoMoveInstruction(const MachineInstr &MI) {
Evan Chenga9562552008-11-14 20:09:11 +0000545 unsigned Opcode = MI.getDesc().Opcode;
546
547 // Part of binary is determined by TableGn.
548 unsigned Binary = getBinaryCodeForInstr(MI);
549
550 // Set the conditional execution predicate
551 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
552
553 // Encode S bit if MI modifies CPSR.
554 if (Opcode == ARM::MOVsrl_flag || Opcode == ARM::MOVsra_flag)
555 Binary |= 1 << ARMII::S_BitShift;
556
557 // Encode register def if there is one.
558 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRdShift;
559
560 // Encode the shift operation.
561 switch (Opcode) {
562 default: break;
563 case ARM::MOVrx:
564 // rrx
565 Binary |= 0x6 << 4;
566 break;
567 case ARM::MOVsrl_flag:
568 // lsr #1
569 Binary |= (0x2 << 4) | (1 << 7);
570 break;
571 case ARM::MOVsra_flag:
572 // asr #1
573 Binary |= (0x4 << 4) | (1 << 7);
574 break;
575 }
576
577 // Encode register Rm.
578 Binary |= getMachineOpValue(MI, 1);
579
580 emitWordLE(Binary);
581}
582
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000583template<class CodeEmitter>
584void Emitter<CodeEmitter>::addPCLabel(unsigned LabelID) {
Evan Cheng12c3a532008-11-06 17:48:05 +0000585 DOUT << " ** LPC" << LabelID << " @ "
Evan Cheng83b5cf02008-11-05 23:22:34 +0000586 << (void*)MCE.getCurrentPCValue() << '\n';
587 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
588}
589
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000590template<class CodeEmitter>
591void Emitter<CodeEmitter>::emitPseudoInstruction(const MachineInstr &MI) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000592 unsigned Opcode = MI.getDesc().Opcode;
593 switch (Opcode) {
594 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000595 llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction");//FIXME:
Evan Chengffa6d962008-11-13 23:36:57 +0000596 case TargetInstrInfo::INLINEASM: {
Evan Chenge3066ab2008-11-19 23:21:33 +0000597 // We allow inline assembler nodes with empty bodies - they can
598 // implicitly define registers, which is ok for JIT.
599 if (MI.getOperand(0).getSymbolName()[0]) {
Torok Edwin29fd0562009-07-12 07:15:17 +0000600 llvm_report_error("JIT does not support inline asm!");
Evan Chenge3066ab2008-11-19 23:21:33 +0000601 }
Evan Chengffa6d962008-11-13 23:36:57 +0000602 break;
603 }
604 case TargetInstrInfo::DBG_LABEL:
605 case TargetInstrInfo::EH_LABEL:
606 MCE.emitLabel(MI.getOperand(0).getImm());
607 break;
608 case TargetInstrInfo::IMPLICIT_DEF:
609 case TargetInstrInfo::DECLARE:
610 case ARM::DWARF_LOC:
611 // Do nothing.
612 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000613 case ARM::CONSTPOOL_ENTRY:
614 emitConstPoolInstruction(MI);
615 break;
616 case ARM::PICADD: {
Evan Cheng25e04782008-11-04 00:50:32 +0000617 // Remember of the address of the PC label for relocation later.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000618 addPCLabel(MI.getOperand(2).getImm());
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000619 // PICADD is just an add instruction that implicitly read pc.
Evan Cheng437c1732008-11-07 22:30:53 +0000620 emitDataProcessingInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000621 break;
622 }
623 case ARM::PICLDR:
624 case ARM::PICLDRB:
625 case ARM::PICSTR:
626 case ARM::PICSTRB: {
627 // Remember of the address of the PC label for relocation later.
628 addPCLabel(MI.getOperand(2).getImm());
629 // These are just load / store instructions that implicitly read pc.
Evan Cheng4df60f52008-11-07 09:06:08 +0000630 emitLoadStoreInstruction(MI, 0, ARM::PC);
Evan Cheng83b5cf02008-11-05 23:22:34 +0000631 break;
632 }
633 case ARM::PICLDRH:
634 case ARM::PICLDRSH:
635 case ARM::PICLDRSB:
636 case ARM::PICSTRH: {
637 // Remember of the address of the PC label for relocation later.
638 addPCLabel(MI.getOperand(2).getImm());
639 // These are just load / store instructions that implicitly read pc.
640 emitMiscLoadStoreInstruction(MI, ARM::PC);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000641 break;
642 }
Evan Cheng90922132008-11-06 02:25:39 +0000643 case ARM::MOVi2pieces:
644 // Two instructions to materialize a constant.
645 emitMOVi2piecesInstruction(MI);
646 break;
Evan Cheng4df60f52008-11-07 09:06:08 +0000647 case ARM::LEApcrelJT:
648 // Materialize jumptable address.
649 emitLEApcrelJTInstruction(MI);
650 break;
Evan Chenga9562552008-11-14 20:09:11 +0000651 case ARM::MOVrx:
652 case ARM::MOVsrl_flag:
653 case ARM::MOVsra_flag:
654 emitPseudoMoveInstruction(MI);
655 break;
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000656 }
657}
658
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000659template<class CodeEmitter>
660unsigned Emitter<CodeEmitter>::getMachineSoRegOpValue(
661 const MachineInstr &MI,
Evan Cheng49a9f292008-09-12 22:45:55 +0000662 const TargetInstrDesc &TID,
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000663 const MachineOperand &MO,
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000664 unsigned OpIdx) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000665 unsigned Binary = getMachineOpValue(MI, MO);
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000666
667 const MachineOperand &MO1 = MI.getOperand(OpIdx + 1);
668 const MachineOperand &MO2 = MI.getOperand(OpIdx + 2);
669 ARM_AM::ShiftOpc SOpc = ARM_AM::getSORegShOp(MO2.getImm());
670
671 // Encode the shift opcode.
672 unsigned SBits = 0;
673 unsigned Rs = MO1.getReg();
674 if (Rs) {
675 // Set shift operand (bit[7:4]).
676 // LSL - 0001
677 // LSR - 0011
678 // ASR - 0101
679 // ROR - 0111
680 // RRX - 0110 and bit[11:8] clear.
681 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000682 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000683 case ARM_AM::lsl: SBits = 0x1; break;
684 case ARM_AM::lsr: SBits = 0x3; break;
685 case ARM_AM::asr: SBits = 0x5; break;
686 case ARM_AM::ror: SBits = 0x7; break;
687 case ARM_AM::rrx: SBits = 0x6; break;
688 }
689 } else {
690 // Set shift operand (bit[6:4]).
691 // LSL - 000
692 // LSR - 010
693 // ASR - 100
694 // ROR - 110
695 switch (SOpc) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000696 default: llvm_unreachable("Unknown shift opc!");
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000697 case ARM_AM::lsl: SBits = 0x0; break;
698 case ARM_AM::lsr: SBits = 0x2; break;
699 case ARM_AM::asr: SBits = 0x4; break;
700 case ARM_AM::ror: SBits = 0x6; break;
701 }
702 }
703 Binary |= SBits << 4;
704 if (SOpc == ARM_AM::rrx)
705 return Binary;
706
707 // Encode the shift operation Rs or shift_imm (except rrx).
708 if (Rs) {
709 // Encode Rs bit[11:8].
710 assert(ARM_AM::getSORegOffset(MO2.getImm()) == 0);
711 return Binary |
712 (ARMRegisterInfo::getRegisterNumbering(Rs) << ARMII::RegRsShift);
713 }
714
715 // Encode shift_imm bit[11:7].
716 return Binary | ARM_AM::getSORegOffset(MO2.getImm()) << 7;
717}
718
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000719template<class CodeEmitter>
720unsigned Emitter<CodeEmitter>::getMachineSoImmOpValue(unsigned SoImm) {
Evan Chenge7cbe412009-07-08 21:03:57 +0000721 int SoImmVal = ARM_AM::getSOImmVal(SoImm);
722 assert(SoImmVal != -1 && "Not a valid so_imm value!");
723
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000724 // Encode rotate_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000725 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
Evan Cheng97f48c32008-11-06 22:15:19 +0000726 << ARMII::SoRotImmShift;
727
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000728 // Encode immed_8.
Evan Chenge7cbe412009-07-08 21:03:57 +0000729 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000730 return Binary;
731}
732
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000733template<class CodeEmitter>
734unsigned Emitter<CodeEmitter>::getAddrModeSBit(const MachineInstr &MI,
735 const TargetInstrDesc &TID) const {
Evan Cheng97c573d2008-11-20 02:25:51 +0000736 for (unsigned i = MI.getNumOperands(), e = TID.getNumOperands(); i != e; --i){
Evan Cheng49a9f292008-09-12 22:45:55 +0000737 const MachineOperand &MO = MI.getOperand(i-1);
Dan Gohmand735b802008-10-03 15:45:36 +0000738 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR)
Evan Cheng49a9f292008-09-12 22:45:55 +0000739 return 1 << ARMII::S_BitShift;
740 }
741 return 0;
742}
743
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000744template<class CodeEmitter>
745void Emitter<CodeEmitter>::emitDataProcessingInstruction(
746 const MachineInstr &MI,
Evan Cheng437c1732008-11-07 22:30:53 +0000747 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000748 unsigned ImplicitRn) {
Evan Chengedda31c2008-11-05 18:35:52 +0000749 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +0000750
Evan Cheng36a0aeb2009-07-06 22:23:46 +0000751 if (TID.Opcode == ARM::BFC) {
Benjamin Kramerd5fe92e2009-08-03 13:33:33 +0000752 llvm_report_error("ARMv6t2 JIT is not yet supported.");
Evan Cheng36a0aeb2009-07-06 22:23:46 +0000753 }
754
Evan Chengedda31c2008-11-05 18:35:52 +0000755 // Part of binary is determined by TableGn.
756 unsigned Binary = getBinaryCodeForInstr(MI);
757
Jim Grosbach33412622008-10-07 19:05:35 +0000758 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000759 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000760
Evan Cheng49a9f292008-09-12 22:45:55 +0000761 // Encode S bit if MI modifies CPSR.
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +0000762 Binary |= getAddrModeSBit(MI, TID);
Evan Cheng49a9f292008-09-12 22:45:55 +0000763
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000764 // Encode register def if there is one.
Evan Cheng49a9f292008-09-12 22:45:55 +0000765 unsigned NumDefs = TID.getNumDefs();
Evan Chenga964b7d2008-09-12 23:15:39 +0000766 unsigned OpIdx = 0;
Evan Cheng437c1732008-11-07 22:30:53 +0000767 if (NumDefs)
768 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
769 else if (ImplicitRd)
770 // Special handling for implicit use (e.g. PC).
771 Binary |= (ARMRegisterInfo::getRegisterNumbering(ImplicitRd)
772 << ARMII::RegRdShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000773
Evan Chengd87293c2008-11-06 08:47:38 +0000774 // If this is a two-address operand, skip it. e.g. MOVCCr operand 1.
775 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
776 ++OpIdx;
777
Jim Grosbachefd30ba2008-10-01 18:16:49 +0000778 // Encode first non-shifter register operand if there is one.
Evan Chengedda31c2008-11-05 18:35:52 +0000779 bool isUnary = TID.TSFlags & ARMII::UnaryDP;
780 if (!isUnary) {
Evan Cheng83b5cf02008-11-05 23:22:34 +0000781 if (ImplicitRn)
782 // Special handling for implicit use (e.g. PC).
783 Binary |= (ARMRegisterInfo::getRegisterNumbering(ImplicitRn)
Evan Chengedda31c2008-11-05 18:35:52 +0000784 << ARMII::RegRnShift);
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000785 else {
786 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRnShift;
787 ++OpIdx;
788 }
Evan Cheng7602e112008-09-02 06:52:38 +0000789 }
790
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000791 // Encode shifter operand.
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000792 const MachineOperand &MO = MI.getOperand(OpIdx);
Evan Chengedda31c2008-11-05 18:35:52 +0000793 if ((TID.TSFlags & ARMII::FormMask) == ARMII::DPSoRegFrm) {
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000794 // Encode SoReg.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000795 emitWordLE(Binary | getMachineSoRegOpValue(MI, TID, MO, OpIdx));
Evan Chengedda31c2008-11-05 18:35:52 +0000796 return;
797 }
Evan Chengeb4ed4b2008-10-31 19:10:44 +0000798
Evan Chengedda31c2008-11-05 18:35:52 +0000799 if (MO.isReg()) {
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000800 // Encode register Rm.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000801 emitWordLE(Binary | ARMRegisterInfo::getRegisterNumbering(MO.getReg()));
Evan Chengedda31c2008-11-05 18:35:52 +0000802 return;
803 }
Evan Cheng7602e112008-09-02 06:52:38 +0000804
Evan Cheng5f1db7b2008-09-12 22:01:15 +0000805 // Encode so_imm.
Evan Chenge7cbe412009-07-08 21:03:57 +0000806 Binary |= getMachineSoImmOpValue((unsigned)MO.getImm());
Evan Chengedda31c2008-11-05 18:35:52 +0000807
Evan Cheng83b5cf02008-11-05 23:22:34 +0000808 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +0000809}
810
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000811template<class CodeEmitter>
812void Emitter<CodeEmitter>::emitLoadStoreInstruction(
813 const MachineInstr &MI,
Evan Cheng4df60f52008-11-07 09:06:08 +0000814 unsigned ImplicitRd,
Evan Cheng83b5cf02008-11-05 23:22:34 +0000815 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +0000816 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +0000817 unsigned Form = TID.TSFlags & ARMII::FormMask;
818 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +0000819
Evan Chengedda31c2008-11-05 18:35:52 +0000820 // Part of binary is determined by TableGn.
821 unsigned Binary = getBinaryCodeForInstr(MI);
822
Jim Grosbach33412622008-10-07 19:05:35 +0000823 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000824 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +0000825
Evan Cheng4df60f52008-11-07 09:06:08 +0000826 unsigned OpIdx = 0;
Evan Cheng148cad82008-11-13 07:34:59 +0000827
828 // Operand 0 of a pre- and post-indexed store is the address base
829 // writeback. Skip it.
830 bool Skipped = false;
831 if (IsPrePost && Form == ARMII::StFrm) {
832 ++OpIdx;
833 Skipped = true;
834 }
835
836 // Set first operand
Evan Cheng4df60f52008-11-07 09:06:08 +0000837 if (ImplicitRd)
838 // Special handling for implicit use (e.g. PC).
839 Binary |= (ARMRegisterInfo::getRegisterNumbering(ImplicitRd)
840 << ARMII::RegRdShift);
841 else
842 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +0000843
844 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +0000845 if (ImplicitRn)
846 // Special handling for implicit use (e.g. PC).
847 Binary |= (ARMRegisterInfo::getRegisterNumbering(ImplicitRn)
848 << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +0000849 else
850 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +0000851
Evan Cheng05c356e2008-11-08 01:44:13 +0000852 // If this is a two-address operand, skip it. e.g. LDR_PRE.
Evan Cheng148cad82008-11-13 07:34:59 +0000853 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +0000854 ++OpIdx;
855
Evan Cheng83b5cf02008-11-05 23:22:34 +0000856 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +0000857 unsigned AM2Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +0000858 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +0000859
Evan Chenge7de7e32008-09-13 01:44:01 +0000860 // Set bit U(23) according to sign of immed value (positive or negative).
Evan Cheng83b5cf02008-11-05 23:22:34 +0000861 Binary |= ((ARM_AM::getAM2Op(AM2Opc) == ARM_AM::add ? 1 : 0) <<
Evan Chenge7de7e32008-09-13 01:44:01 +0000862 ARMII::U_BitShift);
Evan Cheng7602e112008-09-02 06:52:38 +0000863 if (!MO2.getReg()) { // is immediate
Evan Cheng83b5cf02008-11-05 23:22:34 +0000864 if (ARM_AM::getAM2Offset(AM2Opc))
Evan Cheng7602e112008-09-02 06:52:38 +0000865 // Set the value of offset_12 field
Evan Cheng83b5cf02008-11-05 23:22:34 +0000866 Binary |= ARM_AM::getAM2Offset(AM2Opc);
867 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +0000868 return;
Evan Cheng7602e112008-09-02 06:52:38 +0000869 }
870
871 // Set bit I(25), because this is not in immediate enconding.
872 Binary |= 1 << ARMII::I_BitShift;
873 assert(TargetRegisterInfo::isPhysicalRegister(MO2.getReg()));
874 // Set bit[3:0] to the corresponding Rm register
875 Binary |= ARMRegisterInfo::getRegisterNumbering(MO2.getReg());
876
Evan Cheng70632912008-11-12 07:34:37 +0000877 // If this instr is in scaled register offset/index instruction, set
Evan Cheng7602e112008-09-02 06:52:38 +0000878 // shift_immed(bit[11:7]) and shift(bit[6:5]) fields.
Evan Cheng83b5cf02008-11-05 23:22:34 +0000879 if (unsigned ShImm = ARM_AM::getAM2Offset(AM2Opc)) {
Evan Cheng70632912008-11-12 07:34:37 +0000880 Binary |= getShiftOp(AM2Opc) << ARMII::ShiftImmShift; // shift
881 Binary |= ShImm << ARMII::ShiftShift; // shift_immed
Evan Cheng7602e112008-09-02 06:52:38 +0000882 }
883
Evan Cheng83b5cf02008-11-05 23:22:34 +0000884 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +0000885}
886
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000887template<class CodeEmitter>
888void Emitter<CodeEmitter>::emitMiscLoadStoreInstruction(const MachineInstr &MI,
889 unsigned ImplicitRn) {
Evan Cheng05c356e2008-11-08 01:44:13 +0000890 const TargetInstrDesc &TID = MI.getDesc();
Evan Cheng148cad82008-11-13 07:34:59 +0000891 unsigned Form = TID.TSFlags & ARMII::FormMask;
892 bool IsPrePost = (TID.TSFlags & ARMII::IndexModeMask) != 0;
Evan Cheng05c356e2008-11-08 01:44:13 +0000893
Evan Chengedda31c2008-11-05 18:35:52 +0000894 // Part of binary is determined by TableGn.
895 unsigned Binary = getBinaryCodeForInstr(MI);
896
Jim Grosbach33412622008-10-07 19:05:35 +0000897 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +0000898 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Cheng057d0c32008-09-18 07:28:19 +0000899
Evan Cheng148cad82008-11-13 07:34:59 +0000900 unsigned OpIdx = 0;
901
902 // Operand 0 of a pre- and post-indexed store is the address base
903 // writeback. Skip it.
904 bool Skipped = false;
905 if (IsPrePost && Form == ARMII::StMiscFrm) {
906 ++OpIdx;
907 Skipped = true;
908 }
909
Evan Cheng7602e112008-09-02 06:52:38 +0000910 // Set first operand
Evan Cheng148cad82008-11-13 07:34:59 +0000911 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
Evan Cheng7602e112008-09-02 06:52:38 +0000912
Evan Cheng358dec52009-06-15 08:28:29 +0000913 // Skip LDRD and STRD's second operand.
914 if (TID.Opcode == ARM::LDRD || TID.Opcode == ARM::STRD)
915 ++OpIdx;
916
Evan Cheng7602e112008-09-02 06:52:38 +0000917 // Set second operand
Evan Cheng83b5cf02008-11-05 23:22:34 +0000918 if (ImplicitRn)
919 // Special handling for implicit use (e.g. PC).
920 Binary |= (ARMRegisterInfo::getRegisterNumbering(ImplicitRn)
921 << ARMII::RegRnShift);
Evan Cheng4df60f52008-11-07 09:06:08 +0000922 else
923 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRnShift;
Evan Cheng7602e112008-09-02 06:52:38 +0000924
Evan Cheng05c356e2008-11-08 01:44:13 +0000925 // If this is a two-address operand, skip it. e.g. LDRH_POST.
Evan Cheng148cad82008-11-13 07:34:59 +0000926 if (!Skipped && TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
Evan Cheng05c356e2008-11-08 01:44:13 +0000927 ++OpIdx;
928
Evan Cheng83b5cf02008-11-05 23:22:34 +0000929 const MachineOperand &MO2 = MI.getOperand(OpIdx);
Evan Chengd87293c2008-11-06 08:47:38 +0000930 unsigned AM3Opc = (ImplicitRn == ARM::PC)
Evan Cheng83b5cf02008-11-05 23:22:34 +0000931 ? 0 : MI.getOperand(OpIdx+1).getImm();
Evan Cheng7602e112008-09-02 06:52:38 +0000932
Evan Chenge7de7e32008-09-13 01:44:01 +0000933 // Set bit U(23) according to sign of immed value (positive or negative)
Evan Cheng83b5cf02008-11-05 23:22:34 +0000934 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) <<
Evan Cheng7602e112008-09-02 06:52:38 +0000935 ARMII::U_BitShift);
936
937 // If this instr is in register offset/index encoding, set bit[3:0]
938 // to the corresponding Rm register.
939 if (MO2.getReg()) {
940 Binary |= ARMRegisterInfo::getRegisterNumbering(MO2.getReg());
Evan Cheng83b5cf02008-11-05 23:22:34 +0000941 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +0000942 return;
Evan Cheng7602e112008-09-02 06:52:38 +0000943 }
944
Evan Chengd87293c2008-11-06 08:47:38 +0000945 // This instr is in immediate offset/index encoding, set bit 22 to 1.
Evan Cheng97f48c32008-11-06 22:15:19 +0000946 Binary |= 1 << ARMII::AM3_I_BitShift;
Evan Cheng83b5cf02008-11-05 23:22:34 +0000947 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) {
Evan Cheng7602e112008-09-02 06:52:38 +0000948 // Set operands
Evan Cheng70632912008-11-12 07:34:37 +0000949 Binary |= (ImmOffs >> 4) << ARMII::ImmHiShift; // immedH
950 Binary |= (ImmOffs & 0xF); // immedL
Evan Cheng7602e112008-09-02 06:52:38 +0000951 }
952
Evan Cheng83b5cf02008-11-05 23:22:34 +0000953 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +0000954}
955
Evan Chengcd8e66a2008-11-11 21:48:44 +0000956static unsigned getAddrModeUPBits(unsigned Mode) {
957 unsigned Binary = 0;
Evan Cheng7602e112008-09-02 06:52:38 +0000958
959 // Set addressing mode by modifying bits U(23) and P(24)
960 // IA - Increment after - bit U = 1 and bit P = 0
961 // IB - Increment before - bit U = 1 and bit P = 1
962 // DA - Decrement after - bit U = 0 and bit P = 0
963 // DB - Decrement before - bit U = 0 and bit P = 1
Evan Cheng7602e112008-09-02 06:52:38 +0000964 switch (Mode) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000965 default: llvm_unreachable("Unknown addressing sub-mode!");
Evan Cheng7602e112008-09-02 06:52:38 +0000966 case ARM_AM::da: break;
Evan Cheng97f48c32008-11-06 22:15:19 +0000967 case ARM_AM::db: Binary |= 0x1 << ARMII::P_BitShift; break;
968 case ARM_AM::ia: Binary |= 0x1 << ARMII::U_BitShift; break;
969 case ARM_AM::ib: Binary |= 0x3 << ARMII::U_BitShift; break;
Evan Cheng7602e112008-09-02 06:52:38 +0000970 }
971
Evan Chengcd8e66a2008-11-11 21:48:44 +0000972 return Binary;
973}
974
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +0000975template<class CodeEmitter>
976void Emitter<CodeEmitter>::emitLoadStoreMultipleInstruction(
977 const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +0000978 // Part of binary is determined by TableGn.
979 unsigned Binary = getBinaryCodeForInstr(MI);
980
981 // Set the conditional execution predicate
982 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
983
984 // Set base address operand
985 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRnShift;
986
987 // Set addressing mode by modifying bits U(23) and P(24)
988 const MachineOperand &MO = MI.getOperand(1);
989 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(MO.getImm()));
990
Evan Cheng7602e112008-09-02 06:52:38 +0000991 // Set bit W(21)
992 if (ARM_AM::getAM4WBFlag(MO.getImm()))
Evan Cheng97f48c32008-11-06 22:15:19 +0000993 Binary |= 0x1 << ARMII::W_BitShift;
Evan Cheng7602e112008-09-02 06:52:38 +0000994
995 // Set registers
996 for (unsigned i = 4, e = MI.getNumOperands(); i != e; ++i) {
997 const MachineOperand &MO = MI.getOperand(i);
Evan Chengcd8e66a2008-11-11 21:48:44 +0000998 if (!MO.isReg() || MO.isImplicit())
999 break;
Evan Cheng7602e112008-09-02 06:52:38 +00001000 unsigned RegNum = ARMRegisterInfo::getRegisterNumbering(MO.getReg());
1001 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
1002 RegNum < 16);
1003 Binary |= 0x1 << RegNum;
1004 }
1005
Evan Cheng83b5cf02008-11-05 23:22:34 +00001006 emitWordLE(Binary);
Evan Cheng7602e112008-09-02 06:52:38 +00001007}
1008
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001009template<class CodeEmitter>
1010void Emitter<CodeEmitter>::emitMulFrmInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001011 const TargetInstrDesc &TID = MI.getDesc();
1012
1013 // Part of binary is determined by TableGn.
1014 unsigned Binary = getBinaryCodeForInstr(MI);
1015
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001016 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001017 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001018
1019 // Encode S bit if MI modifies CPSR.
1020 Binary |= getAddrModeSBit(MI, TID);
1021
1022 // 32x32->64bit operations have two destination registers. The number
1023 // of register definitions will tell us if that's what we're dealing with.
Evan Cheng97f48c32008-11-06 22:15:19 +00001024 unsigned OpIdx = 0;
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001025 if (TID.getNumDefs() == 2)
1026 Binary |= getMachineOpValue (MI, OpIdx++) << ARMII::RegRdLoShift;
1027
1028 // Encode Rd
1029 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdHiShift;
1030
1031 // Encode Rm
1032 Binary |= getMachineOpValue(MI, OpIdx++);
1033
1034 // Encode Rs
1035 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRsShift;
1036
Evan Chengfbc9d412008-11-06 01:21:28 +00001037 // Many multiple instructions (e.g. MLA) have three src operands. Encode
1038 // it as Rn (for multiply, that's in the same offset as RdLo.
Evan Cheng97f48c32008-11-06 22:15:19 +00001039 if (TID.getNumOperands() > OpIdx &&
1040 !TID.OpInfo[OpIdx].isPredicate() &&
1041 !TID.OpInfo[OpIdx].isOptionalDef())
1042 Binary |= getMachineOpValue(MI, OpIdx) << ARMII::RegRdLoShift;
1043
1044 emitWordLE(Binary);
1045}
1046
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001047template<class CodeEmitter>
1048void Emitter<CodeEmitter>::emitExtendInstruction(const MachineInstr &MI) {
Evan Cheng97f48c32008-11-06 22:15:19 +00001049 const TargetInstrDesc &TID = MI.getDesc();
1050
1051 // Part of binary is determined by TableGn.
1052 unsigned Binary = getBinaryCodeForInstr(MI);
1053
1054 // Set the conditional execution predicate
1055 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1056
1057 unsigned OpIdx = 0;
1058
1059 // Encode Rd
1060 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1061
1062 const MachineOperand &MO1 = MI.getOperand(OpIdx++);
1063 const MachineOperand &MO2 = MI.getOperand(OpIdx);
1064 if (MO2.isReg()) {
1065 // Two register operand form.
1066 // Encode Rn.
1067 Binary |= getMachineOpValue(MI, MO1) << ARMII::RegRnShift;
1068
1069 // Encode Rm.
1070 Binary |= getMachineOpValue(MI, MO2);
1071 ++OpIdx;
1072 } else {
1073 Binary |= getMachineOpValue(MI, MO1);
1074 }
1075
1076 // Encode rot imm (0, 8, 16, or 24) if it has a rotate immediate operand.
1077 if (MI.getOperand(OpIdx).isImm() &&
1078 !TID.OpInfo[OpIdx].isPredicate() &&
1079 !TID.OpInfo[OpIdx].isOptionalDef())
1080 Binary |= (getMachineOpValue(MI, OpIdx) / 8) << ARMII::ExtRotImmShift;
Evan Chengfbc9d412008-11-06 01:21:28 +00001081
Evan Cheng83b5cf02008-11-05 23:22:34 +00001082 emitWordLE(Binary);
Jim Grosbach0a4b9dc2008-11-03 18:38:31 +00001083}
1084
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001085template<class CodeEmitter>
1086void Emitter<CodeEmitter>::emitMiscArithInstruction(const MachineInstr &MI) {
Evan Cheng8b59db32008-11-07 01:41:35 +00001087 const TargetInstrDesc &TID = MI.getDesc();
1088
1089 // Part of binary is determined by TableGn.
1090 unsigned Binary = getBinaryCodeForInstr(MI);
1091
1092 // Set the conditional execution predicate
1093 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1094
1095 unsigned OpIdx = 0;
1096
1097 // Encode Rd
1098 Binary |= getMachineOpValue(MI, OpIdx++) << ARMII::RegRdShift;
1099
1100 const MachineOperand &MO = MI.getOperand(OpIdx++);
1101 if (OpIdx == TID.getNumOperands() ||
1102 TID.OpInfo[OpIdx].isPredicate() ||
1103 TID.OpInfo[OpIdx].isOptionalDef()) {
1104 // Encode Rm and it's done.
1105 Binary |= getMachineOpValue(MI, MO);
1106 emitWordLE(Binary);
1107 return;
1108 }
1109
1110 // Encode Rn.
1111 Binary |= getMachineOpValue(MI, MO) << ARMII::RegRnShift;
1112
1113 // Encode Rm.
1114 Binary |= getMachineOpValue(MI, OpIdx++);
1115
1116 // Encode shift_imm.
1117 unsigned ShiftAmt = MI.getOperand(OpIdx).getImm();
1118 assert(ShiftAmt < 32 && "shift_imm range is 0 to 31!");
1119 Binary |= ShiftAmt << ARMII::ShiftShift;
Jim Grosbach764ab522009-08-11 15:33:49 +00001120
Evan Cheng8b59db32008-11-07 01:41:35 +00001121 emitWordLE(Binary);
1122}
1123
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001124template<class CodeEmitter>
1125void Emitter<CodeEmitter>::emitBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001126 const TargetInstrDesc &TID = MI.getDesc();
1127
Torok Edwindac237e2009-07-08 20:53:28 +00001128 if (TID.Opcode == ARM::TPsoft) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001129 llvm_unreachable("ARM::TPsoft FIXME"); // FIXME
Torok Edwindac237e2009-07-08 20:53:28 +00001130 }
Evan Cheng12c3a532008-11-06 17:48:05 +00001131
Evan Cheng7602e112008-09-02 06:52:38 +00001132 // Part of binary is determined by TableGn.
1133 unsigned Binary = getBinaryCodeForInstr(MI);
1134
Evan Chengedda31c2008-11-05 18:35:52 +00001135 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001136 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001137
1138 // Set signed_immed_24 field
1139 Binary |= getMachineOpValue(MI, 0);
1140
Evan Cheng83b5cf02008-11-05 23:22:34 +00001141 emitWordLE(Binary);
Evan Chengedda31c2008-11-05 18:35:52 +00001142}
1143
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001144template<class CodeEmitter>
1145void Emitter<CodeEmitter>::emitInlineJumpTable(unsigned JTIndex) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001146 // Remember the base address of the inline jump table.
Evan Cheng5788d1a2008-12-10 02:32:19 +00001147 uintptr_t JTBase = MCE.getCurrentPCValue();
Evan Cheng437c1732008-11-07 22:30:53 +00001148 JTI->addJumpTableBaseAddr(JTIndex, JTBase);
1149 DOUT << " ** Jump Table #" << JTIndex << " @ " << (void*)JTBase << '\n';
Evan Cheng4df60f52008-11-07 09:06:08 +00001150
1151 // Now emit the jump table entries.
1152 const std::vector<MachineBasicBlock*> &MBBs = (*MJTEs)[JTIndex].MBBs;
1153 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) {
1154 if (IsPIC)
1155 // DestBB address - JT base.
Evan Cheng437c1732008-11-07 22:30:53 +00001156 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_pic_jt, JTBase);
Evan Cheng4df60f52008-11-07 09:06:08 +00001157 else
1158 // Absolute DestBB address.
1159 emitMachineBasicBlock(MBBs[i], ARM::reloc_arm_absolute);
1160 emitWordLE(0);
1161 }
1162}
1163
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001164template<class CodeEmitter>
1165void Emitter<CodeEmitter>::emitMiscBranchInstruction(const MachineInstr &MI) {
Evan Chengedda31c2008-11-05 18:35:52 +00001166 const TargetInstrDesc &TID = MI.getDesc();
Evan Chengedda31c2008-11-05 18:35:52 +00001167
Evan Cheng437c1732008-11-07 22:30:53 +00001168 // Handle jump tables.
Evan Cheng90daf4d2009-07-25 00:13:11 +00001169 if (TID.Opcode == ARM::BR_JTr || TID.Opcode == ARM::BR_JTadd) {
Evan Cheng437c1732008-11-07 22:30:53 +00001170 // First emit a ldr pc, [] instruction.
1171 emitDataProcessingInstruction(MI, ARM::PC);
1172
1173 // Then emit the inline jump table.
Evan Chengc9a41532009-07-08 00:05:05 +00001174 unsigned JTIndex =
Evan Cheng90daf4d2009-07-25 00:13:11 +00001175 (TID.Opcode == ARM::BR_JTr)
Evan Cheng437c1732008-11-07 22:30:53 +00001176 ? MI.getOperand(1).getIndex() : MI.getOperand(2).getIndex();
1177 emitInlineJumpTable(JTIndex);
1178 return;
Evan Cheng90daf4d2009-07-25 00:13:11 +00001179 } else if (TID.Opcode == ARM::BR_JTm) {
Evan Cheng4df60f52008-11-07 09:06:08 +00001180 // First emit a ldr pc, [] instruction.
1181 emitLoadStoreInstruction(MI, ARM::PC);
1182
1183 // Then emit the inline jump table.
Evan Cheng437c1732008-11-07 22:30:53 +00001184 emitInlineJumpTable(MI.getOperand(3).getIndex());
Evan Cheng4df60f52008-11-07 09:06:08 +00001185 return;
1186 }
1187
Evan Chengedda31c2008-11-05 18:35:52 +00001188 // Part of binary is determined by TableGn.
1189 unsigned Binary = getBinaryCodeForInstr(MI);
1190
1191 // Set the conditional execution predicate
Evan Cheng97f48c32008-11-06 22:15:19 +00001192 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
Evan Chengedda31c2008-11-05 18:35:52 +00001193
1194 if (TID.Opcode == ARM::BX_RET)
1195 // The return register is LR.
1196 Binary |= ARMRegisterInfo::getRegisterNumbering(ARM::LR);
Jim Grosbach764ab522009-08-11 15:33:49 +00001197 else
Evan Chengedda31c2008-11-05 18:35:52 +00001198 // otherwise, set the return register
1199 Binary |= getMachineOpValue(MI, 0);
1200
Evan Cheng83b5cf02008-11-05 23:22:34 +00001201 emitWordLE(Binary);
Evan Cheng148b6a42007-07-05 21:15:40 +00001202}
Evan Cheng7602e112008-09-02 06:52:38 +00001203
Evan Cheng80a11982008-11-12 06:41:41 +00001204static unsigned encodeVFPRd(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001205 unsigned RegD = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001206 unsigned Binary = 0;
Evan Chengd06d48d2008-11-12 02:19:38 +00001207 bool isSPVFP = false;
Evan Cheng8295d992009-07-22 05:55:18 +00001208 RegD = ARMRegisterInfo::getRegisterNumbering(RegD, &isSPVFP);
Evan Chengd06d48d2008-11-12 02:19:38 +00001209 if (!isSPVFP)
1210 Binary |= RegD << ARMII::RegRdShift;
1211 else {
1212 Binary |= ((RegD & 0x1E) >> 1) << ARMII::RegRdShift;
1213 Binary |= (RegD & 0x01) << ARMII::D_BitShift;
1214 }
Evan Cheng80a11982008-11-12 06:41:41 +00001215 return Binary;
1216}
Evan Cheng78be83d2008-11-11 19:40:26 +00001217
Evan Cheng80a11982008-11-12 06:41:41 +00001218static unsigned encodeVFPRn(const MachineInstr &MI, unsigned OpIdx) {
Evan Chengd06d48d2008-11-12 02:19:38 +00001219 unsigned RegN = MI.getOperand(OpIdx).getReg();
Evan Cheng80a11982008-11-12 06:41:41 +00001220 unsigned Binary = 0;
1221 bool isSPVFP = false;
Evan Cheng8295d992009-07-22 05:55:18 +00001222 RegN = ARMRegisterInfo::getRegisterNumbering(RegN, &isSPVFP);
Evan Chengd06d48d2008-11-12 02:19:38 +00001223 if (!isSPVFP)
1224 Binary |= RegN << ARMII::RegRnShift;
1225 else {
1226 Binary |= ((RegN & 0x1E) >> 1) << ARMII::RegRnShift;
1227 Binary |= (RegN & 0x01) << ARMII::N_BitShift;
1228 }
Evan Cheng80a11982008-11-12 06:41:41 +00001229 return Binary;
1230}
Evan Chengd06d48d2008-11-12 02:19:38 +00001231
Evan Cheng80a11982008-11-12 06:41:41 +00001232static unsigned encodeVFPRm(const MachineInstr &MI, unsigned OpIdx) {
1233 unsigned RegM = MI.getOperand(OpIdx).getReg();
1234 unsigned Binary = 0;
1235 bool isSPVFP = false;
Evan Cheng8295d992009-07-22 05:55:18 +00001236 RegM = ARMRegisterInfo::getRegisterNumbering(RegM, &isSPVFP);
Evan Cheng80a11982008-11-12 06:41:41 +00001237 if (!isSPVFP)
1238 Binary |= RegM;
1239 else {
1240 Binary |= ((RegM & 0x1E) >> 1);
1241 Binary |= (RegM & 0x01) << ARMII::M_BitShift;
Evan Cheng78be83d2008-11-11 19:40:26 +00001242 }
Evan Cheng80a11982008-11-12 06:41:41 +00001243 return Binary;
1244}
1245
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001246template<class CodeEmitter>
1247void Emitter<CodeEmitter>::emitVFPArithInstruction(const MachineInstr &MI) {
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001248 const TargetInstrDesc &TID = MI.getDesc();
1249
1250 // Part of binary is determined by TableGn.
1251 unsigned Binary = getBinaryCodeForInstr(MI);
1252
1253 // Set the conditional execution predicate
1254 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1255
1256 unsigned OpIdx = 0;
1257 assert((Binary & ARMII::D_BitShift) == 0 &&
1258 (Binary & ARMII::N_BitShift) == 0 &&
1259 (Binary & ARMII::M_BitShift) == 0 && "VFP encoding bug!");
1260
1261 // Encode Dd / Sd.
1262 Binary |= encodeVFPRd(MI, OpIdx++);
1263
1264 // If this is a two-address operand, skip it, e.g. FMACD.
1265 if (TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1)
1266 ++OpIdx;
1267
1268 // Encode Dn / Sn.
1269 if ((TID.TSFlags & ARMII::FormMask) == ARMII::VFPBinaryFrm)
Evan Cheng3f4924e2008-11-12 08:14:21 +00001270 Binary |= encodeVFPRn(MI, OpIdx++);
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001271
1272 if (OpIdx == TID.getNumOperands() ||
1273 TID.OpInfo[OpIdx].isPredicate() ||
1274 TID.OpInfo[OpIdx].isOptionalDef()) {
1275 // FCMPEZD etc. has only one operand.
1276 emitWordLE(Binary);
1277 return;
1278 }
1279
1280 // Encode Dm / Sm.
1281 Binary |= encodeVFPRm(MI, OpIdx);
Jim Grosbach764ab522009-08-11 15:33:49 +00001282
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001283 emitWordLE(Binary);
1284}
1285
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001286template<class CodeEmitter>
1287void Emitter<CodeEmitter>::emitVFPConversionInstruction(
1288 const MachineInstr &MI) {
Evan Cheng80a11982008-11-12 06:41:41 +00001289 const TargetInstrDesc &TID = MI.getDesc();
1290 unsigned Form = TID.TSFlags & ARMII::FormMask;
1291
1292 // Part of binary is determined by TableGn.
1293 unsigned Binary = getBinaryCodeForInstr(MI);
1294
1295 // Set the conditional execution predicate
1296 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1297
1298 switch (Form) {
1299 default: break;
1300 case ARMII::VFPConv1Frm:
1301 case ARMII::VFPConv2Frm:
1302 case ARMII::VFPConv3Frm:
1303 // Encode Dd / Sd.
1304 Binary |= encodeVFPRd(MI, 0);
1305 break;
1306 case ARMII::VFPConv4Frm:
1307 // Encode Dn / Sn.
1308 Binary |= encodeVFPRn(MI, 0);
1309 break;
1310 case ARMII::VFPConv5Frm:
1311 // Encode Dm / Sm.
1312 Binary |= encodeVFPRm(MI, 0);
1313 break;
1314 }
1315
1316 switch (Form) {
1317 default: break;
1318 case ARMII::VFPConv1Frm:
1319 // Encode Dm / Sm.
1320 Binary |= encodeVFPRm(MI, 1);
Evan Cheng67fd91f2008-11-13 07:46:59 +00001321 break;
Evan Cheng80a11982008-11-12 06:41:41 +00001322 case ARMII::VFPConv2Frm:
1323 case ARMII::VFPConv3Frm:
1324 // Encode Dn / Sn.
1325 Binary |= encodeVFPRn(MI, 1);
1326 break;
1327 case ARMII::VFPConv4Frm:
1328 case ARMII::VFPConv5Frm:
1329 // Encode Dd / Sd.
1330 Binary |= encodeVFPRd(MI, 1);
1331 break;
1332 }
1333
1334 if (Form == ARMII::VFPConv5Frm)
1335 // Encode Dn / Sn.
1336 Binary |= encodeVFPRn(MI, 2);
1337 else if (Form == ARMII::VFPConv3Frm)
1338 // Encode Dm / Sm.
1339 Binary |= encodeVFPRm(MI, 2);
Evan Cheng78be83d2008-11-11 19:40:26 +00001340
1341 emitWordLE(Binary);
1342}
1343
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001344template<class CodeEmitter>
1345void Emitter<CodeEmitter>::emitVFPLoadStoreInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001346 // Part of binary is determined by TableGn.
1347 unsigned Binary = getBinaryCodeForInstr(MI);
1348
1349 // Set the conditional execution predicate
1350 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1351
1352 unsigned OpIdx = 0;
1353
1354 // Encode Dd / Sd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001355 Binary |= encodeVFPRd(MI, OpIdx++);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001356
1357 // Encode address base.
1358 const MachineOperand &Base = MI.getOperand(OpIdx++);
1359 Binary |= getMachineOpValue(MI, Base) << ARMII::RegRnShift;
1360
1361 // If there is a non-zero immediate offset, encode it.
1362 if (Base.isReg()) {
1363 const MachineOperand &Offset = MI.getOperand(OpIdx);
1364 if (unsigned ImmOffs = ARM_AM::getAM5Offset(Offset.getImm())) {
1365 if (ARM_AM::getAM5Op(Offset.getImm()) == ARM_AM::add)
1366 Binary |= 1 << ARMII::U_BitShift;
Evan Cheng607f1b42008-11-12 08:21:12 +00001367 Binary |= ImmOffs;
Evan Chengcd8e66a2008-11-11 21:48:44 +00001368 emitWordLE(Binary);
1369 return;
1370 }
1371 }
1372
1373 // If immediate offset is omitted, default to +0.
1374 Binary |= 1 << ARMII::U_BitShift;
1375
1376 emitWordLE(Binary);
1377}
1378
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001379template<class CodeEmitter>
1380void Emitter<CodeEmitter>::emitVFPLoadStoreMultipleInstruction(
1381 const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001382 // Part of binary is determined by TableGn.
1383 unsigned Binary = getBinaryCodeForInstr(MI);
1384
1385 // Set the conditional execution predicate
1386 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1387
1388 // Set base address operand
1389 Binary |= getMachineOpValue(MI, 0) << ARMII::RegRnShift;
1390
1391 // Set addressing mode by modifying bits U(23) and P(24)
1392 const MachineOperand &MO = MI.getOperand(1);
1393 Binary |= getAddrModeUPBits(ARM_AM::getAM5SubMode(MO.getImm()));
1394
1395 // Set bit W(21)
1396 if (ARM_AM::getAM5WBFlag(MO.getImm()))
1397 Binary |= 0x1 << ARMII::W_BitShift;
1398
1399 // First register is encoded in Dd.
Evan Cheng3c4a4ff2008-11-12 07:18:38 +00001400 Binary |= encodeVFPRd(MI, 4);
Evan Chengcd8e66a2008-11-11 21:48:44 +00001401
1402 // Number of registers are encoded in offset field.
1403 unsigned NumRegs = 1;
1404 for (unsigned i = 5, e = MI.getNumOperands(); i != e; ++i) {
1405 const MachineOperand &MO = MI.getOperand(i);
1406 if (!MO.isReg() || MO.isImplicit())
1407 break;
1408 ++NumRegs;
1409 }
1410 Binary |= NumRegs * 2;
1411
1412 emitWordLE(Binary);
1413}
1414
Bruno Cardoso Lopes434dd4f2009-06-01 19:57:37 +00001415template<class CodeEmitter>
1416void Emitter<CodeEmitter>::emitMiscInstruction(const MachineInstr &MI) {
Evan Chengcd8e66a2008-11-11 21:48:44 +00001417 // Part of binary is determined by TableGn.
1418 unsigned Binary = getBinaryCodeForInstr(MI);
1419
1420 // Set the conditional execution predicate
1421 Binary |= II->getPredicate(&MI) << ARMII::CondShift;
1422
1423 emitWordLE(Binary);
1424}
1425
Evan Cheng7602e112008-09-02 06:52:38 +00001426#include "ARMGenCodeEmitter.inc"