blob: 4f883b7bc297dfdc384ba43f3563032a536d8c8e [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 Rosierade62002011-10-26 23:25:44 +0000177 bool ARMEmitCmp(const Value *Src1Value, const Value *Src2Value);
Eric Christopher0d581222010-11-19 22:30:02 +0000178 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr);
179 bool ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr);
180 bool ARMComputeAddress(const Value *Obj, Address &Addr);
181 void ARMSimplifyAddress(Address &Addr, EVT VT);
Eric Christopher9ed58df2010-09-09 00:19:41 +0000182 unsigned ARMMaterializeFP(const ConstantFP *CFP, EVT VT);
Eric Christopher744c7c82010-09-28 22:47:54 +0000183 unsigned ARMMaterializeInt(const Constant *C, EVT VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000184 unsigned ARMMaterializeGV(const GlobalValue *GV, EVT VT);
Eric Christopheraa3ace12010-09-09 20:49:25 +0000185 unsigned ARMMoveToFPReg(EVT VT, unsigned SrcReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000186 unsigned ARMMoveToIntReg(EVT VT, unsigned SrcReg);
Eric Christopher872f4a22011-02-22 01:37:10 +0000187 unsigned ARMSelectCallOp(const GlobalValue *GV);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000188
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000189 // Call handling routines.
190 private:
Eric Christopherfa87d662010-10-18 02:17:53 +0000191 bool FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
192 unsigned &ResultReg);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000193 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool Return);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000194 bool ProcessCallArgs(SmallVectorImpl<Value*> &Args,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000195 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +0000196 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000197 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
198 SmallVectorImpl<unsigned> &RegArgs,
199 CallingConv::ID CC,
200 unsigned &NumBytes);
Duncan Sands1440e8b2010-11-03 11:35:31 +0000201 bool FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000202 const Instruction *I, CallingConv::ID CC,
203 unsigned &NumBytes);
Eric Christopher7ed8ec92010-09-28 01:21:42 +0000204 bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000205
206 // OptionalDef handling routines.
207 private:
Eric Christopheraf3dce52011-03-12 01:09:29 +0000208 bool isARMNEONPred(const MachineInstr *MI);
Eric Christopher456144e2010-08-19 00:37:05 +0000209 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
210 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
Eric Christopher564857f2010-12-01 01:40:24 +0000211 void AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000212 const MachineInstrBuilder &MIB,
213 unsigned Flags);
Eric Christopher456144e2010-08-19 00:37:05 +0000214};
Eric Christopherab695882010-07-21 22:26:11 +0000215
216} // end anonymous namespace
217
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000218#include "ARMGenCallingConv.inc"
Eric Christopherab695882010-07-21 22:26:11 +0000219
Eric Christopher456144e2010-08-19 00:37:05 +0000220// DefinesOptionalPredicate - This is different from DefinesPredicate in that
221// we don't care about implicit defs here, just places we'll need to add a
222// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
223bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
Evan Chenge837dea2011-06-28 19:10:37 +0000224 const MCInstrDesc &MCID = MI->getDesc();
225 if (!MCID.hasOptionalDef())
Eric Christopher456144e2010-08-19 00:37:05 +0000226 return false;
227
228 // Look to see if our OptionalDef is defining CPSR or CCR.
229 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
230 const MachineOperand &MO = MI->getOperand(i);
Eric Christopherf762fbe2010-08-20 00:36:24 +0000231 if (!MO.isReg() || !MO.isDef()) continue;
232 if (MO.getReg() == ARM::CPSR)
Eric Christopher456144e2010-08-19 00:37:05 +0000233 *CPSR = true;
234 }
235 return true;
236}
237
Eric Christopheraf3dce52011-03-12 01:09:29 +0000238bool ARMFastISel::isARMNEONPred(const MachineInstr *MI) {
Evan Chenge837dea2011-06-28 19:10:37 +0000239 const MCInstrDesc &MCID = MI->getDesc();
Eric Christopher299bbb22011-04-29 00:03:10 +0000240
Eric Christopheraf3dce52011-03-12 01:09:29 +0000241 // If we're a thumb2 or not NEON function we were handled via isPredicable.
Evan Chenge837dea2011-06-28 19:10:37 +0000242 if ((MCID.TSFlags & ARMII::DomainMask) != ARMII::DomainNEON ||
Eric Christopheraf3dce52011-03-12 01:09:29 +0000243 AFI->isThumb2Function())
244 return false;
Eric Christopher299bbb22011-04-29 00:03:10 +0000245
Evan Chenge837dea2011-06-28 19:10:37 +0000246 for (unsigned i = 0, e = MCID.getNumOperands(); i != e; ++i)
247 if (MCID.OpInfo[i].isPredicate())
Eric Christopheraf3dce52011-03-12 01:09:29 +0000248 return true;
Eric Christopher299bbb22011-04-29 00:03:10 +0000249
Eric Christopheraf3dce52011-03-12 01:09:29 +0000250 return false;
251}
252
Eric Christopher456144e2010-08-19 00:37:05 +0000253// If the machine is predicable go ahead and add the predicate operands, if
254// it needs default CC operands add those.
Eric Christopheraaa8df42010-11-02 01:21:28 +0000255// TODO: If we want to support thumb1 then we'll need to deal with optional
256// CPSR defs that need to be added before the remaining operands. See s_cc_out
257// for descriptions why.
Eric Christopher456144e2010-08-19 00:37:05 +0000258const MachineInstrBuilder &
259ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
260 MachineInstr *MI = &*MIB;
261
Eric Christopheraf3dce52011-03-12 01:09:29 +0000262 // Do we use a predicate? or...
263 // Are we NEON in ARM mode and have a predicate operand? If so, I know
264 // we're not predicable but add it anyways.
265 if (TII.isPredicable(MI) || isARMNEONPred(MI))
Eric Christopher456144e2010-08-19 00:37:05 +0000266 AddDefaultPred(MIB);
Eric Christopher299bbb22011-04-29 00:03:10 +0000267
Eric Christopher456144e2010-08-19 00:37:05 +0000268 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
269 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christopher979e0a12010-08-19 15:35:27 +0000270 bool CPSR = false;
Eric Christopher456144e2010-08-19 00:37:05 +0000271 if (DefinesOptionalPredicate(MI, &CPSR)) {
272 if (CPSR)
273 AddDefaultT1CC(MIB);
274 else
275 AddDefaultCC(MIB);
276 }
277 return MIB;
278}
279
Eric Christopher0fe7d542010-08-17 01:25:29 +0000280unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode,
281 const TargetRegisterClass* RC) {
282 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000283 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000284
Eric Christopher456144e2010-08-19 00:37:05 +0000285 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg));
Eric Christopher0fe7d542010-08-17 01:25:29 +0000286 return ResultReg;
287}
288
289unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
290 const TargetRegisterClass *RC,
291 unsigned Op0, bool Op0IsKill) {
292 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000293 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000294
295 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000296 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000297 .addReg(Op0, Op0IsKill * RegState::Kill));
298 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000299 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000300 .addReg(Op0, Op0IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000301 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000302 TII.get(TargetOpcode::COPY), ResultReg)
303 .addReg(II.ImplicitDefs[0]));
304 }
305 return ResultReg;
306}
307
308unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
309 const TargetRegisterClass *RC,
310 unsigned Op0, bool Op0IsKill,
311 unsigned Op1, bool Op1IsKill) {
312 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000313 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000314
315 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000316 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000317 .addReg(Op0, Op0IsKill * RegState::Kill)
318 .addReg(Op1, Op1IsKill * RegState::Kill));
319 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000320 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000321 .addReg(Op0, Op0IsKill * RegState::Kill)
322 .addReg(Op1, Op1IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000323 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000324 TII.get(TargetOpcode::COPY), ResultReg)
325 .addReg(II.ImplicitDefs[0]));
326 }
327 return ResultReg;
328}
329
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000330unsigned ARMFastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
331 const TargetRegisterClass *RC,
332 unsigned Op0, bool Op0IsKill,
333 unsigned Op1, bool Op1IsKill,
334 unsigned Op2, bool Op2IsKill) {
335 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000336 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000337
338 if (II.getNumDefs() >= 1)
339 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
340 .addReg(Op0, Op0IsKill * RegState::Kill)
341 .addReg(Op1, Op1IsKill * RegState::Kill)
342 .addReg(Op2, Op2IsKill * RegState::Kill));
343 else {
344 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
345 .addReg(Op0, Op0IsKill * RegState::Kill)
346 .addReg(Op1, Op1IsKill * RegState::Kill)
347 .addReg(Op2, Op2IsKill * RegState::Kill));
348 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
349 TII.get(TargetOpcode::COPY), ResultReg)
350 .addReg(II.ImplicitDefs[0]));
351 }
352 return ResultReg;
353}
354
Eric Christopher0fe7d542010-08-17 01:25:29 +0000355unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
356 const TargetRegisterClass *RC,
357 unsigned Op0, bool Op0IsKill,
358 uint64_t Imm) {
359 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000360 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000361
362 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000363 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000364 .addReg(Op0, Op0IsKill * RegState::Kill)
365 .addImm(Imm));
366 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000367 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000368 .addReg(Op0, Op0IsKill * RegState::Kill)
369 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000370 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000371 TII.get(TargetOpcode::COPY), ResultReg)
372 .addReg(II.ImplicitDefs[0]));
373 }
374 return ResultReg;
375}
376
377unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
378 const TargetRegisterClass *RC,
379 unsigned Op0, bool Op0IsKill,
380 const ConstantFP *FPImm) {
381 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000382 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000383
384 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000385 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000386 .addReg(Op0, Op0IsKill * RegState::Kill)
387 .addFPImm(FPImm));
388 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000389 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000390 .addReg(Op0, Op0IsKill * RegState::Kill)
391 .addFPImm(FPImm));
Eric Christopher456144e2010-08-19 00:37:05 +0000392 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000393 TII.get(TargetOpcode::COPY), ResultReg)
394 .addReg(II.ImplicitDefs[0]));
395 }
396 return ResultReg;
397}
398
399unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
400 const TargetRegisterClass *RC,
401 unsigned Op0, bool Op0IsKill,
402 unsigned Op1, bool Op1IsKill,
403 uint64_t Imm) {
404 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000405 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000406
407 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000408 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000409 .addReg(Op0, Op0IsKill * RegState::Kill)
410 .addReg(Op1, Op1IsKill * RegState::Kill)
411 .addImm(Imm));
412 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000413 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000414 .addReg(Op0, Op0IsKill * RegState::Kill)
415 .addReg(Op1, Op1IsKill * RegState::Kill)
416 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000417 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000418 TII.get(TargetOpcode::COPY), ResultReg)
419 .addReg(II.ImplicitDefs[0]));
420 }
421 return ResultReg;
422}
423
424unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
425 const TargetRegisterClass *RC,
426 uint64_t Imm) {
427 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000428 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000429
Eric Christopher0fe7d542010-08-17 01:25:29 +0000430 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000431 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000432 .addImm(Imm));
433 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000434 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000435 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000436 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000437 TII.get(TargetOpcode::COPY), ResultReg)
438 .addReg(II.ImplicitDefs[0]));
439 }
440 return ResultReg;
441}
442
Eric Christopherd94bc542011-04-29 22:07:50 +0000443unsigned ARMFastISel::FastEmitInst_ii(unsigned MachineInstOpcode,
444 const TargetRegisterClass *RC,
445 uint64_t Imm1, uint64_t Imm2) {
446 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000447 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher471e4222011-06-08 23:55:35 +0000448
Eric Christopherd94bc542011-04-29 22:07:50 +0000449 if (II.getNumDefs() >= 1)
450 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
451 .addImm(Imm1).addImm(Imm2));
452 else {
453 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
454 .addImm(Imm1).addImm(Imm2));
Eric Christopher471e4222011-06-08 23:55:35 +0000455 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherd94bc542011-04-29 22:07:50 +0000456 TII.get(TargetOpcode::COPY),
457 ResultReg)
458 .addReg(II.ImplicitDefs[0]));
459 }
460 return ResultReg;
461}
462
Eric Christopher0fe7d542010-08-17 01:25:29 +0000463unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT,
464 unsigned Op0, bool Op0IsKill,
465 uint32_t Idx) {
466 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
467 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
468 "Cannot yet extract from physregs");
Eric Christopher456144e2010-08-19 00:37:05 +0000469 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000470 DL, TII.get(TargetOpcode::COPY), ResultReg)
471 .addReg(Op0, getKillRegState(Op0IsKill), Idx));
472 return ResultReg;
473}
474
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000475// TODO: Don't worry about 64-bit now, but when this is fixed remove the
476// checks from the various callers.
Eric Christopheraa3ace12010-09-09 20:49:25 +0000477unsigned ARMFastISel::ARMMoveToFPReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000478 if (VT == MVT::f64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000479
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000480 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
481 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
482 TII.get(ARM::VMOVRS), MoveReg)
483 .addReg(SrcReg));
484 return MoveReg;
485}
486
487unsigned ARMFastISel::ARMMoveToIntReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000488 if (VT == MVT::i64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000489
Eric Christopheraa3ace12010-09-09 20:49:25 +0000490 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
491 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000492 TII.get(ARM::VMOVSR), MoveReg)
Eric Christopheraa3ace12010-09-09 20:49:25 +0000493 .addReg(SrcReg));
494 return MoveReg;
495}
496
Eric Christopher9ed58df2010-09-09 00:19:41 +0000497// For double width floating point we need to materialize two constants
498// (the high and the low) into integer registers then use a move to get
499// the combined constant into an FP reg.
500unsigned ARMFastISel::ARMMaterializeFP(const ConstantFP *CFP, EVT VT) {
501 const APFloat Val = CFP->getValueAPF();
Duncan Sandscdfad362010-11-03 12:17:33 +0000502 bool is64bit = VT == MVT::f64;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000503
Eric Christopher9ed58df2010-09-09 00:19:41 +0000504 // This checks to see if we can use VFP3 instructions to materialize
505 // a constant, otherwise we have to go through the constant pool.
506 if (TLI.isFPImmLegal(Val, VT)) {
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000507 int Imm;
508 unsigned Opc;
509 if (is64bit) {
510 Imm = ARM_AM::getFP64Imm(Val);
511 Opc = ARM::FCONSTD;
512 } else {
513 Imm = ARM_AM::getFP32Imm(Val);
514 Opc = ARM::FCONSTS;
515 }
Eric Christopher9ed58df2010-09-09 00:19:41 +0000516 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
517 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
518 DestReg)
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000519 .addImm(Imm));
Eric Christopher9ed58df2010-09-09 00:19:41 +0000520 return DestReg;
521 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000522
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000523 // Require VFP2 for loading fp constants.
Eric Christopher238bb162010-09-09 23:50:00 +0000524 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000525
Eric Christopher238bb162010-09-09 23:50:00 +0000526 // MachineConstantPool wants an explicit alignment.
527 unsigned Align = TD.getPrefTypeAlignment(CFP->getType());
528 if (Align == 0) {
529 // TODO: Figure out if this is correct.
530 Align = TD.getTypeAllocSize(CFP->getType());
531 }
532 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
533 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
534 unsigned Opc = is64bit ? ARM::VLDRD : ARM::VLDRS;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000535
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000536 // The extra reg is for addrmode5.
Eric Christopherf5732c42010-09-28 00:35:09 +0000537 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
538 DestReg)
539 .addConstantPoolIndex(Idx)
Eric Christopher238bb162010-09-09 23:50:00 +0000540 .addReg(0));
541 return DestReg;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000542}
543
Eric Christopher744c7c82010-09-28 22:47:54 +0000544unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, EVT VT) {
Eric Christopherdccd2c32010-10-11 08:38:55 +0000545
Eric Christopher744c7c82010-09-28 22:47:54 +0000546 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000547 if (VT != MVT::i32) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000548
Eric Christophere5b13cf2010-11-03 20:21:17 +0000549 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
550
551 // If we can do this in a single instruction without a constant pool entry
552 // do so now.
553 const ConstantInt *CI = cast<ConstantInt>(C);
Eric Christopher5e262bc2010-11-06 07:53:11 +0000554 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getSExtValue())) {
Eric Christophere5b13cf2010-11-03 20:21:17 +0000555 unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16;
556 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Jim Grosbach3ea4daa2010-11-19 18:01:37 +0000557 TII.get(Opc), DestReg)
558 .addImm(CI->getSExtValue()));
Eric Christophere5b13cf2010-11-03 20:21:17 +0000559 return DestReg;
560 }
561
Eric Christopher56d2b722010-09-02 23:43:26 +0000562 // MachineConstantPool wants an explicit alignment.
563 unsigned Align = TD.getPrefTypeAlignment(C->getType());
564 if (Align == 0) {
565 // TODO: Figure out if this is correct.
566 Align = TD.getTypeAllocSize(C->getType());
567 }
568 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000569
Eric Christopher56d2b722010-09-02 23:43:26 +0000570 if (isThumb)
571 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000572 TII.get(ARM::t2LDRpci), DestReg)
573 .addConstantPoolIndex(Idx));
Eric Christopher56d2b722010-09-02 23:43:26 +0000574 else
Eric Christopherd0c82a62010-11-12 09:48:30 +0000575 // The extra immediate is for addrmode2.
Eric Christopher56d2b722010-09-02 23:43:26 +0000576 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000577 TII.get(ARM::LDRcp), DestReg)
578 .addConstantPoolIndex(Idx)
Jim Grosbach3e556122010-10-26 22:37:02 +0000579 .addImm(0));
Eric Christopherac1a19e2010-09-09 01:06:51 +0000580
Eric Christopher56d2b722010-09-02 23:43:26 +0000581 return DestReg;
Eric Christopher1b61ef42010-09-02 01:48:11 +0000582}
583
Eric Christopherc9932f62010-10-01 23:24:42 +0000584unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, EVT VT) {
Eric Christopher890dbbe2010-10-02 00:32:44 +0000585 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000586 if (VT != MVT::i32) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000587
Eric Christopher890dbbe2010-10-02 00:32:44 +0000588 Reloc::Model RelocM = TM.getRelocationModel();
Eric Christopherdccd2c32010-10-11 08:38:55 +0000589
Eric Christopher890dbbe2010-10-02 00:32:44 +0000590 // TODO: Need more magic for ARM PIC.
591 if (!isThumb && (RelocM == Reloc::PIC_)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000592
Eric Christopher890dbbe2010-10-02 00:32:44 +0000593 // MachineConstantPool wants an explicit alignment.
594 unsigned Align = TD.getPrefTypeAlignment(GV->getType());
595 if (Align == 0) {
596 // TODO: Figure out if this is correct.
597 Align = TD.getTypeAllocSize(GV->getType());
598 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000599
Eric Christopher890dbbe2010-10-02 00:32:44 +0000600 // Grab index.
601 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000602 unsigned Id = AFI->createPICLabelUId();
Bill Wendling5bb77992011-10-01 08:00:54 +0000603 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id,
604 ARMCP::CPValue,
605 PCAdj);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000606 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000607
Eric Christopher890dbbe2010-10-02 00:32:44 +0000608 // Load value.
609 MachineInstrBuilder MIB;
610 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
611 if (isThumb) {
612 unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
613 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
614 .addConstantPoolIndex(Idx);
615 if (RelocM == Reloc::PIC_)
616 MIB.addImm(Id);
617 } else {
Eric Christopherd0c82a62010-11-12 09:48:30 +0000618 // The extra immediate is for addrmode2.
Eric Christopher890dbbe2010-10-02 00:32:44 +0000619 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRcp),
620 DestReg)
621 .addConstantPoolIndex(Idx)
Eric Christopherd0c82a62010-11-12 09:48:30 +0000622 .addImm(0);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000623 }
624 AddOptionalDefs(MIB);
Eli Friedmand6412c92011-06-03 01:13:19 +0000625
626 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) {
627 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
628 if (isThumb)
Jim Grosbachb04546f2011-09-13 20:30:37 +0000629 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
630 TII.get(ARM::t2LDRi12), NewDestReg)
Eli Friedmand6412c92011-06-03 01:13:19 +0000631 .addReg(DestReg)
632 .addImm(0);
633 else
634 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRi12),
635 NewDestReg)
636 .addReg(DestReg)
637 .addImm(0);
638 DestReg = NewDestReg;
639 AddOptionalDefs(MIB);
640 }
641
Eric Christopher890dbbe2010-10-02 00:32:44 +0000642 return DestReg;
Eric Christopherc9932f62010-10-01 23:24:42 +0000643}
644
Eric Christopher9ed58df2010-09-09 00:19:41 +0000645unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
646 EVT VT = TLI.getValueType(C->getType(), true);
647
648 // Only handle simple types.
649 if (!VT.isSimple()) return 0;
650
651 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
652 return ARMMaterializeFP(CFP, VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000653 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
654 return ARMMaterializeGV(GV, VT);
655 else if (isa<ConstantInt>(C))
656 return ARMMaterializeInt(C, VT);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000657
Eric Christopherc9932f62010-10-01 23:24:42 +0000658 return 0;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000659}
660
Eric Christopherf9764fa2010-09-30 20:49:44 +0000661unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
662 // Don't handle dynamic allocas.
663 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000664
Duncan Sands1440e8b2010-11-03 11:35:31 +0000665 MVT VT;
Eric Christopherec8bf972010-10-17 06:07:26 +0000666 if (!isLoadTypeLegal(AI->getType(), VT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000667
Eric Christopherf9764fa2010-09-30 20:49:44 +0000668 DenseMap<const AllocaInst*, int>::iterator SI =
669 FuncInfo.StaticAllocaMap.find(AI);
670
671 // This will get lowered later into the correct offsets and registers
672 // via rewriteXFrameIndex.
673 if (SI != FuncInfo.StaticAllocaMap.end()) {
674 TargetRegisterClass* RC = TLI.getRegClassFor(VT);
675 unsigned ResultReg = createResultReg(RC);
676 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
677 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
678 TII.get(Opc), ResultReg)
679 .addFrameIndex(SI->second)
680 .addImm(0));
681 return ResultReg;
682 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000683
Eric Christopherf9764fa2010-09-30 20:49:44 +0000684 return 0;
685}
686
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000687bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
Duncan Sands1440e8b2010-11-03 11:35:31 +0000688 EVT evt = TLI.getValueType(Ty, true);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000689
Eric Christopherb1cc8482010-08-25 07:23:49 +0000690 // Only handle simple types.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000691 if (evt == MVT::Other || !evt.isSimple()) return false;
692 VT = evt.getSimpleVT();
Eric Christopherac1a19e2010-09-09 01:06:51 +0000693
Eric Christopherdc908042010-08-31 01:28:42 +0000694 // Handle all legal types, i.e. a register that will directly hold this
695 // value.
696 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000697}
698
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000699bool ARMFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000700 if (isTypeLegal(Ty, VT)) return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000701
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000702 // If this is a type than can be sign or zero-extended to a basic operation
703 // go ahead and accept it now.
704 if (VT == MVT::i8 || VT == MVT::i16)
705 return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000706
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000707 return false;
708}
709
Eric Christopher88de86b2010-11-19 22:36:41 +0000710// Computes the address to get to an object.
Eric Christopher0d581222010-11-19 22:30:02 +0000711bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher83007122010-08-23 21:44:12 +0000712 // Some boilerplate from the X86 FastISel.
713 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000714 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000715 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher2d630d72010-11-19 22:37:58 +0000716 // Don't walk into other basic blocks unless the object is an alloca from
717 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher76dda7e2010-11-15 21:11:06 +0000718 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
719 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
720 Opcode = I->getOpcode();
721 U = I;
722 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000723 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000724 Opcode = C->getOpcode();
725 U = C;
726 }
727
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000728 if (PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000729 if (Ty->getAddressSpace() > 255)
730 // Fast instruction selection doesn't support the special
731 // address spaces.
732 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000733
Eric Christopher83007122010-08-23 21:44:12 +0000734 switch (Opcode) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000735 default:
Eric Christopher83007122010-08-23 21:44:12 +0000736 break;
Eric Christopher55324332010-10-12 00:43:21 +0000737 case Instruction::BitCast: {
738 // Look through bitcasts.
Eric Christopher0d581222010-11-19 22:30:02 +0000739 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000740 }
741 case Instruction::IntToPtr: {
742 // Look past no-op inttoptrs.
743 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000744 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000745 break;
746 }
747 case Instruction::PtrToInt: {
748 // Look past no-op ptrtoints.
749 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000750 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000751 break;
752 }
Eric Christophereae84392010-10-14 09:29:41 +0000753 case Instruction::GetElementPtr: {
Eric Christopherb3716582010-11-19 22:39:56 +0000754 Address SavedAddr = Addr;
Eric Christopher0d581222010-11-19 22:30:02 +0000755 int TmpOffset = Addr.Offset;
Eric Christopher2896df82010-10-15 18:02:07 +0000756
Eric Christophereae84392010-10-14 09:29:41 +0000757 // Iterate through the GEP folding the constants into offsets where
758 // we can.
759 gep_type_iterator GTI = gep_type_begin(U);
760 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
761 i != e; ++i, ++GTI) {
762 const Value *Op = *i;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000763 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Eric Christophereae84392010-10-14 09:29:41 +0000764 const StructLayout *SL = TD.getStructLayout(STy);
765 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
766 TmpOffset += SL->getElementOffset(Idx);
767 } else {
Eric Christopher2896df82010-10-15 18:02:07 +0000768 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Eric Christopher7244d7c2011-03-22 19:39:17 +0000769 for (;;) {
Eric Christopher2896df82010-10-15 18:02:07 +0000770 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
771 // Constant-offset addressing.
772 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000773 break;
774 }
775 if (isa<AddOperator>(Op) &&
776 (!isa<Instruction>(Op) ||
777 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
778 == FuncInfo.MBB) &&
779 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
Eric Christopher299bbb22011-04-29 00:03:10 +0000780 // An add (in the same block) with a constant operand. Fold the
Eric Christopher7244d7c2011-03-22 19:39:17 +0000781 // constant.
Eric Christopher2896df82010-10-15 18:02:07 +0000782 ConstantInt *CI =
Eric Christopher7244d7c2011-03-22 19:39:17 +0000783 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christopher2896df82010-10-15 18:02:07 +0000784 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000785 // Iterate on the other operand.
786 Op = cast<AddOperator>(Op)->getOperand(0);
787 continue;
Eric Christopher299bbb22011-04-29 00:03:10 +0000788 }
Eric Christopher7244d7c2011-03-22 19:39:17 +0000789 // Unsupported
790 goto unsupported_gep;
791 }
Eric Christophereae84392010-10-14 09:29:41 +0000792 }
793 }
Eric Christopher2896df82010-10-15 18:02:07 +0000794
795 // Try to grab the base operand now.
Eric Christopher0d581222010-11-19 22:30:02 +0000796 Addr.Offset = TmpOffset;
797 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christopher2896df82010-10-15 18:02:07 +0000798
799 // We failed, restore everything and try the other options.
Eric Christopherb3716582010-11-19 22:39:56 +0000800 Addr = SavedAddr;
Eric Christopher2896df82010-10-15 18:02:07 +0000801
Eric Christophereae84392010-10-14 09:29:41 +0000802 unsupported_gep:
Eric Christophereae84392010-10-14 09:29:41 +0000803 break;
804 }
Eric Christopher83007122010-08-23 21:44:12 +0000805 case Instruction::Alloca: {
Eric Christopher15418772010-10-12 05:39:06 +0000806 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher827656d2010-11-20 22:38:27 +0000807 DenseMap<const AllocaInst*, int>::iterator SI =
808 FuncInfo.StaticAllocaMap.find(AI);
809 if (SI != FuncInfo.StaticAllocaMap.end()) {
810 Addr.BaseType = Address::FrameIndexBase;
811 Addr.Base.FI = SI->second;
812 return true;
813 }
814 break;
Eric Christopher83007122010-08-23 21:44:12 +0000815 }
816 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000817
Eric Christophera9c57512010-10-13 21:41:51 +0000818 // Materialize the global variable's address into a reg which can
819 // then be used later to load the variable.
Eric Christophercb0b04b2010-08-24 00:07:24 +0000820 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
Eric Christopherede42b02010-10-13 09:11:46 +0000821 unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType()));
822 if (Tmp == 0) return false;
Eric Christopher2896df82010-10-15 18:02:07 +0000823
Eric Christopher0d581222010-11-19 22:30:02 +0000824 Addr.Base.Reg = Tmp;
Eric Christopherede42b02010-10-13 09:11:46 +0000825 return true;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000826 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000827
Eric Christophercb0b04b2010-08-24 00:07:24 +0000828 // Try to get this in a register if nothing else has worked.
Eric Christopher0d581222010-11-19 22:30:02 +0000829 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
830 return Addr.Base.Reg != 0;
Eric Christophereae84392010-10-14 09:29:41 +0000831}
832
Eric Christopher0d581222010-11-19 22:30:02 +0000833void ARMFastISel::ARMSimplifyAddress(Address &Addr, EVT VT) {
Jim Grosbach6b156392010-10-27 21:39:08 +0000834
Eric Christopher212ae932010-10-21 19:40:30 +0000835 assert(VT.isSimple() && "Non-simple types are invalid here!");
Jim Grosbach6b156392010-10-27 21:39:08 +0000836
Eric Christopher212ae932010-10-21 19:40:30 +0000837 bool needsLowering = false;
838 switch (VT.getSimpleVT().SimpleTy) {
839 default:
840 assert(false && "Unhandled load/store type!");
841 case MVT::i1:
842 case MVT::i8:
843 case MVT::i16:
844 case MVT::i32:
845 // Integer loads/stores handle 12-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000846 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000847 break;
848 case MVT::f32:
849 case MVT::f64:
850 // Floating point operands handle 8-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000851 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000852 break;
853 }
Jim Grosbach6b156392010-10-27 21:39:08 +0000854
Eric Christopher827656d2010-11-20 22:38:27 +0000855 // If this is a stack pointer and the offset needs to be simplified then
856 // put the alloca address into a register, set the base type back to
857 // register and continue. This should almost never happen.
858 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
859 TargetRegisterClass *RC = isThumb ? ARM::tGPRRegisterClass :
860 ARM::GPRRegisterClass;
861 unsigned ResultReg = createResultReg(RC);
862 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
863 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
864 TII.get(Opc), ResultReg)
865 .addFrameIndex(Addr.Base.FI)
866 .addImm(0));
867 Addr.Base.Reg = ResultReg;
868 Addr.BaseType = Address::RegBase;
869 }
870
Eric Christopher212ae932010-10-21 19:40:30 +0000871 // Since the offset is too large for the load/store instruction
Eric Christopher318b6ee2010-09-02 00:53:56 +0000872 // get the reg+offset into a register.
Eric Christopher212ae932010-10-21 19:40:30 +0000873 if (needsLowering) {
Eli Friedman9ebf57a2011-04-29 21:22:56 +0000874 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
875 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopher0d581222010-11-19 22:30:02 +0000876 Addr.Offset = 0;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000877 }
Eric Christopher83007122010-08-23 21:44:12 +0000878}
879
Eric Christopher564857f2010-12-01 01:40:24 +0000880void ARMFastISel::AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000881 const MachineInstrBuilder &MIB,
882 unsigned Flags) {
Eric Christopher564857f2010-12-01 01:40:24 +0000883 // addrmode5 output depends on the selection dag addressing dividing the
884 // offset by 4 that it then later multiplies. Do this here as well.
885 if (VT.getSimpleVT().SimpleTy == MVT::f32 ||
886 VT.getSimpleVT().SimpleTy == MVT::f64)
887 Addr.Offset /= 4;
Eric Christopher299bbb22011-04-29 00:03:10 +0000888
Eric Christopher564857f2010-12-01 01:40:24 +0000889 // Frame base works a bit differently. Handle it separately.
890 if (Addr.BaseType == Address::FrameIndexBase) {
891 int FI = Addr.Base.FI;
892 int Offset = Addr.Offset;
893 MachineMemOperand *MMO =
894 FuncInfo.MF->getMachineMemOperand(
895 MachinePointerInfo::getFixedStack(FI, Offset),
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000896 Flags,
Eric Christopher564857f2010-12-01 01:40:24 +0000897 MFI.getObjectSize(FI),
898 MFI.getObjectAlignment(FI));
899 // Now add the rest of the operands.
900 MIB.addFrameIndex(FI);
901
902 // ARM halfword load/stores need an additional operand.
903 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
904
905 MIB.addImm(Addr.Offset);
906 MIB.addMemOperand(MMO);
907 } else {
908 // Now add the rest of the operands.
909 MIB.addReg(Addr.Base.Reg);
Eric Christopher299bbb22011-04-29 00:03:10 +0000910
Eric Christopher564857f2010-12-01 01:40:24 +0000911 // ARM halfword load/stores need an additional operand.
912 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
913
914 MIB.addImm(Addr.Offset);
915 }
916 AddOptionalDefs(MIB);
917}
918
Eric Christopher0d581222010-11-19 22:30:02 +0000919bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000920
Eric Christopherb1cc8482010-08-25 07:23:49 +0000921 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000922 unsigned Opc;
Eric Christopheree56ea62010-10-07 05:50:44 +0000923 TargetRegisterClass *RC;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000924 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000925 // This is mostly going to be Neon/vector support.
926 default: return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000927 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000928 Opc = isThumb ? ARM::t2LDRHi12 : ARM::LDRH;
Eric Christopher7a56f332010-10-08 01:13:17 +0000929 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000930 break;
931 case MVT::i8:
Jim Grosbachc1d30212010-10-27 00:19:44 +0000932 Opc = isThumb ? ARM::t2LDRBi12 : ARM::LDRBi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000933 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000934 break;
Eric Christopherdc908042010-08-31 01:28:42 +0000935 case MVT::i32:
Jim Grosbach3e556122010-10-26 22:37:02 +0000936 Opc = isThumb ? ARM::t2LDRi12 : ARM::LDRi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000937 RC = ARM::GPRRegisterClass;
Eric Christopherdc908042010-08-31 01:28:42 +0000938 break;
Eric Christopher6dab1372010-09-18 01:59:37 +0000939 case MVT::f32:
940 Opc = ARM::VLDRS;
Eric Christopheree56ea62010-10-07 05:50:44 +0000941 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000942 break;
943 case MVT::f64:
944 Opc = ARM::VLDRD;
Eric Christopheree56ea62010-10-07 05:50:44 +0000945 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000946 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000947 }
Eric Christopher564857f2010-12-01 01:40:24 +0000948 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000949 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000950
Eric Christopher564857f2010-12-01 01:40:24 +0000951 // Create the base instruction, then add the operands.
952 ResultReg = createResultReg(RC);
953 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
954 TII.get(Opc), ResultReg);
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000955 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOLoad);
Eric Christopherdc908042010-08-31 01:28:42 +0000956 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000957}
958
Eric Christopher43b62be2010-09-27 06:02:23 +0000959bool ARMFastISel::SelectLoad(const Instruction *I) {
Eli Friedman4136d232011-09-02 22:33:24 +0000960 // Atomic loads need special handling.
961 if (cast<LoadInst>(I)->isAtomic())
962 return false;
963
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000964 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000965 MVT VT;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000966 if (!isLoadTypeLegal(I->getType(), VT))
967 return false;
968
Eric Christopher564857f2010-12-01 01:40:24 +0000969 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +0000970 Address Addr;
Eric Christopher564857f2010-12-01 01:40:24 +0000971 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000972
973 unsigned ResultReg;
Eric Christopher0d581222010-11-19 22:30:02 +0000974 if (!ARMEmitLoad(VT, ResultReg, Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000975 UpdateValueMap(I, ResultReg);
976 return true;
977}
978
Eric Christopher0d581222010-11-19 22:30:02 +0000979bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000980 unsigned StrOpc;
981 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000982 // This is mostly going to be Neon/vector support.
Eric Christopher318b6ee2010-09-02 00:53:56 +0000983 default: return false;
Eric Christopher4c914122010-11-02 23:59:09 +0000984 case MVT::i1: {
985 unsigned Res = createResultReg(isThumb ? ARM::tGPRRegisterClass :
986 ARM::GPRRegisterClass);
987 unsigned Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
988 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
989 TII.get(Opc), Res)
990 .addReg(SrcReg).addImm(1));
991 SrcReg = Res;
992 } // Fallthrough here.
Eric Christopher2896df82010-10-15 18:02:07 +0000993 case MVT::i8:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000994 StrOpc = isThumb ? ARM::t2STRBi12 : ARM::STRBi12;
Eric Christopher15418772010-10-12 05:39:06 +0000995 break;
996 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000997 StrOpc = isThumb ? ARM::t2STRHi12 : ARM::STRH;
Eric Christopher15418772010-10-12 05:39:06 +0000998 break;
Eric Christopher47650ec2010-10-16 01:10:35 +0000999 case MVT::i32:
Jim Grosbach7e3383c2010-10-27 23:12:14 +00001000 StrOpc = isThumb ? ARM::t2STRi12 : ARM::STRi12;
Eric Christopher47650ec2010-10-16 01:10:35 +00001001 break;
Eric Christopher56d2b722010-09-02 23:43:26 +00001002 case MVT::f32:
1003 if (!Subtarget->hasVFP2()) return false;
1004 StrOpc = ARM::VSTRS;
1005 break;
1006 case MVT::f64:
1007 if (!Subtarget->hasVFP2()) return false;
1008 StrOpc = ARM::VSTRD;
1009 break;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001010 }
Eric Christopher564857f2010-12-01 01:40:24 +00001011 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +00001012 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +00001013
Eric Christopher564857f2010-12-01 01:40:24 +00001014 // Create the base instruction, then add the operands.
1015 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1016 TII.get(StrOpc))
1017 .addReg(SrcReg, getKillRegState(true));
Cameron Zwarichc152aa62011-05-28 20:34:49 +00001018 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOStore);
Eric Christopher318b6ee2010-09-02 00:53:56 +00001019 return true;
1020}
1021
Eric Christopher43b62be2010-09-27 06:02:23 +00001022bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher318b6ee2010-09-02 00:53:56 +00001023 Value *Op0 = I->getOperand(0);
1024 unsigned SrcReg = 0;
1025
Eli Friedman4136d232011-09-02 22:33:24 +00001026 // Atomic stores need special handling.
1027 if (cast<StoreInst>(I)->isAtomic())
1028 return false;
1029
Eric Christopher564857f2010-12-01 01:40:24 +00001030 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001031 MVT VT;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001032 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopher543cf052010-09-01 22:16:27 +00001033 return false;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001034
Eric Christopher1b61ef42010-09-02 01:48:11 +00001035 // Get the value to be stored into a register.
1036 SrcReg = getRegForValue(Op0);
Eric Christopher564857f2010-12-01 01:40:24 +00001037 if (SrcReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001038
Eric Christopher564857f2010-12-01 01:40:24 +00001039 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +00001040 Address Addr;
Eric Christopher0d581222010-11-19 22:30:02 +00001041 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher318b6ee2010-09-02 00:53:56 +00001042 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001043
Eric Christopher0d581222010-11-19 22:30:02 +00001044 if (!ARMEmitStore(VT, SrcReg, Addr)) return false;
Eric Christophera5b1e682010-09-17 22:28:18 +00001045 return true;
1046}
1047
1048static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1049 switch (Pred) {
1050 // Needs two compares...
1051 case CmpInst::FCMP_ONE:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001052 case CmpInst::FCMP_UEQ:
Eric Christophera5b1e682010-09-17 22:28:18 +00001053 default:
Eric Christopher4053e632010-11-02 01:24:49 +00001054 // AL is our "false" for now. The other two need more compares.
Eric Christophera5b1e682010-09-17 22:28:18 +00001055 return ARMCC::AL;
1056 case CmpInst::ICMP_EQ:
1057 case CmpInst::FCMP_OEQ:
1058 return ARMCC::EQ;
1059 case CmpInst::ICMP_SGT:
1060 case CmpInst::FCMP_OGT:
1061 return ARMCC::GT;
1062 case CmpInst::ICMP_SGE:
1063 case CmpInst::FCMP_OGE:
1064 return ARMCC::GE;
1065 case CmpInst::ICMP_UGT:
1066 case CmpInst::FCMP_UGT:
1067 return ARMCC::HI;
1068 case CmpInst::FCMP_OLT:
1069 return ARMCC::MI;
1070 case CmpInst::ICMP_ULE:
1071 case CmpInst::FCMP_OLE:
1072 return ARMCC::LS;
1073 case CmpInst::FCMP_ORD:
1074 return ARMCC::VC;
1075 case CmpInst::FCMP_UNO:
1076 return ARMCC::VS;
1077 case CmpInst::FCMP_UGE:
1078 return ARMCC::PL;
1079 case CmpInst::ICMP_SLT:
1080 case CmpInst::FCMP_ULT:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001081 return ARMCC::LT;
Eric Christophera5b1e682010-09-17 22:28:18 +00001082 case CmpInst::ICMP_SLE:
1083 case CmpInst::FCMP_ULE:
1084 return ARMCC::LE;
1085 case CmpInst::FCMP_UNE:
1086 case CmpInst::ICMP_NE:
1087 return ARMCC::NE;
1088 case CmpInst::ICMP_UGE:
1089 return ARMCC::HS;
1090 case CmpInst::ICMP_ULT:
1091 return ARMCC::LO;
1092 }
Eric Christopher543cf052010-09-01 22:16:27 +00001093}
1094
Eric Christopher43b62be2010-09-27 06:02:23 +00001095bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christophere5734102010-09-03 00:35:47 +00001096 const BranchInst *BI = cast<BranchInst>(I);
1097 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1098 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopherac1a19e2010-09-09 01:06:51 +00001099
Eric Christophere5734102010-09-03 00:35:47 +00001100 // Simple branch support.
Jim Grosbach16cb3762010-11-09 19:22:26 +00001101
Eric Christopher0e6233b2010-10-29 21:08:19 +00001102 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1103 // behavior.
Eric Christopher0e6233b2010-10-29 21:08:19 +00001104 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Chad Rosier75698f32011-10-26 23:17:28 +00001105 if (CI->hasOneUse() && (CI->getParent() == I->getParent())) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001106
1107 // Get the compare predicate.
Eric Christopher632ae892011-04-29 21:56:31 +00001108 // Try to take advantage of fallthrough opportunities.
1109 CmpInst::Predicate Predicate = CI->getPredicate();
1110 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1111 std::swap(TBB, FBB);
1112 Predicate = CmpInst::getInversePredicate(Predicate);
1113 }
1114
1115 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher0e6233b2010-10-29 21:08:19 +00001116
1117 // We may not handle every CC for now.
1118 if (ARMPred == ARMCC::AL) return false;
1119
Chad Rosier75698f32011-10-26 23:17:28 +00001120 // Emit the compare.
Chad Rosierade62002011-10-26 23:25:44 +00001121 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1)))
Chad Rosier75698f32011-10-26 23:17:28 +00001122 return false;
Jim Grosbach16cb3762010-11-09 19:22:26 +00001123
Eric Christopher0e6233b2010-10-29 21:08:19 +00001124 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1125 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1126 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
1127 FastEmitBranch(FBB, DL);
1128 FuncInfo.MBB->addSuccessor(TBB);
1129 return true;
1130 }
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001131 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1132 MVT SourceVT;
1133 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
Eli Friedman76927d732011-05-25 23:49:02 +00001134 (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001135 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1136 unsigned OpReg = getRegForValue(TI->getOperand(0));
1137 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1138 TII.get(TstOpc))
1139 .addReg(OpReg).addImm(1));
1140
1141 unsigned CCMode = ARMCC::NE;
1142 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1143 std::swap(TBB, FBB);
1144 CCMode = ARMCC::EQ;
1145 }
1146
1147 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1148 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1149 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1150
1151 FastEmitBranch(FBB, DL);
1152 FuncInfo.MBB->addSuccessor(TBB);
1153 return true;
1154 }
Chad Rosier6d64b3a2011-10-27 00:21:16 +00001155 } else if (const ConstantInt *CI =
1156 dyn_cast<ConstantInt>(BI->getCondition())) {
1157 uint64_t Imm = CI->getZExtValue();
1158 MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
1159 FastEmitBranch(Target, DL);
1160 return true;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001161 }
Jim Grosbach16cb3762010-11-09 19:22:26 +00001162
Eric Christopher0e6233b2010-10-29 21:08:19 +00001163 unsigned CmpReg = getRegForValue(BI->getCondition());
1164 if (CmpReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001165
Stuart Hastingsc5eecbc2011-04-16 03:31:26 +00001166 // We've been divorced from our compare! Our block was split, and
1167 // now our compare lives in a predecessor block. We musn't
1168 // re-compare here, as the children of the compare aren't guaranteed
1169 // live across the block boundary (we *could* check for this).
1170 // Regardless, the compare has been done in the predecessor block,
1171 // and it left a value for us in a virtual register. Ergo, we test
1172 // the one-bit value left in the virtual register.
1173 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1174 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TstOpc))
1175 .addReg(CmpReg).addImm(1));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001176
Eric Christopher7a20a372011-04-28 16:52:09 +00001177 unsigned CCMode = ARMCC::NE;
1178 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1179 std::swap(TBB, FBB);
1180 CCMode = ARMCC::EQ;
1181 }
1182
Eric Christophere5734102010-09-03 00:35:47 +00001183 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
Eric Christophere5734102010-09-03 00:35:47 +00001184 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
Eric Christopher7a20a372011-04-28 16:52:09 +00001185 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Eric Christophere5734102010-09-03 00:35:47 +00001186 FastEmitBranch(FBB, DL);
1187 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001188 return true;
Eric Christophere5734102010-09-03 00:35:47 +00001189}
1190
Chad Rosierade62002011-10-26 23:25:44 +00001191bool ARMFastISel::ARMEmitCmp(const Value *Src1Value, const Value *Src2Value) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001192 MVT VT;
Chad Rosierade62002011-10-26 23:25:44 +00001193 Type *Ty = Src1Value->getType();
Eric Christopherd43393a2010-09-08 23:13:45 +00001194 if (!isTypeLegal(Ty, VT))
1195 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001196
Chad Rosierade62002011-10-26 23:25:44 +00001197 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy());
1198 if (isFloat && !Subtarget->hasVFP2())
Eric Christopherd43393a2010-09-08 23:13:45 +00001199 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001200
Eric Christopherd43393a2010-09-08 23:13:45 +00001201 unsigned CmpOpc;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001202 switch (VT.SimpleTy) {
Chad Rosier8ff26642011-10-26 23:34:37 +00001203 // TODO: Add support for non-legal types (i.e., i1, i8, i16).
Eric Christopherd43393a2010-09-08 23:13:45 +00001204 default: return false;
1205 // TODO: Verify compares.
1206 case MVT::f32:
1207 CmpOpc = ARM::VCMPES;
1208 break;
1209 case MVT::f64:
1210 CmpOpc = ARM::VCMPED;
1211 break;
1212 case MVT::i32:
1213 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
1214 break;
1215 }
1216
Chad Rosier530f7ce2011-10-26 22:47:55 +00001217 unsigned Src1 = getRegForValue(Src1Value);
1218 if (Src1 == 0) return false;
1219
1220 unsigned Src2 = getRegForValue(Src2Value);
1221 if (Src2 == 0) return false;
1222
1223 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1224 .addReg(Src1).addReg(Src2));
Chad Rosierade62002011-10-26 23:25:44 +00001225
1226 // For floating point we need to move the result to a comparison register
1227 // that we can then use for branches.
1228 if (Ty->isFloatTy() || Ty->isDoubleTy())
1229 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1230 TII.get(ARM::FMSTAT)));
Chad Rosier530f7ce2011-10-26 22:47:55 +00001231 return true;
1232}
1233
1234bool ARMFastISel::SelectCmp(const Instruction *I) {
1235 const CmpInst *CI = cast<CmpInst>(I);
Chad Rosierade62002011-10-26 23:25:44 +00001236 Type *Ty = CI->getOperand(0)->getType();
Chad Rosier530f7ce2011-10-26 22:47:55 +00001237
Eric Christopher229207a2010-09-29 01:14:47 +00001238 // Get the compare predicate.
1239 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopherdccd2c32010-10-11 08:38:55 +00001240
Eric Christopher229207a2010-09-29 01:14:47 +00001241 // We may not handle every CC for now.
1242 if (ARMPred == ARMCC::AL) return false;
1243
Chad Rosier530f7ce2011-10-26 22:47:55 +00001244 // Emit the compare.
Chad Rosierade62002011-10-26 23:25:44 +00001245 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1)))
Chad Rosier530f7ce2011-10-26 22:47:55 +00001246 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001247
Eric Christopher229207a2010-09-29 01:14:47 +00001248 // Now set a register based on the comparison. Explicitly set the predicates
1249 // here.
Eric Christopher338c2532010-10-07 05:31:49 +00001250 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCi : ARM::MOVCCi;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001251 TargetRegisterClass *RC = isThumb ? ARM::rGPRRegisterClass
Eric Christopher5d18d922010-10-07 05:39:19 +00001252 : ARM::GPRRegisterClass;
1253 unsigned DestReg = createResultReg(RC);
Chad Rosierade62002011-10-26 23:25:44 +00001254 Constant *Zero = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher229207a2010-09-29 01:14:47 +00001255 unsigned ZeroReg = TargetMaterializeConstant(Zero);
Chad Rosierade62002011-10-26 23:25:44 +00001256 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy());
Chad Rosier530f7ce2011-10-26 22:47:55 +00001257 unsigned CondReg = isFloat ? ARM::FPSCR : ARM::CPSR;
Eric Christopher229207a2010-09-29 01:14:47 +00001258 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), DestReg)
1259 .addReg(ZeroReg).addImm(1)
1260 .addImm(ARMPred).addReg(CondReg);
1261
Eric Christophera5b1e682010-09-17 22:28:18 +00001262 UpdateValueMap(I, DestReg);
Eric Christopherd43393a2010-09-08 23:13:45 +00001263 return true;
1264}
1265
Eric Christopher43b62be2010-09-27 06:02:23 +00001266bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopher46203602010-09-09 00:26:48 +00001267 // Make sure we have VFP and that we're extending float to double.
1268 if (!Subtarget->hasVFP2()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001269
Eric Christopher46203602010-09-09 00:26:48 +00001270 Value *V = I->getOperand(0);
1271 if (!I->getType()->isDoubleTy() ||
1272 !V->getType()->isFloatTy()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001273
Eric Christopher46203602010-09-09 00:26:48 +00001274 unsigned Op = getRegForValue(V);
1275 if (Op == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001276
Eric Christopher46203602010-09-09 00:26:48 +00001277 unsigned Result = createResultReg(ARM::DPRRegisterClass);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001278 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001279 TII.get(ARM::VCVTDS), Result)
Eric Christopherce07b542010-09-09 20:26:31 +00001280 .addReg(Op));
1281 UpdateValueMap(I, Result);
1282 return true;
1283}
1284
Eric Christopher43b62be2010-09-27 06:02:23 +00001285bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopherce07b542010-09-09 20:26:31 +00001286 // Make sure we have VFP and that we're truncating double to float.
1287 if (!Subtarget->hasVFP2()) return false;
1288
1289 Value *V = I->getOperand(0);
Eric Christopher022b7fb2010-10-05 23:13:24 +00001290 if (!(I->getType()->isFloatTy() &&
1291 V->getType()->isDoubleTy())) return false;
Eric Christopherce07b542010-09-09 20:26:31 +00001292
1293 unsigned Op = getRegForValue(V);
1294 if (Op == 0) return false;
1295
1296 unsigned Result = createResultReg(ARM::SPRRegisterClass);
Eric Christopherce07b542010-09-09 20:26:31 +00001297 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001298 TII.get(ARM::VCVTSD), Result)
Eric Christopher46203602010-09-09 00:26:48 +00001299 .addReg(Op));
1300 UpdateValueMap(I, Result);
1301 return true;
1302}
1303
Eric Christopher43b62be2010-09-27 06:02:23 +00001304bool ARMFastISel::SelectSIToFP(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001305 // Make sure we have VFP.
1306 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001307
Duncan Sands1440e8b2010-11-03 11:35:31 +00001308 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001309 Type *Ty = I->getType();
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001310 if (!isTypeLegal(Ty, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001311 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001312
Eli Friedman783c6642011-05-25 19:09:45 +00001313 // FIXME: Handle sign-extension where necessary.
1314 if (!I->getOperand(0)->getType()->isIntegerTy(32))
1315 return false;
1316
Eric Christopher9a040492010-09-09 18:54:59 +00001317 unsigned Op = getRegForValue(I->getOperand(0));
1318 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001319
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001320 // The conversion routine works on fp-reg to fp-reg and the operand above
1321 // was an integer, move it to the fp registers if possible.
Eric Christopher022b7fb2010-10-05 23:13:24 +00001322 unsigned FP = ARMMoveToFPReg(MVT::f32, Op);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001323 if (FP == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001324
Eric Christopher9a040492010-09-09 18:54:59 +00001325 unsigned Opc;
1326 if (Ty->isFloatTy()) Opc = ARM::VSITOS;
1327 else if (Ty->isDoubleTy()) Opc = ARM::VSITOD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001328 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001329
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001330 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Eric Christopher9a040492010-09-09 18:54:59 +00001331 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1332 ResultReg)
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001333 .addReg(FP));
Eric Christopherce07b542010-09-09 20:26:31 +00001334 UpdateValueMap(I, ResultReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001335 return true;
1336}
1337
Eric Christopher43b62be2010-09-27 06:02:23 +00001338bool ARMFastISel::SelectFPToSI(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001339 // Make sure we have VFP.
1340 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001341
Duncan Sands1440e8b2010-11-03 11:35:31 +00001342 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001343 Type *RetTy = I->getType();
Eric Christopher920a2082010-09-10 00:35:09 +00001344 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001345 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001346
Eric Christopher9a040492010-09-09 18:54:59 +00001347 unsigned Op = getRegForValue(I->getOperand(0));
1348 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001349
Eric Christopher9a040492010-09-09 18:54:59 +00001350 unsigned Opc;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001351 Type *OpTy = I->getOperand(0)->getType();
Eric Christopher9a040492010-09-09 18:54:59 +00001352 if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS;
1353 else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001354 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001355
Eric Christopher022b7fb2010-10-05 23:13:24 +00001356 // f64->s32 or f32->s32 both need an intermediate f32 reg.
1357 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Eric Christopher9a040492010-09-09 18:54:59 +00001358 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1359 ResultReg)
1360 .addReg(Op));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001361
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001362 // This result needs to be in an integer register, but the conversion only
1363 // takes place in fp-regs.
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001364 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001365 if (IntReg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001366
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001367 UpdateValueMap(I, IntReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001368 return true;
1369}
1370
Eric Christopher3bbd3962010-10-11 08:27:59 +00001371bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001372 MVT VT;
1373 if (!isTypeLegal(I->getType(), VT))
Eric Christopher3bbd3962010-10-11 08:27:59 +00001374 return false;
1375
1376 // Things need to be register sized for register moves.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001377 if (VT != MVT::i32) return false;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001378 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
1379
1380 unsigned CondReg = getRegForValue(I->getOperand(0));
1381 if (CondReg == 0) return false;
1382 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1383 if (Op1Reg == 0) return false;
1384 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1385 if (Op2Reg == 0) return false;
1386
1387 unsigned CmpOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1388 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1389 .addReg(CondReg).addImm(1));
1390 unsigned ResultReg = createResultReg(RC);
1391 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCr : ARM::MOVCCr;
1392 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), ResultReg)
1393 .addReg(Op1Reg).addReg(Op2Reg)
1394 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
1395 UpdateValueMap(I, ResultReg);
1396 return true;
1397}
1398
Eric Christopher08637852010-09-30 22:34:19 +00001399bool ARMFastISel::SelectSDiv(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001400 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001401 Type *Ty = I->getType();
Eric Christopher08637852010-09-30 22:34:19 +00001402 if (!isTypeLegal(Ty, VT))
1403 return false;
1404
1405 // If we have integer div support we should have selected this automagically.
1406 // In case we have a real miss go ahead and return false and we'll pick
1407 // it up later.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001408 if (Subtarget->hasDivide()) return false;
1409
Eric Christopher08637852010-09-30 22:34:19 +00001410 // Otherwise emit a libcall.
1411 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christopher7bdc4de2010-10-11 08:31:54 +00001412 if (VT == MVT::i8)
1413 LC = RTLIB::SDIV_I8;
1414 else if (VT == MVT::i16)
Eric Christopher08637852010-09-30 22:34:19 +00001415 LC = RTLIB::SDIV_I16;
1416 else if (VT == MVT::i32)
1417 LC = RTLIB::SDIV_I32;
1418 else if (VT == MVT::i64)
1419 LC = RTLIB::SDIV_I64;
1420 else if (VT == MVT::i128)
1421 LC = RTLIB::SDIV_I128;
1422 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopherdccd2c32010-10-11 08:38:55 +00001423
Eric Christopher08637852010-09-30 22:34:19 +00001424 return ARMEmitLibcall(I, LC);
1425}
1426
Eric Christopher6a880d62010-10-11 08:37:26 +00001427bool ARMFastISel::SelectSRem(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 Christopher6a880d62010-10-11 08:37:26 +00001430 if (!isTypeLegal(Ty, VT))
1431 return false;
1432
1433 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1434 if (VT == MVT::i8)
1435 LC = RTLIB::SREM_I8;
1436 else if (VT == MVT::i16)
1437 LC = RTLIB::SREM_I16;
1438 else if (VT == MVT::i32)
1439 LC = RTLIB::SREM_I32;
1440 else if (VT == MVT::i64)
1441 LC = RTLIB::SREM_I64;
1442 else if (VT == MVT::i128)
1443 LC = RTLIB::SREM_I128;
Eric Christophera1640d92010-10-11 08:40:05 +00001444 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christopher2896df82010-10-15 18:02:07 +00001445
Eric Christopher6a880d62010-10-11 08:37:26 +00001446 return ARMEmitLibcall(I, LC);
1447}
1448
Eric Christopher43b62be2010-09-27 06:02:23 +00001449bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
Eric Christopherbd6bf082010-09-09 01:02:03 +00001450 EVT VT = TLI.getValueType(I->getType(), true);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001451
Eric Christopherbc39b822010-09-09 00:53:57 +00001452 // We can get here in the case when we want to use NEON for our fp
1453 // operations, but can't figure out how to. Just use the vfp instructions
1454 // if we have them.
1455 // FIXME: It'd be nice to use NEON instructions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001456 Type *Ty = I->getType();
Eric Christopherbd6bf082010-09-09 01:02:03 +00001457 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1458 if (isFloat && !Subtarget->hasVFP2())
1459 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001460
Eric Christopherbc39b822010-09-09 00:53:57 +00001461 unsigned Op1 = getRegForValue(I->getOperand(0));
1462 if (Op1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001463
Eric Christopherbc39b822010-09-09 00:53:57 +00001464 unsigned Op2 = getRegForValue(I->getOperand(1));
1465 if (Op2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001466
Eric Christopherbc39b822010-09-09 00:53:57 +00001467 unsigned Opc;
Duncan Sandscdfad362010-11-03 12:17:33 +00001468 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopherbc39b822010-09-09 00:53:57 +00001469 switch (ISDOpcode) {
1470 default: return false;
1471 case ISD::FADD:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001472 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001473 break;
1474 case ISD::FSUB:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001475 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001476 break;
1477 case ISD::FMUL:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001478 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001479 break;
1480 }
Eric Christopherbd6bf082010-09-09 01:02:03 +00001481 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Eric Christopherbc39b822010-09-09 00:53:57 +00001482 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1483 TII.get(Opc), ResultReg)
1484 .addReg(Op1).addReg(Op2));
Eric Christopherce07b542010-09-09 20:26:31 +00001485 UpdateValueMap(I, ResultReg);
Eric Christopherbc39b822010-09-09 00:53:57 +00001486 return true;
1487}
1488
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001489// Call Handling Code
1490
Eric Christopherfa87d662010-10-18 02:17:53 +00001491bool ARMFastISel::FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src,
1492 EVT SrcVT, unsigned &ResultReg) {
1493 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
1494 Src, /*TODO: Kill=*/false);
Jim Grosbach6b156392010-10-27 21:39:08 +00001495
Eric Christopherfa87d662010-10-18 02:17:53 +00001496 if (RR != 0) {
1497 ResultReg = RR;
1498 return true;
1499 } else
Jim Grosbach6b156392010-10-27 21:39:08 +00001500 return false;
Eric Christopherfa87d662010-10-18 02:17:53 +00001501}
1502
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001503// This is largely taken directly from CCAssignFnForNode - we don't support
1504// varargs in FastISel so that part has been removed.
1505// TODO: We may not support all of this.
1506CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
1507 switch (CC) {
1508 default:
1509 llvm_unreachable("Unsupported calling convention");
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001510 case CallingConv::Fast:
Evan Cheng1f8b40d2010-10-22 18:57:05 +00001511 // Ignore fastcc. Silence compiler warnings.
1512 (void)RetFastCC_ARM_APCS;
1513 (void)FastCC_ARM_APCS;
1514 // Fallthrough
1515 case CallingConv::C:
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001516 // Use target triple & subtarget features to do actual dispatch.
1517 if (Subtarget->isAAPCS_ABI()) {
1518 if (Subtarget->hasVFP2() &&
1519 FloatABIType == FloatABI::Hard)
1520 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1521 else
1522 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1523 } else
1524 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1525 case CallingConv::ARM_AAPCS_VFP:
1526 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1527 case CallingConv::ARM_AAPCS:
1528 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1529 case CallingConv::ARM_APCS:
1530 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1531 }
1532}
1533
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001534bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1535 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001536 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001537 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1538 SmallVectorImpl<unsigned> &RegArgs,
1539 CallingConv::ID CC,
1540 unsigned &NumBytes) {
1541 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001542 CCState CCInfo(CC, false, *FuncInfo.MF, TM, ArgLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001543 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC, false));
1544
1545 // Get a count of how many bytes are to be pushed on the stack.
1546 NumBytes = CCInfo.getNextStackOffset();
1547
1548 // Issue CALLSEQ_START
Evan Chengd5b03f22011-06-28 21:14:33 +00001549 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001550 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1551 TII.get(AdjStackDown))
1552 .addImm(NumBytes));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001553
1554 // Process the args.
1555 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1556 CCValAssign &VA = ArgLocs[i];
1557 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sands1440e8b2010-11-03 11:35:31 +00001558 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001559
Eric Christopher4a2b3162011-01-27 05:44:56 +00001560 // We don't handle NEON/vector parameters yet.
1561 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
Eric Christophera4633f52010-10-23 09:37:17 +00001562 return false;
1563
Eric Christopherf9764fa2010-09-30 20:49:44 +00001564 // Handle arg promotion, etc.
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001565 switch (VA.getLocInfo()) {
1566 case CCValAssign::Full: break;
Eric Christopherfa87d662010-10-18 02:17:53 +00001567 case CCValAssign::SExt: {
1568 bool Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1569 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001570 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001571 Emitted = true;
1572 ArgVT = VA.getLocVT();
1573 break;
1574 }
1575 case CCValAssign::ZExt: {
1576 bool Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1577 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001578 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001579 Emitted = true;
1580 ArgVT = VA.getLocVT();
1581 break;
1582 }
1583 case CCValAssign::AExt: {
Eric Christopherfa87d662010-10-18 02:17:53 +00001584 bool Emitted = FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1585 Arg, ArgVT, Arg);
1586 if (!Emitted)
1587 Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1588 Arg, ArgVT, Arg);
1589 if (!Emitted)
1590 Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1591 Arg, ArgVT, Arg);
1592
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001593 assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001594 ArgVT = VA.getLocVT();
1595 break;
1596 }
1597 case CCValAssign::BCvt: {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001598 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001599 /*TODO: Kill=*/false);
Eric Christopherfa87d662010-10-18 02:17:53 +00001600 assert(BC != 0 && "Failed to emit a bitcast!");
1601 Arg = BC;
1602 ArgVT = VA.getLocVT();
1603 break;
1604 }
1605 default: llvm_unreachable("Unknown arg promotion!");
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001606 }
1607
1608 // Now copy/store arg to correct locations.
Eric Christopherfb0b8922010-10-11 21:20:02 +00001609 if (VA.isRegLoc() && !VA.needsCustom()) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001610 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
Eric Christopherf9764fa2010-09-30 20:49:44 +00001611 VA.getLocReg())
1612 .addReg(Arg);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001613 RegArgs.push_back(VA.getLocReg());
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001614 } else if (VA.needsCustom()) {
1615 // TODO: We need custom lowering for vector (v2f64) args.
1616 if (VA.getLocVT() != MVT::f64) return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001617
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001618 CCValAssign &NextVA = ArgLocs[++i];
1619
1620 // TODO: Only handle register args for now.
1621 if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false;
1622
1623 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1624 TII.get(ARM::VMOVRRD), VA.getLocReg())
1625 .addReg(NextVA.getLocReg(), RegState::Define)
1626 .addReg(Arg));
1627 RegArgs.push_back(VA.getLocReg());
1628 RegArgs.push_back(NextVA.getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001629 } else {
Eric Christopher5b924802010-10-21 20:09:54 +00001630 assert(VA.isMemLoc());
1631 // Need to store on the stack.
Eric Christopher0d581222010-11-19 22:30:02 +00001632 Address Addr;
1633 Addr.BaseType = Address::RegBase;
1634 Addr.Base.Reg = ARM::SP;
1635 Addr.Offset = VA.getLocMemOffset();
Eric Christopher5b924802010-10-21 20:09:54 +00001636
Eric Christopher0d581222010-11-19 22:30:02 +00001637 if (!ARMEmitStore(ArgVT, Arg, Addr)) return false;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001638 }
1639 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001640 return true;
1641}
1642
Duncan Sands1440e8b2010-11-03 11:35:31 +00001643bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001644 const Instruction *I, CallingConv::ID CC,
1645 unsigned &NumBytes) {
1646 // Issue CALLSEQ_END
Evan Chengd5b03f22011-06-28 21:14:33 +00001647 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001648 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1649 TII.get(AdjStackUp))
1650 .addImm(NumBytes).addImm(0));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001651
1652 // Now the return value.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001653 if (RetVT != MVT::isVoid) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001654 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001655 CCState CCInfo(CC, false, *FuncInfo.MF, TM, RVLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001656 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true));
1657
1658 // Copy all of the result registers out of their specified physreg.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001659 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopher14df8822010-10-01 00:00:11 +00001660 // For this move we copy into two registers and then move into the
1661 // double fp reg we want.
Eric Christopher14df8822010-10-01 00:00:11 +00001662 EVT DestVT = RVLocs[0].getValVT();
1663 TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
1664 unsigned ResultReg = createResultReg(DstRC);
1665 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1666 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopher3659ac22010-10-20 08:02:24 +00001667 .addReg(RVLocs[0].getLocReg())
1668 .addReg(RVLocs[1].getLocReg()));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001669
Eric Christopher3659ac22010-10-20 08:02:24 +00001670 UsedRegs.push_back(RVLocs[0].getLocReg());
1671 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach6b156392010-10-27 21:39:08 +00001672
Eric Christopherdccd2c32010-10-11 08:38:55 +00001673 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001674 UpdateValueMap(I, ResultReg);
1675 } else {
Jim Grosbach95369592010-10-13 23:34:31 +00001676 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Eric Christopher14df8822010-10-01 00:00:11 +00001677 EVT CopyVT = RVLocs[0].getValVT();
1678 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001679
Eric Christopher14df8822010-10-01 00:00:11 +00001680 unsigned ResultReg = createResultReg(DstRC);
1681 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1682 ResultReg).addReg(RVLocs[0].getLocReg());
1683 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001684
Eric Christopherdccd2c32010-10-11 08:38:55 +00001685 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001686 UpdateValueMap(I, ResultReg);
1687 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001688 }
1689
Eric Christopherdccd2c32010-10-11 08:38:55 +00001690 return true;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001691}
1692
Eric Christopher4f512ef2010-10-22 01:28:00 +00001693bool ARMFastISel::SelectRet(const Instruction *I) {
1694 const ReturnInst *Ret = cast<ReturnInst>(I);
1695 const Function &F = *I->getParent()->getParent();
Jim Grosbach6b156392010-10-27 21:39:08 +00001696
Eric Christopher4f512ef2010-10-22 01:28:00 +00001697 if (!FuncInfo.CanLowerReturn)
1698 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001699
Eric Christopher4f512ef2010-10-22 01:28:00 +00001700 if (F.isVarArg())
1701 return false;
1702
1703 CallingConv::ID CC = F.getCallingConv();
1704 if (Ret->getNumOperands() > 0) {
1705 SmallVector<ISD::OutputArg, 4> Outs;
1706 GetReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
1707 Outs, TLI);
1708
1709 // Analyze operands of the call, assigning locations to each operand.
1710 SmallVector<CCValAssign, 16> ValLocs;
Jim Grosbachb04546f2011-09-13 20:30:37 +00001711 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, TM, ValLocs,I->getContext());
Eric Christopher4f512ef2010-10-22 01:28:00 +00001712 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */));
1713
1714 const Value *RV = Ret->getOperand(0);
1715 unsigned Reg = getRegForValue(RV);
1716 if (Reg == 0)
1717 return false;
1718
1719 // Only handle a single return value for now.
1720 if (ValLocs.size() != 1)
1721 return false;
1722
1723 CCValAssign &VA = ValLocs[0];
Jim Grosbach6b156392010-10-27 21:39:08 +00001724
Eric Christopher4f512ef2010-10-22 01:28:00 +00001725 // Don't bother handling odd stuff for now.
Chad Rosier3a7572f2011-10-17 22:54:23 +00001726 // FIXME: Should be able to handle i1, i8, and/or i16 return types.
Eric Christopher4f512ef2010-10-22 01:28:00 +00001727 if (VA.getLocInfo() != CCValAssign::Full)
1728 return false;
1729 // Only handle register returns for now.
1730 if (!VA.isRegLoc())
1731 return false;
1732 // TODO: For now, don't try to handle cases where getLocInfo()
1733 // says Full but the types don't match.
Duncan Sands1e96bab2010-11-04 10:49:57 +00001734 if (TLI.getValueType(RV->getType()) != VA.getValVT())
Eric Christopher4f512ef2010-10-22 01:28:00 +00001735 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001736
Eric Christopher4f512ef2010-10-22 01:28:00 +00001737 // Make the copy.
1738 unsigned SrcReg = Reg + VA.getValNo();
1739 unsigned DstReg = VA.getLocReg();
1740 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
1741 // Avoid a cross-class copy. This is very unlikely.
1742 if (!SrcRC->contains(DstReg))
1743 return false;
1744 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1745 DstReg).addReg(SrcReg);
1746
1747 // Mark the register as live out of the function.
1748 MRI.addLiveOut(VA.getLocReg());
1749 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001750
Eric Christopher4f512ef2010-10-22 01:28:00 +00001751 unsigned RetOpc = isThumb ? ARM::tBX_RET : ARM::BX_RET;
1752 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1753 TII.get(RetOpc)));
1754 return true;
1755}
1756
Eric Christopher872f4a22011-02-22 01:37:10 +00001757unsigned ARMFastISel::ARMSelectCallOp(const GlobalValue *GV) {
1758
Eric Christopher872f4a22011-02-22 01:37:10 +00001759 // Darwin needs the r9 versions of the opcodes.
1760 bool isDarwin = Subtarget->isTargetDarwin();
Eric Christopher04356612011-04-05 00:39:26 +00001761 if (isThumb) {
Eric Christopher872f4a22011-02-22 01:37:10 +00001762 return isDarwin ? ARM::tBLr9 : ARM::tBL;
1763 } else {
1764 return isDarwin ? ARM::BLr9 : ARM::BL;
1765 }
1766}
1767
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001768// A quick function that will emit a call for a named libcall in F with the
1769// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopherdccd2c32010-10-11 08:38:55 +00001770// can emit a call for any libcall we can produce. This is an abridged version
1771// of the full call infrastructure since we won't need to worry about things
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001772// like computed function pointers or strange arguments at call sites.
1773// TODO: Try to unify this and the normal call bits for ARM, then try to unify
1774// with X86.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001775bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
1776 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001777
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001778 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001779 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001780 MVT RetVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001781 if (RetTy->isVoidTy())
1782 RetVT = MVT::isVoid;
1783 else if (!isTypeLegal(RetTy, RetVT))
1784 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001785
Eric Christopher836c6242010-12-15 23:47:29 +00001786 // TODO: For now if we have long calls specified we don't handle the call.
1787 if (EnableARMLongCalls) return false;
1788
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001789 // Set up the argument vectors.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001790 SmallVector<Value*, 8> Args;
1791 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001792 SmallVector<MVT, 8> ArgVTs;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001793 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1794 Args.reserve(I->getNumOperands());
1795 ArgRegs.reserve(I->getNumOperands());
1796 ArgVTs.reserve(I->getNumOperands());
1797 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001798 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001799 Value *Op = I->getOperand(i);
1800 unsigned Arg = getRegForValue(Op);
1801 if (Arg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001802
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001803 Type *ArgTy = Op->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001804 MVT ArgVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001805 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001806
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001807 ISD::ArgFlagsTy Flags;
1808 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1809 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001810
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001811 Args.push_back(Op);
1812 ArgRegs.push_back(Arg);
1813 ArgVTs.push_back(ArgVT);
1814 ArgFlags.push_back(Flags);
1815 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001816
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001817 // Handle the arguments now that we've gotten them.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001818 SmallVector<unsigned, 4> RegArgs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001819 unsigned NumBytes;
1820 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1821 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001822
Eric Christopher6344a5f2011-04-29 00:07:20 +00001823 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001824 // TODO: Turn this into the table of arm call ops.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001825 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001826 unsigned CallOpc = ARMSelectCallOp(NULL);
1827 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001828 // Explicitly adding the predicate here.
1829 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1830 TII.get(CallOpc)))
1831 .addExternalSymbol(TLI.getLibcallName(Call));
Eric Christopher872f4a22011-02-22 01:37:10 +00001832 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001833 // Explicitly adding the predicate here.
1834 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1835 TII.get(CallOpc))
1836 .addExternalSymbol(TLI.getLibcallName(Call)));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001837
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001838 // Add implicit physical register uses to the call.
1839 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1840 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001841
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001842 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001843 SmallVector<unsigned, 4> UsedRegs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001844 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001845
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001846 // Set all unused physreg defs as dead.
1847 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001848
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001849 return true;
1850}
1851
Eric Christopherf9764fa2010-09-30 20:49:44 +00001852bool ARMFastISel::SelectCall(const Instruction *I) {
1853 const CallInst *CI = cast<CallInst>(I);
1854 const Value *Callee = CI->getCalledValue();
1855
1856 // Can't handle inline asm or worry about intrinsics yet.
1857 if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false;
1858
Eric Christopher52f6c032011-05-02 20:16:33 +00001859 // Only handle global variable Callees.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001860 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Eric Christopher52f6c032011-05-02 20:16:33 +00001861 if (!GV)
Eric Christophere6ca6772010-10-01 21:33:12 +00001862 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001863
Eric Christopherf9764fa2010-09-30 20:49:44 +00001864 // Check the calling convention.
1865 ImmutableCallSite CS(CI);
1866 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher4cf34c62010-10-18 06:49:12 +00001867
Eric Christopherf9764fa2010-09-30 20:49:44 +00001868 // TODO: Avoid some calling conventions?
Eric Christopherdccd2c32010-10-11 08:38:55 +00001869
Eric Christopherf9764fa2010-09-30 20:49:44 +00001870 // Let SDISel handle vararg functions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001871 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1872 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Eric Christopherf9764fa2010-09-30 20:49:44 +00001873 if (FTy->isVarArg())
1874 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001875
Eric Christopherf9764fa2010-09-30 20:49:44 +00001876 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001877 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001878 MVT RetVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001879 if (RetTy->isVoidTy())
1880 RetVT = MVT::isVoid;
1881 else if (!isTypeLegal(RetTy, RetVT))
1882 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001883
Eric Christopher836c6242010-12-15 23:47:29 +00001884 // TODO: For now if we have long calls specified we don't handle the call.
1885 if (EnableARMLongCalls) return false;
Eric Christopher299bbb22011-04-29 00:03:10 +00001886
Eric Christopherf9764fa2010-09-30 20:49:44 +00001887 // Set up the argument vectors.
1888 SmallVector<Value*, 8> Args;
1889 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001890 SmallVector<MVT, 8> ArgVTs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001891 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1892 Args.reserve(CS.arg_size());
1893 ArgRegs.reserve(CS.arg_size());
1894 ArgVTs.reserve(CS.arg_size());
1895 ArgFlags.reserve(CS.arg_size());
1896 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1897 i != e; ++i) {
1898 unsigned Arg = getRegForValue(*i);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001899
Eric Christopherf9764fa2010-09-30 20:49:44 +00001900 if (Arg == 0)
1901 return false;
1902 ISD::ArgFlagsTy Flags;
1903 unsigned AttrInd = i - CS.arg_begin() + 1;
1904 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
1905 Flags.setSExt();
1906 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
1907 Flags.setZExt();
1908
1909 // FIXME: Only handle *easy* calls for now.
1910 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1911 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1912 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1913 CS.paramHasAttr(AttrInd, Attribute::ByVal))
1914 return false;
1915
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001916 Type *ArgTy = (*i)->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001917 MVT ArgVT;
Chad Rosier3a7572f2011-10-17 22:54:23 +00001918 // FIXME: Should be able to handle i1, i8, and/or i16 parameters.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001919 if (!isTypeLegal(ArgTy, ArgVT))
1920 return false;
1921 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1922 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001923
Eric Christopherf9764fa2010-09-30 20:49:44 +00001924 Args.push_back(*i);
1925 ArgRegs.push_back(Arg);
1926 ArgVTs.push_back(ArgVT);
1927 ArgFlags.push_back(Flags);
1928 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001929
Eric Christopherf9764fa2010-09-30 20:49:44 +00001930 // Handle the arguments now that we've gotten them.
1931 SmallVector<unsigned, 4> RegArgs;
1932 unsigned NumBytes;
1933 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1934 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001935
Eric Christopher6344a5f2011-04-29 00:07:20 +00001936 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001937 // TODO: Turn this into the table of arm call ops.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001938 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001939 unsigned CallOpc = ARMSelectCallOp(GV);
Eric Christopher7bb59962010-11-29 21:56:23 +00001940 // Explicitly adding the predicate here.
Eric Christopher872f4a22011-02-22 01:37:10 +00001941 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001942 // Explicitly adding the predicate here.
1943 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1944 TII.get(CallOpc)))
1945 .addGlobalAddress(GV, 0, 0);
Eric Christopher872f4a22011-02-22 01:37:10 +00001946 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001947 // Explicitly adding the predicate here.
1948 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1949 TII.get(CallOpc))
1950 .addGlobalAddress(GV, 0, 0));
Eric Christopher299bbb22011-04-29 00:03:10 +00001951
Eric Christopherf9764fa2010-09-30 20:49:44 +00001952 // Add implicit physical register uses to the call.
1953 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1954 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001955
Eric Christopherf9764fa2010-09-30 20:49:44 +00001956 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001957 SmallVector<unsigned, 4> UsedRegs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001958 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001959
Eric Christopherf9764fa2010-09-30 20:49:44 +00001960 // Set all unused physreg defs as dead.
1961 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001962
Eric Christopherf9764fa2010-09-30 20:49:44 +00001963 return true;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001964
Eric Christopherf9764fa2010-09-30 20:49:44 +00001965}
1966
Chad Rosier0d7b2312011-11-02 00:18:48 +00001967bool ARMFastISel::SelectTrunc(const Instruction *I) {
1968 // The high bits for a type smaller than the register size are assumed to be
1969 // undefined.
1970 Value *Op = I->getOperand(0);
1971
1972 EVT SrcVT, DestVT;
1973 SrcVT = TLI.getValueType(Op->getType(), true);
1974 DestVT = TLI.getValueType(I->getType(), true);
1975
1976 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
1977 return false;
1978 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
1979 return false;
1980
1981 unsigned SrcReg = getRegForValue(Op);
1982 if (!SrcReg) return false;
1983
1984 // Because the high bits are undefined, a truncate doesn't generate
1985 // any code.
1986 UpdateValueMap(I, SrcReg);
1987 return true;
1988}
1989
1990bool ARMFastISel::SelectIntExt(const Instruction *I) {
Eli Friedman76927d732011-05-25 23:49:02 +00001991 // On ARM, in general, integer casts don't involve legal types; this code
1992 // handles promotable integers. The high bits for a type smaller than
1993 // the register size are assumed to be undefined.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001994 Type *DestTy = I->getType();
Eli Friedman76927d732011-05-25 23:49:02 +00001995 Value *Op = I->getOperand(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001996 Type *SrcTy = Op->getType();
Eli Friedman76927d732011-05-25 23:49:02 +00001997
1998 EVT SrcVT, DestVT;
1999 SrcVT = TLI.getValueType(SrcTy, true);
2000 DestVT = TLI.getValueType(DestTy, true);
2001
Eli Friedman76927d732011-05-25 23:49:02 +00002002 if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8)
2003 return false;
2004
2005 unsigned Opc;
2006 bool isZext = isa<ZExtInst>(I);
2007 bool isBoolZext = false;
Eli Friedmana4d487f2011-05-27 18:02:04 +00002008 if (!SrcVT.isSimple())
2009 return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002010 switch (SrcVT.getSimpleVT().SimpleTy) {
2011 default: return false;
2012 case MVT::i16:
Jim Grosbachd04f6a52011-08-23 20:53:08 +00002013 if (!Subtarget->hasV6Ops()) return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002014 if (isZext)
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002015 Opc = isThumb ? ARM::t2UXTH : ARM::UXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002016 else
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002017 Opc = isThumb ? ARM::t2SXTH : ARM::SXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002018 break;
2019 case MVT::i8:
Jim Grosbachd04f6a52011-08-23 20:53:08 +00002020 if (!Subtarget->hasV6Ops()) return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002021 if (isZext)
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002022 Opc = isThumb ? ARM::t2UXTB : ARM::UXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002023 else
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002024 Opc = isThumb ? ARM::t2SXTB : ARM::SXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002025 break;
2026 case MVT::i1:
2027 if (isZext) {
2028 Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
2029 isBoolZext = true;
2030 break;
2031 }
2032 return false;
2033 }
2034
2035 // FIXME: We could save an instruction in many cases by special-casing
2036 // load instructions.
2037 unsigned SrcReg = getRegForValue(Op);
2038 if (!SrcReg) return false;
2039
2040 unsigned DestReg = createResultReg(TLI.getRegClassFor(MVT::i32));
2041 MachineInstrBuilder MIB;
2042 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
2043 .addReg(SrcReg);
2044 if (isBoolZext)
2045 MIB.addImm(1);
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002046 else
2047 MIB.addImm(0);
Eli Friedman76927d732011-05-25 23:49:02 +00002048 AddOptionalDefs(MIB);
2049 UpdateValueMap(I, DestReg);
2050 return true;
2051}
2052
Eric Christopher56d2b722010-09-02 23:43:26 +00002053// TODO: SoftFP support.
Eric Christopherab695882010-07-21 22:26:11 +00002054bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopherac1a19e2010-09-09 01:06:51 +00002055
Eric Christopherab695882010-07-21 22:26:11 +00002056 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +00002057 case Instruction::Load:
Eric Christopher43b62be2010-09-27 06:02:23 +00002058 return SelectLoad(I);
Eric Christopher543cf052010-09-01 22:16:27 +00002059 case Instruction::Store:
Eric Christopher43b62be2010-09-27 06:02:23 +00002060 return SelectStore(I);
Eric Christophere5734102010-09-03 00:35:47 +00002061 case Instruction::Br:
Eric Christopher43b62be2010-09-27 06:02:23 +00002062 return SelectBranch(I);
Eric Christopherd43393a2010-09-08 23:13:45 +00002063 case Instruction::ICmp:
2064 case Instruction::FCmp:
Eric Christopher43b62be2010-09-27 06:02:23 +00002065 return SelectCmp(I);
Eric Christopher46203602010-09-09 00:26:48 +00002066 case Instruction::FPExt:
Eric Christopher43b62be2010-09-27 06:02:23 +00002067 return SelectFPExt(I);
Eric Christopherce07b542010-09-09 20:26:31 +00002068 case Instruction::FPTrunc:
Eric Christopher43b62be2010-09-27 06:02:23 +00002069 return SelectFPTrunc(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002070 case Instruction::SIToFP:
Eric Christopher43b62be2010-09-27 06:02:23 +00002071 return SelectSIToFP(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002072 case Instruction::FPToSI:
Eric Christopher43b62be2010-09-27 06:02:23 +00002073 return SelectFPToSI(I);
Eric Christopherbc39b822010-09-09 00:53:57 +00002074 case Instruction::FAdd:
Eric Christopher43b62be2010-09-27 06:02:23 +00002075 return SelectBinaryOp(I, ISD::FADD);
Eric Christopherbc39b822010-09-09 00:53:57 +00002076 case Instruction::FSub:
Eric Christopher43b62be2010-09-27 06:02:23 +00002077 return SelectBinaryOp(I, ISD::FSUB);
Eric Christopherbc39b822010-09-09 00:53:57 +00002078 case Instruction::FMul:
Eric Christopher43b62be2010-09-27 06:02:23 +00002079 return SelectBinaryOp(I, ISD::FMUL);
Eric Christopherbb3e5da2010-09-14 23:03:37 +00002080 case Instruction::SDiv:
Eric Christopher43b62be2010-09-27 06:02:23 +00002081 return SelectSDiv(I);
Eric Christopher6a880d62010-10-11 08:37:26 +00002082 case Instruction::SRem:
2083 return SelectSRem(I);
Eric Christopherf9764fa2010-09-30 20:49:44 +00002084 case Instruction::Call:
2085 return SelectCall(I);
Eric Christopher3bbd3962010-10-11 08:27:59 +00002086 case Instruction::Select:
2087 return SelectSelect(I);
Eric Christopher4f512ef2010-10-22 01:28:00 +00002088 case Instruction::Ret:
2089 return SelectRet(I);
Eli Friedman76927d732011-05-25 23:49:02 +00002090 case Instruction::Trunc:
Chad Rosier0d7b2312011-11-02 00:18:48 +00002091 return SelectTrunc(I);
Eli Friedman76927d732011-05-25 23:49:02 +00002092 case Instruction::ZExt:
2093 case Instruction::SExt:
Chad Rosier0d7b2312011-11-02 00:18:48 +00002094 return SelectIntExt(I);
Eric Christopherab695882010-07-21 22:26:11 +00002095 default: break;
2096 }
2097 return false;
2098}
2099
2100namespace llvm {
2101 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopherfeadddd2010-10-11 20:05:22 +00002102 // Completely untested on non-darwin.
2103 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002104
Eric Christopheraaa8df42010-11-02 01:21:28 +00002105 // Darwin and thumb1 only for now.
Eric Christopherfeadddd2010-10-11 20:05:22 +00002106 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002107 if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() &&
Eric Christopheraaa8df42010-11-02 01:21:28 +00002108 !DisableARMFastISel)
Eric Christopherfeadddd2010-10-11 20:05:22 +00002109 return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +00002110 return 0;
Eric Christopherab695882010-07-21 22:26:11 +00002111 }
2112}