blob: 3baf274b76b814cf55722b7e4e8c72f782b948c4 [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"
Eli Friedmanc573e2c2011-04-29 22:48:03 +000017#include "ARMAddressingModes.h"
Eric Christopher456144e2010-08-19 00:37:05 +000018#include "ARMBaseInstrInfo.h"
Eric Christopherd10cd7b2010-09-10 23:18:12 +000019#include "ARMCallingConv.h"
Eric Christopherab695882010-07-21 22:26:11 +000020#include "ARMRegisterInfo.h"
21#include "ARMTargetMachine.h"
22#include "ARMSubtarget.h"
Eric Christopherc9932f62010-10-01 23:24:42 +000023#include "ARMConstantPoolValue.h"
Eric Christopherab695882010-07-21 22:26:11 +000024#include "llvm/CallingConv.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/GlobalVariable.h"
27#include "llvm/Instructions.h"
28#include "llvm/IntrinsicInst.h"
Eric Christopherbb3e5da2010-09-14 23:03:37 +000029#include "llvm/Module.h"
Jay Foad562b84b2011-04-11 09:35:34 +000030#include "llvm/Operator.h"
Eric Christopherab695882010-07-21 22:26:11 +000031#include "llvm/CodeGen/Analysis.h"
32#include "llvm/CodeGen/FastISel.h"
33#include "llvm/CodeGen/FunctionLoweringInfo.h"
Eric Christopher0fe7d542010-08-17 01:25:29 +000034#include "llvm/CodeGen/MachineInstrBuilder.h"
35#include "llvm/CodeGen/MachineModuleInfo.h"
Eric Christopherab695882010-07-21 22:26:11 +000036#include "llvm/CodeGen/MachineConstantPool.h"
37#include "llvm/CodeGen/MachineFrameInfo.h"
Eric Christopherd56d61a2010-10-17 01:51:42 +000038#include "llvm/CodeGen/MachineMemOperand.h"
Eric Christopherab695882010-07-21 22:26:11 +000039#include "llvm/CodeGen/MachineRegisterInfo.h"
Eric Christopherd56d61a2010-10-17 01:51:42 +000040#include "llvm/CodeGen/PseudoSourceValue.h"
Eric Christopherab695882010-07-21 22:26:11 +000041#include "llvm/Support/CallSite.h"
Eric Christopher038fea52010-08-17 00:46:57 +000042#include "llvm/Support/CommandLine.h"
Eric Christopherab695882010-07-21 22:26:11 +000043#include "llvm/Support/ErrorHandling.h"
44#include "llvm/Support/GetElementPtrTypeIterator.h"
Eric Christopher0fe7d542010-08-17 01:25:29 +000045#include "llvm/Target/TargetData.h"
46#include "llvm/Target/TargetInstrInfo.h"
47#include "llvm/Target/TargetLowering.h"
48#include "llvm/Target/TargetMachine.h"
Eric Christopherab695882010-07-21 22:26:11 +000049#include "llvm/Target/TargetOptions.h"
50using namespace llvm;
51
Eric Christopher038fea52010-08-17 00:46:57 +000052static cl::opt<bool>
Eric Christopher6e5367d2010-10-18 22:53:53 +000053DisableARMFastISel("disable-arm-fast-isel",
54 cl::desc("Turn off experimental ARM fast-isel support"),
Eric Christopherfeadddd2010-10-11 20:05:22 +000055 cl::init(false), cl::Hidden);
Eric Christopher038fea52010-08-17 00:46:57 +000056
Eric Christopher836c6242010-12-15 23:47:29 +000057extern cl::opt<bool> EnableARMLongCalls;
58
Eric Christopherab695882010-07-21 22:26:11 +000059namespace {
Eric Christopher827656d2010-11-20 22:38:27 +000060
Eric Christopher0d581222010-11-19 22:30:02 +000061 // All possible address modes, plus some.
62 typedef struct Address {
63 enum {
64 RegBase,
65 FrameIndexBase
66 } BaseType;
Eric Christopher827656d2010-11-20 22:38:27 +000067
Eric Christopher0d581222010-11-19 22:30:02 +000068 union {
69 unsigned Reg;
70 int FI;
71 } Base;
Eric Christopher827656d2010-11-20 22:38:27 +000072
Eric Christopher0d581222010-11-19 22:30:02 +000073 int Offset;
74 unsigned Scale;
75 unsigned PlusReg;
Eric Christopher827656d2010-11-20 22:38:27 +000076
Eric Christopher0d581222010-11-19 22:30:02 +000077 // Innocuous defaults for our address.
78 Address()
79 : BaseType(RegBase), Offset(0), Scale(0), PlusReg(0) {
80 Base.Reg = 0;
81 }
82 } Address;
Eric Christopherab695882010-07-21 22:26:11 +000083
84class ARMFastISel : public FastISel {
85
86 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
87 /// make the right decision when generating code for different targets.
88 const ARMSubtarget *Subtarget;
Eric Christopher0fe7d542010-08-17 01:25:29 +000089 const TargetMachine &TM;
90 const TargetInstrInfo &TII;
91 const TargetLowering &TLI;
Eric Christopherc9932f62010-10-01 23:24:42 +000092 ARMFunctionInfo *AFI;
Eric Christopherab695882010-07-21 22:26:11 +000093
Eric Christopher8cf6c602010-09-29 22:24:45 +000094 // Convenience variables to avoid some queries.
Eric Christophereaa204b2010-09-02 01:39:14 +000095 bool isThumb;
Eric Christopher8cf6c602010-09-29 22:24:45 +000096 LLVMContext *Context;
Eric Christophereaa204b2010-09-02 01:39:14 +000097
Eric Christopherab695882010-07-21 22:26:11 +000098 public:
Eric Christopherac1a19e2010-09-09 01:06:51 +000099 explicit ARMFastISel(FunctionLoweringInfo &funcInfo)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000100 : FastISel(funcInfo),
101 TM(funcInfo.MF->getTarget()),
102 TII(*TM.getInstrInfo()),
103 TLI(*TM.getTargetLowering()) {
Eric Christopherab695882010-07-21 22:26:11 +0000104 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Eric Christopher7fe55b72010-08-23 22:32:45 +0000105 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>();
Eric Christophereaa204b2010-09-02 01:39:14 +0000106 isThumb = AFI->isThumbFunction();
Eric Christopher8cf6c602010-09-29 22:24:45 +0000107 Context = &funcInfo.Fn->getContext();
Eric Christopherab695882010-07-21 22:26:11 +0000108 }
109
Eric Christophercb592292010-08-20 00:20:31 +0000110 // Code from FastISel.cpp.
Eric Christopher0fe7d542010-08-17 01:25:29 +0000111 virtual unsigned FastEmitInst_(unsigned MachineInstOpcode,
112 const TargetRegisterClass *RC);
113 virtual unsigned FastEmitInst_r(unsigned MachineInstOpcode,
114 const TargetRegisterClass *RC,
115 unsigned Op0, bool Op0IsKill);
116 virtual unsigned FastEmitInst_rr(unsigned MachineInstOpcode,
117 const TargetRegisterClass *RC,
118 unsigned Op0, bool Op0IsKill,
119 unsigned Op1, bool Op1IsKill);
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000120 virtual unsigned FastEmitInst_rrr(unsigned MachineInstOpcode,
121 const TargetRegisterClass *RC,
122 unsigned Op0, bool Op0IsKill,
123 unsigned Op1, bool Op1IsKill,
124 unsigned Op2, bool Op2IsKill);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000125 virtual unsigned FastEmitInst_ri(unsigned MachineInstOpcode,
126 const TargetRegisterClass *RC,
127 unsigned Op0, bool Op0IsKill,
128 uint64_t Imm);
129 virtual unsigned FastEmitInst_rf(unsigned MachineInstOpcode,
130 const TargetRegisterClass *RC,
131 unsigned Op0, bool Op0IsKill,
132 const ConstantFP *FPImm);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000133 virtual unsigned FastEmitInst_rri(unsigned MachineInstOpcode,
134 const TargetRegisterClass *RC,
135 unsigned Op0, bool Op0IsKill,
136 unsigned Op1, bool Op1IsKill,
137 uint64_t Imm);
Eric Christopheraf3dce52011-03-12 01:09:29 +0000138 virtual unsigned FastEmitInst_i(unsigned MachineInstOpcode,
139 const TargetRegisterClass *RC,
140 uint64_t Imm);
Eric Christopherd94bc542011-04-29 22:07:50 +0000141 virtual unsigned FastEmitInst_ii(unsigned MachineInstOpcode,
142 const TargetRegisterClass *RC,
143 uint64_t Imm1, uint64_t Imm2);
Eric Christopheraf3dce52011-03-12 01:09:29 +0000144
Eric Christopher0fe7d542010-08-17 01:25:29 +0000145 virtual unsigned FastEmitInst_extractsubreg(MVT RetVT,
146 unsigned Op0, bool Op0IsKill,
147 uint32_t Idx);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000148
Eric Christophercb592292010-08-20 00:20:31 +0000149 // Backend specific FastISel code.
Eric Christopherab695882010-07-21 22:26:11 +0000150 virtual bool TargetSelectInstruction(const Instruction *I);
Eric Christopher1b61ef42010-09-02 01:48:11 +0000151 virtual unsigned TargetMaterializeConstant(const Constant *C);
Eric Christopherf9764fa2010-09-30 20:49:44 +0000152 virtual unsigned TargetMaterializeAlloca(const AllocaInst *AI);
Eric Christopherab695882010-07-21 22:26:11 +0000153
154 #include "ARMGenFastISel.inc"
Eric Christopherac1a19e2010-09-09 01:06:51 +0000155
Eric Christopher83007122010-08-23 21:44:12 +0000156 // Instruction selection routines.
Eric Christopher44bff902010-09-10 23:10:30 +0000157 private:
Eric Christopher17787722010-10-21 21:47:51 +0000158 bool SelectLoad(const Instruction *I);
159 bool SelectStore(const Instruction *I);
160 bool SelectBranch(const Instruction *I);
161 bool SelectCmp(const Instruction *I);
162 bool SelectFPExt(const Instruction *I);
163 bool SelectFPTrunc(const Instruction *I);
164 bool SelectBinaryOp(const Instruction *I, unsigned ISDOpcode);
165 bool SelectSIToFP(const Instruction *I);
166 bool SelectFPToSI(const Instruction *I);
167 bool SelectSDiv(const Instruction *I);
168 bool SelectSRem(const Instruction *I);
169 bool SelectCall(const Instruction *I);
170 bool SelectSelect(const Instruction *I);
Eric Christopher4f512ef2010-10-22 01:28:00 +0000171 bool SelectRet(const Instruction *I);
Eric Christopherab695882010-07-21 22:26:11 +0000172
Eric Christopher83007122010-08-23 21:44:12 +0000173 // Utility routines.
Eric Christopher456144e2010-08-19 00:37:05 +0000174 private:
Duncan Sands1440e8b2010-11-03 11:35:31 +0000175 bool isTypeLegal(const Type *Ty, MVT &VT);
176 bool isLoadTypeLegal(const Type *Ty, MVT &VT);
Eric Christopher0d581222010-11-19 22:30:02 +0000177 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr);
178 bool ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr);
179 bool ARMComputeAddress(const Value *Obj, Address &Addr);
180 void ARMSimplifyAddress(Address &Addr, EVT VT);
Eric Christopher9ed58df2010-09-09 00:19:41 +0000181 unsigned ARMMaterializeFP(const ConstantFP *CFP, EVT VT);
Eric Christopher744c7c82010-09-28 22:47:54 +0000182 unsigned ARMMaterializeInt(const Constant *C, EVT VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000183 unsigned ARMMaterializeGV(const GlobalValue *GV, EVT VT);
Eric Christopheraa3ace12010-09-09 20:49:25 +0000184 unsigned ARMMoveToFPReg(EVT VT, unsigned SrcReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000185 unsigned ARMMoveToIntReg(EVT VT, unsigned SrcReg);
Eric Christopher872f4a22011-02-22 01:37:10 +0000186 unsigned ARMSelectCallOp(const GlobalValue *GV);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000187
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000188 // Call handling routines.
189 private:
Eric Christopherfa87d662010-10-18 02:17:53 +0000190 bool FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
191 unsigned &ResultReg);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000192 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool Return);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000193 bool ProcessCallArgs(SmallVectorImpl<Value*> &Args,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000194 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +0000195 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000196 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
197 SmallVectorImpl<unsigned> &RegArgs,
198 CallingConv::ID CC,
199 unsigned &NumBytes);
Duncan Sands1440e8b2010-11-03 11:35:31 +0000200 bool FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000201 const Instruction *I, CallingConv::ID CC,
202 unsigned &NumBytes);
Eric Christopher7ed8ec92010-09-28 01:21:42 +0000203 bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000204
205 // OptionalDef handling routines.
206 private:
Eric Christopheraf3dce52011-03-12 01:09:29 +0000207 bool isARMNEONPred(const MachineInstr *MI);
Eric Christopher456144e2010-08-19 00:37:05 +0000208 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
209 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
Eric Christopher564857f2010-12-01 01:40:24 +0000210 void AddLoadStoreOperands(EVT VT, Address &Addr,
211 const MachineInstrBuilder &MIB);
Eric Christopher456144e2010-08-19 00:37:05 +0000212};
Eric Christopherab695882010-07-21 22:26:11 +0000213
214} // end anonymous namespace
215
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000216#include "ARMGenCallingConv.inc"
Eric Christopherab695882010-07-21 22:26:11 +0000217
Eric Christopher456144e2010-08-19 00:37:05 +0000218// DefinesOptionalPredicate - This is different from DefinesPredicate in that
219// we don't care about implicit defs here, just places we'll need to add a
220// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
221bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
222 const TargetInstrDesc &TID = MI->getDesc();
223 if (!TID.hasOptionalDef())
224 return false;
225
226 // Look to see if our OptionalDef is defining CPSR or CCR.
227 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
228 const MachineOperand &MO = MI->getOperand(i);
Eric Christopherf762fbe2010-08-20 00:36:24 +0000229 if (!MO.isReg() || !MO.isDef()) continue;
230 if (MO.getReg() == ARM::CPSR)
Eric Christopher456144e2010-08-19 00:37:05 +0000231 *CPSR = true;
232 }
233 return true;
234}
235
Eric Christopheraf3dce52011-03-12 01:09:29 +0000236bool ARMFastISel::isARMNEONPred(const MachineInstr *MI) {
237 const TargetInstrDesc &TID = MI->getDesc();
Eric Christopher299bbb22011-04-29 00:03:10 +0000238
Eric Christopheraf3dce52011-03-12 01:09:29 +0000239 // If we're a thumb2 or not NEON function we were handled via isPredicable.
240 if ((TID.TSFlags & ARMII::DomainMask) != ARMII::DomainNEON ||
241 AFI->isThumb2Function())
242 return false;
Eric Christopher299bbb22011-04-29 00:03:10 +0000243
Eric Christopheraf3dce52011-03-12 01:09:29 +0000244 for (unsigned i = 0, e = TID.getNumOperands(); i != e; ++i)
245 if (TID.OpInfo[i].isPredicate())
246 return true;
Eric Christopher299bbb22011-04-29 00:03:10 +0000247
Eric Christopheraf3dce52011-03-12 01:09:29 +0000248 return false;
249}
250
Eric Christopher456144e2010-08-19 00:37:05 +0000251// If the machine is predicable go ahead and add the predicate operands, if
252// it needs default CC operands add those.
Eric Christopheraaa8df42010-11-02 01:21:28 +0000253// TODO: If we want to support thumb1 then we'll need to deal with optional
254// CPSR defs that need to be added before the remaining operands. See s_cc_out
255// for descriptions why.
Eric Christopher456144e2010-08-19 00:37:05 +0000256const MachineInstrBuilder &
257ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
258 MachineInstr *MI = &*MIB;
259
Eric Christopheraf3dce52011-03-12 01:09:29 +0000260 // Do we use a predicate? or...
261 // Are we NEON in ARM mode and have a predicate operand? If so, I know
262 // we're not predicable but add it anyways.
263 if (TII.isPredicable(MI) || isARMNEONPred(MI))
Eric Christopher456144e2010-08-19 00:37:05 +0000264 AddDefaultPred(MIB);
Eric Christopher299bbb22011-04-29 00:03:10 +0000265
Eric Christopher456144e2010-08-19 00:37:05 +0000266 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
267 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christopher979e0a12010-08-19 15:35:27 +0000268 bool CPSR = false;
Eric Christopher456144e2010-08-19 00:37:05 +0000269 if (DefinesOptionalPredicate(MI, &CPSR)) {
270 if (CPSR)
271 AddDefaultT1CC(MIB);
272 else
273 AddDefaultCC(MIB);
274 }
275 return MIB;
276}
277
Eric Christopher0fe7d542010-08-17 01:25:29 +0000278unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode,
279 const TargetRegisterClass* RC) {
280 unsigned ResultReg = createResultReg(RC);
281 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
282
Eric Christopher456144e2010-08-19 00:37:05 +0000283 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg));
Eric Christopher0fe7d542010-08-17 01:25:29 +0000284 return ResultReg;
285}
286
287unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
288 const TargetRegisterClass *RC,
289 unsigned Op0, bool Op0IsKill) {
290 unsigned ResultReg = createResultReg(RC);
291 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
292
293 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000294 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000295 .addReg(Op0, Op0IsKill * RegState::Kill));
296 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000297 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000298 .addReg(Op0, Op0IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000299 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000300 TII.get(TargetOpcode::COPY), ResultReg)
301 .addReg(II.ImplicitDefs[0]));
302 }
303 return ResultReg;
304}
305
306unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
307 const TargetRegisterClass *RC,
308 unsigned Op0, bool Op0IsKill,
309 unsigned Op1, bool Op1IsKill) {
310 unsigned ResultReg = createResultReg(RC);
311 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
312
313 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000314 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000315 .addReg(Op0, Op0IsKill * RegState::Kill)
316 .addReg(Op1, Op1IsKill * RegState::Kill));
317 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000318 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000319 .addReg(Op0, Op0IsKill * RegState::Kill)
320 .addReg(Op1, Op1IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000321 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000322 TII.get(TargetOpcode::COPY), ResultReg)
323 .addReg(II.ImplicitDefs[0]));
324 }
325 return ResultReg;
326}
327
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000328unsigned ARMFastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
329 const TargetRegisterClass *RC,
330 unsigned Op0, bool Op0IsKill,
331 unsigned Op1, bool Op1IsKill,
332 unsigned Op2, bool Op2IsKill) {
333 unsigned ResultReg = createResultReg(RC);
334 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
335
336 if (II.getNumDefs() >= 1)
337 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
338 .addReg(Op0, Op0IsKill * RegState::Kill)
339 .addReg(Op1, Op1IsKill * RegState::Kill)
340 .addReg(Op2, Op2IsKill * RegState::Kill));
341 else {
342 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
343 .addReg(Op0, Op0IsKill * RegState::Kill)
344 .addReg(Op1, Op1IsKill * RegState::Kill)
345 .addReg(Op2, Op2IsKill * RegState::Kill));
346 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
347 TII.get(TargetOpcode::COPY), ResultReg)
348 .addReg(II.ImplicitDefs[0]));
349 }
350 return ResultReg;
351}
352
Eric Christopher0fe7d542010-08-17 01:25:29 +0000353unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
354 const TargetRegisterClass *RC,
355 unsigned Op0, bool Op0IsKill,
356 uint64_t Imm) {
357 unsigned ResultReg = createResultReg(RC);
358 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
359
360 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000361 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000362 .addReg(Op0, Op0IsKill * RegState::Kill)
363 .addImm(Imm));
364 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000365 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000366 .addReg(Op0, Op0IsKill * RegState::Kill)
367 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000368 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000369 TII.get(TargetOpcode::COPY), ResultReg)
370 .addReg(II.ImplicitDefs[0]));
371 }
372 return ResultReg;
373}
374
375unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
376 const TargetRegisterClass *RC,
377 unsigned Op0, bool Op0IsKill,
378 const ConstantFP *FPImm) {
379 unsigned ResultReg = createResultReg(RC);
380 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
381
382 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000383 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000384 .addReg(Op0, Op0IsKill * RegState::Kill)
385 .addFPImm(FPImm));
386 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000387 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000388 .addReg(Op0, Op0IsKill * RegState::Kill)
389 .addFPImm(FPImm));
Eric Christopher456144e2010-08-19 00:37:05 +0000390 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000391 TII.get(TargetOpcode::COPY), ResultReg)
392 .addReg(II.ImplicitDefs[0]));
393 }
394 return ResultReg;
395}
396
397unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
398 const TargetRegisterClass *RC,
399 unsigned Op0, bool Op0IsKill,
400 unsigned Op1, bool Op1IsKill,
401 uint64_t Imm) {
402 unsigned ResultReg = createResultReg(RC);
403 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
404
405 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000406 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000407 .addReg(Op0, Op0IsKill * RegState::Kill)
408 .addReg(Op1, Op1IsKill * RegState::Kill)
409 .addImm(Imm));
410 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000411 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000412 .addReg(Op0, Op0IsKill * RegState::Kill)
413 .addReg(Op1, Op1IsKill * RegState::Kill)
414 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000415 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000416 TII.get(TargetOpcode::COPY), ResultReg)
417 .addReg(II.ImplicitDefs[0]));
418 }
419 return ResultReg;
420}
421
422unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
423 const TargetRegisterClass *RC,
424 uint64_t Imm) {
425 unsigned ResultReg = createResultReg(RC);
426 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000427
Eric Christopher0fe7d542010-08-17 01:25:29 +0000428 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000429 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000430 .addImm(Imm));
431 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000432 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000433 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000434 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000435 TII.get(TargetOpcode::COPY), ResultReg)
436 .addReg(II.ImplicitDefs[0]));
437 }
438 return ResultReg;
439}
440
Eric Christopherd94bc542011-04-29 22:07:50 +0000441unsigned ARMFastISel::FastEmitInst_ii(unsigned MachineInstOpcode,
442 const TargetRegisterClass *RC,
443 uint64_t Imm1, uint64_t Imm2) {
444 unsigned ResultReg = createResultReg(RC);
445 const TargetInstrDesc &II = TII.get(MachineInstOpcode);
446
447 if (II.getNumDefs() >= 1)
448 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
449 .addImm(Imm1).addImm(Imm2));
450 else {
451 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
452 .addImm(Imm1).addImm(Imm2));
453 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
454 TII.get(TargetOpcode::COPY),
455 ResultReg)
456 .addReg(II.ImplicitDefs[0]));
457 }
458 return ResultReg;
459}
460
Eric Christopher0fe7d542010-08-17 01:25:29 +0000461unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT,
462 unsigned Op0, bool Op0IsKill,
463 uint32_t Idx) {
464 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
465 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
466 "Cannot yet extract from physregs");
Eric Christopher456144e2010-08-19 00:37:05 +0000467 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000468 DL, TII.get(TargetOpcode::COPY), ResultReg)
469 .addReg(Op0, getKillRegState(Op0IsKill), Idx));
470 return ResultReg;
471}
472
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000473// TODO: Don't worry about 64-bit now, but when this is fixed remove the
474// checks from the various callers.
Eric Christopheraa3ace12010-09-09 20:49:25 +0000475unsigned ARMFastISel::ARMMoveToFPReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000476 if (VT == MVT::f64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000477
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000478 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
479 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
480 TII.get(ARM::VMOVRS), MoveReg)
481 .addReg(SrcReg));
482 return MoveReg;
483}
484
485unsigned ARMFastISel::ARMMoveToIntReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000486 if (VT == MVT::i64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000487
Eric Christopheraa3ace12010-09-09 20:49:25 +0000488 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
489 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000490 TII.get(ARM::VMOVSR), MoveReg)
Eric Christopheraa3ace12010-09-09 20:49:25 +0000491 .addReg(SrcReg));
492 return MoveReg;
493}
494
Eric Christopher9ed58df2010-09-09 00:19:41 +0000495// For double width floating point we need to materialize two constants
496// (the high and the low) into integer registers then use a move to get
497// the combined constant into an FP reg.
498unsigned ARMFastISel::ARMMaterializeFP(const ConstantFP *CFP, EVT VT) {
499 const APFloat Val = CFP->getValueAPF();
Duncan Sandscdfad362010-11-03 12:17:33 +0000500 bool is64bit = VT == MVT::f64;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000501
Eric Christopher9ed58df2010-09-09 00:19:41 +0000502 // This checks to see if we can use VFP3 instructions to materialize
503 // a constant, otherwise we have to go through the constant pool.
504 if (TLI.isFPImmLegal(Val, VT)) {
505 unsigned Opc = is64bit ? ARM::FCONSTD : ARM::FCONSTS;
506 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
507 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
508 DestReg)
509 .addFPImm(CFP));
510 return DestReg;
511 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000512
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000513 // Require VFP2 for loading fp constants.
Eric Christopher238bb162010-09-09 23:50:00 +0000514 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000515
Eric Christopher238bb162010-09-09 23:50:00 +0000516 // MachineConstantPool wants an explicit alignment.
517 unsigned Align = TD.getPrefTypeAlignment(CFP->getType());
518 if (Align == 0) {
519 // TODO: Figure out if this is correct.
520 Align = TD.getTypeAllocSize(CFP->getType());
521 }
522 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
523 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
524 unsigned Opc = is64bit ? ARM::VLDRD : ARM::VLDRS;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000525
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000526 // The extra reg is for addrmode5.
Eric Christopherf5732c42010-09-28 00:35:09 +0000527 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
528 DestReg)
529 .addConstantPoolIndex(Idx)
Eric Christopher238bb162010-09-09 23:50:00 +0000530 .addReg(0));
531 return DestReg;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000532}
533
Eric Christopher744c7c82010-09-28 22:47:54 +0000534unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, EVT VT) {
Eric Christopherdccd2c32010-10-11 08:38:55 +0000535
Eric Christopher744c7c82010-09-28 22:47:54 +0000536 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000537 if (VT != MVT::i32) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000538
Eric Christophere5b13cf2010-11-03 20:21:17 +0000539 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
540
541 // If we can do this in a single instruction without a constant pool entry
542 // do so now.
543 const ConstantInt *CI = cast<ConstantInt>(C);
Eric Christopher5e262bc2010-11-06 07:53:11 +0000544 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getSExtValue())) {
Eric Christophere5b13cf2010-11-03 20:21:17 +0000545 unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16;
546 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Jim Grosbach3ea4daa2010-11-19 18:01:37 +0000547 TII.get(Opc), DestReg)
548 .addImm(CI->getSExtValue()));
Eric Christophere5b13cf2010-11-03 20:21:17 +0000549 return DestReg;
550 }
551
Eric Christopher56d2b722010-09-02 23:43:26 +0000552 // MachineConstantPool wants an explicit alignment.
553 unsigned Align = TD.getPrefTypeAlignment(C->getType());
554 if (Align == 0) {
555 // TODO: Figure out if this is correct.
556 Align = TD.getTypeAllocSize(C->getType());
557 }
558 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000559
Eric Christopher56d2b722010-09-02 23:43:26 +0000560 if (isThumb)
561 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000562 TII.get(ARM::t2LDRpci), DestReg)
563 .addConstantPoolIndex(Idx));
Eric Christopher56d2b722010-09-02 23:43:26 +0000564 else
Eric Christopherd0c82a62010-11-12 09:48:30 +0000565 // The extra immediate is for addrmode2.
Eric Christopher56d2b722010-09-02 23:43:26 +0000566 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000567 TII.get(ARM::LDRcp), DestReg)
568 .addConstantPoolIndex(Idx)
Jim Grosbach3e556122010-10-26 22:37:02 +0000569 .addImm(0));
Eric Christopherac1a19e2010-09-09 01:06:51 +0000570
Eric Christopher56d2b722010-09-02 23:43:26 +0000571 return DestReg;
Eric Christopher1b61ef42010-09-02 01:48:11 +0000572}
573
Eric Christopherc9932f62010-10-01 23:24:42 +0000574unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, EVT VT) {
Eric Christopher890dbbe2010-10-02 00:32:44 +0000575 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000576 if (VT != MVT::i32) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000577
Eric Christopher890dbbe2010-10-02 00:32:44 +0000578 Reloc::Model RelocM = TM.getRelocationModel();
Eric Christopherdccd2c32010-10-11 08:38:55 +0000579
Eric Christopher890dbbe2010-10-02 00:32:44 +0000580 // TODO: No external globals for now.
581 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000582
Eric Christopher890dbbe2010-10-02 00:32:44 +0000583 // TODO: Need more magic for ARM PIC.
584 if (!isThumb && (RelocM == Reloc::PIC_)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000585
Eric Christopher890dbbe2010-10-02 00:32:44 +0000586 // MachineConstantPool wants an explicit alignment.
587 unsigned Align = TD.getPrefTypeAlignment(GV->getType());
588 if (Align == 0) {
589 // TODO: Figure out if this is correct.
590 Align = TD.getTypeAllocSize(GV->getType());
591 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000592
Eric Christopher890dbbe2010-10-02 00:32:44 +0000593 // Grab index.
594 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000595 unsigned Id = AFI->createPICLabelUId();
Eric Christopher890dbbe2010-10-02 00:32:44 +0000596 ARMConstantPoolValue *CPV = new ARMConstantPoolValue(GV, Id,
597 ARMCP::CPValue, PCAdj);
598 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000599
Eric Christopher890dbbe2010-10-02 00:32:44 +0000600 // Load value.
601 MachineInstrBuilder MIB;
602 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
603 if (isThumb) {
604 unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
605 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
606 .addConstantPoolIndex(Idx);
607 if (RelocM == Reloc::PIC_)
608 MIB.addImm(Id);
609 } else {
Eric Christopherd0c82a62010-11-12 09:48:30 +0000610 // The extra immediate is for addrmode2.
Eric Christopher890dbbe2010-10-02 00:32:44 +0000611 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRcp),
612 DestReg)
613 .addConstantPoolIndex(Idx)
Eric Christopherd0c82a62010-11-12 09:48:30 +0000614 .addImm(0);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000615 }
616 AddOptionalDefs(MIB);
617 return DestReg;
Eric Christopherc9932f62010-10-01 23:24:42 +0000618}
619
Eric Christopher9ed58df2010-09-09 00:19:41 +0000620unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
621 EVT VT = TLI.getValueType(C->getType(), true);
622
623 // Only handle simple types.
624 if (!VT.isSimple()) return 0;
625
626 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
627 return ARMMaterializeFP(CFP, VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000628 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
629 return ARMMaterializeGV(GV, VT);
630 else if (isa<ConstantInt>(C))
631 return ARMMaterializeInt(C, VT);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000632
Eric Christopherc9932f62010-10-01 23:24:42 +0000633 return 0;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000634}
635
Eric Christopherf9764fa2010-09-30 20:49:44 +0000636unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
637 // Don't handle dynamic allocas.
638 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000639
Duncan Sands1440e8b2010-11-03 11:35:31 +0000640 MVT VT;
Eric Christopherec8bf972010-10-17 06:07:26 +0000641 if (!isLoadTypeLegal(AI->getType(), VT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000642
Eric Christopherf9764fa2010-09-30 20:49:44 +0000643 DenseMap<const AllocaInst*, int>::iterator SI =
644 FuncInfo.StaticAllocaMap.find(AI);
645
646 // This will get lowered later into the correct offsets and registers
647 // via rewriteXFrameIndex.
648 if (SI != FuncInfo.StaticAllocaMap.end()) {
649 TargetRegisterClass* RC = TLI.getRegClassFor(VT);
650 unsigned ResultReg = createResultReg(RC);
651 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
652 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
653 TII.get(Opc), ResultReg)
654 .addFrameIndex(SI->second)
655 .addImm(0));
656 return ResultReg;
657 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000658
Eric Christopherf9764fa2010-09-30 20:49:44 +0000659 return 0;
660}
661
Duncan Sands1440e8b2010-11-03 11:35:31 +0000662bool ARMFastISel::isTypeLegal(const Type *Ty, MVT &VT) {
663 EVT evt = TLI.getValueType(Ty, true);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000664
Eric Christopherb1cc8482010-08-25 07:23:49 +0000665 // Only handle simple types.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000666 if (evt == MVT::Other || !evt.isSimple()) return false;
667 VT = evt.getSimpleVT();
Eric Christopherac1a19e2010-09-09 01:06:51 +0000668
Eric Christopherdc908042010-08-31 01:28:42 +0000669 // Handle all legal types, i.e. a register that will directly hold this
670 // value.
671 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000672}
673
Duncan Sands1440e8b2010-11-03 11:35:31 +0000674bool ARMFastISel::isLoadTypeLegal(const Type *Ty, MVT &VT) {
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000675 if (isTypeLegal(Ty, VT)) return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000676
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000677 // If this is a type than can be sign or zero-extended to a basic operation
678 // go ahead and accept it now.
679 if (VT == MVT::i8 || VT == MVT::i16)
680 return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000681
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000682 return false;
683}
684
Eric Christopher88de86b2010-11-19 22:36:41 +0000685// Computes the address to get to an object.
Eric Christopher0d581222010-11-19 22:30:02 +0000686bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher83007122010-08-23 21:44:12 +0000687 // Some boilerplate from the X86 FastISel.
688 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000689 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000690 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher2d630d72010-11-19 22:37:58 +0000691 // Don't walk into other basic blocks unless the object is an alloca from
692 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher76dda7e2010-11-15 21:11:06 +0000693 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
694 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
695 Opcode = I->getOpcode();
696 U = I;
697 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000698 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000699 Opcode = C->getOpcode();
700 U = C;
701 }
702
Eric Christophercb0b04b2010-08-24 00:07:24 +0000703 if (const PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000704 if (Ty->getAddressSpace() > 255)
705 // Fast instruction selection doesn't support the special
706 // address spaces.
707 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000708
Eric Christopher83007122010-08-23 21:44:12 +0000709 switch (Opcode) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000710 default:
Eric Christopher83007122010-08-23 21:44:12 +0000711 break;
Eric Christopher55324332010-10-12 00:43:21 +0000712 case Instruction::BitCast: {
713 // Look through bitcasts.
Eric Christopher0d581222010-11-19 22:30:02 +0000714 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000715 }
716 case Instruction::IntToPtr: {
717 // Look past no-op inttoptrs.
718 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000719 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000720 break;
721 }
722 case Instruction::PtrToInt: {
723 // Look past no-op ptrtoints.
724 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000725 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000726 break;
727 }
Eric Christophereae84392010-10-14 09:29:41 +0000728 case Instruction::GetElementPtr: {
Eric Christopherb3716582010-11-19 22:39:56 +0000729 Address SavedAddr = Addr;
Eric Christopher0d581222010-11-19 22:30:02 +0000730 int TmpOffset = Addr.Offset;
Eric Christopher2896df82010-10-15 18:02:07 +0000731
Eric Christophereae84392010-10-14 09:29:41 +0000732 // Iterate through the GEP folding the constants into offsets where
733 // we can.
734 gep_type_iterator GTI = gep_type_begin(U);
735 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
736 i != e; ++i, ++GTI) {
737 const Value *Op = *i;
738 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
739 const StructLayout *SL = TD.getStructLayout(STy);
740 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
741 TmpOffset += SL->getElementOffset(Idx);
742 } else {
Eric Christopher2896df82010-10-15 18:02:07 +0000743 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Eric Christopher7244d7c2011-03-22 19:39:17 +0000744 for (;;) {
Eric Christopher2896df82010-10-15 18:02:07 +0000745 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
746 // Constant-offset addressing.
747 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000748 break;
749 }
750 if (isa<AddOperator>(Op) &&
751 (!isa<Instruction>(Op) ||
752 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
753 == FuncInfo.MBB) &&
754 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
Eric Christopher299bbb22011-04-29 00:03:10 +0000755 // An add (in the same block) with a constant operand. Fold the
Eric Christopher7244d7c2011-03-22 19:39:17 +0000756 // constant.
Eric Christopher2896df82010-10-15 18:02:07 +0000757 ConstantInt *CI =
Eric Christopher7244d7c2011-03-22 19:39:17 +0000758 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christopher2896df82010-10-15 18:02:07 +0000759 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000760 // Iterate on the other operand.
761 Op = cast<AddOperator>(Op)->getOperand(0);
762 continue;
Eric Christopher299bbb22011-04-29 00:03:10 +0000763 }
Eric Christopher7244d7c2011-03-22 19:39:17 +0000764 // Unsupported
765 goto unsupported_gep;
766 }
Eric Christophereae84392010-10-14 09:29:41 +0000767 }
768 }
Eric Christopher2896df82010-10-15 18:02:07 +0000769
770 // Try to grab the base operand now.
Eric Christopher0d581222010-11-19 22:30:02 +0000771 Addr.Offset = TmpOffset;
772 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christopher2896df82010-10-15 18:02:07 +0000773
774 // We failed, restore everything and try the other options.
Eric Christopherb3716582010-11-19 22:39:56 +0000775 Addr = SavedAddr;
Eric Christopher2896df82010-10-15 18:02:07 +0000776
Eric Christophereae84392010-10-14 09:29:41 +0000777 unsupported_gep:
Eric Christophereae84392010-10-14 09:29:41 +0000778 break;
779 }
Eric Christopher83007122010-08-23 21:44:12 +0000780 case Instruction::Alloca: {
Eric Christopher15418772010-10-12 05:39:06 +0000781 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher827656d2010-11-20 22:38:27 +0000782 DenseMap<const AllocaInst*, int>::iterator SI =
783 FuncInfo.StaticAllocaMap.find(AI);
784 if (SI != FuncInfo.StaticAllocaMap.end()) {
785 Addr.BaseType = Address::FrameIndexBase;
786 Addr.Base.FI = SI->second;
787 return true;
788 }
789 break;
Eric Christopher83007122010-08-23 21:44:12 +0000790 }
791 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000792
Eric Christophera9c57512010-10-13 21:41:51 +0000793 // Materialize the global variable's address into a reg which can
794 // then be used later to load the variable.
Eric Christophercb0b04b2010-08-24 00:07:24 +0000795 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
Eric Christopherede42b02010-10-13 09:11:46 +0000796 unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType()));
797 if (Tmp == 0) return false;
Eric Christopher2896df82010-10-15 18:02:07 +0000798
Eric Christopher0d581222010-11-19 22:30:02 +0000799 Addr.Base.Reg = Tmp;
Eric Christopherede42b02010-10-13 09:11:46 +0000800 return true;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000801 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000802
Eric Christophercb0b04b2010-08-24 00:07:24 +0000803 // Try to get this in a register if nothing else has worked.
Eric Christopher0d581222010-11-19 22:30:02 +0000804 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
805 return Addr.Base.Reg != 0;
Eric Christophereae84392010-10-14 09:29:41 +0000806}
807
Eric Christopher0d581222010-11-19 22:30:02 +0000808void ARMFastISel::ARMSimplifyAddress(Address &Addr, EVT VT) {
Jim Grosbach6b156392010-10-27 21:39:08 +0000809
Eric Christopher212ae932010-10-21 19:40:30 +0000810 assert(VT.isSimple() && "Non-simple types are invalid here!");
Jim Grosbach6b156392010-10-27 21:39:08 +0000811
Eric Christopher212ae932010-10-21 19:40:30 +0000812 bool needsLowering = false;
813 switch (VT.getSimpleVT().SimpleTy) {
814 default:
815 assert(false && "Unhandled load/store type!");
816 case MVT::i1:
817 case MVT::i8:
818 case MVT::i16:
819 case MVT::i32:
820 // Integer loads/stores handle 12-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000821 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000822 break;
823 case MVT::f32:
824 case MVT::f64:
825 // Floating point operands handle 8-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000826 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000827 break;
828 }
Jim Grosbach6b156392010-10-27 21:39:08 +0000829
Eric Christopher827656d2010-11-20 22:38:27 +0000830 // If this is a stack pointer and the offset needs to be simplified then
831 // put the alloca address into a register, set the base type back to
832 // register and continue. This should almost never happen.
833 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
834 TargetRegisterClass *RC = isThumb ? ARM::tGPRRegisterClass :
835 ARM::GPRRegisterClass;
836 unsigned ResultReg = createResultReg(RC);
837 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
838 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
839 TII.get(Opc), ResultReg)
840 .addFrameIndex(Addr.Base.FI)
841 .addImm(0));
842 Addr.Base.Reg = ResultReg;
843 Addr.BaseType = Address::RegBase;
844 }
845
Eric Christopher212ae932010-10-21 19:40:30 +0000846 // Since the offset is too large for the load/store instruction
Eric Christopher318b6ee2010-09-02 00:53:56 +0000847 // get the reg+offset into a register.
Eric Christopher212ae932010-10-21 19:40:30 +0000848 if (needsLowering) {
Eli Friedman9ebf57a2011-04-29 21:22:56 +0000849 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
850 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopher0d581222010-11-19 22:30:02 +0000851 Addr.Offset = 0;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000852 }
Eric Christopher83007122010-08-23 21:44:12 +0000853}
854
Eric Christopher564857f2010-12-01 01:40:24 +0000855void ARMFastISel::AddLoadStoreOperands(EVT VT, Address &Addr,
856 const MachineInstrBuilder &MIB) {
857 // addrmode5 output depends on the selection dag addressing dividing the
858 // offset by 4 that it then later multiplies. Do this here as well.
859 if (VT.getSimpleVT().SimpleTy == MVT::f32 ||
860 VT.getSimpleVT().SimpleTy == MVT::f64)
861 Addr.Offset /= 4;
Eric Christopher299bbb22011-04-29 00:03:10 +0000862
Eric Christopher564857f2010-12-01 01:40:24 +0000863 // Frame base works a bit differently. Handle it separately.
864 if (Addr.BaseType == Address::FrameIndexBase) {
865 int FI = Addr.Base.FI;
866 int Offset = Addr.Offset;
867 MachineMemOperand *MMO =
868 FuncInfo.MF->getMachineMemOperand(
869 MachinePointerInfo::getFixedStack(FI, Offset),
870 MachineMemOperand::MOLoad,
871 MFI.getObjectSize(FI),
872 MFI.getObjectAlignment(FI));
873 // Now add the rest of the operands.
874 MIB.addFrameIndex(FI);
875
876 // ARM halfword load/stores need an additional operand.
877 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
878
879 MIB.addImm(Addr.Offset);
880 MIB.addMemOperand(MMO);
881 } else {
882 // Now add the rest of the operands.
883 MIB.addReg(Addr.Base.Reg);
Eric Christopher299bbb22011-04-29 00:03:10 +0000884
Eric Christopher564857f2010-12-01 01:40:24 +0000885 // ARM halfword load/stores need an additional operand.
886 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
887
888 MIB.addImm(Addr.Offset);
889 }
890 AddOptionalDefs(MIB);
891}
892
Eric Christopher0d581222010-11-19 22:30:02 +0000893bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000894
Eric Christopherb1cc8482010-08-25 07:23:49 +0000895 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000896 unsigned Opc;
Eric Christopheree56ea62010-10-07 05:50:44 +0000897 TargetRegisterClass *RC;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000898 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000899 // This is mostly going to be Neon/vector support.
900 default: return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000901 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000902 Opc = isThumb ? ARM::t2LDRHi12 : ARM::LDRH;
Eric Christopher7a56f332010-10-08 01:13:17 +0000903 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000904 break;
905 case MVT::i8:
Jim Grosbachc1d30212010-10-27 00:19:44 +0000906 Opc = isThumb ? ARM::t2LDRBi12 : ARM::LDRBi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000907 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000908 break;
Eric Christopherdc908042010-08-31 01:28:42 +0000909 case MVT::i32:
Jim Grosbach3e556122010-10-26 22:37:02 +0000910 Opc = isThumb ? ARM::t2LDRi12 : ARM::LDRi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000911 RC = ARM::GPRRegisterClass;
Eric Christopherdc908042010-08-31 01:28:42 +0000912 break;
Eric Christopher6dab1372010-09-18 01:59:37 +0000913 case MVT::f32:
914 Opc = ARM::VLDRS;
Eric Christopheree56ea62010-10-07 05:50:44 +0000915 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000916 break;
917 case MVT::f64:
918 Opc = ARM::VLDRD;
Eric Christopheree56ea62010-10-07 05:50:44 +0000919 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000920 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000921 }
Eric Christopher564857f2010-12-01 01:40:24 +0000922 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000923 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000924
Eric Christopher564857f2010-12-01 01:40:24 +0000925 // Create the base instruction, then add the operands.
926 ResultReg = createResultReg(RC);
927 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
928 TII.get(Opc), ResultReg);
929 AddLoadStoreOperands(VT, Addr, MIB);
Eric Christopherdc908042010-08-31 01:28:42 +0000930 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000931}
932
Eric Christopher43b62be2010-09-27 06:02:23 +0000933bool ARMFastISel::SelectLoad(const Instruction *I) {
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000934 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000935 MVT VT;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000936 if (!isLoadTypeLegal(I->getType(), VT))
937 return false;
938
Eric Christopher564857f2010-12-01 01:40:24 +0000939 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +0000940 Address Addr;
Eric Christopher564857f2010-12-01 01:40:24 +0000941 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000942
943 unsigned ResultReg;
Eric Christopher0d581222010-11-19 22:30:02 +0000944 if (!ARMEmitLoad(VT, ResultReg, Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000945 UpdateValueMap(I, ResultReg);
946 return true;
947}
948
Eric Christopher0d581222010-11-19 22:30:02 +0000949bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000950 unsigned StrOpc;
951 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000952 // This is mostly going to be Neon/vector support.
Eric Christopher318b6ee2010-09-02 00:53:56 +0000953 default: return false;
Eric Christopher4c914122010-11-02 23:59:09 +0000954 case MVT::i1: {
955 unsigned Res = createResultReg(isThumb ? ARM::tGPRRegisterClass :
956 ARM::GPRRegisterClass);
957 unsigned Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
958 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
959 TII.get(Opc), Res)
960 .addReg(SrcReg).addImm(1));
961 SrcReg = Res;
962 } // Fallthrough here.
Eric Christopher2896df82010-10-15 18:02:07 +0000963 case MVT::i8:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000964 StrOpc = isThumb ? ARM::t2STRBi12 : ARM::STRBi12;
Eric Christopher15418772010-10-12 05:39:06 +0000965 break;
966 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000967 StrOpc = isThumb ? ARM::t2STRHi12 : ARM::STRH;
Eric Christopher15418772010-10-12 05:39:06 +0000968 break;
Eric Christopher47650ec2010-10-16 01:10:35 +0000969 case MVT::i32:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000970 StrOpc = isThumb ? ARM::t2STRi12 : ARM::STRi12;
Eric Christopher47650ec2010-10-16 01:10:35 +0000971 break;
Eric Christopher56d2b722010-09-02 23:43:26 +0000972 case MVT::f32:
973 if (!Subtarget->hasVFP2()) return false;
974 StrOpc = ARM::VSTRS;
975 break;
976 case MVT::f64:
977 if (!Subtarget->hasVFP2()) return false;
978 StrOpc = ARM::VSTRD;
979 break;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000980 }
Eric Christopher564857f2010-12-01 01:40:24 +0000981 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000982 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000983
Eric Christopher564857f2010-12-01 01:40:24 +0000984 // Create the base instruction, then add the operands.
985 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
986 TII.get(StrOpc))
987 .addReg(SrcReg, getKillRegState(true));
988 AddLoadStoreOperands(VT, Addr, MIB);
Eric Christopher318b6ee2010-09-02 00:53:56 +0000989 return true;
990}
991
Eric Christopher43b62be2010-09-27 06:02:23 +0000992bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000993 Value *Op0 = I->getOperand(0);
994 unsigned SrcReg = 0;
995
Eric Christopher564857f2010-12-01 01:40:24 +0000996 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000997 MVT VT;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000998 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopher543cf052010-09-01 22:16:27 +0000999 return false;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001000
Eric Christopher1b61ef42010-09-02 01:48:11 +00001001 // Get the value to be stored into a register.
1002 SrcReg = getRegForValue(Op0);
Eric Christopher564857f2010-12-01 01:40:24 +00001003 if (SrcReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001004
Eric Christopher564857f2010-12-01 01:40:24 +00001005 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +00001006 Address Addr;
Eric Christopher0d581222010-11-19 22:30:02 +00001007 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher318b6ee2010-09-02 00:53:56 +00001008 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001009
Eric Christopher0d581222010-11-19 22:30:02 +00001010 if (!ARMEmitStore(VT, SrcReg, Addr)) return false;
Eric Christophera5b1e682010-09-17 22:28:18 +00001011 return true;
1012}
1013
1014static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1015 switch (Pred) {
1016 // Needs two compares...
1017 case CmpInst::FCMP_ONE:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001018 case CmpInst::FCMP_UEQ:
Eric Christophera5b1e682010-09-17 22:28:18 +00001019 default:
Eric Christopher4053e632010-11-02 01:24:49 +00001020 // AL is our "false" for now. The other two need more compares.
Eric Christophera5b1e682010-09-17 22:28:18 +00001021 return ARMCC::AL;
1022 case CmpInst::ICMP_EQ:
1023 case CmpInst::FCMP_OEQ:
1024 return ARMCC::EQ;
1025 case CmpInst::ICMP_SGT:
1026 case CmpInst::FCMP_OGT:
1027 return ARMCC::GT;
1028 case CmpInst::ICMP_SGE:
1029 case CmpInst::FCMP_OGE:
1030 return ARMCC::GE;
1031 case CmpInst::ICMP_UGT:
1032 case CmpInst::FCMP_UGT:
1033 return ARMCC::HI;
1034 case CmpInst::FCMP_OLT:
1035 return ARMCC::MI;
1036 case CmpInst::ICMP_ULE:
1037 case CmpInst::FCMP_OLE:
1038 return ARMCC::LS;
1039 case CmpInst::FCMP_ORD:
1040 return ARMCC::VC;
1041 case CmpInst::FCMP_UNO:
1042 return ARMCC::VS;
1043 case CmpInst::FCMP_UGE:
1044 return ARMCC::PL;
1045 case CmpInst::ICMP_SLT:
1046 case CmpInst::FCMP_ULT:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001047 return ARMCC::LT;
Eric Christophera5b1e682010-09-17 22:28:18 +00001048 case CmpInst::ICMP_SLE:
1049 case CmpInst::FCMP_ULE:
1050 return ARMCC::LE;
1051 case CmpInst::FCMP_UNE:
1052 case CmpInst::ICMP_NE:
1053 return ARMCC::NE;
1054 case CmpInst::ICMP_UGE:
1055 return ARMCC::HS;
1056 case CmpInst::ICMP_ULT:
1057 return ARMCC::LO;
1058 }
Eric Christopher543cf052010-09-01 22:16:27 +00001059}
1060
Eric Christopher43b62be2010-09-27 06:02:23 +00001061bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christophere5734102010-09-03 00:35:47 +00001062 const BranchInst *BI = cast<BranchInst>(I);
1063 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1064 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopherac1a19e2010-09-09 01:06:51 +00001065
Eric Christophere5734102010-09-03 00:35:47 +00001066 // Simple branch support.
Jim Grosbach16cb3762010-11-09 19:22:26 +00001067
Eric Christopher0e6233b2010-10-29 21:08:19 +00001068 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1069 // behavior.
1070 // TODO: Factor this out.
1071 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Eric Christopher632ae892011-04-29 21:56:31 +00001072 MVT SourceVT;
1073 const Type *Ty = CI->getOperand(0)->getType();
1074 if (CI->hasOneUse() && (CI->getParent() == I->getParent())
1075 && isTypeLegal(Ty, SourceVT)) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001076 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1077 if (isFloat && !Subtarget->hasVFP2())
1078 return false;
1079
1080 unsigned CmpOpc;
Eric Christopher632ae892011-04-29 21:56:31 +00001081 switch (SourceVT.SimpleTy) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001082 default: return false;
1083 // TODO: Verify compares.
1084 case MVT::f32:
1085 CmpOpc = ARM::VCMPES;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001086 break;
1087 case MVT::f64:
1088 CmpOpc = ARM::VCMPED;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001089 break;
1090 case MVT::i32:
1091 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001092 break;
1093 }
1094
1095 // Get the compare predicate.
Eric Christopher632ae892011-04-29 21:56:31 +00001096 // Try to take advantage of fallthrough opportunities.
1097 CmpInst::Predicate Predicate = CI->getPredicate();
1098 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1099 std::swap(TBB, FBB);
1100 Predicate = CmpInst::getInversePredicate(Predicate);
1101 }
1102
1103 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher0e6233b2010-10-29 21:08:19 +00001104
1105 // We may not handle every CC for now.
1106 if (ARMPred == ARMCC::AL) return false;
1107
1108 unsigned Arg1 = getRegForValue(CI->getOperand(0));
1109 if (Arg1 == 0) return false;
1110
1111 unsigned Arg2 = getRegForValue(CI->getOperand(1));
1112 if (Arg2 == 0) return false;
1113
1114 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1115 TII.get(CmpOpc))
1116 .addReg(Arg1).addReg(Arg2));
Jim Grosbach16cb3762010-11-09 19:22:26 +00001117
Eric Christopher0e6233b2010-10-29 21:08:19 +00001118 // For floating point we need to move the result to a comparison register
1119 // that we can then use for branches.
1120 if (isFloat)
1121 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1122 TII.get(ARM::FMSTAT)));
Jim Grosbach16cb3762010-11-09 19:22:26 +00001123
Eric Christopher0e6233b2010-10-29 21:08:19 +00001124 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1125 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1126 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
1127 FastEmitBranch(FBB, DL);
1128 FuncInfo.MBB->addSuccessor(TBB);
1129 return true;
1130 }
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001131 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1132 MVT SourceVT;
1133 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
1134 (isTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
1135 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1136 unsigned OpReg = getRegForValue(TI->getOperand(0));
1137 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1138 TII.get(TstOpc))
1139 .addReg(OpReg).addImm(1));
1140
1141 unsigned CCMode = ARMCC::NE;
1142 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1143 std::swap(TBB, FBB);
1144 CCMode = ARMCC::EQ;
1145 }
1146
1147 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1148 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1149 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1150
1151 FastEmitBranch(FBB, DL);
1152 FuncInfo.MBB->addSuccessor(TBB);
1153 return true;
1154 }
Eric Christopher0e6233b2010-10-29 21:08:19 +00001155 }
Jim Grosbach16cb3762010-11-09 19:22:26 +00001156
Eric Christopher0e6233b2010-10-29 21:08:19 +00001157 unsigned CmpReg = getRegForValue(BI->getCondition());
1158 if (CmpReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001159
Stuart Hastingsc5eecbc2011-04-16 03:31:26 +00001160 // We've been divorced from our compare! Our block was split, and
1161 // now our compare lives in a predecessor block. We musn't
1162 // re-compare here, as the children of the compare aren't guaranteed
1163 // live across the block boundary (we *could* check for this).
1164 // Regardless, the compare has been done in the predecessor block,
1165 // and it left a value for us in a virtual register. Ergo, we test
1166 // the one-bit value left in the virtual register.
1167 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1168 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TstOpc))
1169 .addReg(CmpReg).addImm(1));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001170
Eric Christopher7a20a372011-04-28 16:52:09 +00001171 unsigned CCMode = ARMCC::NE;
1172 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1173 std::swap(TBB, FBB);
1174 CCMode = ARMCC::EQ;
1175 }
1176
Eric Christophere5734102010-09-03 00:35:47 +00001177 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
Eric Christophere5734102010-09-03 00:35:47 +00001178 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
Eric Christopher7a20a372011-04-28 16:52:09 +00001179 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Eric Christophere5734102010-09-03 00:35:47 +00001180 FastEmitBranch(FBB, DL);
1181 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001182 return true;
Eric Christophere5734102010-09-03 00:35:47 +00001183}
1184
Eric Christopher43b62be2010-09-27 06:02:23 +00001185bool ARMFastISel::SelectCmp(const Instruction *I) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001186 const CmpInst *CI = cast<CmpInst>(I);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001187
Duncan Sands1440e8b2010-11-03 11:35:31 +00001188 MVT VT;
Eric Christopherd43393a2010-09-08 23:13:45 +00001189 const Type *Ty = CI->getOperand(0)->getType();
1190 if (!isTypeLegal(Ty, VT))
1191 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001192
Eric Christopherd43393a2010-09-08 23:13:45 +00001193 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1194 if (isFloat && !Subtarget->hasVFP2())
1195 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001196
Eric Christopherd43393a2010-09-08 23:13:45 +00001197 unsigned CmpOpc;
Eric Christopher229207a2010-09-29 01:14:47 +00001198 unsigned CondReg;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001199 switch (VT.SimpleTy) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001200 default: return false;
1201 // TODO: Verify compares.
1202 case MVT::f32:
1203 CmpOpc = ARM::VCMPES;
Eric Christopher229207a2010-09-29 01:14:47 +00001204 CondReg = ARM::FPSCR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001205 break;
1206 case MVT::f64:
1207 CmpOpc = ARM::VCMPED;
Eric Christopher229207a2010-09-29 01:14:47 +00001208 CondReg = ARM::FPSCR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001209 break;
1210 case MVT::i32:
1211 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
Eric Christopher229207a2010-09-29 01:14:47 +00001212 CondReg = ARM::CPSR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001213 break;
1214 }
1215
Eric Christopher229207a2010-09-29 01:14:47 +00001216 // Get the compare predicate.
1217 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopherdccd2c32010-10-11 08:38:55 +00001218
Eric Christopher229207a2010-09-29 01:14:47 +00001219 // We may not handle every CC for now.
1220 if (ARMPred == ARMCC::AL) return false;
1221
Eric Christopherd43393a2010-09-08 23:13:45 +00001222 unsigned Arg1 = getRegForValue(CI->getOperand(0));
1223 if (Arg1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001224
Eric Christopherd43393a2010-09-08 23:13:45 +00001225 unsigned Arg2 = getRegForValue(CI->getOperand(1));
1226 if (Arg2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001227
Eric Christopherd43393a2010-09-08 23:13:45 +00001228 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1229 .addReg(Arg1).addReg(Arg2));
Eric Christopherac1a19e2010-09-09 01:06:51 +00001230
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001231 // For floating point we need to move the result to a comparison register
1232 // that we can then use for branches.
Eric Christopherd43393a2010-09-08 23:13:45 +00001233 if (isFloat)
1234 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1235 TII.get(ARM::FMSTAT)));
Eric Christopherce07b542010-09-09 20:26:31 +00001236
Eric Christopher229207a2010-09-29 01:14:47 +00001237 // Now set a register based on the comparison. Explicitly set the predicates
1238 // here.
Eric Christopher338c2532010-10-07 05:31:49 +00001239 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCi : ARM::MOVCCi;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001240 TargetRegisterClass *RC = isThumb ? ARM::rGPRRegisterClass
Eric Christopher5d18d922010-10-07 05:39:19 +00001241 : ARM::GPRRegisterClass;
1242 unsigned DestReg = createResultReg(RC);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001243 Constant *Zero
Eric Christopher8cf6c602010-09-29 22:24:45 +00001244 = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher229207a2010-09-29 01:14:47 +00001245 unsigned ZeroReg = TargetMaterializeConstant(Zero);
1246 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), DestReg)
1247 .addReg(ZeroReg).addImm(1)
1248 .addImm(ARMPred).addReg(CondReg);
1249
Eric Christophera5b1e682010-09-17 22:28:18 +00001250 UpdateValueMap(I, DestReg);
Eric Christopherd43393a2010-09-08 23:13:45 +00001251 return true;
1252}
1253
Eric Christopher43b62be2010-09-27 06:02:23 +00001254bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopher46203602010-09-09 00:26:48 +00001255 // Make sure we have VFP and that we're extending float to double.
1256 if (!Subtarget->hasVFP2()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001257
Eric Christopher46203602010-09-09 00:26:48 +00001258 Value *V = I->getOperand(0);
1259 if (!I->getType()->isDoubleTy() ||
1260 !V->getType()->isFloatTy()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001261
Eric Christopher46203602010-09-09 00:26:48 +00001262 unsigned Op = getRegForValue(V);
1263 if (Op == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001264
Eric Christopher46203602010-09-09 00:26:48 +00001265 unsigned Result = createResultReg(ARM::DPRRegisterClass);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001266 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001267 TII.get(ARM::VCVTDS), Result)
Eric Christopherce07b542010-09-09 20:26:31 +00001268 .addReg(Op));
1269 UpdateValueMap(I, Result);
1270 return true;
1271}
1272
Eric Christopher43b62be2010-09-27 06:02:23 +00001273bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopherce07b542010-09-09 20:26:31 +00001274 // Make sure we have VFP and that we're truncating double to float.
1275 if (!Subtarget->hasVFP2()) return false;
1276
1277 Value *V = I->getOperand(0);
Eric Christopher022b7fb2010-10-05 23:13:24 +00001278 if (!(I->getType()->isFloatTy() &&
1279 V->getType()->isDoubleTy())) return false;
Eric Christopherce07b542010-09-09 20:26:31 +00001280
1281 unsigned Op = getRegForValue(V);
1282 if (Op == 0) return false;
1283
1284 unsigned Result = createResultReg(ARM::SPRRegisterClass);
Eric Christopherce07b542010-09-09 20:26:31 +00001285 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001286 TII.get(ARM::VCVTSD), Result)
Eric Christopher46203602010-09-09 00:26:48 +00001287 .addReg(Op));
1288 UpdateValueMap(I, Result);
1289 return true;
1290}
1291
Eric Christopher43b62be2010-09-27 06:02:23 +00001292bool ARMFastISel::SelectSIToFP(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001293 // Make sure we have VFP.
1294 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001295
Duncan Sands1440e8b2010-11-03 11:35:31 +00001296 MVT DstVT;
Eric Christopher9a040492010-09-09 18:54:59 +00001297 const Type *Ty = I->getType();
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001298 if (!isTypeLegal(Ty, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001299 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001300
Eric Christopher9a040492010-09-09 18:54:59 +00001301 unsigned Op = getRegForValue(I->getOperand(0));
1302 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001303
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001304 // The conversion routine works on fp-reg to fp-reg and the operand above
1305 // was an integer, move it to the fp registers if possible.
Eric Christopher022b7fb2010-10-05 23:13:24 +00001306 unsigned FP = ARMMoveToFPReg(MVT::f32, Op);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001307 if (FP == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001308
Eric Christopher9a040492010-09-09 18:54:59 +00001309 unsigned Opc;
1310 if (Ty->isFloatTy()) Opc = ARM::VSITOS;
1311 else if (Ty->isDoubleTy()) Opc = ARM::VSITOD;
1312 else return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001313
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001314 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Eric Christopher9a040492010-09-09 18:54:59 +00001315 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1316 ResultReg)
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001317 .addReg(FP));
Eric Christopherce07b542010-09-09 20:26:31 +00001318 UpdateValueMap(I, ResultReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001319 return true;
1320}
1321
Eric Christopher43b62be2010-09-27 06:02:23 +00001322bool ARMFastISel::SelectFPToSI(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001323 // Make sure we have VFP.
1324 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001325
Duncan Sands1440e8b2010-11-03 11:35:31 +00001326 MVT DstVT;
Eric Christopher9a040492010-09-09 18:54:59 +00001327 const Type *RetTy = I->getType();
Eric Christopher920a2082010-09-10 00:35:09 +00001328 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001329 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001330
Eric Christopher9a040492010-09-09 18:54:59 +00001331 unsigned Op = getRegForValue(I->getOperand(0));
1332 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001333
Eric Christopher9a040492010-09-09 18:54:59 +00001334 unsigned Opc;
1335 const Type *OpTy = I->getOperand(0)->getType();
1336 if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS;
1337 else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD;
1338 else return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001339
Eric Christopher022b7fb2010-10-05 23:13:24 +00001340 // f64->s32 or f32->s32 both need an intermediate f32 reg.
1341 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Eric Christopher9a040492010-09-09 18:54:59 +00001342 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1343 ResultReg)
1344 .addReg(Op));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001345
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001346 // This result needs to be in an integer register, but the conversion only
1347 // takes place in fp-regs.
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001348 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001349 if (IntReg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001350
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001351 UpdateValueMap(I, IntReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001352 return true;
1353}
1354
Eric Christopher3bbd3962010-10-11 08:27:59 +00001355bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001356 MVT VT;
1357 if (!isTypeLegal(I->getType(), VT))
Eric Christopher3bbd3962010-10-11 08:27:59 +00001358 return false;
1359
1360 // Things need to be register sized for register moves.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001361 if (VT != MVT::i32) return false;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001362 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
1363
1364 unsigned CondReg = getRegForValue(I->getOperand(0));
1365 if (CondReg == 0) return false;
1366 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1367 if (Op1Reg == 0) return false;
1368 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1369 if (Op2Reg == 0) return false;
1370
1371 unsigned CmpOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1372 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1373 .addReg(CondReg).addImm(1));
1374 unsigned ResultReg = createResultReg(RC);
1375 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCr : ARM::MOVCCr;
1376 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), ResultReg)
1377 .addReg(Op1Reg).addReg(Op2Reg)
1378 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
1379 UpdateValueMap(I, ResultReg);
1380 return true;
1381}
1382
Eric Christopher08637852010-09-30 22:34:19 +00001383bool ARMFastISel::SelectSDiv(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001384 MVT VT;
Eric Christopher08637852010-09-30 22:34:19 +00001385 const Type *Ty = I->getType();
1386 if (!isTypeLegal(Ty, VT))
1387 return false;
1388
1389 // If we have integer div support we should have selected this automagically.
1390 // In case we have a real miss go ahead and return false and we'll pick
1391 // it up later.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001392 if (Subtarget->hasDivide()) return false;
1393
Eric Christopher08637852010-09-30 22:34:19 +00001394 // Otherwise emit a libcall.
1395 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christopher7bdc4de2010-10-11 08:31:54 +00001396 if (VT == MVT::i8)
1397 LC = RTLIB::SDIV_I8;
1398 else if (VT == MVT::i16)
Eric Christopher08637852010-09-30 22:34:19 +00001399 LC = RTLIB::SDIV_I16;
1400 else if (VT == MVT::i32)
1401 LC = RTLIB::SDIV_I32;
1402 else if (VT == MVT::i64)
1403 LC = RTLIB::SDIV_I64;
1404 else if (VT == MVT::i128)
1405 LC = RTLIB::SDIV_I128;
1406 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopherdccd2c32010-10-11 08:38:55 +00001407
Eric Christopher08637852010-09-30 22:34:19 +00001408 return ARMEmitLibcall(I, LC);
1409}
1410
Eric Christopher6a880d62010-10-11 08:37:26 +00001411bool ARMFastISel::SelectSRem(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001412 MVT VT;
Eric Christopher6a880d62010-10-11 08:37:26 +00001413 const Type *Ty = I->getType();
1414 if (!isTypeLegal(Ty, VT))
1415 return false;
1416
1417 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1418 if (VT == MVT::i8)
1419 LC = RTLIB::SREM_I8;
1420 else if (VT == MVT::i16)
1421 LC = RTLIB::SREM_I16;
1422 else if (VT == MVT::i32)
1423 LC = RTLIB::SREM_I32;
1424 else if (VT == MVT::i64)
1425 LC = RTLIB::SREM_I64;
1426 else if (VT == MVT::i128)
1427 LC = RTLIB::SREM_I128;
Eric Christophera1640d92010-10-11 08:40:05 +00001428 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christopher2896df82010-10-15 18:02:07 +00001429
Eric Christopher6a880d62010-10-11 08:37:26 +00001430 return ARMEmitLibcall(I, LC);
1431}
1432
Eric Christopher43b62be2010-09-27 06:02:23 +00001433bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
Eric Christopherbd6bf082010-09-09 01:02:03 +00001434 EVT VT = TLI.getValueType(I->getType(), true);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001435
Eric Christopherbc39b822010-09-09 00:53:57 +00001436 // We can get here in the case when we want to use NEON for our fp
1437 // operations, but can't figure out how to. Just use the vfp instructions
1438 // if we have them.
1439 // FIXME: It'd be nice to use NEON instructions.
Eric Christopherbd6bf082010-09-09 01:02:03 +00001440 const Type *Ty = I->getType();
1441 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1442 if (isFloat && !Subtarget->hasVFP2())
1443 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001444
Eric Christopherbc39b822010-09-09 00:53:57 +00001445 unsigned Op1 = getRegForValue(I->getOperand(0));
1446 if (Op1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001447
Eric Christopherbc39b822010-09-09 00:53:57 +00001448 unsigned Op2 = getRegForValue(I->getOperand(1));
1449 if (Op2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001450
Eric Christopherbc39b822010-09-09 00:53:57 +00001451 unsigned Opc;
Duncan Sandscdfad362010-11-03 12:17:33 +00001452 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopherbc39b822010-09-09 00:53:57 +00001453 switch (ISDOpcode) {
1454 default: return false;
1455 case ISD::FADD:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001456 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001457 break;
1458 case ISD::FSUB:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001459 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001460 break;
1461 case ISD::FMUL:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001462 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001463 break;
1464 }
Eric Christopherbd6bf082010-09-09 01:02:03 +00001465 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Eric Christopherbc39b822010-09-09 00:53:57 +00001466 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1467 TII.get(Opc), ResultReg)
1468 .addReg(Op1).addReg(Op2));
Eric Christopherce07b542010-09-09 20:26:31 +00001469 UpdateValueMap(I, ResultReg);
Eric Christopherbc39b822010-09-09 00:53:57 +00001470 return true;
1471}
1472
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001473// Call Handling Code
1474
Eric Christopherfa87d662010-10-18 02:17:53 +00001475bool ARMFastISel::FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src,
1476 EVT SrcVT, unsigned &ResultReg) {
1477 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
1478 Src, /*TODO: Kill=*/false);
Jim Grosbach6b156392010-10-27 21:39:08 +00001479
Eric Christopherfa87d662010-10-18 02:17:53 +00001480 if (RR != 0) {
1481 ResultReg = RR;
1482 return true;
1483 } else
Jim Grosbach6b156392010-10-27 21:39:08 +00001484 return false;
Eric Christopherfa87d662010-10-18 02:17:53 +00001485}
1486
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001487// This is largely taken directly from CCAssignFnForNode - we don't support
1488// varargs in FastISel so that part has been removed.
1489// TODO: We may not support all of this.
1490CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
1491 switch (CC) {
1492 default:
1493 llvm_unreachable("Unsupported calling convention");
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001494 case CallingConv::Fast:
Evan Cheng1f8b40d2010-10-22 18:57:05 +00001495 // Ignore fastcc. Silence compiler warnings.
1496 (void)RetFastCC_ARM_APCS;
1497 (void)FastCC_ARM_APCS;
1498 // Fallthrough
1499 case CallingConv::C:
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001500 // Use target triple & subtarget features to do actual dispatch.
1501 if (Subtarget->isAAPCS_ABI()) {
1502 if (Subtarget->hasVFP2() &&
1503 FloatABIType == FloatABI::Hard)
1504 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1505 else
1506 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1507 } else
1508 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1509 case CallingConv::ARM_AAPCS_VFP:
1510 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1511 case CallingConv::ARM_AAPCS:
1512 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1513 case CallingConv::ARM_APCS:
1514 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1515 }
1516}
1517
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001518bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1519 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001520 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001521 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1522 SmallVectorImpl<unsigned> &RegArgs,
1523 CallingConv::ID CC,
1524 unsigned &NumBytes) {
1525 SmallVector<CCValAssign, 16> ArgLocs;
1526 CCState CCInfo(CC, false, TM, ArgLocs, *Context);
1527 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC, false));
1528
1529 // Get a count of how many bytes are to be pushed on the stack.
1530 NumBytes = CCInfo.getNextStackOffset();
1531
1532 // Issue CALLSEQ_START
1533 unsigned AdjStackDown = TM.getRegisterInfo()->getCallFrameSetupOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001534 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1535 TII.get(AdjStackDown))
1536 .addImm(NumBytes));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001537
1538 // Process the args.
1539 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1540 CCValAssign &VA = ArgLocs[i];
1541 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sands1440e8b2010-11-03 11:35:31 +00001542 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001543
Eric Christopher4a2b3162011-01-27 05:44:56 +00001544 // We don't handle NEON/vector parameters yet.
1545 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
Eric Christophera4633f52010-10-23 09:37:17 +00001546 return false;
1547
Eric Christopherf9764fa2010-09-30 20:49:44 +00001548 // Handle arg promotion, etc.
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001549 switch (VA.getLocInfo()) {
1550 case CCValAssign::Full: break;
Eric Christopherfa87d662010-10-18 02:17:53 +00001551 case CCValAssign::SExt: {
1552 bool Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1553 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001554 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001555 Emitted = true;
1556 ArgVT = VA.getLocVT();
1557 break;
1558 }
1559 case CCValAssign::ZExt: {
1560 bool Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1561 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001562 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001563 Emitted = true;
1564 ArgVT = VA.getLocVT();
1565 break;
1566 }
1567 case CCValAssign::AExt: {
Eric Christopherfa87d662010-10-18 02:17:53 +00001568 bool Emitted = FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1569 Arg, ArgVT, Arg);
1570 if (!Emitted)
1571 Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1572 Arg, ArgVT, Arg);
1573 if (!Emitted)
1574 Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1575 Arg, ArgVT, Arg);
1576
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001577 assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001578 ArgVT = VA.getLocVT();
1579 break;
1580 }
1581 case CCValAssign::BCvt: {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001582 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001583 /*TODO: Kill=*/false);
Eric Christopherfa87d662010-10-18 02:17:53 +00001584 assert(BC != 0 && "Failed to emit a bitcast!");
1585 Arg = BC;
1586 ArgVT = VA.getLocVT();
1587 break;
1588 }
1589 default: llvm_unreachable("Unknown arg promotion!");
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001590 }
1591
1592 // Now copy/store arg to correct locations.
Eric Christopherfb0b8922010-10-11 21:20:02 +00001593 if (VA.isRegLoc() && !VA.needsCustom()) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001594 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
Eric Christopherf9764fa2010-09-30 20:49:44 +00001595 VA.getLocReg())
1596 .addReg(Arg);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001597 RegArgs.push_back(VA.getLocReg());
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001598 } else if (VA.needsCustom()) {
1599 // TODO: We need custom lowering for vector (v2f64) args.
1600 if (VA.getLocVT() != MVT::f64) return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001601
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001602 CCValAssign &NextVA = ArgLocs[++i];
1603
1604 // TODO: Only handle register args for now.
1605 if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false;
1606
1607 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1608 TII.get(ARM::VMOVRRD), VA.getLocReg())
1609 .addReg(NextVA.getLocReg(), RegState::Define)
1610 .addReg(Arg));
1611 RegArgs.push_back(VA.getLocReg());
1612 RegArgs.push_back(NextVA.getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001613 } else {
Eric Christopher5b924802010-10-21 20:09:54 +00001614 assert(VA.isMemLoc());
1615 // Need to store on the stack.
Eric Christopher0d581222010-11-19 22:30:02 +00001616 Address Addr;
1617 Addr.BaseType = Address::RegBase;
1618 Addr.Base.Reg = ARM::SP;
1619 Addr.Offset = VA.getLocMemOffset();
Eric Christopher5b924802010-10-21 20:09:54 +00001620
Eric Christopher0d581222010-11-19 22:30:02 +00001621 if (!ARMEmitStore(ArgVT, Arg, Addr)) return false;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001622 }
1623 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001624 return true;
1625}
1626
Duncan Sands1440e8b2010-11-03 11:35:31 +00001627bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001628 const Instruction *I, CallingConv::ID CC,
1629 unsigned &NumBytes) {
1630 // Issue CALLSEQ_END
1631 unsigned AdjStackUp = TM.getRegisterInfo()->getCallFrameDestroyOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001632 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1633 TII.get(AdjStackUp))
1634 .addImm(NumBytes).addImm(0));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001635
1636 // Now the return value.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001637 if (RetVT != MVT::isVoid) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001638 SmallVector<CCValAssign, 16> RVLocs;
1639 CCState CCInfo(CC, false, TM, RVLocs, *Context);
1640 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true));
1641
1642 // Copy all of the result registers out of their specified physreg.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001643 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopher14df8822010-10-01 00:00:11 +00001644 // For this move we copy into two registers and then move into the
1645 // double fp reg we want.
Eric Christopher14df8822010-10-01 00:00:11 +00001646 EVT DestVT = RVLocs[0].getValVT();
1647 TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
1648 unsigned ResultReg = createResultReg(DstRC);
1649 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1650 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopher3659ac22010-10-20 08:02:24 +00001651 .addReg(RVLocs[0].getLocReg())
1652 .addReg(RVLocs[1].getLocReg()));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001653
Eric Christopher3659ac22010-10-20 08:02:24 +00001654 UsedRegs.push_back(RVLocs[0].getLocReg());
1655 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach6b156392010-10-27 21:39:08 +00001656
Eric Christopherdccd2c32010-10-11 08:38:55 +00001657 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001658 UpdateValueMap(I, ResultReg);
1659 } else {
Jim Grosbach95369592010-10-13 23:34:31 +00001660 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Eric Christopher14df8822010-10-01 00:00:11 +00001661 EVT CopyVT = RVLocs[0].getValVT();
1662 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001663
Eric Christopher14df8822010-10-01 00:00:11 +00001664 unsigned ResultReg = createResultReg(DstRC);
1665 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1666 ResultReg).addReg(RVLocs[0].getLocReg());
1667 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001668
Eric Christopherdccd2c32010-10-11 08:38:55 +00001669 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001670 UpdateValueMap(I, ResultReg);
1671 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001672 }
1673
Eric Christopherdccd2c32010-10-11 08:38:55 +00001674 return true;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001675}
1676
Eric Christopher4f512ef2010-10-22 01:28:00 +00001677bool ARMFastISel::SelectRet(const Instruction *I) {
1678 const ReturnInst *Ret = cast<ReturnInst>(I);
1679 const Function &F = *I->getParent()->getParent();
Jim Grosbach6b156392010-10-27 21:39:08 +00001680
Eric Christopher4f512ef2010-10-22 01:28:00 +00001681 if (!FuncInfo.CanLowerReturn)
1682 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001683
Eric Christopher4f512ef2010-10-22 01:28:00 +00001684 if (F.isVarArg())
1685 return false;
1686
1687 CallingConv::ID CC = F.getCallingConv();
1688 if (Ret->getNumOperands() > 0) {
1689 SmallVector<ISD::OutputArg, 4> Outs;
1690 GetReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
1691 Outs, TLI);
1692
1693 // Analyze operands of the call, assigning locations to each operand.
1694 SmallVector<CCValAssign, 16> ValLocs;
1695 CCState CCInfo(CC, F.isVarArg(), TM, ValLocs, I->getContext());
1696 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */));
1697
1698 const Value *RV = Ret->getOperand(0);
1699 unsigned Reg = getRegForValue(RV);
1700 if (Reg == 0)
1701 return false;
1702
1703 // Only handle a single return value for now.
1704 if (ValLocs.size() != 1)
1705 return false;
1706
1707 CCValAssign &VA = ValLocs[0];
Jim Grosbach6b156392010-10-27 21:39:08 +00001708
Eric Christopher4f512ef2010-10-22 01:28:00 +00001709 // Don't bother handling odd stuff for now.
1710 if (VA.getLocInfo() != CCValAssign::Full)
1711 return false;
1712 // Only handle register returns for now.
1713 if (!VA.isRegLoc())
1714 return false;
1715 // TODO: For now, don't try to handle cases where getLocInfo()
1716 // says Full but the types don't match.
Duncan Sands1e96bab2010-11-04 10:49:57 +00001717 if (TLI.getValueType(RV->getType()) != VA.getValVT())
Eric Christopher4f512ef2010-10-22 01:28:00 +00001718 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001719
Eric Christopher4f512ef2010-10-22 01:28:00 +00001720 // Make the copy.
1721 unsigned SrcReg = Reg + VA.getValNo();
1722 unsigned DstReg = VA.getLocReg();
1723 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
1724 // Avoid a cross-class copy. This is very unlikely.
1725 if (!SrcRC->contains(DstReg))
1726 return false;
1727 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1728 DstReg).addReg(SrcReg);
1729
1730 // Mark the register as live out of the function.
1731 MRI.addLiveOut(VA.getLocReg());
1732 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001733
Eric Christopher4f512ef2010-10-22 01:28:00 +00001734 unsigned RetOpc = isThumb ? ARM::tBX_RET : ARM::BX_RET;
1735 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1736 TII.get(RetOpc)));
1737 return true;
1738}
1739
Eric Christopher872f4a22011-02-22 01:37:10 +00001740unsigned ARMFastISel::ARMSelectCallOp(const GlobalValue *GV) {
1741
Eric Christopher872f4a22011-02-22 01:37:10 +00001742 // Darwin needs the r9 versions of the opcodes.
1743 bool isDarwin = Subtarget->isTargetDarwin();
Eric Christopher04356612011-04-05 00:39:26 +00001744 if (isThumb) {
Eric Christopher872f4a22011-02-22 01:37:10 +00001745 return isDarwin ? ARM::tBLr9 : ARM::tBL;
1746 } else {
1747 return isDarwin ? ARM::BLr9 : ARM::BL;
1748 }
1749}
1750
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001751// A quick function that will emit a call for a named libcall in F with the
1752// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopherdccd2c32010-10-11 08:38:55 +00001753// can emit a call for any libcall we can produce. This is an abridged version
1754// of the full call infrastructure since we won't need to worry about things
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001755// like computed function pointers or strange arguments at call sites.
1756// TODO: Try to unify this and the normal call bits for ARM, then try to unify
1757// with X86.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001758bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
1759 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001760
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001761 // Handle *simple* calls for now.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001762 const Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001763 MVT RetVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001764 if (RetTy->isVoidTy())
1765 RetVT = MVT::isVoid;
1766 else if (!isTypeLegal(RetTy, RetVT))
1767 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001768
Eric Christopher836c6242010-12-15 23:47:29 +00001769 // TODO: For now if we have long calls specified we don't handle the call.
1770 if (EnableARMLongCalls) return false;
1771
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001772 // Set up the argument vectors.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001773 SmallVector<Value*, 8> Args;
1774 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001775 SmallVector<MVT, 8> ArgVTs;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001776 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1777 Args.reserve(I->getNumOperands());
1778 ArgRegs.reserve(I->getNumOperands());
1779 ArgVTs.reserve(I->getNumOperands());
1780 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001781 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001782 Value *Op = I->getOperand(i);
1783 unsigned Arg = getRegForValue(Op);
1784 if (Arg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001785
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001786 const Type *ArgTy = Op->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001787 MVT ArgVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001788 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001789
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001790 ISD::ArgFlagsTy Flags;
1791 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1792 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001793
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001794 Args.push_back(Op);
1795 ArgRegs.push_back(Arg);
1796 ArgVTs.push_back(ArgVT);
1797 ArgFlags.push_back(Flags);
1798 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001799
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001800 // Handle the arguments now that we've gotten them.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001801 SmallVector<unsigned, 4> RegArgs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001802 unsigned NumBytes;
1803 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1804 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001805
Eric Christopher6344a5f2011-04-29 00:07:20 +00001806 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001807 // TODO: Turn this into the table of arm call ops.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001808 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001809 unsigned CallOpc = ARMSelectCallOp(NULL);
1810 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001811 // Explicitly adding the predicate here.
1812 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1813 TII.get(CallOpc)))
1814 .addExternalSymbol(TLI.getLibcallName(Call));
Eric Christopher872f4a22011-02-22 01:37:10 +00001815 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001816 // Explicitly adding the predicate here.
1817 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1818 TII.get(CallOpc))
1819 .addExternalSymbol(TLI.getLibcallName(Call)));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001820
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001821 // Add implicit physical register uses to the call.
1822 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1823 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001824
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001825 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001826 SmallVector<unsigned, 4> UsedRegs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001827 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001828
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001829 // Set all unused physreg defs as dead.
1830 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001831
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001832 return true;
1833}
1834
Eric Christopherf9764fa2010-09-30 20:49:44 +00001835bool ARMFastISel::SelectCall(const Instruction *I) {
1836 const CallInst *CI = cast<CallInst>(I);
1837 const Value *Callee = CI->getCalledValue();
1838
1839 // Can't handle inline asm or worry about intrinsics yet.
1840 if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false;
1841
Eric Christophere6ca6772010-10-01 21:33:12 +00001842 // Only handle global variable Callees that are direct calls.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001843 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Eric Christophere6ca6772010-10-01 21:33:12 +00001844 if (!GV || Subtarget->GVIsIndirectSymbol(GV, TM.getRelocationModel()))
1845 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001846
Eric Christopherf9764fa2010-09-30 20:49:44 +00001847 // Check the calling convention.
1848 ImmutableCallSite CS(CI);
1849 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher4cf34c62010-10-18 06:49:12 +00001850
Eric Christopherf9764fa2010-09-30 20:49:44 +00001851 // TODO: Avoid some calling conventions?
Eric Christopherdccd2c32010-10-11 08:38:55 +00001852
Eric Christopherf9764fa2010-09-30 20:49:44 +00001853 // Let SDISel handle vararg functions.
1854 const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1855 const FunctionType *FTy = cast<FunctionType>(PT->getElementType());
1856 if (FTy->isVarArg())
1857 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001858
Eric Christopherf9764fa2010-09-30 20:49:44 +00001859 // Handle *simple* calls for now.
1860 const Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001861 MVT RetVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001862 if (RetTy->isVoidTy())
1863 RetVT = MVT::isVoid;
1864 else if (!isTypeLegal(RetTy, RetVT))
1865 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001866
Eric Christopher836c6242010-12-15 23:47:29 +00001867 // TODO: For now if we have long calls specified we don't handle the call.
1868 if (EnableARMLongCalls) return false;
Eric Christopher299bbb22011-04-29 00:03:10 +00001869
Eric Christopherf9764fa2010-09-30 20:49:44 +00001870 // Set up the argument vectors.
1871 SmallVector<Value*, 8> Args;
1872 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001873 SmallVector<MVT, 8> ArgVTs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001874 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1875 Args.reserve(CS.arg_size());
1876 ArgRegs.reserve(CS.arg_size());
1877 ArgVTs.reserve(CS.arg_size());
1878 ArgFlags.reserve(CS.arg_size());
1879 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1880 i != e; ++i) {
1881 unsigned Arg = getRegForValue(*i);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001882
Eric Christopherf9764fa2010-09-30 20:49:44 +00001883 if (Arg == 0)
1884 return false;
1885 ISD::ArgFlagsTy Flags;
1886 unsigned AttrInd = i - CS.arg_begin() + 1;
1887 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
1888 Flags.setSExt();
1889 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
1890 Flags.setZExt();
1891
1892 // FIXME: Only handle *easy* calls for now.
1893 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1894 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1895 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1896 CS.paramHasAttr(AttrInd, Attribute::ByVal))
1897 return false;
1898
1899 const Type *ArgTy = (*i)->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001900 MVT ArgVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001901 if (!isTypeLegal(ArgTy, ArgVT))
1902 return false;
1903 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1904 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001905
Eric Christopherf9764fa2010-09-30 20:49:44 +00001906 Args.push_back(*i);
1907 ArgRegs.push_back(Arg);
1908 ArgVTs.push_back(ArgVT);
1909 ArgFlags.push_back(Flags);
1910 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001911
Eric Christopherf9764fa2010-09-30 20:49:44 +00001912 // Handle the arguments now that we've gotten them.
1913 SmallVector<unsigned, 4> RegArgs;
1914 unsigned NumBytes;
1915 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1916 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001917
Eric Christopher6344a5f2011-04-29 00:07:20 +00001918 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001919 // TODO: Turn this into the table of arm call ops.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001920 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001921 unsigned CallOpc = ARMSelectCallOp(GV);
Eric Christopher7bb59962010-11-29 21:56:23 +00001922 // Explicitly adding the predicate here.
Eric Christopher872f4a22011-02-22 01:37:10 +00001923 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001924 // Explicitly adding the predicate here.
1925 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1926 TII.get(CallOpc)))
1927 .addGlobalAddress(GV, 0, 0);
Eric Christopher872f4a22011-02-22 01:37:10 +00001928 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001929 // Explicitly adding the predicate here.
1930 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1931 TII.get(CallOpc))
1932 .addGlobalAddress(GV, 0, 0));
Eric Christopher299bbb22011-04-29 00:03:10 +00001933
Eric Christopherf9764fa2010-09-30 20:49:44 +00001934 // Add implicit physical register uses to the call.
1935 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1936 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001937
Eric Christopherf9764fa2010-09-30 20:49:44 +00001938 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001939 SmallVector<unsigned, 4> UsedRegs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001940 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001941
Eric Christopherf9764fa2010-09-30 20:49:44 +00001942 // Set all unused physreg defs as dead.
1943 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001944
Eric Christopherf9764fa2010-09-30 20:49:44 +00001945 return true;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001946
Eric Christopherf9764fa2010-09-30 20:49:44 +00001947}
1948
Eric Christopher56d2b722010-09-02 23:43:26 +00001949// TODO: SoftFP support.
Eric Christopherab695882010-07-21 22:26:11 +00001950bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopherac1a19e2010-09-09 01:06:51 +00001951
Eric Christopherab695882010-07-21 22:26:11 +00001952 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +00001953 case Instruction::Load:
Eric Christopher43b62be2010-09-27 06:02:23 +00001954 return SelectLoad(I);
Eric Christopher543cf052010-09-01 22:16:27 +00001955 case Instruction::Store:
Eric Christopher43b62be2010-09-27 06:02:23 +00001956 return SelectStore(I);
Eric Christophere5734102010-09-03 00:35:47 +00001957 case Instruction::Br:
Eric Christopher43b62be2010-09-27 06:02:23 +00001958 return SelectBranch(I);
Eric Christopherd43393a2010-09-08 23:13:45 +00001959 case Instruction::ICmp:
1960 case Instruction::FCmp:
Eric Christopher43b62be2010-09-27 06:02:23 +00001961 return SelectCmp(I);
Eric Christopher46203602010-09-09 00:26:48 +00001962 case Instruction::FPExt:
Eric Christopher43b62be2010-09-27 06:02:23 +00001963 return SelectFPExt(I);
Eric Christopherce07b542010-09-09 20:26:31 +00001964 case Instruction::FPTrunc:
Eric Christopher43b62be2010-09-27 06:02:23 +00001965 return SelectFPTrunc(I);
Eric Christopher9a040492010-09-09 18:54:59 +00001966 case Instruction::SIToFP:
Eric Christopher43b62be2010-09-27 06:02:23 +00001967 return SelectSIToFP(I);
Eric Christopher9a040492010-09-09 18:54:59 +00001968 case Instruction::FPToSI:
Eric Christopher43b62be2010-09-27 06:02:23 +00001969 return SelectFPToSI(I);
Eric Christopherbc39b822010-09-09 00:53:57 +00001970 case Instruction::FAdd:
Eric Christopher43b62be2010-09-27 06:02:23 +00001971 return SelectBinaryOp(I, ISD::FADD);
Eric Christopherbc39b822010-09-09 00:53:57 +00001972 case Instruction::FSub:
Eric Christopher43b62be2010-09-27 06:02:23 +00001973 return SelectBinaryOp(I, ISD::FSUB);
Eric Christopherbc39b822010-09-09 00:53:57 +00001974 case Instruction::FMul:
Eric Christopher43b62be2010-09-27 06:02:23 +00001975 return SelectBinaryOp(I, ISD::FMUL);
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001976 case Instruction::SDiv:
Eric Christopher43b62be2010-09-27 06:02:23 +00001977 return SelectSDiv(I);
Eric Christopher6a880d62010-10-11 08:37:26 +00001978 case Instruction::SRem:
1979 return SelectSRem(I);
Eric Christopherf9764fa2010-09-30 20:49:44 +00001980 case Instruction::Call:
1981 return SelectCall(I);
Eric Christopher3bbd3962010-10-11 08:27:59 +00001982 case Instruction::Select:
1983 return SelectSelect(I);
Eric Christopher4f512ef2010-10-22 01:28:00 +00001984 case Instruction::Ret:
1985 return SelectRet(I);
Eric Christopherab695882010-07-21 22:26:11 +00001986 default: break;
1987 }
1988 return false;
1989}
1990
1991namespace llvm {
1992 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopherfeadddd2010-10-11 20:05:22 +00001993 // Completely untested on non-darwin.
1994 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach16cb3762010-11-09 19:22:26 +00001995
Eric Christopheraaa8df42010-11-02 01:21:28 +00001996 // Darwin and thumb1 only for now.
Eric Christopherfeadddd2010-10-11 20:05:22 +00001997 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
Jim Grosbach16cb3762010-11-09 19:22:26 +00001998 if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() &&
Eric Christopheraaa8df42010-11-02 01:21:28 +00001999 !DisableARMFastISel)
Eric Christopherfeadddd2010-10-11 20:05:22 +00002000 return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +00002001 return 0;
Eric Christopherab695882010-07-21 22:26:11 +00002002 }
2003}