blob: ab5caa3d5eb13e88d41a169b8d7299f76f050226 [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.
Eric Christophereaa204b2010-09-02 01:39:14 +000093 bool isThumb;
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>();
Eric Christophereaa204b2010-09-02 01:39:14 +0000104 isThumb = 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
Eric Christopher744c7c82010-09-28 22:47:54 +0000548 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000549 if (VT != MVT::i32) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000550
Eric Christophere5b13cf2010-11-03 20:21:17 +0000551 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
552
553 // If we can do this in a single instruction without a constant pool entry
554 // do so now.
555 const ConstantInt *CI = cast<ConstantInt>(C);
Eric Christopher5e262bc2010-11-06 07:53:11 +0000556 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getSExtValue())) {
Eric Christophere5b13cf2010-11-03 20:21:17 +0000557 unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16;
558 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Jim Grosbach3ea4daa2010-11-19 18:01:37 +0000559 TII.get(Opc), DestReg)
560 .addImm(CI->getSExtValue()));
Eric Christophere5b13cf2010-11-03 20:21:17 +0000561 return DestReg;
562 }
563
Eric Christopher56d2b722010-09-02 23:43:26 +0000564 // MachineConstantPool wants an explicit alignment.
565 unsigned Align = TD.getPrefTypeAlignment(C->getType());
566 if (Align == 0) {
567 // TODO: Figure out if this is correct.
568 Align = TD.getTypeAllocSize(C->getType());
569 }
570 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000571
Eric Christopher56d2b722010-09-02 23:43:26 +0000572 if (isThumb)
573 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000574 TII.get(ARM::t2LDRpci), DestReg)
575 .addConstantPoolIndex(Idx));
Eric Christopher56d2b722010-09-02 23:43:26 +0000576 else
Eric Christopherd0c82a62010-11-12 09:48:30 +0000577 // The extra immediate is for addrmode2.
Eric Christopher56d2b722010-09-02 23:43:26 +0000578 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000579 TII.get(ARM::LDRcp), DestReg)
580 .addConstantPoolIndex(Idx)
Jim Grosbach3e556122010-10-26 22:37:02 +0000581 .addImm(0));
Eric Christopherac1a19e2010-09-09 01:06:51 +0000582
Eric Christopher56d2b722010-09-02 23:43:26 +0000583 return DestReg;
Eric Christopher1b61ef42010-09-02 01:48:11 +0000584}
585
Eric Christopherc9932f62010-10-01 23:24:42 +0000586unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, EVT VT) {
Eric Christopher890dbbe2010-10-02 00:32:44 +0000587 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000588 if (VT != MVT::i32) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000589
Eric Christopher890dbbe2010-10-02 00:32:44 +0000590 Reloc::Model RelocM = TM.getRelocationModel();
Eric Christopherdccd2c32010-10-11 08:38:55 +0000591
Eric Christopher890dbbe2010-10-02 00:32:44 +0000592 // TODO: Need more magic for ARM PIC.
593 if (!isThumb && (RelocM == Reloc::PIC_)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000594
Eric Christopher890dbbe2010-10-02 00:32:44 +0000595 // MachineConstantPool wants an explicit alignment.
596 unsigned Align = TD.getPrefTypeAlignment(GV->getType());
597 if (Align == 0) {
598 // TODO: Figure out if this is correct.
599 Align = TD.getTypeAllocSize(GV->getType());
600 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000601
Eric Christopher890dbbe2010-10-02 00:32:44 +0000602 // Grab index.
603 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000604 unsigned Id = AFI->createPICLabelUId();
Bill Wendling5bb77992011-10-01 08:00:54 +0000605 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id,
606 ARMCP::CPValue,
607 PCAdj);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000608 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000609
Eric Christopher890dbbe2010-10-02 00:32:44 +0000610 // Load value.
611 MachineInstrBuilder MIB;
612 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
613 if (isThumb) {
614 unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
615 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
616 .addConstantPoolIndex(Idx);
617 if (RelocM == Reloc::PIC_)
618 MIB.addImm(Id);
619 } else {
Eric Christopherd0c82a62010-11-12 09:48:30 +0000620 // The extra immediate is for addrmode2.
Eric Christopher890dbbe2010-10-02 00:32:44 +0000621 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRcp),
622 DestReg)
623 .addConstantPoolIndex(Idx)
Eric Christopherd0c82a62010-11-12 09:48:30 +0000624 .addImm(0);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000625 }
626 AddOptionalDefs(MIB);
Eli Friedmand6412c92011-06-03 01:13:19 +0000627
628 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) {
629 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
630 if (isThumb)
Jim Grosbachb04546f2011-09-13 20:30:37 +0000631 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
632 TII.get(ARM::t2LDRi12), NewDestReg)
Eli Friedmand6412c92011-06-03 01:13:19 +0000633 .addReg(DestReg)
634 .addImm(0);
635 else
636 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRi12),
637 NewDestReg)
638 .addReg(DestReg)
639 .addImm(0);
640 DestReg = NewDestReg;
641 AddOptionalDefs(MIB);
642 }
643
Eric Christopher890dbbe2010-10-02 00:32:44 +0000644 return DestReg;
Eric Christopherc9932f62010-10-01 23:24:42 +0000645}
646
Eric Christopher9ed58df2010-09-09 00:19:41 +0000647unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
648 EVT VT = TLI.getValueType(C->getType(), true);
649
650 // Only handle simple types.
651 if (!VT.isSimple()) return 0;
652
653 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
654 return ARMMaterializeFP(CFP, VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000655 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
656 return ARMMaterializeGV(GV, VT);
657 else if (isa<ConstantInt>(C))
658 return ARMMaterializeInt(C, VT);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000659
Eric Christopherc9932f62010-10-01 23:24:42 +0000660 return 0;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000661}
662
Eric Christopherf9764fa2010-09-30 20:49:44 +0000663unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
664 // Don't handle dynamic allocas.
665 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000666
Duncan Sands1440e8b2010-11-03 11:35:31 +0000667 MVT VT;
Eric Christopherec8bf972010-10-17 06:07:26 +0000668 if (!isLoadTypeLegal(AI->getType(), VT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000669
Eric Christopherf9764fa2010-09-30 20:49:44 +0000670 DenseMap<const AllocaInst*, int>::iterator SI =
671 FuncInfo.StaticAllocaMap.find(AI);
672
673 // This will get lowered later into the correct offsets and registers
674 // via rewriteXFrameIndex.
675 if (SI != FuncInfo.StaticAllocaMap.end()) {
676 TargetRegisterClass* RC = TLI.getRegClassFor(VT);
677 unsigned ResultReg = createResultReg(RC);
678 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
679 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
680 TII.get(Opc), ResultReg)
681 .addFrameIndex(SI->second)
682 .addImm(0));
683 return ResultReg;
684 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000685
Eric Christopherf9764fa2010-09-30 20:49:44 +0000686 return 0;
687}
688
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000689bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
Duncan Sands1440e8b2010-11-03 11:35:31 +0000690 EVT evt = TLI.getValueType(Ty, true);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000691
Eric Christopherb1cc8482010-08-25 07:23:49 +0000692 // Only handle simple types.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000693 if (evt == MVT::Other || !evt.isSimple()) return false;
694 VT = evt.getSimpleVT();
Eric Christopherac1a19e2010-09-09 01:06:51 +0000695
Eric Christopherdc908042010-08-31 01:28:42 +0000696 // Handle all legal types, i.e. a register that will directly hold this
697 // value.
698 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000699}
700
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000701bool ARMFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000702 if (isTypeLegal(Ty, VT)) return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000703
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000704 // If this is a type than can be sign or zero-extended to a basic operation
705 // go ahead and accept it now.
706 if (VT == MVT::i8 || VT == MVT::i16)
707 return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000708
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000709 return false;
710}
711
Eric Christopher88de86b2010-11-19 22:36:41 +0000712// Computes the address to get to an object.
Eric Christopher0d581222010-11-19 22:30:02 +0000713bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher83007122010-08-23 21:44:12 +0000714 // Some boilerplate from the X86 FastISel.
715 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000716 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000717 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher2d630d72010-11-19 22:37:58 +0000718 // Don't walk into other basic blocks unless the object is an alloca from
719 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher76dda7e2010-11-15 21:11:06 +0000720 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
721 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
722 Opcode = I->getOpcode();
723 U = I;
724 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000725 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000726 Opcode = C->getOpcode();
727 U = C;
728 }
729
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000730 if (PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000731 if (Ty->getAddressSpace() > 255)
732 // Fast instruction selection doesn't support the special
733 // address spaces.
734 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000735
Eric Christopher83007122010-08-23 21:44:12 +0000736 switch (Opcode) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000737 default:
Eric Christopher83007122010-08-23 21:44:12 +0000738 break;
Eric Christopher55324332010-10-12 00:43:21 +0000739 case Instruction::BitCast: {
740 // Look through bitcasts.
Eric Christopher0d581222010-11-19 22:30:02 +0000741 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000742 }
743 case Instruction::IntToPtr: {
744 // Look past no-op inttoptrs.
745 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000746 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000747 break;
748 }
749 case Instruction::PtrToInt: {
750 // Look past no-op ptrtoints.
751 if (TLI.getValueType(U->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 }
Eric Christophereae84392010-10-14 09:29:41 +0000755 case Instruction::GetElementPtr: {
Eric Christopherb3716582010-11-19 22:39:56 +0000756 Address SavedAddr = Addr;
Eric Christopher0d581222010-11-19 22:30:02 +0000757 int TmpOffset = Addr.Offset;
Eric Christopher2896df82010-10-15 18:02:07 +0000758
Eric Christophereae84392010-10-14 09:29:41 +0000759 // Iterate through the GEP folding the constants into offsets where
760 // we can.
761 gep_type_iterator GTI = gep_type_begin(U);
762 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
763 i != e; ++i, ++GTI) {
764 const Value *Op = *i;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000765 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Eric Christophereae84392010-10-14 09:29:41 +0000766 const StructLayout *SL = TD.getStructLayout(STy);
767 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
768 TmpOffset += SL->getElementOffset(Idx);
769 } else {
Eric Christopher2896df82010-10-15 18:02:07 +0000770 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Eric Christopher7244d7c2011-03-22 19:39:17 +0000771 for (;;) {
Eric Christopher2896df82010-10-15 18:02:07 +0000772 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
773 // Constant-offset addressing.
774 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000775 break;
776 }
777 if (isa<AddOperator>(Op) &&
778 (!isa<Instruction>(Op) ||
779 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
780 == FuncInfo.MBB) &&
781 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
Eric Christopher299bbb22011-04-29 00:03:10 +0000782 // An add (in the same block) with a constant operand. Fold the
Eric Christopher7244d7c2011-03-22 19:39:17 +0000783 // constant.
Eric Christopher2896df82010-10-15 18:02:07 +0000784 ConstantInt *CI =
Eric Christopher7244d7c2011-03-22 19:39:17 +0000785 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christopher2896df82010-10-15 18:02:07 +0000786 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000787 // Iterate on the other operand.
788 Op = cast<AddOperator>(Op)->getOperand(0);
789 continue;
Eric Christopher299bbb22011-04-29 00:03:10 +0000790 }
Eric Christopher7244d7c2011-03-22 19:39:17 +0000791 // Unsupported
792 goto unsupported_gep;
793 }
Eric Christophereae84392010-10-14 09:29:41 +0000794 }
795 }
Eric Christopher2896df82010-10-15 18:02:07 +0000796
797 // Try to grab the base operand now.
Eric Christopher0d581222010-11-19 22:30:02 +0000798 Addr.Offset = TmpOffset;
799 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christopher2896df82010-10-15 18:02:07 +0000800
801 // We failed, restore everything and try the other options.
Eric Christopherb3716582010-11-19 22:39:56 +0000802 Addr = SavedAddr;
Eric Christopher2896df82010-10-15 18:02:07 +0000803
Eric Christophereae84392010-10-14 09:29:41 +0000804 unsupported_gep:
Eric Christophereae84392010-10-14 09:29:41 +0000805 break;
806 }
Eric Christopher83007122010-08-23 21:44:12 +0000807 case Instruction::Alloca: {
Eric Christopher15418772010-10-12 05:39:06 +0000808 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher827656d2010-11-20 22:38:27 +0000809 DenseMap<const AllocaInst*, int>::iterator SI =
810 FuncInfo.StaticAllocaMap.find(AI);
811 if (SI != FuncInfo.StaticAllocaMap.end()) {
812 Addr.BaseType = Address::FrameIndexBase;
813 Addr.Base.FI = SI->second;
814 return true;
815 }
816 break;
Eric Christopher83007122010-08-23 21:44:12 +0000817 }
818 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000819
Eric Christophera9c57512010-10-13 21:41:51 +0000820 // Materialize the global variable's address into a reg which can
821 // then be used later to load the variable.
Eric Christophercb0b04b2010-08-24 00:07:24 +0000822 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
Eric Christopherede42b02010-10-13 09:11:46 +0000823 unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType()));
824 if (Tmp == 0) return false;
Eric Christopher2896df82010-10-15 18:02:07 +0000825
Eric Christopher0d581222010-11-19 22:30:02 +0000826 Addr.Base.Reg = Tmp;
Eric Christopherede42b02010-10-13 09:11:46 +0000827 return true;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000828 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000829
Eric Christophercb0b04b2010-08-24 00:07:24 +0000830 // Try to get this in a register if nothing else has worked.
Eric Christopher0d581222010-11-19 22:30:02 +0000831 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
832 return Addr.Base.Reg != 0;
Eric Christophereae84392010-10-14 09:29:41 +0000833}
834
Eric Christopher0d581222010-11-19 22:30:02 +0000835void ARMFastISel::ARMSimplifyAddress(Address &Addr, EVT VT) {
Jim Grosbach6b156392010-10-27 21:39:08 +0000836
Eric Christopher212ae932010-10-21 19:40:30 +0000837 assert(VT.isSimple() && "Non-simple types are invalid here!");
Jim Grosbach6b156392010-10-27 21:39:08 +0000838
Eric Christopher212ae932010-10-21 19:40:30 +0000839 bool needsLowering = false;
840 switch (VT.getSimpleVT().SimpleTy) {
841 default:
842 assert(false && "Unhandled load/store type!");
843 case MVT::i1:
844 case MVT::i8:
845 case MVT::i16:
846 case MVT::i32:
847 // Integer loads/stores handle 12-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000848 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000849 break;
850 case MVT::f32:
851 case MVT::f64:
852 // Floating point operands handle 8-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000853 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000854 break;
855 }
Jim Grosbach6b156392010-10-27 21:39:08 +0000856
Eric Christopher827656d2010-11-20 22:38:27 +0000857 // If this is a stack pointer and the offset needs to be simplified then
858 // put the alloca address into a register, set the base type back to
859 // register and continue. This should almost never happen.
860 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
861 TargetRegisterClass *RC = isThumb ? ARM::tGPRRegisterClass :
862 ARM::GPRRegisterClass;
863 unsigned ResultReg = createResultReg(RC);
864 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
865 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
866 TII.get(Opc), ResultReg)
867 .addFrameIndex(Addr.Base.FI)
868 .addImm(0));
869 Addr.Base.Reg = ResultReg;
870 Addr.BaseType = Address::RegBase;
871 }
872
Eric Christopher212ae932010-10-21 19:40:30 +0000873 // Since the offset is too large for the load/store instruction
Eric Christopher318b6ee2010-09-02 00:53:56 +0000874 // get the reg+offset into a register.
Eric Christopher212ae932010-10-21 19:40:30 +0000875 if (needsLowering) {
Eli Friedman9ebf57a2011-04-29 21:22:56 +0000876 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
877 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopher0d581222010-11-19 22:30:02 +0000878 Addr.Offset = 0;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000879 }
Eric Christopher83007122010-08-23 21:44:12 +0000880}
881
Eric Christopher564857f2010-12-01 01:40:24 +0000882void ARMFastISel::AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000883 const MachineInstrBuilder &MIB,
884 unsigned Flags) {
Eric Christopher564857f2010-12-01 01:40:24 +0000885 // addrmode5 output depends on the selection dag addressing dividing the
886 // offset by 4 that it then later multiplies. Do this here as well.
887 if (VT.getSimpleVT().SimpleTy == MVT::f32 ||
888 VT.getSimpleVT().SimpleTy == MVT::f64)
889 Addr.Offset /= 4;
Eric Christopher299bbb22011-04-29 00:03:10 +0000890
Eric Christopher564857f2010-12-01 01:40:24 +0000891 // Frame base works a bit differently. Handle it separately.
892 if (Addr.BaseType == Address::FrameIndexBase) {
893 int FI = Addr.Base.FI;
894 int Offset = Addr.Offset;
895 MachineMemOperand *MMO =
896 FuncInfo.MF->getMachineMemOperand(
897 MachinePointerInfo::getFixedStack(FI, Offset),
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000898 Flags,
Eric Christopher564857f2010-12-01 01:40:24 +0000899 MFI.getObjectSize(FI),
900 MFI.getObjectAlignment(FI));
901 // Now add the rest of the operands.
902 MIB.addFrameIndex(FI);
903
904 // ARM halfword load/stores need an additional operand.
905 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
906
907 MIB.addImm(Addr.Offset);
908 MIB.addMemOperand(MMO);
909 } else {
910 // Now add the rest of the operands.
911 MIB.addReg(Addr.Base.Reg);
Eric Christopher299bbb22011-04-29 00:03:10 +0000912
Eric Christopher564857f2010-12-01 01:40:24 +0000913 // ARM halfword load/stores need an additional operand.
914 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
915
916 MIB.addImm(Addr.Offset);
917 }
918 AddOptionalDefs(MIB);
919}
920
Eric Christopher0d581222010-11-19 22:30:02 +0000921bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000922
Eric Christopherb1cc8482010-08-25 07:23:49 +0000923 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000924 unsigned Opc;
Eric Christopheree56ea62010-10-07 05:50:44 +0000925 TargetRegisterClass *RC;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000926 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000927 // This is mostly going to be Neon/vector support.
928 default: return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000929 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000930 Opc = isThumb ? ARM::t2LDRHi12 : ARM::LDRH;
Eric Christopher7a56f332010-10-08 01:13:17 +0000931 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000932 break;
933 case MVT::i8:
Jim Grosbachc1d30212010-10-27 00:19:44 +0000934 Opc = isThumb ? ARM::t2LDRBi12 : ARM::LDRBi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000935 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000936 break;
Eric Christopherdc908042010-08-31 01:28:42 +0000937 case MVT::i32:
Jim Grosbach3e556122010-10-26 22:37:02 +0000938 Opc = isThumb ? ARM::t2LDRi12 : ARM::LDRi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000939 RC = ARM::GPRRegisterClass;
Eric Christopherdc908042010-08-31 01:28:42 +0000940 break;
Eric Christopher6dab1372010-09-18 01:59:37 +0000941 case MVT::f32:
942 Opc = ARM::VLDRS;
Eric Christopheree56ea62010-10-07 05:50:44 +0000943 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000944 break;
945 case MVT::f64:
946 Opc = ARM::VLDRD;
Eric Christopheree56ea62010-10-07 05:50:44 +0000947 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000948 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000949 }
Eric Christopher564857f2010-12-01 01:40:24 +0000950 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000951 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000952
Eric Christopher564857f2010-12-01 01:40:24 +0000953 // Create the base instruction, then add the operands.
954 ResultReg = createResultReg(RC);
955 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
956 TII.get(Opc), ResultReg);
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000957 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOLoad);
Eric Christopherdc908042010-08-31 01:28:42 +0000958 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000959}
960
Eric Christopher43b62be2010-09-27 06:02:23 +0000961bool ARMFastISel::SelectLoad(const Instruction *I) {
Eli Friedman4136d232011-09-02 22:33:24 +0000962 // Atomic loads need special handling.
963 if (cast<LoadInst>(I)->isAtomic())
964 return false;
965
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000966 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000967 MVT VT;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000968 if (!isLoadTypeLegal(I->getType(), VT))
969 return false;
970
Eric Christopher564857f2010-12-01 01:40:24 +0000971 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +0000972 Address Addr;
Eric Christopher564857f2010-12-01 01:40:24 +0000973 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000974
975 unsigned ResultReg;
Eric Christopher0d581222010-11-19 22:30:02 +0000976 if (!ARMEmitLoad(VT, ResultReg, Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000977 UpdateValueMap(I, ResultReg);
978 return true;
979}
980
Eric Christopher0d581222010-11-19 22:30:02 +0000981bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000982 unsigned StrOpc;
983 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000984 // This is mostly going to be Neon/vector support.
Eric Christopher318b6ee2010-09-02 00:53:56 +0000985 default: return false;
Eric Christopher4c914122010-11-02 23:59:09 +0000986 case MVT::i1: {
987 unsigned Res = createResultReg(isThumb ? ARM::tGPRRegisterClass :
988 ARM::GPRRegisterClass);
989 unsigned Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
990 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
991 TII.get(Opc), Res)
992 .addReg(SrcReg).addImm(1));
993 SrcReg = Res;
994 } // Fallthrough here.
Eric Christopher2896df82010-10-15 18:02:07 +0000995 case MVT::i8:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000996 StrOpc = isThumb ? ARM::t2STRBi12 : ARM::STRBi12;
Eric Christopher15418772010-10-12 05:39:06 +0000997 break;
998 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000999 StrOpc = isThumb ? ARM::t2STRHi12 : ARM::STRH;
Eric Christopher15418772010-10-12 05:39:06 +00001000 break;
Eric Christopher47650ec2010-10-16 01:10:35 +00001001 case MVT::i32:
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001002 StrOpc = isThumb ? ARM::t2STRi12 : ARM::STRi12;
Eric Christopher47650ec2010-10-16 01:10:35 +00001003 break;
Eric Christopher56d2b722010-09-02 23:43:26 +00001004 case MVT::f32:
1005 if (!Subtarget->hasVFP2()) return false;
1006 StrOpc = ARM::VSTRS;
1007 break;
1008 case MVT::f64:
1009 if (!Subtarget->hasVFP2()) return false;
1010 StrOpc = ARM::VSTRD;
1011 break;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001012 }
Eric Christopher564857f2010-12-01 01:40:24 +00001013 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +00001014 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +00001015
Eric Christopher564857f2010-12-01 01:40:24 +00001016 // Create the base instruction, then add the operands.
1017 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1018 TII.get(StrOpc))
1019 .addReg(SrcReg, getKillRegState(true));
Cameron Zwarichc152aa62011-05-28 20:34:49 +00001020 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOStore);
Eric Christopher318b6ee2010-09-02 00:53:56 +00001021 return true;
1022}
1023
Eric Christopher43b62be2010-09-27 06:02:23 +00001024bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher318b6ee2010-09-02 00:53:56 +00001025 Value *Op0 = I->getOperand(0);
1026 unsigned SrcReg = 0;
1027
Eli Friedman4136d232011-09-02 22:33:24 +00001028 // Atomic stores need special handling.
1029 if (cast<StoreInst>(I)->isAtomic())
1030 return false;
1031
Eric Christopher564857f2010-12-01 01:40:24 +00001032 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001033 MVT VT;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001034 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopher543cf052010-09-01 22:16:27 +00001035 return false;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001036
Eric Christopher1b61ef42010-09-02 01:48:11 +00001037 // Get the value to be stored into a register.
1038 SrcReg = getRegForValue(Op0);
Eric Christopher564857f2010-12-01 01:40:24 +00001039 if (SrcReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001040
Eric Christopher564857f2010-12-01 01:40:24 +00001041 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +00001042 Address Addr;
Eric Christopher0d581222010-11-19 22:30:02 +00001043 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher318b6ee2010-09-02 00:53:56 +00001044 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001045
Eric Christopher0d581222010-11-19 22:30:02 +00001046 if (!ARMEmitStore(VT, SrcReg, Addr)) return false;
Eric Christophera5b1e682010-09-17 22:28:18 +00001047 return true;
1048}
1049
1050static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1051 switch (Pred) {
1052 // Needs two compares...
1053 case CmpInst::FCMP_ONE:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001054 case CmpInst::FCMP_UEQ:
Eric Christophera5b1e682010-09-17 22:28:18 +00001055 default:
Eric Christopher4053e632010-11-02 01:24:49 +00001056 // AL is our "false" for now. The other two need more compares.
Eric Christophera5b1e682010-09-17 22:28:18 +00001057 return ARMCC::AL;
1058 case CmpInst::ICMP_EQ:
1059 case CmpInst::FCMP_OEQ:
1060 return ARMCC::EQ;
1061 case CmpInst::ICMP_SGT:
1062 case CmpInst::FCMP_OGT:
1063 return ARMCC::GT;
1064 case CmpInst::ICMP_SGE:
1065 case CmpInst::FCMP_OGE:
1066 return ARMCC::GE;
1067 case CmpInst::ICMP_UGT:
1068 case CmpInst::FCMP_UGT:
1069 return ARMCC::HI;
1070 case CmpInst::FCMP_OLT:
1071 return ARMCC::MI;
1072 case CmpInst::ICMP_ULE:
1073 case CmpInst::FCMP_OLE:
1074 return ARMCC::LS;
1075 case CmpInst::FCMP_ORD:
1076 return ARMCC::VC;
1077 case CmpInst::FCMP_UNO:
1078 return ARMCC::VS;
1079 case CmpInst::FCMP_UGE:
1080 return ARMCC::PL;
1081 case CmpInst::ICMP_SLT:
1082 case CmpInst::FCMP_ULT:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001083 return ARMCC::LT;
Eric Christophera5b1e682010-09-17 22:28:18 +00001084 case CmpInst::ICMP_SLE:
1085 case CmpInst::FCMP_ULE:
1086 return ARMCC::LE;
1087 case CmpInst::FCMP_UNE:
1088 case CmpInst::ICMP_NE:
1089 return ARMCC::NE;
1090 case CmpInst::ICMP_UGE:
1091 return ARMCC::HS;
1092 case CmpInst::ICMP_ULT:
1093 return ARMCC::LO;
1094 }
Eric Christopher543cf052010-09-01 22:16:27 +00001095}
1096
Eric Christopher43b62be2010-09-27 06:02:23 +00001097bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christophere5734102010-09-03 00:35:47 +00001098 const BranchInst *BI = cast<BranchInst>(I);
1099 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1100 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopherac1a19e2010-09-09 01:06:51 +00001101
Eric Christophere5734102010-09-03 00:35:47 +00001102 // Simple branch support.
Jim Grosbach16cb3762010-11-09 19:22:26 +00001103
Eric Christopher0e6233b2010-10-29 21:08:19 +00001104 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1105 // behavior.
Eric Christopher0e6233b2010-10-29 21:08:19 +00001106 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Chad Rosier75698f32011-10-26 23:17:28 +00001107 if (CI->hasOneUse() && (CI->getParent() == I->getParent())) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001108
1109 // Get the compare predicate.
Eric Christopher632ae892011-04-29 21:56:31 +00001110 // Try to take advantage of fallthrough opportunities.
1111 CmpInst::Predicate Predicate = CI->getPredicate();
1112 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1113 std::swap(TBB, FBB);
1114 Predicate = CmpInst::getInversePredicate(Predicate);
1115 }
1116
1117 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher0e6233b2010-10-29 21:08:19 +00001118
1119 // We may not handle every CC for now.
1120 if (ARMPred == ARMCC::AL) return false;
1121
Chad Rosier75698f32011-10-26 23:17:28 +00001122 // Emit the compare.
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001123 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
Chad Rosier75698f32011-10-26 23:17:28 +00001124 return false;
Jim Grosbach16cb3762010-11-09 19:22:26 +00001125
Eric Christopher0e6233b2010-10-29 21:08:19 +00001126 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1127 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1128 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
1129 FastEmitBranch(FBB, DL);
1130 FuncInfo.MBB->addSuccessor(TBB);
1131 return true;
1132 }
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001133 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1134 MVT SourceVT;
1135 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
Eli Friedman76927d732011-05-25 23:49:02 +00001136 (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001137 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1138 unsigned OpReg = getRegForValue(TI->getOperand(0));
1139 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1140 TII.get(TstOpc))
1141 .addReg(OpReg).addImm(1));
1142
1143 unsigned CCMode = ARMCC::NE;
1144 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1145 std::swap(TBB, FBB);
1146 CCMode = ARMCC::EQ;
1147 }
1148
1149 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1150 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1151 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1152
1153 FastEmitBranch(FBB, DL);
1154 FuncInfo.MBB->addSuccessor(TBB);
1155 return true;
1156 }
Chad Rosier6d64b3a2011-10-27 00:21:16 +00001157 } else if (const ConstantInt *CI =
1158 dyn_cast<ConstantInt>(BI->getCondition())) {
1159 uint64_t Imm = CI->getZExtValue();
1160 MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
1161 FastEmitBranch(Target, DL);
1162 return true;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001163 }
Jim Grosbach16cb3762010-11-09 19:22:26 +00001164
Eric Christopher0e6233b2010-10-29 21:08:19 +00001165 unsigned CmpReg = getRegForValue(BI->getCondition());
1166 if (CmpReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001167
Stuart Hastingsc5eecbc2011-04-16 03:31:26 +00001168 // We've been divorced from our compare! Our block was split, and
1169 // now our compare lives in a predecessor block. We musn't
1170 // re-compare here, as the children of the compare aren't guaranteed
1171 // live across the block boundary (we *could* check for this).
1172 // Regardless, the compare has been done in the predecessor block,
1173 // and it left a value for us in a virtual register. Ergo, we test
1174 // the one-bit value left in the virtual register.
1175 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1176 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TstOpc))
1177 .addReg(CmpReg).addImm(1));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001178
Eric Christopher7a20a372011-04-28 16:52:09 +00001179 unsigned CCMode = ARMCC::NE;
1180 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1181 std::swap(TBB, FBB);
1182 CCMode = ARMCC::EQ;
1183 }
1184
Eric Christophere5734102010-09-03 00:35:47 +00001185 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
Eric Christophere5734102010-09-03 00:35:47 +00001186 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
Eric Christopher7a20a372011-04-28 16:52:09 +00001187 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Eric Christophere5734102010-09-03 00:35:47 +00001188 FastEmitBranch(FBB, DL);
1189 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001190 return true;
Eric Christophere5734102010-09-03 00:35:47 +00001191}
1192
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001193bool ARMFastISel::ARMEmitCmp(const Value *Src1Value, const Value *Src2Value,
1194 bool isZExt) {
Chad Rosierade62002011-10-26 23:25:44 +00001195 Type *Ty = Src1Value->getType();
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001196 EVT SrcVT = TLI.getValueType(Ty, true);
1197 if (!SrcVT.isSimple()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001198
Chad Rosierade62002011-10-26 23:25:44 +00001199 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy());
1200 if (isFloat && !Subtarget->hasVFP2())
Eric Christopherd43393a2010-09-08 23:13:45 +00001201 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001202
Eric Christopherd43393a2010-09-08 23:13:45 +00001203 unsigned CmpOpc;
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001204 bool needsExt = false;
1205 switch (SrcVT.getSimpleVT().SimpleTy) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001206 default: return false;
1207 // TODO: Verify compares.
1208 case MVT::f32:
1209 CmpOpc = ARM::VCMPES;
1210 break;
1211 case MVT::f64:
1212 CmpOpc = ARM::VCMPED;
1213 break;
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001214 case MVT::i1:
1215 case MVT::i8:
1216 case MVT::i16:
1217 needsExt = true;
1218 // Intentional fall-through.
Eric Christopherd43393a2010-09-08 23:13:45 +00001219 case MVT::i32:
1220 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
1221 break;
1222 }
1223
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001224 unsigned SrcReg1 = getRegForValue(Src1Value);
1225 if (SrcReg1 == 0) return false;
Chad Rosier530f7ce2011-10-26 22:47:55 +00001226
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001227 unsigned SrcReg2 = getRegForValue(Src2Value);
1228 if (SrcReg2 == 0) return false;
1229
1230 // We have i1, i8, or i16, we need to either zero extend or sign extend.
1231 if (needsExt) {
1232 unsigned ResultReg;
1233 EVT DestVT = MVT::i32;
1234 ResultReg = ARMEmitIntExt(SrcVT, SrcReg1, DestVT, isZExt);
1235 if (ResultReg == 0) return false;
1236 SrcReg1 = ResultReg;
1237 ResultReg = ARMEmitIntExt(SrcVT, SrcReg2, DestVT, isZExt);
1238 if (ResultReg == 0) return false;
1239 SrcReg2 = ResultReg;
1240 }
Chad Rosier530f7ce2011-10-26 22:47:55 +00001241
1242 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001243 .addReg(SrcReg1).addReg(SrcReg2));
Chad Rosierade62002011-10-26 23:25:44 +00001244
1245 // For floating point we need to move the result to a comparison register
1246 // that we can then use for branches.
1247 if (Ty->isFloatTy() || Ty->isDoubleTy())
1248 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1249 TII.get(ARM::FMSTAT)));
Chad Rosier530f7ce2011-10-26 22:47:55 +00001250 return true;
1251}
1252
1253bool ARMFastISel::SelectCmp(const Instruction *I) {
1254 const CmpInst *CI = cast<CmpInst>(I);
Chad Rosierade62002011-10-26 23:25:44 +00001255 Type *Ty = CI->getOperand(0)->getType();
Chad Rosier530f7ce2011-10-26 22:47:55 +00001256
Eric Christopher229207a2010-09-29 01:14:47 +00001257 // Get the compare predicate.
1258 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopherdccd2c32010-10-11 08:38:55 +00001259
Eric Christopher229207a2010-09-29 01:14:47 +00001260 // We may not handle every CC for now.
1261 if (ARMPred == ARMCC::AL) return false;
1262
Chad Rosier530f7ce2011-10-26 22:47:55 +00001263 // Emit the compare.
Chad Rosiere07cd5e2011-11-02 18:08:25 +00001264 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
Chad Rosier530f7ce2011-10-26 22:47:55 +00001265 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001266
Eric Christopher229207a2010-09-29 01:14:47 +00001267 // Now set a register based on the comparison. Explicitly set the predicates
1268 // here.
Eric Christopher338c2532010-10-07 05:31:49 +00001269 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCi : ARM::MOVCCi;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001270 TargetRegisterClass *RC = isThumb ? ARM::rGPRRegisterClass
Eric Christopher5d18d922010-10-07 05:39:19 +00001271 : ARM::GPRRegisterClass;
1272 unsigned DestReg = createResultReg(RC);
Chad Rosierade62002011-10-26 23:25:44 +00001273 Constant *Zero = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher229207a2010-09-29 01:14:47 +00001274 unsigned ZeroReg = TargetMaterializeConstant(Zero);
Chad Rosierade62002011-10-26 23:25:44 +00001275 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy());
Chad Rosier530f7ce2011-10-26 22:47:55 +00001276 unsigned CondReg = isFloat ? ARM::FPSCR : ARM::CPSR;
Eric Christopher229207a2010-09-29 01:14:47 +00001277 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), DestReg)
1278 .addReg(ZeroReg).addImm(1)
1279 .addImm(ARMPred).addReg(CondReg);
1280
Eric Christophera5b1e682010-09-17 22:28:18 +00001281 UpdateValueMap(I, DestReg);
Eric Christopherd43393a2010-09-08 23:13:45 +00001282 return true;
1283}
1284
Eric Christopher43b62be2010-09-27 06:02:23 +00001285bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopher46203602010-09-09 00:26:48 +00001286 // Make sure we have VFP and that we're extending float to double.
1287 if (!Subtarget->hasVFP2()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001288
Eric Christopher46203602010-09-09 00:26:48 +00001289 Value *V = I->getOperand(0);
1290 if (!I->getType()->isDoubleTy() ||
1291 !V->getType()->isFloatTy()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001292
Eric Christopher46203602010-09-09 00:26:48 +00001293 unsigned Op = getRegForValue(V);
1294 if (Op == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001295
Eric Christopher46203602010-09-09 00:26:48 +00001296 unsigned Result = createResultReg(ARM::DPRRegisterClass);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001297 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001298 TII.get(ARM::VCVTDS), Result)
Eric Christopherce07b542010-09-09 20:26:31 +00001299 .addReg(Op));
1300 UpdateValueMap(I, Result);
1301 return true;
1302}
1303
Eric Christopher43b62be2010-09-27 06:02:23 +00001304bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopherce07b542010-09-09 20:26:31 +00001305 // Make sure we have VFP and that we're truncating double to float.
1306 if (!Subtarget->hasVFP2()) return false;
1307
1308 Value *V = I->getOperand(0);
Eric Christopher022b7fb2010-10-05 23:13:24 +00001309 if (!(I->getType()->isFloatTy() &&
1310 V->getType()->isDoubleTy())) return false;
Eric Christopherce07b542010-09-09 20:26:31 +00001311
1312 unsigned Op = getRegForValue(V);
1313 if (Op == 0) return false;
1314
1315 unsigned Result = createResultReg(ARM::SPRRegisterClass);
Eric Christopherce07b542010-09-09 20:26:31 +00001316 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001317 TII.get(ARM::VCVTSD), Result)
Eric Christopher46203602010-09-09 00:26:48 +00001318 .addReg(Op));
1319 UpdateValueMap(I, Result);
1320 return true;
1321}
1322
Eric Christopher43b62be2010-09-27 06:02:23 +00001323bool ARMFastISel::SelectSIToFP(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001324 // Make sure we have VFP.
1325 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001326
Duncan Sands1440e8b2010-11-03 11:35:31 +00001327 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001328 Type *Ty = I->getType();
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001329 if (!isTypeLegal(Ty, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001330 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001331
Chad Rosier463fe242011-11-03 02:04:59 +00001332 Value *Src = I->getOperand(0);
1333 EVT SrcVT = TLI.getValueType(Src->getType(), true);
1334 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
Eli Friedman783c6642011-05-25 19:09:45 +00001335 return false;
1336
Chad Rosier463fe242011-11-03 02:04:59 +00001337 unsigned SrcReg = getRegForValue(Src);
1338 if (SrcReg == 0) return false;
1339
1340 // Handle sign-extension.
1341 if (SrcVT == MVT::i16 || SrcVT == MVT::i8) {
1342 EVT DestVT = MVT::i32;
1343 unsigned ResultReg = ARMEmitIntExt(SrcVT, SrcReg, DestVT, /*isZExt*/ false);
1344 if (ResultReg == 0) return false;
1345 SrcReg = ResultReg;
1346 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001347
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001348 // The conversion routine works on fp-reg to fp-reg and the operand above
1349 // was an integer, move it to the fp registers if possible.
Chad Rosier463fe242011-11-03 02:04:59 +00001350 unsigned FP = ARMMoveToFPReg(MVT::f32, SrcReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001351 if (FP == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001352
Eric Christopher9a040492010-09-09 18:54:59 +00001353 unsigned Opc;
1354 if (Ty->isFloatTy()) Opc = ARM::VSITOS;
1355 else if (Ty->isDoubleTy()) Opc = ARM::VSITOD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001356 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001357
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001358 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Eric Christopher9a040492010-09-09 18:54:59 +00001359 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1360 ResultReg)
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001361 .addReg(FP));
Eric Christopherce07b542010-09-09 20:26:31 +00001362 UpdateValueMap(I, ResultReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001363 return true;
1364}
1365
Eric Christopher43b62be2010-09-27 06:02:23 +00001366bool ARMFastISel::SelectFPToSI(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001367 // Make sure we have VFP.
1368 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001369
Duncan Sands1440e8b2010-11-03 11:35:31 +00001370 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001371 Type *RetTy = I->getType();
Eric Christopher920a2082010-09-10 00:35:09 +00001372 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001373 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001374
Eric Christopher9a040492010-09-09 18:54:59 +00001375 unsigned Op = getRegForValue(I->getOperand(0));
1376 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001377
Eric Christopher9a040492010-09-09 18:54:59 +00001378 unsigned Opc;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001379 Type *OpTy = I->getOperand(0)->getType();
Eric Christopher9a040492010-09-09 18:54:59 +00001380 if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS;
1381 else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001382 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001383
Eric Christopher022b7fb2010-10-05 23:13:24 +00001384 // f64->s32 or f32->s32 both need an intermediate f32 reg.
1385 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Eric Christopher9a040492010-09-09 18:54:59 +00001386 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1387 ResultReg)
1388 .addReg(Op));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001389
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001390 // This result needs to be in an integer register, but the conversion only
1391 // takes place in fp-regs.
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001392 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001393 if (IntReg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001394
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001395 UpdateValueMap(I, IntReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001396 return true;
1397}
1398
Eric Christopher3bbd3962010-10-11 08:27:59 +00001399bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001400 MVT VT;
1401 if (!isTypeLegal(I->getType(), VT))
Eric Christopher3bbd3962010-10-11 08:27:59 +00001402 return false;
1403
1404 // Things need to be register sized for register moves.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001405 if (VT != MVT::i32) return false;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001406 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
1407
1408 unsigned CondReg = getRegForValue(I->getOperand(0));
1409 if (CondReg == 0) return false;
1410 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1411 if (Op1Reg == 0) return false;
1412 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1413 if (Op2Reg == 0) return false;
1414
1415 unsigned CmpOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1416 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1417 .addReg(CondReg).addImm(1));
1418 unsigned ResultReg = createResultReg(RC);
1419 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCr : ARM::MOVCCr;
1420 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), ResultReg)
1421 .addReg(Op1Reg).addReg(Op2Reg)
1422 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
1423 UpdateValueMap(I, ResultReg);
1424 return true;
1425}
1426
Eric Christopher08637852010-09-30 22:34:19 +00001427bool ARMFastISel::SelectSDiv(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001428 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001429 Type *Ty = I->getType();
Eric Christopher08637852010-09-30 22:34:19 +00001430 if (!isTypeLegal(Ty, VT))
1431 return false;
1432
1433 // If we have integer div support we should have selected this automagically.
1434 // In case we have a real miss go ahead and return false and we'll pick
1435 // it up later.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001436 if (Subtarget->hasDivide()) return false;
1437
Eric Christopher08637852010-09-30 22:34:19 +00001438 // Otherwise emit a libcall.
1439 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christopher7bdc4de2010-10-11 08:31:54 +00001440 if (VT == MVT::i8)
1441 LC = RTLIB::SDIV_I8;
1442 else if (VT == MVT::i16)
Eric Christopher08637852010-09-30 22:34:19 +00001443 LC = RTLIB::SDIV_I16;
1444 else if (VT == MVT::i32)
1445 LC = RTLIB::SDIV_I32;
1446 else if (VT == MVT::i64)
1447 LC = RTLIB::SDIV_I64;
1448 else if (VT == MVT::i128)
1449 LC = RTLIB::SDIV_I128;
1450 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopherdccd2c32010-10-11 08:38:55 +00001451
Eric Christopher08637852010-09-30 22:34:19 +00001452 return ARMEmitLibcall(I, LC);
1453}
1454
Eric Christopher6a880d62010-10-11 08:37:26 +00001455bool ARMFastISel::SelectSRem(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001456 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001457 Type *Ty = I->getType();
Eric Christopher6a880d62010-10-11 08:37:26 +00001458 if (!isTypeLegal(Ty, VT))
1459 return false;
1460
1461 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1462 if (VT == MVT::i8)
1463 LC = RTLIB::SREM_I8;
1464 else if (VT == MVT::i16)
1465 LC = RTLIB::SREM_I16;
1466 else if (VT == MVT::i32)
1467 LC = RTLIB::SREM_I32;
1468 else if (VT == MVT::i64)
1469 LC = RTLIB::SREM_I64;
1470 else if (VT == MVT::i128)
1471 LC = RTLIB::SREM_I128;
Eric Christophera1640d92010-10-11 08:40:05 +00001472 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christopher2896df82010-10-15 18:02:07 +00001473
Eric Christopher6a880d62010-10-11 08:37:26 +00001474 return ARMEmitLibcall(I, LC);
1475}
1476
Eric Christopher43b62be2010-09-27 06:02:23 +00001477bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
Eric Christopherbd6bf082010-09-09 01:02:03 +00001478 EVT VT = TLI.getValueType(I->getType(), true);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001479
Eric Christopherbc39b822010-09-09 00:53:57 +00001480 // We can get here in the case when we want to use NEON for our fp
1481 // operations, but can't figure out how to. Just use the vfp instructions
1482 // if we have them.
1483 // FIXME: It'd be nice to use NEON instructions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001484 Type *Ty = I->getType();
Eric Christopherbd6bf082010-09-09 01:02:03 +00001485 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1486 if (isFloat && !Subtarget->hasVFP2())
1487 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001488
Eric Christopherbc39b822010-09-09 00:53:57 +00001489 unsigned Op1 = getRegForValue(I->getOperand(0));
1490 if (Op1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001491
Eric Christopherbc39b822010-09-09 00:53:57 +00001492 unsigned Op2 = getRegForValue(I->getOperand(1));
1493 if (Op2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001494
Eric Christopherbc39b822010-09-09 00:53:57 +00001495 unsigned Opc;
Duncan Sandscdfad362010-11-03 12:17:33 +00001496 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopherbc39b822010-09-09 00:53:57 +00001497 switch (ISDOpcode) {
1498 default: return false;
1499 case ISD::FADD:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001500 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001501 break;
1502 case ISD::FSUB:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001503 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001504 break;
1505 case ISD::FMUL:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001506 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001507 break;
1508 }
Eric Christopherbd6bf082010-09-09 01:02:03 +00001509 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Eric Christopherbc39b822010-09-09 00:53:57 +00001510 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1511 TII.get(Opc), ResultReg)
1512 .addReg(Op1).addReg(Op2));
Eric Christopherce07b542010-09-09 20:26:31 +00001513 UpdateValueMap(I, ResultReg);
Eric Christopherbc39b822010-09-09 00:53:57 +00001514 return true;
1515}
1516
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001517// Call Handling Code
1518
Eric Christopherfa87d662010-10-18 02:17:53 +00001519bool ARMFastISel::FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src,
1520 EVT SrcVT, unsigned &ResultReg) {
1521 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
1522 Src, /*TODO: Kill=*/false);
Jim Grosbach6b156392010-10-27 21:39:08 +00001523
Eric Christopherfa87d662010-10-18 02:17:53 +00001524 if (RR != 0) {
1525 ResultReg = RR;
1526 return true;
1527 } else
Jim Grosbach6b156392010-10-27 21:39:08 +00001528 return false;
Eric Christopherfa87d662010-10-18 02:17:53 +00001529}
1530
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001531// This is largely taken directly from CCAssignFnForNode - we don't support
1532// varargs in FastISel so that part has been removed.
1533// TODO: We may not support all of this.
1534CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
1535 switch (CC) {
1536 default:
1537 llvm_unreachable("Unsupported calling convention");
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001538 case CallingConv::Fast:
Evan Cheng1f8b40d2010-10-22 18:57:05 +00001539 // Ignore fastcc. Silence compiler warnings.
1540 (void)RetFastCC_ARM_APCS;
1541 (void)FastCC_ARM_APCS;
1542 // Fallthrough
1543 case CallingConv::C:
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001544 // Use target triple & subtarget features to do actual dispatch.
1545 if (Subtarget->isAAPCS_ABI()) {
1546 if (Subtarget->hasVFP2() &&
1547 FloatABIType == FloatABI::Hard)
1548 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1549 else
1550 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1551 } else
1552 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1553 case CallingConv::ARM_AAPCS_VFP:
1554 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1555 case CallingConv::ARM_AAPCS:
1556 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1557 case CallingConv::ARM_APCS:
1558 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1559 }
1560}
1561
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001562bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1563 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001564 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001565 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1566 SmallVectorImpl<unsigned> &RegArgs,
1567 CallingConv::ID CC,
1568 unsigned &NumBytes) {
1569 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001570 CCState CCInfo(CC, false, *FuncInfo.MF, TM, ArgLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001571 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC, false));
1572
1573 // Get a count of how many bytes are to be pushed on the stack.
1574 NumBytes = CCInfo.getNextStackOffset();
1575
1576 // Issue CALLSEQ_START
Evan Chengd5b03f22011-06-28 21:14:33 +00001577 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001578 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1579 TII.get(AdjStackDown))
1580 .addImm(NumBytes));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001581
1582 // Process the args.
1583 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1584 CCValAssign &VA = ArgLocs[i];
1585 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sands1440e8b2010-11-03 11:35:31 +00001586 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001587
Eric Christopher4a2b3162011-01-27 05:44:56 +00001588 // We don't handle NEON/vector parameters yet.
1589 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
Eric Christophera4633f52010-10-23 09:37:17 +00001590 return false;
1591
Eric Christopherf9764fa2010-09-30 20:49:44 +00001592 // Handle arg promotion, etc.
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001593 switch (VA.getLocInfo()) {
1594 case CCValAssign::Full: break;
Eric Christopherfa87d662010-10-18 02:17:53 +00001595 case CCValAssign::SExt: {
1596 bool Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1597 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001598 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001599 Emitted = true;
1600 ArgVT = VA.getLocVT();
1601 break;
1602 }
1603 case CCValAssign::ZExt: {
1604 bool Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1605 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001606 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001607 Emitted = true;
1608 ArgVT = VA.getLocVT();
1609 break;
1610 }
1611 case CCValAssign::AExt: {
Eric Christopherfa87d662010-10-18 02:17:53 +00001612 bool Emitted = FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1613 Arg, ArgVT, Arg);
1614 if (!Emitted)
1615 Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1616 Arg, ArgVT, Arg);
1617 if (!Emitted)
1618 Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1619 Arg, ArgVT, Arg);
1620
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001621 assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001622 ArgVT = VA.getLocVT();
1623 break;
1624 }
1625 case CCValAssign::BCvt: {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001626 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001627 /*TODO: Kill=*/false);
Eric Christopherfa87d662010-10-18 02:17:53 +00001628 assert(BC != 0 && "Failed to emit a bitcast!");
1629 Arg = BC;
1630 ArgVT = VA.getLocVT();
1631 break;
1632 }
1633 default: llvm_unreachable("Unknown arg promotion!");
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001634 }
1635
1636 // Now copy/store arg to correct locations.
Eric Christopherfb0b8922010-10-11 21:20:02 +00001637 if (VA.isRegLoc() && !VA.needsCustom()) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001638 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
Eric Christopherf9764fa2010-09-30 20:49:44 +00001639 VA.getLocReg())
1640 .addReg(Arg);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001641 RegArgs.push_back(VA.getLocReg());
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001642 } else if (VA.needsCustom()) {
1643 // TODO: We need custom lowering for vector (v2f64) args.
1644 if (VA.getLocVT() != MVT::f64) return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001645
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001646 CCValAssign &NextVA = ArgLocs[++i];
1647
1648 // TODO: Only handle register args for now.
1649 if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false;
1650
1651 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1652 TII.get(ARM::VMOVRRD), VA.getLocReg())
1653 .addReg(NextVA.getLocReg(), RegState::Define)
1654 .addReg(Arg));
1655 RegArgs.push_back(VA.getLocReg());
1656 RegArgs.push_back(NextVA.getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001657 } else {
Eric Christopher5b924802010-10-21 20:09:54 +00001658 assert(VA.isMemLoc());
1659 // Need to store on the stack.
Eric Christopher0d581222010-11-19 22:30:02 +00001660 Address Addr;
1661 Addr.BaseType = Address::RegBase;
1662 Addr.Base.Reg = ARM::SP;
1663 Addr.Offset = VA.getLocMemOffset();
Eric Christopher5b924802010-10-21 20:09:54 +00001664
Eric Christopher0d581222010-11-19 22:30:02 +00001665 if (!ARMEmitStore(ArgVT, Arg, Addr)) return false;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001666 }
1667 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001668 return true;
1669}
1670
Duncan Sands1440e8b2010-11-03 11:35:31 +00001671bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001672 const Instruction *I, CallingConv::ID CC,
1673 unsigned &NumBytes) {
1674 // Issue CALLSEQ_END
Evan Chengd5b03f22011-06-28 21:14:33 +00001675 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001676 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1677 TII.get(AdjStackUp))
1678 .addImm(NumBytes).addImm(0));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001679
1680 // Now the return value.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001681 if (RetVT != MVT::isVoid) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001682 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001683 CCState CCInfo(CC, false, *FuncInfo.MF, TM, RVLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001684 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true));
1685
1686 // Copy all of the result registers out of their specified physreg.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001687 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopher14df8822010-10-01 00:00:11 +00001688 // For this move we copy into two registers and then move into the
1689 // double fp reg we want.
Eric Christopher14df8822010-10-01 00:00:11 +00001690 EVT DestVT = RVLocs[0].getValVT();
1691 TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
1692 unsigned ResultReg = createResultReg(DstRC);
1693 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1694 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopher3659ac22010-10-20 08:02:24 +00001695 .addReg(RVLocs[0].getLocReg())
1696 .addReg(RVLocs[1].getLocReg()));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001697
Eric Christopher3659ac22010-10-20 08:02:24 +00001698 UsedRegs.push_back(RVLocs[0].getLocReg());
1699 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach6b156392010-10-27 21:39:08 +00001700
Eric Christopherdccd2c32010-10-11 08:38:55 +00001701 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001702 UpdateValueMap(I, ResultReg);
1703 } else {
Jim Grosbach95369592010-10-13 23:34:31 +00001704 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Eric Christopher14df8822010-10-01 00:00:11 +00001705 EVT CopyVT = RVLocs[0].getValVT();
1706 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001707
Eric Christopher14df8822010-10-01 00:00:11 +00001708 unsigned ResultReg = createResultReg(DstRC);
1709 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1710 ResultReg).addReg(RVLocs[0].getLocReg());
1711 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001712
Eric Christopherdccd2c32010-10-11 08:38:55 +00001713 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001714 UpdateValueMap(I, ResultReg);
1715 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001716 }
1717
Eric Christopherdccd2c32010-10-11 08:38:55 +00001718 return true;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001719}
1720
Eric Christopher4f512ef2010-10-22 01:28:00 +00001721bool ARMFastISel::SelectRet(const Instruction *I) {
1722 const ReturnInst *Ret = cast<ReturnInst>(I);
1723 const Function &F = *I->getParent()->getParent();
Jim Grosbach6b156392010-10-27 21:39:08 +00001724
Eric Christopher4f512ef2010-10-22 01:28:00 +00001725 if (!FuncInfo.CanLowerReturn)
1726 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001727
Eric Christopher4f512ef2010-10-22 01:28:00 +00001728 if (F.isVarArg())
1729 return false;
1730
1731 CallingConv::ID CC = F.getCallingConv();
1732 if (Ret->getNumOperands() > 0) {
1733 SmallVector<ISD::OutputArg, 4> Outs;
1734 GetReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
1735 Outs, TLI);
1736
1737 // Analyze operands of the call, assigning locations to each operand.
1738 SmallVector<CCValAssign, 16> ValLocs;
Jim Grosbachb04546f2011-09-13 20:30:37 +00001739 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, TM, ValLocs,I->getContext());
Eric Christopher4f512ef2010-10-22 01:28:00 +00001740 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */));
1741
1742 const Value *RV = Ret->getOperand(0);
1743 unsigned Reg = getRegForValue(RV);
1744 if (Reg == 0)
1745 return false;
1746
1747 // Only handle a single return value for now.
1748 if (ValLocs.size() != 1)
1749 return false;
1750
1751 CCValAssign &VA = ValLocs[0];
Jim Grosbach6b156392010-10-27 21:39:08 +00001752
Eric Christopher4f512ef2010-10-22 01:28:00 +00001753 // Don't bother handling odd stuff for now.
1754 if (VA.getLocInfo() != CCValAssign::Full)
1755 return false;
1756 // Only handle register returns for now.
1757 if (!VA.isRegLoc())
1758 return false;
Chad Rosierf470cbb2011-11-04 00:50:21 +00001759
1760 unsigned SrcReg = Reg + VA.getValNo();
1761 EVT RVVT = TLI.getValueType(RV->getType());
1762 EVT DestVT = VA.getValVT();
1763 // Special handling for extended integers.
1764 if (RVVT != DestVT) {
1765 if (RVVT != MVT::i1 && RVVT != MVT::i8 && RVVT != MVT::i16)
1766 return false;
1767
1768 if (!Outs[0].Flags.isZExt() && !Outs[0].Flags.isSExt())
1769 return false;
1770
1771 assert(DestVT == MVT::i32 && "ARM should always ext to i32");
1772
1773 bool isZExt = Outs[0].Flags.isZExt();
1774 unsigned ResultReg = ARMEmitIntExt(RVVT, SrcReg, DestVT, isZExt);
1775 if (ResultReg == 0) return false;
1776 SrcReg = ResultReg;
1777 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001778
Eric Christopher4f512ef2010-10-22 01:28:00 +00001779 // Make the copy.
Eric Christopher4f512ef2010-10-22 01:28:00 +00001780 unsigned DstReg = VA.getLocReg();
1781 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
1782 // Avoid a cross-class copy. This is very unlikely.
1783 if (!SrcRC->contains(DstReg))
1784 return false;
1785 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1786 DstReg).addReg(SrcReg);
1787
1788 // Mark the register as live out of the function.
1789 MRI.addLiveOut(VA.getLocReg());
1790 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001791
Eric Christopher4f512ef2010-10-22 01:28:00 +00001792 unsigned RetOpc = isThumb ? ARM::tBX_RET : ARM::BX_RET;
1793 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1794 TII.get(RetOpc)));
1795 return true;
1796}
1797
Eric Christopher872f4a22011-02-22 01:37:10 +00001798unsigned ARMFastISel::ARMSelectCallOp(const GlobalValue *GV) {
1799
Eric Christopher872f4a22011-02-22 01:37:10 +00001800 // Darwin needs the r9 versions of the opcodes.
1801 bool isDarwin = Subtarget->isTargetDarwin();
Eric Christopher04356612011-04-05 00:39:26 +00001802 if (isThumb) {
Eric Christopher872f4a22011-02-22 01:37:10 +00001803 return isDarwin ? ARM::tBLr9 : ARM::tBL;
1804 } else {
1805 return isDarwin ? ARM::BLr9 : ARM::BL;
1806 }
1807}
1808
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001809// A quick function that will emit a call for a named libcall in F with the
1810// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopherdccd2c32010-10-11 08:38:55 +00001811// can emit a call for any libcall we can produce. This is an abridged version
1812// of the full call infrastructure since we won't need to worry about things
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001813// like computed function pointers or strange arguments at call sites.
1814// TODO: Try to unify this and the normal call bits for ARM, then try to unify
1815// with X86.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001816bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
1817 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001818
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001819 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001820 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001821 MVT RetVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001822 if (RetTy->isVoidTy())
1823 RetVT = MVT::isVoid;
1824 else if (!isTypeLegal(RetTy, RetVT))
1825 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001826
Eric Christopher836c6242010-12-15 23:47:29 +00001827 // TODO: For now if we have long calls specified we don't handle the call.
1828 if (EnableARMLongCalls) return false;
1829
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001830 // Set up the argument vectors.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001831 SmallVector<Value*, 8> Args;
1832 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001833 SmallVector<MVT, 8> ArgVTs;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001834 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1835 Args.reserve(I->getNumOperands());
1836 ArgRegs.reserve(I->getNumOperands());
1837 ArgVTs.reserve(I->getNumOperands());
1838 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001839 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001840 Value *Op = I->getOperand(i);
1841 unsigned Arg = getRegForValue(Op);
1842 if (Arg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001843
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001844 Type *ArgTy = Op->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001845 MVT ArgVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001846 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001847
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001848 ISD::ArgFlagsTy Flags;
1849 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1850 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001851
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001852 Args.push_back(Op);
1853 ArgRegs.push_back(Arg);
1854 ArgVTs.push_back(ArgVT);
1855 ArgFlags.push_back(Flags);
1856 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001857
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001858 // Handle the arguments now that we've gotten them.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001859 SmallVector<unsigned, 4> RegArgs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001860 unsigned NumBytes;
1861 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1862 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001863
Eric Christopher6344a5f2011-04-29 00:07:20 +00001864 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001865 // TODO: Turn this into the table of arm call ops.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001866 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001867 unsigned CallOpc = ARMSelectCallOp(NULL);
1868 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001869 // Explicitly adding the predicate here.
1870 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1871 TII.get(CallOpc)))
1872 .addExternalSymbol(TLI.getLibcallName(Call));
Eric Christopher872f4a22011-02-22 01:37:10 +00001873 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001874 // Explicitly adding the predicate here.
1875 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1876 TII.get(CallOpc))
1877 .addExternalSymbol(TLI.getLibcallName(Call)));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001878
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001879 // Add implicit physical register uses to the call.
1880 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1881 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001882
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001883 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001884 SmallVector<unsigned, 4> UsedRegs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001885 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001886
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001887 // Set all unused physreg defs as dead.
1888 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001889
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001890 return true;
1891}
1892
Eric Christopherf9764fa2010-09-30 20:49:44 +00001893bool ARMFastISel::SelectCall(const Instruction *I) {
1894 const CallInst *CI = cast<CallInst>(I);
1895 const Value *Callee = CI->getCalledValue();
1896
1897 // Can't handle inline asm or worry about intrinsics yet.
1898 if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false;
1899
Eric Christopher52f6c032011-05-02 20:16:33 +00001900 // Only handle global variable Callees.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001901 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Eric Christopher52f6c032011-05-02 20:16:33 +00001902 if (!GV)
Eric Christophere6ca6772010-10-01 21:33:12 +00001903 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001904
Eric Christopherf9764fa2010-09-30 20:49:44 +00001905 // Check the calling convention.
1906 ImmutableCallSite CS(CI);
1907 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher4cf34c62010-10-18 06:49:12 +00001908
Eric Christopherf9764fa2010-09-30 20:49:44 +00001909 // TODO: Avoid some calling conventions?
Eric Christopherdccd2c32010-10-11 08:38:55 +00001910
Eric Christopherf9764fa2010-09-30 20:49:44 +00001911 // Let SDISel handle vararg functions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001912 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1913 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Eric Christopherf9764fa2010-09-30 20:49:44 +00001914 if (FTy->isVarArg())
1915 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001916
Eric Christopherf9764fa2010-09-30 20:49:44 +00001917 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001918 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001919 MVT RetVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001920 if (RetTy->isVoidTy())
1921 RetVT = MVT::isVoid;
1922 else if (!isTypeLegal(RetTy, RetVT))
1923 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001924
Eric Christopher836c6242010-12-15 23:47:29 +00001925 // TODO: For now if we have long calls specified we don't handle the call.
1926 if (EnableARMLongCalls) return false;
Eric Christopher299bbb22011-04-29 00:03:10 +00001927
Eric Christopherf9764fa2010-09-30 20:49:44 +00001928 // Set up the argument vectors.
1929 SmallVector<Value*, 8> Args;
1930 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001931 SmallVector<MVT, 8> ArgVTs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001932 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1933 Args.reserve(CS.arg_size());
1934 ArgRegs.reserve(CS.arg_size());
1935 ArgVTs.reserve(CS.arg_size());
1936 ArgFlags.reserve(CS.arg_size());
1937 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1938 i != e; ++i) {
1939 unsigned Arg = getRegForValue(*i);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001940
Eric Christopherf9764fa2010-09-30 20:49:44 +00001941 if (Arg == 0)
1942 return false;
1943 ISD::ArgFlagsTy Flags;
1944 unsigned AttrInd = i - CS.arg_begin() + 1;
1945 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
1946 Flags.setSExt();
1947 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
1948 Flags.setZExt();
1949
1950 // FIXME: Only handle *easy* calls for now.
1951 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1952 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1953 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1954 CS.paramHasAttr(AttrInd, Attribute::ByVal))
1955 return false;
1956
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001957 Type *ArgTy = (*i)->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001958 MVT ArgVT;
Chad Rosier3a7572f2011-10-17 22:54:23 +00001959 // FIXME: Should be able to handle i1, i8, and/or i16 parameters.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001960 if (!isTypeLegal(ArgTy, ArgVT))
1961 return false;
1962 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1963 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001964
Eric Christopherf9764fa2010-09-30 20:49:44 +00001965 Args.push_back(*i);
1966 ArgRegs.push_back(Arg);
1967 ArgVTs.push_back(ArgVT);
1968 ArgFlags.push_back(Flags);
1969 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001970
Eric Christopherf9764fa2010-09-30 20:49:44 +00001971 // Handle the arguments now that we've gotten them.
1972 SmallVector<unsigned, 4> RegArgs;
1973 unsigned NumBytes;
1974 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1975 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001976
Eric Christopher6344a5f2011-04-29 00:07:20 +00001977 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001978 // TODO: Turn this into the table of arm call ops.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001979 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001980 unsigned CallOpc = ARMSelectCallOp(GV);
Eric Christopher7bb59962010-11-29 21:56:23 +00001981 // Explicitly adding the predicate here.
Eric Christopher872f4a22011-02-22 01:37:10 +00001982 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001983 // Explicitly adding the predicate here.
1984 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1985 TII.get(CallOpc)))
1986 .addGlobalAddress(GV, 0, 0);
Eric Christopher872f4a22011-02-22 01:37:10 +00001987 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001988 // Explicitly adding the predicate here.
1989 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1990 TII.get(CallOpc))
1991 .addGlobalAddress(GV, 0, 0));
Eric Christopher299bbb22011-04-29 00:03:10 +00001992
Eric Christopherf9764fa2010-09-30 20:49:44 +00001993 // Add implicit physical register uses to the call.
1994 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1995 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001996
Eric Christopherf9764fa2010-09-30 20:49:44 +00001997 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001998 SmallVector<unsigned, 4> UsedRegs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001999 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00002000
Eric Christopherf9764fa2010-09-30 20:49:44 +00002001 // Set all unused physreg defs as dead.
2002 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00002003
Eric Christopherf9764fa2010-09-30 20:49:44 +00002004 return true;
Eric Christopherf9764fa2010-09-30 20:49:44 +00002005}
2006
Chad Rosier0d7b2312011-11-02 00:18:48 +00002007bool ARMFastISel::SelectTrunc(const Instruction *I) {
2008 // The high bits for a type smaller than the register size are assumed to be
2009 // undefined.
2010 Value *Op = I->getOperand(0);
2011
2012 EVT SrcVT, DestVT;
2013 SrcVT = TLI.getValueType(Op->getType(), true);
2014 DestVT = TLI.getValueType(I->getType(), true);
2015
2016 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
2017 return false;
2018 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
2019 return false;
2020
2021 unsigned SrcReg = getRegForValue(Op);
2022 if (!SrcReg) return false;
2023
2024 // Because the high bits are undefined, a truncate doesn't generate
2025 // any code.
2026 UpdateValueMap(I, SrcReg);
2027 return true;
2028}
2029
Chad Rosier87633022011-11-02 17:20:24 +00002030unsigned ARMFastISel::ARMEmitIntExt(EVT SrcVT, unsigned SrcReg, EVT DestVT,
2031 bool isZExt) {
Eli Friedman76927d732011-05-25 23:49:02 +00002032 if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8)
Chad Rosier87633022011-11-02 17:20:24 +00002033 return 0;
Eli Friedman76927d732011-05-25 23:49:02 +00002034
2035 unsigned Opc;
Eli Friedman76927d732011-05-25 23:49:02 +00002036 bool isBoolZext = false;
Chad Rosier87633022011-11-02 17:20:24 +00002037 if (!SrcVT.isSimple()) return 0;
Eli Friedman76927d732011-05-25 23:49:02 +00002038 switch (SrcVT.getSimpleVT().SimpleTy) {
Chad Rosier87633022011-11-02 17:20:24 +00002039 default: return 0;
Eli Friedman76927d732011-05-25 23:49:02 +00002040 case MVT::i16:
Chad Rosier87633022011-11-02 17:20:24 +00002041 if (!Subtarget->hasV6Ops()) return 0;
2042 if (isZExt)
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002043 Opc = isThumb ? ARM::t2UXTH : ARM::UXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002044 else
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002045 Opc = isThumb ? ARM::t2SXTH : ARM::SXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002046 break;
2047 case MVT::i8:
Chad Rosier87633022011-11-02 17:20:24 +00002048 if (!Subtarget->hasV6Ops()) return 0;
2049 if (isZExt)
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002050 Opc = isThumb ? ARM::t2UXTB : ARM::UXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002051 else
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002052 Opc = isThumb ? ARM::t2SXTB : ARM::SXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002053 break;
2054 case MVT::i1:
Chad Rosier87633022011-11-02 17:20:24 +00002055 if (isZExt) {
Eli Friedman76927d732011-05-25 23:49:02 +00002056 Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
2057 isBoolZext = true;
2058 break;
2059 }
Chad Rosier87633022011-11-02 17:20:24 +00002060 return 0;
Eli Friedman76927d732011-05-25 23:49:02 +00002061 }
2062
Chad Rosier87633022011-11-02 17:20:24 +00002063 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::i32));
Eli Friedman76927d732011-05-25 23:49:02 +00002064 MachineInstrBuilder MIB;
Chad Rosier87633022011-11-02 17:20:24 +00002065 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), ResultReg)
Eli Friedman76927d732011-05-25 23:49:02 +00002066 .addReg(SrcReg);
2067 if (isBoolZext)
2068 MIB.addImm(1);
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002069 else
2070 MIB.addImm(0);
Eli Friedman76927d732011-05-25 23:49:02 +00002071 AddOptionalDefs(MIB);
Chad Rosier87633022011-11-02 17:20:24 +00002072 return ResultReg;
2073}
2074
2075bool ARMFastISel::SelectIntExt(const Instruction *I) {
2076 // On ARM, in general, integer casts don't involve legal types; this code
2077 // handles promotable integers.
2078 // FIXME: We could save an instruction in many cases by special-casing
2079 // load instructions.
2080 Type *DestTy = I->getType();
2081 Value *Src = I->getOperand(0);
2082 Type *SrcTy = Src->getType();
2083
2084 EVT SrcVT, DestVT;
2085 SrcVT = TLI.getValueType(SrcTy, true);
2086 DestVT = TLI.getValueType(DestTy, true);
2087
2088 bool isZExt = isa<ZExtInst>(I);
2089 unsigned SrcReg = getRegForValue(Src);
2090 if (!SrcReg) return false;
2091
2092 unsigned ResultReg = ARMEmitIntExt(SrcVT, SrcReg, DestVT, isZExt);
2093 if (ResultReg == 0) return false;
2094 UpdateValueMap(I, ResultReg);
Eli Friedman76927d732011-05-25 23:49:02 +00002095 return true;
2096}
2097
Eric Christopher56d2b722010-09-02 23:43:26 +00002098// TODO: SoftFP support.
Eric Christopherab695882010-07-21 22:26:11 +00002099bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopherac1a19e2010-09-09 01:06:51 +00002100
Eric Christopherab695882010-07-21 22:26:11 +00002101 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +00002102 case Instruction::Load:
Eric Christopher43b62be2010-09-27 06:02:23 +00002103 return SelectLoad(I);
Eric Christopher543cf052010-09-01 22:16:27 +00002104 case Instruction::Store:
Eric Christopher43b62be2010-09-27 06:02:23 +00002105 return SelectStore(I);
Eric Christophere5734102010-09-03 00:35:47 +00002106 case Instruction::Br:
Eric Christopher43b62be2010-09-27 06:02:23 +00002107 return SelectBranch(I);
Eric Christopherd43393a2010-09-08 23:13:45 +00002108 case Instruction::ICmp:
2109 case Instruction::FCmp:
Eric Christopher43b62be2010-09-27 06:02:23 +00002110 return SelectCmp(I);
Eric Christopher46203602010-09-09 00:26:48 +00002111 case Instruction::FPExt:
Eric Christopher43b62be2010-09-27 06:02:23 +00002112 return SelectFPExt(I);
Eric Christopherce07b542010-09-09 20:26:31 +00002113 case Instruction::FPTrunc:
Eric Christopher43b62be2010-09-27 06:02:23 +00002114 return SelectFPTrunc(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002115 case Instruction::SIToFP:
Eric Christopher43b62be2010-09-27 06:02:23 +00002116 return SelectSIToFP(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002117 case Instruction::FPToSI:
Eric Christopher43b62be2010-09-27 06:02:23 +00002118 return SelectFPToSI(I);
Eric Christopherbc39b822010-09-09 00:53:57 +00002119 case Instruction::FAdd:
Eric Christopher43b62be2010-09-27 06:02:23 +00002120 return SelectBinaryOp(I, ISD::FADD);
Eric Christopherbc39b822010-09-09 00:53:57 +00002121 case Instruction::FSub:
Eric Christopher43b62be2010-09-27 06:02:23 +00002122 return SelectBinaryOp(I, ISD::FSUB);
Eric Christopherbc39b822010-09-09 00:53:57 +00002123 case Instruction::FMul:
Eric Christopher43b62be2010-09-27 06:02:23 +00002124 return SelectBinaryOp(I, ISD::FMUL);
Eric Christopherbb3e5da2010-09-14 23:03:37 +00002125 case Instruction::SDiv:
Eric Christopher43b62be2010-09-27 06:02:23 +00002126 return SelectSDiv(I);
Eric Christopher6a880d62010-10-11 08:37:26 +00002127 case Instruction::SRem:
2128 return SelectSRem(I);
Eric Christopherf9764fa2010-09-30 20:49:44 +00002129 case Instruction::Call:
2130 return SelectCall(I);
Eric Christopher3bbd3962010-10-11 08:27:59 +00002131 case Instruction::Select:
2132 return SelectSelect(I);
Eric Christopher4f512ef2010-10-22 01:28:00 +00002133 case Instruction::Ret:
2134 return SelectRet(I);
Eli Friedman76927d732011-05-25 23:49:02 +00002135 case Instruction::Trunc:
Chad Rosier0d7b2312011-11-02 00:18:48 +00002136 return SelectTrunc(I);
Eli Friedman76927d732011-05-25 23:49:02 +00002137 case Instruction::ZExt:
2138 case Instruction::SExt:
Chad Rosier0d7b2312011-11-02 00:18:48 +00002139 return SelectIntExt(I);
Eric Christopherab695882010-07-21 22:26:11 +00002140 default: break;
2141 }
2142 return false;
2143}
2144
2145namespace llvm {
2146 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopherfeadddd2010-10-11 20:05:22 +00002147 // Completely untested on non-darwin.
2148 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002149
Eric Christopheraaa8df42010-11-02 01:21:28 +00002150 // Darwin and thumb1 only for now.
Eric Christopherfeadddd2010-10-11 20:05:22 +00002151 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002152 if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() &&
Eric Christopheraaa8df42010-11-02 01:21:28 +00002153 !DisableARMFastISel)
Eric Christopherfeadddd2010-10-11 20:05:22 +00002154 return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +00002155 return 0;
Eric Christopherab695882010-07-21 22:26:11 +00002156 }
2157}