blob: 44c88aa7fd7ea8319bcbe18bd38f674c14264e04 [file] [log] [blame]
Eric Christopherab695882010-07-21 22:26:11 +00001//===-- ARMFastISel.cpp - ARM FastISel implementation ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the ARM-specific support for the FastISel class. Some
11// of the target-specific code is generated by tablegen in the file
12// ARMGenFastISel.inc, which is #included here.
13//
14//===----------------------------------------------------------------------===//
15
16#include "ARM.h"
Eric Christopher456144e2010-08-19 00:37:05 +000017#include "ARMBaseInstrInfo.h"
Eric Christopherd10cd7b2010-09-10 23:18:12 +000018#include "ARMCallingConv.h"
Eric Christopherab695882010-07-21 22:26:11 +000019#include "ARMRegisterInfo.h"
20#include "ARMTargetMachine.h"
21#include "ARMSubtarget.h"
Eric Christopherc9932f62010-10-01 23:24:42 +000022#include "ARMConstantPoolValue.h"
Evan Chengee04a6d2011-07-20 23:34:39 +000023#include "MCTargetDesc/ARMAddressingModes.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;
Eric Christopher827656d2010-11-20 22:38:27 +000074
Eric Christopher0d581222010-11-19 22:30:02 +000075 // Innocuous defaults for our address.
76 Address()
Jim Grosbach0c720762011-05-16 22:24:07 +000077 : BaseType(RegBase), Offset(0) {
Eric Christopher0d581222010-11-19 22:30:02 +000078 Base.Reg = 0;
79 }
80 } Address;
Eric Christopherab695882010-07-21 22:26:11 +000081
82class ARMFastISel : public FastISel {
83
84 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
85 /// make the right decision when generating code for different targets.
86 const ARMSubtarget *Subtarget;
Eric Christopher0fe7d542010-08-17 01:25:29 +000087 const TargetMachine &TM;
88 const TargetInstrInfo &TII;
89 const TargetLowering &TLI;
Eric Christopherc9932f62010-10-01 23:24:42 +000090 ARMFunctionInfo *AFI;
Eric Christopherab695882010-07-21 22:26:11 +000091
Eric Christopher8cf6c602010-09-29 22:24:45 +000092 // Convenience variables to avoid some queries.
Chad Rosier66dc8ca2011-11-08 21:12:00 +000093 bool isThumb2;
Eric Christopher8cf6c602010-09-29 22:24:45 +000094 LLVMContext *Context;
Eric Christophereaa204b2010-09-02 01:39:14 +000095
Eric Christopherab695882010-07-21 22:26:11 +000096 public:
Eric Christopherac1a19e2010-09-09 01:06:51 +000097 explicit ARMFastISel(FunctionLoweringInfo &funcInfo)
Eric Christopher0fe7d542010-08-17 01:25:29 +000098 : FastISel(funcInfo),
99 TM(funcInfo.MF->getTarget()),
100 TII(*TM.getInstrInfo()),
101 TLI(*TM.getTargetLowering()) {
Eric Christopherab695882010-07-21 22:26:11 +0000102 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Eric Christopher7fe55b72010-08-23 22:32:45 +0000103 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>();
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000104 isThumb2 = AFI->isThumbFunction();
Eric Christopher8cf6c602010-09-29 22:24:45 +0000105 Context = &funcInfo.Fn->getContext();
Eric Christopherab695882010-07-21 22:26:11 +0000106 }
107
Eric Christophercb592292010-08-20 00:20:31 +0000108 // Code from FastISel.cpp.
Eric Christopher0fe7d542010-08-17 01:25:29 +0000109 virtual unsigned FastEmitInst_(unsigned MachineInstOpcode,
110 const TargetRegisterClass *RC);
111 virtual unsigned FastEmitInst_r(unsigned MachineInstOpcode,
112 const TargetRegisterClass *RC,
113 unsigned Op0, bool Op0IsKill);
114 virtual unsigned FastEmitInst_rr(unsigned MachineInstOpcode,
115 const TargetRegisterClass *RC,
116 unsigned Op0, bool Op0IsKill,
117 unsigned Op1, bool Op1IsKill);
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000118 virtual unsigned FastEmitInst_rrr(unsigned MachineInstOpcode,
119 const TargetRegisterClass *RC,
120 unsigned Op0, bool Op0IsKill,
121 unsigned Op1, bool Op1IsKill,
122 unsigned Op2, bool Op2IsKill);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000123 virtual unsigned FastEmitInst_ri(unsigned MachineInstOpcode,
124 const TargetRegisterClass *RC,
125 unsigned Op0, bool Op0IsKill,
126 uint64_t Imm);
127 virtual unsigned FastEmitInst_rf(unsigned MachineInstOpcode,
128 const TargetRegisterClass *RC,
129 unsigned Op0, bool Op0IsKill,
130 const ConstantFP *FPImm);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000131 virtual unsigned FastEmitInst_rri(unsigned MachineInstOpcode,
132 const TargetRegisterClass *RC,
133 unsigned Op0, bool Op0IsKill,
134 unsigned Op1, bool Op1IsKill,
135 uint64_t Imm);
Eric Christopheraf3dce52011-03-12 01:09:29 +0000136 virtual unsigned FastEmitInst_i(unsigned MachineInstOpcode,
137 const TargetRegisterClass *RC,
138 uint64_t Imm);
Eric Christopherd94bc542011-04-29 22:07:50 +0000139 virtual unsigned FastEmitInst_ii(unsigned MachineInstOpcode,
140 const TargetRegisterClass *RC,
141 uint64_t Imm1, uint64_t Imm2);
Eric Christopheraf3dce52011-03-12 01:09:29 +0000142
Eric Christopher0fe7d542010-08-17 01:25:29 +0000143 virtual unsigned FastEmitInst_extractsubreg(MVT RetVT,
144 unsigned Op0, bool Op0IsKill,
145 uint32_t Idx);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000146
Eric Christophercb592292010-08-20 00:20:31 +0000147 // Backend specific FastISel code.
Eric Christopherab695882010-07-21 22:26:11 +0000148 virtual bool TargetSelectInstruction(const Instruction *I);
Eric Christopher1b61ef42010-09-02 01:48:11 +0000149 virtual unsigned TargetMaterializeConstant(const Constant *C);
Eric Christopherf9764fa2010-09-30 20:49:44 +0000150 virtual unsigned TargetMaterializeAlloca(const AllocaInst *AI);
Eric Christopherab695882010-07-21 22:26:11 +0000151
152 #include "ARMGenFastISel.inc"
Eric Christopherac1a19e2010-09-09 01:06:51 +0000153
Eric Christopher83007122010-08-23 21:44:12 +0000154 // Instruction selection routines.
Eric Christopher44bff902010-09-10 23:10:30 +0000155 private:
Eric Christopher17787722010-10-21 21:47:51 +0000156 bool SelectLoad(const Instruction *I);
157 bool SelectStore(const Instruction *I);
158 bool SelectBranch(const Instruction *I);
159 bool SelectCmp(const Instruction *I);
160 bool SelectFPExt(const Instruction *I);
161 bool SelectFPTrunc(const Instruction *I);
162 bool SelectBinaryOp(const Instruction *I, unsigned ISDOpcode);
163 bool SelectSIToFP(const Instruction *I);
164 bool SelectFPToSI(const Instruction *I);
165 bool SelectSDiv(const Instruction *I);
166 bool SelectSRem(const Instruction *I);
167 bool SelectCall(const Instruction *I);
168 bool SelectSelect(const Instruction *I);
Eric Christopher4f512ef2010-10-22 01:28:00 +0000169 bool SelectRet(const Instruction *I);
Chad Rosier0d7b2312011-11-02 00:18:48 +0000170 bool SelectTrunc(const Instruction *I);
171 bool SelectIntExt(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:
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000175 bool isTypeLegal(Type *Ty, MVT &VT);
176 bool isLoadTypeLegal(Type *Ty, MVT &VT);
Chad Rosiere07cd5e2011-11-02 18:08:25 +0000177 bool ARMEmitCmp(const Value *Src1Value, const Value *Src2Value,
178 bool isZExt);
Eric Christopher0d581222010-11-19 22:30:02 +0000179 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr);
180 bool ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr);
181 bool ARMComputeAddress(const Value *Obj, Address &Addr);
182 void ARMSimplifyAddress(Address &Addr, EVT VT);
Chad Rosier87633022011-11-02 17:20:24 +0000183 unsigned ARMEmitIntExt(EVT SrcVT, unsigned SrcReg, EVT DestVT, bool isZExt);
Eric Christopher9ed58df2010-09-09 00:19:41 +0000184 unsigned ARMMaterializeFP(const ConstantFP *CFP, EVT VT);
Eric Christopher744c7c82010-09-28 22:47:54 +0000185 unsigned ARMMaterializeInt(const Constant *C, EVT VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000186 unsigned ARMMaterializeGV(const GlobalValue *GV, EVT VT);
Eric Christopheraa3ace12010-09-09 20:49:25 +0000187 unsigned ARMMoveToFPReg(EVT VT, unsigned SrcReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000188 unsigned ARMMoveToIntReg(EVT VT, unsigned SrcReg);
Eric Christopher872f4a22011-02-22 01:37:10 +0000189 unsigned ARMSelectCallOp(const GlobalValue *GV);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000190
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000191 // Call handling routines.
192 private:
Eric Christopherfa87d662010-10-18 02:17:53 +0000193 bool FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
194 unsigned &ResultReg);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000195 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool Return);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000196 bool ProcessCallArgs(SmallVectorImpl<Value*> &Args,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000197 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +0000198 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000199 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
200 SmallVectorImpl<unsigned> &RegArgs,
201 CallingConv::ID CC,
202 unsigned &NumBytes);
Duncan Sands1440e8b2010-11-03 11:35:31 +0000203 bool FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000204 const Instruction *I, CallingConv::ID CC,
205 unsigned &NumBytes);
Eric Christopher7ed8ec92010-09-28 01:21:42 +0000206 bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000207
208 // OptionalDef handling routines.
209 private:
Eric Christopheraf3dce52011-03-12 01:09:29 +0000210 bool isARMNEONPred(const MachineInstr *MI);
Eric Christopher456144e2010-08-19 00:37:05 +0000211 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
212 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
Eric Christopher564857f2010-12-01 01:40:24 +0000213 void AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000214 const MachineInstrBuilder &MIB,
215 unsigned Flags);
Eric Christopher456144e2010-08-19 00:37:05 +0000216};
Eric Christopherab695882010-07-21 22:26:11 +0000217
218} // end anonymous namespace
219
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000220#include "ARMGenCallingConv.inc"
Eric Christopherab695882010-07-21 22:26:11 +0000221
Eric Christopher456144e2010-08-19 00:37:05 +0000222// DefinesOptionalPredicate - This is different from DefinesPredicate in that
223// we don't care about implicit defs here, just places we'll need to add a
224// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
225bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
Evan Chenge837dea2011-06-28 19:10:37 +0000226 const MCInstrDesc &MCID = MI->getDesc();
227 if (!MCID.hasOptionalDef())
Eric Christopher456144e2010-08-19 00:37:05 +0000228 return false;
229
230 // Look to see if our OptionalDef is defining CPSR or CCR.
231 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
232 const MachineOperand &MO = MI->getOperand(i);
Eric Christopherf762fbe2010-08-20 00:36:24 +0000233 if (!MO.isReg() || !MO.isDef()) continue;
234 if (MO.getReg() == ARM::CPSR)
Eric Christopher456144e2010-08-19 00:37:05 +0000235 *CPSR = true;
236 }
237 return true;
238}
239
Eric Christopheraf3dce52011-03-12 01:09:29 +0000240bool ARMFastISel::isARMNEONPred(const MachineInstr *MI) {
Evan Chenge837dea2011-06-28 19:10:37 +0000241 const MCInstrDesc &MCID = MI->getDesc();
Eric Christopher299bbb22011-04-29 00:03:10 +0000242
Eric Christopheraf3dce52011-03-12 01:09:29 +0000243 // If we're a thumb2 or not NEON function we were handled via isPredicable.
Evan Chenge837dea2011-06-28 19:10:37 +0000244 if ((MCID.TSFlags & ARMII::DomainMask) != ARMII::DomainNEON ||
Eric Christopheraf3dce52011-03-12 01:09:29 +0000245 AFI->isThumb2Function())
246 return false;
Eric Christopher299bbb22011-04-29 00:03:10 +0000247
Evan Chenge837dea2011-06-28 19:10:37 +0000248 for (unsigned i = 0, e = MCID.getNumOperands(); i != e; ++i)
249 if (MCID.OpInfo[i].isPredicate())
Eric Christopheraf3dce52011-03-12 01:09:29 +0000250 return true;
Eric Christopher299bbb22011-04-29 00:03:10 +0000251
Eric Christopheraf3dce52011-03-12 01:09:29 +0000252 return false;
253}
254
Eric Christopher456144e2010-08-19 00:37:05 +0000255// If the machine is predicable go ahead and add the predicate operands, if
256// it needs default CC operands add those.
Eric Christopheraaa8df42010-11-02 01:21:28 +0000257// TODO: If we want to support thumb1 then we'll need to deal with optional
258// CPSR defs that need to be added before the remaining operands. See s_cc_out
259// for descriptions why.
Eric Christopher456144e2010-08-19 00:37:05 +0000260const MachineInstrBuilder &
261ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
262 MachineInstr *MI = &*MIB;
263
Eric Christopheraf3dce52011-03-12 01:09:29 +0000264 // Do we use a predicate? or...
265 // Are we NEON in ARM mode and have a predicate operand? If so, I know
266 // we're not predicable but add it anyways.
267 if (TII.isPredicable(MI) || isARMNEONPred(MI))
Eric Christopher456144e2010-08-19 00:37:05 +0000268 AddDefaultPred(MIB);
Eric Christopher299bbb22011-04-29 00:03:10 +0000269
Eric Christopher456144e2010-08-19 00:37:05 +0000270 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
271 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christopher979e0a12010-08-19 15:35:27 +0000272 bool CPSR = false;
Eric Christopher456144e2010-08-19 00:37:05 +0000273 if (DefinesOptionalPredicate(MI, &CPSR)) {
274 if (CPSR)
275 AddDefaultT1CC(MIB);
276 else
277 AddDefaultCC(MIB);
278 }
279 return MIB;
280}
281
Eric Christopher0fe7d542010-08-17 01:25:29 +0000282unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode,
283 const TargetRegisterClass* RC) {
284 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000285 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000286
Eric Christopher456144e2010-08-19 00:37:05 +0000287 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg));
Eric Christopher0fe7d542010-08-17 01:25:29 +0000288 return ResultReg;
289}
290
291unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
292 const TargetRegisterClass *RC,
293 unsigned Op0, bool Op0IsKill) {
294 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000295 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000296
297 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000298 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000299 .addReg(Op0, Op0IsKill * RegState::Kill));
300 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000301 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000302 .addReg(Op0, Op0IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000303 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000304 TII.get(TargetOpcode::COPY), ResultReg)
305 .addReg(II.ImplicitDefs[0]));
306 }
307 return ResultReg;
308}
309
310unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
311 const TargetRegisterClass *RC,
312 unsigned Op0, bool Op0IsKill,
313 unsigned Op1, bool Op1IsKill) {
314 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000315 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000316
317 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000318 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000319 .addReg(Op0, Op0IsKill * RegState::Kill)
320 .addReg(Op1, Op1IsKill * RegState::Kill));
321 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000322 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000323 .addReg(Op0, Op0IsKill * RegState::Kill)
324 .addReg(Op1, Op1IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000325 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000326 TII.get(TargetOpcode::COPY), ResultReg)
327 .addReg(II.ImplicitDefs[0]));
328 }
329 return ResultReg;
330}
331
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000332unsigned ARMFastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
333 const TargetRegisterClass *RC,
334 unsigned Op0, bool Op0IsKill,
335 unsigned Op1, bool Op1IsKill,
336 unsigned Op2, bool Op2IsKill) {
337 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000338 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000339
340 if (II.getNumDefs() >= 1)
341 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
342 .addReg(Op0, Op0IsKill * RegState::Kill)
343 .addReg(Op1, Op1IsKill * RegState::Kill)
344 .addReg(Op2, Op2IsKill * RegState::Kill));
345 else {
346 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
347 .addReg(Op0, Op0IsKill * RegState::Kill)
348 .addReg(Op1, Op1IsKill * RegState::Kill)
349 .addReg(Op2, Op2IsKill * RegState::Kill));
350 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
351 TII.get(TargetOpcode::COPY), ResultReg)
352 .addReg(II.ImplicitDefs[0]));
353 }
354 return ResultReg;
355}
356
Eric Christopher0fe7d542010-08-17 01:25:29 +0000357unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
358 const TargetRegisterClass *RC,
359 unsigned Op0, bool Op0IsKill,
360 uint64_t Imm) {
361 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000362 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000363
364 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000365 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000366 .addReg(Op0, Op0IsKill * RegState::Kill)
367 .addImm(Imm));
368 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000369 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000370 .addReg(Op0, Op0IsKill * RegState::Kill)
371 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000372 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000373 TII.get(TargetOpcode::COPY), ResultReg)
374 .addReg(II.ImplicitDefs[0]));
375 }
376 return ResultReg;
377}
378
379unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
380 const TargetRegisterClass *RC,
381 unsigned Op0, bool Op0IsKill,
382 const ConstantFP *FPImm) {
383 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000384 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000385
386 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000387 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000388 .addReg(Op0, Op0IsKill * RegState::Kill)
389 .addFPImm(FPImm));
390 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000391 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000392 .addReg(Op0, Op0IsKill * RegState::Kill)
393 .addFPImm(FPImm));
Eric Christopher456144e2010-08-19 00:37:05 +0000394 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000395 TII.get(TargetOpcode::COPY), ResultReg)
396 .addReg(II.ImplicitDefs[0]));
397 }
398 return ResultReg;
399}
400
401unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
402 const TargetRegisterClass *RC,
403 unsigned Op0, bool Op0IsKill,
404 unsigned Op1, bool Op1IsKill,
405 uint64_t Imm) {
406 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000407 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000408
409 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000410 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000411 .addReg(Op0, Op0IsKill * RegState::Kill)
412 .addReg(Op1, Op1IsKill * RegState::Kill)
413 .addImm(Imm));
414 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000415 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000416 .addReg(Op0, Op0IsKill * RegState::Kill)
417 .addReg(Op1, Op1IsKill * RegState::Kill)
418 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000419 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000420 TII.get(TargetOpcode::COPY), ResultReg)
421 .addReg(II.ImplicitDefs[0]));
422 }
423 return ResultReg;
424}
425
426unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
427 const TargetRegisterClass *RC,
428 uint64_t Imm) {
429 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000430 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000431
Eric Christopher0fe7d542010-08-17 01:25:29 +0000432 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000433 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000434 .addImm(Imm));
435 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000436 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000437 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000438 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000439 TII.get(TargetOpcode::COPY), ResultReg)
440 .addReg(II.ImplicitDefs[0]));
441 }
442 return ResultReg;
443}
444
Eric Christopherd94bc542011-04-29 22:07:50 +0000445unsigned ARMFastISel::FastEmitInst_ii(unsigned MachineInstOpcode,
446 const TargetRegisterClass *RC,
447 uint64_t Imm1, uint64_t Imm2) {
448 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000449 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher471e4222011-06-08 23:55:35 +0000450
Eric Christopherd94bc542011-04-29 22:07:50 +0000451 if (II.getNumDefs() >= 1)
452 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
453 .addImm(Imm1).addImm(Imm2));
454 else {
455 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
456 .addImm(Imm1).addImm(Imm2));
Eric Christopher471e4222011-06-08 23:55:35 +0000457 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherd94bc542011-04-29 22:07:50 +0000458 TII.get(TargetOpcode::COPY),
459 ResultReg)
460 .addReg(II.ImplicitDefs[0]));
461 }
462 return ResultReg;
463}
464
Eric Christopher0fe7d542010-08-17 01:25:29 +0000465unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT,
466 unsigned Op0, bool Op0IsKill,
467 uint32_t Idx) {
468 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
469 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
470 "Cannot yet extract from physregs");
Eric Christopher456144e2010-08-19 00:37:05 +0000471 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000472 DL, TII.get(TargetOpcode::COPY), ResultReg)
473 .addReg(Op0, getKillRegState(Op0IsKill), Idx));
474 return ResultReg;
475}
476
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000477// TODO: Don't worry about 64-bit now, but when this is fixed remove the
478// checks from the various callers.
Eric Christopheraa3ace12010-09-09 20:49:25 +0000479unsigned ARMFastISel::ARMMoveToFPReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000480 if (VT == MVT::f64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000481
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000482 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
483 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
484 TII.get(ARM::VMOVRS), MoveReg)
485 .addReg(SrcReg));
486 return MoveReg;
487}
488
489unsigned ARMFastISel::ARMMoveToIntReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000490 if (VT == MVT::i64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000491
Eric Christopheraa3ace12010-09-09 20:49:25 +0000492 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
493 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000494 TII.get(ARM::VMOVSR), MoveReg)
Eric Christopheraa3ace12010-09-09 20:49:25 +0000495 .addReg(SrcReg));
496 return MoveReg;
497}
498
Eric Christopher9ed58df2010-09-09 00:19:41 +0000499// For double width floating point we need to materialize two constants
500// (the high and the low) into integer registers then use a move to get
501// the combined constant into an FP reg.
502unsigned ARMFastISel::ARMMaterializeFP(const ConstantFP *CFP, EVT VT) {
503 const APFloat Val = CFP->getValueAPF();
Duncan Sandscdfad362010-11-03 12:17:33 +0000504 bool is64bit = VT == MVT::f64;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000505
Eric Christopher9ed58df2010-09-09 00:19:41 +0000506 // This checks to see if we can use VFP3 instructions to materialize
507 // a constant, otherwise we have to go through the constant pool.
508 if (TLI.isFPImmLegal(Val, VT)) {
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000509 int Imm;
510 unsigned Opc;
511 if (is64bit) {
512 Imm = ARM_AM::getFP64Imm(Val);
513 Opc = ARM::FCONSTD;
514 } else {
515 Imm = ARM_AM::getFP32Imm(Val);
516 Opc = ARM::FCONSTS;
517 }
Eric Christopher9ed58df2010-09-09 00:19:41 +0000518 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
519 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
520 DestReg)
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000521 .addImm(Imm));
Eric Christopher9ed58df2010-09-09 00:19:41 +0000522 return DestReg;
523 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000524
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000525 // Require VFP2 for loading fp constants.
Eric Christopher238bb162010-09-09 23:50:00 +0000526 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000527
Eric Christopher238bb162010-09-09 23:50:00 +0000528 // MachineConstantPool wants an explicit alignment.
529 unsigned Align = TD.getPrefTypeAlignment(CFP->getType());
530 if (Align == 0) {
531 // TODO: Figure out if this is correct.
532 Align = TD.getTypeAllocSize(CFP->getType());
533 }
534 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
535 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
536 unsigned Opc = is64bit ? ARM::VLDRD : ARM::VLDRS;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000537
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000538 // The extra reg is for addrmode5.
Eric Christopherf5732c42010-09-28 00:35:09 +0000539 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
540 DestReg)
541 .addConstantPoolIndex(Idx)
Eric Christopher238bb162010-09-09 23:50:00 +0000542 .addReg(0));
543 return DestReg;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000544}
545
Eric Christopher744c7c82010-09-28 22:47:54 +0000546unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, EVT VT) {
Eric Christopherdccd2c32010-10-11 08:38:55 +0000547
Chad Rosier44e89572011-11-04 22:29:00 +0000548 if (VT != MVT::i32 && VT != MVT::i16 && VT != MVT::i8 && VT != MVT::i1)
549 return false;
Eric Christophere5b13cf2010-11-03 20:21:17 +0000550
551 // If we can do this in a single instruction without a constant pool entry
552 // do so now.
553 const ConstantInt *CI = cast<ConstantInt>(C);
Chad Rosiera4e07272011-11-04 23:09:49 +0000554 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getZExtValue())) {
Chad Rosier451afbc2011-11-04 23:45:39 +0000555 EVT SrcVT = MVT::i32;
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000556 unsigned Opc = isThumb2 ? ARM::t2MOVi16 : ARM::MOVi16;
Chad Rosier451afbc2011-11-04 23:45:39 +0000557 unsigned ImmReg = createResultReg(TLI.getRegClassFor(SrcVT));
Eric Christophere5b13cf2010-11-03 20:21:17 +0000558 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Chad Rosier44e89572011-11-04 22:29:00 +0000559 TII.get(Opc), ImmReg)
Chad Rosier42536af2011-11-05 20:16:15 +0000560 .addImm(CI->getZExtValue()));
Chad Rosier44e89572011-11-04 22:29:00 +0000561 return ImmReg;
Eric Christophere5b13cf2010-11-03 20:21:17 +0000562 }
563
Chad Rosier44e89572011-11-04 22:29:00 +0000564 // For now 32-bit only.
565 if (VT != MVT::i32)
566 return false;
567
568 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
569
Eric Christopher56d2b722010-09-02 23:43:26 +0000570 // MachineConstantPool wants an explicit alignment.
571 unsigned Align = TD.getPrefTypeAlignment(C->getType());
572 if (Align == 0) {
573 // TODO: Figure out if this is correct.
574 Align = TD.getTypeAllocSize(C->getType());
575 }
576 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000577
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000578 if (isThumb2)
Eric Christopher56d2b722010-09-02 23:43:26 +0000579 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000580 TII.get(ARM::t2LDRpci), DestReg)
581 .addConstantPoolIndex(Idx));
Eric Christopher56d2b722010-09-02 23:43:26 +0000582 else
Eric Christopherd0c82a62010-11-12 09:48:30 +0000583 // The extra immediate is for addrmode2.
Eric Christopher56d2b722010-09-02 23:43:26 +0000584 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000585 TII.get(ARM::LDRcp), DestReg)
586 .addConstantPoolIndex(Idx)
Jim Grosbach3e556122010-10-26 22:37:02 +0000587 .addImm(0));
Eric Christopherac1a19e2010-09-09 01:06:51 +0000588
Eric Christopher56d2b722010-09-02 23:43:26 +0000589 return DestReg;
Eric Christopher1b61ef42010-09-02 01:48:11 +0000590}
591
Eric Christopherc9932f62010-10-01 23:24:42 +0000592unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, EVT VT) {
Eric Christopher890dbbe2010-10-02 00:32:44 +0000593 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000594 if (VT != MVT::i32) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000595
Eric Christopher890dbbe2010-10-02 00:32:44 +0000596 Reloc::Model RelocM = TM.getRelocationModel();
Eric Christopherdccd2c32010-10-11 08:38:55 +0000597
Eric Christopher890dbbe2010-10-02 00:32:44 +0000598 // TODO: Need more magic for ARM PIC.
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000599 if (!isThumb2 && (RelocM == Reloc::PIC_)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000600
Eric Christopher890dbbe2010-10-02 00:32:44 +0000601 // MachineConstantPool wants an explicit alignment.
602 unsigned Align = TD.getPrefTypeAlignment(GV->getType());
603 if (Align == 0) {
604 // TODO: Figure out if this is correct.
605 Align = TD.getTypeAllocSize(GV->getType());
606 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000607
Eric Christopher890dbbe2010-10-02 00:32:44 +0000608 // Grab index.
609 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000610 unsigned Id = AFI->createPICLabelUId();
Bill Wendling5bb77992011-10-01 08:00:54 +0000611 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id,
612 ARMCP::CPValue,
613 PCAdj);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000614 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000615
Eric Christopher890dbbe2010-10-02 00:32:44 +0000616 // Load value.
617 MachineInstrBuilder MIB;
618 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000619 if (isThumb2) {
Eric Christopher890dbbe2010-10-02 00:32:44 +0000620 unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
621 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
622 .addConstantPoolIndex(Idx);
623 if (RelocM == Reloc::PIC_)
624 MIB.addImm(Id);
625 } else {
Eric Christopherd0c82a62010-11-12 09:48:30 +0000626 // The extra immediate is for addrmode2.
Eric Christopher890dbbe2010-10-02 00:32:44 +0000627 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRcp),
628 DestReg)
629 .addConstantPoolIndex(Idx)
Eric Christopherd0c82a62010-11-12 09:48:30 +0000630 .addImm(0);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000631 }
632 AddOptionalDefs(MIB);
Eli Friedmand6412c92011-06-03 01:13:19 +0000633
634 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) {
635 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000636 if (isThumb2)
Jim Grosbachb04546f2011-09-13 20:30:37 +0000637 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
638 TII.get(ARM::t2LDRi12), NewDestReg)
Eli Friedmand6412c92011-06-03 01:13:19 +0000639 .addReg(DestReg)
640 .addImm(0);
641 else
642 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRi12),
643 NewDestReg)
644 .addReg(DestReg)
645 .addImm(0);
646 DestReg = NewDestReg;
647 AddOptionalDefs(MIB);
648 }
649
Eric Christopher890dbbe2010-10-02 00:32:44 +0000650 return DestReg;
Eric Christopherc9932f62010-10-01 23:24:42 +0000651}
652
Eric Christopher9ed58df2010-09-09 00:19:41 +0000653unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
654 EVT VT = TLI.getValueType(C->getType(), true);
655
656 // Only handle simple types.
657 if (!VT.isSimple()) return 0;
658
659 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
660 return ARMMaterializeFP(CFP, VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000661 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
662 return ARMMaterializeGV(GV, VT);
663 else if (isa<ConstantInt>(C))
664 return ARMMaterializeInt(C, VT);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000665
Eric Christopherc9932f62010-10-01 23:24:42 +0000666 return 0;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000667}
668
Eric Christopherf9764fa2010-09-30 20:49:44 +0000669unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
670 // Don't handle dynamic allocas.
671 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000672
Duncan Sands1440e8b2010-11-03 11:35:31 +0000673 MVT VT;
Eric Christopherec8bf972010-10-17 06:07:26 +0000674 if (!isLoadTypeLegal(AI->getType(), VT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000675
Eric Christopherf9764fa2010-09-30 20:49:44 +0000676 DenseMap<const AllocaInst*, int>::iterator SI =
677 FuncInfo.StaticAllocaMap.find(AI);
678
679 // This will get lowered later into the correct offsets and registers
680 // via rewriteXFrameIndex.
681 if (SI != FuncInfo.StaticAllocaMap.end()) {
682 TargetRegisterClass* RC = TLI.getRegClassFor(VT);
683 unsigned ResultReg = createResultReg(RC);
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000684 unsigned Opc = isThumb2 ? ARM::t2ADDri : ARM::ADDri;
Eric Christopherf9764fa2010-09-30 20:49:44 +0000685 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
686 TII.get(Opc), ResultReg)
687 .addFrameIndex(SI->second)
688 .addImm(0));
689 return ResultReg;
690 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000691
Eric Christopherf9764fa2010-09-30 20:49:44 +0000692 return 0;
693}
694
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000695bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
Duncan Sands1440e8b2010-11-03 11:35:31 +0000696 EVT evt = TLI.getValueType(Ty, true);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000697
Eric Christopherb1cc8482010-08-25 07:23:49 +0000698 // Only handle simple types.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000699 if (evt == MVT::Other || !evt.isSimple()) return false;
700 VT = evt.getSimpleVT();
Eric Christopherac1a19e2010-09-09 01:06:51 +0000701
Eric Christopherdc908042010-08-31 01:28:42 +0000702 // Handle all legal types, i.e. a register that will directly hold this
703 // value.
704 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000705}
706
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000707bool ARMFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000708 if (isTypeLegal(Ty, VT)) return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000709
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000710 // If this is a type than can be sign or zero-extended to a basic operation
711 // go ahead and accept it now.
712 if (VT == MVT::i8 || VT == MVT::i16)
713 return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000714
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000715 return false;
716}
717
Eric Christopher88de86b2010-11-19 22:36:41 +0000718// Computes the address to get to an object.
Eric Christopher0d581222010-11-19 22:30:02 +0000719bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher83007122010-08-23 21:44:12 +0000720 // Some boilerplate from the X86 FastISel.
721 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000722 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000723 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher2d630d72010-11-19 22:37:58 +0000724 // Don't walk into other basic blocks unless the object is an alloca from
725 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher76dda7e2010-11-15 21:11:06 +0000726 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
727 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
728 Opcode = I->getOpcode();
729 U = I;
730 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000731 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000732 Opcode = C->getOpcode();
733 U = C;
734 }
735
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000736 if (PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000737 if (Ty->getAddressSpace() > 255)
738 // Fast instruction selection doesn't support the special
739 // address spaces.
740 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000741
Eric Christopher83007122010-08-23 21:44:12 +0000742 switch (Opcode) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000743 default:
Eric Christopher83007122010-08-23 21:44:12 +0000744 break;
Eric Christopher55324332010-10-12 00:43:21 +0000745 case Instruction::BitCast: {
746 // Look through bitcasts.
Eric Christopher0d581222010-11-19 22:30:02 +0000747 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000748 }
749 case Instruction::IntToPtr: {
750 // Look past no-op inttoptrs.
751 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000752 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000753 break;
754 }
755 case Instruction::PtrToInt: {
756 // Look past no-op ptrtoints.
757 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000758 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000759 break;
760 }
Eric Christophereae84392010-10-14 09:29:41 +0000761 case Instruction::GetElementPtr: {
Eric Christopherb3716582010-11-19 22:39:56 +0000762 Address SavedAddr = Addr;
Eric Christopher0d581222010-11-19 22:30:02 +0000763 int TmpOffset = Addr.Offset;
Eric Christopher2896df82010-10-15 18:02:07 +0000764
Eric Christophereae84392010-10-14 09:29:41 +0000765 // Iterate through the GEP folding the constants into offsets where
766 // we can.
767 gep_type_iterator GTI = gep_type_begin(U);
768 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
769 i != e; ++i, ++GTI) {
770 const Value *Op = *i;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000771 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Eric Christophereae84392010-10-14 09:29:41 +0000772 const StructLayout *SL = TD.getStructLayout(STy);
773 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
774 TmpOffset += SL->getElementOffset(Idx);
775 } else {
Eric Christopher2896df82010-10-15 18:02:07 +0000776 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Eric Christopher7244d7c2011-03-22 19:39:17 +0000777 for (;;) {
Eric Christopher2896df82010-10-15 18:02:07 +0000778 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
779 // Constant-offset addressing.
780 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000781 break;
782 }
783 if (isa<AddOperator>(Op) &&
784 (!isa<Instruction>(Op) ||
785 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
786 == FuncInfo.MBB) &&
787 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
Eric Christopher299bbb22011-04-29 00:03:10 +0000788 // An add (in the same block) with a constant operand. Fold the
Eric Christopher7244d7c2011-03-22 19:39:17 +0000789 // constant.
Eric Christopher2896df82010-10-15 18:02:07 +0000790 ConstantInt *CI =
Eric Christopher7244d7c2011-03-22 19:39:17 +0000791 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christopher2896df82010-10-15 18:02:07 +0000792 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000793 // Iterate on the other operand.
794 Op = cast<AddOperator>(Op)->getOperand(0);
795 continue;
Eric Christopher299bbb22011-04-29 00:03:10 +0000796 }
Eric Christopher7244d7c2011-03-22 19:39:17 +0000797 // Unsupported
798 goto unsupported_gep;
799 }
Eric Christophereae84392010-10-14 09:29:41 +0000800 }
801 }
Eric Christopher2896df82010-10-15 18:02:07 +0000802
803 // Try to grab the base operand now.
Eric Christopher0d581222010-11-19 22:30:02 +0000804 Addr.Offset = TmpOffset;
805 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christopher2896df82010-10-15 18:02:07 +0000806
807 // We failed, restore everything and try the other options.
Eric Christopherb3716582010-11-19 22:39:56 +0000808 Addr = SavedAddr;
Eric Christopher2896df82010-10-15 18:02:07 +0000809
Eric Christophereae84392010-10-14 09:29:41 +0000810 unsupported_gep:
Eric Christophereae84392010-10-14 09:29:41 +0000811 break;
812 }
Eric Christopher83007122010-08-23 21:44:12 +0000813 case Instruction::Alloca: {
Eric Christopher15418772010-10-12 05:39:06 +0000814 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher827656d2010-11-20 22:38:27 +0000815 DenseMap<const AllocaInst*, int>::iterator SI =
816 FuncInfo.StaticAllocaMap.find(AI);
817 if (SI != FuncInfo.StaticAllocaMap.end()) {
818 Addr.BaseType = Address::FrameIndexBase;
819 Addr.Base.FI = SI->second;
820 return true;
821 }
822 break;
Eric Christopher83007122010-08-23 21:44:12 +0000823 }
824 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000825
Eric Christophera9c57512010-10-13 21:41:51 +0000826 // Materialize the global variable's address into a reg which can
827 // then be used later to load the variable.
Eric Christophercb0b04b2010-08-24 00:07:24 +0000828 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
Eric Christopherede42b02010-10-13 09:11:46 +0000829 unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType()));
830 if (Tmp == 0) return false;
Eric Christopher2896df82010-10-15 18:02:07 +0000831
Eric Christopher0d581222010-11-19 22:30:02 +0000832 Addr.Base.Reg = Tmp;
Eric Christopherede42b02010-10-13 09:11:46 +0000833 return true;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000834 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000835
Eric Christophercb0b04b2010-08-24 00:07:24 +0000836 // Try to get this in a register if nothing else has worked.
Eric Christopher0d581222010-11-19 22:30:02 +0000837 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
838 return Addr.Base.Reg != 0;
Eric Christophereae84392010-10-14 09:29:41 +0000839}
840
Eric Christopher0d581222010-11-19 22:30:02 +0000841void ARMFastISel::ARMSimplifyAddress(Address &Addr, EVT VT) {
Jim Grosbach6b156392010-10-27 21:39:08 +0000842
Eric Christopher212ae932010-10-21 19:40:30 +0000843 assert(VT.isSimple() && "Non-simple types are invalid here!");
Jim Grosbach6b156392010-10-27 21:39:08 +0000844
Eric Christopher212ae932010-10-21 19:40:30 +0000845 bool needsLowering = false;
846 switch (VT.getSimpleVT().SimpleTy) {
847 default:
848 assert(false && "Unhandled load/store type!");
Chad Rosier73463472011-11-09 21:30:12 +0000849 case MVT::i16:
850 if (isThumb2)
851 // Integer loads/stores handle 12-bit offsets.
852 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
853 else
854 // ARM i16 integer loads/stores handle +/-imm8 offsets.
855 if (Addr.Offset > 255 || Addr.Offset < -255)
856 needsLowering = true;
857 break;
Eric Christopher212ae932010-10-21 19:40:30 +0000858 case MVT::i1:
859 case MVT::i8:
Eric Christopher212ae932010-10-21 19:40:30 +0000860 case MVT::i32:
861 // Integer loads/stores handle 12-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000862 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000863 break;
864 case MVT::f32:
865 case MVT::f64:
866 // Floating point operands handle 8-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000867 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000868 break;
869 }
Jim Grosbach6b156392010-10-27 21:39:08 +0000870
Eric Christopher827656d2010-11-20 22:38:27 +0000871 // If this is a stack pointer and the offset needs to be simplified then
872 // put the alloca address into a register, set the base type back to
873 // register and continue. This should almost never happen.
874 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000875 TargetRegisterClass *RC = isThumb2 ? ARM::tGPRRegisterClass :
Eric Christopher827656d2010-11-20 22:38:27 +0000876 ARM::GPRRegisterClass;
877 unsigned ResultReg = createResultReg(RC);
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000878 unsigned Opc = isThumb2 ? ARM::t2ADDri : ARM::ADDri;
Eric Christopher827656d2010-11-20 22:38:27 +0000879 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
880 TII.get(Opc), ResultReg)
881 .addFrameIndex(Addr.Base.FI)
882 .addImm(0));
883 Addr.Base.Reg = ResultReg;
884 Addr.BaseType = Address::RegBase;
885 }
886
Eric Christopher212ae932010-10-21 19:40:30 +0000887 // Since the offset is too large for the load/store instruction
Eric Christopher318b6ee2010-09-02 00:53:56 +0000888 // get the reg+offset into a register.
Eric Christopher212ae932010-10-21 19:40:30 +0000889 if (needsLowering) {
Eli Friedman9ebf57a2011-04-29 21:22:56 +0000890 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
891 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopher0d581222010-11-19 22:30:02 +0000892 Addr.Offset = 0;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000893 }
Eric Christopher83007122010-08-23 21:44:12 +0000894}
895
Eric Christopher564857f2010-12-01 01:40:24 +0000896void ARMFastISel::AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000897 const MachineInstrBuilder &MIB,
898 unsigned Flags) {
Eric Christopher564857f2010-12-01 01:40:24 +0000899 // addrmode5 output depends on the selection dag addressing dividing the
900 // offset by 4 that it then later multiplies. Do this here as well.
901 if (VT.getSimpleVT().SimpleTy == MVT::f32 ||
902 VT.getSimpleVT().SimpleTy == MVT::f64)
903 Addr.Offset /= 4;
Eric Christopher299bbb22011-04-29 00:03:10 +0000904
Eric Christopher564857f2010-12-01 01:40:24 +0000905 // Frame base works a bit differently. Handle it separately.
906 if (Addr.BaseType == Address::FrameIndexBase) {
907 int FI = Addr.Base.FI;
908 int Offset = Addr.Offset;
909 MachineMemOperand *MMO =
910 FuncInfo.MF->getMachineMemOperand(
911 MachinePointerInfo::getFixedStack(FI, Offset),
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000912 Flags,
Eric Christopher564857f2010-12-01 01:40:24 +0000913 MFI.getObjectSize(FI),
914 MFI.getObjectAlignment(FI));
915 // Now add the rest of the operands.
916 MIB.addFrameIndex(FI);
917
918 // ARM halfword load/stores need an additional operand.
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000919 if (!isThumb2 && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
Eric Christopher564857f2010-12-01 01:40:24 +0000920
921 MIB.addImm(Addr.Offset);
922 MIB.addMemOperand(MMO);
923 } else {
924 // Now add the rest of the operands.
925 MIB.addReg(Addr.Base.Reg);
Eric Christopher299bbb22011-04-29 00:03:10 +0000926
Eric Christopher564857f2010-12-01 01:40:24 +0000927 // ARM halfword load/stores need an additional operand.
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000928 if (!isThumb2 && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
Eric Christopher564857f2010-12-01 01:40:24 +0000929
930 MIB.addImm(Addr.Offset);
931 }
932 AddOptionalDefs(MIB);
933}
934
Eric Christopher0d581222010-11-19 22:30:02 +0000935bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000936
Eric Christopherb1cc8482010-08-25 07:23:49 +0000937 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000938 unsigned Opc;
Eric Christopheree56ea62010-10-07 05:50:44 +0000939 TargetRegisterClass *RC;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000940 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000941 // This is mostly going to be Neon/vector support.
942 default: return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000943 case MVT::i8:
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000944 Opc = isThumb2 ? ARM::t2LDRBi12 : ARM::LDRBi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000945 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000946 break;
Chad Rosier73463472011-11-09 21:30:12 +0000947 case MVT::i16:
948 Opc = isThumb2 ? ARM::t2LDRHi12 : ARM::LDRH;
949 RC = ARM::GPRRegisterClass;
950 break;
Eric Christopherdc908042010-08-31 01:28:42 +0000951 case MVT::i32:
Chad Rosier66dc8ca2011-11-08 21:12:00 +0000952 Opc = isThumb2 ? ARM::t2LDRi12 : ARM::LDRi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000953 RC = ARM::GPRRegisterClass;
Eric Christopherdc908042010-08-31 01:28:42 +0000954 break;
Eric Christopher6dab1372010-09-18 01:59:37 +0000955 case MVT::f32:
956 Opc = ARM::VLDRS;
Eric Christopheree56ea62010-10-07 05:50:44 +0000957 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000958 break;
959 case MVT::f64:
960 Opc = ARM::VLDRD;
Eric Christopheree56ea62010-10-07 05:50:44 +0000961 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000962 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000963 }
Eric Christopher564857f2010-12-01 01:40:24 +0000964 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000965 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000966
Eric Christopher564857f2010-12-01 01:40:24 +0000967 // Create the base instruction, then add the operands.
968 ResultReg = createResultReg(RC);
969 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
970 TII.get(Opc), ResultReg);
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000971 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOLoad);
Eric Christopherdc908042010-08-31 01:28:42 +0000972 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000973}
974
Eric Christopher43b62be2010-09-27 06:02:23 +0000975bool ARMFastISel::SelectLoad(const Instruction *I) {
Eli Friedman4136d232011-09-02 22:33:24 +0000976 // Atomic loads need special handling.
977 if (cast<LoadInst>(I)->isAtomic())
978 return false;
979
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000980 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000981 MVT VT;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000982 if (!isLoadTypeLegal(I->getType(), VT))
983 return false;
984
Eric Christopher564857f2010-12-01 01:40:24 +0000985 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +0000986 Address Addr;
Eric Christopher564857f2010-12-01 01:40:24 +0000987 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000988
989 unsigned ResultReg;
Eric Christopher0d581222010-11-19 22:30:02 +0000990 if (!ARMEmitLoad(VT, ResultReg, Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000991 UpdateValueMap(I, ResultReg);
992 return true;
993}
994
Eric Christopher0d581222010-11-19 22:30:02 +0000995bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000996 unsigned StrOpc;
997 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000998 // This is mostly going to be Neon/vector support.
Eric Christopher318b6ee2010-09-02 00:53:56 +0000999 default: return false;
Eric Christopher4c914122010-11-02 23:59:09 +00001000 case MVT::i1: {
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001001 unsigned Res = createResultReg(isThumb2 ? ARM::tGPRRegisterClass :
Eric Christopher4c914122010-11-02 23:59:09 +00001002 ARM::GPRRegisterClass);
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001003 unsigned Opc = isThumb2 ? ARM::t2ANDri : ARM::ANDri;
Eric Christopher4c914122010-11-02 23:59:09 +00001004 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1005 TII.get(Opc), Res)
1006 .addReg(SrcReg).addImm(1));
1007 SrcReg = Res;
1008 } // Fallthrough here.
Eric Christopher2896df82010-10-15 18:02:07 +00001009 case MVT::i8:
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001010 StrOpc = isThumb2 ? ARM::t2STRBi12 : ARM::STRBi12;
Eric Christopher15418772010-10-12 05:39:06 +00001011 break;
1012 case MVT::i16:
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001013 StrOpc = isThumb2 ? ARM::t2STRHi12 : ARM::STRH;
Eric Christopher15418772010-10-12 05:39:06 +00001014 break;
Eric Christopher47650ec2010-10-16 01:10:35 +00001015 case MVT::i32:
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001016 StrOpc = isThumb2 ? ARM::t2STRi12 : ARM::STRi12;
Eric Christopher47650ec2010-10-16 01:10:35 +00001017 break;
Eric Christopher56d2b722010-09-02 23:43:26 +00001018 case MVT::f32:
1019 if (!Subtarget->hasVFP2()) return false;
1020 StrOpc = ARM::VSTRS;
1021 break;
1022 case MVT::f64:
1023 if (!Subtarget->hasVFP2()) return false;
1024 StrOpc = ARM::VSTRD;
1025 break;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001026 }
Eric Christopher564857f2010-12-01 01:40:24 +00001027 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +00001028 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +00001029
Eric Christopher564857f2010-12-01 01:40:24 +00001030 // Create the base instruction, then add the operands.
1031 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1032 TII.get(StrOpc))
1033 .addReg(SrcReg, getKillRegState(true));
Cameron Zwarichc152aa62011-05-28 20:34:49 +00001034 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOStore);
Eric Christopher318b6ee2010-09-02 00:53:56 +00001035 return true;
1036}
1037
Eric Christopher43b62be2010-09-27 06:02:23 +00001038bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher318b6ee2010-09-02 00:53:56 +00001039 Value *Op0 = I->getOperand(0);
1040 unsigned SrcReg = 0;
1041
Eli Friedman4136d232011-09-02 22:33:24 +00001042 // Atomic stores need special handling.
1043 if (cast<StoreInst>(I)->isAtomic())
1044 return false;
1045
Eric Christopher564857f2010-12-01 01:40:24 +00001046 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001047 MVT VT;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001048 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopher543cf052010-09-01 22:16:27 +00001049 return false;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001050
Eric Christopher1b61ef42010-09-02 01:48:11 +00001051 // Get the value to be stored into a register.
1052 SrcReg = getRegForValue(Op0);
Eric Christopher564857f2010-12-01 01:40:24 +00001053 if (SrcReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001054
Eric Christopher564857f2010-12-01 01:40:24 +00001055 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +00001056 Address Addr;
Eric Christopher0d581222010-11-19 22:30:02 +00001057 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher318b6ee2010-09-02 00:53:56 +00001058 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001059
Eric Christopher0d581222010-11-19 22:30:02 +00001060 if (!ARMEmitStore(VT, SrcReg, Addr)) return false;
Eric Christophera5b1e682010-09-17 22:28:18 +00001061 return true;
1062}
1063
1064static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1065 switch (Pred) {
1066 // Needs two compares...
1067 case CmpInst::FCMP_ONE:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001068 case CmpInst::FCMP_UEQ:
Eric Christophera5b1e682010-09-17 22:28:18 +00001069 default:
Eric Christopher4053e632010-11-02 01:24:49 +00001070 // AL is our "false" for now. The other two need more compares.
Eric Christophera5b1e682010-09-17 22:28:18 +00001071 return ARMCC::AL;
1072 case CmpInst::ICMP_EQ:
1073 case CmpInst::FCMP_OEQ:
1074 return ARMCC::EQ;
1075 case CmpInst::ICMP_SGT:
1076 case CmpInst::FCMP_OGT:
1077 return ARMCC::GT;
1078 case CmpInst::ICMP_SGE:
1079 case CmpInst::FCMP_OGE:
1080 return ARMCC::GE;
1081 case CmpInst::ICMP_UGT:
1082 case CmpInst::FCMP_UGT:
1083 return ARMCC::HI;
1084 case CmpInst::FCMP_OLT:
1085 return ARMCC::MI;
1086 case CmpInst::ICMP_ULE:
1087 case CmpInst::FCMP_OLE:
1088 return ARMCC::LS;
1089 case CmpInst::FCMP_ORD:
1090 return ARMCC::VC;
1091 case CmpInst::FCMP_UNO:
1092 return ARMCC::VS;
1093 case CmpInst::FCMP_UGE:
1094 return ARMCC::PL;
1095 case CmpInst::ICMP_SLT:
1096 case CmpInst::FCMP_ULT:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001097 return ARMCC::LT;
Eric Christophera5b1e682010-09-17 22:28:18 +00001098 case CmpInst::ICMP_SLE:
1099 case CmpInst::FCMP_ULE:
1100 return ARMCC::LE;
1101 case CmpInst::FCMP_UNE:
1102 case CmpInst::ICMP_NE:
1103 return ARMCC::NE;
1104 case CmpInst::ICMP_UGE:
1105 return ARMCC::HS;
1106 case CmpInst::ICMP_ULT:
1107 return ARMCC::LO;
1108 }
Eric Christopher543cf052010-09-01 22:16:27 +00001109}
1110
Eric Christopher43b62be2010-09-27 06:02:23 +00001111bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christophere5734102010-09-03 00:35:47 +00001112 const BranchInst *BI = cast<BranchInst>(I);
1113 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1114 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopherac1a19e2010-09-09 01:06:51 +00001115
Eric Christophere5734102010-09-03 00:35:47 +00001116 // Simple branch support.
Jim Grosbach16cb3762010-11-09 19:22:26 +00001117
Eric Christopher0e6233b2010-10-29 21:08:19 +00001118 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1119 // behavior.
Eric Christopher0e6233b2010-10-29 21:08:19 +00001120 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Chad Rosier75698f32011-10-26 23:17:28 +00001121 if (CI->hasOneUse() && (CI->getParent() == I->getParent())) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001122
1123 // Get the compare predicate.
Eric Christopher632ae892011-04-29 21:56:31 +00001124 // Try to take advantage of fallthrough opportunities.
1125 CmpInst::Predicate Predicate = CI->getPredicate();
1126 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1127 std::swap(TBB, FBB);
1128 Predicate = CmpInst::getInversePredicate(Predicate);
1129 }
1130
1131 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher0e6233b2010-10-29 21:08:19 +00001132
1133 // We may not handle every CC for now.
1134 if (ARMPred == ARMCC::AL) return false;
1135
Chad Rosier75698f32011-10-26 23:17:28 +00001136 // Emit the compare.
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001137 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
Chad Rosier75698f32011-10-26 23:17:28 +00001138 return false;
Jim Grosbach16cb3762010-11-09 19:22:26 +00001139
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001140 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001141 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1142 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
1143 FastEmitBranch(FBB, DL);
1144 FuncInfo.MBB->addSuccessor(TBB);
1145 return true;
1146 }
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001147 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1148 MVT SourceVT;
1149 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
Eli Friedman76927d732011-05-25 23:49:02 +00001150 (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001151 unsigned TstOpc = isThumb2 ? ARM::t2TSTri : ARM::TSTri;
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001152 unsigned OpReg = getRegForValue(TI->getOperand(0));
1153 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1154 TII.get(TstOpc))
1155 .addReg(OpReg).addImm(1));
1156
1157 unsigned CCMode = ARMCC::NE;
1158 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1159 std::swap(TBB, FBB);
1160 CCMode = ARMCC::EQ;
1161 }
1162
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001163 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001164 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1165 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1166
1167 FastEmitBranch(FBB, DL);
1168 FuncInfo.MBB->addSuccessor(TBB);
1169 return true;
1170 }
Chad Rosier6d64b3a2011-10-27 00:21:16 +00001171 } else if (const ConstantInt *CI =
1172 dyn_cast<ConstantInt>(BI->getCondition())) {
1173 uint64_t Imm = CI->getZExtValue();
1174 MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
1175 FastEmitBranch(Target, DL);
1176 return true;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001177 }
Jim Grosbach16cb3762010-11-09 19:22:26 +00001178
Eric Christopher0e6233b2010-10-29 21:08:19 +00001179 unsigned CmpReg = getRegForValue(BI->getCondition());
1180 if (CmpReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001181
Stuart Hastingsc5eecbc2011-04-16 03:31:26 +00001182 // We've been divorced from our compare! Our block was split, and
1183 // now our compare lives in a predecessor block. We musn't
1184 // re-compare here, as the children of the compare aren't guaranteed
1185 // live across the block boundary (we *could* check for this).
1186 // Regardless, the compare has been done in the predecessor block,
1187 // and it left a value for us in a virtual register. Ergo, we test
1188 // the one-bit value left in the virtual register.
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001189 unsigned TstOpc = isThumb2 ? ARM::t2TSTri : ARM::TSTri;
Stuart Hastingsc5eecbc2011-04-16 03:31:26 +00001190 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TstOpc))
1191 .addReg(CmpReg).addImm(1));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001192
Eric Christopher7a20a372011-04-28 16:52:09 +00001193 unsigned CCMode = ARMCC::NE;
1194 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1195 std::swap(TBB, FBB);
1196 CCMode = ARMCC::EQ;
1197 }
1198
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001199 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Eric Christophere5734102010-09-03 00:35:47 +00001200 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
Eric Christopher7a20a372011-04-28 16:52:09 +00001201 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Eric Christophere5734102010-09-03 00:35:47 +00001202 FastEmitBranch(FBB, DL);
1203 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001204 return true;
Eric Christophere5734102010-09-03 00:35:47 +00001205}
1206
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001207bool ARMFastISel::ARMEmitCmp(const Value *Src1Value, const Value *Src2Value,
1208 bool isZExt) {
Chad Rosierade62002011-10-26 23:25:44 +00001209 Type *Ty = Src1Value->getType();
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001210 EVT SrcVT = TLI.getValueType(Ty, true);
1211 if (!SrcVT.isSimple()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001212
Chad Rosierade62002011-10-26 23:25:44 +00001213 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy());
1214 if (isFloat && !Subtarget->hasVFP2())
Eric Christopherd43393a2010-09-08 23:13:45 +00001215 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001216
Chad Rosier2f2fe412011-11-09 03:22:02 +00001217 // Check to see if the 2nd operand is a constant that we can encode directly
1218 // in the compare.
1219 uint64_t Imm;
1220 int EncodedImm = 0;
1221 bool EncodeImm = false;
1222 bool isNegativeImm = false;
1223 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(Src2Value)) {
1224 if (SrcVT == MVT::i32 || SrcVT == MVT::i16 || SrcVT == MVT::i8 ||
1225 SrcVT == MVT::i1) {
1226 const APInt &CIVal = ConstInt->getValue();
1227
1228 isNegativeImm = CIVal.isNegative();
1229 Imm = (isNegativeImm) ? (-CIVal).getZExtValue() : CIVal.getZExtValue();
1230 EncodedImm = (int)Imm;
1231 EncodeImm = isThumb2 ? (ARM_AM::getT2SOImmVal(EncodedImm) != -1) :
1232 (ARM_AM::getSOImmVal(EncodedImm) != -1);
1233 }
1234 } else if (const ConstantFP *ConstFP = dyn_cast<ConstantFP>(Src2Value)) {
1235 if (SrcVT == MVT::f32 || SrcVT == MVT::f64)
1236 if (ConstFP->isZero() && !ConstFP->isNegative())
1237 EncodeImm = true;
1238 }
1239
Eric Christopherd43393a2010-09-08 23:13:45 +00001240 unsigned CmpOpc;
Chad Rosier2f2fe412011-11-09 03:22:02 +00001241 bool isICmp = true;
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001242 bool needsExt = false;
1243 switch (SrcVT.getSimpleVT().SimpleTy) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001244 default: return false;
1245 // TODO: Verify compares.
1246 case MVT::f32:
Chad Rosier2f2fe412011-11-09 03:22:02 +00001247 isICmp = false;
1248 CmpOpc = EncodeImm ? ARM::VCMPEZS : ARM::VCMPES;
Eric Christopherd43393a2010-09-08 23:13:45 +00001249 break;
1250 case MVT::f64:
Chad Rosier2f2fe412011-11-09 03:22:02 +00001251 isICmp = false;
1252 CmpOpc = EncodeImm ? ARM::VCMPEZD : ARM::VCMPED;
Eric Christopherd43393a2010-09-08 23:13:45 +00001253 break;
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001254 case MVT::i1:
1255 case MVT::i8:
1256 case MVT::i16:
1257 needsExt = true;
1258 // Intentional fall-through.
Eric Christopherd43393a2010-09-08 23:13:45 +00001259 case MVT::i32:
Chad Rosier2f2fe412011-11-09 03:22:02 +00001260 if (isThumb2) {
1261 if (!EncodeImm)
1262 CmpOpc = ARM::t2CMPrr;
1263 else
1264 CmpOpc = isNegativeImm ? ARM::t2CMNzri : ARM::t2CMPri;
1265 } else {
1266 if (!EncodeImm)
1267 CmpOpc = ARM::CMPrr;
1268 else
1269 CmpOpc = isNegativeImm ? ARM::CMNzri : ARM::CMPri;
1270 }
Eric Christopherd43393a2010-09-08 23:13:45 +00001271 break;
1272 }
1273
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001274 unsigned SrcReg1 = getRegForValue(Src1Value);
1275 if (SrcReg1 == 0) return false;
Chad Rosier530f7ce2011-10-26 22:47:55 +00001276
Chad Rosier2f2fe412011-11-09 03:22:02 +00001277 unsigned SrcReg2;
1278 if (!EncodeImm) {
1279 SrcReg2 = getRegForValue(Src2Value);
1280 if (SrcReg2 == 0) return false;
1281 }
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001282
1283 // We have i1, i8, or i16, we need to either zero extend or sign extend.
1284 if (needsExt) {
1285 unsigned ResultReg;
Chad Rosier2f2fe412011-11-09 03:22:02 +00001286 ResultReg = ARMEmitIntExt(SrcVT, SrcReg1, MVT::i32, isZExt);
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001287 if (ResultReg == 0) return false;
1288 SrcReg1 = ResultReg;
Chad Rosier2f2fe412011-11-09 03:22:02 +00001289 if (!EncodeImm) {
1290 ResultReg = ARMEmitIntExt(SrcVT, SrcReg2, MVT::i32, isZExt);
1291 if (ResultReg == 0) return false;
1292 SrcReg2 = ResultReg;
1293 }
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001294 }
Chad Rosier530f7ce2011-10-26 22:47:55 +00001295
Chad Rosier2f2fe412011-11-09 03:22:02 +00001296 if (!EncodeImm) {
1297 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1298 TII.get(CmpOpc))
1299 .addReg(SrcReg1).addReg(SrcReg2));
1300 } else {
1301 MachineInstrBuilder MIB;
1302 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1303 .addReg(SrcReg1);
1304
1305 // Only add immediate for icmp as the immediate for fcmp is an implicit 0.0.
1306 if (isICmp)
1307 MIB.addImm(EncodedImm);
1308 AddOptionalDefs(MIB);
1309 }
Chad Rosierade62002011-10-26 23:25:44 +00001310
1311 // For floating point we need to move the result to a comparison register
1312 // that we can then use for branches.
1313 if (Ty->isFloatTy() || Ty->isDoubleTy())
1314 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1315 TII.get(ARM::FMSTAT)));
Chad Rosier530f7ce2011-10-26 22:47:55 +00001316 return true;
1317}
1318
1319bool ARMFastISel::SelectCmp(const Instruction *I) {
1320 const CmpInst *CI = cast<CmpInst>(I);
Chad Rosierade62002011-10-26 23:25:44 +00001321 Type *Ty = CI->getOperand(0)->getType();
Chad Rosier530f7ce2011-10-26 22:47:55 +00001322
Eric Christopher229207a2010-09-29 01:14:47 +00001323 // Get the compare predicate.
1324 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopherdccd2c32010-10-11 08:38:55 +00001325
Eric Christopher229207a2010-09-29 01:14:47 +00001326 // We may not handle every CC for now.
1327 if (ARMPred == ARMCC::AL) return false;
1328
Chad Rosier530f7ce2011-10-26 22:47:55 +00001329 // Emit the compare.
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001330 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
Chad Rosier530f7ce2011-10-26 22:47:55 +00001331 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001332
Eric Christopher229207a2010-09-29 01:14:47 +00001333 // Now set a register based on the comparison. Explicitly set the predicates
1334 // here.
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001335 unsigned MovCCOpc = isThumb2 ? ARM::t2MOVCCi : ARM::MOVCCi;
1336 TargetRegisterClass *RC = isThumb2 ? ARM::rGPRRegisterClass
Eric Christopher5d18d922010-10-07 05:39:19 +00001337 : ARM::GPRRegisterClass;
1338 unsigned DestReg = createResultReg(RC);
Chad Rosierade62002011-10-26 23:25:44 +00001339 Constant *Zero = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher229207a2010-09-29 01:14:47 +00001340 unsigned ZeroReg = TargetMaterializeConstant(Zero);
Chad Rosierade62002011-10-26 23:25:44 +00001341 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy());
Chad Rosier530f7ce2011-10-26 22:47:55 +00001342 unsigned CondReg = isFloat ? ARM::FPSCR : ARM::CPSR;
Eric Christopher229207a2010-09-29 01:14:47 +00001343 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), DestReg)
1344 .addReg(ZeroReg).addImm(1)
1345 .addImm(ARMPred).addReg(CondReg);
1346
Eric Christophera5b1e682010-09-17 22:28:18 +00001347 UpdateValueMap(I, DestReg);
Eric Christopherd43393a2010-09-08 23:13:45 +00001348 return true;
1349}
1350
Eric Christopher43b62be2010-09-27 06:02:23 +00001351bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopher46203602010-09-09 00:26:48 +00001352 // Make sure we have VFP and that we're extending float to double.
1353 if (!Subtarget->hasVFP2()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001354
Eric Christopher46203602010-09-09 00:26:48 +00001355 Value *V = I->getOperand(0);
1356 if (!I->getType()->isDoubleTy() ||
1357 !V->getType()->isFloatTy()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001358
Eric Christopher46203602010-09-09 00:26:48 +00001359 unsigned Op = getRegForValue(V);
1360 if (Op == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001361
Eric Christopher46203602010-09-09 00:26:48 +00001362 unsigned Result = createResultReg(ARM::DPRRegisterClass);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001363 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001364 TII.get(ARM::VCVTDS), Result)
Eric Christopherce07b542010-09-09 20:26:31 +00001365 .addReg(Op));
1366 UpdateValueMap(I, Result);
1367 return true;
1368}
1369
Eric Christopher43b62be2010-09-27 06:02:23 +00001370bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopherce07b542010-09-09 20:26:31 +00001371 // Make sure we have VFP and that we're truncating double to float.
1372 if (!Subtarget->hasVFP2()) return false;
1373
1374 Value *V = I->getOperand(0);
Eric Christopher022b7fb2010-10-05 23:13:24 +00001375 if (!(I->getType()->isFloatTy() &&
1376 V->getType()->isDoubleTy())) return false;
Eric Christopherce07b542010-09-09 20:26:31 +00001377
1378 unsigned Op = getRegForValue(V);
1379 if (Op == 0) return false;
1380
1381 unsigned Result = createResultReg(ARM::SPRRegisterClass);
Eric Christopherce07b542010-09-09 20:26:31 +00001382 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001383 TII.get(ARM::VCVTSD), Result)
Eric Christopher46203602010-09-09 00:26:48 +00001384 .addReg(Op));
1385 UpdateValueMap(I, Result);
1386 return true;
1387}
1388
Eric Christopher43b62be2010-09-27 06:02:23 +00001389bool ARMFastISel::SelectSIToFP(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001390 // Make sure we have VFP.
1391 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001392
Duncan Sands1440e8b2010-11-03 11:35:31 +00001393 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001394 Type *Ty = I->getType();
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001395 if (!isTypeLegal(Ty, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001396 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001397
Chad Rosier463fe242011-11-03 02:04:59 +00001398 Value *Src = I->getOperand(0);
1399 EVT SrcVT = TLI.getValueType(Src->getType(), true);
1400 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
Eli Friedman783c6642011-05-25 19:09:45 +00001401 return false;
1402
Chad Rosier463fe242011-11-03 02:04:59 +00001403 unsigned SrcReg = getRegForValue(Src);
1404 if (SrcReg == 0) return false;
1405
1406 // Handle sign-extension.
1407 if (SrcVT == MVT::i16 || SrcVT == MVT::i8) {
1408 EVT DestVT = MVT::i32;
1409 unsigned ResultReg = ARMEmitIntExt(SrcVT, SrcReg, DestVT, /*isZExt*/ false);
1410 if (ResultReg == 0) return false;
1411 SrcReg = ResultReg;
1412 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001413
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001414 // The conversion routine works on fp-reg to fp-reg and the operand above
1415 // was an integer, move it to the fp registers if possible.
Chad Rosier463fe242011-11-03 02:04:59 +00001416 unsigned FP = ARMMoveToFPReg(MVT::f32, SrcReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001417 if (FP == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001418
Eric Christopher9a040492010-09-09 18:54:59 +00001419 unsigned Opc;
1420 if (Ty->isFloatTy()) Opc = ARM::VSITOS;
1421 else if (Ty->isDoubleTy()) Opc = ARM::VSITOD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001422 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001423
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001424 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Eric Christopher9a040492010-09-09 18:54:59 +00001425 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1426 ResultReg)
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001427 .addReg(FP));
Eric Christopherce07b542010-09-09 20:26:31 +00001428 UpdateValueMap(I, ResultReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001429 return true;
1430}
1431
Eric Christopher43b62be2010-09-27 06:02:23 +00001432bool ARMFastISel::SelectFPToSI(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001433 // Make sure we have VFP.
1434 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001435
Duncan Sands1440e8b2010-11-03 11:35:31 +00001436 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001437 Type *RetTy = I->getType();
Eric Christopher920a2082010-09-10 00:35:09 +00001438 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001439 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001440
Eric Christopher9a040492010-09-09 18:54:59 +00001441 unsigned Op = getRegForValue(I->getOperand(0));
1442 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001443
Eric Christopher9a040492010-09-09 18:54:59 +00001444 unsigned Opc;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001445 Type *OpTy = I->getOperand(0)->getType();
Eric Christopher9a040492010-09-09 18:54:59 +00001446 if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS;
1447 else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001448 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001449
Eric Christopher022b7fb2010-10-05 23:13:24 +00001450 // f64->s32 or f32->s32 both need an intermediate f32 reg.
1451 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Eric Christopher9a040492010-09-09 18:54:59 +00001452 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1453 ResultReg)
1454 .addReg(Op));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001455
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001456 // This result needs to be in an integer register, but the conversion only
1457 // takes place in fp-regs.
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001458 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001459 if (IntReg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001460
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001461 UpdateValueMap(I, IntReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001462 return true;
1463}
1464
Eric Christopher3bbd3962010-10-11 08:27:59 +00001465bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001466 MVT VT;
1467 if (!isTypeLegal(I->getType(), VT))
Eric Christopher3bbd3962010-10-11 08:27:59 +00001468 return false;
1469
1470 // Things need to be register sized for register moves.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001471 if (VT != MVT::i32) return false;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001472 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
1473
1474 unsigned CondReg = getRegForValue(I->getOperand(0));
1475 if (CondReg == 0) return false;
1476 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1477 if (Op1Reg == 0) return false;
1478 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1479 if (Op2Reg == 0) return false;
1480
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001481 unsigned CmpOpc = isThumb2 ? ARM::t2TSTri : ARM::TSTri;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001482 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1483 .addReg(CondReg).addImm(1));
1484 unsigned ResultReg = createResultReg(RC);
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001485 unsigned MovCCOpc = isThumb2 ? ARM::t2MOVCCr : ARM::MOVCCr;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001486 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), ResultReg)
1487 .addReg(Op1Reg).addReg(Op2Reg)
1488 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
1489 UpdateValueMap(I, ResultReg);
1490 return true;
1491}
1492
Eric Christopher08637852010-09-30 22:34:19 +00001493bool ARMFastISel::SelectSDiv(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001494 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001495 Type *Ty = I->getType();
Eric Christopher08637852010-09-30 22:34:19 +00001496 if (!isTypeLegal(Ty, VT))
1497 return false;
1498
1499 // If we have integer div support we should have selected this automagically.
1500 // In case we have a real miss go ahead and return false and we'll pick
1501 // it up later.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001502 if (Subtarget->hasDivide()) return false;
1503
Eric Christopher08637852010-09-30 22:34:19 +00001504 // Otherwise emit a libcall.
1505 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christopher7bdc4de2010-10-11 08:31:54 +00001506 if (VT == MVT::i8)
1507 LC = RTLIB::SDIV_I8;
1508 else if (VT == MVT::i16)
Eric Christopher08637852010-09-30 22:34:19 +00001509 LC = RTLIB::SDIV_I16;
1510 else if (VT == MVT::i32)
1511 LC = RTLIB::SDIV_I32;
1512 else if (VT == MVT::i64)
1513 LC = RTLIB::SDIV_I64;
1514 else if (VT == MVT::i128)
1515 LC = RTLIB::SDIV_I128;
1516 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopherdccd2c32010-10-11 08:38:55 +00001517
Eric Christopher08637852010-09-30 22:34:19 +00001518 return ARMEmitLibcall(I, LC);
1519}
1520
Eric Christopher6a880d62010-10-11 08:37:26 +00001521bool ARMFastISel::SelectSRem(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001522 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001523 Type *Ty = I->getType();
Eric Christopher6a880d62010-10-11 08:37:26 +00001524 if (!isTypeLegal(Ty, VT))
1525 return false;
1526
1527 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1528 if (VT == MVT::i8)
1529 LC = RTLIB::SREM_I8;
1530 else if (VT == MVT::i16)
1531 LC = RTLIB::SREM_I16;
1532 else if (VT == MVT::i32)
1533 LC = RTLIB::SREM_I32;
1534 else if (VT == MVT::i64)
1535 LC = RTLIB::SREM_I64;
1536 else if (VT == MVT::i128)
1537 LC = RTLIB::SREM_I128;
Eric Christophera1640d92010-10-11 08:40:05 +00001538 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christopher2896df82010-10-15 18:02:07 +00001539
Eric Christopher6a880d62010-10-11 08:37:26 +00001540 return ARMEmitLibcall(I, LC);
1541}
1542
Eric Christopher43b62be2010-09-27 06:02:23 +00001543bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
Eric Christopherbd6bf082010-09-09 01:02:03 +00001544 EVT VT = TLI.getValueType(I->getType(), true);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001545
Eric Christopherbc39b822010-09-09 00:53:57 +00001546 // We can get here in the case when we want to use NEON for our fp
1547 // operations, but can't figure out how to. Just use the vfp instructions
1548 // if we have them.
1549 // FIXME: It'd be nice to use NEON instructions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001550 Type *Ty = I->getType();
Eric Christopherbd6bf082010-09-09 01:02:03 +00001551 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1552 if (isFloat && !Subtarget->hasVFP2())
1553 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001554
Eric Christopherbc39b822010-09-09 00:53:57 +00001555 unsigned Op1 = getRegForValue(I->getOperand(0));
1556 if (Op1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001557
Eric Christopherbc39b822010-09-09 00:53:57 +00001558 unsigned Op2 = getRegForValue(I->getOperand(1));
1559 if (Op2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001560
Eric Christopherbc39b822010-09-09 00:53:57 +00001561 unsigned Opc;
Duncan Sandscdfad362010-11-03 12:17:33 +00001562 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopherbc39b822010-09-09 00:53:57 +00001563 switch (ISDOpcode) {
1564 default: return false;
1565 case ISD::FADD:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001566 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001567 break;
1568 case ISD::FSUB:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001569 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001570 break;
1571 case ISD::FMUL:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001572 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001573 break;
1574 }
Eric Christopherbd6bf082010-09-09 01:02:03 +00001575 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Eric Christopherbc39b822010-09-09 00:53:57 +00001576 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1577 TII.get(Opc), ResultReg)
1578 .addReg(Op1).addReg(Op2));
Eric Christopherce07b542010-09-09 20:26:31 +00001579 UpdateValueMap(I, ResultReg);
Eric Christopherbc39b822010-09-09 00:53:57 +00001580 return true;
1581}
1582
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001583// Call Handling Code
1584
Eric Christopherfa87d662010-10-18 02:17:53 +00001585bool ARMFastISel::FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src,
1586 EVT SrcVT, unsigned &ResultReg) {
1587 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
1588 Src, /*TODO: Kill=*/false);
Jim Grosbach6b156392010-10-27 21:39:08 +00001589
Eric Christopherfa87d662010-10-18 02:17:53 +00001590 if (RR != 0) {
1591 ResultReg = RR;
1592 return true;
1593 } else
Jim Grosbach6b156392010-10-27 21:39:08 +00001594 return false;
Eric Christopherfa87d662010-10-18 02:17:53 +00001595}
1596
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001597// This is largely taken directly from CCAssignFnForNode - we don't support
1598// varargs in FastISel so that part has been removed.
1599// TODO: We may not support all of this.
1600CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
1601 switch (CC) {
1602 default:
1603 llvm_unreachable("Unsupported calling convention");
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001604 case CallingConv::Fast:
Evan Cheng1f8b40d2010-10-22 18:57:05 +00001605 // Ignore fastcc. Silence compiler warnings.
1606 (void)RetFastCC_ARM_APCS;
1607 (void)FastCC_ARM_APCS;
1608 // Fallthrough
1609 case CallingConv::C:
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001610 // Use target triple & subtarget features to do actual dispatch.
1611 if (Subtarget->isAAPCS_ABI()) {
1612 if (Subtarget->hasVFP2() &&
1613 FloatABIType == FloatABI::Hard)
1614 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1615 else
1616 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1617 } else
1618 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1619 case CallingConv::ARM_AAPCS_VFP:
1620 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1621 case CallingConv::ARM_AAPCS:
1622 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1623 case CallingConv::ARM_APCS:
1624 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1625 }
1626}
1627
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001628bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1629 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001630 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001631 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1632 SmallVectorImpl<unsigned> &RegArgs,
1633 CallingConv::ID CC,
1634 unsigned &NumBytes) {
1635 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001636 CCState CCInfo(CC, false, *FuncInfo.MF, TM, ArgLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001637 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC, false));
1638
1639 // Get a count of how many bytes are to be pushed on the stack.
1640 NumBytes = CCInfo.getNextStackOffset();
1641
1642 // Issue CALLSEQ_START
Evan Chengd5b03f22011-06-28 21:14:33 +00001643 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001644 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1645 TII.get(AdjStackDown))
1646 .addImm(NumBytes));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001647
1648 // Process the args.
1649 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1650 CCValAssign &VA = ArgLocs[i];
1651 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sands1440e8b2010-11-03 11:35:31 +00001652 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001653
Eric Christopher4a2b3162011-01-27 05:44:56 +00001654 // We don't handle NEON/vector parameters yet.
1655 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
Eric Christophera4633f52010-10-23 09:37:17 +00001656 return false;
1657
Eric Christopherf9764fa2010-09-30 20:49:44 +00001658 // Handle arg promotion, etc.
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001659 switch (VA.getLocInfo()) {
1660 case CCValAssign::Full: break;
Eric Christopherfa87d662010-10-18 02:17:53 +00001661 case CCValAssign::SExt: {
Chad Rosier42536af2011-11-05 20:16:15 +00001662 EVT DestVT = VA.getLocVT();
1663 unsigned ResultReg = ARMEmitIntExt(ArgVT, Arg, DestVT,
1664 /*isZExt*/false);
1665 assert (ResultReg != 0 && "Failed to emit a sext");
1666 Arg = ResultReg;
Eric Christopherfa87d662010-10-18 02:17:53 +00001667 break;
1668 }
Chad Rosier42536af2011-11-05 20:16:15 +00001669 case CCValAssign::AExt:
1670 // Intentional fall-through. Handle AExt and ZExt.
Eric Christopherfa87d662010-10-18 02:17:53 +00001671 case CCValAssign::ZExt: {
Chad Rosier42536af2011-11-05 20:16:15 +00001672 EVT DestVT = VA.getLocVT();
1673 unsigned ResultReg = ARMEmitIntExt(ArgVT, Arg, DestVT,
1674 /*isZExt*/true);
1675 assert (ResultReg != 0 && "Failed to emit a sext");
1676 Arg = ResultReg;
Eric Christopherfa87d662010-10-18 02:17:53 +00001677 break;
1678 }
1679 case CCValAssign::BCvt: {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001680 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001681 /*TODO: Kill=*/false);
Eric Christopherfa87d662010-10-18 02:17:53 +00001682 assert(BC != 0 && "Failed to emit a bitcast!");
1683 Arg = BC;
1684 ArgVT = VA.getLocVT();
1685 break;
1686 }
1687 default: llvm_unreachable("Unknown arg promotion!");
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001688 }
1689
1690 // Now copy/store arg to correct locations.
Eric Christopherfb0b8922010-10-11 21:20:02 +00001691 if (VA.isRegLoc() && !VA.needsCustom()) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001692 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
Eric Christopherf9764fa2010-09-30 20:49:44 +00001693 VA.getLocReg())
Chad Rosier42536af2011-11-05 20:16:15 +00001694 .addReg(Arg);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001695 RegArgs.push_back(VA.getLocReg());
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001696 } else if (VA.needsCustom()) {
1697 // TODO: We need custom lowering for vector (v2f64) args.
1698 if (VA.getLocVT() != MVT::f64) return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001699
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001700 CCValAssign &NextVA = ArgLocs[++i];
1701
1702 // TODO: Only handle register args for now.
1703 if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false;
1704
1705 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1706 TII.get(ARM::VMOVRRD), VA.getLocReg())
1707 .addReg(NextVA.getLocReg(), RegState::Define)
1708 .addReg(Arg));
1709 RegArgs.push_back(VA.getLocReg());
1710 RegArgs.push_back(NextVA.getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001711 } else {
Eric Christopher5b924802010-10-21 20:09:54 +00001712 assert(VA.isMemLoc());
1713 // Need to store on the stack.
Eric Christopher0d581222010-11-19 22:30:02 +00001714 Address Addr;
1715 Addr.BaseType = Address::RegBase;
1716 Addr.Base.Reg = ARM::SP;
1717 Addr.Offset = VA.getLocMemOffset();
Eric Christopher5b924802010-10-21 20:09:54 +00001718
Eric Christopher0d581222010-11-19 22:30:02 +00001719 if (!ARMEmitStore(ArgVT, Arg, Addr)) return false;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001720 }
1721 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001722 return true;
1723}
1724
Duncan Sands1440e8b2010-11-03 11:35:31 +00001725bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001726 const Instruction *I, CallingConv::ID CC,
1727 unsigned &NumBytes) {
1728 // Issue CALLSEQ_END
Evan Chengd5b03f22011-06-28 21:14:33 +00001729 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001730 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1731 TII.get(AdjStackUp))
1732 .addImm(NumBytes).addImm(0));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001733
1734 // Now the return value.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001735 if (RetVT != MVT::isVoid) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001736 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001737 CCState CCInfo(CC, false, *FuncInfo.MF, TM, RVLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001738 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true));
1739
1740 // Copy all of the result registers out of their specified physreg.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001741 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopher14df8822010-10-01 00:00:11 +00001742 // For this move we copy into two registers and then move into the
1743 // double fp reg we want.
Eric Christopher14df8822010-10-01 00:00:11 +00001744 EVT DestVT = RVLocs[0].getValVT();
1745 TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
1746 unsigned ResultReg = createResultReg(DstRC);
1747 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1748 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopher3659ac22010-10-20 08:02:24 +00001749 .addReg(RVLocs[0].getLocReg())
1750 .addReg(RVLocs[1].getLocReg()));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001751
Eric Christopher3659ac22010-10-20 08:02:24 +00001752 UsedRegs.push_back(RVLocs[0].getLocReg());
1753 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach6b156392010-10-27 21:39:08 +00001754
Eric Christopherdccd2c32010-10-11 08:38:55 +00001755 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001756 UpdateValueMap(I, ResultReg);
1757 } else {
Jim Grosbach95369592010-10-13 23:34:31 +00001758 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Eric Christopher14df8822010-10-01 00:00:11 +00001759 EVT CopyVT = RVLocs[0].getValVT();
Chad Rosier0eff39f2011-11-08 00:03:32 +00001760
1761 // Special handling for extended integers.
1762 if (RetVT == MVT::i1 || RetVT == MVT::i8 || RetVT == MVT::i16)
1763 CopyVT = MVT::i32;
1764
Eric Christopher14df8822010-10-01 00:00:11 +00001765 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001766
Eric Christopher14df8822010-10-01 00:00:11 +00001767 unsigned ResultReg = createResultReg(DstRC);
1768 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1769 ResultReg).addReg(RVLocs[0].getLocReg());
1770 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001771
Eric Christopherdccd2c32010-10-11 08:38:55 +00001772 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001773 UpdateValueMap(I, ResultReg);
1774 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001775 }
1776
Eric Christopherdccd2c32010-10-11 08:38:55 +00001777 return true;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001778}
1779
Eric Christopher4f512ef2010-10-22 01:28:00 +00001780bool ARMFastISel::SelectRet(const Instruction *I) {
1781 const ReturnInst *Ret = cast<ReturnInst>(I);
1782 const Function &F = *I->getParent()->getParent();
Jim Grosbach6b156392010-10-27 21:39:08 +00001783
Eric Christopher4f512ef2010-10-22 01:28:00 +00001784 if (!FuncInfo.CanLowerReturn)
1785 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001786
Eric Christopher4f512ef2010-10-22 01:28:00 +00001787 if (F.isVarArg())
1788 return false;
1789
1790 CallingConv::ID CC = F.getCallingConv();
1791 if (Ret->getNumOperands() > 0) {
1792 SmallVector<ISD::OutputArg, 4> Outs;
1793 GetReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
1794 Outs, TLI);
1795
1796 // Analyze operands of the call, assigning locations to each operand.
1797 SmallVector<CCValAssign, 16> ValLocs;
Jim Grosbachb04546f2011-09-13 20:30:37 +00001798 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, TM, ValLocs,I->getContext());
Eric Christopher4f512ef2010-10-22 01:28:00 +00001799 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */));
1800
1801 const Value *RV = Ret->getOperand(0);
1802 unsigned Reg = getRegForValue(RV);
1803 if (Reg == 0)
1804 return false;
1805
1806 // Only handle a single return value for now.
1807 if (ValLocs.size() != 1)
1808 return false;
1809
1810 CCValAssign &VA = ValLocs[0];
Jim Grosbach6b156392010-10-27 21:39:08 +00001811
Eric Christopher4f512ef2010-10-22 01:28:00 +00001812 // Don't bother handling odd stuff for now.
1813 if (VA.getLocInfo() != CCValAssign::Full)
1814 return false;
1815 // Only handle register returns for now.
1816 if (!VA.isRegLoc())
1817 return false;
Chad Rosierf470cbb2011-11-04 00:50:21 +00001818
1819 unsigned SrcReg = Reg + VA.getValNo();
1820 EVT RVVT = TLI.getValueType(RV->getType());
1821 EVT DestVT = VA.getValVT();
1822 // Special handling for extended integers.
1823 if (RVVT != DestVT) {
1824 if (RVVT != MVT::i1 && RVVT != MVT::i8 && RVVT != MVT::i16)
1825 return false;
1826
1827 if (!Outs[0].Flags.isZExt() && !Outs[0].Flags.isSExt())
1828 return false;
1829
1830 assert(DestVT == MVT::i32 && "ARM should always ext to i32");
1831
1832 bool isZExt = Outs[0].Flags.isZExt();
1833 unsigned ResultReg = ARMEmitIntExt(RVVT, SrcReg, DestVT, isZExt);
1834 if (ResultReg == 0) return false;
1835 SrcReg = ResultReg;
1836 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001837
Eric Christopher4f512ef2010-10-22 01:28:00 +00001838 // Make the copy.
Eric Christopher4f512ef2010-10-22 01:28:00 +00001839 unsigned DstReg = VA.getLocReg();
1840 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
1841 // Avoid a cross-class copy. This is very unlikely.
1842 if (!SrcRC->contains(DstReg))
1843 return false;
1844 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1845 DstReg).addReg(SrcReg);
1846
1847 // Mark the register as live out of the function.
1848 MRI.addLiveOut(VA.getLocReg());
1849 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001850
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001851 unsigned RetOpc = isThumb2 ? ARM::tBX_RET : ARM::BX_RET;
Eric Christopher4f512ef2010-10-22 01:28:00 +00001852 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1853 TII.get(RetOpc)));
1854 return true;
1855}
1856
Eric Christopher872f4a22011-02-22 01:37:10 +00001857unsigned ARMFastISel::ARMSelectCallOp(const GlobalValue *GV) {
1858
Eric Christopher872f4a22011-02-22 01:37:10 +00001859 // Darwin needs the r9 versions of the opcodes.
1860 bool isDarwin = Subtarget->isTargetDarwin();
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001861 if (isThumb2) {
Eric Christopher872f4a22011-02-22 01:37:10 +00001862 return isDarwin ? ARM::tBLr9 : ARM::tBL;
1863 } else {
1864 return isDarwin ? ARM::BLr9 : ARM::BL;
1865 }
1866}
1867
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001868// A quick function that will emit a call for a named libcall in F with the
1869// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopherdccd2c32010-10-11 08:38:55 +00001870// can emit a call for any libcall we can produce. This is an abridged version
1871// of the full call infrastructure since we won't need to worry about things
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001872// like computed function pointers or strange arguments at call sites.
1873// TODO: Try to unify this and the normal call bits for ARM, then try to unify
1874// with X86.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001875bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
1876 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001877
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001878 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001879 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001880 MVT RetVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001881 if (RetTy->isVoidTy())
1882 RetVT = MVT::isVoid;
1883 else if (!isTypeLegal(RetTy, RetVT))
1884 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001885
Eric Christopher836c6242010-12-15 23:47:29 +00001886 // TODO: For now if we have long calls specified we don't handle the call.
1887 if (EnableARMLongCalls) return false;
1888
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001889 // Set up the argument vectors.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001890 SmallVector<Value*, 8> Args;
1891 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001892 SmallVector<MVT, 8> ArgVTs;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001893 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1894 Args.reserve(I->getNumOperands());
1895 ArgRegs.reserve(I->getNumOperands());
1896 ArgVTs.reserve(I->getNumOperands());
1897 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001898 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001899 Value *Op = I->getOperand(i);
1900 unsigned Arg = getRegForValue(Op);
1901 if (Arg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001902
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001903 Type *ArgTy = Op->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001904 MVT ArgVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001905 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001906
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001907 ISD::ArgFlagsTy Flags;
1908 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1909 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001910
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001911 Args.push_back(Op);
1912 ArgRegs.push_back(Arg);
1913 ArgVTs.push_back(ArgVT);
1914 ArgFlags.push_back(Flags);
1915 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001916
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001917 // Handle the arguments now that we've gotten them.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001918 SmallVector<unsigned, 4> RegArgs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001919 unsigned NumBytes;
1920 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1921 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001922
Eric Christopher6344a5f2011-04-29 00:07:20 +00001923 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001924 // TODO: Turn this into the table of arm call ops.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001925 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001926 unsigned CallOpc = ARMSelectCallOp(NULL);
Chad Rosier66dc8ca2011-11-08 21:12:00 +00001927 if(isThumb2)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001928 // Explicitly adding the predicate here.
1929 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1930 TII.get(CallOpc)))
1931 .addExternalSymbol(TLI.getLibcallName(Call));
Eric Christopher872f4a22011-02-22 01:37:10 +00001932 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001933 // Explicitly adding the predicate here.
1934 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1935 TII.get(CallOpc))
1936 .addExternalSymbol(TLI.getLibcallName(Call)));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001937
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001938 // Add implicit physical register uses to the call.
1939 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1940 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001941
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001942 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001943 SmallVector<unsigned, 4> UsedRegs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001944 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001945
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001946 // Set all unused physreg defs as dead.
1947 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001948
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001949 return true;
1950}
1951
Eric Christopherf9764fa2010-09-30 20:49:44 +00001952bool ARMFastISel::SelectCall(const Instruction *I) {
1953 const CallInst *CI = cast<CallInst>(I);
1954 const Value *Callee = CI->getCalledValue();
1955
1956 // Can't handle inline asm or worry about intrinsics yet.
1957 if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false;
1958
Eric Christopher52f6c032011-05-02 20:16:33 +00001959 // Only handle global variable Callees.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001960 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Eric Christopher52f6c032011-05-02 20:16:33 +00001961 if (!GV)
Eric Christophere6ca6772010-10-01 21:33:12 +00001962 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001963
Eric Christopherf9764fa2010-09-30 20:49:44 +00001964 // Check the calling convention.
1965 ImmutableCallSite CS(CI);
1966 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher4cf34c62010-10-18 06:49:12 +00001967
Eric Christopherf9764fa2010-09-30 20:49:44 +00001968 // TODO: Avoid some calling conventions?
Eric Christopherdccd2c32010-10-11 08:38:55 +00001969
Eric Christopherf9764fa2010-09-30 20:49:44 +00001970 // Let SDISel handle vararg functions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001971 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1972 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Eric Christopherf9764fa2010-09-30 20:49:44 +00001973 if (FTy->isVarArg())
1974 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001975
Eric Christopherf9764fa2010-09-30 20:49:44 +00001976 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001977 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001978 MVT RetVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001979 if (RetTy->isVoidTy())
1980 RetVT = MVT::isVoid;
Chad Rosier0eff39f2011-11-08 00:03:32 +00001981 else if (!isTypeLegal(RetTy, RetVT) && RetVT != MVT::i16 &&
1982 RetVT != MVT::i8 && RetVT != MVT::i1)
Eric Christopherf9764fa2010-09-30 20:49:44 +00001983 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001984
Eric Christopher836c6242010-12-15 23:47:29 +00001985 // TODO: For now if we have long calls specified we don't handle the call.
1986 if (EnableARMLongCalls) return false;
Eric Christopher299bbb22011-04-29 00:03:10 +00001987
Eric Christopherf9764fa2010-09-30 20:49:44 +00001988 // Set up the argument vectors.
1989 SmallVector<Value*, 8> Args;
1990 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001991 SmallVector<MVT, 8> ArgVTs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001992 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1993 Args.reserve(CS.arg_size());
1994 ArgRegs.reserve(CS.arg_size());
1995 ArgVTs.reserve(CS.arg_size());
1996 ArgFlags.reserve(CS.arg_size());
1997 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1998 i != e; ++i) {
1999 unsigned Arg = getRegForValue(*i);
Eric Christopherdccd2c32010-10-11 08:38:55 +00002000
Eric Christopherf9764fa2010-09-30 20:49:44 +00002001 if (Arg == 0)
2002 return false;
2003 ISD::ArgFlagsTy Flags;
2004 unsigned AttrInd = i - CS.arg_begin() + 1;
2005 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
2006 Flags.setSExt();
2007 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
2008 Flags.setZExt();
2009
Chad Rosier8e4a2e42011-11-04 00:58:10 +00002010 // FIXME: Only handle *easy* calls for now.
Eric Christopherf9764fa2010-09-30 20:49:44 +00002011 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
2012 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
2013 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
2014 CS.paramHasAttr(AttrInd, Attribute::ByVal))
2015 return false;
2016
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002017 Type *ArgTy = (*i)->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00002018 MVT ArgVT;
Chad Rosier42536af2011-11-05 20:16:15 +00002019 if (!isTypeLegal(ArgTy, ArgVT) && ArgVT != MVT::i16 && ArgVT != MVT::i8 &&
2020 ArgVT != MVT::i1)
Eric Christopherf9764fa2010-09-30 20:49:44 +00002021 return false;
2022 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
2023 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00002024
Eric Christopherf9764fa2010-09-30 20:49:44 +00002025 Args.push_back(*i);
2026 ArgRegs.push_back(Arg);
2027 ArgVTs.push_back(ArgVT);
2028 ArgFlags.push_back(Flags);
2029 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00002030
Eric Christopherf9764fa2010-09-30 20:49:44 +00002031 // Handle the arguments now that we've gotten them.
2032 SmallVector<unsigned, 4> RegArgs;
2033 unsigned NumBytes;
2034 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
2035 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00002036
Eric Christopher6344a5f2011-04-29 00:07:20 +00002037 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00002038 // TODO: Turn this into the table of arm call ops.
Eric Christopherf9764fa2010-09-30 20:49:44 +00002039 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00002040 unsigned CallOpc = ARMSelectCallOp(GV);
Eric Christopher7bb59962010-11-29 21:56:23 +00002041 // Explicitly adding the predicate here.
Chad Rosier66dc8ca2011-11-08 21:12:00 +00002042 if(isThumb2)
Eric Christopherc19aadb2010-12-21 03:50:43 +00002043 // Explicitly adding the predicate here.
2044 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
2045 TII.get(CallOpc)))
2046 .addGlobalAddress(GV, 0, 0);
Eric Christopher872f4a22011-02-22 01:37:10 +00002047 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00002048 // Explicitly adding the predicate here.
2049 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
2050 TII.get(CallOpc))
2051 .addGlobalAddress(GV, 0, 0));
Eric Christopher299bbb22011-04-29 00:03:10 +00002052
Eric Christopherf9764fa2010-09-30 20:49:44 +00002053 // Add implicit physical register uses to the call.
2054 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
2055 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00002056
Eric Christopherf9764fa2010-09-30 20:49:44 +00002057 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00002058 SmallVector<unsigned, 4> UsedRegs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00002059 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00002060
Eric Christopherf9764fa2010-09-30 20:49:44 +00002061 // Set all unused physreg defs as dead.
2062 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00002063
Eric Christopherf9764fa2010-09-30 20:49:44 +00002064 return true;
Eric Christopherf9764fa2010-09-30 20:49:44 +00002065}
2066
Chad Rosier0d7b2312011-11-02 00:18:48 +00002067bool ARMFastISel::SelectTrunc(const Instruction *I) {
2068 // The high bits for a type smaller than the register size are assumed to be
2069 // undefined.
2070 Value *Op = I->getOperand(0);
2071
2072 EVT SrcVT, DestVT;
2073 SrcVT = TLI.getValueType(Op->getType(), true);
2074 DestVT = TLI.getValueType(I->getType(), true);
2075
2076 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
2077 return false;
2078 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
2079 return false;
2080
2081 unsigned SrcReg = getRegForValue(Op);
2082 if (!SrcReg) return false;
2083
2084 // Because the high bits are undefined, a truncate doesn't generate
2085 // any code.
2086 UpdateValueMap(I, SrcReg);
2087 return true;
2088}
2089
Chad Rosier87633022011-11-02 17:20:24 +00002090unsigned ARMFastISel::ARMEmitIntExt(EVT SrcVT, unsigned SrcReg, EVT DestVT,
2091 bool isZExt) {
Eli Friedman76927d732011-05-25 23:49:02 +00002092 if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8)
Chad Rosier87633022011-11-02 17:20:24 +00002093 return 0;
Eli Friedman76927d732011-05-25 23:49:02 +00002094
2095 unsigned Opc;
Eli Friedman76927d732011-05-25 23:49:02 +00002096 bool isBoolZext = false;
Chad Rosier87633022011-11-02 17:20:24 +00002097 if (!SrcVT.isSimple()) return 0;
Eli Friedman76927d732011-05-25 23:49:02 +00002098 switch (SrcVT.getSimpleVT().SimpleTy) {
Chad Rosier87633022011-11-02 17:20:24 +00002099 default: return 0;
Eli Friedman76927d732011-05-25 23:49:02 +00002100 case MVT::i16:
Chad Rosier87633022011-11-02 17:20:24 +00002101 if (!Subtarget->hasV6Ops()) return 0;
2102 if (isZExt)
Chad Rosier66dc8ca2011-11-08 21:12:00 +00002103 Opc = isThumb2 ? ARM::t2UXTH : ARM::UXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002104 else
Chad Rosier66dc8ca2011-11-08 21:12:00 +00002105 Opc = isThumb2 ? ARM::t2SXTH : ARM::SXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002106 break;
2107 case MVT::i8:
Chad Rosier87633022011-11-02 17:20:24 +00002108 if (!Subtarget->hasV6Ops()) return 0;
2109 if (isZExt)
Chad Rosier66dc8ca2011-11-08 21:12:00 +00002110 Opc = isThumb2 ? ARM::t2UXTB : ARM::UXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002111 else
Chad Rosier66dc8ca2011-11-08 21:12:00 +00002112 Opc = isThumb2 ? ARM::t2SXTB : ARM::SXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002113 break;
2114 case MVT::i1:
Chad Rosier87633022011-11-02 17:20:24 +00002115 if (isZExt) {
Chad Rosier66dc8ca2011-11-08 21:12:00 +00002116 Opc = isThumb2 ? ARM::t2ANDri : ARM::ANDri;
Eli Friedman76927d732011-05-25 23:49:02 +00002117 isBoolZext = true;
2118 break;
2119 }
Chad Rosier87633022011-11-02 17:20:24 +00002120 return 0;
Eli Friedman76927d732011-05-25 23:49:02 +00002121 }
2122
Chad Rosier87633022011-11-02 17:20:24 +00002123 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::i32));
Eli Friedman76927d732011-05-25 23:49:02 +00002124 MachineInstrBuilder MIB;
Chad Rosier87633022011-11-02 17:20:24 +00002125 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), ResultReg)
Eli Friedman76927d732011-05-25 23:49:02 +00002126 .addReg(SrcReg);
2127 if (isBoolZext)
2128 MIB.addImm(1);
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002129 else
2130 MIB.addImm(0);
Eli Friedman76927d732011-05-25 23:49:02 +00002131 AddOptionalDefs(MIB);
Chad Rosier87633022011-11-02 17:20:24 +00002132 return ResultReg;
2133}
2134
2135bool ARMFastISel::SelectIntExt(const Instruction *I) {
2136 // On ARM, in general, integer casts don't involve legal types; this code
2137 // handles promotable integers.
2138 // FIXME: We could save an instruction in many cases by special-casing
2139 // load instructions.
2140 Type *DestTy = I->getType();
2141 Value *Src = I->getOperand(0);
2142 Type *SrcTy = Src->getType();
2143
2144 EVT SrcVT, DestVT;
2145 SrcVT = TLI.getValueType(SrcTy, true);
2146 DestVT = TLI.getValueType(DestTy, true);
2147
2148 bool isZExt = isa<ZExtInst>(I);
2149 unsigned SrcReg = getRegForValue(Src);
2150 if (!SrcReg) return false;
2151
2152 unsigned ResultReg = ARMEmitIntExt(SrcVT, SrcReg, DestVT, isZExt);
2153 if (ResultReg == 0) return false;
2154 UpdateValueMap(I, ResultReg);
Eli Friedman76927d732011-05-25 23:49:02 +00002155 return true;
2156}
2157
Eric Christopher56d2b722010-09-02 23:43:26 +00002158// TODO: SoftFP support.
Eric Christopherab695882010-07-21 22:26:11 +00002159bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopherac1a19e2010-09-09 01:06:51 +00002160
Eric Christopherab695882010-07-21 22:26:11 +00002161 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +00002162 case Instruction::Load:
Eric Christopher43b62be2010-09-27 06:02:23 +00002163 return SelectLoad(I);
Eric Christopher543cf052010-09-01 22:16:27 +00002164 case Instruction::Store:
Eric Christopher43b62be2010-09-27 06:02:23 +00002165 return SelectStore(I);
Eric Christophere5734102010-09-03 00:35:47 +00002166 case Instruction::Br:
Eric Christopher43b62be2010-09-27 06:02:23 +00002167 return SelectBranch(I);
Eric Christopherd43393a2010-09-08 23:13:45 +00002168 case Instruction::ICmp:
2169 case Instruction::FCmp:
Eric Christopher43b62be2010-09-27 06:02:23 +00002170 return SelectCmp(I);
Eric Christopher46203602010-09-09 00:26:48 +00002171 case Instruction::FPExt:
Eric Christopher43b62be2010-09-27 06:02:23 +00002172 return SelectFPExt(I);
Eric Christopherce07b542010-09-09 20:26:31 +00002173 case Instruction::FPTrunc:
Eric Christopher43b62be2010-09-27 06:02:23 +00002174 return SelectFPTrunc(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002175 case Instruction::SIToFP:
Eric Christopher43b62be2010-09-27 06:02:23 +00002176 return SelectSIToFP(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002177 case Instruction::FPToSI:
Eric Christopher43b62be2010-09-27 06:02:23 +00002178 return SelectFPToSI(I);
Eric Christopherbc39b822010-09-09 00:53:57 +00002179 case Instruction::FAdd:
Eric Christopher43b62be2010-09-27 06:02:23 +00002180 return SelectBinaryOp(I, ISD::FADD);
Eric Christopherbc39b822010-09-09 00:53:57 +00002181 case Instruction::FSub:
Eric Christopher43b62be2010-09-27 06:02:23 +00002182 return SelectBinaryOp(I, ISD::FSUB);
Eric Christopherbc39b822010-09-09 00:53:57 +00002183 case Instruction::FMul:
Eric Christopher43b62be2010-09-27 06:02:23 +00002184 return SelectBinaryOp(I, ISD::FMUL);
Eric Christopherbb3e5da2010-09-14 23:03:37 +00002185 case Instruction::SDiv:
Eric Christopher43b62be2010-09-27 06:02:23 +00002186 return SelectSDiv(I);
Eric Christopher6a880d62010-10-11 08:37:26 +00002187 case Instruction::SRem:
2188 return SelectSRem(I);
Eric Christopherf9764fa2010-09-30 20:49:44 +00002189 case Instruction::Call:
2190 return SelectCall(I);
Eric Christopher3bbd3962010-10-11 08:27:59 +00002191 case Instruction::Select:
2192 return SelectSelect(I);
Eric Christopher4f512ef2010-10-22 01:28:00 +00002193 case Instruction::Ret:
2194 return SelectRet(I);
Eli Friedman76927d732011-05-25 23:49:02 +00002195 case Instruction::Trunc:
Chad Rosier0d7b2312011-11-02 00:18:48 +00002196 return SelectTrunc(I);
Eli Friedman76927d732011-05-25 23:49:02 +00002197 case Instruction::ZExt:
2198 case Instruction::SExt:
Chad Rosier0d7b2312011-11-02 00:18:48 +00002199 return SelectIntExt(I);
Eric Christopherab695882010-07-21 22:26:11 +00002200 default: break;
2201 }
2202 return false;
2203}
2204
2205namespace llvm {
2206 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopherfeadddd2010-10-11 20:05:22 +00002207 // Completely untested on non-darwin.
2208 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002209
Eric Christopheraaa8df42010-11-02 01:21:28 +00002210 // Darwin and thumb1 only for now.
Eric Christopherfeadddd2010-10-11 20:05:22 +00002211 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002212 if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() &&
Eric Christopheraaa8df42010-11-02 01:21:28 +00002213 !DisableARMFastISel)
Eric Christopherfeadddd2010-10-11 20:05:22 +00002214 return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +00002215 return 0;
Eric Christopherab695882010-07-21 22:26:11 +00002216 }
2217}