blob: 9bc7ef21d8a3431463c8c788830221f37382ef2d [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);
Eli Friedman76927d732011-05-25 23:49:02 +0000170 bool SelectIntCast(const Instruction *I);
Eric Christopherab695882010-07-21 22:26:11 +0000171
Eric Christopher83007122010-08-23 21:44:12 +0000172 // Utility routines.
Eric Christopher456144e2010-08-19 00:37:05 +0000173 private:
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000174 bool isTypeLegal(Type *Ty, MVT &VT);
175 bool isLoadTypeLegal(Type *Ty, MVT &VT);
Eric Christopher0d581222010-11-19 22:30:02 +0000176 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr);
177 bool ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr);
178 bool ARMComputeAddress(const Value *Obj, Address &Addr);
179 void ARMSimplifyAddress(Address &Addr, EVT VT);
Eric Christopher9ed58df2010-09-09 00:19:41 +0000180 unsigned ARMMaterializeFP(const ConstantFP *CFP, EVT VT);
Eric Christopher744c7c82010-09-28 22:47:54 +0000181 unsigned ARMMaterializeInt(const Constant *C, EVT VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000182 unsigned ARMMaterializeGV(const GlobalValue *GV, EVT VT);
Eric Christopheraa3ace12010-09-09 20:49:25 +0000183 unsigned ARMMoveToFPReg(EVT VT, unsigned SrcReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000184 unsigned ARMMoveToIntReg(EVT VT, unsigned SrcReg);
Eric Christopher872f4a22011-02-22 01:37:10 +0000185 unsigned ARMSelectCallOp(const GlobalValue *GV);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000186
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000187 // Call handling routines.
188 private:
Eric Christopherfa87d662010-10-18 02:17:53 +0000189 bool FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
190 unsigned &ResultReg);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000191 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool Return);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000192 bool ProcessCallArgs(SmallVectorImpl<Value*> &Args,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000193 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +0000194 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000195 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
196 SmallVectorImpl<unsigned> &RegArgs,
197 CallingConv::ID CC,
198 unsigned &NumBytes);
Duncan Sands1440e8b2010-11-03 11:35:31 +0000199 bool FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000200 const Instruction *I, CallingConv::ID CC,
201 unsigned &NumBytes);
Eric Christopher7ed8ec92010-09-28 01:21:42 +0000202 bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000203
204 // OptionalDef handling routines.
205 private:
Eric Christopheraf3dce52011-03-12 01:09:29 +0000206 bool isARMNEONPred(const MachineInstr *MI);
Eric Christopher456144e2010-08-19 00:37:05 +0000207 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
208 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
Eric Christopher564857f2010-12-01 01:40:24 +0000209 void AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000210 const MachineInstrBuilder &MIB,
211 unsigned Flags);
Eric Christopher456144e2010-08-19 00:37:05 +0000212};
Eric Christopherab695882010-07-21 22:26:11 +0000213
214} // end anonymous namespace
215
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000216#include "ARMGenCallingConv.inc"
Eric Christopherab695882010-07-21 22:26:11 +0000217
Eric Christopher456144e2010-08-19 00:37:05 +0000218// DefinesOptionalPredicate - This is different from DefinesPredicate in that
219// we don't care about implicit defs here, just places we'll need to add a
220// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
221bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
Evan Chenge837dea2011-06-28 19:10:37 +0000222 const MCInstrDesc &MCID = MI->getDesc();
223 if (!MCID.hasOptionalDef())
Eric Christopher456144e2010-08-19 00:37:05 +0000224 return false;
225
226 // Look to see if our OptionalDef is defining CPSR or CCR.
227 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
228 const MachineOperand &MO = MI->getOperand(i);
Eric Christopherf762fbe2010-08-20 00:36:24 +0000229 if (!MO.isReg() || !MO.isDef()) continue;
230 if (MO.getReg() == ARM::CPSR)
Eric Christopher456144e2010-08-19 00:37:05 +0000231 *CPSR = true;
232 }
233 return true;
234}
235
Eric Christopheraf3dce52011-03-12 01:09:29 +0000236bool ARMFastISel::isARMNEONPred(const MachineInstr *MI) {
Evan Chenge837dea2011-06-28 19:10:37 +0000237 const MCInstrDesc &MCID = MI->getDesc();
Eric Christopher299bbb22011-04-29 00:03:10 +0000238
Eric Christopheraf3dce52011-03-12 01:09:29 +0000239 // If we're a thumb2 or not NEON function we were handled via isPredicable.
Evan Chenge837dea2011-06-28 19:10:37 +0000240 if ((MCID.TSFlags & ARMII::DomainMask) != ARMII::DomainNEON ||
Eric Christopheraf3dce52011-03-12 01:09:29 +0000241 AFI->isThumb2Function())
242 return false;
Eric Christopher299bbb22011-04-29 00:03:10 +0000243
Evan Chenge837dea2011-06-28 19:10:37 +0000244 for (unsigned i = 0, e = MCID.getNumOperands(); i != e; ++i)
245 if (MCID.OpInfo[i].isPredicate())
Eric Christopheraf3dce52011-03-12 01:09:29 +0000246 return true;
Eric Christopher299bbb22011-04-29 00:03:10 +0000247
Eric Christopheraf3dce52011-03-12 01:09:29 +0000248 return false;
249}
250
Eric Christopher456144e2010-08-19 00:37:05 +0000251// If the machine is predicable go ahead and add the predicate operands, if
252// it needs default CC operands add those.
Eric Christopheraaa8df42010-11-02 01:21:28 +0000253// TODO: If we want to support thumb1 then we'll need to deal with optional
254// CPSR defs that need to be added before the remaining operands. See s_cc_out
255// for descriptions why.
Eric Christopher456144e2010-08-19 00:37:05 +0000256const MachineInstrBuilder &
257ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
258 MachineInstr *MI = &*MIB;
259
Eric Christopheraf3dce52011-03-12 01:09:29 +0000260 // Do we use a predicate? or...
261 // Are we NEON in ARM mode and have a predicate operand? If so, I know
262 // we're not predicable but add it anyways.
263 if (TII.isPredicable(MI) || isARMNEONPred(MI))
Eric Christopher456144e2010-08-19 00:37:05 +0000264 AddDefaultPred(MIB);
Eric Christopher299bbb22011-04-29 00:03:10 +0000265
Eric Christopher456144e2010-08-19 00:37:05 +0000266 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
267 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christopher979e0a12010-08-19 15:35:27 +0000268 bool CPSR = false;
Eric Christopher456144e2010-08-19 00:37:05 +0000269 if (DefinesOptionalPredicate(MI, &CPSR)) {
270 if (CPSR)
271 AddDefaultT1CC(MIB);
272 else
273 AddDefaultCC(MIB);
274 }
275 return MIB;
276}
277
Eric Christopher0fe7d542010-08-17 01:25:29 +0000278unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode,
279 const TargetRegisterClass* RC) {
280 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000281 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000282
Eric Christopher456144e2010-08-19 00:37:05 +0000283 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg));
Eric Christopher0fe7d542010-08-17 01:25:29 +0000284 return ResultReg;
285}
286
287unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
288 const TargetRegisterClass *RC,
289 unsigned Op0, bool Op0IsKill) {
290 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000291 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000292
293 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000294 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000295 .addReg(Op0, Op0IsKill * RegState::Kill));
296 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000297 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000298 .addReg(Op0, Op0IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000299 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000300 TII.get(TargetOpcode::COPY), ResultReg)
301 .addReg(II.ImplicitDefs[0]));
302 }
303 return ResultReg;
304}
305
306unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
307 const TargetRegisterClass *RC,
308 unsigned Op0, bool Op0IsKill,
309 unsigned Op1, bool Op1IsKill) {
310 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000311 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000312
313 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000314 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000315 .addReg(Op0, Op0IsKill * RegState::Kill)
316 .addReg(Op1, Op1IsKill * RegState::Kill));
317 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000318 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000319 .addReg(Op0, Op0IsKill * RegState::Kill)
320 .addReg(Op1, Op1IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000321 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000322 TII.get(TargetOpcode::COPY), ResultReg)
323 .addReg(II.ImplicitDefs[0]));
324 }
325 return ResultReg;
326}
327
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000328unsigned ARMFastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
329 const TargetRegisterClass *RC,
330 unsigned Op0, bool Op0IsKill,
331 unsigned Op1, bool Op1IsKill,
332 unsigned Op2, bool Op2IsKill) {
333 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000334 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000335
336 if (II.getNumDefs() >= 1)
337 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
338 .addReg(Op0, Op0IsKill * RegState::Kill)
339 .addReg(Op1, Op1IsKill * RegState::Kill)
340 .addReg(Op2, Op2IsKill * RegState::Kill));
341 else {
342 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
343 .addReg(Op0, Op0IsKill * RegState::Kill)
344 .addReg(Op1, Op1IsKill * RegState::Kill)
345 .addReg(Op2, Op2IsKill * RegState::Kill));
346 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
347 TII.get(TargetOpcode::COPY), ResultReg)
348 .addReg(II.ImplicitDefs[0]));
349 }
350 return ResultReg;
351}
352
Eric Christopher0fe7d542010-08-17 01:25:29 +0000353unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
354 const TargetRegisterClass *RC,
355 unsigned Op0, bool Op0IsKill,
356 uint64_t Imm) {
357 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000358 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000359
360 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000361 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000362 .addReg(Op0, Op0IsKill * RegState::Kill)
363 .addImm(Imm));
364 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000365 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000366 .addReg(Op0, Op0IsKill * RegState::Kill)
367 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000368 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000369 TII.get(TargetOpcode::COPY), ResultReg)
370 .addReg(II.ImplicitDefs[0]));
371 }
372 return ResultReg;
373}
374
375unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
376 const TargetRegisterClass *RC,
377 unsigned Op0, bool Op0IsKill,
378 const ConstantFP *FPImm) {
379 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000380 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000381
382 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000383 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000384 .addReg(Op0, Op0IsKill * RegState::Kill)
385 .addFPImm(FPImm));
386 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000387 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000388 .addReg(Op0, Op0IsKill * RegState::Kill)
389 .addFPImm(FPImm));
Eric Christopher456144e2010-08-19 00:37:05 +0000390 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000391 TII.get(TargetOpcode::COPY), ResultReg)
392 .addReg(II.ImplicitDefs[0]));
393 }
394 return ResultReg;
395}
396
397unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
398 const TargetRegisterClass *RC,
399 unsigned Op0, bool Op0IsKill,
400 unsigned Op1, bool Op1IsKill,
401 uint64_t Imm) {
402 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000403 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000404
405 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000406 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000407 .addReg(Op0, Op0IsKill * RegState::Kill)
408 .addReg(Op1, Op1IsKill * RegState::Kill)
409 .addImm(Imm));
410 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000411 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000412 .addReg(Op0, Op0IsKill * RegState::Kill)
413 .addReg(Op1, Op1IsKill * RegState::Kill)
414 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000415 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000416 TII.get(TargetOpcode::COPY), ResultReg)
417 .addReg(II.ImplicitDefs[0]));
418 }
419 return ResultReg;
420}
421
422unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
423 const TargetRegisterClass *RC,
424 uint64_t Imm) {
425 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000426 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000427
Eric Christopher0fe7d542010-08-17 01:25:29 +0000428 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000429 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000430 .addImm(Imm));
431 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000432 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000433 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000434 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000435 TII.get(TargetOpcode::COPY), ResultReg)
436 .addReg(II.ImplicitDefs[0]));
437 }
438 return ResultReg;
439}
440
Eric Christopherd94bc542011-04-29 22:07:50 +0000441unsigned ARMFastISel::FastEmitInst_ii(unsigned MachineInstOpcode,
442 const TargetRegisterClass *RC,
443 uint64_t Imm1, uint64_t Imm2) {
444 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000445 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher471e4222011-06-08 23:55:35 +0000446
Eric Christopherd94bc542011-04-29 22:07:50 +0000447 if (II.getNumDefs() >= 1)
448 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
449 .addImm(Imm1).addImm(Imm2));
450 else {
451 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
452 .addImm(Imm1).addImm(Imm2));
Eric Christopher471e4222011-06-08 23:55:35 +0000453 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherd94bc542011-04-29 22:07:50 +0000454 TII.get(TargetOpcode::COPY),
455 ResultReg)
456 .addReg(II.ImplicitDefs[0]));
457 }
458 return ResultReg;
459}
460
Eric Christopher0fe7d542010-08-17 01:25:29 +0000461unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT,
462 unsigned Op0, bool Op0IsKill,
463 uint32_t Idx) {
464 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
465 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
466 "Cannot yet extract from physregs");
Eric Christopher456144e2010-08-19 00:37:05 +0000467 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000468 DL, TII.get(TargetOpcode::COPY), ResultReg)
469 .addReg(Op0, getKillRegState(Op0IsKill), Idx));
470 return ResultReg;
471}
472
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000473// TODO: Don't worry about 64-bit now, but when this is fixed remove the
474// checks from the various callers.
Eric Christopheraa3ace12010-09-09 20:49:25 +0000475unsigned ARMFastISel::ARMMoveToFPReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000476 if (VT == MVT::f64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000477
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000478 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
479 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
480 TII.get(ARM::VMOVRS), MoveReg)
481 .addReg(SrcReg));
482 return MoveReg;
483}
484
485unsigned ARMFastISel::ARMMoveToIntReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000486 if (VT == MVT::i64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000487
Eric Christopheraa3ace12010-09-09 20:49:25 +0000488 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
489 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000490 TII.get(ARM::VMOVSR), MoveReg)
Eric Christopheraa3ace12010-09-09 20:49:25 +0000491 .addReg(SrcReg));
492 return MoveReg;
493}
494
Eric Christopher9ed58df2010-09-09 00:19:41 +0000495// For double width floating point we need to materialize two constants
496// (the high and the low) into integer registers then use a move to get
497// the combined constant into an FP reg.
498unsigned ARMFastISel::ARMMaterializeFP(const ConstantFP *CFP, EVT VT) {
499 const APFloat Val = CFP->getValueAPF();
Duncan Sandscdfad362010-11-03 12:17:33 +0000500 bool is64bit = VT == MVT::f64;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000501
Eric Christopher9ed58df2010-09-09 00:19:41 +0000502 // This checks to see if we can use VFP3 instructions to materialize
503 // a constant, otherwise we have to go through the constant pool.
504 if (TLI.isFPImmLegal(Val, VT)) {
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000505 int Imm;
506 unsigned Opc;
507 if (is64bit) {
508 Imm = ARM_AM::getFP64Imm(Val);
509 Opc = ARM::FCONSTD;
510 } else {
511 Imm = ARM_AM::getFP32Imm(Val);
512 Opc = ARM::FCONSTS;
513 }
Eric Christopher9ed58df2010-09-09 00:19:41 +0000514 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
515 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
516 DestReg)
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000517 .addImm(Imm));
Eric Christopher9ed58df2010-09-09 00:19:41 +0000518 return DestReg;
519 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000520
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000521 // Require VFP2 for loading fp constants.
Eric Christopher238bb162010-09-09 23:50:00 +0000522 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000523
Eric Christopher238bb162010-09-09 23:50:00 +0000524 // MachineConstantPool wants an explicit alignment.
525 unsigned Align = TD.getPrefTypeAlignment(CFP->getType());
526 if (Align == 0) {
527 // TODO: Figure out if this is correct.
528 Align = TD.getTypeAllocSize(CFP->getType());
529 }
530 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
531 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
532 unsigned Opc = is64bit ? ARM::VLDRD : ARM::VLDRS;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000533
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000534 // The extra reg is for addrmode5.
Eric Christopherf5732c42010-09-28 00:35:09 +0000535 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
536 DestReg)
537 .addConstantPoolIndex(Idx)
Eric Christopher238bb162010-09-09 23:50:00 +0000538 .addReg(0));
539 return DestReg;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000540}
541
Eric Christopher744c7c82010-09-28 22:47:54 +0000542unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, EVT VT) {
Eric Christopherdccd2c32010-10-11 08:38:55 +0000543
Eric Christopher744c7c82010-09-28 22:47:54 +0000544 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000545 if (VT != MVT::i32) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000546
Eric Christophere5b13cf2010-11-03 20:21:17 +0000547 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
548
549 // If we can do this in a single instruction without a constant pool entry
550 // do so now.
551 const ConstantInt *CI = cast<ConstantInt>(C);
Eric Christopher5e262bc2010-11-06 07:53:11 +0000552 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getSExtValue())) {
Eric Christophere5b13cf2010-11-03 20:21:17 +0000553 unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16;
554 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Jim Grosbach3ea4daa2010-11-19 18:01:37 +0000555 TII.get(Opc), DestReg)
556 .addImm(CI->getSExtValue()));
Eric Christophere5b13cf2010-11-03 20:21:17 +0000557 return DestReg;
558 }
559
Eric Christopher56d2b722010-09-02 23:43:26 +0000560 // MachineConstantPool wants an explicit alignment.
561 unsigned Align = TD.getPrefTypeAlignment(C->getType());
562 if (Align == 0) {
563 // TODO: Figure out if this is correct.
564 Align = TD.getTypeAllocSize(C->getType());
565 }
566 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000567
Eric Christopher56d2b722010-09-02 23:43:26 +0000568 if (isThumb)
569 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000570 TII.get(ARM::t2LDRpci), DestReg)
571 .addConstantPoolIndex(Idx));
Eric Christopher56d2b722010-09-02 23:43:26 +0000572 else
Eric Christopherd0c82a62010-11-12 09:48:30 +0000573 // The extra immediate is for addrmode2.
Eric Christopher56d2b722010-09-02 23:43:26 +0000574 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000575 TII.get(ARM::LDRcp), DestReg)
576 .addConstantPoolIndex(Idx)
Jim Grosbach3e556122010-10-26 22:37:02 +0000577 .addImm(0));
Eric Christopherac1a19e2010-09-09 01:06:51 +0000578
Eric Christopher56d2b722010-09-02 23:43:26 +0000579 return DestReg;
Eric Christopher1b61ef42010-09-02 01:48:11 +0000580}
581
Eric Christopherc9932f62010-10-01 23:24:42 +0000582unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, EVT VT) {
Eric Christopher890dbbe2010-10-02 00:32:44 +0000583 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000584 if (VT != MVT::i32) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000585
Eric Christopher890dbbe2010-10-02 00:32:44 +0000586 Reloc::Model RelocM = TM.getRelocationModel();
Eric Christopherdccd2c32010-10-11 08:38:55 +0000587
Eric Christopher890dbbe2010-10-02 00:32:44 +0000588 // TODO: Need more magic for ARM PIC.
589 if (!isThumb && (RelocM == Reloc::PIC_)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000590
Eric Christopher890dbbe2010-10-02 00:32:44 +0000591 // MachineConstantPool wants an explicit alignment.
592 unsigned Align = TD.getPrefTypeAlignment(GV->getType());
593 if (Align == 0) {
594 // TODO: Figure out if this is correct.
595 Align = TD.getTypeAllocSize(GV->getType());
596 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000597
Eric Christopher890dbbe2010-10-02 00:32:44 +0000598 // Grab index.
599 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000600 unsigned Id = AFI->createPICLabelUId();
Bill Wendling5bb77992011-10-01 08:00:54 +0000601 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id,
602 ARMCP::CPValue,
603 PCAdj);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000604 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000605
Eric Christopher890dbbe2010-10-02 00:32:44 +0000606 // Load value.
607 MachineInstrBuilder MIB;
608 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
609 if (isThumb) {
610 unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
611 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
612 .addConstantPoolIndex(Idx);
613 if (RelocM == Reloc::PIC_)
614 MIB.addImm(Id);
615 } else {
Eric Christopherd0c82a62010-11-12 09:48:30 +0000616 // The extra immediate is for addrmode2.
Eric Christopher890dbbe2010-10-02 00:32:44 +0000617 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRcp),
618 DestReg)
619 .addConstantPoolIndex(Idx)
Eric Christopherd0c82a62010-11-12 09:48:30 +0000620 .addImm(0);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000621 }
622 AddOptionalDefs(MIB);
Eli Friedmand6412c92011-06-03 01:13:19 +0000623
624 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) {
625 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
626 if (isThumb)
Jim Grosbachb04546f2011-09-13 20:30:37 +0000627 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
628 TII.get(ARM::t2LDRi12), NewDestReg)
Eli Friedmand6412c92011-06-03 01:13:19 +0000629 .addReg(DestReg)
630 .addImm(0);
631 else
632 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRi12),
633 NewDestReg)
634 .addReg(DestReg)
635 .addImm(0);
636 DestReg = NewDestReg;
637 AddOptionalDefs(MIB);
638 }
639
Eric Christopher890dbbe2010-10-02 00:32:44 +0000640 return DestReg;
Eric Christopherc9932f62010-10-01 23:24:42 +0000641}
642
Eric Christopher9ed58df2010-09-09 00:19:41 +0000643unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
644 EVT VT = TLI.getValueType(C->getType(), true);
645
646 // Only handle simple types.
647 if (!VT.isSimple()) return 0;
648
649 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
650 return ARMMaterializeFP(CFP, VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000651 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
652 return ARMMaterializeGV(GV, VT);
653 else if (isa<ConstantInt>(C))
654 return ARMMaterializeInt(C, VT);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000655
Eric Christopherc9932f62010-10-01 23:24:42 +0000656 return 0;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000657}
658
Eric Christopherf9764fa2010-09-30 20:49:44 +0000659unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
660 // Don't handle dynamic allocas.
661 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000662
Duncan Sands1440e8b2010-11-03 11:35:31 +0000663 MVT VT;
Eric Christopherec8bf972010-10-17 06:07:26 +0000664 if (!isLoadTypeLegal(AI->getType(), VT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000665
Eric Christopherf9764fa2010-09-30 20:49:44 +0000666 DenseMap<const AllocaInst*, int>::iterator SI =
667 FuncInfo.StaticAllocaMap.find(AI);
668
669 // This will get lowered later into the correct offsets and registers
670 // via rewriteXFrameIndex.
671 if (SI != FuncInfo.StaticAllocaMap.end()) {
672 TargetRegisterClass* RC = TLI.getRegClassFor(VT);
673 unsigned ResultReg = createResultReg(RC);
674 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
675 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
676 TII.get(Opc), ResultReg)
677 .addFrameIndex(SI->second)
678 .addImm(0));
679 return ResultReg;
680 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000681
Eric Christopherf9764fa2010-09-30 20:49:44 +0000682 return 0;
683}
684
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000685bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
Duncan Sands1440e8b2010-11-03 11:35:31 +0000686 EVT evt = TLI.getValueType(Ty, true);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000687
Eric Christopherb1cc8482010-08-25 07:23:49 +0000688 // Only handle simple types.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000689 if (evt == MVT::Other || !evt.isSimple()) return false;
690 VT = evt.getSimpleVT();
Eric Christopherac1a19e2010-09-09 01:06:51 +0000691
Eric Christopherdc908042010-08-31 01:28:42 +0000692 // Handle all legal types, i.e. a register that will directly hold this
693 // value.
694 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000695}
696
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000697bool ARMFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000698 if (isTypeLegal(Ty, VT)) return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000699
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000700 // If this is a type than can be sign or zero-extended to a basic operation
701 // go ahead and accept it now.
702 if (VT == MVT::i8 || VT == MVT::i16)
703 return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000704
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000705 return false;
706}
707
Eric Christopher88de86b2010-11-19 22:36:41 +0000708// Computes the address to get to an object.
Eric Christopher0d581222010-11-19 22:30:02 +0000709bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher83007122010-08-23 21:44:12 +0000710 // Some boilerplate from the X86 FastISel.
711 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000712 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000713 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher2d630d72010-11-19 22:37:58 +0000714 // Don't walk into other basic blocks unless the object is an alloca from
715 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher76dda7e2010-11-15 21:11:06 +0000716 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
717 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
718 Opcode = I->getOpcode();
719 U = I;
720 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000721 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000722 Opcode = C->getOpcode();
723 U = C;
724 }
725
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000726 if (PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000727 if (Ty->getAddressSpace() > 255)
728 // Fast instruction selection doesn't support the special
729 // address spaces.
730 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000731
Eric Christopher83007122010-08-23 21:44:12 +0000732 switch (Opcode) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000733 default:
Eric Christopher83007122010-08-23 21:44:12 +0000734 break;
Eric Christopher55324332010-10-12 00:43:21 +0000735 case Instruction::BitCast: {
736 // Look through bitcasts.
Eric Christopher0d581222010-11-19 22:30:02 +0000737 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000738 }
739 case Instruction::IntToPtr: {
740 // Look past no-op inttoptrs.
741 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000742 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000743 break;
744 }
745 case Instruction::PtrToInt: {
746 // Look past no-op ptrtoints.
747 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000748 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000749 break;
750 }
Eric Christophereae84392010-10-14 09:29:41 +0000751 case Instruction::GetElementPtr: {
Eric Christopherb3716582010-11-19 22:39:56 +0000752 Address SavedAddr = Addr;
Eric Christopher0d581222010-11-19 22:30:02 +0000753 int TmpOffset = Addr.Offset;
Eric Christopher2896df82010-10-15 18:02:07 +0000754
Eric Christophereae84392010-10-14 09:29:41 +0000755 // Iterate through the GEP folding the constants into offsets where
756 // we can.
757 gep_type_iterator GTI = gep_type_begin(U);
758 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
759 i != e; ++i, ++GTI) {
760 const Value *Op = *i;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000761 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Eric Christophereae84392010-10-14 09:29:41 +0000762 const StructLayout *SL = TD.getStructLayout(STy);
763 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
764 TmpOffset += SL->getElementOffset(Idx);
765 } else {
Eric Christopher2896df82010-10-15 18:02:07 +0000766 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Eric Christopher7244d7c2011-03-22 19:39:17 +0000767 for (;;) {
Eric Christopher2896df82010-10-15 18:02:07 +0000768 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
769 // Constant-offset addressing.
770 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000771 break;
772 }
773 if (isa<AddOperator>(Op) &&
774 (!isa<Instruction>(Op) ||
775 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
776 == FuncInfo.MBB) &&
777 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
Eric Christopher299bbb22011-04-29 00:03:10 +0000778 // An add (in the same block) with a constant operand. Fold the
Eric Christopher7244d7c2011-03-22 19:39:17 +0000779 // constant.
Eric Christopher2896df82010-10-15 18:02:07 +0000780 ConstantInt *CI =
Eric Christopher7244d7c2011-03-22 19:39:17 +0000781 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christopher2896df82010-10-15 18:02:07 +0000782 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000783 // Iterate on the other operand.
784 Op = cast<AddOperator>(Op)->getOperand(0);
785 continue;
Eric Christopher299bbb22011-04-29 00:03:10 +0000786 }
Eric Christopher7244d7c2011-03-22 19:39:17 +0000787 // Unsupported
788 goto unsupported_gep;
789 }
Eric Christophereae84392010-10-14 09:29:41 +0000790 }
791 }
Eric Christopher2896df82010-10-15 18:02:07 +0000792
793 // Try to grab the base operand now.
Eric Christopher0d581222010-11-19 22:30:02 +0000794 Addr.Offset = TmpOffset;
795 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christopher2896df82010-10-15 18:02:07 +0000796
797 // We failed, restore everything and try the other options.
Eric Christopherb3716582010-11-19 22:39:56 +0000798 Addr = SavedAddr;
Eric Christopher2896df82010-10-15 18:02:07 +0000799
Eric Christophereae84392010-10-14 09:29:41 +0000800 unsupported_gep:
Eric Christophereae84392010-10-14 09:29:41 +0000801 break;
802 }
Eric Christopher83007122010-08-23 21:44:12 +0000803 case Instruction::Alloca: {
Eric Christopher15418772010-10-12 05:39:06 +0000804 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher827656d2010-11-20 22:38:27 +0000805 DenseMap<const AllocaInst*, int>::iterator SI =
806 FuncInfo.StaticAllocaMap.find(AI);
807 if (SI != FuncInfo.StaticAllocaMap.end()) {
808 Addr.BaseType = Address::FrameIndexBase;
809 Addr.Base.FI = SI->second;
810 return true;
811 }
812 break;
Eric Christopher83007122010-08-23 21:44:12 +0000813 }
814 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000815
Eric Christophera9c57512010-10-13 21:41:51 +0000816 // Materialize the global variable's address into a reg which can
817 // then be used later to load the variable.
Eric Christophercb0b04b2010-08-24 00:07:24 +0000818 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
Eric Christopherede42b02010-10-13 09:11:46 +0000819 unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType()));
820 if (Tmp == 0) return false;
Eric Christopher2896df82010-10-15 18:02:07 +0000821
Eric Christopher0d581222010-11-19 22:30:02 +0000822 Addr.Base.Reg = Tmp;
Eric Christopherede42b02010-10-13 09:11:46 +0000823 return true;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000824 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000825
Eric Christophercb0b04b2010-08-24 00:07:24 +0000826 // Try to get this in a register if nothing else has worked.
Eric Christopher0d581222010-11-19 22:30:02 +0000827 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
828 return Addr.Base.Reg != 0;
Eric Christophereae84392010-10-14 09:29:41 +0000829}
830
Eric Christopher0d581222010-11-19 22:30:02 +0000831void ARMFastISel::ARMSimplifyAddress(Address &Addr, EVT VT) {
Jim Grosbach6b156392010-10-27 21:39:08 +0000832
Eric Christopher212ae932010-10-21 19:40:30 +0000833 assert(VT.isSimple() && "Non-simple types are invalid here!");
Jim Grosbach6b156392010-10-27 21:39:08 +0000834
Eric Christopher212ae932010-10-21 19:40:30 +0000835 bool needsLowering = false;
836 switch (VT.getSimpleVT().SimpleTy) {
837 default:
838 assert(false && "Unhandled load/store type!");
839 case MVT::i1:
840 case MVT::i8:
841 case MVT::i16:
842 case MVT::i32:
843 // Integer loads/stores handle 12-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000844 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000845 break;
846 case MVT::f32:
847 case MVT::f64:
848 // Floating point operands handle 8-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000849 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000850 break;
851 }
Jim Grosbach6b156392010-10-27 21:39:08 +0000852
Eric Christopher827656d2010-11-20 22:38:27 +0000853 // If this is a stack pointer and the offset needs to be simplified then
854 // put the alloca address into a register, set the base type back to
855 // register and continue. This should almost never happen.
856 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
857 TargetRegisterClass *RC = isThumb ? ARM::tGPRRegisterClass :
858 ARM::GPRRegisterClass;
859 unsigned ResultReg = createResultReg(RC);
860 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
861 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
862 TII.get(Opc), ResultReg)
863 .addFrameIndex(Addr.Base.FI)
864 .addImm(0));
865 Addr.Base.Reg = ResultReg;
866 Addr.BaseType = Address::RegBase;
867 }
868
Eric Christopher212ae932010-10-21 19:40:30 +0000869 // Since the offset is too large for the load/store instruction
Eric Christopher318b6ee2010-09-02 00:53:56 +0000870 // get the reg+offset into a register.
Eric Christopher212ae932010-10-21 19:40:30 +0000871 if (needsLowering) {
Eli Friedman9ebf57a2011-04-29 21:22:56 +0000872 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
873 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopher0d581222010-11-19 22:30:02 +0000874 Addr.Offset = 0;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000875 }
Eric Christopher83007122010-08-23 21:44:12 +0000876}
877
Eric Christopher564857f2010-12-01 01:40:24 +0000878void ARMFastISel::AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000879 const MachineInstrBuilder &MIB,
880 unsigned Flags) {
Eric Christopher564857f2010-12-01 01:40:24 +0000881 // addrmode5 output depends on the selection dag addressing dividing the
882 // offset by 4 that it then later multiplies. Do this here as well.
883 if (VT.getSimpleVT().SimpleTy == MVT::f32 ||
884 VT.getSimpleVT().SimpleTy == MVT::f64)
885 Addr.Offset /= 4;
Eric Christopher299bbb22011-04-29 00:03:10 +0000886
Eric Christopher564857f2010-12-01 01:40:24 +0000887 // Frame base works a bit differently. Handle it separately.
888 if (Addr.BaseType == Address::FrameIndexBase) {
889 int FI = Addr.Base.FI;
890 int Offset = Addr.Offset;
891 MachineMemOperand *MMO =
892 FuncInfo.MF->getMachineMemOperand(
893 MachinePointerInfo::getFixedStack(FI, Offset),
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000894 Flags,
Eric Christopher564857f2010-12-01 01:40:24 +0000895 MFI.getObjectSize(FI),
896 MFI.getObjectAlignment(FI));
897 // Now add the rest of the operands.
898 MIB.addFrameIndex(FI);
899
900 // ARM halfword load/stores need an additional operand.
901 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
902
903 MIB.addImm(Addr.Offset);
904 MIB.addMemOperand(MMO);
905 } else {
906 // Now add the rest of the operands.
907 MIB.addReg(Addr.Base.Reg);
Eric Christopher299bbb22011-04-29 00:03:10 +0000908
Eric Christopher564857f2010-12-01 01:40:24 +0000909 // ARM halfword load/stores need an additional operand.
910 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
911
912 MIB.addImm(Addr.Offset);
913 }
914 AddOptionalDefs(MIB);
915}
916
Eric Christopher0d581222010-11-19 22:30:02 +0000917bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000918
Eric Christopherb1cc8482010-08-25 07:23:49 +0000919 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000920 unsigned Opc;
Eric Christopheree56ea62010-10-07 05:50:44 +0000921 TargetRegisterClass *RC;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000922 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000923 // This is mostly going to be Neon/vector support.
924 default: return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000925 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000926 Opc = isThumb ? ARM::t2LDRHi12 : ARM::LDRH;
Eric Christopher7a56f332010-10-08 01:13:17 +0000927 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000928 break;
929 case MVT::i8:
Jim Grosbachc1d30212010-10-27 00:19:44 +0000930 Opc = isThumb ? ARM::t2LDRBi12 : ARM::LDRBi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000931 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000932 break;
Eric Christopherdc908042010-08-31 01:28:42 +0000933 case MVT::i32:
Jim Grosbach3e556122010-10-26 22:37:02 +0000934 Opc = isThumb ? ARM::t2LDRi12 : ARM::LDRi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000935 RC = ARM::GPRRegisterClass;
Eric Christopherdc908042010-08-31 01:28:42 +0000936 break;
Eric Christopher6dab1372010-09-18 01:59:37 +0000937 case MVT::f32:
938 Opc = ARM::VLDRS;
Eric Christopheree56ea62010-10-07 05:50:44 +0000939 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000940 break;
941 case MVT::f64:
942 Opc = ARM::VLDRD;
Eric Christopheree56ea62010-10-07 05:50:44 +0000943 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000944 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000945 }
Eric Christopher564857f2010-12-01 01:40:24 +0000946 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000947 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000948
Eric Christopher564857f2010-12-01 01:40:24 +0000949 // Create the base instruction, then add the operands.
950 ResultReg = createResultReg(RC);
951 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
952 TII.get(Opc), ResultReg);
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000953 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOLoad);
Eric Christopherdc908042010-08-31 01:28:42 +0000954 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000955}
956
Eric Christopher43b62be2010-09-27 06:02:23 +0000957bool ARMFastISel::SelectLoad(const Instruction *I) {
Eli Friedman4136d232011-09-02 22:33:24 +0000958 // Atomic loads need special handling.
959 if (cast<LoadInst>(I)->isAtomic())
960 return false;
961
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000962 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000963 MVT VT;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000964 if (!isLoadTypeLegal(I->getType(), VT))
965 return false;
966
Eric Christopher564857f2010-12-01 01:40:24 +0000967 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +0000968 Address Addr;
Eric Christopher564857f2010-12-01 01:40:24 +0000969 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000970
971 unsigned ResultReg;
Eric Christopher0d581222010-11-19 22:30:02 +0000972 if (!ARMEmitLoad(VT, ResultReg, Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000973 UpdateValueMap(I, ResultReg);
974 return true;
975}
976
Eric Christopher0d581222010-11-19 22:30:02 +0000977bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000978 unsigned StrOpc;
979 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000980 // This is mostly going to be Neon/vector support.
Eric Christopher318b6ee2010-09-02 00:53:56 +0000981 default: return false;
Eric Christopher4c914122010-11-02 23:59:09 +0000982 case MVT::i1: {
983 unsigned Res = createResultReg(isThumb ? ARM::tGPRRegisterClass :
984 ARM::GPRRegisterClass);
985 unsigned Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
986 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
987 TII.get(Opc), Res)
988 .addReg(SrcReg).addImm(1));
989 SrcReg = Res;
990 } // Fallthrough here.
Eric Christopher2896df82010-10-15 18:02:07 +0000991 case MVT::i8:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000992 StrOpc = isThumb ? ARM::t2STRBi12 : ARM::STRBi12;
Eric Christopher15418772010-10-12 05:39:06 +0000993 break;
994 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000995 StrOpc = isThumb ? ARM::t2STRHi12 : ARM::STRH;
Eric Christopher15418772010-10-12 05:39:06 +0000996 break;
Eric Christopher47650ec2010-10-16 01:10:35 +0000997 case MVT::i32:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000998 StrOpc = isThumb ? ARM::t2STRi12 : ARM::STRi12;
Eric Christopher47650ec2010-10-16 01:10:35 +0000999 break;
Eric Christopher56d2b722010-09-02 23:43:26 +00001000 case MVT::f32:
1001 if (!Subtarget->hasVFP2()) return false;
1002 StrOpc = ARM::VSTRS;
1003 break;
1004 case MVT::f64:
1005 if (!Subtarget->hasVFP2()) return false;
1006 StrOpc = ARM::VSTRD;
1007 break;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001008 }
Eric Christopher564857f2010-12-01 01:40:24 +00001009 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +00001010 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +00001011
Eric Christopher564857f2010-12-01 01:40:24 +00001012 // Create the base instruction, then add the operands.
1013 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1014 TII.get(StrOpc))
1015 .addReg(SrcReg, getKillRegState(true));
Cameron Zwarichc152aa62011-05-28 20:34:49 +00001016 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOStore);
Eric Christopher318b6ee2010-09-02 00:53:56 +00001017 return true;
1018}
1019
Eric Christopher43b62be2010-09-27 06:02:23 +00001020bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher318b6ee2010-09-02 00:53:56 +00001021 Value *Op0 = I->getOperand(0);
1022 unsigned SrcReg = 0;
1023
Eli Friedman4136d232011-09-02 22:33:24 +00001024 // Atomic stores need special handling.
1025 if (cast<StoreInst>(I)->isAtomic())
1026 return false;
1027
Eric Christopher564857f2010-12-01 01:40:24 +00001028 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001029 MVT VT;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001030 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopher543cf052010-09-01 22:16:27 +00001031 return false;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001032
Eric Christopher1b61ef42010-09-02 01:48:11 +00001033 // Get the value to be stored into a register.
1034 SrcReg = getRegForValue(Op0);
Eric Christopher564857f2010-12-01 01:40:24 +00001035 if (SrcReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001036
Eric Christopher564857f2010-12-01 01:40:24 +00001037 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +00001038 Address Addr;
Eric Christopher0d581222010-11-19 22:30:02 +00001039 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher318b6ee2010-09-02 00:53:56 +00001040 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001041
Eric Christopher0d581222010-11-19 22:30:02 +00001042 if (!ARMEmitStore(VT, SrcReg, Addr)) return false;
Eric Christophera5b1e682010-09-17 22:28:18 +00001043 return true;
1044}
1045
1046static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1047 switch (Pred) {
1048 // Needs two compares...
1049 case CmpInst::FCMP_ONE:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001050 case CmpInst::FCMP_UEQ:
Eric Christophera5b1e682010-09-17 22:28:18 +00001051 default:
Eric Christopher4053e632010-11-02 01:24:49 +00001052 // AL is our "false" for now. The other two need more compares.
Eric Christophera5b1e682010-09-17 22:28:18 +00001053 return ARMCC::AL;
1054 case CmpInst::ICMP_EQ:
1055 case CmpInst::FCMP_OEQ:
1056 return ARMCC::EQ;
1057 case CmpInst::ICMP_SGT:
1058 case CmpInst::FCMP_OGT:
1059 return ARMCC::GT;
1060 case CmpInst::ICMP_SGE:
1061 case CmpInst::FCMP_OGE:
1062 return ARMCC::GE;
1063 case CmpInst::ICMP_UGT:
1064 case CmpInst::FCMP_UGT:
1065 return ARMCC::HI;
1066 case CmpInst::FCMP_OLT:
1067 return ARMCC::MI;
1068 case CmpInst::ICMP_ULE:
1069 case CmpInst::FCMP_OLE:
1070 return ARMCC::LS;
1071 case CmpInst::FCMP_ORD:
1072 return ARMCC::VC;
1073 case CmpInst::FCMP_UNO:
1074 return ARMCC::VS;
1075 case CmpInst::FCMP_UGE:
1076 return ARMCC::PL;
1077 case CmpInst::ICMP_SLT:
1078 case CmpInst::FCMP_ULT:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001079 return ARMCC::LT;
Eric Christophera5b1e682010-09-17 22:28:18 +00001080 case CmpInst::ICMP_SLE:
1081 case CmpInst::FCMP_ULE:
1082 return ARMCC::LE;
1083 case CmpInst::FCMP_UNE:
1084 case CmpInst::ICMP_NE:
1085 return ARMCC::NE;
1086 case CmpInst::ICMP_UGE:
1087 return ARMCC::HS;
1088 case CmpInst::ICMP_ULT:
1089 return ARMCC::LO;
1090 }
Eric Christopher543cf052010-09-01 22:16:27 +00001091}
1092
Eric Christopher43b62be2010-09-27 06:02:23 +00001093bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christophere5734102010-09-03 00:35:47 +00001094 const BranchInst *BI = cast<BranchInst>(I);
1095 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1096 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopherac1a19e2010-09-09 01:06:51 +00001097
Eric Christophere5734102010-09-03 00:35:47 +00001098 // Simple branch support.
Jim Grosbach16cb3762010-11-09 19:22:26 +00001099
Eric Christopher0e6233b2010-10-29 21:08:19 +00001100 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1101 // behavior.
1102 // TODO: Factor this out.
1103 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Eric Christopher632ae892011-04-29 21:56:31 +00001104 MVT SourceVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001105 Type *Ty = CI->getOperand(0)->getType();
Eric Christopher632ae892011-04-29 21:56:31 +00001106 if (CI->hasOneUse() && (CI->getParent() == I->getParent())
1107 && isTypeLegal(Ty, SourceVT)) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001108 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1109 if (isFloat && !Subtarget->hasVFP2())
1110 return false;
1111
1112 unsigned CmpOpc;
Eric Christopher632ae892011-04-29 21:56:31 +00001113 switch (SourceVT.SimpleTy) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001114 default: return false;
1115 // TODO: Verify compares.
1116 case MVT::f32:
1117 CmpOpc = ARM::VCMPES;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001118 break;
1119 case MVT::f64:
1120 CmpOpc = ARM::VCMPED;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001121 break;
1122 case MVT::i32:
1123 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001124 break;
1125 }
1126
1127 // Get the compare predicate.
Eric Christopher632ae892011-04-29 21:56:31 +00001128 // Try to take advantage of fallthrough opportunities.
1129 CmpInst::Predicate Predicate = CI->getPredicate();
1130 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1131 std::swap(TBB, FBB);
1132 Predicate = CmpInst::getInversePredicate(Predicate);
1133 }
1134
1135 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher0e6233b2010-10-29 21:08:19 +00001136
1137 // We may not handle every CC for now.
1138 if (ARMPred == ARMCC::AL) return false;
1139
1140 unsigned Arg1 = getRegForValue(CI->getOperand(0));
1141 if (Arg1 == 0) return false;
1142
1143 unsigned Arg2 = getRegForValue(CI->getOperand(1));
1144 if (Arg2 == 0) return false;
1145
1146 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1147 TII.get(CmpOpc))
1148 .addReg(Arg1).addReg(Arg2));
Jim Grosbach16cb3762010-11-09 19:22:26 +00001149
Eric Christopher0e6233b2010-10-29 21:08:19 +00001150 // For floating point we need to move the result to a comparison register
1151 // that we can then use for branches.
1152 if (isFloat)
1153 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1154 TII.get(ARM::FMSTAT)));
Jim Grosbach16cb3762010-11-09 19:22:26 +00001155
Eric Christopher0e6233b2010-10-29 21:08:19 +00001156 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1157 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1158 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
1159 FastEmitBranch(FBB, DL);
1160 FuncInfo.MBB->addSuccessor(TBB);
1161 return true;
1162 }
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001163 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1164 MVT SourceVT;
1165 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
Eli Friedman76927d732011-05-25 23:49:02 +00001166 (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001167 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1168 unsigned OpReg = getRegForValue(TI->getOperand(0));
1169 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1170 TII.get(TstOpc))
1171 .addReg(OpReg).addImm(1));
1172
1173 unsigned CCMode = ARMCC::NE;
1174 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1175 std::swap(TBB, FBB);
1176 CCMode = ARMCC::EQ;
1177 }
1178
1179 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1180 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1181 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1182
1183 FastEmitBranch(FBB, DL);
1184 FuncInfo.MBB->addSuccessor(TBB);
1185 return true;
1186 }
Eric Christopher0e6233b2010-10-29 21:08:19 +00001187 }
Jim Grosbach16cb3762010-11-09 19:22:26 +00001188
Eric Christopher0e6233b2010-10-29 21:08:19 +00001189 unsigned CmpReg = getRegForValue(BI->getCondition());
1190 if (CmpReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001191
Stuart Hastingsc5eecbc2011-04-16 03:31:26 +00001192 // We've been divorced from our compare! Our block was split, and
1193 // now our compare lives in a predecessor block. We musn't
1194 // re-compare here, as the children of the compare aren't guaranteed
1195 // live across the block boundary (we *could* check for this).
1196 // Regardless, the compare has been done in the predecessor block,
1197 // and it left a value for us in a virtual register. Ergo, we test
1198 // the one-bit value left in the virtual register.
1199 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1200 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TstOpc))
1201 .addReg(CmpReg).addImm(1));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001202
Eric Christopher7a20a372011-04-28 16:52:09 +00001203 unsigned CCMode = ARMCC::NE;
1204 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1205 std::swap(TBB, FBB);
1206 CCMode = ARMCC::EQ;
1207 }
1208
Eric Christophere5734102010-09-03 00:35:47 +00001209 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
Eric Christophere5734102010-09-03 00:35:47 +00001210 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
Eric Christopher7a20a372011-04-28 16:52:09 +00001211 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Eric Christophere5734102010-09-03 00:35:47 +00001212 FastEmitBranch(FBB, DL);
1213 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001214 return true;
Eric Christophere5734102010-09-03 00:35:47 +00001215}
1216
Eric Christopher43b62be2010-09-27 06:02:23 +00001217bool ARMFastISel::SelectCmp(const Instruction *I) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001218 const CmpInst *CI = cast<CmpInst>(I);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001219
Duncan Sands1440e8b2010-11-03 11:35:31 +00001220 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001221 Type *Ty = CI->getOperand(0)->getType();
Eric Christopherd43393a2010-09-08 23:13:45 +00001222 if (!isTypeLegal(Ty, VT))
1223 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001224
Eric Christopherd43393a2010-09-08 23:13:45 +00001225 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1226 if (isFloat && !Subtarget->hasVFP2())
1227 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001228
Eric Christopherd43393a2010-09-08 23:13:45 +00001229 unsigned CmpOpc;
Eric Christopher229207a2010-09-29 01:14:47 +00001230 unsigned CondReg;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001231 switch (VT.SimpleTy) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001232 default: return false;
1233 // TODO: Verify compares.
1234 case MVT::f32:
1235 CmpOpc = ARM::VCMPES;
Eric Christopher229207a2010-09-29 01:14:47 +00001236 CondReg = ARM::FPSCR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001237 break;
1238 case MVT::f64:
1239 CmpOpc = ARM::VCMPED;
Eric Christopher229207a2010-09-29 01:14:47 +00001240 CondReg = ARM::FPSCR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001241 break;
1242 case MVT::i32:
1243 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
Eric Christopher229207a2010-09-29 01:14:47 +00001244 CondReg = ARM::CPSR;
Eric Christopherd43393a2010-09-08 23:13:45 +00001245 break;
1246 }
1247
Eric Christopher229207a2010-09-29 01:14:47 +00001248 // Get the compare predicate.
1249 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopherdccd2c32010-10-11 08:38:55 +00001250
Eric Christopher229207a2010-09-29 01:14:47 +00001251 // We may not handle every CC for now.
1252 if (ARMPred == ARMCC::AL) return false;
1253
Eric Christopherd43393a2010-09-08 23:13:45 +00001254 unsigned Arg1 = getRegForValue(CI->getOperand(0));
1255 if (Arg1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001256
Eric Christopherd43393a2010-09-08 23:13:45 +00001257 unsigned Arg2 = getRegForValue(CI->getOperand(1));
1258 if (Arg2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001259
Eric Christopherd43393a2010-09-08 23:13:45 +00001260 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1261 .addReg(Arg1).addReg(Arg2));
Eric Christopherac1a19e2010-09-09 01:06:51 +00001262
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001263 // For floating point we need to move the result to a comparison register
1264 // that we can then use for branches.
Eric Christopherd43393a2010-09-08 23:13:45 +00001265 if (isFloat)
1266 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1267 TII.get(ARM::FMSTAT)));
Eric Christopherce07b542010-09-09 20:26:31 +00001268
Eric Christopher229207a2010-09-29 01:14:47 +00001269 // Now set a register based on the comparison. Explicitly set the predicates
1270 // here.
Eric Christopher338c2532010-10-07 05:31:49 +00001271 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCi : ARM::MOVCCi;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001272 TargetRegisterClass *RC = isThumb ? ARM::rGPRRegisterClass
Eric Christopher5d18d922010-10-07 05:39:19 +00001273 : ARM::GPRRegisterClass;
1274 unsigned DestReg = createResultReg(RC);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001275 Constant *Zero
Eric Christopher8cf6c602010-09-29 22:24:45 +00001276 = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher229207a2010-09-29 01:14:47 +00001277 unsigned ZeroReg = TargetMaterializeConstant(Zero);
1278 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), DestReg)
1279 .addReg(ZeroReg).addImm(1)
1280 .addImm(ARMPred).addReg(CondReg);
1281
Eric Christophera5b1e682010-09-17 22:28:18 +00001282 UpdateValueMap(I, DestReg);
Eric Christopherd43393a2010-09-08 23:13:45 +00001283 return true;
1284}
1285
Eric Christopher43b62be2010-09-27 06:02:23 +00001286bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopher46203602010-09-09 00:26:48 +00001287 // Make sure we have VFP and that we're extending float to double.
1288 if (!Subtarget->hasVFP2()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001289
Eric Christopher46203602010-09-09 00:26:48 +00001290 Value *V = I->getOperand(0);
1291 if (!I->getType()->isDoubleTy() ||
1292 !V->getType()->isFloatTy()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001293
Eric Christopher46203602010-09-09 00:26:48 +00001294 unsigned Op = getRegForValue(V);
1295 if (Op == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001296
Eric Christopher46203602010-09-09 00:26:48 +00001297 unsigned Result = createResultReg(ARM::DPRRegisterClass);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001298 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001299 TII.get(ARM::VCVTDS), Result)
Eric Christopherce07b542010-09-09 20:26:31 +00001300 .addReg(Op));
1301 UpdateValueMap(I, Result);
1302 return true;
1303}
1304
Eric Christopher43b62be2010-09-27 06:02:23 +00001305bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopherce07b542010-09-09 20:26:31 +00001306 // Make sure we have VFP and that we're truncating double to float.
1307 if (!Subtarget->hasVFP2()) return false;
1308
1309 Value *V = I->getOperand(0);
Eric Christopher022b7fb2010-10-05 23:13:24 +00001310 if (!(I->getType()->isFloatTy() &&
1311 V->getType()->isDoubleTy())) return false;
Eric Christopherce07b542010-09-09 20:26:31 +00001312
1313 unsigned Op = getRegForValue(V);
1314 if (Op == 0) return false;
1315
1316 unsigned Result = createResultReg(ARM::SPRRegisterClass);
Eric Christopherce07b542010-09-09 20:26:31 +00001317 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001318 TII.get(ARM::VCVTSD), Result)
Eric Christopher46203602010-09-09 00:26:48 +00001319 .addReg(Op));
1320 UpdateValueMap(I, Result);
1321 return true;
1322}
1323
Eric Christopher43b62be2010-09-27 06:02:23 +00001324bool ARMFastISel::SelectSIToFP(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001325 // Make sure we have VFP.
1326 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001327
Duncan Sands1440e8b2010-11-03 11:35:31 +00001328 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001329 Type *Ty = I->getType();
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001330 if (!isTypeLegal(Ty, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001331 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001332
Eli Friedman783c6642011-05-25 19:09:45 +00001333 // FIXME: Handle sign-extension where necessary.
1334 if (!I->getOperand(0)->getType()->isIntegerTy(32))
1335 return false;
1336
Eric Christopher9a040492010-09-09 18:54:59 +00001337 unsigned Op = getRegForValue(I->getOperand(0));
1338 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001339
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001340 // The conversion routine works on fp-reg to fp-reg and the operand above
1341 // was an integer, move it to the fp registers if possible.
Eric Christopher022b7fb2010-10-05 23:13:24 +00001342 unsigned FP = ARMMoveToFPReg(MVT::f32, Op);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001343 if (FP == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001344
Eric Christopher9a040492010-09-09 18:54:59 +00001345 unsigned Opc;
1346 if (Ty->isFloatTy()) Opc = ARM::VSITOS;
1347 else if (Ty->isDoubleTy()) Opc = ARM::VSITOD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001348 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001349
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001350 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Eric Christopher9a040492010-09-09 18:54:59 +00001351 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1352 ResultReg)
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001353 .addReg(FP));
Eric Christopherce07b542010-09-09 20:26:31 +00001354 UpdateValueMap(I, ResultReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001355 return true;
1356}
1357
Eric Christopher43b62be2010-09-27 06:02:23 +00001358bool ARMFastISel::SelectFPToSI(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001359 // Make sure we have VFP.
1360 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001361
Duncan Sands1440e8b2010-11-03 11:35:31 +00001362 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001363 Type *RetTy = I->getType();
Eric Christopher920a2082010-09-10 00:35:09 +00001364 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001365 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001366
Eric Christopher9a040492010-09-09 18:54:59 +00001367 unsigned Op = getRegForValue(I->getOperand(0));
1368 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001369
Eric Christopher9a040492010-09-09 18:54:59 +00001370 unsigned Opc;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001371 Type *OpTy = I->getOperand(0)->getType();
Eric Christopher9a040492010-09-09 18:54:59 +00001372 if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS;
1373 else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001374 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001375
Eric Christopher022b7fb2010-10-05 23:13:24 +00001376 // f64->s32 or f32->s32 both need an intermediate f32 reg.
1377 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Eric Christopher9a040492010-09-09 18:54:59 +00001378 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1379 ResultReg)
1380 .addReg(Op));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001381
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001382 // This result needs to be in an integer register, but the conversion only
1383 // takes place in fp-regs.
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001384 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001385 if (IntReg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001386
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001387 UpdateValueMap(I, IntReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001388 return true;
1389}
1390
Eric Christopher3bbd3962010-10-11 08:27:59 +00001391bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001392 MVT VT;
1393 if (!isTypeLegal(I->getType(), VT))
Eric Christopher3bbd3962010-10-11 08:27:59 +00001394 return false;
1395
1396 // Things need to be register sized for register moves.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001397 if (VT != MVT::i32) return false;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001398 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
1399
1400 unsigned CondReg = getRegForValue(I->getOperand(0));
1401 if (CondReg == 0) return false;
1402 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1403 if (Op1Reg == 0) return false;
1404 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1405 if (Op2Reg == 0) return false;
1406
1407 unsigned CmpOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1408 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1409 .addReg(CondReg).addImm(1));
1410 unsigned ResultReg = createResultReg(RC);
1411 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCr : ARM::MOVCCr;
1412 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), ResultReg)
1413 .addReg(Op1Reg).addReg(Op2Reg)
1414 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
1415 UpdateValueMap(I, ResultReg);
1416 return true;
1417}
1418
Eric Christopher08637852010-09-30 22:34:19 +00001419bool ARMFastISel::SelectSDiv(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001420 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001421 Type *Ty = I->getType();
Eric Christopher08637852010-09-30 22:34:19 +00001422 if (!isTypeLegal(Ty, VT))
1423 return false;
1424
1425 // If we have integer div support we should have selected this automagically.
1426 // In case we have a real miss go ahead and return false and we'll pick
1427 // it up later.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001428 if (Subtarget->hasDivide()) return false;
1429
Eric Christopher08637852010-09-30 22:34:19 +00001430 // Otherwise emit a libcall.
1431 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christopher7bdc4de2010-10-11 08:31:54 +00001432 if (VT == MVT::i8)
1433 LC = RTLIB::SDIV_I8;
1434 else if (VT == MVT::i16)
Eric Christopher08637852010-09-30 22:34:19 +00001435 LC = RTLIB::SDIV_I16;
1436 else if (VT == MVT::i32)
1437 LC = RTLIB::SDIV_I32;
1438 else if (VT == MVT::i64)
1439 LC = RTLIB::SDIV_I64;
1440 else if (VT == MVT::i128)
1441 LC = RTLIB::SDIV_I128;
1442 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopherdccd2c32010-10-11 08:38:55 +00001443
Eric Christopher08637852010-09-30 22:34:19 +00001444 return ARMEmitLibcall(I, LC);
1445}
1446
Eric Christopher6a880d62010-10-11 08:37:26 +00001447bool ARMFastISel::SelectSRem(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001448 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001449 Type *Ty = I->getType();
Eric Christopher6a880d62010-10-11 08:37:26 +00001450 if (!isTypeLegal(Ty, VT))
1451 return false;
1452
1453 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1454 if (VT == MVT::i8)
1455 LC = RTLIB::SREM_I8;
1456 else if (VT == MVT::i16)
1457 LC = RTLIB::SREM_I16;
1458 else if (VT == MVT::i32)
1459 LC = RTLIB::SREM_I32;
1460 else if (VT == MVT::i64)
1461 LC = RTLIB::SREM_I64;
1462 else if (VT == MVT::i128)
1463 LC = RTLIB::SREM_I128;
Eric Christophera1640d92010-10-11 08:40:05 +00001464 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christopher2896df82010-10-15 18:02:07 +00001465
Eric Christopher6a880d62010-10-11 08:37:26 +00001466 return ARMEmitLibcall(I, LC);
1467}
1468
Eric Christopher43b62be2010-09-27 06:02:23 +00001469bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
Eric Christopherbd6bf082010-09-09 01:02:03 +00001470 EVT VT = TLI.getValueType(I->getType(), true);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001471
Eric Christopherbc39b822010-09-09 00:53:57 +00001472 // We can get here in the case when we want to use NEON for our fp
1473 // operations, but can't figure out how to. Just use the vfp instructions
1474 // if we have them.
1475 // FIXME: It'd be nice to use NEON instructions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001476 Type *Ty = I->getType();
Eric Christopherbd6bf082010-09-09 01:02:03 +00001477 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1478 if (isFloat && !Subtarget->hasVFP2())
1479 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001480
Eric Christopherbc39b822010-09-09 00:53:57 +00001481 unsigned Op1 = getRegForValue(I->getOperand(0));
1482 if (Op1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001483
Eric Christopherbc39b822010-09-09 00:53:57 +00001484 unsigned Op2 = getRegForValue(I->getOperand(1));
1485 if (Op2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001486
Eric Christopherbc39b822010-09-09 00:53:57 +00001487 unsigned Opc;
Duncan Sandscdfad362010-11-03 12:17:33 +00001488 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopherbc39b822010-09-09 00:53:57 +00001489 switch (ISDOpcode) {
1490 default: return false;
1491 case ISD::FADD:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001492 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001493 break;
1494 case ISD::FSUB:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001495 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001496 break;
1497 case ISD::FMUL:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001498 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001499 break;
1500 }
Eric Christopherbd6bf082010-09-09 01:02:03 +00001501 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Eric Christopherbc39b822010-09-09 00:53:57 +00001502 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1503 TII.get(Opc), ResultReg)
1504 .addReg(Op1).addReg(Op2));
Eric Christopherce07b542010-09-09 20:26:31 +00001505 UpdateValueMap(I, ResultReg);
Eric Christopherbc39b822010-09-09 00:53:57 +00001506 return true;
1507}
1508
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001509// Call Handling Code
1510
Eric Christopherfa87d662010-10-18 02:17:53 +00001511bool ARMFastISel::FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src,
1512 EVT SrcVT, unsigned &ResultReg) {
1513 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
1514 Src, /*TODO: Kill=*/false);
Jim Grosbach6b156392010-10-27 21:39:08 +00001515
Eric Christopherfa87d662010-10-18 02:17:53 +00001516 if (RR != 0) {
1517 ResultReg = RR;
1518 return true;
1519 } else
Jim Grosbach6b156392010-10-27 21:39:08 +00001520 return false;
Eric Christopherfa87d662010-10-18 02:17:53 +00001521}
1522
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001523// This is largely taken directly from CCAssignFnForNode - we don't support
1524// varargs in FastISel so that part has been removed.
1525// TODO: We may not support all of this.
1526CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
1527 switch (CC) {
1528 default:
1529 llvm_unreachable("Unsupported calling convention");
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001530 case CallingConv::Fast:
Evan Cheng1f8b40d2010-10-22 18:57:05 +00001531 // Ignore fastcc. Silence compiler warnings.
1532 (void)RetFastCC_ARM_APCS;
1533 (void)FastCC_ARM_APCS;
1534 // Fallthrough
1535 case CallingConv::C:
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001536 // Use target triple & subtarget features to do actual dispatch.
1537 if (Subtarget->isAAPCS_ABI()) {
1538 if (Subtarget->hasVFP2() &&
1539 FloatABIType == FloatABI::Hard)
1540 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1541 else
1542 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1543 } else
1544 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1545 case CallingConv::ARM_AAPCS_VFP:
1546 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1547 case CallingConv::ARM_AAPCS:
1548 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1549 case CallingConv::ARM_APCS:
1550 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1551 }
1552}
1553
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001554bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1555 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001556 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001557 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1558 SmallVectorImpl<unsigned> &RegArgs,
1559 CallingConv::ID CC,
1560 unsigned &NumBytes) {
1561 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001562 CCState CCInfo(CC, false, *FuncInfo.MF, TM, ArgLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001563 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC, false));
1564
1565 // Get a count of how many bytes are to be pushed on the stack.
1566 NumBytes = CCInfo.getNextStackOffset();
1567
1568 // Issue CALLSEQ_START
Evan Chengd5b03f22011-06-28 21:14:33 +00001569 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001570 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1571 TII.get(AdjStackDown))
1572 .addImm(NumBytes));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001573
1574 // Process the args.
1575 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1576 CCValAssign &VA = ArgLocs[i];
1577 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sands1440e8b2010-11-03 11:35:31 +00001578 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001579
Eric Christopher4a2b3162011-01-27 05:44:56 +00001580 // We don't handle NEON/vector parameters yet.
1581 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
Eric Christophera4633f52010-10-23 09:37:17 +00001582 return false;
1583
Eric Christopherf9764fa2010-09-30 20:49:44 +00001584 // Handle arg promotion, etc.
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001585 switch (VA.getLocInfo()) {
1586 case CCValAssign::Full: break;
Eric Christopherfa87d662010-10-18 02:17:53 +00001587 case CCValAssign::SExt: {
1588 bool Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1589 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001590 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001591 Emitted = true;
1592 ArgVT = VA.getLocVT();
1593 break;
1594 }
1595 case CCValAssign::ZExt: {
1596 bool Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1597 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001598 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001599 Emitted = true;
1600 ArgVT = VA.getLocVT();
1601 break;
1602 }
1603 case CCValAssign::AExt: {
Eric Christopherfa87d662010-10-18 02:17:53 +00001604 bool Emitted = FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1605 Arg, ArgVT, Arg);
1606 if (!Emitted)
1607 Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1608 Arg, ArgVT, Arg);
1609 if (!Emitted)
1610 Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1611 Arg, ArgVT, Arg);
1612
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001613 assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001614 ArgVT = VA.getLocVT();
1615 break;
1616 }
1617 case CCValAssign::BCvt: {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001618 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001619 /*TODO: Kill=*/false);
Eric Christopherfa87d662010-10-18 02:17:53 +00001620 assert(BC != 0 && "Failed to emit a bitcast!");
1621 Arg = BC;
1622 ArgVT = VA.getLocVT();
1623 break;
1624 }
1625 default: llvm_unreachable("Unknown arg promotion!");
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001626 }
1627
1628 // Now copy/store arg to correct locations.
Eric Christopherfb0b8922010-10-11 21:20:02 +00001629 if (VA.isRegLoc() && !VA.needsCustom()) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001630 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
Eric Christopherf9764fa2010-09-30 20:49:44 +00001631 VA.getLocReg())
1632 .addReg(Arg);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001633 RegArgs.push_back(VA.getLocReg());
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001634 } else if (VA.needsCustom()) {
1635 // TODO: We need custom lowering for vector (v2f64) args.
1636 if (VA.getLocVT() != MVT::f64) return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001637
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001638 CCValAssign &NextVA = ArgLocs[++i];
1639
1640 // TODO: Only handle register args for now.
1641 if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false;
1642
1643 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1644 TII.get(ARM::VMOVRRD), VA.getLocReg())
1645 .addReg(NextVA.getLocReg(), RegState::Define)
1646 .addReg(Arg));
1647 RegArgs.push_back(VA.getLocReg());
1648 RegArgs.push_back(NextVA.getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001649 } else {
Eric Christopher5b924802010-10-21 20:09:54 +00001650 assert(VA.isMemLoc());
1651 // Need to store on the stack.
Eric Christopher0d581222010-11-19 22:30:02 +00001652 Address Addr;
1653 Addr.BaseType = Address::RegBase;
1654 Addr.Base.Reg = ARM::SP;
1655 Addr.Offset = VA.getLocMemOffset();
Eric Christopher5b924802010-10-21 20:09:54 +00001656
Eric Christopher0d581222010-11-19 22:30:02 +00001657 if (!ARMEmitStore(ArgVT, Arg, Addr)) return false;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001658 }
1659 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001660 return true;
1661}
1662
Duncan Sands1440e8b2010-11-03 11:35:31 +00001663bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001664 const Instruction *I, CallingConv::ID CC,
1665 unsigned &NumBytes) {
1666 // Issue CALLSEQ_END
Evan Chengd5b03f22011-06-28 21:14:33 +00001667 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001668 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1669 TII.get(AdjStackUp))
1670 .addImm(NumBytes).addImm(0));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001671
1672 // Now the return value.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001673 if (RetVT != MVT::isVoid) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001674 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001675 CCState CCInfo(CC, false, *FuncInfo.MF, TM, RVLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001676 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true));
1677
1678 // Copy all of the result registers out of their specified physreg.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001679 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopher14df8822010-10-01 00:00:11 +00001680 // For this move we copy into two registers and then move into the
1681 // double fp reg we want.
Eric Christopher14df8822010-10-01 00:00:11 +00001682 EVT DestVT = RVLocs[0].getValVT();
1683 TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
1684 unsigned ResultReg = createResultReg(DstRC);
1685 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1686 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopher3659ac22010-10-20 08:02:24 +00001687 .addReg(RVLocs[0].getLocReg())
1688 .addReg(RVLocs[1].getLocReg()));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001689
Eric Christopher3659ac22010-10-20 08:02:24 +00001690 UsedRegs.push_back(RVLocs[0].getLocReg());
1691 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach6b156392010-10-27 21:39:08 +00001692
Eric Christopherdccd2c32010-10-11 08:38:55 +00001693 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001694 UpdateValueMap(I, ResultReg);
1695 } else {
Jim Grosbach95369592010-10-13 23:34:31 +00001696 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Eric Christopher14df8822010-10-01 00:00:11 +00001697 EVT CopyVT = RVLocs[0].getValVT();
1698 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001699
Eric Christopher14df8822010-10-01 00:00:11 +00001700 unsigned ResultReg = createResultReg(DstRC);
1701 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1702 ResultReg).addReg(RVLocs[0].getLocReg());
1703 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001704
Eric Christopherdccd2c32010-10-11 08:38:55 +00001705 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001706 UpdateValueMap(I, ResultReg);
1707 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001708 }
1709
Eric Christopherdccd2c32010-10-11 08:38:55 +00001710 return true;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001711}
1712
Eric Christopher4f512ef2010-10-22 01:28:00 +00001713bool ARMFastISel::SelectRet(const Instruction *I) {
1714 const ReturnInst *Ret = cast<ReturnInst>(I);
1715 const Function &F = *I->getParent()->getParent();
Jim Grosbach6b156392010-10-27 21:39:08 +00001716
Eric Christopher4f512ef2010-10-22 01:28:00 +00001717 if (!FuncInfo.CanLowerReturn)
1718 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001719
Eric Christopher4f512ef2010-10-22 01:28:00 +00001720 if (F.isVarArg())
1721 return false;
1722
1723 CallingConv::ID CC = F.getCallingConv();
1724 if (Ret->getNumOperands() > 0) {
1725 SmallVector<ISD::OutputArg, 4> Outs;
1726 GetReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
1727 Outs, TLI);
1728
1729 // Analyze operands of the call, assigning locations to each operand.
1730 SmallVector<CCValAssign, 16> ValLocs;
Jim Grosbachb04546f2011-09-13 20:30:37 +00001731 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, TM, ValLocs,I->getContext());
Eric Christopher4f512ef2010-10-22 01:28:00 +00001732 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */));
1733
1734 const Value *RV = Ret->getOperand(0);
1735 unsigned Reg = getRegForValue(RV);
1736 if (Reg == 0)
1737 return false;
1738
1739 // Only handle a single return value for now.
1740 if (ValLocs.size() != 1)
1741 return false;
1742
1743 CCValAssign &VA = ValLocs[0];
Jim Grosbach6b156392010-10-27 21:39:08 +00001744
Eric Christopher4f512ef2010-10-22 01:28:00 +00001745 // Don't bother handling odd stuff for now.
1746 if (VA.getLocInfo() != CCValAssign::Full)
1747 return false;
1748 // Only handle register returns for now.
1749 if (!VA.isRegLoc())
1750 return false;
1751 // TODO: For now, don't try to handle cases where getLocInfo()
1752 // says Full but the types don't match.
Duncan Sands1e96bab2010-11-04 10:49:57 +00001753 if (TLI.getValueType(RV->getType()) != VA.getValVT())
Eric Christopher4f512ef2010-10-22 01:28:00 +00001754 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001755
Eric Christopher4f512ef2010-10-22 01:28:00 +00001756 // Make the copy.
1757 unsigned SrcReg = Reg + VA.getValNo();
1758 unsigned DstReg = VA.getLocReg();
1759 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
1760 // Avoid a cross-class copy. This is very unlikely.
1761 if (!SrcRC->contains(DstReg))
1762 return false;
1763 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1764 DstReg).addReg(SrcReg);
1765
1766 // Mark the register as live out of the function.
1767 MRI.addLiveOut(VA.getLocReg());
1768 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001769
Eric Christopher4f512ef2010-10-22 01:28:00 +00001770 unsigned RetOpc = isThumb ? ARM::tBX_RET : ARM::BX_RET;
1771 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1772 TII.get(RetOpc)));
1773 return true;
1774}
1775
Eric Christopher872f4a22011-02-22 01:37:10 +00001776unsigned ARMFastISel::ARMSelectCallOp(const GlobalValue *GV) {
1777
Eric Christopher872f4a22011-02-22 01:37:10 +00001778 // Darwin needs the r9 versions of the opcodes.
1779 bool isDarwin = Subtarget->isTargetDarwin();
Eric Christopher04356612011-04-05 00:39:26 +00001780 if (isThumb) {
Eric Christopher872f4a22011-02-22 01:37:10 +00001781 return isDarwin ? ARM::tBLr9 : ARM::tBL;
1782 } else {
1783 return isDarwin ? ARM::BLr9 : ARM::BL;
1784 }
1785}
1786
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001787// A quick function that will emit a call for a named libcall in F with the
1788// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopherdccd2c32010-10-11 08:38:55 +00001789// can emit a call for any libcall we can produce. This is an abridged version
1790// of the full call infrastructure since we won't need to worry about things
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001791// like computed function pointers or strange arguments at call sites.
1792// TODO: Try to unify this and the normal call bits for ARM, then try to unify
1793// with X86.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001794bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
1795 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001796
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001797 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001798 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001799 MVT RetVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001800 if (RetTy->isVoidTy())
1801 RetVT = MVT::isVoid;
1802 else if (!isTypeLegal(RetTy, RetVT))
1803 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001804
Eric Christopher836c6242010-12-15 23:47:29 +00001805 // TODO: For now if we have long calls specified we don't handle the call.
1806 if (EnableARMLongCalls) return false;
1807
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001808 // Set up the argument vectors.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001809 SmallVector<Value*, 8> Args;
1810 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001811 SmallVector<MVT, 8> ArgVTs;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001812 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1813 Args.reserve(I->getNumOperands());
1814 ArgRegs.reserve(I->getNumOperands());
1815 ArgVTs.reserve(I->getNumOperands());
1816 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001817 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001818 Value *Op = I->getOperand(i);
1819 unsigned Arg = getRegForValue(Op);
1820 if (Arg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001821
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001822 Type *ArgTy = Op->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001823 MVT ArgVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001824 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001825
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001826 ISD::ArgFlagsTy Flags;
1827 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1828 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001829
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001830 Args.push_back(Op);
1831 ArgRegs.push_back(Arg);
1832 ArgVTs.push_back(ArgVT);
1833 ArgFlags.push_back(Flags);
1834 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001835
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001836 // Handle the arguments now that we've gotten them.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001837 SmallVector<unsigned, 4> RegArgs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001838 unsigned NumBytes;
1839 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1840 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001841
Eric Christopher6344a5f2011-04-29 00:07:20 +00001842 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001843 // TODO: Turn this into the table of arm call ops.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001844 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001845 unsigned CallOpc = ARMSelectCallOp(NULL);
1846 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001847 // Explicitly adding the predicate here.
1848 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1849 TII.get(CallOpc)))
1850 .addExternalSymbol(TLI.getLibcallName(Call));
Eric Christopher872f4a22011-02-22 01:37:10 +00001851 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001852 // Explicitly adding the predicate here.
1853 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1854 TII.get(CallOpc))
1855 .addExternalSymbol(TLI.getLibcallName(Call)));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001856
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001857 // Add implicit physical register uses to the call.
1858 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1859 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001860
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001861 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001862 SmallVector<unsigned, 4> UsedRegs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001863 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001864
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001865 // Set all unused physreg defs as dead.
1866 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001867
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001868 return true;
1869}
1870
Eric Christopherf9764fa2010-09-30 20:49:44 +00001871bool ARMFastISel::SelectCall(const Instruction *I) {
1872 const CallInst *CI = cast<CallInst>(I);
1873 const Value *Callee = CI->getCalledValue();
1874
1875 // Can't handle inline asm or worry about intrinsics yet.
1876 if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false;
1877
Eric Christopher52f6c032011-05-02 20:16:33 +00001878 // Only handle global variable Callees.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001879 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Eric Christopher52f6c032011-05-02 20:16:33 +00001880 if (!GV)
Eric Christophere6ca6772010-10-01 21:33:12 +00001881 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001882
Eric Christopherf9764fa2010-09-30 20:49:44 +00001883 // Check the calling convention.
1884 ImmutableCallSite CS(CI);
1885 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher4cf34c62010-10-18 06:49:12 +00001886
Eric Christopherf9764fa2010-09-30 20:49:44 +00001887 // TODO: Avoid some calling conventions?
Eric Christopherdccd2c32010-10-11 08:38:55 +00001888
Eric Christopherf9764fa2010-09-30 20:49:44 +00001889 // Let SDISel handle vararg functions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001890 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1891 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Eric Christopherf9764fa2010-09-30 20:49:44 +00001892 if (FTy->isVarArg())
1893 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001894
Eric Christopherf9764fa2010-09-30 20:49:44 +00001895 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001896 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001897 MVT RetVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001898 if (RetTy->isVoidTy())
1899 RetVT = MVT::isVoid;
1900 else if (!isTypeLegal(RetTy, RetVT))
1901 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001902
Eric Christopher836c6242010-12-15 23:47:29 +00001903 // TODO: For now if we have long calls specified we don't handle the call.
1904 if (EnableARMLongCalls) return false;
Eric Christopher299bbb22011-04-29 00:03:10 +00001905
Eric Christopherf9764fa2010-09-30 20:49:44 +00001906 // Set up the argument vectors.
1907 SmallVector<Value*, 8> Args;
1908 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001909 SmallVector<MVT, 8> ArgVTs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001910 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1911 Args.reserve(CS.arg_size());
1912 ArgRegs.reserve(CS.arg_size());
1913 ArgVTs.reserve(CS.arg_size());
1914 ArgFlags.reserve(CS.arg_size());
1915 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1916 i != e; ++i) {
1917 unsigned Arg = getRegForValue(*i);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001918
Eric Christopherf9764fa2010-09-30 20:49:44 +00001919 if (Arg == 0)
1920 return false;
1921 ISD::ArgFlagsTy Flags;
1922 unsigned AttrInd = i - CS.arg_begin() + 1;
1923 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
1924 Flags.setSExt();
1925 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
1926 Flags.setZExt();
1927
1928 // FIXME: Only handle *easy* calls for now.
1929 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1930 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1931 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1932 CS.paramHasAttr(AttrInd, Attribute::ByVal))
1933 return false;
1934
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001935 Type *ArgTy = (*i)->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001936 MVT ArgVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001937 if (!isTypeLegal(ArgTy, ArgVT))
1938 return false;
1939 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1940 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001941
Eric Christopherf9764fa2010-09-30 20:49:44 +00001942 Args.push_back(*i);
1943 ArgRegs.push_back(Arg);
1944 ArgVTs.push_back(ArgVT);
1945 ArgFlags.push_back(Flags);
1946 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001947
Eric Christopherf9764fa2010-09-30 20:49:44 +00001948 // Handle the arguments now that we've gotten them.
1949 SmallVector<unsigned, 4> RegArgs;
1950 unsigned NumBytes;
1951 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1952 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001953
Eric Christopher6344a5f2011-04-29 00:07:20 +00001954 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001955 // TODO: Turn this into the table of arm call ops.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001956 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001957 unsigned CallOpc = ARMSelectCallOp(GV);
Eric Christopher7bb59962010-11-29 21:56:23 +00001958 // Explicitly adding the predicate here.
Eric Christopher872f4a22011-02-22 01:37:10 +00001959 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001960 // Explicitly adding the predicate here.
1961 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1962 TII.get(CallOpc)))
1963 .addGlobalAddress(GV, 0, 0);
Eric Christopher872f4a22011-02-22 01:37:10 +00001964 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001965 // Explicitly adding the predicate here.
1966 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1967 TII.get(CallOpc))
1968 .addGlobalAddress(GV, 0, 0));
Eric Christopher299bbb22011-04-29 00:03:10 +00001969
Eric Christopherf9764fa2010-09-30 20:49:44 +00001970 // Add implicit physical register uses to the call.
1971 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1972 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001973
Eric Christopherf9764fa2010-09-30 20:49:44 +00001974 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001975 SmallVector<unsigned, 4> UsedRegs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001976 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001977
Eric Christopherf9764fa2010-09-30 20:49:44 +00001978 // Set all unused physreg defs as dead.
1979 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001980
Eric Christopherf9764fa2010-09-30 20:49:44 +00001981 return true;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001982
Eric Christopherf9764fa2010-09-30 20:49:44 +00001983}
1984
Eli Friedman76927d732011-05-25 23:49:02 +00001985bool ARMFastISel::SelectIntCast(const Instruction *I) {
1986 // On ARM, in general, integer casts don't involve legal types; this code
1987 // handles promotable integers. The high bits for a type smaller than
1988 // the register size are assumed to be undefined.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001989 Type *DestTy = I->getType();
Eli Friedman76927d732011-05-25 23:49:02 +00001990 Value *Op = I->getOperand(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001991 Type *SrcTy = Op->getType();
Eli Friedman76927d732011-05-25 23:49:02 +00001992
1993 EVT SrcVT, DestVT;
1994 SrcVT = TLI.getValueType(SrcTy, true);
1995 DestVT = TLI.getValueType(DestTy, true);
1996
1997 if (isa<TruncInst>(I)) {
1998 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
1999 return false;
2000 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
2001 return false;
2002
2003 unsigned SrcReg = getRegForValue(Op);
2004 if (!SrcReg) return false;
2005
2006 // Because the high bits are undefined, a truncate doesn't generate
2007 // any code.
2008 UpdateValueMap(I, SrcReg);
2009 return true;
Eric Christopher471e4222011-06-08 23:55:35 +00002010 }
Eli Friedman76927d732011-05-25 23:49:02 +00002011 if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8)
2012 return false;
2013
2014 unsigned Opc;
2015 bool isZext = isa<ZExtInst>(I);
2016 bool isBoolZext = false;
Eli Friedmana4d487f2011-05-27 18:02:04 +00002017 if (!SrcVT.isSimple())
2018 return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002019 switch (SrcVT.getSimpleVT().SimpleTy) {
2020 default: return false;
2021 case MVT::i16:
Jim Grosbachd04f6a52011-08-23 20:53:08 +00002022 if (!Subtarget->hasV6Ops()) return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002023 if (isZext)
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002024 Opc = isThumb ? ARM::t2UXTH : ARM::UXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002025 else
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002026 Opc = isThumb ? ARM::t2SXTH : ARM::SXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002027 break;
2028 case MVT::i8:
Jim Grosbachd04f6a52011-08-23 20:53:08 +00002029 if (!Subtarget->hasV6Ops()) return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002030 if (isZext)
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002031 Opc = isThumb ? ARM::t2UXTB : ARM::UXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002032 else
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002033 Opc = isThumb ? ARM::t2SXTB : ARM::SXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002034 break;
2035 case MVT::i1:
2036 if (isZext) {
2037 Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
2038 isBoolZext = true;
2039 break;
2040 }
2041 return false;
2042 }
2043
2044 // FIXME: We could save an instruction in many cases by special-casing
2045 // load instructions.
2046 unsigned SrcReg = getRegForValue(Op);
2047 if (!SrcReg) return false;
2048
2049 unsigned DestReg = createResultReg(TLI.getRegClassFor(MVT::i32));
2050 MachineInstrBuilder MIB;
2051 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
2052 .addReg(SrcReg);
2053 if (isBoolZext)
2054 MIB.addImm(1);
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002055 else
2056 MIB.addImm(0);
Eli Friedman76927d732011-05-25 23:49:02 +00002057 AddOptionalDefs(MIB);
2058 UpdateValueMap(I, DestReg);
2059 return true;
2060}
2061
Eric Christopher56d2b722010-09-02 23:43:26 +00002062// TODO: SoftFP support.
Eric Christopherab695882010-07-21 22:26:11 +00002063bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopherac1a19e2010-09-09 01:06:51 +00002064
Eric Christopherab695882010-07-21 22:26:11 +00002065 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +00002066 case Instruction::Load:
Eric Christopher43b62be2010-09-27 06:02:23 +00002067 return SelectLoad(I);
Eric Christopher543cf052010-09-01 22:16:27 +00002068 case Instruction::Store:
Eric Christopher43b62be2010-09-27 06:02:23 +00002069 return SelectStore(I);
Eric Christophere5734102010-09-03 00:35:47 +00002070 case Instruction::Br:
Eric Christopher43b62be2010-09-27 06:02:23 +00002071 return SelectBranch(I);
Eric Christopherd43393a2010-09-08 23:13:45 +00002072 case Instruction::ICmp:
2073 case Instruction::FCmp:
Eric Christopher43b62be2010-09-27 06:02:23 +00002074 return SelectCmp(I);
Eric Christopher46203602010-09-09 00:26:48 +00002075 case Instruction::FPExt:
Eric Christopher43b62be2010-09-27 06:02:23 +00002076 return SelectFPExt(I);
Eric Christopherce07b542010-09-09 20:26:31 +00002077 case Instruction::FPTrunc:
Eric Christopher43b62be2010-09-27 06:02:23 +00002078 return SelectFPTrunc(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002079 case Instruction::SIToFP:
Eric Christopher43b62be2010-09-27 06:02:23 +00002080 return SelectSIToFP(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002081 case Instruction::FPToSI:
Eric Christopher43b62be2010-09-27 06:02:23 +00002082 return SelectFPToSI(I);
Eric Christopherbc39b822010-09-09 00:53:57 +00002083 case Instruction::FAdd:
Eric Christopher43b62be2010-09-27 06:02:23 +00002084 return SelectBinaryOp(I, ISD::FADD);
Eric Christopherbc39b822010-09-09 00:53:57 +00002085 case Instruction::FSub:
Eric Christopher43b62be2010-09-27 06:02:23 +00002086 return SelectBinaryOp(I, ISD::FSUB);
Eric Christopherbc39b822010-09-09 00:53:57 +00002087 case Instruction::FMul:
Eric Christopher43b62be2010-09-27 06:02:23 +00002088 return SelectBinaryOp(I, ISD::FMUL);
Eric Christopherbb3e5da2010-09-14 23:03:37 +00002089 case Instruction::SDiv:
Eric Christopher43b62be2010-09-27 06:02:23 +00002090 return SelectSDiv(I);
Eric Christopher6a880d62010-10-11 08:37:26 +00002091 case Instruction::SRem:
2092 return SelectSRem(I);
Eric Christopherf9764fa2010-09-30 20:49:44 +00002093 case Instruction::Call:
2094 return SelectCall(I);
Eric Christopher3bbd3962010-10-11 08:27:59 +00002095 case Instruction::Select:
2096 return SelectSelect(I);
Eric Christopher4f512ef2010-10-22 01:28:00 +00002097 case Instruction::Ret:
2098 return SelectRet(I);
Eli Friedman76927d732011-05-25 23:49:02 +00002099 case Instruction::Trunc:
2100 case Instruction::ZExt:
2101 case Instruction::SExt:
2102 return SelectIntCast(I);
Eric Christopherab695882010-07-21 22:26:11 +00002103 default: break;
2104 }
2105 return false;
2106}
2107
2108namespace llvm {
2109 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopherfeadddd2010-10-11 20:05:22 +00002110 // Completely untested on non-darwin.
2111 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002112
Eric Christopheraaa8df42010-11-02 01:21:28 +00002113 // Darwin and thumb1 only for now.
Eric Christopherfeadddd2010-10-11 20:05:22 +00002114 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002115 if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() &&
Eric Christopheraaa8df42010-11-02 01:21:28 +00002116 !DisableARMFastISel)
Eric Christopherfeadddd2010-10-11 20:05:22 +00002117 return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +00002118 return 0;
Eric Christopherab695882010-07-21 22:26:11 +00002119 }
2120}