blob: 198a965c75abdee4a5f2e89735339707894b7686 [file] [log] [blame]
Eric Christopherab695882010-07-21 22:26:11 +00001//===-- ARMFastISel.cpp - ARM FastISel implementation ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the ARM-specific support for the FastISel class. Some
11// of the target-specific code is generated by tablegen in the file
12// ARMGenFastISel.inc, which is #included here.
13//
14//===----------------------------------------------------------------------===//
15
16#include "ARM.h"
Eric Christopher456144e2010-08-19 00:37:05 +000017#include "ARMBaseInstrInfo.h"
Eric Christopherab695882010-07-21 22:26:11 +000018#include "ARMRegisterInfo.h"
19#include "ARMTargetMachine.h"
20#include "ARMSubtarget.h"
21#include "llvm/CallingConv.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/GlobalVariable.h"
24#include "llvm/Instructions.h"
25#include "llvm/IntrinsicInst.h"
26#include "llvm/CodeGen/Analysis.h"
27#include "llvm/CodeGen/FastISel.h"
28#include "llvm/CodeGen/FunctionLoweringInfo.h"
Eric Christopher0fe7d542010-08-17 01:25:29 +000029#include "llvm/CodeGen/MachineInstrBuilder.h"
30#include "llvm/CodeGen/MachineModuleInfo.h"
Eric Christopherab695882010-07-21 22:26:11 +000031#include "llvm/CodeGen/MachineConstantPool.h"
32#include "llvm/CodeGen/MachineFrameInfo.h"
33#include "llvm/CodeGen/MachineRegisterInfo.h"
34#include "llvm/Support/CallSite.h"
Eric Christopher038fea52010-08-17 00:46:57 +000035#include "llvm/Support/CommandLine.h"
Eric Christopherab695882010-07-21 22:26:11 +000036#include "llvm/Support/ErrorHandling.h"
37#include "llvm/Support/GetElementPtrTypeIterator.h"
Eric Christopher0fe7d542010-08-17 01:25:29 +000038#include "llvm/Target/TargetData.h"
39#include "llvm/Target/TargetInstrInfo.h"
40#include "llvm/Target/TargetLowering.h"
41#include "llvm/Target/TargetMachine.h"
Eric Christopherab695882010-07-21 22:26:11 +000042#include "llvm/Target/TargetOptions.h"
43using namespace llvm;
44
Eric Christopher038fea52010-08-17 00:46:57 +000045static cl::opt<bool>
46EnableARMFastISel("arm-fast-isel",
47 cl::desc("Turn on experimental ARM fast-isel support"),
48 cl::init(false), cl::Hidden);
49
Eric Christopherab695882010-07-21 22:26:11 +000050namespace {
51
52class ARMFastISel : public FastISel {
53
54 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
55 /// make the right decision when generating code for different targets.
56 const ARMSubtarget *Subtarget;
Eric Christopher0fe7d542010-08-17 01:25:29 +000057 const TargetMachine &TM;
58 const TargetInstrInfo &TII;
59 const TargetLowering &TLI;
Eric Christopher7fe55b72010-08-23 22:32:45 +000060 const ARMFunctionInfo *AFI;
Eric Christopherab695882010-07-21 22:26:11 +000061
62 public:
Eric Christopher0fe7d542010-08-17 01:25:29 +000063 explicit ARMFastISel(FunctionLoweringInfo &funcInfo)
64 : FastISel(funcInfo),
65 TM(funcInfo.MF->getTarget()),
66 TII(*TM.getInstrInfo()),
67 TLI(*TM.getTargetLowering()) {
Eric Christopherab695882010-07-21 22:26:11 +000068 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Eric Christopher7fe55b72010-08-23 22:32:45 +000069 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>();
Eric Christopherab695882010-07-21 22:26:11 +000070 }
71
Eric Christophercb592292010-08-20 00:20:31 +000072 // Code from FastISel.cpp.
Eric Christopher0fe7d542010-08-17 01:25:29 +000073 virtual unsigned FastEmitInst_(unsigned MachineInstOpcode,
74 const TargetRegisterClass *RC);
75 virtual unsigned FastEmitInst_r(unsigned MachineInstOpcode,
76 const TargetRegisterClass *RC,
77 unsigned Op0, bool Op0IsKill);
78 virtual unsigned FastEmitInst_rr(unsigned MachineInstOpcode,
79 const TargetRegisterClass *RC,
80 unsigned Op0, bool Op0IsKill,
81 unsigned Op1, bool Op1IsKill);
82 virtual unsigned FastEmitInst_ri(unsigned MachineInstOpcode,
83 const TargetRegisterClass *RC,
84 unsigned Op0, bool Op0IsKill,
85 uint64_t Imm);
86 virtual unsigned FastEmitInst_rf(unsigned MachineInstOpcode,
87 const TargetRegisterClass *RC,
88 unsigned Op0, bool Op0IsKill,
89 const ConstantFP *FPImm);
90 virtual unsigned FastEmitInst_i(unsigned MachineInstOpcode,
91 const TargetRegisterClass *RC,
92 uint64_t Imm);
93 virtual unsigned FastEmitInst_rri(unsigned MachineInstOpcode,
94 const TargetRegisterClass *RC,
95 unsigned Op0, bool Op0IsKill,
96 unsigned Op1, bool Op1IsKill,
97 uint64_t Imm);
98 virtual unsigned FastEmitInst_extractsubreg(MVT RetVT,
99 unsigned Op0, bool Op0IsKill,
100 uint32_t Idx);
Eric Christophercb592292010-08-20 00:20:31 +0000101
102 // Backend specific FastISel code.
Eric Christopherab695882010-07-21 22:26:11 +0000103 virtual bool TargetSelectInstruction(const Instruction *I);
104
105 #include "ARMGenFastISel.inc"
Eric Christopher83007122010-08-23 21:44:12 +0000106
107 // Instruction selection routines.
108 virtual bool ARMSelectLoad(const Instruction *I);
Eric Christopherab695882010-07-21 22:26:11 +0000109
Eric Christopher83007122010-08-23 21:44:12 +0000110 // Utility routines.
Eric Christopher456144e2010-08-19 00:37:05 +0000111 private:
Eric Christopherb1cc8482010-08-25 07:23:49 +0000112 bool isTypeLegal(const Type *Ty, EVT &VT);
113 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, unsigned Reg, int Offset);
Eric Christopherf06f3092010-08-24 00:50:47 +0000114 bool ARMLoadAlloca(const Instruction *I);
Eric Christophercb0b04b2010-08-24 00:07:24 +0000115 bool ARMComputeRegOffset(const Value *Obj, unsigned &Reg, int &Offset);
Eric Christopher83007122010-08-23 21:44:12 +0000116
Eric Christopher456144e2010-08-19 00:37:05 +0000117 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
118 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
119};
Eric Christopherab695882010-07-21 22:26:11 +0000120
121} // end anonymous namespace
122
123// #include "ARMGenCallingConv.inc"
124
Eric Christopher456144e2010-08-19 00:37:05 +0000125// DefinesOptionalPredicate - This is different from DefinesPredicate in that
126// we don't care about implicit defs here, just places we'll need to add a
127// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
128bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
129 const TargetInstrDesc &TID = MI->getDesc();
130 if (!TID.hasOptionalDef())
131 return false;
132
133 // Look to see if our OptionalDef is defining CPSR or CCR.
134 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
135 const MachineOperand &MO = MI->getOperand(i);
Eric Christopherf762fbe2010-08-20 00:36:24 +0000136 if (!MO.isReg() || !MO.isDef()) continue;
137 if (MO.getReg() == ARM::CPSR)
Eric Christopher456144e2010-08-19 00:37:05 +0000138 *CPSR = true;
139 }
140 return true;
141}
142
143// If the machine is predicable go ahead and add the predicate operands, if
144// it needs default CC operands add those.
145const MachineInstrBuilder &
146ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
147 MachineInstr *MI = &*MIB;
148
149 // Do we use a predicate?
150 if (TII.isPredicable(MI))
151 AddDefaultPred(MIB);
152
153 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
154 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christopher979e0a12010-08-19 15:35:27 +0000155 bool CPSR = false;
Eric Christopher456144e2010-08-19 00:37:05 +0000156 if (DefinesOptionalPredicate(MI, &CPSR)) {
157 if (CPSR)
158 AddDefaultT1CC(MIB);
159 else
160 AddDefaultCC(MIB);
161 }
162 return MIB;
163}
164
Eric Christopher0fe7d542010-08-17 01:25:29 +0000165unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode,
166 const TargetRegisterClass* RC) {
167 unsigned ResultReg = createResultReg(RC);
168 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
169
Eric Christopher456144e2010-08-19 00:37:05 +0000170 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg));
Eric Christopher0fe7d542010-08-17 01:25:29 +0000171 return ResultReg;
172}
173
174unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
175 const TargetRegisterClass *RC,
176 unsigned Op0, bool Op0IsKill) {
177 unsigned ResultReg = createResultReg(RC);
178 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
179
180 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000181 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000182 .addReg(Op0, Op0IsKill * RegState::Kill));
183 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000184 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000185 .addReg(Op0, Op0IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000186 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000187 TII.get(TargetOpcode::COPY), ResultReg)
188 .addReg(II.ImplicitDefs[0]));
189 }
190 return ResultReg;
191}
192
193unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
194 const TargetRegisterClass *RC,
195 unsigned Op0, bool Op0IsKill,
196 unsigned Op1, bool Op1IsKill) {
197 unsigned ResultReg = createResultReg(RC);
198 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
199
200 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000201 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000202 .addReg(Op0, Op0IsKill * RegState::Kill)
203 .addReg(Op1, Op1IsKill * RegState::Kill));
204 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000205 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000206 .addReg(Op0, Op0IsKill * RegState::Kill)
207 .addReg(Op1, Op1IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000208 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000209 TII.get(TargetOpcode::COPY), ResultReg)
210 .addReg(II.ImplicitDefs[0]));
211 }
212 return ResultReg;
213}
214
215unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
216 const TargetRegisterClass *RC,
217 unsigned Op0, bool Op0IsKill,
218 uint64_t Imm) {
219 unsigned ResultReg = createResultReg(RC);
220 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
221
222 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000223 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000224 .addReg(Op0, Op0IsKill * RegState::Kill)
225 .addImm(Imm));
226 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000227 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000228 .addReg(Op0, Op0IsKill * RegState::Kill)
229 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000230 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000231 TII.get(TargetOpcode::COPY), ResultReg)
232 .addReg(II.ImplicitDefs[0]));
233 }
234 return ResultReg;
235}
236
237unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
238 const TargetRegisterClass *RC,
239 unsigned Op0, bool Op0IsKill,
240 const ConstantFP *FPImm) {
241 unsigned ResultReg = createResultReg(RC);
242 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
243
244 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000245 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000246 .addReg(Op0, Op0IsKill * RegState::Kill)
247 .addFPImm(FPImm));
248 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000249 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000250 .addReg(Op0, Op0IsKill * RegState::Kill)
251 .addFPImm(FPImm));
Eric Christopher456144e2010-08-19 00:37:05 +0000252 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000253 TII.get(TargetOpcode::COPY), ResultReg)
254 .addReg(II.ImplicitDefs[0]));
255 }
256 return ResultReg;
257}
258
259unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
260 const TargetRegisterClass *RC,
261 unsigned Op0, bool Op0IsKill,
262 unsigned Op1, bool Op1IsKill,
263 uint64_t Imm) {
264 unsigned ResultReg = createResultReg(RC);
265 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
266
267 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000268 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000269 .addReg(Op0, Op0IsKill * RegState::Kill)
270 .addReg(Op1, Op1IsKill * RegState::Kill)
271 .addImm(Imm));
272 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000273 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000274 .addReg(Op0, Op0IsKill * RegState::Kill)
275 .addReg(Op1, Op1IsKill * RegState::Kill)
276 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000277 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000278 TII.get(TargetOpcode::COPY), ResultReg)
279 .addReg(II.ImplicitDefs[0]));
280 }
281 return ResultReg;
282}
283
284unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
285 const TargetRegisterClass *RC,
286 uint64_t Imm) {
287 unsigned ResultReg = createResultReg(RC);
288 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
289
290 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000291 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000292 .addImm(Imm));
293 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000294 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000295 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000296 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000297 TII.get(TargetOpcode::COPY), ResultReg)
298 .addReg(II.ImplicitDefs[0]));
299 }
300 return ResultReg;
301}
302
303unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT,
304 unsigned Op0, bool Op0IsKill,
305 uint32_t Idx) {
306 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
307 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
308 "Cannot yet extract from physregs");
Eric Christopher456144e2010-08-19 00:37:05 +0000309 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000310 DL, TII.get(TargetOpcode::COPY), ResultReg)
311 .addReg(Op0, getKillRegState(Op0IsKill), Idx));
312 return ResultReg;
313}
314
Eric Christopherb1cc8482010-08-25 07:23:49 +0000315bool ARMFastISel::isTypeLegal(const Type *Ty, EVT &VT) {
316 VT = TLI.getValueType(Ty, true);
317
318 // Only handle simple types.
319 if (VT == MVT::Other || !VT.isSimple()) return false;
320
Eric Christopherdc908042010-08-31 01:28:42 +0000321 // Handle all legal types, i.e. a register that will directly hold this
322 // value.
323 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000324}
325
Eric Christophercb0b04b2010-08-24 00:07:24 +0000326// Computes the Reg+Offset to get to an object.
327bool ARMFastISel::ARMComputeRegOffset(const Value *Obj, unsigned &Reg,
Eric Christopher83007122010-08-23 21:44:12 +0000328 int &Offset) {
329 // Some boilerplate from the X86 FastISel.
330 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000331 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000332 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000333 // Don't walk into other basic blocks; it's possible we haven't
334 // visited them yet, so the instructions may not yet be assigned
335 // virtual registers.
336 if (FuncInfo.MBBMap[I->getParent()] != FuncInfo.MBB)
337 return false;
338
339 Opcode = I->getOpcode();
340 U = I;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000341 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000342 Opcode = C->getOpcode();
343 U = C;
344 }
345
Eric Christophercb0b04b2010-08-24 00:07:24 +0000346 if (const PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000347 if (Ty->getAddressSpace() > 255)
348 // Fast instruction selection doesn't support the special
349 // address spaces.
350 return false;
351
352 switch (Opcode) {
353 default:
354 //errs() << "Failing Opcode is: " << *Op1 << "\n";
355 break;
356 case Instruction::Alloca: {
Eric Christopherf06f3092010-08-24 00:50:47 +0000357 assert(false && "Alloca should have been handled earlier!");
358 return false;
Eric Christopher83007122010-08-23 21:44:12 +0000359 }
360 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000361
362 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
363 //errs() << "Failing GV is: " << GV << "\n";
Eric Christopherf06f3092010-08-24 00:50:47 +0000364 (void)GV;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000365 return false;
366 }
367
368 // Try to get this in a register if nothing else has worked.
369 Reg = getRegForValue(Obj);
370 return Reg != 0;
Eric Christopher83007122010-08-23 21:44:12 +0000371}
372
Eric Christopherf06f3092010-08-24 00:50:47 +0000373bool ARMFastISel::ARMLoadAlloca(const Instruction *I) {
374 Value *Op0 = I->getOperand(0);
375
376 // Verify it's an alloca.
Eric Christophere24d66f2010-08-24 22:07:27 +0000377 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Op0)) {
378 DenseMap<const AllocaInst*, int>::iterator SI =
379 FuncInfo.StaticAllocaMap.find(AI);
Eric Christopherf06f3092010-08-24 00:50:47 +0000380
Eric Christophere24d66f2010-08-24 22:07:27 +0000381 if (SI != FuncInfo.StaticAllocaMap.end()) {
Eric Christopherb1cc8482010-08-25 07:23:49 +0000382 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
383 unsigned ResultReg = createResultReg(RC);
Eric Christophere24d66f2010-08-24 22:07:27 +0000384 TII.loadRegFromStackSlot(*FuncInfo.MBB, *FuncInfo.InsertPt,
Eric Christopherb1cc8482010-08-25 07:23:49 +0000385 ResultReg, SI->second, RC,
Eric Christophere24d66f2010-08-24 22:07:27 +0000386 TM.getRegisterInfo());
387 UpdateValueMap(I, ResultReg);
388 return true;
389 }
Eric Christopherf06f3092010-08-24 00:50:47 +0000390 }
Eric Christopherf06f3092010-08-24 00:50:47 +0000391 return false;
392}
393
Eric Christopherb1cc8482010-08-25 07:23:49 +0000394bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg,
395 unsigned Reg, int Offset) {
396
397 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000398
399 bool isThumb = AFI->isThumbFunction();
400 unsigned Opc;
401
Eric Christopherb1cc8482010-08-25 07:23:49 +0000402 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher548d1bb2010-08-30 23:48:26 +0000403 default:
404 assert(false && "Trying to emit for an unhandled type!");
405 return false;
Eric Christopherdc908042010-08-31 01:28:42 +0000406 case MVT::i32:
407 Opc = isThumb ? ARM::tLDR : ARM::LDR;
408 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000409 }
Eric Christopherdc908042010-08-31 01:28:42 +0000410
411 ResultReg = createResultReg(TLI.getRegClassFor(VT));
412
413 // TODO: Fix the Addressing modes so that these can share some code.
414 // Since this is a Thumb1 load this will work in Thumb1 or 2 mode.
415 if (isThumb)
416 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
417 TII.get(Opc), ResultReg)
418 .addReg(Reg).addImm(Offset).addReg(0));
419 else
420 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
421 TII.get(Opc), ResultReg)
422 .addReg(Reg).addReg(0).addImm(Offset));
423
424 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000425}
426
Eric Christopher83007122010-08-23 21:44:12 +0000427bool ARMFastISel::ARMSelectLoad(const Instruction *I) {
Eric Christopher882d62e2010-08-24 01:10:52 +0000428 // If we're an alloca we know we have a frame index and can emit the load
429 // directly in short order.
Eric Christopherf06f3092010-08-24 00:50:47 +0000430 if (ARMLoadAlloca(I))
431 return true;
Eric Christopher61c3f9a2010-08-25 08:43:57 +0000432
433 // Verify we have a legal type before going any further.
434 EVT VT;
435 if (!isTypeLegal(I->getType(), VT))
436 return false;
437
438 // Our register and offset with innocuous defaults.
439 unsigned Reg = 0;
440 int Offset = 0;
Eric Christopher8654c712010-08-23 23:14:31 +0000441
Eric Christopher83007122010-08-23 21:44:12 +0000442 // See if we can handle this as Reg + Offset
Eric Christophercb0b04b2010-08-24 00:07:24 +0000443 if (!ARMComputeRegOffset(I->getOperand(0), Reg, Offset))
Eric Christopher83007122010-08-23 21:44:12 +0000444 return false;
445
Eric Christopher8654c712010-08-23 23:14:31 +0000446 // Since the offset may be too large for the load instruction
447 // get the reg+offset into a register.
448 // TODO: Optimize this somewhat.
Eric Christopher8654c712010-08-23 23:14:31 +0000449 ARMCC::CondCodes Pred = ARMCC::AL;
450 unsigned PredReg = 0;
451
452 if (!AFI->isThumbFunction())
453 emitARMRegPlusImmediate(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher1dfb4d32010-08-23 23:28:04 +0000454 Reg, Reg, Offset, Pred, PredReg,
Eric Christopher8654c712010-08-23 23:14:31 +0000455 static_cast<const ARMBaseInstrInfo&>(TII));
456 else {
457 assert(AFI->isThumb2Function());
458 emitT2RegPlusImmediate(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher1dfb4d32010-08-23 23:28:04 +0000459 Reg, Reg, Offset, Pred, PredReg,
Eric Christopher8654c712010-08-23 23:14:31 +0000460 static_cast<const ARMBaseInstrInfo&>(TII));
461 }
Eric Christopher1dfb4d32010-08-23 23:28:04 +0000462
Eric Christopherb1cc8482010-08-25 07:23:49 +0000463 unsigned ResultReg;
Eric Christopher2012c7b2010-08-24 01:10:04 +0000464 // TODO: Verify the additions above work, otherwise we'll need to add the
465 // offset instead of 0 and do all sorts of operand munging.
Eric Christopherb1cc8482010-08-25 07:23:49 +0000466 if (!ARMEmitLoad(VT, ResultReg, Reg, 0)) return false;
467
Eric Christopherf06f3092010-08-24 00:50:47 +0000468 UpdateValueMap(I, ResultReg);
Eric Christopher83007122010-08-23 21:44:12 +0000469 return true;
470}
471
Eric Christopherab695882010-07-21 22:26:11 +0000472bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopher7fe55b72010-08-23 22:32:45 +0000473 // No Thumb-1 for now.
474 if (AFI->isThumbFunction() && !AFI->isThumb2Function()) return false;
475
Eric Christopherab695882010-07-21 22:26:11 +0000476 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +0000477 case Instruction::Load:
478 return ARMSelectLoad(I);
Eric Christopherab695882010-07-21 22:26:11 +0000479 default: break;
480 }
481 return false;
482}
483
484namespace llvm {
485 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopher038fea52010-08-17 00:46:57 +0000486 if (EnableARMFastISel) return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +0000487 return 0;
Eric Christopherab695882010-07-21 22:26:11 +0000488 }
489}