blob: 5598a86ea2730dc318c1b5e805ad8866bdebdad0 [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 Christopherd10cd7b2010-09-10 23:18:12 +000018#include "ARMCallingConv.h"
Eric Christopherab695882010-07-21 22:26:11 +000019#include "ARMRegisterInfo.h"
20#include "ARMTargetMachine.h"
21#include "ARMSubtarget.h"
Eric Christopherc9932f62010-10-01 23:24:42 +000022#include "ARMConstantPoolValue.h"
Eric Christopherab695882010-07-21 22:26:11 +000023#include "llvm/CallingConv.h"
24#include "llvm/DerivedTypes.h"
25#include "llvm/GlobalVariable.h"
26#include "llvm/Instructions.h"
27#include "llvm/IntrinsicInst.h"
Eric Christopherbb3e5da2010-09-14 23:03:37 +000028#include "llvm/Module.h"
Jay Foad562b84b2011-04-11 09:35:34 +000029#include "llvm/Operator.h"
Eric Christopherab695882010-07-21 22:26:11 +000030#include "llvm/CodeGen/Analysis.h"
31#include "llvm/CodeGen/FastISel.h"
32#include "llvm/CodeGen/FunctionLoweringInfo.h"
Eric Christopher0fe7d542010-08-17 01:25:29 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
34#include "llvm/CodeGen/MachineModuleInfo.h"
Eric Christopherab695882010-07-21 22:26:11 +000035#include "llvm/CodeGen/MachineConstantPool.h"
36#include "llvm/CodeGen/MachineFrameInfo.h"
Eric Christopherd56d61a2010-10-17 01:51:42 +000037#include "llvm/CodeGen/MachineMemOperand.h"
Eric Christopherab695882010-07-21 22:26:11 +000038#include "llvm/CodeGen/MachineRegisterInfo.h"
Eric Christopherd56d61a2010-10-17 01:51:42 +000039#include "llvm/CodeGen/PseudoSourceValue.h"
Eric Christopherab695882010-07-21 22:26:11 +000040#include "llvm/Support/CallSite.h"
Eric Christopher038fea52010-08-17 00:46:57 +000041#include "llvm/Support/CommandLine.h"
Eric Christopherab695882010-07-21 22:26:11 +000042#include "llvm/Support/ErrorHandling.h"
43#include "llvm/Support/GetElementPtrTypeIterator.h"
Eric Christopher0fe7d542010-08-17 01:25:29 +000044#include "llvm/Target/TargetData.h"
45#include "llvm/Target/TargetInstrInfo.h"
46#include "llvm/Target/TargetLowering.h"
47#include "llvm/Target/TargetMachine.h"
Eric Christopherab695882010-07-21 22:26:11 +000048#include "llvm/Target/TargetOptions.h"
49using namespace llvm;
50
Eric Christopher038fea52010-08-17 00:46:57 +000051static cl::opt<bool>
Eric Christopher6e5367d2010-10-18 22:53:53 +000052DisableARMFastISel("disable-arm-fast-isel",
53 cl::desc("Turn off experimental ARM fast-isel support"),
Eric Christopherfeadddd2010-10-11 20:05:22 +000054 cl::init(false), cl::Hidden);
Eric Christopher038fea52010-08-17 00:46:57 +000055
Eric Christopher836c6242010-12-15 23:47:29 +000056extern cl::opt<bool> EnableARMLongCalls;
57
Eric Christopherab695882010-07-21 22:26:11 +000058namespace {
Eric Christopher827656d2010-11-20 22:38:27 +000059
Eric Christopher0d581222010-11-19 22:30:02 +000060 // All possible address modes, plus some.
61 typedef struct Address {
62 enum {
63 RegBase,
64 FrameIndexBase
65 } BaseType;
Eric Christopher827656d2010-11-20 22:38:27 +000066
Eric Christopher0d581222010-11-19 22:30:02 +000067 union {
68 unsigned Reg;
69 int FI;
70 } Base;
Eric Christopher827656d2010-11-20 22:38:27 +000071
Eric Christopher0d581222010-11-19 22:30:02 +000072 int Offset;
73 unsigned Scale;
74 unsigned PlusReg;
Eric Christopher827656d2010-11-20 22:38:27 +000075
Eric Christopher0d581222010-11-19 22:30:02 +000076 // Innocuous defaults for our address.
77 Address()
78 : BaseType(RegBase), Offset(0), Scale(0), PlusReg(0) {
79 Base.Reg = 0;
80 }
81 } Address;
Eric Christopherab695882010-07-21 22:26:11 +000082
83class ARMFastISel : public FastISel {
84
85 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
86 /// make the right decision when generating code for different targets.
87 const ARMSubtarget *Subtarget;
Eric Christopher0fe7d542010-08-17 01:25:29 +000088 const TargetMachine &TM;
89 const TargetInstrInfo &TII;
90 const TargetLowering &TLI;
Eric Christopherc9932f62010-10-01 23:24:42 +000091 ARMFunctionInfo *AFI;
Eric Christopherab695882010-07-21 22:26:11 +000092
Eric Christopher8cf6c602010-09-29 22:24:45 +000093 // Convenience variables to avoid some queries.
Eric Christophereaa204b2010-09-02 01:39:14 +000094 bool isThumb;
Eric Christopher8cf6c602010-09-29 22:24:45 +000095 LLVMContext *Context;
Eric Christophereaa204b2010-09-02 01:39:14 +000096
Eric Christopherab695882010-07-21 22:26:11 +000097 public:
Eric Christopherac1a19e2010-09-09 01:06:51 +000098 explicit ARMFastISel(FunctionLoweringInfo &funcInfo)
Eric Christopher0fe7d542010-08-17 01:25:29 +000099 : FastISel(funcInfo),
100 TM(funcInfo.MF->getTarget()),
101 TII(*TM.getInstrInfo()),
102 TLI(*TM.getTargetLowering()) {
Eric Christopherab695882010-07-21 22:26:11 +0000103 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Eric Christopher7fe55b72010-08-23 22:32:45 +0000104 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>();
Eric Christophereaa204b2010-09-02 01:39:14 +0000105 isThumb = AFI->isThumbFunction();
Eric Christopher8cf6c602010-09-29 22:24:45 +0000106 Context = &funcInfo.Fn->getContext();
Eric Christopherab695882010-07-21 22:26:11 +0000107 }
108
Eric Christophercb592292010-08-20 00:20:31 +0000109 // Code from FastISel.cpp.
Eric Christopher0fe7d542010-08-17 01:25:29 +0000110 virtual unsigned FastEmitInst_(unsigned MachineInstOpcode,
111 const TargetRegisterClass *RC);
112 virtual unsigned FastEmitInst_r(unsigned MachineInstOpcode,
113 const TargetRegisterClass *RC,
114 unsigned Op0, bool Op0IsKill);
115 virtual unsigned FastEmitInst_rr(unsigned MachineInstOpcode,
116 const TargetRegisterClass *RC,
117 unsigned Op0, bool Op0IsKill,
118 unsigned Op1, bool Op1IsKill);
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000119 virtual unsigned FastEmitInst_rrr(unsigned MachineInstOpcode,
120 const TargetRegisterClass *RC,
121 unsigned Op0, bool Op0IsKill,
122 unsigned Op1, bool Op1IsKill,
123 unsigned Op2, bool Op2IsKill);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000124 virtual unsigned FastEmitInst_ri(unsigned MachineInstOpcode,
125 const TargetRegisterClass *RC,
126 unsigned Op0, bool Op0IsKill,
127 uint64_t Imm);
128 virtual unsigned FastEmitInst_rf(unsigned MachineInstOpcode,
129 const TargetRegisterClass *RC,
130 unsigned Op0, bool Op0IsKill,
131 const ConstantFP *FPImm);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000132 virtual unsigned FastEmitInst_rri(unsigned MachineInstOpcode,
133 const TargetRegisterClass *RC,
134 unsigned Op0, bool Op0IsKill,
135 unsigned Op1, bool Op1IsKill,
136 uint64_t Imm);
Eric Christopheraf3dce52011-03-12 01:09:29 +0000137 virtual unsigned FastEmitInst_i(unsigned MachineInstOpcode,
138 const TargetRegisterClass *RC,
139 uint64_t Imm);
Eric Christopherd94bc542011-04-29 22:07:50 +0000140 virtual unsigned FastEmitInst_ii(unsigned MachineInstOpcode,
141 const TargetRegisterClass *RC,
142 uint64_t Imm1, uint64_t Imm2);
Eric Christopheraf3dce52011-03-12 01:09:29 +0000143
Eric Christopher0fe7d542010-08-17 01:25:29 +0000144 virtual unsigned FastEmitInst_extractsubreg(MVT RetVT,
145 unsigned Op0, bool Op0IsKill,
146 uint32_t Idx);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000147
Eric Christophercb592292010-08-20 00:20:31 +0000148 // Backend specific FastISel code.
Eric Christopherab695882010-07-21 22:26:11 +0000149 virtual bool TargetSelectInstruction(const Instruction *I);
Eric Christopher1b61ef42010-09-02 01:48:11 +0000150 virtual unsigned TargetMaterializeConstant(const Constant *C);
Eric Christopherf9764fa2010-09-30 20:49:44 +0000151 virtual unsigned TargetMaterializeAlloca(const AllocaInst *AI);
Eric Christopherab695882010-07-21 22:26:11 +0000152
153 #include "ARMGenFastISel.inc"
Eric Christopherac1a19e2010-09-09 01:06:51 +0000154
Eric Christopher83007122010-08-23 21:44:12 +0000155 // Instruction selection routines.
Eric Christopher44bff902010-09-10 23:10:30 +0000156 private:
Eric Christopher17787722010-10-21 21:47:51 +0000157 bool SelectLoad(const Instruction *I);
158 bool SelectStore(const Instruction *I);
159 bool SelectBranch(const Instruction *I);
160 bool SelectCmp(const Instruction *I);
161 bool SelectFPExt(const Instruction *I);
162 bool SelectFPTrunc(const Instruction *I);
163 bool SelectBinaryOp(const Instruction *I, unsigned ISDOpcode);
164 bool SelectSIToFP(const Instruction *I);
165 bool SelectFPToSI(const Instruction *I);
166 bool SelectSDiv(const Instruction *I);
167 bool SelectSRem(const Instruction *I);
168 bool SelectCall(const Instruction *I);
169 bool SelectSelect(const Instruction *I);
Eric Christopher4f512ef2010-10-22 01:28:00 +0000170 bool SelectRet(const Instruction *I);
Eric Christopherab695882010-07-21 22:26:11 +0000171
Eric Christopher83007122010-08-23 21:44:12 +0000172 // Utility routines.
Eric Christopher456144e2010-08-19 00:37:05 +0000173 private:
Duncan Sands1440e8b2010-11-03 11:35:31 +0000174 bool isTypeLegal(const Type *Ty, MVT &VT);
175 bool isLoadTypeLegal(const Type *Ty, MVT &VT);
Eric Christopher0d581222010-11-19 22:30:02 +0000176 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr);
177 bool ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr);
178 bool ARMComputeAddress(const Value *Obj, Address &Addr);
179 void ARMSimplifyAddress(Address &Addr, EVT VT);
Eric Christopher9ed58df2010-09-09 00:19:41 +0000180 unsigned ARMMaterializeFP(const ConstantFP *CFP, EVT VT);
Eric Christopher744c7c82010-09-28 22:47:54 +0000181 unsigned ARMMaterializeInt(const Constant *C, EVT VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000182 unsigned ARMMaterializeGV(const GlobalValue *GV, EVT VT);
Eric Christopheraa3ace12010-09-09 20:49:25 +0000183 unsigned ARMMoveToFPReg(EVT VT, unsigned SrcReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000184 unsigned ARMMoveToIntReg(EVT VT, unsigned SrcReg);
Eric Christopher872f4a22011-02-22 01:37:10 +0000185 unsigned ARMSelectCallOp(const GlobalValue *GV);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000186
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000187 // Call handling routines.
188 private:
Eric Christopherfa87d662010-10-18 02:17:53 +0000189 bool FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
190 unsigned &ResultReg);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000191 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool Return);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000192 bool ProcessCallArgs(SmallVectorImpl<Value*> &Args,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000193 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +0000194 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000195 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
196 SmallVectorImpl<unsigned> &RegArgs,
197 CallingConv::ID CC,
198 unsigned &NumBytes);
Duncan Sands1440e8b2010-11-03 11:35:31 +0000199 bool FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000200 const Instruction *I, CallingConv::ID CC,
201 unsigned &NumBytes);
Eric Christopher7ed8ec92010-09-28 01:21:42 +0000202 bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000203
204 // OptionalDef handling routines.
205 private:
Eric Christopheraf3dce52011-03-12 01:09:29 +0000206 bool isARMNEONPred(const MachineInstr *MI);
Eric Christopher456144e2010-08-19 00:37:05 +0000207 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
208 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
Eric Christopher564857f2010-12-01 01:40:24 +0000209 void AddLoadStoreOperands(EVT VT, Address &Addr,
210 const MachineInstrBuilder &MIB);
Eric Christopher456144e2010-08-19 00:37:05 +0000211};
Eric Christopherab695882010-07-21 22:26:11 +0000212
213} // end anonymous namespace
214
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000215#include "ARMGenCallingConv.inc"
Eric Christopherab695882010-07-21 22:26:11 +0000216
Eric Christopher456144e2010-08-19 00:37:05 +0000217// DefinesOptionalPredicate - This is different from DefinesPredicate in that
218// we don't care about implicit defs here, just places we'll need to add a
219// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
220bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
221 const TargetInstrDesc &TID = MI->getDesc();
222 if (!TID.hasOptionalDef())
223 return false;
224
225 // Look to see if our OptionalDef is defining CPSR or CCR.
226 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
227 const MachineOperand &MO = MI->getOperand(i);
Eric Christopherf762fbe2010-08-20 00:36:24 +0000228 if (!MO.isReg() || !MO.isDef()) continue;
229 if (MO.getReg() == ARM::CPSR)
Eric Christopher456144e2010-08-19 00:37:05 +0000230 *CPSR = true;
231 }
232 return true;
233}
234
Eric Christopheraf3dce52011-03-12 01:09:29 +0000235bool ARMFastISel::isARMNEONPred(const MachineInstr *MI) {
236 const TargetInstrDesc &TID = MI->getDesc();
Eric Christopher299bbb22011-04-29 00:03:10 +0000237
Eric Christopheraf3dce52011-03-12 01:09:29 +0000238 // If we're a thumb2 or not NEON function we were handled via isPredicable.
239 if ((TID.TSFlags & ARMII::DomainMask) != ARMII::DomainNEON ||
240 AFI->isThumb2Function())
241 return false;
Eric Christopher299bbb22011-04-29 00:03:10 +0000242
Eric Christopheraf3dce52011-03-12 01:09:29 +0000243 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i)
244 if (TID.OpInfo[i].isPredicate())
245 return true;
Eric Christopher299bbb22011-04-29 00:03:10 +0000246
Eric Christopheraf3dce52011-03-12 01:09:29 +0000247 return false;
248}
249
Eric Christopher456144e2010-08-19 00:37:05 +0000250// If the machine is predicable go ahead and add the predicate operands, if
251// it needs default CC operands add those.
Eric Christopheraaa8df42010-11-02 01:21:28 +0000252// TODO: If we want to support thumb1 then we'll need to deal with optional
253// CPSR defs that need to be added before the remaining operands. See s_cc_out
254// for descriptions why.
Eric Christopher456144e2010-08-19 00:37:05 +0000255const MachineInstrBuilder &
256ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
257 MachineInstr *MI = &*MIB;
258
Eric Christopheraf3dce52011-03-12 01:09:29 +0000259 // Do we use a predicate? or...
260 // Are we NEON in ARM mode and have a predicate operand? If so, I know
261 // we're not predicable but add it anyways.
262 if (TII.isPredicable(MI) || isARMNEONPred(MI))
Eric Christopher456144e2010-08-19 00:37:05 +0000263 AddDefaultPred(MIB);
Eric Christopher299bbb22011-04-29 00:03:10 +0000264
Eric Christopher456144e2010-08-19 00:37:05 +0000265 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
266 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christopher979e0a12010-08-19 15:35:27 +0000267 bool CPSR = false;
Eric Christopher456144e2010-08-19 00:37:05 +0000268 if (DefinesOptionalPredicate(MI, &CPSR)) {
269 if (CPSR)
270 AddDefaultT1CC(MIB);
271 else
272 AddDefaultCC(MIB);
273 }
274 return MIB;
275}
276
Eric Christopher0fe7d542010-08-17 01:25:29 +0000277unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode,
278 const TargetRegisterClass* RC) {
279 unsigned ResultReg = createResultReg(RC);
280 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
281
Eric Christopher456144e2010-08-19 00:37:05 +0000282 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg));
Eric Christopher0fe7d542010-08-17 01:25:29 +0000283 return ResultReg;
284}
285
286unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
287 const TargetRegisterClass *RC,
288 unsigned Op0, bool Op0IsKill) {
289 unsigned ResultReg = createResultReg(RC);
290 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
291
292 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000293 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000294 .addReg(Op0, Op0IsKill * RegState::Kill));
295 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000296 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000297 .addReg(Op0, Op0IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000298 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000299 TII.get(TargetOpcode::COPY), ResultReg)
300 .addReg(II.ImplicitDefs[0]));
301 }
302 return ResultReg;
303}
304
305unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
306 const TargetRegisterClass *RC,
307 unsigned Op0, bool Op0IsKill,
308 unsigned Op1, bool Op1IsKill) {
309 unsigned ResultReg = createResultReg(RC);
310 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
311
312 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000313 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000314 .addReg(Op0, Op0IsKill * RegState::Kill)
315 .addReg(Op1, Op1IsKill * RegState::Kill));
316 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000317 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000318 .addReg(Op0, Op0IsKill * RegState::Kill)
319 .addReg(Op1, Op1IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000320 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000321 TII.get(TargetOpcode::COPY), ResultReg)
322 .addReg(II.ImplicitDefs[0]));
323 }
324 return ResultReg;
325}
326
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000327unsigned ARMFastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
328 const TargetRegisterClass *RC,
329 unsigned Op0, bool Op0IsKill,
330 unsigned Op1, bool Op1IsKill,
331 unsigned Op2, bool Op2IsKill) {
332 unsigned ResultReg = createResultReg(RC);
333 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
334
335 if (II.getNumDefs() >= 1)
336 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
337 .addReg(Op0, Op0IsKill * RegState::Kill)
338 .addReg(Op1, Op1IsKill * RegState::Kill)
339 .addReg(Op2, Op2IsKill * RegState::Kill));
340 else {
341 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
342 .addReg(Op0, Op0IsKill * RegState::Kill)
343 .addReg(Op1, Op1IsKill * RegState::Kill)
344 .addReg(Op2, Op2IsKill * RegState::Kill));
345 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
346 TII.get(TargetOpcode::COPY), ResultReg)
347 .addReg(II.ImplicitDefs[0]));
348 }
349 return ResultReg;
350}
351
Eric Christopher0fe7d542010-08-17 01:25:29 +0000352unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
353 const TargetRegisterClass *RC,
354 unsigned Op0, bool Op0IsKill,
355 uint64_t Imm) {
356 unsigned ResultReg = createResultReg(RC);
357 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
358
359 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000360 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000361 .addReg(Op0, Op0IsKill * RegState::Kill)
362 .addImm(Imm));
363 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000364 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000365 .addReg(Op0, Op0IsKill * RegState::Kill)
366 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000367 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000368 TII.get(TargetOpcode::COPY), ResultReg)
369 .addReg(II.ImplicitDefs[0]));
370 }
371 return ResultReg;
372}
373
374unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
375 const TargetRegisterClass *RC,
376 unsigned Op0, bool Op0IsKill,
377 const ConstantFP *FPImm) {
378 unsigned ResultReg = createResultReg(RC);
379 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
380
381 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000382 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000383 .addReg(Op0, Op0IsKill * RegState::Kill)
384 .addFPImm(FPImm));
385 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000386 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000387 .addReg(Op0, Op0IsKill * RegState::Kill)
388 .addFPImm(FPImm));
Eric Christopher456144e2010-08-19 00:37:05 +0000389 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000390 TII.get(TargetOpcode::COPY), ResultReg)
391 .addReg(II.ImplicitDefs[0]));
392 }
393 return ResultReg;
394}
395
396unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
397 const TargetRegisterClass *RC,
398 unsigned Op0, bool Op0IsKill,
399 unsigned Op1, bool Op1IsKill,
400 uint64_t Imm) {
401 unsigned ResultReg = createResultReg(RC);
402 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
403
404 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000405 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000406 .addReg(Op0, Op0IsKill * RegState::Kill)
407 .addReg(Op1, Op1IsKill * RegState::Kill)
408 .addImm(Imm));
409 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000410 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000411 .addReg(Op0, Op0IsKill * RegState::Kill)
412 .addReg(Op1, Op1IsKill * RegState::Kill)
413 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000414 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000415 TII.get(TargetOpcode::COPY), ResultReg)
416 .addReg(II.ImplicitDefs[0]));
417 }
418 return ResultReg;
419}
420
421unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
422 const TargetRegisterClass *RC,
423 uint64_t Imm) {
424 unsigned ResultReg = createResultReg(RC);
425 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000426
Eric Christopher0fe7d542010-08-17 01:25:29 +0000427 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000428 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000429 .addImm(Imm));
430 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000431 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000432 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000433 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000434 TII.get(TargetOpcode::COPY), ResultReg)
435 .addReg(II.ImplicitDefs[0]));
436 }
437 return ResultReg;
438}
439
Eric Christopherd94bc542011-04-29 22:07:50 +0000440unsigned ARMFastISel::FastEmitInst_ii(unsigned MachineInstOpcode,
441 const TargetRegisterClass *RC,
442 uint64_t Imm1, uint64_t Imm2) {
443 unsigned ResultReg = createResultReg(RC);
444 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
445
446 if (II.getNumDefs() >= 1)
447 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
448 .addImm(Imm1).addImm(Imm2));
449 else {
450 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
451 .addImm(Imm1).addImm(Imm2));
452 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
453 TII.get(TargetOpcode::COPY),
454 ResultReg)
455 .addReg(II.ImplicitDefs[0]));
456 }
457 return ResultReg;
458}
459
Eric Christopher0fe7d542010-08-17 01:25:29 +0000460unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT,
461 unsigned Op0, bool Op0IsKill,
462 uint32_t Idx) {
463 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
464 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
465 "Cannot yet extract from physregs");
Eric Christopher456144e2010-08-19 00:37:05 +0000466 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000467 DL, TII.get(TargetOpcode::COPY), ResultReg)
468 .addReg(Op0, getKillRegState(Op0IsKill), Idx));
469 return ResultReg;
470}
471
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000472// TODO: Don't worry about 64-bit now, but when this is fixed remove the
473// checks from the various callers.
Eric Christopheraa3ace12010-09-09 20:49:25 +0000474unsigned ARMFastISel::ARMMoveToFPReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000475 if (VT == MVT::f64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000476
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000477 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
478 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
479 TII.get(ARM::VMOVRS), MoveReg)
480 .addReg(SrcReg));
481 return MoveReg;
482}
483
484unsigned ARMFastISel::ARMMoveToIntReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000485 if (VT == MVT::i64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000486
Eric Christopheraa3ace12010-09-09 20:49:25 +0000487 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
488 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000489 TII.get(ARM::VMOVSR), MoveReg)
Eric Christopheraa3ace12010-09-09 20:49:25 +0000490 .addReg(SrcReg));
491 return MoveReg;
492}
493
Eric Christopher9ed58df2010-09-09 00:19:41 +0000494// For double width floating point we need to materialize two constants
495// (the high and the low) into integer registers then use a move to get
496// the combined constant into an FP reg.
497unsigned ARMFastISel::ARMMaterializeFP(const ConstantFP *CFP, EVT VT) {
498 const APFloat Val = CFP->getValueAPF();
Duncan Sandscdfad362010-11-03 12:17:33 +0000499 bool is64bit = VT == MVT::f64;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000500
Eric Christopher9ed58df2010-09-09 00:19:41 +0000501 // This checks to see if we can use VFP3 instructions to materialize
502 // a constant, otherwise we have to go through the constant pool.
503 if (TLI.isFPImmLegal(Val, VT)) {
504 unsigned Opc = is64bit ? ARM::FCONSTD : ARM::FCONSTS;
505 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
506 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
507 DestReg)
508 .addFPImm(CFP));
509 return DestReg;
510 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000511
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000512 // Require VFP2 for loading fp constants.
Eric Christopher238bb162010-09-09 23:50:00 +0000513 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000514
Eric Christopher238bb162010-09-09 23:50:00 +0000515 // MachineConstantPool wants an explicit alignment.
516 unsigned Align = TD.getPrefTypeAlignment(CFP->getType());
517 if (Align == 0) {
518 // TODO: Figure out if this is correct.
519 Align = TD.getTypeAllocSize(CFP->getType());
520 }
521 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
522 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
523 unsigned Opc = is64bit ? ARM::VLDRD : ARM::VLDRS;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000524
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000525 // The extra reg is for addrmode5.
Eric Christopherf5732c42010-09-28 00:35:09 +0000526 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
527 DestReg)
528 .addConstantPoolIndex(Idx)
Eric Christopher238bb162010-09-09 23:50:00 +0000529 .addReg(0));
530 return DestReg;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000531}
532
Eric Christopher744c7c82010-09-28 22:47:54 +0000533unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, EVT VT) {
Eric Christopherdccd2c32010-10-11 08:38:55 +0000534
Eric Christopher744c7c82010-09-28 22:47:54 +0000535 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000536 if (VT != MVT::i32) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000537
Eric Christophere5b13cf2010-11-03 20:21:17 +0000538 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
539
540 // If we can do this in a single instruction without a constant pool entry
541 // do so now.
542 const ConstantInt *CI = cast<ConstantInt>(C);
Eric Christopher5e262bc2010-11-06 07:53:11 +0000543 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getSExtValue())) {
Eric Christophere5b13cf2010-11-03 20:21:17 +0000544 unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16;
545 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Jim Grosbach3ea4daa2010-11-19 18:01:37 +0000546 TII.get(Opc), DestReg)
547 .addImm(CI->getSExtValue()));
Eric Christophere5b13cf2010-11-03 20:21:17 +0000548 return DestReg;
549 }
550
Eric Christopher56d2b722010-09-02 23:43:26 +0000551 // MachineConstantPool wants an explicit alignment.
552 unsigned Align = TD.getPrefTypeAlignment(C->getType());
553 if (Align == 0) {
554 // TODO: Figure out if this is correct.
555 Align = TD.getTypeAllocSize(C->getType());
556 }
557 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000558
Eric Christopher56d2b722010-09-02 23:43:26 +0000559 if (isThumb)
560 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000561 TII.get(ARM::t2LDRpci), DestReg)
562 .addConstantPoolIndex(Idx));
Eric Christopher56d2b722010-09-02 23:43:26 +0000563 else
Eric Christopherd0c82a62010-11-12 09:48:30 +0000564 // The extra immediate is for addrmode2.
Eric Christopher56d2b722010-09-02 23:43:26 +0000565 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000566 TII.get(ARM::LDRcp), DestReg)
567 .addConstantPoolIndex(Idx)
Jim Grosbach3e556122010-10-26 22:37:02 +0000568 .addImm(0));
Eric Christopherac1a19e2010-09-09 01:06:51 +0000569
Eric Christopher56d2b722010-09-02 23:43:26 +0000570 return DestReg;
Eric Christopher1b61ef42010-09-02 01:48:11 +0000571}
572
Eric Christopherc9932f62010-10-01 23:24:42 +0000573unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, EVT VT) {
Eric Christopher890dbbe2010-10-02 00:32:44 +0000574 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000575 if (VT != MVT::i32) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000576
Eric Christopher890dbbe2010-10-02 00:32:44 +0000577 Reloc::Model RelocM = TM.getRelocationModel();
Eric Christopherdccd2c32010-10-11 08:38:55 +0000578
Eric Christopher890dbbe2010-10-02 00:32:44 +0000579 // TODO: No external globals for now.
580 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000581
Eric Christopher890dbbe2010-10-02 00:32:44 +0000582 // TODO: Need more magic for ARM PIC.
583 if (!isThumb && (RelocM == Reloc::PIC_)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000584
Eric Christopher890dbbe2010-10-02 00:32:44 +0000585 // MachineConstantPool wants an explicit alignment.
586 unsigned Align = TD.getPrefTypeAlignment(GV->getType());
587 if (Align == 0) {
588 // TODO: Figure out if this is correct.
589 Align = TD.getTypeAllocSize(GV->getType());
590 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000591
Eric Christopher890dbbe2010-10-02 00:32:44 +0000592 // Grab index.
593 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000594 unsigned Id = AFI->createPICLabelUId();
Eric Christopher890dbbe2010-10-02 00:32:44 +0000595 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, Id,
596 ARMCP::CPValue, PCAdj);
597 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000598
Eric Christopher890dbbe2010-10-02 00:32:44 +0000599 // Load value.
600 MachineInstrBuilder MIB;
601 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
602 if (isThumb) {
603 unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
604 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
605 .addConstantPoolIndex(Idx);
606 if (RelocM == Reloc::PIC_)
607 MIB.addImm(Id);
608 } else {
Eric Christopherd0c82a62010-11-12 09:48:30 +0000609 // The extra immediate is for addrmode2.
Eric Christopher890dbbe2010-10-02 00:32:44 +0000610 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRcp),
611 DestReg)
612 .addConstantPoolIndex(Idx)
Eric Christopherd0c82a62010-11-12 09:48:30 +0000613 .addImm(0);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000614 }
615 AddOptionalDefs(MIB);
616 return DestReg;
Eric Christopherc9932f62010-10-01 23:24:42 +0000617}
618
Eric Christopher9ed58df2010-09-09 00:19:41 +0000619unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
620 EVT VT = TLI.getValueType(C->getType(), true);
621
622 // Only handle simple types.
623 if (!VT.isSimple()) return 0;
624
625 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
626 return ARMMaterializeFP(CFP, VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000627 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
628 return ARMMaterializeGV(GV, VT);
629 else if (isa<ConstantInt>(C))
630 return ARMMaterializeInt(C, VT);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000631
Eric Christopherc9932f62010-10-01 23:24:42 +0000632 return 0;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000633}
634
Eric Christopherf9764fa2010-09-30 20:49:44 +0000635unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
636 // Don't handle dynamic allocas.
637 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000638
Duncan Sands1440e8b2010-11-03 11:35:31 +0000639 MVT VT;
Eric Christopherec8bf972010-10-17 06:07:26 +0000640 if (!isLoadTypeLegal(AI->getType(), VT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000641
Eric Christopherf9764fa2010-09-30 20:49:44 +0000642 DenseMap<const AllocaInst*, int>::iterator SI =
643 FuncInfo.StaticAllocaMap.find(AI);
644
645 // This will get lowered later into the correct offsets and registers
646 // via rewriteXFrameIndex.
647 if (SI != FuncInfo.StaticAllocaMap.end()) {
648 TargetRegisterClass* RC = TLI.getRegClassFor(VT);
649 unsigned ResultReg = createResultReg(RC);
650 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
651 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
652 TII.get(Opc), ResultReg)
653 .addFrameIndex(SI->second)
654 .addImm(0));
655 return ResultReg;
656 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000657
Eric Christopherf9764fa2010-09-30 20:49:44 +0000658 return 0;
659}
660
Duncan Sands1440e8b2010-11-03 11:35:31 +0000661bool ARMFastISel::isTypeLegal(const Type *Ty, MVT &VT) {
662 EVT evt = TLI.getValueType(Ty, true);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000663
Eric Christopherb1cc8482010-08-25 07:23:49 +0000664 // Only handle simple types.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000665 if (evt == MVT::Other || !evt.isSimple()) return false;
666 VT = evt.getSimpleVT();
Eric Christopherac1a19e2010-09-09 01:06:51 +0000667
Eric Christopherdc908042010-08-31 01:28:42 +0000668 // Handle all legal types, i.e. a register that will directly hold this
669 // value.
670 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000671}
672
Duncan Sands1440e8b2010-11-03 11:35:31 +0000673bool ARMFastISel::isLoadTypeLegal(const Type *Ty, MVT &VT) {
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000674 if (isTypeLegal(Ty, VT)) return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000675
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000676 // If this is a type than can be sign or zero-extended to a basic operation
677 // go ahead and accept it now.
678 if (VT == MVT::i8 || VT == MVT::i16)
679 return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000680
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000681 return false;
682}
683
Eric Christopher88de86b2010-11-19 22:36:41 +0000684// Computes the address to get to an object.
Eric Christopher0d581222010-11-19 22:30:02 +0000685bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher83007122010-08-23 21:44:12 +0000686 // Some boilerplate from the X86 FastISel.
687 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000688 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000689 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher2d630d72010-11-19 22:37:58 +0000690 // Don't walk into other basic blocks unless the object is an alloca from
691 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher76dda7e2010-11-15 21:11:06 +0000692 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
693 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
694 Opcode = I->getOpcode();
695 U = I;
696 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000697 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000698 Opcode = C->getOpcode();
699 U = C;
700 }
701
Eric Christophercb0b04b2010-08-24 00:07:24 +0000702 if (const PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000703 if (Ty->getAddressSpace() > 255)
704 // Fast instruction selection doesn't support the special
705 // address spaces.
706 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000707
Eric Christopher83007122010-08-23 21:44:12 +0000708 switch (Opcode) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000709 default:
Eric Christopher83007122010-08-23 21:44:12 +0000710 break;
Eric Christopher55324332010-10-12 00:43:21 +0000711 case Instruction::BitCast: {
712 // Look through bitcasts.
Eric Christopher0d581222010-11-19 22:30:02 +0000713 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000714 }
715 case Instruction::IntToPtr: {
716 // Look past no-op inttoptrs.
717 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000718 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000719 break;
720 }
721 case Instruction::PtrToInt: {
722 // Look past no-op ptrtoints.
723 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000724 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000725 break;
726 }
Eric Christophereae84392010-10-14 09:29:41 +0000727 case Instruction::GetElementPtr: {
Eric Christopherb3716582010-11-19 22:39:56 +0000728 Address SavedAddr = Addr;
Eric Christopher0d581222010-11-19 22:30:02 +0000729 int TmpOffset = Addr.Offset;
Eric Christopher2896df82010-10-15 18:02:07 +0000730
Eric Christophereae84392010-10-14 09:29:41 +0000731 // Iterate through the GEP folding the constants into offsets where
732 // we can.
733 gep_type_iterator GTI = gep_type_begin(U);
734 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
735 i != e; ++i, ++GTI) {
736 const Value *Op = *i;
737 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
738 const StructLayout *SL = TD.getStructLayout(STy);
739 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
740 TmpOffset += SL->getElementOffset(Idx);
741 } else {
Eric Christopher2896df82010-10-15 18:02:07 +0000742 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Eric Christopher7244d7c2011-03-22 19:39:17 +0000743 for (;;) {
Eric Christopher2896df82010-10-15 18:02:07 +0000744 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
745 // Constant-offset addressing.
746 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000747 break;
748 }
749 if (isa<AddOperator>(Op) &&
750 (!isa<Instruction>(Op) ||
751 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
752 == FuncInfo.MBB) &&
753 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
Eric Christopher299bbb22011-04-29 00:03:10 +0000754 // An add (in the same block) with a constant operand. Fold the
Eric Christopher7244d7c2011-03-22 19:39:17 +0000755 // constant.
Eric Christopher2896df82010-10-15 18:02:07 +0000756 ConstantInt *CI =
Eric Christopher7244d7c2011-03-22 19:39:17 +0000757 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christopher2896df82010-10-15 18:02:07 +0000758 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000759 // Iterate on the other operand.
760 Op = cast<AddOperator>(Op)->getOperand(0);
761 continue;
Eric Christopher299bbb22011-04-29 00:03:10 +0000762 }
Eric Christopher7244d7c2011-03-22 19:39:17 +0000763 // Unsupported
764 goto unsupported_gep;
765 }
Eric Christophereae84392010-10-14 09:29:41 +0000766 }
767 }
Eric Christopher2896df82010-10-15 18:02:07 +0000768
769 // Try to grab the base operand now.
Eric Christopher0d581222010-11-19 22:30:02 +0000770 Addr.Offset = TmpOffset;
771 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christopher2896df82010-10-15 18:02:07 +0000772
773 // We failed, restore everything and try the other options.
Eric Christopherb3716582010-11-19 22:39:56 +0000774 Addr = SavedAddr;
Eric Christopher2896df82010-10-15 18:02:07 +0000775
Eric Christophereae84392010-10-14 09:29:41 +0000776 unsupported_gep:
Eric Christophereae84392010-10-14 09:29:41 +0000777 break;
778 }
Eric Christopher83007122010-08-23 21:44:12 +0000779 case Instruction::Alloca: {
Eric Christopher15418772010-10-12 05:39:06 +0000780 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher827656d2010-11-20 22:38:27 +0000781 DenseMap<const AllocaInst*, int>::iterator SI =
782 FuncInfo.StaticAllocaMap.find(AI);
783 if (SI != FuncInfo.StaticAllocaMap.end()) {
784 Addr.BaseType = Address::FrameIndexBase;
785 Addr.Base.FI = SI->second;
786 return true;
787 }
788 break;
Eric Christopher83007122010-08-23 21:44:12 +0000789 }
790 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000791
Eric Christophera9c57512010-10-13 21:41:51 +0000792 // Materialize the global variable's address into a reg which can
793 // then be used later to load the variable.
Eric Christophercb0b04b2010-08-24 00:07:24 +0000794 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
Eric Christopherede42b02010-10-13 09:11:46 +0000795 unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType()));
796 if (Tmp == 0) return false;
Eric Christopher2896df82010-10-15 18:02:07 +0000797
Eric Christopher0d581222010-11-19 22:30:02 +0000798 Addr.Base.Reg = Tmp;
Eric Christopherede42b02010-10-13 09:11:46 +0000799 return true;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000800 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000801
Eric Christophercb0b04b2010-08-24 00:07:24 +0000802 // Try to get this in a register if nothing else has worked.
Eric Christopher0d581222010-11-19 22:30:02 +0000803 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
804 return Addr.Base.Reg != 0;
Eric Christophereae84392010-10-14 09:29:41 +0000805}
806
Eric Christopher0d581222010-11-19 22:30:02 +0000807void ARMFastISel::ARMSimplifyAddress(Address &Addr, EVT VT) {
Jim Grosbach6b156392010-10-27 21:39:08 +0000808
Eric Christopher212ae932010-10-21 19:40:30 +0000809 assert(VT.isSimple() && "Non-simple types are invalid here!");
Jim Grosbach6b156392010-10-27 21:39:08 +0000810
Eric Christopher212ae932010-10-21 19:40:30 +0000811 bool needsLowering = false;
812 switch (VT.getSimpleVT().SimpleTy) {
813 default:
814 assert(false && "Unhandled load/store type!");
815 case MVT::i1:
816 case MVT::i8:
817 case MVT::i16:
818 case MVT::i32:
819 // Integer loads/stores handle 12-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000820 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000821 break;
822 case MVT::f32:
823 case MVT::f64:
824 // Floating point operands handle 8-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000825 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000826 break;
827 }
Jim Grosbach6b156392010-10-27 21:39:08 +0000828
Eric Christopher827656d2010-11-20 22:38:27 +0000829 // If this is a stack pointer and the offset needs to be simplified then
830 // put the alloca address into a register, set the base type back to
831 // register and continue. This should almost never happen.
832 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
833 TargetRegisterClass *RC = isThumb ? ARM::tGPRRegisterClass :
834 ARM::GPRRegisterClass;
835 unsigned ResultReg = createResultReg(RC);
836 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
837 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
838 TII.get(Opc), ResultReg)
839 .addFrameIndex(Addr.Base.FI)
840 .addImm(0));
841 Addr.Base.Reg = ResultReg;
842 Addr.BaseType = Address::RegBase;
843 }
844
Eric Christopher212ae932010-10-21 19:40:30 +0000845 // Since the offset is too large for the load/store instruction
Eric Christopher318b6ee2010-09-02 00:53:56 +0000846 // get the reg+offset into a register.
Eric Christopher212ae932010-10-21 19:40:30 +0000847 if (needsLowering) {
Eli Friedman9ebf57a2011-04-29 21:22:56 +0000848 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
849 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopher0d581222010-11-19 22:30:02 +0000850 Addr.Offset = 0;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000851 }
Eric Christopher83007122010-08-23 21:44:12 +0000852}
853
Eric Christopher564857f2010-12-01 01:40:24 +0000854void ARMFastISel::AddLoadStoreOperands(EVT VT, Address &Addr,
855 const MachineInstrBuilder &MIB) {
856 // addrmode5 output depends on the selection dag addressing dividing the
857 // offset by 4 that it then later multiplies. Do this here as well.
858 if (VT.getSimpleVT().SimpleTy == MVT::f32 ||
859 VT.getSimpleVT().SimpleTy == MVT::f64)
860 Addr.Offset /= 4;
Eric Christopher299bbb22011-04-29 00:03:10 +0000861
Eric Christopher564857f2010-12-01 01:40:24 +0000862 // Frame base works a bit differently. Handle it separately.
863 if (Addr.BaseType == Address::FrameIndexBase) {
864 int FI = Addr.Base.FI;
865 int Offset = Addr.Offset;
866 MachineMemOperand *MMO =
867 FuncInfo.MF->getMachineMemOperand(
868 MachinePointerInfo::getFixedStack(FI, Offset),
869 MachineMemOperand::MOLoad,
870 MFI.getObjectSize(FI),
871 MFI.getObjectAlignment(FI));
872 // Now add the rest of the operands.
873 MIB.addFrameIndex(FI);
874
875 // ARM halfword load/stores need an additional operand.
876 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
877
878 MIB.addImm(Addr.Offset);
879 MIB.addMemOperand(MMO);
880 } else {
881 // Now add the rest of the operands.
882 MIB.addReg(Addr.Base.Reg);
Eric Christopher299bbb22011-04-29 00:03:10 +0000883
Eric Christopher564857f2010-12-01 01:40:24 +0000884 // ARM halfword load/stores need an additional operand.
885 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
886
887 MIB.addImm(Addr.Offset);
888 }
889 AddOptionalDefs(MIB);
890}
891
Eric Christopher0d581222010-11-19 22:30:02 +0000892bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000893
Eric Christopherb1cc8482010-08-25 07:23:49 +0000894 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000895 unsigned Opc;
Eric Christopheree56ea62010-10-07 05:50:44 +0000896 TargetRegisterClass *RC;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000897 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000898 // This is mostly going to be Neon/vector support.
899 default: return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000900 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000901 Opc = isThumb ? ARM::t2LDRHi12 : ARM::LDRH;
Eric Christopher7a56f332010-10-08 01:13:17 +0000902 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000903 break;
904 case MVT::i8:
Jim Grosbachc1d30212010-10-27 00:19:44 +0000905 Opc = isThumb ? ARM::t2LDRBi12 : ARM::LDRBi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000906 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000907 break;
Eric Christopherdc908042010-08-31 01:28:42 +0000908 case MVT::i32:
Jim Grosbach3e556122010-10-26 22:37:02 +0000909 Opc = isThumb ? ARM::t2LDRi12 : ARM::LDRi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000910 RC = ARM::GPRRegisterClass;
Eric Christopherdc908042010-08-31 01:28:42 +0000911 break;
Eric Christopher6dab1372010-09-18 01:59:37 +0000912 case MVT::f32:
913 Opc = ARM::VLDRS;
Eric Christopheree56ea62010-10-07 05:50:44 +0000914 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000915 break;
916 case MVT::f64:
917 Opc = ARM::VLDRD;
Eric Christopheree56ea62010-10-07 05:50:44 +0000918 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000919 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000920 }
Eric Christopher564857f2010-12-01 01:40:24 +0000921 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000922 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000923
Eric Christopher564857f2010-12-01 01:40:24 +0000924 // Create the base instruction, then add the operands.
925 ResultReg = createResultReg(RC);
926 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
927 TII.get(Opc), ResultReg);
928 AddLoadStoreOperands(VT, Addr, MIB);
Eric Christopherdc908042010-08-31 01:28:42 +0000929 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000930}
931
Eric Christopher43b62be2010-09-27 06:02:23 +0000932bool ARMFastISel::SelectLoad(const Instruction *I) {
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000933 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000934 MVT VT;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000935 if (!isLoadTypeLegal(I->getType(), VT))
936 return false;
937
Eric Christopher564857f2010-12-01 01:40:24 +0000938 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +0000939 Address Addr;
Eric Christopher564857f2010-12-01 01:40:24 +0000940 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000941
942 unsigned ResultReg;
Eric Christopher0d581222010-11-19 22:30:02 +0000943 if (!ARMEmitLoad(VT, ResultReg, Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000944 UpdateValueMap(I, ResultReg);
945 return true;
946}
947
Eric Christopher0d581222010-11-19 22:30:02 +0000948bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000949 unsigned StrOpc;
950 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000951 // This is mostly going to be Neon/vector support.
Eric Christopher318b6ee2010-09-02 00:53:56 +0000952 default: return false;
Eric Christopher4c914122010-11-02 23:59:09 +0000953 case MVT::i1: {
954 unsigned Res = createResultReg(isThumb ? ARM::tGPRRegisterClass :
955 ARM::GPRRegisterClass);
956 unsigned Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
957 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
958 TII.get(Opc), Res)
959 .addReg(SrcReg).addImm(1));
960 SrcReg = Res;
961 } // Fallthrough here.
Eric Christopher2896df82010-10-15 18:02:07 +0000962 case MVT::i8:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000963 StrOpc = isThumb ? ARM::t2STRBi12 : ARM::STRBi12;
Eric Christopher15418772010-10-12 05:39:06 +0000964 break;
965 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000966 StrOpc = isThumb ? ARM::t2STRHi12 : ARM::STRH;
Eric Christopher15418772010-10-12 05:39:06 +0000967 break;
Eric Christopher47650ec2010-10-16 01:10:35 +0000968 case MVT::i32:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000969 StrOpc = isThumb ? ARM::t2STRi12 : ARM::STRi12;
Eric Christopher47650ec2010-10-16 01:10:35 +0000970 break;
Eric Christopher56d2b722010-09-02 23:43:26 +0000971 case MVT::f32:
972 if (!Subtarget->hasVFP2()) return false;
973 StrOpc = ARM::VSTRS;
974 break;
975 case MVT::f64:
976 if (!Subtarget->hasVFP2()) return false;
977 StrOpc = ARM::VSTRD;
978 break;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000979 }
Eric Christopher564857f2010-12-01 01:40:24 +0000980 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000981 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000982
Eric Christopher564857f2010-12-01 01:40:24 +0000983 // Create the base instruction, then add the operands.
984 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
985 TII.get(StrOpc))
986 .addReg(SrcReg, getKillRegState(true));
987 AddLoadStoreOperands(VT, Addr, MIB);
Eric Christopher318b6ee2010-09-02 00:53:56 +0000988 return true;
989}
990
Eric Christopher43b62be2010-09-27 06:02:23 +0000991bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000992 Value *Op0 = I->getOperand(0);
993 unsigned SrcReg = 0;
994
Eric Christopher564857f2010-12-01 01:40:24 +0000995 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000996 MVT VT;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000997 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopher543cf052010-09-01 22:16:27 +0000998 return false;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000999
Eric Christopher1b61ef42010-09-02 01:48:11 +00001000 // Get the value to be stored into a register.
1001 SrcReg = getRegForValue(Op0);
Eric Christopher564857f2010-12-01 01:40:24 +00001002 if (SrcReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001003
Eric Christopher564857f2010-12-01 01:40:24 +00001004 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +00001005 Address Addr;
Eric Christopher0d581222010-11-19 22:30:02 +00001006 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher318b6ee2010-09-02 00:53:56 +00001007 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001008
Eric Christopher0d581222010-11-19 22:30:02 +00001009 if (!ARMEmitStore(VT, SrcReg, Addr)) return false;
Eric Christophera5b1e682010-09-17 22:28:18 +00001010 return true;
1011}
1012
1013static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1014 switch (Pred) {
1015 // Needs two compares...
1016 case CmpInst::FCMP_ONE:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001017 case CmpInst::FCMP_UEQ:
Eric Christophera5b1e682010-09-17 22:28:18 +00001018 default:
Eric Christopher4053e632010-11-02 01:24:49 +00001019 // AL is our "false" for now. The other two need more compares.
Eric Christophera5b1e682010-09-17 22:28:18 +00001020 return ARMCC::AL;
1021 case CmpInst::ICMP_EQ:
1022 case CmpInst::FCMP_OEQ:
1023 return ARMCC::EQ;
1024 case CmpInst::ICMP_SGT:
1025 case CmpInst::FCMP_OGT:
1026 return ARMCC::GT;
1027 case CmpInst::ICMP_SGE:
1028 case CmpInst::FCMP_OGE:
1029 return ARMCC::GE;
1030 case CmpInst::ICMP_UGT:
1031 case CmpInst::FCMP_UGT:
1032 return ARMCC::HI;
1033 case CmpInst::FCMP_OLT:
1034 return ARMCC::MI;
1035 case CmpInst::ICMP_ULE:
1036 case CmpInst::FCMP_OLE:
1037 return ARMCC::LS;
1038 case CmpInst::FCMP_ORD:
1039 return ARMCC::VC;
1040 case CmpInst::FCMP_UNO:
1041 return ARMCC::VS;
1042 case CmpInst::FCMP_UGE:
1043 return ARMCC::PL;
1044 case CmpInst::ICMP_SLT:
1045 case CmpInst::FCMP_ULT:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001046 return ARMCC::LT;
Eric Christophera5b1e682010-09-17 22:28:18 +00001047 case CmpInst::ICMP_SLE:
1048 case CmpInst::FCMP_ULE:
1049 return ARMCC::LE;
1050 case CmpInst::FCMP_UNE:
1051 case CmpInst::ICMP_NE:
1052 return ARMCC::NE;
1053 case CmpInst::ICMP_UGE:
1054 return ARMCC::HS;
1055 case CmpInst::ICMP_ULT:
1056 return ARMCC::LO;
1057 }
Eric Christopher543cf052010-09-01 22:16:27 +00001058}
1059
Eric Christopher43b62be2010-09-27 06:02:23 +00001060bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christophere5734102010-09-03 00:35:47 +00001061 const BranchInst *BI = cast<BranchInst>(I);
1062 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1063 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopherac1a19e2010-09-09 01:06:51 +00001064
Eric Christophere5734102010-09-03 00:35:47 +00001065 // Simple branch support.
Jim Grosbach16cb3762010-11-09 19:22:26 +00001066
Eric Christopher0e6233b2010-10-29 21:08:19 +00001067 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1068 // behavior.
1069 // TODO: Factor this out.
1070 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Eric Christopher632ae892011-04-29 21:56:31 +00001071 MVT SourceVT;
1072 const Type *Ty = CI->getOperand(0)->getType();
1073 if (CI->hasOneUse() && (CI->getParent() == I->getParent())
1074 && isTypeLegal(Ty, SourceVT)) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001075 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1076 if (isFloat && !Subtarget->hasVFP2())
1077 return false;
1078
1079 unsigned CmpOpc;
Eric Christopher632ae892011-04-29 21:56:31 +00001080 switch (SourceVT.SimpleTy) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001081 default: return false;
1082 // TODO: Verify compares.
1083 case MVT::f32:
1084 CmpOpc = ARM::VCMPES;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001085 break;
1086 case MVT::f64:
1087 CmpOpc = ARM::VCMPED;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001088 break;
1089 case MVT::i32:
1090 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001091 break;
1092 }
1093
1094 // Get the compare predicate.
Eric Christopher632ae892011-04-29 21:56:31 +00001095 // Try to take advantage of fallthrough opportunities.
1096 CmpInst::Predicate Predicate = CI->getPredicate();
1097 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1098 std::swap(TBB, FBB);
1099 Predicate = CmpInst::getInversePredicate(Predicate);
1100 }
1101
1102 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher0e6233b2010-10-29 21:08:19 +00001103
1104 // We may not handle every CC for now.
1105 if (ARMPred == ARMCC::AL) return false;
1106
1107 unsigned Arg1 = getRegForValue(CI->getOperand(0));
1108 if (Arg1 == 0) return false;
1109
1110 unsigned Arg2 = getRegForValue(CI->getOperand(1));
1111 if (Arg2 == 0) return false;
1112
1113 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1114 TII.get(CmpOpc))
1115 .addReg(Arg1).addReg(Arg2));
Jim Grosbach16cb3762010-11-09 19:22:26 +00001116
Eric Christopher0e6233b2010-10-29 21:08:19 +00001117 // For floating point we need to move the result to a comparison register
1118 // that we can then use for branches.
1119 if (isFloat)
1120 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1121 TII.get(ARM::FMSTAT)));
Jim Grosbach16cb3762010-11-09 19:22:26 +00001122
Eric Christopher0e6233b2010-10-29 21:08:19 +00001123 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1124 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1125 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
1126 FastEmitBranch(FBB, DL);
1127 FuncInfo.MBB->addSuccessor(TBB);
1128 return true;
1129 }
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001130 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1131 MVT SourceVT;
1132 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
1133 (isTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
1134 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1135 unsigned OpReg = getRegForValue(TI->getOperand(0));
1136 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1137 TII.get(TstOpc))
1138 .addReg(OpReg).addImm(1));
1139
1140 unsigned CCMode = ARMCC::NE;
1141 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1142 std::swap(TBB, FBB);
1143 CCMode = ARMCC::EQ;
1144 }
1145
1146 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1147 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1148 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1149
1150 FastEmitBranch(FBB, DL);
1151 FuncInfo.MBB->addSuccessor(TBB);
1152 return true;
1153 }
Eric Christopher0e6233b2010-10-29 21:08:19 +00001154 }
Jim Grosbach16cb3762010-11-09 19:22:26 +00001155
Eric Christopher0e6233b2010-10-29 21:08:19 +00001156 unsigned CmpReg = getRegForValue(BI->getCondition());
1157 if (CmpReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001158
Stuart Hastingsc5eecbc2011-04-16 03:31:26 +00001159 // We've been divorced from our compare! Our block was split, and
1160 // now our compare lives in a predecessor block. We musn't
1161 // re-compare here, as the children of the compare aren't guaranteed
1162 // live across the block boundary (we *could* check for this).
1163 // Regardless, the compare has been done in the predecessor block,
1164 // and it left a value for us in a virtual register. Ergo, we test
1165 // the one-bit value left in the virtual register.
1166 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1167 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TstOpc))
1168 .addReg(CmpReg).addImm(1));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001169
Eric Christopher7a20a372011-04-28 16:52:09 +00001170 unsigned CCMode = ARMCC::NE;
1171 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1172 std::swap(TBB, FBB);
1173 CCMode = ARMCC::EQ;
1174 }
1175
Eric Christophere5734102010-09-03 00:35:47 +00001176 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
Eric Christophere5734102010-09-03 00:35:47 +00001177 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
Eric Christopher7a20a372011-04-28 16:52:09 +00001178 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Eric Christophere5734102010-09-03 00:35:47 +00001179 FastEmitBranch(FBB, DL);
1180 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001181 return true;
Eric Christophere5734102010-09-03 00:35:47 +00001182}
1183
Eric Christopher43b62be2010-09-27 06:02:23 +00001184bool ARMFastISel::SelectCmp(const Instruction *I) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001185 const CmpInst *CI = cast<CmpInst>(I);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001186
Duncan Sands1440e8b2010-11-03 11:35:31 +00001187 MVT VT;
Eric Christopherd43393a2010-09-08 23:13:45 +00001188 const Type *Ty = CI->getOperand(0)->getType();
1189 if (!isTypeLegal(Ty, VT))
1190 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001191
Eric Christopherd43393a2010-09-08 23:13:45 +00001192 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1193 if (isFloat && !Subtarget->hasVFP2())
1194 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001195
Eric Christopherd43393a2010-09-08 23:13:45 +00001196 unsigned CmpOpc;
Eric Christopher229207a2010-09-29 01:14:47 +00001197 unsigned CondReg;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001198 switch (VT.SimpleTy) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001199 default: return false;
1200 // TODO: Verify compares.
1201 case MVT::f32:
1202 CmpOpc = ARM::VCMPES;
Eric Christopher229207a2010-09-29 01:14:47 +00001203 CondReg = ARM::FPSCR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001204 break;
1205 case MVT::f64:
1206 CmpOpc = ARM::VCMPED;
Eric Christopher229207a2010-09-29 01:14:47 +00001207 CondReg = ARM::FPSCR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001208 break;
1209 case MVT::i32:
1210 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
Eric Christopher229207a2010-09-29 01:14:47 +00001211 CondReg = ARM::CPSR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001212 break;
1213 }
1214
Eric Christopher229207a2010-09-29 01:14:47 +00001215 // Get the compare predicate.
1216 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopherdccd2c32010-10-11 08:38:55 +00001217
Eric Christopher229207a2010-09-29 01:14:47 +00001218 // We may not handle every CC for now.
1219 if (ARMPred == ARMCC::AL) return false;
1220
Eric Christopherd43393a2010-09-08 23:13:45 +00001221 unsigned Arg1 = getRegForValue(CI->getOperand(0));
1222 if (Arg1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001223
Eric Christopherd43393a2010-09-08 23:13:45 +00001224 unsigned Arg2 = getRegForValue(CI->getOperand(1));
1225 if (Arg2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001226
Eric Christopherd43393a2010-09-08 23:13:45 +00001227 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1228 .addReg(Arg1).addReg(Arg2));
Eric Christopherac1a19e2010-09-09 01:06:51 +00001229
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001230 // For floating point we need to move the result to a comparison register
1231 // that we can then use for branches.
Eric Christopherd43393a2010-09-08 23:13:45 +00001232 if (isFloat)
1233 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1234 TII.get(ARM::FMSTAT)));
Eric Christopherce07b542010-09-09 20:26:31 +00001235
Eric Christopher229207a2010-09-29 01:14:47 +00001236 // Now set a register based on the comparison. Explicitly set the predicates
1237 // here.
Eric Christopher338c2532010-10-07 05:31:49 +00001238 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCi : ARM::MOVCCi;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001239 TargetRegisterClass *RC = isThumb ? ARM::rGPRRegisterClass
Eric Christopher5d18d922010-10-07 05:39:19 +00001240 : ARM::GPRRegisterClass;
1241 unsigned DestReg = createResultReg(RC);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001242 Constant *Zero
Eric Christopher8cf6c602010-09-29 22:24:45 +00001243 = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher229207a2010-09-29 01:14:47 +00001244 unsigned ZeroReg = TargetMaterializeConstant(Zero);
1245 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), DestReg)
1246 .addReg(ZeroReg).addImm(1)
1247 .addImm(ARMPred).addReg(CondReg);
1248
Eric Christophera5b1e682010-09-17 22:28:18 +00001249 UpdateValueMap(I, DestReg);
Eric Christopherd43393a2010-09-08 23:13:45 +00001250 return true;
1251}
1252
Eric Christopher43b62be2010-09-27 06:02:23 +00001253bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopher46203602010-09-09 00:26:48 +00001254 // Make sure we have VFP and that we're extending float to double.
1255 if (!Subtarget->hasVFP2()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001256
Eric Christopher46203602010-09-09 00:26:48 +00001257 Value *V = I->getOperand(0);
1258 if (!I->getType()->isDoubleTy() ||
1259 !V->getType()->isFloatTy()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001260
Eric Christopher46203602010-09-09 00:26:48 +00001261 unsigned Op = getRegForValue(V);
1262 if (Op == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001263
Eric Christopher46203602010-09-09 00:26:48 +00001264 unsigned Result = createResultReg(ARM::DPRRegisterClass);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001265 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001266 TII.get(ARM::VCVTDS), Result)
Eric Christopherce07b542010-09-09 20:26:31 +00001267 .addReg(Op));
1268 UpdateValueMap(I, Result);
1269 return true;
1270}
1271
Eric Christopher43b62be2010-09-27 06:02:23 +00001272bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopherce07b542010-09-09 20:26:31 +00001273 // Make sure we have VFP and that we're truncating double to float.
1274 if (!Subtarget->hasVFP2()) return false;
1275
1276 Value *V = I->getOperand(0);
Eric Christopher022b7fb2010-10-05 23:13:24 +00001277 if (!(I->getType()->isFloatTy() &&
1278 V->getType()->isDoubleTy())) return false;
Eric Christopherce07b542010-09-09 20:26:31 +00001279
1280 unsigned Op = getRegForValue(V);
1281 if (Op == 0) return false;
1282
1283 unsigned Result = createResultReg(ARM::SPRRegisterClass);
Eric Christopherce07b542010-09-09 20:26:31 +00001284 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001285 TII.get(ARM::VCVTSD), Result)
Eric Christopher46203602010-09-09 00:26:48 +00001286 .addReg(Op));
1287 UpdateValueMap(I, Result);
1288 return true;
1289}
1290
Eric Christopher43b62be2010-09-27 06:02:23 +00001291bool ARMFastISel::SelectSIToFP(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001292 // Make sure we have VFP.
1293 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001294
Duncan Sands1440e8b2010-11-03 11:35:31 +00001295 MVT DstVT;
Eric Christopher9a040492010-09-09 18:54:59 +00001296 const Type *Ty = I->getType();
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001297 if (!isTypeLegal(Ty, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001298 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001299
Eric Christopher9a040492010-09-09 18:54:59 +00001300 unsigned Op = getRegForValue(I->getOperand(0));
1301 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001302
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001303 // The conversion routine works on fp-reg to fp-reg and the operand above
1304 // was an integer, move it to the fp registers if possible.
Eric Christopher022b7fb2010-10-05 23:13:24 +00001305 unsigned FP = ARMMoveToFPReg(MVT::f32, Op);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001306 if (FP == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001307
Eric Christopher9a040492010-09-09 18:54:59 +00001308 unsigned Opc;
1309 if (Ty->isFloatTy()) Opc = ARM::VSITOS;
1310 else if (Ty->isDoubleTy()) Opc = ARM::VSITOD;
1311 else return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001312
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001313 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Eric Christopher9a040492010-09-09 18:54:59 +00001314 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1315 ResultReg)
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001316 .addReg(FP));
Eric Christopherce07b542010-09-09 20:26:31 +00001317 UpdateValueMap(I, ResultReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001318 return true;
1319}
1320
Eric Christopher43b62be2010-09-27 06:02:23 +00001321bool ARMFastISel::SelectFPToSI(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001322 // Make sure we have VFP.
1323 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001324
Duncan Sands1440e8b2010-11-03 11:35:31 +00001325 MVT DstVT;
Eric Christopher9a040492010-09-09 18:54:59 +00001326 const Type *RetTy = I->getType();
Eric Christopher920a2082010-09-10 00:35:09 +00001327 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001328 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001329
Eric Christopher9a040492010-09-09 18:54:59 +00001330 unsigned Op = getRegForValue(I->getOperand(0));
1331 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001332
Eric Christopher9a040492010-09-09 18:54:59 +00001333 unsigned Opc;
1334 const Type *OpTy = I->getOperand(0)->getType();
1335 if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS;
1336 else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD;
1337 else return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001338
Eric Christopher022b7fb2010-10-05 23:13:24 +00001339 // f64->s32 or f32->s32 both need an intermediate f32 reg.
1340 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Eric Christopher9a040492010-09-09 18:54:59 +00001341 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1342 ResultReg)
1343 .addReg(Op));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001344
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001345 // This result needs to be in an integer register, but the conversion only
1346 // takes place in fp-regs.
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001347 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001348 if (IntReg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001349
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001350 UpdateValueMap(I, IntReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001351 return true;
1352}
1353
Eric Christopher3bbd3962010-10-11 08:27:59 +00001354bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001355 MVT VT;
1356 if (!isTypeLegal(I->getType(), VT))
Eric Christopher3bbd3962010-10-11 08:27:59 +00001357 return false;
1358
1359 // Things need to be register sized for register moves.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001360 if (VT != MVT::i32) return false;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001361 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
1362
1363 unsigned CondReg = getRegForValue(I->getOperand(0));
1364 if (CondReg == 0) return false;
1365 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1366 if (Op1Reg == 0) return false;
1367 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1368 if (Op2Reg == 0) return false;
1369
1370 unsigned CmpOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1371 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1372 .addReg(CondReg).addImm(1));
1373 unsigned ResultReg = createResultReg(RC);
1374 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCr : ARM::MOVCCr;
1375 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), ResultReg)
1376 .addReg(Op1Reg).addReg(Op2Reg)
1377 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
1378 UpdateValueMap(I, ResultReg);
1379 return true;
1380}
1381
Eric Christopher08637852010-09-30 22:34:19 +00001382bool ARMFastISel::SelectSDiv(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001383 MVT VT;
Eric Christopher08637852010-09-30 22:34:19 +00001384 const Type *Ty = I->getType();
1385 if (!isTypeLegal(Ty, VT))
1386 return false;
1387
1388 // If we have integer div support we should have selected this automagically.
1389 // In case we have a real miss go ahead and return false and we'll pick
1390 // it up later.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001391 if (Subtarget->hasDivide()) return false;
1392
Eric Christopher08637852010-09-30 22:34:19 +00001393 // Otherwise emit a libcall.
1394 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christopher7bdc4de2010-10-11 08:31:54 +00001395 if (VT == MVT::i8)
1396 LC = RTLIB::SDIV_I8;
1397 else if (VT == MVT::i16)
Eric Christopher08637852010-09-30 22:34:19 +00001398 LC = RTLIB::SDIV_I16;
1399 else if (VT == MVT::i32)
1400 LC = RTLIB::SDIV_I32;
1401 else if (VT == MVT::i64)
1402 LC = RTLIB::SDIV_I64;
1403 else if (VT == MVT::i128)
1404 LC = RTLIB::SDIV_I128;
1405 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopherdccd2c32010-10-11 08:38:55 +00001406
Eric Christopher08637852010-09-30 22:34:19 +00001407 return ARMEmitLibcall(I, LC);
1408}
1409
Eric Christopher6a880d62010-10-11 08:37:26 +00001410bool ARMFastISel::SelectSRem(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001411 MVT VT;
Eric Christopher6a880d62010-10-11 08:37:26 +00001412 const Type *Ty = I->getType();
1413 if (!isTypeLegal(Ty, VT))
1414 return false;
1415
1416 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1417 if (VT == MVT::i8)
1418 LC = RTLIB::SREM_I8;
1419 else if (VT == MVT::i16)
1420 LC = RTLIB::SREM_I16;
1421 else if (VT == MVT::i32)
1422 LC = RTLIB::SREM_I32;
1423 else if (VT == MVT::i64)
1424 LC = RTLIB::SREM_I64;
1425 else if (VT == MVT::i128)
1426 LC = RTLIB::SREM_I128;
Eric Christophera1640d92010-10-11 08:40:05 +00001427 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christopher2896df82010-10-15 18:02:07 +00001428
Eric Christopher6a880d62010-10-11 08:37:26 +00001429 return ARMEmitLibcall(I, LC);
1430}
1431
Eric Christopher43b62be2010-09-27 06:02:23 +00001432bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
Eric Christopherbd6bf082010-09-09 01:02:03 +00001433 EVT VT = TLI.getValueType(I->getType(), true);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001434
Eric Christopherbc39b822010-09-09 00:53:57 +00001435 // We can get here in the case when we want to use NEON for our fp
1436 // operations, but can't figure out how to. Just use the vfp instructions
1437 // if we have them.
1438 // FIXME: It'd be nice to use NEON instructions.
Eric Christopherbd6bf082010-09-09 01:02:03 +00001439 const Type *Ty = I->getType();
1440 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1441 if (isFloat && !Subtarget->hasVFP2())
1442 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001443
Eric Christopherbc39b822010-09-09 00:53:57 +00001444 unsigned Op1 = getRegForValue(I->getOperand(0));
1445 if (Op1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001446
Eric Christopherbc39b822010-09-09 00:53:57 +00001447 unsigned Op2 = getRegForValue(I->getOperand(1));
1448 if (Op2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001449
Eric Christopherbc39b822010-09-09 00:53:57 +00001450 unsigned Opc;
Duncan Sandscdfad362010-11-03 12:17:33 +00001451 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopherbc39b822010-09-09 00:53:57 +00001452 switch (ISDOpcode) {
1453 default: return false;
1454 case ISD::FADD:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001455 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001456 break;
1457 case ISD::FSUB:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001458 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001459 break;
1460 case ISD::FMUL:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001461 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001462 break;
1463 }
Eric Christopherbd6bf082010-09-09 01:02:03 +00001464 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Eric Christopherbc39b822010-09-09 00:53:57 +00001465 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1466 TII.get(Opc), ResultReg)
1467 .addReg(Op1).addReg(Op2));
Eric Christopherce07b542010-09-09 20:26:31 +00001468 UpdateValueMap(I, ResultReg);
Eric Christopherbc39b822010-09-09 00:53:57 +00001469 return true;
1470}
1471
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001472// Call Handling Code
1473
Eric Christopherfa87d662010-10-18 02:17:53 +00001474bool ARMFastISel::FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src,
1475 EVT SrcVT, unsigned &ResultReg) {
1476 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
1477 Src, /*TODO: Kill=*/false);
Jim Grosbach6b156392010-10-27 21:39:08 +00001478
Eric Christopherfa87d662010-10-18 02:17:53 +00001479 if (RR != 0) {
1480 ResultReg = RR;
1481 return true;
1482 } else
Jim Grosbach6b156392010-10-27 21:39:08 +00001483 return false;
Eric Christopherfa87d662010-10-18 02:17:53 +00001484}
1485
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001486// This is largely taken directly from CCAssignFnForNode - we don't support
1487// varargs in FastISel so that part has been removed.
1488// TODO: We may not support all of this.
1489CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
1490 switch (CC) {
1491 default:
1492 llvm_unreachable("Unsupported calling convention");
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001493 case CallingConv::Fast:
Evan Cheng1f8b40d2010-10-22 18:57:05 +00001494 // Ignore fastcc. Silence compiler warnings.
1495 (void)RetFastCC_ARM_APCS;
1496 (void)FastCC_ARM_APCS;
1497 // Fallthrough
1498 case CallingConv::C:
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001499 // Use target triple & subtarget features to do actual dispatch.
1500 if (Subtarget->isAAPCS_ABI()) {
1501 if (Subtarget->hasVFP2() &&
1502 FloatABIType == FloatABI::Hard)
1503 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1504 else
1505 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1506 } else
1507 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1508 case CallingConv::ARM_AAPCS_VFP:
1509 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1510 case CallingConv::ARM_AAPCS:
1511 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1512 case CallingConv::ARM_APCS:
1513 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1514 }
1515}
1516
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001517bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1518 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001519 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001520 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1521 SmallVectorImpl<unsigned> &RegArgs,
1522 CallingConv::ID CC,
1523 unsigned &NumBytes) {
1524 SmallVector<CCValAssign, 16> ArgLocs;
1525 CCState CCInfo(CC, false, TM, ArgLocs, *Context);
1526 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC, false));
1527
1528 // Get a count of how many bytes are to be pushed on the stack.
1529 NumBytes = CCInfo.getNextStackOffset();
1530
1531 // Issue CALLSEQ_START
1532 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001533 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1534 TII.get(AdjStackDown))
1535 .addImm(NumBytes));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001536
1537 // Process the args.
1538 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1539 CCValAssign &VA = ArgLocs[i];
1540 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sands1440e8b2010-11-03 11:35:31 +00001541 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001542
Eric Christopher4a2b3162011-01-27 05:44:56 +00001543 // We don't handle NEON/vector parameters yet.
1544 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
Eric Christophera4633f52010-10-23 09:37:17 +00001545 return false;
1546
Eric Christopherf9764fa2010-09-30 20:49:44 +00001547 // Handle arg promotion, etc.
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001548 switch (VA.getLocInfo()) {
1549 case CCValAssign::Full: break;
Eric Christopherfa87d662010-10-18 02:17:53 +00001550 case CCValAssign::SExt: {
1551 bool Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1552 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001553 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001554 Emitted = true;
1555 ArgVT = VA.getLocVT();
1556 break;
1557 }
1558 case CCValAssign::ZExt: {
1559 bool Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1560 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001561 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001562 Emitted = true;
1563 ArgVT = VA.getLocVT();
1564 break;
1565 }
1566 case CCValAssign::AExt: {
Eric Christopherfa87d662010-10-18 02:17:53 +00001567 bool Emitted = FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1568 Arg, ArgVT, Arg);
1569 if (!Emitted)
1570 Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1571 Arg, ArgVT, Arg);
1572 if (!Emitted)
1573 Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1574 Arg, ArgVT, Arg);
1575
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001576 assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001577 ArgVT = VA.getLocVT();
1578 break;
1579 }
1580 case CCValAssign::BCvt: {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001581 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001582 /*TODO: Kill=*/false);
Eric Christopherfa87d662010-10-18 02:17:53 +00001583 assert(BC != 0 && "Failed to emit a bitcast!");
1584 Arg = BC;
1585 ArgVT = VA.getLocVT();
1586 break;
1587 }
1588 default: llvm_unreachable("Unknown arg promotion!");
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001589 }
1590
1591 // Now copy/store arg to correct locations.
Eric Christopherfb0b8922010-10-11 21:20:02 +00001592 if (VA.isRegLoc() && !VA.needsCustom()) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001593 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
Eric Christopherf9764fa2010-09-30 20:49:44 +00001594 VA.getLocReg())
1595 .addReg(Arg);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001596 RegArgs.push_back(VA.getLocReg());
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001597 } else if (VA.needsCustom()) {
1598 // TODO: We need custom lowering for vector (v2f64) args.
1599 if (VA.getLocVT() != MVT::f64) return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001600
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001601 CCValAssign &NextVA = ArgLocs[++i];
1602
1603 // TODO: Only handle register args for now.
1604 if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false;
1605
1606 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1607 TII.get(ARM::VMOVRRD), VA.getLocReg())
1608 .addReg(NextVA.getLocReg(), RegState::Define)
1609 .addReg(Arg));
1610 RegArgs.push_back(VA.getLocReg());
1611 RegArgs.push_back(NextVA.getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001612 } else {
Eric Christopher5b924802010-10-21 20:09:54 +00001613 assert(VA.isMemLoc());
1614 // Need to store on the stack.
Eric Christopher0d581222010-11-19 22:30:02 +00001615 Address Addr;
1616 Addr.BaseType = Address::RegBase;
1617 Addr.Base.Reg = ARM::SP;
1618 Addr.Offset = VA.getLocMemOffset();
Eric Christopher5b924802010-10-21 20:09:54 +00001619
Eric Christopher0d581222010-11-19 22:30:02 +00001620 if (!ARMEmitStore(ArgVT, Arg, Addr)) return false;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001621 }
1622 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001623 return true;
1624}
1625
Duncan Sands1440e8b2010-11-03 11:35:31 +00001626bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001627 const Instruction *I, CallingConv::ID CC,
1628 unsigned &NumBytes) {
1629 // Issue CALLSEQ_END
1630 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001631 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1632 TII.get(AdjStackUp))
1633 .addImm(NumBytes).addImm(0));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001634
1635 // Now the return value.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001636 if (RetVT != MVT::isVoid) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001637 SmallVector<CCValAssign, 16> RVLocs;
1638 CCState CCInfo(CC, false, TM, RVLocs, *Context);
1639 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true));
1640
1641 // Copy all of the result registers out of their specified physreg.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001642 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopher14df8822010-10-01 00:00:11 +00001643 // For this move we copy into two registers and then move into the
1644 // double fp reg we want.
Eric Christopher14df8822010-10-01 00:00:11 +00001645 EVT DestVT = RVLocs[0].getValVT();
1646 TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
1647 unsigned ResultReg = createResultReg(DstRC);
1648 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1649 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopher3659ac22010-10-20 08:02:24 +00001650 .addReg(RVLocs[0].getLocReg())
1651 .addReg(RVLocs[1].getLocReg()));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001652
Eric Christopher3659ac22010-10-20 08:02:24 +00001653 UsedRegs.push_back(RVLocs[0].getLocReg());
1654 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach6b156392010-10-27 21:39:08 +00001655
Eric Christopherdccd2c32010-10-11 08:38:55 +00001656 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001657 UpdateValueMap(I, ResultReg);
1658 } else {
Jim Grosbach95369592010-10-13 23:34:31 +00001659 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Eric Christopher14df8822010-10-01 00:00:11 +00001660 EVT CopyVT = RVLocs[0].getValVT();
1661 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001662
Eric Christopher14df8822010-10-01 00:00:11 +00001663 unsigned ResultReg = createResultReg(DstRC);
1664 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1665 ResultReg).addReg(RVLocs[0].getLocReg());
1666 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001667
Eric Christopherdccd2c32010-10-11 08:38:55 +00001668 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001669 UpdateValueMap(I, ResultReg);
1670 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001671 }
1672
Eric Christopherdccd2c32010-10-11 08:38:55 +00001673 return true;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001674}
1675
Eric Christopher4f512ef2010-10-22 01:28:00 +00001676bool ARMFastISel::SelectRet(const Instruction *I) {
1677 const ReturnInst *Ret = cast<ReturnInst>(I);
1678 const Function &F = *I->getParent()->getParent();
Jim Grosbach6b156392010-10-27 21:39:08 +00001679
Eric Christopher4f512ef2010-10-22 01:28:00 +00001680 if (!FuncInfo.CanLowerReturn)
1681 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001682
Eric Christopher4f512ef2010-10-22 01:28:00 +00001683 if (F.isVarArg())
1684 return false;
1685
1686 CallingConv::ID CC = F.getCallingConv();
1687 if (Ret->getNumOperands() > 0) {
1688 SmallVector<ISD::OutputArg, 4> Outs;
1689 GetReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
1690 Outs, TLI);
1691
1692 // Analyze operands of the call, assigning locations to each operand.
1693 SmallVector<CCValAssign, 16> ValLocs;
1694 CCState CCInfo(CC, F.isVarArg(), TM, ValLocs, I->getContext());
1695 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */));
1696
1697 const Value *RV = Ret->getOperand(0);
1698 unsigned Reg = getRegForValue(RV);
1699 if (Reg == 0)
1700 return false;
1701
1702 // Only handle a single return value for now.
1703 if (ValLocs.size() != 1)
1704 return false;
1705
1706 CCValAssign &VA = ValLocs[0];
Jim Grosbach6b156392010-10-27 21:39:08 +00001707
Eric Christopher4f512ef2010-10-22 01:28:00 +00001708 // Don't bother handling odd stuff for now.
1709 if (VA.getLocInfo() != CCValAssign::Full)
1710 return false;
1711 // Only handle register returns for now.
1712 if (!VA.isRegLoc())
1713 return false;
1714 // TODO: For now, don't try to handle cases where getLocInfo()
1715 // says Full but the types don't match.
Duncan Sands1e96bab2010-11-04 10:49:57 +00001716 if (TLI.getValueType(RV->getType()) != VA.getValVT())
Eric Christopher4f512ef2010-10-22 01:28:00 +00001717 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001718
Eric Christopher4f512ef2010-10-22 01:28:00 +00001719 // Make the copy.
1720 unsigned SrcReg = Reg + VA.getValNo();
1721 unsigned DstReg = VA.getLocReg();
1722 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
1723 // Avoid a cross-class copy. This is very unlikely.
1724 if (!SrcRC->contains(DstReg))
1725 return false;
1726 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1727 DstReg).addReg(SrcReg);
1728
1729 // Mark the register as live out of the function.
1730 MRI.addLiveOut(VA.getLocReg());
1731 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001732
Eric Christopher4f512ef2010-10-22 01:28:00 +00001733 unsigned RetOpc = isThumb ? ARM::tBX_RET : ARM::BX_RET;
1734 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1735 TII.get(RetOpc)));
1736 return true;
1737}
1738
Eric Christopher872f4a22011-02-22 01:37:10 +00001739unsigned ARMFastISel::ARMSelectCallOp(const GlobalValue *GV) {
1740
Eric Christopher872f4a22011-02-22 01:37:10 +00001741 // Darwin needs the r9 versions of the opcodes.
1742 bool isDarwin = Subtarget->isTargetDarwin();
Eric Christopher04356612011-04-05 00:39:26 +00001743 if (isThumb) {
Eric Christopher872f4a22011-02-22 01:37:10 +00001744 return isDarwin ? ARM::tBLr9 : ARM::tBL;
1745 } else {
1746 return isDarwin ? ARM::BLr9 : ARM::BL;
1747 }
1748}
1749
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001750// A quick function that will emit a call for a named libcall in F with the
1751// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopherdccd2c32010-10-11 08:38:55 +00001752// can emit a call for any libcall we can produce. This is an abridged version
1753// of the full call infrastructure since we won't need to worry about things
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001754// like computed function pointers or strange arguments at call sites.
1755// TODO: Try to unify this and the normal call bits for ARM, then try to unify
1756// with X86.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001757bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
1758 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001759
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001760 // Handle *simple* calls for now.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001761 const Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001762 MVT RetVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001763 if (RetTy->isVoidTy())
1764 RetVT = MVT::isVoid;
1765 else if (!isTypeLegal(RetTy, RetVT))
1766 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001767
Eric Christopher836c6242010-12-15 23:47:29 +00001768 // TODO: For now if we have long calls specified we don't handle the call.
1769 if (EnableARMLongCalls) return false;
1770
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001771 // Set up the argument vectors.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001772 SmallVector<Value*, 8> Args;
1773 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001774 SmallVector<MVT, 8> ArgVTs;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001775 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1776 Args.reserve(I->getNumOperands());
1777 ArgRegs.reserve(I->getNumOperands());
1778 ArgVTs.reserve(I->getNumOperands());
1779 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001780 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001781 Value *Op = I->getOperand(i);
1782 unsigned Arg = getRegForValue(Op);
1783 if (Arg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001784
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001785 const Type *ArgTy = Op->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001786 MVT ArgVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001787 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001788
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001789 ISD::ArgFlagsTy Flags;
1790 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1791 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001792
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001793 Args.push_back(Op);
1794 ArgRegs.push_back(Arg);
1795 ArgVTs.push_back(ArgVT);
1796 ArgFlags.push_back(Flags);
1797 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001798
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001799 // Handle the arguments now that we've gotten them.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001800 SmallVector<unsigned, 4> RegArgs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001801 unsigned NumBytes;
1802 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1803 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001804
Eric Christopher6344a5f2011-04-29 00:07:20 +00001805 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001806 // TODO: Turn this into the table of arm call ops.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001807 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001808 unsigned CallOpc = ARMSelectCallOp(NULL);
1809 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001810 // Explicitly adding the predicate here.
1811 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1812 TII.get(CallOpc)))
1813 .addExternalSymbol(TLI.getLibcallName(Call));
Eric Christopher872f4a22011-02-22 01:37:10 +00001814 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001815 // Explicitly adding the predicate here.
1816 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1817 TII.get(CallOpc))
1818 .addExternalSymbol(TLI.getLibcallName(Call)));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001819
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001820 // Add implicit physical register uses to the call.
1821 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1822 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001823
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001824 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001825 SmallVector<unsigned, 4> UsedRegs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001826 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001827
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001828 // Set all unused physreg defs as dead.
1829 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001830
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001831 return true;
1832}
1833
Eric Christopherf9764fa2010-09-30 20:49:44 +00001834bool ARMFastISel::SelectCall(const Instruction *I) {
1835 const CallInst *CI = cast<CallInst>(I);
1836 const Value *Callee = CI->getCalledValue();
1837
1838 // Can't handle inline asm or worry about intrinsics yet.
1839 if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false;
1840
Eric Christophere6ca6772010-10-01 21:33:12 +00001841 // Only handle global variable Callees that are direct calls.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001842 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Eric Christophere6ca6772010-10-01 21:33:12 +00001843 if (!GV || Subtarget->GVIsIndirectSymbol(GV, TM.getRelocationModel()))
1844 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001845
Eric Christopherf9764fa2010-09-30 20:49:44 +00001846 // Check the calling convention.
1847 ImmutableCallSite CS(CI);
1848 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher4cf34c62010-10-18 06:49:12 +00001849
Eric Christopherf9764fa2010-09-30 20:49:44 +00001850 // TODO: Avoid some calling conventions?
Eric Christopherdccd2c32010-10-11 08:38:55 +00001851
Eric Christopherf9764fa2010-09-30 20:49:44 +00001852 // Let SDISel handle vararg functions.
1853 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1854 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1855 if (FTy->isVarArg())
1856 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001857
Eric Christopherf9764fa2010-09-30 20:49:44 +00001858 // Handle *simple* calls for now.
1859 const Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001860 MVT RetVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001861 if (RetTy->isVoidTy())
1862 RetVT = MVT::isVoid;
1863 else if (!isTypeLegal(RetTy, RetVT))
1864 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001865
Eric Christopher836c6242010-12-15 23:47:29 +00001866 // TODO: For now if we have long calls specified we don't handle the call.
1867 if (EnableARMLongCalls) return false;
Eric Christopher299bbb22011-04-29 00:03:10 +00001868
Eric Christopherf9764fa2010-09-30 20:49:44 +00001869 // Set up the argument vectors.
1870 SmallVector<Value*, 8> Args;
1871 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001872 SmallVector<MVT, 8> ArgVTs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001873 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1874 Args.reserve(CS.arg_size());
1875 ArgRegs.reserve(CS.arg_size());
1876 ArgVTs.reserve(CS.arg_size());
1877 ArgFlags.reserve(CS.arg_size());
1878 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1879 i != e; ++i) {
1880 unsigned Arg = getRegForValue(*i);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001881
Eric Christopherf9764fa2010-09-30 20:49:44 +00001882 if (Arg == 0)
1883 return false;
1884 ISD::ArgFlagsTy Flags;
1885 unsigned AttrInd = i - CS.arg_begin() + 1;
1886 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
1887 Flags.setSExt();
1888 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
1889 Flags.setZExt();
1890
1891 // FIXME: Only handle *easy* calls for now.
1892 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1893 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1894 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1895 CS.paramHasAttr(AttrInd, Attribute::ByVal))
1896 return false;
1897
1898 const Type *ArgTy = (*i)->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001899 MVT ArgVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001900 if (!isTypeLegal(ArgTy, ArgVT))
1901 return false;
1902 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1903 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001904
Eric Christopherf9764fa2010-09-30 20:49:44 +00001905 Args.push_back(*i);
1906 ArgRegs.push_back(Arg);
1907 ArgVTs.push_back(ArgVT);
1908 ArgFlags.push_back(Flags);
1909 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001910
Eric Christopherf9764fa2010-09-30 20:49:44 +00001911 // Handle the arguments now that we've gotten them.
1912 SmallVector<unsigned, 4> RegArgs;
1913 unsigned NumBytes;
1914 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1915 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001916
Eric Christopher6344a5f2011-04-29 00:07:20 +00001917 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001918 // TODO: Turn this into the table of arm call ops.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001919 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001920 unsigned CallOpc = ARMSelectCallOp(GV);
Eric Christopher7bb59962010-11-29 21:56:23 +00001921 // Explicitly adding the predicate here.
Eric Christopher872f4a22011-02-22 01:37:10 +00001922 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001923 // Explicitly adding the predicate here.
1924 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1925 TII.get(CallOpc)))
1926 .addGlobalAddress(GV, 0, 0);
Eric Christopher872f4a22011-02-22 01:37:10 +00001927 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001928 // Explicitly adding the predicate here.
1929 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1930 TII.get(CallOpc))
1931 .addGlobalAddress(GV, 0, 0));
Eric Christopher299bbb22011-04-29 00:03:10 +00001932
Eric Christopherf9764fa2010-09-30 20:49:44 +00001933 // Add implicit physical register uses to the call.
1934 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1935 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001936
Eric Christopherf9764fa2010-09-30 20:49:44 +00001937 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001938 SmallVector<unsigned, 4> UsedRegs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001939 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001940
Eric Christopherf9764fa2010-09-30 20:49:44 +00001941 // Set all unused physreg defs as dead.
1942 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001943
Eric Christopherf9764fa2010-09-30 20:49:44 +00001944 return true;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001945
Eric Christopherf9764fa2010-09-30 20:49:44 +00001946}
1947
Eric Christopher56d2b722010-09-02 23:43:26 +00001948// TODO: SoftFP support.
Eric Christopherab695882010-07-21 22:26:11 +00001949bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopherac1a19e2010-09-09 01:06:51 +00001950
Eric Christopherab695882010-07-21 22:26:11 +00001951 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +00001952 case Instruction::Load:
Eric Christopher43b62be2010-09-27 06:02:23 +00001953 return SelectLoad(I);
Eric Christopher543cf052010-09-01 22:16:27 +00001954 case Instruction::Store:
Eric Christopher43b62be2010-09-27 06:02:23 +00001955 return SelectStore(I);
Eric Christophere5734102010-09-03 00:35:47 +00001956 case Instruction::Br:
Eric Christopher43b62be2010-09-27 06:02:23 +00001957 return SelectBranch(I);
Eric Christopherd43393a2010-09-08 23:13:45 +00001958 case Instruction::ICmp:
1959 case Instruction::FCmp:
Eric Christopher43b62be2010-09-27 06:02:23 +00001960 return SelectCmp(I);
Eric Christopher46203602010-09-09 00:26:48 +00001961 case Instruction::FPExt:
Eric Christopher43b62be2010-09-27 06:02:23 +00001962 return SelectFPExt(I);
Eric Christopherce07b542010-09-09 20:26:31 +00001963 case Instruction::FPTrunc:
Eric Christopher43b62be2010-09-27 06:02:23 +00001964 return SelectFPTrunc(I);
Eric Christopher9a040492010-09-09 18:54:59 +00001965 case Instruction::SIToFP:
Eric Christopher43b62be2010-09-27 06:02:23 +00001966 return SelectSIToFP(I);
Eric Christopher9a040492010-09-09 18:54:59 +00001967 case Instruction::FPToSI:
Eric Christopher43b62be2010-09-27 06:02:23 +00001968 return SelectFPToSI(I);
Eric Christopherbc39b822010-09-09 00:53:57 +00001969 case Instruction::FAdd:
Eric Christopher43b62be2010-09-27 06:02:23 +00001970 return SelectBinaryOp(I, ISD::FADD);
Eric Christopherbc39b822010-09-09 00:53:57 +00001971 case Instruction::FSub:
Eric Christopher43b62be2010-09-27 06:02:23 +00001972 return SelectBinaryOp(I, ISD::FSUB);
Eric Christopherbc39b822010-09-09 00:53:57 +00001973 case Instruction::FMul:
Eric Christopher43b62be2010-09-27 06:02:23 +00001974 return SelectBinaryOp(I, ISD::FMUL);
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001975 case Instruction::SDiv:
Eric Christopher43b62be2010-09-27 06:02:23 +00001976 return SelectSDiv(I);
Eric Christopher6a880d62010-10-11 08:37:26 +00001977 case Instruction::SRem:
1978 return SelectSRem(I);
Eric Christopherf9764fa2010-09-30 20:49:44 +00001979 case Instruction::Call:
1980 return SelectCall(I);
Eric Christopher3bbd3962010-10-11 08:27:59 +00001981 case Instruction::Select:
1982 return SelectSelect(I);
Eric Christopher4f512ef2010-10-22 01:28:00 +00001983 case Instruction::Ret:
1984 return SelectRet(I);
Eric Christopherab695882010-07-21 22:26:11 +00001985 default: break;
1986 }
1987 return false;
1988}
1989
1990namespace llvm {
1991 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopherfeadddd2010-10-11 20:05:22 +00001992 // Completely untested on non-darwin.
1993 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach16cb3762010-11-09 19:22:26 +00001994
Eric Christopheraaa8df42010-11-02 01:21:28 +00001995 // Darwin and thumb1 only for now.
Eric Christopherfeadddd2010-10-11 20:05:22 +00001996 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
Jim Grosbach16cb3762010-11-09 19:22:26 +00001997 if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() &&
Eric Christopheraaa8df42010-11-02 01:21:28 +00001998 !DisableARMFastISel)
Eric Christopherfeadddd2010-10-11 20:05:22 +00001999 return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +00002000 return 0;
Eric Christopherab695882010-07-21 22:26:11 +00002001 }
2002}