blob: 4892eae95833b2e0340d84983a4403bc29a644ea [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
Eric Christophereaa204b2010-09-02 01:39:14 +000062 // Convenience variable to avoid checking all the time.
63 bool isThumb;
64
Eric Christopherab695882010-07-21 22:26:11 +000065 public:
Eric Christopher0fe7d542010-08-17 01:25:29 +000066 explicit ARMFastISel(FunctionLoweringInfo &funcInfo)
67 : FastISel(funcInfo),
68 TM(funcInfo.MF->getTarget()),
69 TII(*TM.getInstrInfo()),
70 TLI(*TM.getTargetLowering()) {
Eric Christopherab695882010-07-21 22:26:11 +000071 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Eric Christopher7fe55b72010-08-23 22:32:45 +000072 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>();
Eric Christophereaa204b2010-09-02 01:39:14 +000073 isThumb = AFI->isThumbFunction();
Eric Christopherab695882010-07-21 22:26:11 +000074 }
75
Eric Christophercb592292010-08-20 00:20:31 +000076 // Code from FastISel.cpp.
Eric Christopher0fe7d542010-08-17 01:25:29 +000077 virtual unsigned FastEmitInst_(unsigned MachineInstOpcode,
78 const TargetRegisterClass *RC);
79 virtual unsigned FastEmitInst_r(unsigned MachineInstOpcode,
80 const TargetRegisterClass *RC,
81 unsigned Op0, bool Op0IsKill);
82 virtual unsigned FastEmitInst_rr(unsigned MachineInstOpcode,
83 const TargetRegisterClass *RC,
84 unsigned Op0, bool Op0IsKill,
85 unsigned Op1, bool Op1IsKill);
86 virtual unsigned FastEmitInst_ri(unsigned MachineInstOpcode,
87 const TargetRegisterClass *RC,
88 unsigned Op0, bool Op0IsKill,
89 uint64_t Imm);
90 virtual unsigned FastEmitInst_rf(unsigned MachineInstOpcode,
91 const TargetRegisterClass *RC,
92 unsigned Op0, bool Op0IsKill,
93 const ConstantFP *FPImm);
94 virtual unsigned FastEmitInst_i(unsigned MachineInstOpcode,
95 const TargetRegisterClass *RC,
96 uint64_t Imm);
97 virtual unsigned FastEmitInst_rri(unsigned MachineInstOpcode,
98 const TargetRegisterClass *RC,
99 unsigned Op0, bool Op0IsKill,
100 unsigned Op1, bool Op1IsKill,
101 uint64_t Imm);
102 virtual unsigned FastEmitInst_extractsubreg(MVT RetVT,
103 unsigned Op0, bool Op0IsKill,
104 uint32_t Idx);
Eric Christophercb592292010-08-20 00:20:31 +0000105
106 // Backend specific FastISel code.
Eric Christopherab695882010-07-21 22:26:11 +0000107 virtual bool TargetSelectInstruction(const Instruction *I);
Eric Christopher1b61ef42010-09-02 01:48:11 +0000108 virtual unsigned TargetMaterializeConstant(const Constant *C);
Eric Christopherab695882010-07-21 22:26:11 +0000109
110 #include "ARMGenFastISel.inc"
Eric Christopher83007122010-08-23 21:44:12 +0000111
112 // Instruction selection routines.
113 virtual bool ARMSelectLoad(const Instruction *I);
Eric Christopher543cf052010-09-01 22:16:27 +0000114 virtual bool ARMSelectStore(const Instruction *I);
Eric Christophere5734102010-09-03 00:35:47 +0000115 virtual bool ARMSelectBranch(const Instruction *I);
Eric Christopherab695882010-07-21 22:26:11 +0000116
Eric Christopher83007122010-08-23 21:44:12 +0000117 // Utility routines.
Eric Christopher456144e2010-08-19 00:37:05 +0000118 private:
Eric Christopherb1cc8482010-08-25 07:23:49 +0000119 bool isTypeLegal(const Type *Ty, EVT &VT);
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000120 bool isLoadTypeLegal(const Type *Ty, EVT &VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000121 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, unsigned Reg, int Offset);
Eric Christopher318b6ee2010-09-02 00:53:56 +0000122 bool ARMEmitStore(EVT VT, unsigned SrcReg, unsigned Reg, int Offset);
Eric Christopherf06f3092010-08-24 00:50:47 +0000123 bool ARMLoadAlloca(const Instruction *I);
Eric Christopher318b6ee2010-09-02 00:53:56 +0000124 bool ARMStoreAlloca(const Instruction *I, unsigned SrcReg);
Eric Christophercb0b04b2010-08-24 00:07:24 +0000125 bool ARMComputeRegOffset(const Value *Obj, unsigned &Reg, int &Offset);
Eric Christopher318b6ee2010-09-02 00:53:56 +0000126 bool ARMMaterializeConstant(const ConstantInt *Val, unsigned &Reg);
Eric Christopher83007122010-08-23 21:44:12 +0000127
Eric Christopher456144e2010-08-19 00:37:05 +0000128 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
129 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
130};
Eric Christopherab695882010-07-21 22:26:11 +0000131
132} // end anonymous namespace
133
134// #include "ARMGenCallingConv.inc"
135
Eric Christopher456144e2010-08-19 00:37:05 +0000136// DefinesOptionalPredicate - This is different from DefinesPredicate in that
137// we don't care about implicit defs here, just places we'll need to add a
138// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
139bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
140 const TargetInstrDesc &TID = MI->getDesc();
141 if (!TID.hasOptionalDef())
142 return false;
143
144 // Look to see if our OptionalDef is defining CPSR or CCR.
145 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
146 const MachineOperand &MO = MI->getOperand(i);
Eric Christopherf762fbe2010-08-20 00:36:24 +0000147 if (!MO.isReg() || !MO.isDef()) continue;
148 if (MO.getReg() == ARM::CPSR)
Eric Christopher456144e2010-08-19 00:37:05 +0000149 *CPSR = true;
150 }
151 return true;
152}
153
154// If the machine is predicable go ahead and add the predicate operands, if
155// it needs default CC operands add those.
156const MachineInstrBuilder &
157ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
158 MachineInstr *MI = &*MIB;
159
160 // Do we use a predicate?
161 if (TII.isPredicable(MI))
162 AddDefaultPred(MIB);
163
164 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
165 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christopher979e0a12010-08-19 15:35:27 +0000166 bool CPSR = false;
Eric Christopher456144e2010-08-19 00:37:05 +0000167 if (DefinesOptionalPredicate(MI, &CPSR)) {
168 if (CPSR)
169 AddDefaultT1CC(MIB);
170 else
171 AddDefaultCC(MIB);
172 }
173 return MIB;
174}
175
Eric Christopher0fe7d542010-08-17 01:25:29 +0000176unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode,
177 const TargetRegisterClass* RC) {
178 unsigned ResultReg = createResultReg(RC);
179 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
180
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 return ResultReg;
183}
184
185unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
186 const TargetRegisterClass *RC,
187 unsigned Op0, bool Op0IsKill) {
188 unsigned ResultReg = createResultReg(RC);
189 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
190
191 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000192 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000193 .addReg(Op0, Op0IsKill * RegState::Kill));
194 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000195 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000196 .addReg(Op0, Op0IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000197 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000198 TII.get(TargetOpcode::COPY), ResultReg)
199 .addReg(II.ImplicitDefs[0]));
200 }
201 return ResultReg;
202}
203
204unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
205 const TargetRegisterClass *RC,
206 unsigned Op0, bool Op0IsKill,
207 unsigned Op1, bool Op1IsKill) {
208 unsigned ResultReg = createResultReg(RC);
209 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
210
211 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000212 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000213 .addReg(Op0, Op0IsKill * RegState::Kill)
214 .addReg(Op1, Op1IsKill * RegState::Kill));
215 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000216 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000217 .addReg(Op0, Op0IsKill * RegState::Kill)
218 .addReg(Op1, Op1IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000219 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000220 TII.get(TargetOpcode::COPY), ResultReg)
221 .addReg(II.ImplicitDefs[0]));
222 }
223 return ResultReg;
224}
225
226unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
227 const TargetRegisterClass *RC,
228 unsigned Op0, bool Op0IsKill,
229 uint64_t Imm) {
230 unsigned ResultReg = createResultReg(RC);
231 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
232
233 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000234 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000235 .addReg(Op0, Op0IsKill * RegState::Kill)
236 .addImm(Imm));
237 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000238 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000239 .addReg(Op0, Op0IsKill * RegState::Kill)
240 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000241 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000242 TII.get(TargetOpcode::COPY), ResultReg)
243 .addReg(II.ImplicitDefs[0]));
244 }
245 return ResultReg;
246}
247
248unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
249 const TargetRegisterClass *RC,
250 unsigned Op0, bool Op0IsKill,
251 const ConstantFP *FPImm) {
252 unsigned ResultReg = createResultReg(RC);
253 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
254
255 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000256 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000257 .addReg(Op0, Op0IsKill * RegState::Kill)
258 .addFPImm(FPImm));
259 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000260 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000261 .addReg(Op0, Op0IsKill * RegState::Kill)
262 .addFPImm(FPImm));
Eric Christopher456144e2010-08-19 00:37:05 +0000263 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000264 TII.get(TargetOpcode::COPY), ResultReg)
265 .addReg(II.ImplicitDefs[0]));
266 }
267 return ResultReg;
268}
269
270unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
271 const TargetRegisterClass *RC,
272 unsigned Op0, bool Op0IsKill,
273 unsigned Op1, bool Op1IsKill,
274 uint64_t Imm) {
275 unsigned ResultReg = createResultReg(RC);
276 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
277
278 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000279 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000280 .addReg(Op0, Op0IsKill * RegState::Kill)
281 .addReg(Op1, Op1IsKill * RegState::Kill)
282 .addImm(Imm));
283 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000284 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000285 .addReg(Op0, Op0IsKill * RegState::Kill)
286 .addReg(Op1, Op1IsKill * RegState::Kill)
287 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000288 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000289 TII.get(TargetOpcode::COPY), ResultReg)
290 .addReg(II.ImplicitDefs[0]));
291 }
292 return ResultReg;
293}
294
295unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
296 const TargetRegisterClass *RC,
297 uint64_t Imm) {
298 unsigned ResultReg = createResultReg(RC);
299 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
300
301 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000302 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000303 .addImm(Imm));
304 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000305 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000306 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000307 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000308 TII.get(TargetOpcode::COPY), ResultReg)
309 .addReg(II.ImplicitDefs[0]));
310 }
311 return ResultReg;
312}
313
314unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT,
315 unsigned Op0, bool Op0IsKill,
316 uint32_t Idx) {
317 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
318 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
319 "Cannot yet extract from physregs");
Eric Christopher456144e2010-08-19 00:37:05 +0000320 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000321 DL, TII.get(TargetOpcode::COPY), ResultReg)
322 .addReg(Op0, getKillRegState(Op0IsKill), Idx));
323 return ResultReg;
324}
325
Eric Christopher1b61ef42010-09-02 01:48:11 +0000326unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
Eric Christopher56d2b722010-09-02 23:43:26 +0000327 EVT VT = TLI.getValueType(C->getType(), true);
328
329 // Only handle simple types.
330 if (!VT.isSimple()) return 0;
331
332 // TODO: This should be safe for fp because they're just bits from the
333 // Constant.
334 // TODO: Theoretically we could materialize fp constants with instructions
335 // from VFP3.
336
337 // MachineConstantPool wants an explicit alignment.
338 unsigned Align = TD.getPrefTypeAlignment(C->getType());
339 if (Align == 0) {
340 // TODO: Figure out if this is correct.
341 Align = TD.getTypeAllocSize(C->getType());
342 }
343 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
344
345 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
346 // Different addressing modes between ARM/Thumb2 for constant pool loads.
347 if (isThumb)
348 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
349 TII.get(ARM::t2LDRpci))
350 .addReg(DestReg).addConstantPoolIndex(Idx));
351 else
352 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
353 TII.get(ARM::LDRcp))
354 .addReg(DestReg).addConstantPoolIndex(Idx)
355 .addReg(0).addImm(0));
356
357 return DestReg;
Eric Christopher1b61ef42010-09-02 01:48:11 +0000358}
359
Eric Christopherb1cc8482010-08-25 07:23:49 +0000360bool ARMFastISel::isTypeLegal(const Type *Ty, EVT &VT) {
361 VT = TLI.getValueType(Ty, true);
362
363 // Only handle simple types.
364 if (VT == MVT::Other || !VT.isSimple()) return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000365
Eric Christopherdc908042010-08-31 01:28:42 +0000366 // Handle all legal types, i.e. a register that will directly hold this
367 // value.
368 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000369}
370
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000371bool ARMFastISel::isLoadTypeLegal(const Type *Ty, EVT &VT) {
372 if (isTypeLegal(Ty, VT)) return true;
373
374 // If this is a type than can be sign or zero-extended to a basic operation
375 // go ahead and accept it now.
376 if (VT == MVT::i8 || VT == MVT::i16)
377 return true;
378
379 return false;
380}
381
Eric Christophercb0b04b2010-08-24 00:07:24 +0000382// Computes the Reg+Offset to get to an object.
383bool ARMFastISel::ARMComputeRegOffset(const Value *Obj, unsigned &Reg,
Eric Christopher83007122010-08-23 21:44:12 +0000384 int &Offset) {
385 // Some boilerplate from the X86 FastISel.
386 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000387 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000388 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000389 // Don't walk into other basic blocks; it's possible we haven't
390 // visited them yet, so the instructions may not yet be assigned
391 // virtual registers.
392 if (FuncInfo.MBBMap[I->getParent()] != FuncInfo.MBB)
393 return false;
394
395 Opcode = I->getOpcode();
396 U = I;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000397 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000398 Opcode = C->getOpcode();
399 U = C;
400 }
401
Eric Christophercb0b04b2010-08-24 00:07:24 +0000402 if (const PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000403 if (Ty->getAddressSpace() > 255)
404 // Fast instruction selection doesn't support the special
405 // address spaces.
406 return false;
407
408 switch (Opcode) {
409 default:
410 //errs() << "Failing Opcode is: " << *Op1 << "\n";
411 break;
412 case Instruction::Alloca: {
Eric Christopherf06f3092010-08-24 00:50:47 +0000413 assert(false && "Alloca should have been handled earlier!");
414 return false;
Eric Christopher83007122010-08-23 21:44:12 +0000415 }
416 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000417
418 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
419 //errs() << "Failing GV is: " << GV << "\n";
Eric Christopherf06f3092010-08-24 00:50:47 +0000420 (void)GV;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000421 return false;
422 }
423
424 // Try to get this in a register if nothing else has worked.
425 Reg = getRegForValue(Obj);
Eric Christopher318b6ee2010-09-02 00:53:56 +0000426 if (Reg == 0) return false;
427
428 // Since the offset may be too large for the load instruction
429 // get the reg+offset into a register.
430 // TODO: Verify the additions work, otherwise we'll need to add the
431 // offset instead of 0 to the instructions and do all sorts of operand
432 // munging.
433 // TODO: Optimize this somewhat.
434 if (Offset != 0) {
435 ARMCC::CondCodes Pred = ARMCC::AL;
436 unsigned PredReg = 0;
437
Eric Christophereaa204b2010-09-02 01:39:14 +0000438 if (!isThumb)
Eric Christopher318b6ee2010-09-02 00:53:56 +0000439 emitARMRegPlusImmediate(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
440 Reg, Reg, Offset, Pred, PredReg,
441 static_cast<const ARMBaseInstrInfo&>(TII));
442 else {
443 assert(AFI->isThumb2Function());
444 emitT2RegPlusImmediate(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
445 Reg, Reg, Offset, Pred, PredReg,
446 static_cast<const ARMBaseInstrInfo&>(TII));
447 }
448 }
449
450 return true;
Eric Christopher83007122010-08-23 21:44:12 +0000451}
452
Eric Christopherf06f3092010-08-24 00:50:47 +0000453bool ARMFastISel::ARMLoadAlloca(const Instruction *I) {
454 Value *Op0 = I->getOperand(0);
455
456 // Verify it's an alloca.
Eric Christophere24d66f2010-08-24 22:07:27 +0000457 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Op0)) {
458 DenseMap<const AllocaInst*, int>::iterator SI =
459 FuncInfo.StaticAllocaMap.find(AI);
Eric Christopherf06f3092010-08-24 00:50:47 +0000460
Eric Christophere24d66f2010-08-24 22:07:27 +0000461 if (SI != FuncInfo.StaticAllocaMap.end()) {
Eric Christopherb1cc8482010-08-25 07:23:49 +0000462 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
463 unsigned ResultReg = createResultReg(RC);
Eric Christophere24d66f2010-08-24 22:07:27 +0000464 TII.loadRegFromStackSlot(*FuncInfo.MBB, *FuncInfo.InsertPt,
Eric Christopherb1cc8482010-08-25 07:23:49 +0000465 ResultReg, SI->second, RC,
Eric Christophere24d66f2010-08-24 22:07:27 +0000466 TM.getRegisterInfo());
467 UpdateValueMap(I, ResultReg);
468 return true;
469 }
Eric Christopherf06f3092010-08-24 00:50:47 +0000470 }
Eric Christopherf06f3092010-08-24 00:50:47 +0000471 return false;
472}
473
Eric Christopherb1cc8482010-08-25 07:23:49 +0000474bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg,
475 unsigned Reg, int Offset) {
476
477 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000478 unsigned Opc;
479
Eric Christopherb1cc8482010-08-25 07:23:49 +0000480 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher548d1bb2010-08-30 23:48:26 +0000481 default:
482 assert(false && "Trying to emit for an unhandled type!");
483 return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000484 case MVT::i16:
485 Opc = isThumb ? ARM::tLDRH : ARM::LDRH;
486 VT = MVT::i32;
487 break;
488 case MVT::i8:
489 Opc = isThumb ? ARM::tLDRB : ARM::LDRB;
490 VT = MVT::i32;
491 break;
Eric Christopherdc908042010-08-31 01:28:42 +0000492 case MVT::i32:
493 Opc = isThumb ? ARM::tLDR : ARM::LDR;
494 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000495 }
Eric Christopherdc908042010-08-31 01:28:42 +0000496
497 ResultReg = createResultReg(TLI.getRegClassFor(VT));
498
499 // TODO: Fix the Addressing modes so that these can share some code.
500 // Since this is a Thumb1 load this will work in Thumb1 or 2 mode.
501 if (isThumb)
502 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
503 TII.get(Opc), ResultReg)
504 .addReg(Reg).addImm(Offset).addReg(0));
505 else
506 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
507 TII.get(Opc), ResultReg)
508 .addReg(Reg).addReg(0).addImm(Offset));
509
510 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000511}
512
Eric Christopher318b6ee2010-09-02 00:53:56 +0000513bool ARMFastISel::ARMStoreAlloca(const Instruction *I, unsigned SrcReg) {
Eric Christopher543cf052010-09-01 22:16:27 +0000514 Value *Op1 = I->getOperand(1);
515
516 // Verify it's an alloca.
517 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Op1)) {
518 DenseMap<const AllocaInst*, int>::iterator SI =
519 FuncInfo.StaticAllocaMap.find(AI);
520
521 if (SI != FuncInfo.StaticAllocaMap.end()) {
522 TargetRegisterClass* RC = TLI.getRegClassFor(TLI.getPointerTy());
Eric Christopher318b6ee2010-09-02 00:53:56 +0000523 assert(SrcReg != 0 && "Nothing to store!");
Eric Christopher543cf052010-09-01 22:16:27 +0000524 TII.storeRegToStackSlot(*FuncInfo.MBB, *FuncInfo.InsertPt,
Eric Christopher318b6ee2010-09-02 00:53:56 +0000525 SrcReg, true /*isKill*/, SI->second, RC,
Eric Christopher543cf052010-09-01 22:16:27 +0000526 TM.getRegisterInfo());
527 return true;
528 }
529 }
530 return false;
531}
532
Eric Christopher318b6ee2010-09-02 00:53:56 +0000533bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg,
534 unsigned DstReg, int Offset) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000535 unsigned StrOpc;
536 switch (VT.getSimpleVT().SimpleTy) {
537 default: return false;
538 case MVT::i1:
539 case MVT::i8: StrOpc = isThumb ? ARM::tSTRB : ARM::STRB; break;
540 case MVT::i16: StrOpc = isThumb ? ARM::tSTRH : ARM::STRH; break;
541 case MVT::i32: StrOpc = isThumb ? ARM::tSTR : ARM::STR; break;
Eric Christopher56d2b722010-09-02 23:43:26 +0000542 case MVT::f32:
543 if (!Subtarget->hasVFP2()) return false;
544 StrOpc = ARM::VSTRS;
545 break;
546 case MVT::f64:
547 if (!Subtarget->hasVFP2()) return false;
548 StrOpc = ARM::VSTRD;
549 break;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000550 }
551
552 if (isThumb)
553 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
554 TII.get(StrOpc), SrcReg)
555 .addReg(DstReg).addImm(Offset).addReg(0));
556 else
557 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
558 TII.get(StrOpc), SrcReg)
559 .addReg(DstReg).addReg(0).addImm(Offset));
560
561 return true;
562}
563
564bool ARMFastISel::ARMSelectStore(const Instruction *I) {
565 Value *Op0 = I->getOperand(0);
566 unsigned SrcReg = 0;
567
Eric Christopher543cf052010-09-01 22:16:27 +0000568 // Yay type legalization
569 EVT VT;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000570 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopher543cf052010-09-01 22:16:27 +0000571 return false;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000572
Eric Christopher1b61ef42010-09-02 01:48:11 +0000573 // Get the value to be stored into a register.
574 SrcReg = getRegForValue(Op0);
Eric Christopher318b6ee2010-09-02 00:53:56 +0000575 if (SrcReg == 0)
576 return false;
577
578 // If we're an alloca we know we have a frame index and can emit the store
579 // quickly.
580 if (ARMStoreAlloca(I, SrcReg))
581 return true;
582
583 // Our register and offset with innocuous defaults.
584 unsigned Reg = 0;
585 int Offset = 0;
586
587 // See if we can handle this as Reg + Offset
588 if (!ARMComputeRegOffset(I->getOperand(1), Reg, Offset))
589 return false;
590
591 if (!ARMEmitStore(VT, SrcReg, Reg, Offset /* 0 */)) return false;
592
Eric Christopher543cf052010-09-01 22:16:27 +0000593 return false;
594
595}
596
Eric Christopher83007122010-08-23 21:44:12 +0000597bool ARMFastISel::ARMSelectLoad(const Instruction *I) {
Eric Christopher882d62e2010-08-24 01:10:52 +0000598 // If we're an alloca we know we have a frame index and can emit the load
599 // directly in short order.
Eric Christopherf06f3092010-08-24 00:50:47 +0000600 if (ARMLoadAlloca(I))
601 return true;
Eric Christopher61c3f9a2010-08-25 08:43:57 +0000602
603 // Verify we have a legal type before going any further.
604 EVT VT;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000605 if (!isLoadTypeLegal(I->getType(), VT))
Eric Christopher61c3f9a2010-08-25 08:43:57 +0000606 return false;
607
608 // Our register and offset with innocuous defaults.
609 unsigned Reg = 0;
610 int Offset = 0;
Eric Christopher8654c712010-08-23 23:14:31 +0000611
Eric Christopher83007122010-08-23 21:44:12 +0000612 // See if we can handle this as Reg + Offset
Eric Christophercb0b04b2010-08-24 00:07:24 +0000613 if (!ARMComputeRegOffset(I->getOperand(0), Reg, Offset))
Eric Christopher83007122010-08-23 21:44:12 +0000614 return false;
Eric Christopher1dfb4d32010-08-23 23:28:04 +0000615
Eric Christopherb1cc8482010-08-25 07:23:49 +0000616 unsigned ResultReg;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000617 if (!ARMEmitLoad(VT, ResultReg, Reg, Offset /* 0 */)) return false;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000618
Eric Christopherf06f3092010-08-24 00:50:47 +0000619 UpdateValueMap(I, ResultReg);
Eric Christopher83007122010-08-23 21:44:12 +0000620 return true;
621}
622
Eric Christophere5734102010-09-03 00:35:47 +0000623bool ARMFastISel::ARMSelectBranch(const Instruction *I) {
624 const BranchInst *BI = cast<BranchInst>(I);
625 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
626 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
627
628 // Simple branch support.
629 unsigned CondReg = getRegForValue(BI->getCondition());
630 if (CondReg == 0) return false;
631
632 unsigned CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
633 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
634 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
635 .addReg(CondReg).addReg(CondReg));
636 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
637 .addMBB(TBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
638 FastEmitBranch(FBB, DL);
639 FuncInfo.MBB->addSuccessor(TBB);
640 return true;
641}
642
Eric Christopher56d2b722010-09-02 23:43:26 +0000643// TODO: SoftFP support.
Eric Christopherab695882010-07-21 22:26:11 +0000644bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopher7fe55b72010-08-23 22:32:45 +0000645 // No Thumb-1 for now.
Eric Christophereaa204b2010-09-02 01:39:14 +0000646 if (isThumb && !AFI->isThumb2Function()) return false;
Eric Christopher7fe55b72010-08-23 22:32:45 +0000647
Eric Christopherab695882010-07-21 22:26:11 +0000648 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +0000649 case Instruction::Load:
650 return ARMSelectLoad(I);
Eric Christopher543cf052010-09-01 22:16:27 +0000651 case Instruction::Store:
652 return ARMSelectStore(I);
Eric Christophere5734102010-09-03 00:35:47 +0000653 case Instruction::Br:
654 return ARMSelectBranch(I);
Eric Christopherab695882010-07-21 22:26:11 +0000655 default: break;
656 }
657 return false;
658}
659
660namespace llvm {
661 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopher038fea52010-08-17 00:46:57 +0000662 if (EnableARMFastISel) return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +0000663 return 0;
Eric Christopherab695882010-07-21 22:26:11 +0000664 }
665}