blob: 4e0ad366e01c69d36812e67767540b77f3ffe74d [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);
Chad Rosier530f7ce2011-10-26 22:47:55 +0000176 bool ARMEmitCmp(Type *Ty, const Value *Src1Value, const Value *Src2Value);
Eric Christopher0d581222010-11-19 22:30:02 +0000177 bool ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr);
178 bool ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr);
179 bool ARMComputeAddress(const Value *Obj, Address &Addr);
180 void ARMSimplifyAddress(Address &Addr, EVT VT);
Eric Christopher9ed58df2010-09-09 00:19:41 +0000181 unsigned ARMMaterializeFP(const ConstantFP *CFP, EVT VT);
Eric Christopher744c7c82010-09-28 22:47:54 +0000182 unsigned ARMMaterializeInt(const Constant *C, EVT VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000183 unsigned ARMMaterializeGV(const GlobalValue *GV, EVT VT);
Eric Christopheraa3ace12010-09-09 20:49:25 +0000184 unsigned ARMMoveToFPReg(EVT VT, unsigned SrcReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000185 unsigned ARMMoveToIntReg(EVT VT, unsigned SrcReg);
Eric Christopher872f4a22011-02-22 01:37:10 +0000186 unsigned ARMSelectCallOp(const GlobalValue *GV);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000187
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000188 // Call handling routines.
189 private:
Eric Christopherfa87d662010-10-18 02:17:53 +0000190 bool FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
191 unsigned &ResultReg);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000192 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC, bool Return);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000193 bool ProcessCallArgs(SmallVectorImpl<Value*> &Args,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000194 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +0000195 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000196 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
197 SmallVectorImpl<unsigned> &RegArgs,
198 CallingConv::ID CC,
199 unsigned &NumBytes);
Duncan Sands1440e8b2010-11-03 11:35:31 +0000200 bool FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +0000201 const Instruction *I, CallingConv::ID CC,
202 unsigned &NumBytes);
Eric Christopher7ed8ec92010-09-28 01:21:42 +0000203 bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call);
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000204
205 // OptionalDef handling routines.
206 private:
Eric Christopheraf3dce52011-03-12 01:09:29 +0000207 bool isARMNEONPred(const MachineInstr *MI);
Eric Christopher456144e2010-08-19 00:37:05 +0000208 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
209 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
Eric Christopher564857f2010-12-01 01:40:24 +0000210 void AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000211 const MachineInstrBuilder &MIB,
212 unsigned Flags);
Eric Christopher456144e2010-08-19 00:37:05 +0000213};
Eric Christopherab695882010-07-21 22:26:11 +0000214
215} // end anonymous namespace
216
Eric Christopherd10cd7b2010-09-10 23:18:12 +0000217#include "ARMGenCallingConv.inc"
Eric Christopherab695882010-07-21 22:26:11 +0000218
Eric Christopher456144e2010-08-19 00:37:05 +0000219// DefinesOptionalPredicate - This is different from DefinesPredicate in that
220// we don't care about implicit defs here, just places we'll need to add a
221// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
222bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
Evan Chenge837dea2011-06-28 19:10:37 +0000223 const MCInstrDesc &MCID = MI->getDesc();
224 if (!MCID.hasOptionalDef())
Eric Christopher456144e2010-08-19 00:37:05 +0000225 return false;
226
227 // Look to see if our OptionalDef is defining CPSR or CCR.
228 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
229 const MachineOperand &MO = MI->getOperand(i);
Eric Christopherf762fbe2010-08-20 00:36:24 +0000230 if (!MO.isReg() || !MO.isDef()) continue;
231 if (MO.getReg() == ARM::CPSR)
Eric Christopher456144e2010-08-19 00:37:05 +0000232 *CPSR = true;
233 }
234 return true;
235}
236
Eric Christopheraf3dce52011-03-12 01:09:29 +0000237bool ARMFastISel::isARMNEONPred(const MachineInstr *MI) {
Evan Chenge837dea2011-06-28 19:10:37 +0000238 const MCInstrDesc &MCID = MI->getDesc();
Eric Christopher299bbb22011-04-29 00:03:10 +0000239
Eric Christopheraf3dce52011-03-12 01:09:29 +0000240 // If we're a thumb2 or not NEON function we were handled via isPredicable.
Evan Chenge837dea2011-06-28 19:10:37 +0000241 if ((MCID.TSFlags & ARMII::DomainMask) != ARMII::DomainNEON ||
Eric Christopheraf3dce52011-03-12 01:09:29 +0000242 AFI->isThumb2Function())
243 return false;
Eric Christopher299bbb22011-04-29 00:03:10 +0000244
Evan Chenge837dea2011-06-28 19:10:37 +0000245 for (unsigned i = 0, e = MCID.getNumOperands(); i != e; ++i)
246 if (MCID.OpInfo[i].isPredicate())
Eric Christopheraf3dce52011-03-12 01:09:29 +0000247 return true;
Eric Christopher299bbb22011-04-29 00:03:10 +0000248
Eric Christopheraf3dce52011-03-12 01:09:29 +0000249 return false;
250}
251
Eric Christopher456144e2010-08-19 00:37:05 +0000252// If the machine is predicable go ahead and add the predicate operands, if
253// it needs default CC operands add those.
Eric Christopheraaa8df42010-11-02 01:21:28 +0000254// TODO: If we want to support thumb1 then we'll need to deal with optional
255// CPSR defs that need to be added before the remaining operands. See s_cc_out
256// for descriptions why.
Eric Christopher456144e2010-08-19 00:37:05 +0000257const MachineInstrBuilder &
258ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
259 MachineInstr *MI = &*MIB;
260
Eric Christopheraf3dce52011-03-12 01:09:29 +0000261 // Do we use a predicate? or...
262 // Are we NEON in ARM mode and have a predicate operand? If so, I know
263 // we're not predicable but add it anyways.
264 if (TII.isPredicable(MI) || isARMNEONPred(MI))
Eric Christopher456144e2010-08-19 00:37:05 +0000265 AddDefaultPred(MIB);
Eric Christopher299bbb22011-04-29 00:03:10 +0000266
Eric Christopher456144e2010-08-19 00:37:05 +0000267 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
268 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christopher979e0a12010-08-19 15:35:27 +0000269 bool CPSR = false;
Eric Christopher456144e2010-08-19 00:37:05 +0000270 if (DefinesOptionalPredicate(MI, &CPSR)) {
271 if (CPSR)
272 AddDefaultT1CC(MIB);
273 else
274 AddDefaultCC(MIB);
275 }
276 return MIB;
277}
278
Eric Christopher0fe7d542010-08-17 01:25:29 +0000279unsigned ARMFastISel::FastEmitInst_(unsigned MachineInstOpcode,
280 const TargetRegisterClass* RC) {
281 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000282 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000283
Eric Christopher456144e2010-08-19 00:37:05 +0000284 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg));
Eric Christopher0fe7d542010-08-17 01:25:29 +0000285 return ResultReg;
286}
287
288unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
289 const TargetRegisterClass *RC,
290 unsigned Op0, bool Op0IsKill) {
291 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000292 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000293
294 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000295 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000296 .addReg(Op0, Op0IsKill * RegState::Kill));
297 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000298 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000299 .addReg(Op0, Op0IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000300 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000301 TII.get(TargetOpcode::COPY), ResultReg)
302 .addReg(II.ImplicitDefs[0]));
303 }
304 return ResultReg;
305}
306
307unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
308 const TargetRegisterClass *RC,
309 unsigned Op0, bool Op0IsKill,
310 unsigned Op1, bool Op1IsKill) {
311 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000312 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000313
314 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000315 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000316 .addReg(Op0, Op0IsKill * RegState::Kill)
317 .addReg(Op1, Op1IsKill * RegState::Kill));
318 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000319 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000320 .addReg(Op0, Op0IsKill * RegState::Kill)
321 .addReg(Op1, Op1IsKill * RegState::Kill));
Eric Christopher456144e2010-08-19 00:37:05 +0000322 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000323 TII.get(TargetOpcode::COPY), ResultReg)
324 .addReg(II.ImplicitDefs[0]));
325 }
326 return ResultReg;
327}
328
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000329unsigned ARMFastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
330 const TargetRegisterClass *RC,
331 unsigned Op0, bool Op0IsKill,
332 unsigned Op1, bool Op1IsKill,
333 unsigned Op2, bool Op2IsKill) {
334 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000335 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Cameron Zwarichc0e6d782011-03-30 23:01:21 +0000336
337 if (II.getNumDefs() >= 1)
338 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
339 .addReg(Op0, Op0IsKill * RegState::Kill)
340 .addReg(Op1, Op1IsKill * RegState::Kill)
341 .addReg(Op2, Op2IsKill * RegState::Kill));
342 else {
343 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
344 .addReg(Op0, Op0IsKill * RegState::Kill)
345 .addReg(Op1, Op1IsKill * RegState::Kill)
346 .addReg(Op2, Op2IsKill * RegState::Kill));
347 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
348 TII.get(TargetOpcode::COPY), ResultReg)
349 .addReg(II.ImplicitDefs[0]));
350 }
351 return ResultReg;
352}
353
Eric Christopher0fe7d542010-08-17 01:25:29 +0000354unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
355 const TargetRegisterClass *RC,
356 unsigned Op0, bool Op0IsKill,
357 uint64_t Imm) {
358 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000359 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000360
361 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000362 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000363 .addReg(Op0, Op0IsKill * RegState::Kill)
364 .addImm(Imm));
365 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000366 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000367 .addReg(Op0, Op0IsKill * RegState::Kill)
368 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000369 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000370 TII.get(TargetOpcode::COPY), ResultReg)
371 .addReg(II.ImplicitDefs[0]));
372 }
373 return ResultReg;
374}
375
376unsigned ARMFastISel::FastEmitInst_rf(unsigned MachineInstOpcode,
377 const TargetRegisterClass *RC,
378 unsigned Op0, bool Op0IsKill,
379 const ConstantFP *FPImm) {
380 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000381 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000382
383 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000384 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000385 .addReg(Op0, Op0IsKill * RegState::Kill)
386 .addFPImm(FPImm));
387 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000388 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000389 .addReg(Op0, Op0IsKill * RegState::Kill)
390 .addFPImm(FPImm));
Eric Christopher456144e2010-08-19 00:37:05 +0000391 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000392 TII.get(TargetOpcode::COPY), ResultReg)
393 .addReg(II.ImplicitDefs[0]));
394 }
395 return ResultReg;
396}
397
398unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
399 const TargetRegisterClass *RC,
400 unsigned Op0, bool Op0IsKill,
401 unsigned Op1, bool Op1IsKill,
402 uint64_t Imm) {
403 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000404 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher0fe7d542010-08-17 01:25:29 +0000405
406 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000407 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000408 .addReg(Op0, Op0IsKill * RegState::Kill)
409 .addReg(Op1, Op1IsKill * RegState::Kill)
410 .addImm(Imm));
411 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000412 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000413 .addReg(Op0, Op0IsKill * RegState::Kill)
414 .addReg(Op1, Op1IsKill * RegState::Kill)
415 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000416 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000417 TII.get(TargetOpcode::COPY), ResultReg)
418 .addReg(II.ImplicitDefs[0]));
419 }
420 return ResultReg;
421}
422
423unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
424 const TargetRegisterClass *RC,
425 uint64_t Imm) {
426 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000427 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000428
Eric Christopher0fe7d542010-08-17 01:25:29 +0000429 if (II.getNumDefs() >= 1)
Eric Christopher456144e2010-08-19 00:37:05 +0000430 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000431 .addImm(Imm));
432 else {
Eric Christopher456144e2010-08-19 00:37:05 +0000433 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
Eric Christopher0fe7d542010-08-17 01:25:29 +0000434 .addImm(Imm));
Eric Christopher456144e2010-08-19 00:37:05 +0000435 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000436 TII.get(TargetOpcode::COPY), ResultReg)
437 .addReg(II.ImplicitDefs[0]));
438 }
439 return ResultReg;
440}
441
Eric Christopherd94bc542011-04-29 22:07:50 +0000442unsigned ARMFastISel::FastEmitInst_ii(unsigned MachineInstOpcode,
443 const TargetRegisterClass *RC,
444 uint64_t Imm1, uint64_t Imm2) {
445 unsigned ResultReg = createResultReg(RC);
Evan Chenge837dea2011-06-28 19:10:37 +0000446 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher471e4222011-06-08 23:55:35 +0000447
Eric Christopherd94bc542011-04-29 22:07:50 +0000448 if (II.getNumDefs() >= 1)
449 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II, ResultReg)
450 .addImm(Imm1).addImm(Imm2));
451 else {
452 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, II)
453 .addImm(Imm1).addImm(Imm2));
Eric Christopher471e4222011-06-08 23:55:35 +0000454 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherd94bc542011-04-29 22:07:50 +0000455 TII.get(TargetOpcode::COPY),
456 ResultReg)
457 .addReg(II.ImplicitDefs[0]));
458 }
459 return ResultReg;
460}
461
Eric Christopher0fe7d542010-08-17 01:25:29 +0000462unsigned ARMFastISel::FastEmitInst_extractsubreg(MVT RetVT,
463 unsigned Op0, bool Op0IsKill,
464 uint32_t Idx) {
465 unsigned ResultReg = createResultReg(TLI.getRegClassFor(RetVT));
466 assert(TargetRegisterInfo::isVirtualRegister(Op0) &&
467 "Cannot yet extract from physregs");
Eric Christopher456144e2010-08-19 00:37:05 +0000468 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Eric Christopher0fe7d542010-08-17 01:25:29 +0000469 DL, TII.get(TargetOpcode::COPY), ResultReg)
470 .addReg(Op0, getKillRegState(Op0IsKill), Idx));
471 return ResultReg;
472}
473
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000474// TODO: Don't worry about 64-bit now, but when this is fixed remove the
475// checks from the various callers.
Eric Christopheraa3ace12010-09-09 20:49:25 +0000476unsigned ARMFastISel::ARMMoveToFPReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000477 if (VT == MVT::f64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000478
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000479 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
480 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
481 TII.get(ARM::VMOVRS), MoveReg)
482 .addReg(SrcReg));
483 return MoveReg;
484}
485
486unsigned ARMFastISel::ARMMoveToIntReg(EVT VT, unsigned SrcReg) {
Duncan Sandscdfad362010-11-03 12:17:33 +0000487 if (VT == MVT::i64) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000488
Eric Christopheraa3ace12010-09-09 20:49:25 +0000489 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
490 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopher9ee4ce22010-09-09 21:44:45 +0000491 TII.get(ARM::VMOVSR), MoveReg)
Eric Christopheraa3ace12010-09-09 20:49:25 +0000492 .addReg(SrcReg));
493 return MoveReg;
494}
495
Eric Christopher9ed58df2010-09-09 00:19:41 +0000496// For double width floating point we need to materialize two constants
497// (the high and the low) into integer registers then use a move to get
498// the combined constant into an FP reg.
499unsigned ARMFastISel::ARMMaterializeFP(const ConstantFP *CFP, EVT VT) {
500 const APFloat Val = CFP->getValueAPF();
Duncan Sandscdfad362010-11-03 12:17:33 +0000501 bool is64bit = VT == MVT::f64;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000502
Eric Christopher9ed58df2010-09-09 00:19:41 +0000503 // This checks to see if we can use VFP3 instructions to materialize
504 // a constant, otherwise we have to go through the constant pool.
505 if (TLI.isFPImmLegal(Val, VT)) {
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000506 int Imm;
507 unsigned Opc;
508 if (is64bit) {
509 Imm = ARM_AM::getFP64Imm(Val);
510 Opc = ARM::FCONSTD;
511 } else {
512 Imm = ARM_AM::getFP32Imm(Val);
513 Opc = ARM::FCONSTS;
514 }
Eric Christopher9ed58df2010-09-09 00:19:41 +0000515 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
516 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
517 DestReg)
Jim Grosbach4ebbf7b2011-09-30 00:50:06 +0000518 .addImm(Imm));
Eric Christopher9ed58df2010-09-09 00:19:41 +0000519 return DestReg;
520 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000521
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000522 // Require VFP2 for loading fp constants.
Eric Christopher238bb162010-09-09 23:50:00 +0000523 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000524
Eric Christopher238bb162010-09-09 23:50:00 +0000525 // MachineConstantPool wants an explicit alignment.
526 unsigned Align = TD.getPrefTypeAlignment(CFP->getType());
527 if (Align == 0) {
528 // TODO: Figure out if this is correct.
529 Align = TD.getTypeAllocSize(CFP->getType());
530 }
531 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
532 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
533 unsigned Opc = is64bit ? ARM::VLDRD : ARM::VLDRS;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000534
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000535 // The extra reg is for addrmode5.
Eric Christopherf5732c42010-09-28 00:35:09 +0000536 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
537 DestReg)
538 .addConstantPoolIndex(Idx)
Eric Christopher238bb162010-09-09 23:50:00 +0000539 .addReg(0));
540 return DestReg;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000541}
542
Eric Christopher744c7c82010-09-28 22:47:54 +0000543unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, EVT VT) {
Eric Christopherdccd2c32010-10-11 08:38:55 +0000544
Eric Christopher744c7c82010-09-28 22:47:54 +0000545 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000546 if (VT != MVT::i32) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000547
Eric Christophere5b13cf2010-11-03 20:21:17 +0000548 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
549
550 // If we can do this in a single instruction without a constant pool entry
551 // do so now.
552 const ConstantInt *CI = cast<ConstantInt>(C);
Eric Christopher5e262bc2010-11-06 07:53:11 +0000553 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getSExtValue())) {
Eric Christophere5b13cf2010-11-03 20:21:17 +0000554 unsigned Opc = isThumb ? ARM::t2MOVi16 : ARM::MOVi16;
555 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Jim Grosbach3ea4daa2010-11-19 18:01:37 +0000556 TII.get(Opc), DestReg)
557 .addImm(CI->getSExtValue()));
Eric Christophere5b13cf2010-11-03 20:21:17 +0000558 return DestReg;
559 }
560
Eric Christopher56d2b722010-09-02 23:43:26 +0000561 // MachineConstantPool wants an explicit alignment.
562 unsigned Align = TD.getPrefTypeAlignment(C->getType());
563 if (Align == 0) {
564 // TODO: Figure out if this is correct.
565 Align = TD.getTypeAllocSize(C->getType());
566 }
567 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000568
Eric Christopher56d2b722010-09-02 23:43:26 +0000569 if (isThumb)
570 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000571 TII.get(ARM::t2LDRpci), DestReg)
572 .addConstantPoolIndex(Idx));
Eric Christopher56d2b722010-09-02 23:43:26 +0000573 else
Eric Christopherd0c82a62010-11-12 09:48:30 +0000574 // The extra immediate is for addrmode2.
Eric Christopher56d2b722010-09-02 23:43:26 +0000575 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopherfd609802010-09-28 21:55:34 +0000576 TII.get(ARM::LDRcp), DestReg)
577 .addConstantPoolIndex(Idx)
Jim Grosbach3e556122010-10-26 22:37:02 +0000578 .addImm(0));
Eric Christopherac1a19e2010-09-09 01:06:51 +0000579
Eric Christopher56d2b722010-09-02 23:43:26 +0000580 return DestReg;
Eric Christopher1b61ef42010-09-02 01:48:11 +0000581}
582
Eric Christopherc9932f62010-10-01 23:24:42 +0000583unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, EVT VT) {
Eric Christopher890dbbe2010-10-02 00:32:44 +0000584 // For now 32-bit only.
Duncan Sandscdfad362010-11-03 12:17:33 +0000585 if (VT != MVT::i32) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000586
Eric Christopher890dbbe2010-10-02 00:32:44 +0000587 Reloc::Model RelocM = TM.getRelocationModel();
Eric Christopherdccd2c32010-10-11 08:38:55 +0000588
Eric Christopher890dbbe2010-10-02 00:32:44 +0000589 // TODO: Need more magic for ARM PIC.
590 if (!isThumb && (RelocM == Reloc::PIC_)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000591
Eric Christopher890dbbe2010-10-02 00:32:44 +0000592 // MachineConstantPool wants an explicit alignment.
593 unsigned Align = TD.getPrefTypeAlignment(GV->getType());
594 if (Align == 0) {
595 // TODO: Figure out if this is correct.
596 Align = TD.getTypeAllocSize(GV->getType());
597 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000598
Eric Christopher890dbbe2010-10-02 00:32:44 +0000599 // Grab index.
600 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb() ? 4 : 8);
Evan Cheng5de5d4b2011-01-17 08:03:18 +0000601 unsigned Id = AFI->createPICLabelUId();
Bill Wendling5bb77992011-10-01 08:00:54 +0000602 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id,
603 ARMCP::CPValue,
604 PCAdj);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000605 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000606
Eric Christopher890dbbe2010-10-02 00:32:44 +0000607 // Load value.
608 MachineInstrBuilder MIB;
609 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
610 if (isThumb) {
611 unsigned Opc = (RelocM != Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
612 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
613 .addConstantPoolIndex(Idx);
614 if (RelocM == Reloc::PIC_)
615 MIB.addImm(Id);
616 } else {
Eric Christopherd0c82a62010-11-12 09:48:30 +0000617 // The extra immediate is for addrmode2.
Eric Christopher890dbbe2010-10-02 00:32:44 +0000618 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRcp),
619 DestReg)
620 .addConstantPoolIndex(Idx)
Eric Christopherd0c82a62010-11-12 09:48:30 +0000621 .addImm(0);
Eric Christopher890dbbe2010-10-02 00:32:44 +0000622 }
623 AddOptionalDefs(MIB);
Eli Friedmand6412c92011-06-03 01:13:19 +0000624
625 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) {
626 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
627 if (isThumb)
Jim Grosbachb04546f2011-09-13 20:30:37 +0000628 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
629 TII.get(ARM::t2LDRi12), NewDestReg)
Eli Friedmand6412c92011-06-03 01:13:19 +0000630 .addReg(DestReg)
631 .addImm(0);
632 else
633 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(ARM::LDRi12),
634 NewDestReg)
635 .addReg(DestReg)
636 .addImm(0);
637 DestReg = NewDestReg;
638 AddOptionalDefs(MIB);
639 }
640
Eric Christopher890dbbe2010-10-02 00:32:44 +0000641 return DestReg;
Eric Christopherc9932f62010-10-01 23:24:42 +0000642}
643
Eric Christopher9ed58df2010-09-09 00:19:41 +0000644unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
645 EVT VT = TLI.getValueType(C->getType(), true);
646
647 // Only handle simple types.
648 if (!VT.isSimple()) return 0;
649
650 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
651 return ARMMaterializeFP(CFP, VT);
Eric Christopherc9932f62010-10-01 23:24:42 +0000652 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
653 return ARMMaterializeGV(GV, VT);
654 else if (isa<ConstantInt>(C))
655 return ARMMaterializeInt(C, VT);
Eric Christopherdccd2c32010-10-11 08:38:55 +0000656
Eric Christopherc9932f62010-10-01 23:24:42 +0000657 return 0;
Eric Christopher9ed58df2010-09-09 00:19:41 +0000658}
659
Eric Christopherf9764fa2010-09-30 20:49:44 +0000660unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
661 // Don't handle dynamic allocas.
662 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000663
Duncan Sands1440e8b2010-11-03 11:35:31 +0000664 MVT VT;
Eric Christopherec8bf972010-10-17 06:07:26 +0000665 if (!isLoadTypeLegal(AI->getType(), VT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +0000666
Eric Christopherf9764fa2010-09-30 20:49:44 +0000667 DenseMap<const AllocaInst*, int>::iterator SI =
668 FuncInfo.StaticAllocaMap.find(AI);
669
670 // This will get lowered later into the correct offsets and registers
671 // via rewriteXFrameIndex.
672 if (SI != FuncInfo.StaticAllocaMap.end()) {
673 TargetRegisterClass* RC = TLI.getRegClassFor(VT);
674 unsigned ResultReg = createResultReg(RC);
675 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
676 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
677 TII.get(Opc), ResultReg)
678 .addFrameIndex(SI->second)
679 .addImm(0));
680 return ResultReg;
681 }
Eric Christopherdccd2c32010-10-11 08:38:55 +0000682
Eric Christopherf9764fa2010-09-30 20:49:44 +0000683 return 0;
684}
685
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000686bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
Duncan Sands1440e8b2010-11-03 11:35:31 +0000687 EVT evt = TLI.getValueType(Ty, true);
Eric Christopherac1a19e2010-09-09 01:06:51 +0000688
Eric Christopherb1cc8482010-08-25 07:23:49 +0000689 // Only handle simple types.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000690 if (evt == MVT::Other || !evt.isSimple()) return false;
691 VT = evt.getSimpleVT();
Eric Christopherac1a19e2010-09-09 01:06:51 +0000692
Eric Christopherdc908042010-08-31 01:28:42 +0000693 // Handle all legal types, i.e. a register that will directly hold this
694 // value.
695 return TLI.isTypeLegal(VT);
Eric Christopherb1cc8482010-08-25 07:23:49 +0000696}
697
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000698bool ARMFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000699 if (isTypeLegal(Ty, VT)) return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000700
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000701 // If this is a type than can be sign or zero-extended to a basic operation
702 // go ahead and accept it now.
703 if (VT == MVT::i8 || VT == MVT::i16)
704 return true;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000705
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000706 return false;
707}
708
Eric Christopher88de86b2010-11-19 22:36:41 +0000709// Computes the address to get to an object.
Eric Christopher0d581222010-11-19 22:30:02 +0000710bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher83007122010-08-23 21:44:12 +0000711 // Some boilerplate from the X86 FastISel.
712 const User *U = NULL;
Eric Christopher83007122010-08-23 21:44:12 +0000713 unsigned Opcode = Instruction::UserOp1;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000714 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christopher2d630d72010-11-19 22:37:58 +0000715 // Don't walk into other basic blocks unless the object is an alloca from
716 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher76dda7e2010-11-15 21:11:06 +0000717 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
718 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
719 Opcode = I->getOpcode();
720 U = I;
721 }
Eric Christophercb0b04b2010-08-24 00:07:24 +0000722 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher83007122010-08-23 21:44:12 +0000723 Opcode = C->getOpcode();
724 U = C;
725 }
726
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000727 if (PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher83007122010-08-23 21:44:12 +0000728 if (Ty->getAddressSpace() > 255)
729 // Fast instruction selection doesn't support the special
730 // address spaces.
731 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +0000732
Eric Christopher83007122010-08-23 21:44:12 +0000733 switch (Opcode) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000734 default:
Eric Christopher83007122010-08-23 21:44:12 +0000735 break;
Eric Christopher55324332010-10-12 00:43:21 +0000736 case Instruction::BitCast: {
737 // Look through bitcasts.
Eric Christopher0d581222010-11-19 22:30:02 +0000738 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000739 }
740 case Instruction::IntToPtr: {
741 // Look past no-op inttoptrs.
742 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000743 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000744 break;
745 }
746 case Instruction::PtrToInt: {
747 // Look past no-op ptrtoints.
748 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Eric Christopher0d581222010-11-19 22:30:02 +0000749 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher55324332010-10-12 00:43:21 +0000750 break;
751 }
Eric Christophereae84392010-10-14 09:29:41 +0000752 case Instruction::GetElementPtr: {
Eric Christopherb3716582010-11-19 22:39:56 +0000753 Address SavedAddr = Addr;
Eric Christopher0d581222010-11-19 22:30:02 +0000754 int TmpOffset = Addr.Offset;
Eric Christopher2896df82010-10-15 18:02:07 +0000755
Eric Christophereae84392010-10-14 09:29:41 +0000756 // Iterate through the GEP folding the constants into offsets where
757 // we can.
758 gep_type_iterator GTI = gep_type_begin(U);
759 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
760 i != e; ++i, ++GTI) {
761 const Value *Op = *i;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000762 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Eric Christophereae84392010-10-14 09:29:41 +0000763 const StructLayout *SL = TD.getStructLayout(STy);
764 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
765 TmpOffset += SL->getElementOffset(Idx);
766 } else {
Eric Christopher2896df82010-10-15 18:02:07 +0000767 uint64_t S = TD.getTypeAllocSize(GTI.getIndexedType());
Eric Christopher7244d7c2011-03-22 19:39:17 +0000768 for (;;) {
Eric Christopher2896df82010-10-15 18:02:07 +0000769 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
770 // Constant-offset addressing.
771 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000772 break;
773 }
774 if (isa<AddOperator>(Op) &&
775 (!isa<Instruction>(Op) ||
776 FuncInfo.MBBMap[cast<Instruction>(Op)->getParent()]
777 == FuncInfo.MBB) &&
778 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) {
Eric Christopher299bbb22011-04-29 00:03:10 +0000779 // An add (in the same block) with a constant operand. Fold the
Eric Christopher7244d7c2011-03-22 19:39:17 +0000780 // constant.
Eric Christopher2896df82010-10-15 18:02:07 +0000781 ConstantInt *CI =
Eric Christopher7244d7c2011-03-22 19:39:17 +0000782 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christopher2896df82010-10-15 18:02:07 +0000783 TmpOffset += CI->getSExtValue() * S;
Eric Christopher7244d7c2011-03-22 19:39:17 +0000784 // Iterate on the other operand.
785 Op = cast<AddOperator>(Op)->getOperand(0);
786 continue;
Eric Christopher299bbb22011-04-29 00:03:10 +0000787 }
Eric Christopher7244d7c2011-03-22 19:39:17 +0000788 // Unsupported
789 goto unsupported_gep;
790 }
Eric Christophereae84392010-10-14 09:29:41 +0000791 }
792 }
Eric Christopher2896df82010-10-15 18:02:07 +0000793
794 // Try to grab the base operand now.
Eric Christopher0d581222010-11-19 22:30:02 +0000795 Addr.Offset = TmpOffset;
796 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christopher2896df82010-10-15 18:02:07 +0000797
798 // We failed, restore everything and try the other options.
Eric Christopherb3716582010-11-19 22:39:56 +0000799 Addr = SavedAddr;
Eric Christopher2896df82010-10-15 18:02:07 +0000800
Eric Christophereae84392010-10-14 09:29:41 +0000801 unsupported_gep:
Eric Christophereae84392010-10-14 09:29:41 +0000802 break;
803 }
Eric Christopher83007122010-08-23 21:44:12 +0000804 case Instruction::Alloca: {
Eric Christopher15418772010-10-12 05:39:06 +0000805 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher827656d2010-11-20 22:38:27 +0000806 DenseMap<const AllocaInst*, int>::iterator SI =
807 FuncInfo.StaticAllocaMap.find(AI);
808 if (SI != FuncInfo.StaticAllocaMap.end()) {
809 Addr.BaseType = Address::FrameIndexBase;
810 Addr.Base.FI = SI->second;
811 return true;
812 }
813 break;
Eric Christopher83007122010-08-23 21:44:12 +0000814 }
815 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000816
Eric Christophera9c57512010-10-13 21:41:51 +0000817 // Materialize the global variable's address into a reg which can
818 // then be used later to load the variable.
Eric Christophercb0b04b2010-08-24 00:07:24 +0000819 if (const GlobalValue *GV = dyn_cast<GlobalValue>(Obj)) {
Eric Christopherede42b02010-10-13 09:11:46 +0000820 unsigned Tmp = ARMMaterializeGV(GV, TLI.getValueType(Obj->getType()));
821 if (Tmp == 0) return false;
Eric Christopher2896df82010-10-15 18:02:07 +0000822
Eric Christopher0d581222010-11-19 22:30:02 +0000823 Addr.Base.Reg = Tmp;
Eric Christopherede42b02010-10-13 09:11:46 +0000824 return true;
Eric Christophercb0b04b2010-08-24 00:07:24 +0000825 }
Eric Christopherac1a19e2010-09-09 01:06:51 +0000826
Eric Christophercb0b04b2010-08-24 00:07:24 +0000827 // Try to get this in a register if nothing else has worked.
Eric Christopher0d581222010-11-19 22:30:02 +0000828 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
829 return Addr.Base.Reg != 0;
Eric Christophereae84392010-10-14 09:29:41 +0000830}
831
Eric Christopher0d581222010-11-19 22:30:02 +0000832void ARMFastISel::ARMSimplifyAddress(Address &Addr, EVT VT) {
Jim Grosbach6b156392010-10-27 21:39:08 +0000833
Eric Christopher212ae932010-10-21 19:40:30 +0000834 assert(VT.isSimple() && "Non-simple types are invalid here!");
Jim Grosbach6b156392010-10-27 21:39:08 +0000835
Eric Christopher212ae932010-10-21 19:40:30 +0000836 bool needsLowering = false;
837 switch (VT.getSimpleVT().SimpleTy) {
838 default:
839 assert(false && "Unhandled load/store type!");
840 case MVT::i1:
841 case MVT::i8:
842 case MVT::i16:
843 case MVT::i32:
844 // Integer loads/stores handle 12-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000845 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000846 break;
847 case MVT::f32:
848 case MVT::f64:
849 // Floating point operands handle 8-bit offsets.
Eric Christopher0d581222010-11-19 22:30:02 +0000850 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher212ae932010-10-21 19:40:30 +0000851 break;
852 }
Jim Grosbach6b156392010-10-27 21:39:08 +0000853
Eric Christopher827656d2010-11-20 22:38:27 +0000854 // If this is a stack pointer and the offset needs to be simplified then
855 // put the alloca address into a register, set the base type back to
856 // register and continue. This should almost never happen.
857 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
858 TargetRegisterClass *RC = isThumb ? ARM::tGPRRegisterClass :
859 ARM::GPRRegisterClass;
860 unsigned ResultReg = createResultReg(RC);
861 unsigned Opc = isThumb ? ARM::t2ADDri : ARM::ADDri;
862 AddOptionalDefs(BuildMI(*FuncInfo.MBB, *FuncInfo.InsertPt, DL,
863 TII.get(Opc), ResultReg)
864 .addFrameIndex(Addr.Base.FI)
865 .addImm(0));
866 Addr.Base.Reg = ResultReg;
867 Addr.BaseType = Address::RegBase;
868 }
869
Eric Christopher212ae932010-10-21 19:40:30 +0000870 // Since the offset is too large for the load/store instruction
Eric Christopher318b6ee2010-09-02 00:53:56 +0000871 // get the reg+offset into a register.
Eric Christopher212ae932010-10-21 19:40:30 +0000872 if (needsLowering) {
Eli Friedman9ebf57a2011-04-29 21:22:56 +0000873 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
874 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopher0d581222010-11-19 22:30:02 +0000875 Addr.Offset = 0;
Eric Christopher318b6ee2010-09-02 00:53:56 +0000876 }
Eric Christopher83007122010-08-23 21:44:12 +0000877}
878
Eric Christopher564857f2010-12-01 01:40:24 +0000879void ARMFastISel::AddLoadStoreOperands(EVT VT, Address &Addr,
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000880 const MachineInstrBuilder &MIB,
881 unsigned Flags) {
Eric Christopher564857f2010-12-01 01:40:24 +0000882 // addrmode5 output depends on the selection dag addressing dividing the
883 // offset by 4 that it then later multiplies. Do this here as well.
884 if (VT.getSimpleVT().SimpleTy == MVT::f32 ||
885 VT.getSimpleVT().SimpleTy == MVT::f64)
886 Addr.Offset /= 4;
Eric Christopher299bbb22011-04-29 00:03:10 +0000887
Eric Christopher564857f2010-12-01 01:40:24 +0000888 // Frame base works a bit differently. Handle it separately.
889 if (Addr.BaseType == Address::FrameIndexBase) {
890 int FI = Addr.Base.FI;
891 int Offset = Addr.Offset;
892 MachineMemOperand *MMO =
893 FuncInfo.MF->getMachineMemOperand(
894 MachinePointerInfo::getFixedStack(FI, Offset),
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000895 Flags,
Eric Christopher564857f2010-12-01 01:40:24 +0000896 MFI.getObjectSize(FI),
897 MFI.getObjectAlignment(FI));
898 // Now add the rest of the operands.
899 MIB.addFrameIndex(FI);
900
901 // ARM halfword load/stores need an additional operand.
902 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
903
904 MIB.addImm(Addr.Offset);
905 MIB.addMemOperand(MMO);
906 } else {
907 // Now add the rest of the operands.
908 MIB.addReg(Addr.Base.Reg);
Eric Christopher299bbb22011-04-29 00:03:10 +0000909
Eric Christopher564857f2010-12-01 01:40:24 +0000910 // ARM halfword load/stores need an additional operand.
911 if (!isThumb && VT.getSimpleVT().SimpleTy == MVT::i16) MIB.addReg(0);
912
913 MIB.addImm(Addr.Offset);
914 }
915 AddOptionalDefs(MIB);
916}
917
Eric Christopher0d581222010-11-19 22:30:02 +0000918bool ARMFastISel::ARMEmitLoad(EVT VT, unsigned &ResultReg, Address &Addr) {
Eric Christopherac1a19e2010-09-09 01:06:51 +0000919
Eric Christopherb1cc8482010-08-25 07:23:49 +0000920 assert(VT.isSimple() && "Non-simple types are invalid here!");
Eric Christopherdc908042010-08-31 01:28:42 +0000921 unsigned Opc;
Eric Christopheree56ea62010-10-07 05:50:44 +0000922 TargetRegisterClass *RC;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000923 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000924 // This is mostly going to be Neon/vector support.
925 default: return false;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000926 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000927 Opc = isThumb ? ARM::t2LDRHi12 : ARM::LDRH;
Eric Christopher7a56f332010-10-08 01:13:17 +0000928 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000929 break;
930 case MVT::i8:
Jim Grosbachc1d30212010-10-27 00:19:44 +0000931 Opc = isThumb ? ARM::t2LDRBi12 : ARM::LDRBi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000932 RC = ARM::GPRRegisterClass;
Eric Christopher4e68c7c2010-09-01 18:01:32 +0000933 break;
Eric Christopherdc908042010-08-31 01:28:42 +0000934 case MVT::i32:
Jim Grosbach3e556122010-10-26 22:37:02 +0000935 Opc = isThumb ? ARM::t2LDRi12 : ARM::LDRi12;
Eric Christopher7a56f332010-10-08 01:13:17 +0000936 RC = ARM::GPRRegisterClass;
Eric Christopherdc908042010-08-31 01:28:42 +0000937 break;
Eric Christopher6dab1372010-09-18 01:59:37 +0000938 case MVT::f32:
939 Opc = ARM::VLDRS;
Eric Christopheree56ea62010-10-07 05:50:44 +0000940 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000941 break;
942 case MVT::f64:
943 Opc = ARM::VLDRD;
Eric Christopheree56ea62010-10-07 05:50:44 +0000944 RC = TLI.getRegClassFor(VT);
Eric Christopher6dab1372010-09-18 01:59:37 +0000945 break;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000946 }
Eric Christopher564857f2010-12-01 01:40:24 +0000947 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +0000948 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +0000949
Eric Christopher564857f2010-12-01 01:40:24 +0000950 // Create the base instruction, then add the operands.
951 ResultReg = createResultReg(RC);
952 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
953 TII.get(Opc), ResultReg);
Cameron Zwarichc152aa62011-05-28 20:34:49 +0000954 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOLoad);
Eric Christopherdc908042010-08-31 01:28:42 +0000955 return true;
Eric Christopherb1cc8482010-08-25 07:23:49 +0000956}
957
Eric Christopher43b62be2010-09-27 06:02:23 +0000958bool ARMFastISel::SelectLoad(const Instruction *I) {
Eli Friedman4136d232011-09-02 22:33:24 +0000959 // Atomic loads need special handling.
960 if (cast<LoadInst>(I)->isAtomic())
961 return false;
962
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000963 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +0000964 MVT VT;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000965 if (!isLoadTypeLegal(I->getType(), VT))
966 return false;
967
Eric Christopher564857f2010-12-01 01:40:24 +0000968 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +0000969 Address Addr;
Eric Christopher564857f2010-12-01 01:40:24 +0000970 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000971
972 unsigned ResultReg;
Eric Christopher0d581222010-11-19 22:30:02 +0000973 if (!ARMEmitLoad(VT, ResultReg, Addr)) return false;
Eric Christopherdb12b2b2010-09-10 00:34:35 +0000974 UpdateValueMap(I, ResultReg);
975 return true;
976}
977
Eric Christopher0d581222010-11-19 22:30:02 +0000978bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg, Address &Addr) {
Eric Christopher318b6ee2010-09-02 00:53:56 +0000979 unsigned StrOpc;
980 switch (VT.getSimpleVT().SimpleTy) {
Eric Christopher564857f2010-12-01 01:40:24 +0000981 // This is mostly going to be Neon/vector support.
Eric Christopher318b6ee2010-09-02 00:53:56 +0000982 default: return false;
Eric Christopher4c914122010-11-02 23:59:09 +0000983 case MVT::i1: {
984 unsigned Res = createResultReg(isThumb ? ARM::tGPRRegisterClass :
985 ARM::GPRRegisterClass);
986 unsigned Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
987 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
988 TII.get(Opc), Res)
989 .addReg(SrcReg).addImm(1));
990 SrcReg = Res;
991 } // Fallthrough here.
Eric Christopher2896df82010-10-15 18:02:07 +0000992 case MVT::i8:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000993 StrOpc = isThumb ? ARM::t2STRBi12 : ARM::STRBi12;
Eric Christopher15418772010-10-12 05:39:06 +0000994 break;
995 case MVT::i16:
Eric Christopher45c60712010-10-17 01:40:27 +0000996 StrOpc = isThumb ? ARM::t2STRHi12 : ARM::STRH;
Eric Christopher15418772010-10-12 05:39:06 +0000997 break;
Eric Christopher47650ec2010-10-16 01:10:35 +0000998 case MVT::i32:
Jim Grosbach7e3383c2010-10-27 23:12:14 +0000999 StrOpc = isThumb ? ARM::t2STRi12 : ARM::STRi12;
Eric Christopher47650ec2010-10-16 01:10:35 +00001000 break;
Eric Christopher56d2b722010-09-02 23:43:26 +00001001 case MVT::f32:
1002 if (!Subtarget->hasVFP2()) return false;
1003 StrOpc = ARM::VSTRS;
1004 break;
1005 case MVT::f64:
1006 if (!Subtarget->hasVFP2()) return false;
1007 StrOpc = ARM::VSTRD;
1008 break;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001009 }
Eric Christopher564857f2010-12-01 01:40:24 +00001010 // Simplify this down to something we can handle.
Eric Christopher0d581222010-11-19 22:30:02 +00001011 ARMSimplifyAddress(Addr, VT);
Jim Grosbach6b156392010-10-27 21:39:08 +00001012
Eric Christopher564857f2010-12-01 01:40:24 +00001013 // Create the base instruction, then add the operands.
1014 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1015 TII.get(StrOpc))
1016 .addReg(SrcReg, getKillRegState(true));
Cameron Zwarichc152aa62011-05-28 20:34:49 +00001017 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOStore);
Eric Christopher318b6ee2010-09-02 00:53:56 +00001018 return true;
1019}
1020
Eric Christopher43b62be2010-09-27 06:02:23 +00001021bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher318b6ee2010-09-02 00:53:56 +00001022 Value *Op0 = I->getOperand(0);
1023 unsigned SrcReg = 0;
1024
Eli Friedman4136d232011-09-02 22:33:24 +00001025 // Atomic stores need special handling.
1026 if (cast<StoreInst>(I)->isAtomic())
1027 return false;
1028
Eric Christopher564857f2010-12-01 01:40:24 +00001029 // Verify we have a legal type before going any further.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001030 MVT VT;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001031 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopher543cf052010-09-01 22:16:27 +00001032 return false;
Eric Christopher318b6ee2010-09-02 00:53:56 +00001033
Eric Christopher1b61ef42010-09-02 01:48:11 +00001034 // Get the value to be stored into a register.
1035 SrcReg = getRegForValue(Op0);
Eric Christopher564857f2010-12-01 01:40:24 +00001036 if (SrcReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001037
Eric Christopher564857f2010-12-01 01:40:24 +00001038 // See if we can handle this address.
Eric Christopher0d581222010-11-19 22:30:02 +00001039 Address Addr;
Eric Christopher0d581222010-11-19 22:30:02 +00001040 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher318b6ee2010-09-02 00:53:56 +00001041 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001042
Eric Christopher0d581222010-11-19 22:30:02 +00001043 if (!ARMEmitStore(VT, SrcReg, Addr)) return false;
Eric Christophera5b1e682010-09-17 22:28:18 +00001044 return true;
1045}
1046
1047static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1048 switch (Pred) {
1049 // Needs two compares...
1050 case CmpInst::FCMP_ONE:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001051 case CmpInst::FCMP_UEQ:
Eric Christophera5b1e682010-09-17 22:28:18 +00001052 default:
Eric Christopher4053e632010-11-02 01:24:49 +00001053 // AL is our "false" for now. The other two need more compares.
Eric Christophera5b1e682010-09-17 22:28:18 +00001054 return ARMCC::AL;
1055 case CmpInst::ICMP_EQ:
1056 case CmpInst::FCMP_OEQ:
1057 return ARMCC::EQ;
1058 case CmpInst::ICMP_SGT:
1059 case CmpInst::FCMP_OGT:
1060 return ARMCC::GT;
1061 case CmpInst::ICMP_SGE:
1062 case CmpInst::FCMP_OGE:
1063 return ARMCC::GE;
1064 case CmpInst::ICMP_UGT:
1065 case CmpInst::FCMP_UGT:
1066 return ARMCC::HI;
1067 case CmpInst::FCMP_OLT:
1068 return ARMCC::MI;
1069 case CmpInst::ICMP_ULE:
1070 case CmpInst::FCMP_OLE:
1071 return ARMCC::LS;
1072 case CmpInst::FCMP_ORD:
1073 return ARMCC::VC;
1074 case CmpInst::FCMP_UNO:
1075 return ARMCC::VS;
1076 case CmpInst::FCMP_UGE:
1077 return ARMCC::PL;
1078 case CmpInst::ICMP_SLT:
1079 case CmpInst::FCMP_ULT:
Eric Christopherdccd2c32010-10-11 08:38:55 +00001080 return ARMCC::LT;
Eric Christophera5b1e682010-09-17 22:28:18 +00001081 case CmpInst::ICMP_SLE:
1082 case CmpInst::FCMP_ULE:
1083 return ARMCC::LE;
1084 case CmpInst::FCMP_UNE:
1085 case CmpInst::ICMP_NE:
1086 return ARMCC::NE;
1087 case CmpInst::ICMP_UGE:
1088 return ARMCC::HS;
1089 case CmpInst::ICMP_ULT:
1090 return ARMCC::LO;
1091 }
Eric Christopher543cf052010-09-01 22:16:27 +00001092}
1093
Eric Christopher43b62be2010-09-27 06:02:23 +00001094bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christophere5734102010-09-03 00:35:47 +00001095 const BranchInst *BI = cast<BranchInst>(I);
1096 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1097 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopherac1a19e2010-09-09 01:06:51 +00001098
Eric Christophere5734102010-09-03 00:35:47 +00001099 // Simple branch support.
Jim Grosbach16cb3762010-11-09 19:22:26 +00001100
Eric Christopher0e6233b2010-10-29 21:08:19 +00001101 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1102 // behavior.
1103 // TODO: Factor this out.
1104 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Eric Christopher632ae892011-04-29 21:56:31 +00001105 MVT SourceVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001106 Type *Ty = CI->getOperand(0)->getType();
Eric Christopher632ae892011-04-29 21:56:31 +00001107 if (CI->hasOneUse() && (CI->getParent() == I->getParent())
1108 && isTypeLegal(Ty, SourceVT)) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001109 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1110 if (isFloat && !Subtarget->hasVFP2())
1111 return false;
1112
1113 unsigned CmpOpc;
Eric Christopher632ae892011-04-29 21:56:31 +00001114 switch (SourceVT.SimpleTy) {
Eric Christopher0e6233b2010-10-29 21:08:19 +00001115 default: return false;
1116 // TODO: Verify compares.
1117 case MVT::f32:
1118 CmpOpc = ARM::VCMPES;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001119 break;
1120 case MVT::f64:
1121 CmpOpc = ARM::VCMPED;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001122 break;
1123 case MVT::i32:
1124 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
Eric Christopher0e6233b2010-10-29 21:08:19 +00001125 break;
1126 }
1127
1128 // Get the compare predicate.
Eric Christopher632ae892011-04-29 21:56:31 +00001129 // Try to take advantage of fallthrough opportunities.
1130 CmpInst::Predicate Predicate = CI->getPredicate();
1131 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1132 std::swap(TBB, FBB);
1133 Predicate = CmpInst::getInversePredicate(Predicate);
1134 }
1135
1136 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher0e6233b2010-10-29 21:08:19 +00001137
1138 // We may not handle every CC for now.
1139 if (ARMPred == ARMCC::AL) return false;
1140
1141 unsigned Arg1 = getRegForValue(CI->getOperand(0));
1142 if (Arg1 == 0) return false;
1143
1144 unsigned Arg2 = getRegForValue(CI->getOperand(1));
1145 if (Arg2 == 0) return false;
1146
1147 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1148 TII.get(CmpOpc))
1149 .addReg(Arg1).addReg(Arg2));
Jim Grosbach16cb3762010-11-09 19:22:26 +00001150
Eric Christopher0e6233b2010-10-29 21:08:19 +00001151 // For floating point we need to move the result to a comparison register
1152 // that we can then use for branches.
1153 if (isFloat)
1154 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1155 TII.get(ARM::FMSTAT)));
Jim Grosbach16cb3762010-11-09 19:22:26 +00001156
Eric Christopher0e6233b2010-10-29 21:08:19 +00001157 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1158 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1159 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
1160 FastEmitBranch(FBB, DL);
1161 FuncInfo.MBB->addSuccessor(TBB);
1162 return true;
1163 }
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001164 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1165 MVT SourceVT;
1166 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
Eli Friedman76927d732011-05-25 23:49:02 +00001167 (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
Eric Christopherbcf26ae2011-04-29 20:02:39 +00001168 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1169 unsigned OpReg = getRegForValue(TI->getOperand(0));
1170 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1171 TII.get(TstOpc))
1172 .addReg(OpReg).addImm(1));
1173
1174 unsigned CCMode = ARMCC::NE;
1175 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1176 std::swap(TBB, FBB);
1177 CCMode = ARMCC::EQ;
1178 }
1179
1180 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
1181 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
1182 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1183
1184 FastEmitBranch(FBB, DL);
1185 FuncInfo.MBB->addSuccessor(TBB);
1186 return true;
1187 }
Eric Christopher0e6233b2010-10-29 21:08:19 +00001188 }
Jim Grosbach16cb3762010-11-09 19:22:26 +00001189
Eric Christopher0e6233b2010-10-29 21:08:19 +00001190 unsigned CmpReg = getRegForValue(BI->getCondition());
1191 if (CmpReg == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001192
Stuart Hastingsc5eecbc2011-04-16 03:31:26 +00001193 // We've been divorced from our compare! Our block was split, and
1194 // now our compare lives in a predecessor block. We musn't
1195 // re-compare here, as the children of the compare aren't guaranteed
1196 // live across the block boundary (we *could* check for this).
1197 // Regardless, the compare has been done in the predecessor block,
1198 // and it left a value for us in a virtual register. Ergo, we test
1199 // the one-bit value left in the virtual register.
1200 unsigned TstOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1201 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TstOpc))
1202 .addReg(CmpReg).addImm(1));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001203
Eric Christopher7a20a372011-04-28 16:52:09 +00001204 unsigned CCMode = ARMCC::NE;
1205 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1206 std::swap(TBB, FBB);
1207 CCMode = ARMCC::EQ;
1208 }
1209
Eric Christophere5734102010-09-03 00:35:47 +00001210 unsigned BrOpc = isThumb ? ARM::t2Bcc : ARM::Bcc;
Eric Christophere5734102010-09-03 00:35:47 +00001211 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(BrOpc))
Eric Christopher7a20a372011-04-28 16:52:09 +00001212 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Eric Christophere5734102010-09-03 00:35:47 +00001213 FastEmitBranch(FBB, DL);
1214 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001215 return true;
Eric Christophere5734102010-09-03 00:35:47 +00001216}
1217
Chad Rosier530f7ce2011-10-26 22:47:55 +00001218bool ARMFastISel::ARMEmitCmp(Type *Ty, const Value *Src1Value,
1219 const Value *Src2Value) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001220 MVT VT;
Eric Christopherd43393a2010-09-08 23:13:45 +00001221 if (!isTypeLegal(Ty, VT))
1222 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001223
Chad Rosier530f7ce2011-10-26 22:47:55 +00001224 if ((Ty->isFloatTy() || Ty->isDoubleTy()) && !Subtarget->hasVFP2())
Eric Christopherd43393a2010-09-08 23:13:45 +00001225 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001226
Eric Christopherd43393a2010-09-08 23:13:45 +00001227 unsigned CmpOpc;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001228 switch (VT.SimpleTy) {
Eric Christopherd43393a2010-09-08 23:13:45 +00001229 default: return false;
1230 // TODO: Verify compares.
1231 case MVT::f32:
1232 CmpOpc = ARM::VCMPES;
1233 break;
1234 case MVT::f64:
1235 CmpOpc = ARM::VCMPED;
1236 break;
1237 case MVT::i32:
1238 CmpOpc = isThumb ? ARM::t2CMPrr : ARM::CMPrr;
1239 break;
1240 }
1241
Chad Rosier530f7ce2011-10-26 22:47:55 +00001242 unsigned Src1 = getRegForValue(Src1Value);
1243 if (Src1 == 0) return false;
1244
1245 unsigned Src2 = getRegForValue(Src2Value);
1246 if (Src2 == 0) return false;
1247
1248 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1249 .addReg(Src1).addReg(Src2));
1250 return true;
1251}
1252
1253bool ARMFastISel::SelectCmp(const Instruction *I) {
1254 const CmpInst *CI = cast<CmpInst>(I);
1255
Eric Christopher229207a2010-09-29 01:14:47 +00001256 // Get the compare predicate.
1257 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopherdccd2c32010-10-11 08:38:55 +00001258
Eric Christopher229207a2010-09-29 01:14:47 +00001259 // We may not handle every CC for now.
1260 if (ARMPred == ARMCC::AL) return false;
1261
Chad Rosier530f7ce2011-10-26 22:47:55 +00001262 // Emit the compare.
1263 Type *Ty = CI->getOperand(0)->getType();
1264 if (!ARMEmitCmp(Ty, CI->getOperand(0), CI->getOperand(1)))
1265 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001266
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001267 // For floating point we need to move the result to a comparison register
1268 // that we can then use for branches.
Chad Rosier530f7ce2011-10-26 22:47:55 +00001269 bool isFloat = Ty->isFloatTy() || Ty->isDoubleTy();
Eric Christopherd43393a2010-09-08 23:13:45 +00001270 if (isFloat)
1271 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1272 TII.get(ARM::FMSTAT)));
Eric Christopherce07b542010-09-09 20:26:31 +00001273
Eric Christopher229207a2010-09-29 01:14:47 +00001274 // Now set a register based on the comparison. Explicitly set the predicates
1275 // here.
Eric Christopher338c2532010-10-07 05:31:49 +00001276 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCi : ARM::MOVCCi;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001277 TargetRegisterClass *RC = isThumb ? ARM::rGPRRegisterClass
Eric Christopher5d18d922010-10-07 05:39:19 +00001278 : ARM::GPRRegisterClass;
1279 unsigned DestReg = createResultReg(RC);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001280 Constant *Zero
Eric Christopher8cf6c602010-09-29 22:24:45 +00001281 = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher229207a2010-09-29 01:14:47 +00001282 unsigned ZeroReg = TargetMaterializeConstant(Zero);
Chad Rosier530f7ce2011-10-26 22:47:55 +00001283 unsigned CondReg = isFloat ? ARM::FPSCR : ARM::CPSR;
Eric Christopher229207a2010-09-29 01:14:47 +00001284 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), DestReg)
1285 .addReg(ZeroReg).addImm(1)
1286 .addImm(ARMPred).addReg(CondReg);
1287
Eric Christophera5b1e682010-09-17 22:28:18 +00001288 UpdateValueMap(I, DestReg);
Eric Christopherd43393a2010-09-08 23:13:45 +00001289 return true;
1290}
1291
Eric Christopher43b62be2010-09-27 06:02:23 +00001292bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopher46203602010-09-09 00:26:48 +00001293 // Make sure we have VFP and that we're extending float to double.
1294 if (!Subtarget->hasVFP2()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001295
Eric Christopher46203602010-09-09 00:26:48 +00001296 Value *V = I->getOperand(0);
1297 if (!I->getType()->isDoubleTy() ||
1298 !V->getType()->isFloatTy()) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001299
Eric Christopher46203602010-09-09 00:26:48 +00001300 unsigned Op = getRegForValue(V);
1301 if (Op == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001302
Eric Christopher46203602010-09-09 00:26:48 +00001303 unsigned Result = createResultReg(ARM::DPRRegisterClass);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001304 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001305 TII.get(ARM::VCVTDS), Result)
Eric Christopherce07b542010-09-09 20:26:31 +00001306 .addReg(Op));
1307 UpdateValueMap(I, Result);
1308 return true;
1309}
1310
Eric Christopher43b62be2010-09-27 06:02:23 +00001311bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopherce07b542010-09-09 20:26:31 +00001312 // Make sure we have VFP and that we're truncating double to float.
1313 if (!Subtarget->hasVFP2()) return false;
1314
1315 Value *V = I->getOperand(0);
Eric Christopher022b7fb2010-10-05 23:13:24 +00001316 if (!(I->getType()->isFloatTy() &&
1317 V->getType()->isDoubleTy())) return false;
Eric Christopherce07b542010-09-09 20:26:31 +00001318
1319 unsigned Op = getRegForValue(V);
1320 if (Op == 0) return false;
1321
1322 unsigned Result = createResultReg(ARM::SPRRegisterClass);
Eric Christopherce07b542010-09-09 20:26:31 +00001323 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
Eric Christopheref2fdd22010-09-09 20:36:19 +00001324 TII.get(ARM::VCVTSD), Result)
Eric Christopher46203602010-09-09 00:26:48 +00001325 .addReg(Op));
1326 UpdateValueMap(I, Result);
1327 return true;
1328}
1329
Eric Christopher43b62be2010-09-27 06:02:23 +00001330bool ARMFastISel::SelectSIToFP(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001331 // Make sure we have VFP.
1332 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001333
Duncan Sands1440e8b2010-11-03 11:35:31 +00001334 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001335 Type *Ty = I->getType();
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001336 if (!isTypeLegal(Ty, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001337 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001338
Eli Friedman783c6642011-05-25 19:09:45 +00001339 // FIXME: Handle sign-extension where necessary.
1340 if (!I->getOperand(0)->getType()->isIntegerTy(32))
1341 return false;
1342
Eric Christopher9a040492010-09-09 18:54:59 +00001343 unsigned Op = getRegForValue(I->getOperand(0));
1344 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001345
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001346 // The conversion routine works on fp-reg to fp-reg and the operand above
1347 // was an integer, move it to the fp registers if possible.
Eric Christopher022b7fb2010-10-05 23:13:24 +00001348 unsigned FP = ARMMoveToFPReg(MVT::f32, Op);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001349 if (FP == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001350
Eric Christopher9a040492010-09-09 18:54:59 +00001351 unsigned Opc;
1352 if (Ty->isFloatTy()) Opc = ARM::VSITOS;
1353 else if (Ty->isDoubleTy()) Opc = ARM::VSITOD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001354 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001355
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001356 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Eric Christopher9a040492010-09-09 18:54:59 +00001357 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1358 ResultReg)
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001359 .addReg(FP));
Eric Christopherce07b542010-09-09 20:26:31 +00001360 UpdateValueMap(I, ResultReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001361 return true;
1362}
1363
Eric Christopher43b62be2010-09-27 06:02:23 +00001364bool ARMFastISel::SelectFPToSI(const Instruction *I) {
Eric Christopher9a040492010-09-09 18:54:59 +00001365 // Make sure we have VFP.
1366 if (!Subtarget->hasVFP2()) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001367
Duncan Sands1440e8b2010-11-03 11:35:31 +00001368 MVT DstVT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001369 Type *RetTy = I->getType();
Eric Christopher920a2082010-09-10 00:35:09 +00001370 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher9a040492010-09-09 18:54:59 +00001371 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001372
Eric Christopher9a040492010-09-09 18:54:59 +00001373 unsigned Op = getRegForValue(I->getOperand(0));
1374 if (Op == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001375
Eric Christopher9a040492010-09-09 18:54:59 +00001376 unsigned Opc;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001377 Type *OpTy = I->getOperand(0)->getType();
Eric Christopher9a040492010-09-09 18:54:59 +00001378 if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS;
1379 else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD;
Chad Rosierdd1e7512011-08-31 23:49:05 +00001380 else return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001381
Eric Christopher022b7fb2010-10-05 23:13:24 +00001382 // f64->s32 or f32->s32 both need an intermediate f32 reg.
1383 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Eric Christopher9a040492010-09-09 18:54:59 +00001384 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc),
1385 ResultReg)
1386 .addReg(Op));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001387
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001388 // This result needs to be in an integer register, but the conversion only
1389 // takes place in fp-regs.
Eric Christopherdb12b2b2010-09-10 00:34:35 +00001390 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001391 if (IntReg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001392
Eric Christopher9ee4ce22010-09-09 21:44:45 +00001393 UpdateValueMap(I, IntReg);
Eric Christopher9a040492010-09-09 18:54:59 +00001394 return true;
1395}
1396
Eric Christopher3bbd3962010-10-11 08:27:59 +00001397bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001398 MVT VT;
1399 if (!isTypeLegal(I->getType(), VT))
Eric Christopher3bbd3962010-10-11 08:27:59 +00001400 return false;
1401
1402 // Things need to be register sized for register moves.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001403 if (VT != MVT::i32) return false;
Eric Christopher3bbd3962010-10-11 08:27:59 +00001404 const TargetRegisterClass *RC = TLI.getRegClassFor(VT);
1405
1406 unsigned CondReg = getRegForValue(I->getOperand(0));
1407 if (CondReg == 0) return false;
1408 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1409 if (Op1Reg == 0) return false;
1410 unsigned Op2Reg = getRegForValue(I->getOperand(2));
1411 if (Op2Reg == 0) return false;
1412
1413 unsigned CmpOpc = isThumb ? ARM::t2TSTri : ARM::TSTri;
1414 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(CmpOpc))
1415 .addReg(CondReg).addImm(1));
1416 unsigned ResultReg = createResultReg(RC);
1417 unsigned MovCCOpc = isThumb ? ARM::t2MOVCCr : ARM::MOVCCr;
1418 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(MovCCOpc), ResultReg)
1419 .addReg(Op1Reg).addReg(Op2Reg)
1420 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
1421 UpdateValueMap(I, ResultReg);
1422 return true;
1423}
1424
Eric Christopher08637852010-09-30 22:34:19 +00001425bool ARMFastISel::SelectSDiv(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001426 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001427 Type *Ty = I->getType();
Eric Christopher08637852010-09-30 22:34:19 +00001428 if (!isTypeLegal(Ty, VT))
1429 return false;
1430
1431 // If we have integer div support we should have selected this automagically.
1432 // In case we have a real miss go ahead and return false and we'll pick
1433 // it up later.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001434 if (Subtarget->hasDivide()) return false;
1435
Eric Christopher08637852010-09-30 22:34:19 +00001436 // Otherwise emit a libcall.
1437 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christopher7bdc4de2010-10-11 08:31:54 +00001438 if (VT == MVT::i8)
1439 LC = RTLIB::SDIV_I8;
1440 else if (VT == MVT::i16)
Eric Christopher08637852010-09-30 22:34:19 +00001441 LC = RTLIB::SDIV_I16;
1442 else if (VT == MVT::i32)
1443 LC = RTLIB::SDIV_I32;
1444 else if (VT == MVT::i64)
1445 LC = RTLIB::SDIV_I64;
1446 else if (VT == MVT::i128)
1447 LC = RTLIB::SDIV_I128;
1448 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopherdccd2c32010-10-11 08:38:55 +00001449
Eric Christopher08637852010-09-30 22:34:19 +00001450 return ARMEmitLibcall(I, LC);
1451}
1452
Eric Christopher6a880d62010-10-11 08:37:26 +00001453bool ARMFastISel::SelectSRem(const Instruction *I) {
Duncan Sands1440e8b2010-11-03 11:35:31 +00001454 MVT VT;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001455 Type *Ty = I->getType();
Eric Christopher6a880d62010-10-11 08:37:26 +00001456 if (!isTypeLegal(Ty, VT))
1457 return false;
1458
1459 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1460 if (VT == MVT::i8)
1461 LC = RTLIB::SREM_I8;
1462 else if (VT == MVT::i16)
1463 LC = RTLIB::SREM_I16;
1464 else if (VT == MVT::i32)
1465 LC = RTLIB::SREM_I32;
1466 else if (VT == MVT::i64)
1467 LC = RTLIB::SREM_I64;
1468 else if (VT == MVT::i128)
1469 LC = RTLIB::SREM_I128;
Eric Christophera1640d92010-10-11 08:40:05 +00001470 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christopher2896df82010-10-15 18:02:07 +00001471
Eric Christopher6a880d62010-10-11 08:37:26 +00001472 return ARMEmitLibcall(I, LC);
1473}
1474
Eric Christopher43b62be2010-09-27 06:02:23 +00001475bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
Eric Christopherbd6bf082010-09-09 01:02:03 +00001476 EVT VT = TLI.getValueType(I->getType(), true);
Eric Christopherac1a19e2010-09-09 01:06:51 +00001477
Eric Christopherbc39b822010-09-09 00:53:57 +00001478 // We can get here in the case when we want to use NEON for our fp
1479 // operations, but can't figure out how to. Just use the vfp instructions
1480 // if we have them.
1481 // FIXME: It'd be nice to use NEON instructions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001482 Type *Ty = I->getType();
Eric Christopherbd6bf082010-09-09 01:02:03 +00001483 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1484 if (isFloat && !Subtarget->hasVFP2())
1485 return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001486
Eric Christopherbc39b822010-09-09 00:53:57 +00001487 unsigned Op1 = getRegForValue(I->getOperand(0));
1488 if (Op1 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001489
Eric Christopherbc39b822010-09-09 00:53:57 +00001490 unsigned Op2 = getRegForValue(I->getOperand(1));
1491 if (Op2 == 0) return false;
Eric Christopherac1a19e2010-09-09 01:06:51 +00001492
Eric Christopherbc39b822010-09-09 00:53:57 +00001493 unsigned Opc;
Duncan Sandscdfad362010-11-03 12:17:33 +00001494 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopherbc39b822010-09-09 00:53:57 +00001495 switch (ISDOpcode) {
1496 default: return false;
1497 case ISD::FADD:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001498 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001499 break;
1500 case ISD::FSUB:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001501 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001502 break;
1503 case ISD::FMUL:
Eric Christopherbd6bf082010-09-09 01:02:03 +00001504 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopherbc39b822010-09-09 00:53:57 +00001505 break;
1506 }
Eric Christopherbd6bf082010-09-09 01:02:03 +00001507 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT));
Eric Christopherbc39b822010-09-09 00:53:57 +00001508 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1509 TII.get(Opc), ResultReg)
1510 .addReg(Op1).addReg(Op2));
Eric Christopherce07b542010-09-09 20:26:31 +00001511 UpdateValueMap(I, ResultReg);
Eric Christopherbc39b822010-09-09 00:53:57 +00001512 return true;
1513}
1514
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001515// Call Handling Code
1516
Eric Christopherfa87d662010-10-18 02:17:53 +00001517bool ARMFastISel::FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src,
1518 EVT SrcVT, unsigned &ResultReg) {
1519 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
1520 Src, /*TODO: Kill=*/false);
Jim Grosbach6b156392010-10-27 21:39:08 +00001521
Eric Christopherfa87d662010-10-18 02:17:53 +00001522 if (RR != 0) {
1523 ResultReg = RR;
1524 return true;
1525 } else
Jim Grosbach6b156392010-10-27 21:39:08 +00001526 return false;
Eric Christopherfa87d662010-10-18 02:17:53 +00001527}
1528
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001529// This is largely taken directly from CCAssignFnForNode - we don't support
1530// varargs in FastISel so that part has been removed.
1531// TODO: We may not support all of this.
1532CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC, bool Return) {
1533 switch (CC) {
1534 default:
1535 llvm_unreachable("Unsupported calling convention");
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001536 case CallingConv::Fast:
Evan Cheng1f8b40d2010-10-22 18:57:05 +00001537 // Ignore fastcc. Silence compiler warnings.
1538 (void)RetFastCC_ARM_APCS;
1539 (void)FastCC_ARM_APCS;
1540 // Fallthrough
1541 case CallingConv::C:
Eric Christopherd10cd7b2010-09-10 23:18:12 +00001542 // Use target triple & subtarget features to do actual dispatch.
1543 if (Subtarget->isAAPCS_ABI()) {
1544 if (Subtarget->hasVFP2() &&
1545 FloatABIType == FloatABI::Hard)
1546 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1547 else
1548 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1549 } else
1550 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1551 case CallingConv::ARM_AAPCS_VFP:
1552 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1553 case CallingConv::ARM_AAPCS:
1554 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1555 case CallingConv::ARM_APCS:
1556 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1557 }
1558}
1559
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001560bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1561 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001562 SmallVectorImpl<MVT> &ArgVTs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001563 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1564 SmallVectorImpl<unsigned> &RegArgs,
1565 CallingConv::ID CC,
1566 unsigned &NumBytes) {
1567 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001568 CCState CCInfo(CC, false, *FuncInfo.MF, TM, ArgLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001569 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags, CCAssignFnForCall(CC, false));
1570
1571 // Get a count of how many bytes are to be pushed on the stack.
1572 NumBytes = CCInfo.getNextStackOffset();
1573
1574 // Issue CALLSEQ_START
Evan Chengd5b03f22011-06-28 21:14:33 +00001575 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001576 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1577 TII.get(AdjStackDown))
1578 .addImm(NumBytes));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001579
1580 // Process the args.
1581 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1582 CCValAssign &VA = ArgLocs[i];
1583 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sands1440e8b2010-11-03 11:35:31 +00001584 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001585
Eric Christopher4a2b3162011-01-27 05:44:56 +00001586 // We don't handle NEON/vector parameters yet.
1587 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
Eric Christophera4633f52010-10-23 09:37:17 +00001588 return false;
1589
Eric Christopherf9764fa2010-09-30 20:49:44 +00001590 // Handle arg promotion, etc.
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001591 switch (VA.getLocInfo()) {
1592 case CCValAssign::Full: break;
Eric Christopherfa87d662010-10-18 02:17:53 +00001593 case CCValAssign::SExt: {
1594 bool Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1595 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001596 assert(Emitted && "Failed to emit a sext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001597 Emitted = true;
1598 ArgVT = VA.getLocVT();
1599 break;
1600 }
1601 case CCValAssign::ZExt: {
1602 bool Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1603 Arg, ArgVT, Arg);
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001604 assert(Emitted && "Failed to emit a zext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001605 Emitted = true;
1606 ArgVT = VA.getLocVT();
1607 break;
1608 }
1609 case CCValAssign::AExt: {
Eric Christopherfa87d662010-10-18 02:17:53 +00001610 bool Emitted = FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(),
1611 Arg, ArgVT, Arg);
1612 if (!Emitted)
1613 Emitted = FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(),
1614 Arg, ArgVT, Arg);
1615 if (!Emitted)
1616 Emitted = FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(),
1617 Arg, ArgVT, Arg);
1618
Chris Lattner54c6d6f2011-01-05 18:41:05 +00001619 assert(Emitted && "Failed to emit a aext!"); (void)Emitted;
Eric Christopherfa87d662010-10-18 02:17:53 +00001620 ArgVT = VA.getLocVT();
1621 break;
1622 }
1623 case CCValAssign::BCvt: {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001624 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sands1440e8b2010-11-03 11:35:31 +00001625 /*TODO: Kill=*/false);
Eric Christopherfa87d662010-10-18 02:17:53 +00001626 assert(BC != 0 && "Failed to emit a bitcast!");
1627 Arg = BC;
1628 ArgVT = VA.getLocVT();
1629 break;
1630 }
1631 default: llvm_unreachable("Unknown arg promotion!");
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001632 }
1633
1634 // Now copy/store arg to correct locations.
Eric Christopherfb0b8922010-10-11 21:20:02 +00001635 if (VA.isRegLoc() && !VA.needsCustom()) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001636 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
Eric Christopherf9764fa2010-09-30 20:49:44 +00001637 VA.getLocReg())
1638 .addReg(Arg);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001639 RegArgs.push_back(VA.getLocReg());
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001640 } else if (VA.needsCustom()) {
1641 // TODO: We need custom lowering for vector (v2f64) args.
1642 if (VA.getLocVT() != MVT::f64) return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001643
Eric Christopher2d8f6fe2010-10-21 00:01:47 +00001644 CCValAssign &NextVA = ArgLocs[++i];
1645
1646 // TODO: Only handle register args for now.
1647 if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false;
1648
1649 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1650 TII.get(ARM::VMOVRRD), VA.getLocReg())
1651 .addReg(NextVA.getLocReg(), RegState::Define)
1652 .addReg(Arg));
1653 RegArgs.push_back(VA.getLocReg());
1654 RegArgs.push_back(NextVA.getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001655 } else {
Eric Christopher5b924802010-10-21 20:09:54 +00001656 assert(VA.isMemLoc());
1657 // Need to store on the stack.
Eric Christopher0d581222010-11-19 22:30:02 +00001658 Address Addr;
1659 Addr.BaseType = Address::RegBase;
1660 Addr.Base.Reg = ARM::SP;
1661 Addr.Offset = VA.getLocMemOffset();
Eric Christopher5b924802010-10-21 20:09:54 +00001662
Eric Christopher0d581222010-11-19 22:30:02 +00001663 if (!ARMEmitStore(ArgVT, Arg, Addr)) return false;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001664 }
1665 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001666 return true;
1667}
1668
Duncan Sands1440e8b2010-11-03 11:35:31 +00001669bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001670 const Instruction *I, CallingConv::ID CC,
1671 unsigned &NumBytes) {
1672 // Issue CALLSEQ_END
Evan Chengd5b03f22011-06-28 21:14:33 +00001673 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
Eric Christopherfb0b8922010-10-11 21:20:02 +00001674 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1675 TII.get(AdjStackUp))
1676 .addImm(NumBytes).addImm(0));
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001677
1678 // Now the return value.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001679 if (RetVT != MVT::isVoid) {
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001680 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001681 CCState CCInfo(CC, false, *FuncInfo.MF, TM, RVLocs, *Context);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001682 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true));
1683
1684 // Copy all of the result registers out of their specified physreg.
Duncan Sands1440e8b2010-11-03 11:35:31 +00001685 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopher14df8822010-10-01 00:00:11 +00001686 // For this move we copy into two registers and then move into the
1687 // double fp reg we want.
Eric Christopher14df8822010-10-01 00:00:11 +00001688 EVT DestVT = RVLocs[0].getValVT();
1689 TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
1690 unsigned ResultReg = createResultReg(DstRC);
1691 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1692 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopher3659ac22010-10-20 08:02:24 +00001693 .addReg(RVLocs[0].getLocReg())
1694 .addReg(RVLocs[1].getLocReg()));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001695
Eric Christopher3659ac22010-10-20 08:02:24 +00001696 UsedRegs.push_back(RVLocs[0].getLocReg());
1697 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach6b156392010-10-27 21:39:08 +00001698
Eric Christopherdccd2c32010-10-11 08:38:55 +00001699 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001700 UpdateValueMap(I, ResultReg);
1701 } else {
Jim Grosbach95369592010-10-13 23:34:31 +00001702 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Eric Christopher14df8822010-10-01 00:00:11 +00001703 EVT CopyVT = RVLocs[0].getValVT();
1704 TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001705
Eric Christopher14df8822010-10-01 00:00:11 +00001706 unsigned ResultReg = createResultReg(DstRC);
1707 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1708 ResultReg).addReg(RVLocs[0].getLocReg());
1709 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001710
Eric Christopherdccd2c32010-10-11 08:38:55 +00001711 // Finally update the result.
Eric Christopher14df8822010-10-01 00:00:11 +00001712 UpdateValueMap(I, ResultReg);
1713 }
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001714 }
1715
Eric Christopherdccd2c32010-10-11 08:38:55 +00001716 return true;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001717}
1718
Eric Christopher4f512ef2010-10-22 01:28:00 +00001719bool ARMFastISel::SelectRet(const Instruction *I) {
1720 const ReturnInst *Ret = cast<ReturnInst>(I);
1721 const Function &F = *I->getParent()->getParent();
Jim Grosbach6b156392010-10-27 21:39:08 +00001722
Eric Christopher4f512ef2010-10-22 01:28:00 +00001723 if (!FuncInfo.CanLowerReturn)
1724 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001725
Eric Christopher4f512ef2010-10-22 01:28:00 +00001726 if (F.isVarArg())
1727 return false;
1728
1729 CallingConv::ID CC = F.getCallingConv();
1730 if (Ret->getNumOperands() > 0) {
1731 SmallVector<ISD::OutputArg, 4> Outs;
1732 GetReturnInfo(F.getReturnType(), F.getAttributes().getRetAttributes(),
1733 Outs, TLI);
1734
1735 // Analyze operands of the call, assigning locations to each operand.
1736 SmallVector<CCValAssign, 16> ValLocs;
Jim Grosbachb04546f2011-09-13 20:30:37 +00001737 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, TM, ValLocs,I->getContext());
Eric Christopher4f512ef2010-10-22 01:28:00 +00001738 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */));
1739
1740 const Value *RV = Ret->getOperand(0);
1741 unsigned Reg = getRegForValue(RV);
1742 if (Reg == 0)
1743 return false;
1744
1745 // Only handle a single return value for now.
1746 if (ValLocs.size() != 1)
1747 return false;
1748
1749 CCValAssign &VA = ValLocs[0];
Jim Grosbach6b156392010-10-27 21:39:08 +00001750
Eric Christopher4f512ef2010-10-22 01:28:00 +00001751 // Don't bother handling odd stuff for now.
Chad Rosier3a7572f2011-10-17 22:54:23 +00001752 // FIXME: Should be able to handle i1, i8, and/or i16 return types.
Eric Christopher4f512ef2010-10-22 01:28:00 +00001753 if (VA.getLocInfo() != CCValAssign::Full)
1754 return false;
1755 // Only handle register returns for now.
1756 if (!VA.isRegLoc())
1757 return false;
1758 // TODO: For now, don't try to handle cases where getLocInfo()
1759 // says Full but the types don't match.
Duncan Sands1e96bab2010-11-04 10:49:57 +00001760 if (TLI.getValueType(RV->getType()) != VA.getValVT())
Eric Christopher4f512ef2010-10-22 01:28:00 +00001761 return false;
Jim Grosbach6b156392010-10-27 21:39:08 +00001762
Eric Christopher4f512ef2010-10-22 01:28:00 +00001763 // Make the copy.
1764 unsigned SrcReg = Reg + VA.getValNo();
1765 unsigned DstReg = VA.getLocReg();
1766 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
1767 // Avoid a cross-class copy. This is very unlikely.
1768 if (!SrcRC->contains(DstReg))
1769 return false;
1770 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(TargetOpcode::COPY),
1771 DstReg).addReg(SrcReg);
1772
1773 // Mark the register as live out of the function.
1774 MRI.addLiveOut(VA.getLocReg());
1775 }
Jim Grosbach6b156392010-10-27 21:39:08 +00001776
Eric Christopher4f512ef2010-10-22 01:28:00 +00001777 unsigned RetOpc = isThumb ? ARM::tBX_RET : ARM::BX_RET;
1778 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1779 TII.get(RetOpc)));
1780 return true;
1781}
1782
Eric Christopher872f4a22011-02-22 01:37:10 +00001783unsigned ARMFastISel::ARMSelectCallOp(const GlobalValue *GV) {
1784
Eric Christopher872f4a22011-02-22 01:37:10 +00001785 // Darwin needs the r9 versions of the opcodes.
1786 bool isDarwin = Subtarget->isTargetDarwin();
Eric Christopher04356612011-04-05 00:39:26 +00001787 if (isThumb) {
Eric Christopher872f4a22011-02-22 01:37:10 +00001788 return isDarwin ? ARM::tBLr9 : ARM::tBL;
1789 } else {
1790 return isDarwin ? ARM::BLr9 : ARM::BL;
1791 }
1792}
1793
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001794// A quick function that will emit a call for a named libcall in F with the
1795// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopherdccd2c32010-10-11 08:38:55 +00001796// can emit a call for any libcall we can produce. This is an abridged version
1797// of the full call infrastructure since we won't need to worry about things
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001798// like computed function pointers or strange arguments at call sites.
1799// TODO: Try to unify this and the normal call bits for ARM, then try to unify
1800// with X86.
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001801bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
1802 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001803
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001804 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001805 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001806 MVT RetVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001807 if (RetTy->isVoidTy())
1808 RetVT = MVT::isVoid;
1809 else if (!isTypeLegal(RetTy, RetVT))
1810 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001811
Eric Christopher836c6242010-12-15 23:47:29 +00001812 // TODO: For now if we have long calls specified we don't handle the call.
1813 if (EnableARMLongCalls) return false;
1814
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001815 // Set up the argument vectors.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001816 SmallVector<Value*, 8> Args;
1817 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001818 SmallVector<MVT, 8> ArgVTs;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001819 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1820 Args.reserve(I->getNumOperands());
1821 ArgRegs.reserve(I->getNumOperands());
1822 ArgVTs.reserve(I->getNumOperands());
1823 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7ed8ec92010-09-28 01:21:42 +00001824 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001825 Value *Op = I->getOperand(i);
1826 unsigned Arg = getRegForValue(Op);
1827 if (Arg == 0) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001828
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001829 Type *ArgTy = Op->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001830 MVT ArgVT;
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001831 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001832
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001833 ISD::ArgFlagsTy Flags;
1834 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1835 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001836
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001837 Args.push_back(Op);
1838 ArgRegs.push_back(Arg);
1839 ArgVTs.push_back(ArgVT);
1840 ArgFlags.push_back(Flags);
1841 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001842
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001843 // Handle the arguments now that we've gotten them.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001844 SmallVector<unsigned, 4> RegArgs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001845 unsigned NumBytes;
1846 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1847 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001848
Eric Christopher6344a5f2011-04-29 00:07:20 +00001849 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001850 // TODO: Turn this into the table of arm call ops.
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001851 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001852 unsigned CallOpc = ARMSelectCallOp(NULL);
1853 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001854 // Explicitly adding the predicate here.
1855 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1856 TII.get(CallOpc)))
1857 .addExternalSymbol(TLI.getLibcallName(Call));
Eric Christopher872f4a22011-02-22 01:37:10 +00001858 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001859 // Explicitly adding the predicate here.
1860 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1861 TII.get(CallOpc))
1862 .addExternalSymbol(TLI.getLibcallName(Call)));
Eric Christopherdccd2c32010-10-11 08:38:55 +00001863
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001864 // Add implicit physical register uses to the call.
1865 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1866 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001867
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001868 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001869 SmallVector<unsigned, 4> UsedRegs;
Eric Christophera9a7a1a2010-09-29 23:11:09 +00001870 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001871
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001872 // Set all unused physreg defs as dead.
1873 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001874
Eric Christopherbb3e5da2010-09-14 23:03:37 +00001875 return true;
1876}
1877
Eric Christopherf9764fa2010-09-30 20:49:44 +00001878bool ARMFastISel::SelectCall(const Instruction *I) {
1879 const CallInst *CI = cast<CallInst>(I);
1880 const Value *Callee = CI->getCalledValue();
1881
1882 // Can't handle inline asm or worry about intrinsics yet.
1883 if (isa<InlineAsm>(Callee) || isa<IntrinsicInst>(CI)) return false;
1884
Eric Christopher52f6c032011-05-02 20:16:33 +00001885 // Only handle global variable Callees.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001886 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Eric Christopher52f6c032011-05-02 20:16:33 +00001887 if (!GV)
Eric Christophere6ca6772010-10-01 21:33:12 +00001888 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001889
Eric Christopherf9764fa2010-09-30 20:49:44 +00001890 // Check the calling convention.
1891 ImmutableCallSite CS(CI);
1892 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher4cf34c62010-10-18 06:49:12 +00001893
Eric Christopherf9764fa2010-09-30 20:49:44 +00001894 // TODO: Avoid some calling conventions?
Eric Christopherdccd2c32010-10-11 08:38:55 +00001895
Eric Christopherf9764fa2010-09-30 20:49:44 +00001896 // Let SDISel handle vararg functions.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001897 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
1898 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Eric Christopherf9764fa2010-09-30 20:49:44 +00001899 if (FTy->isVarArg())
1900 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001901
Eric Christopherf9764fa2010-09-30 20:49:44 +00001902 // Handle *simple* calls for now.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001903 Type *RetTy = I->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001904 MVT RetVT;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001905 if (RetTy->isVoidTy())
1906 RetVT = MVT::isVoid;
1907 else if (!isTypeLegal(RetTy, RetVT))
1908 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001909
Eric Christopher836c6242010-12-15 23:47:29 +00001910 // TODO: For now if we have long calls specified we don't handle the call.
1911 if (EnableARMLongCalls) return false;
Eric Christopher299bbb22011-04-29 00:03:10 +00001912
Eric Christopherf9764fa2010-09-30 20:49:44 +00001913 // Set up the argument vectors.
1914 SmallVector<Value*, 8> Args;
1915 SmallVector<unsigned, 8> ArgRegs;
Duncan Sands1440e8b2010-11-03 11:35:31 +00001916 SmallVector<MVT, 8> ArgVTs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001917 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
1918 Args.reserve(CS.arg_size());
1919 ArgRegs.reserve(CS.arg_size());
1920 ArgVTs.reserve(CS.arg_size());
1921 ArgFlags.reserve(CS.arg_size());
1922 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
1923 i != e; ++i) {
1924 unsigned Arg = getRegForValue(*i);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001925
Eric Christopherf9764fa2010-09-30 20:49:44 +00001926 if (Arg == 0)
1927 return false;
1928 ISD::ArgFlagsTy Flags;
1929 unsigned AttrInd = i - CS.arg_begin() + 1;
1930 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
1931 Flags.setSExt();
1932 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
1933 Flags.setZExt();
1934
1935 // FIXME: Only handle *easy* calls for now.
1936 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
1937 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
1938 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
1939 CS.paramHasAttr(AttrInd, Attribute::ByVal))
1940 return false;
1941
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001942 Type *ArgTy = (*i)->getType();
Duncan Sands1440e8b2010-11-03 11:35:31 +00001943 MVT ArgVT;
Chad Rosier3a7572f2011-10-17 22:54:23 +00001944 // FIXME: Should be able to handle i1, i8, and/or i16 parameters.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001945 if (!isTypeLegal(ArgTy, ArgVT))
1946 return false;
1947 unsigned OriginalAlignment = TD.getABITypeAlignment(ArgTy);
1948 Flags.setOrigAlign(OriginalAlignment);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001949
Eric Christopherf9764fa2010-09-30 20:49:44 +00001950 Args.push_back(*i);
1951 ArgRegs.push_back(Arg);
1952 ArgVTs.push_back(ArgVT);
1953 ArgFlags.push_back(Flags);
1954 }
Eric Christopherdccd2c32010-10-11 08:38:55 +00001955
Eric Christopherf9764fa2010-09-30 20:49:44 +00001956 // Handle the arguments now that we've gotten them.
1957 SmallVector<unsigned, 4> RegArgs;
1958 unsigned NumBytes;
1959 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags, RegArgs, CC, NumBytes))
1960 return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001961
Eric Christopher6344a5f2011-04-29 00:07:20 +00001962 // Issue the call, BLr9 for darwin, BL otherwise.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001963 // TODO: Turn this into the table of arm call ops.
Eric Christopherf9764fa2010-09-30 20:49:44 +00001964 MachineInstrBuilder MIB;
Eric Christopher872f4a22011-02-22 01:37:10 +00001965 unsigned CallOpc = ARMSelectCallOp(GV);
Eric Christopher7bb59962010-11-29 21:56:23 +00001966 // Explicitly adding the predicate here.
Eric Christopher872f4a22011-02-22 01:37:10 +00001967 if(isThumb)
Eric Christopherc19aadb2010-12-21 03:50:43 +00001968 // Explicitly adding the predicate here.
1969 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1970 TII.get(CallOpc)))
1971 .addGlobalAddress(GV, 0, 0);
Eric Christopher872f4a22011-02-22 01:37:10 +00001972 else
Eric Christopherc19aadb2010-12-21 03:50:43 +00001973 // Explicitly adding the predicate here.
1974 MIB = AddDefaultPred(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
1975 TII.get(CallOpc))
1976 .addGlobalAddress(GV, 0, 0));
Eric Christopher299bbb22011-04-29 00:03:10 +00001977
Eric Christopherf9764fa2010-09-30 20:49:44 +00001978 // Add implicit physical register uses to the call.
1979 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
1980 MIB.addReg(RegArgs[i]);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001981
Eric Christopherf9764fa2010-09-30 20:49:44 +00001982 // Finish off the call including any return values.
Eric Christopherdccd2c32010-10-11 08:38:55 +00001983 SmallVector<unsigned, 4> UsedRegs;
Eric Christopherf9764fa2010-09-30 20:49:44 +00001984 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes)) return false;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001985
Eric Christopherf9764fa2010-09-30 20:49:44 +00001986 // Set all unused physreg defs as dead.
1987 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopherdccd2c32010-10-11 08:38:55 +00001988
Eric Christopherf9764fa2010-09-30 20:49:44 +00001989 return true;
Eric Christopherdccd2c32010-10-11 08:38:55 +00001990
Eric Christopherf9764fa2010-09-30 20:49:44 +00001991}
1992
Eli Friedman76927d732011-05-25 23:49:02 +00001993bool ARMFastISel::SelectIntCast(const Instruction *I) {
1994 // On ARM, in general, integer casts don't involve legal types; this code
1995 // handles promotable integers. The high bits for a type smaller than
1996 // the register size are assumed to be undefined.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001997 Type *DestTy = I->getType();
Eli Friedman76927d732011-05-25 23:49:02 +00001998 Value *Op = I->getOperand(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001999 Type *SrcTy = Op->getType();
Eli Friedman76927d732011-05-25 23:49:02 +00002000
2001 EVT SrcVT, DestVT;
2002 SrcVT = TLI.getValueType(SrcTy, true);
2003 DestVT = TLI.getValueType(DestTy, true);
2004
2005 if (isa<TruncInst>(I)) {
2006 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
2007 return false;
2008 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
2009 return false;
2010
2011 unsigned SrcReg = getRegForValue(Op);
2012 if (!SrcReg) return false;
2013
2014 // Because the high bits are undefined, a truncate doesn't generate
2015 // any code.
2016 UpdateValueMap(I, SrcReg);
2017 return true;
Eric Christopher471e4222011-06-08 23:55:35 +00002018 }
Eli Friedman76927d732011-05-25 23:49:02 +00002019 if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8)
2020 return false;
2021
2022 unsigned Opc;
2023 bool isZext = isa<ZExtInst>(I);
2024 bool isBoolZext = false;
Eli Friedmana4d487f2011-05-27 18:02:04 +00002025 if (!SrcVT.isSimple())
2026 return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002027 switch (SrcVT.getSimpleVT().SimpleTy) {
2028 default: return false;
2029 case MVT::i16:
Jim Grosbachd04f6a52011-08-23 20:53:08 +00002030 if (!Subtarget->hasV6Ops()) return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002031 if (isZext)
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002032 Opc = isThumb ? ARM::t2UXTH : ARM::UXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002033 else
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002034 Opc = isThumb ? ARM::t2SXTH : ARM::SXTH;
Eli Friedman76927d732011-05-25 23:49:02 +00002035 break;
2036 case MVT::i8:
Jim Grosbachd04f6a52011-08-23 20:53:08 +00002037 if (!Subtarget->hasV6Ops()) return false;
Eli Friedman76927d732011-05-25 23:49:02 +00002038 if (isZext)
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002039 Opc = isThumb ? ARM::t2UXTB : ARM::UXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002040 else
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002041 Opc = isThumb ? ARM::t2SXTB : ARM::SXTB;
Eli Friedman76927d732011-05-25 23:49:02 +00002042 break;
2043 case MVT::i1:
2044 if (isZext) {
2045 Opc = isThumb ? ARM::t2ANDri : ARM::ANDri;
2046 isBoolZext = true;
2047 break;
2048 }
2049 return false;
2050 }
2051
2052 // FIXME: We could save an instruction in many cases by special-casing
2053 // load instructions.
2054 unsigned SrcReg = getRegForValue(Op);
2055 if (!SrcReg) return false;
2056
2057 unsigned DestReg = createResultReg(TLI.getRegClassFor(MVT::i32));
2058 MachineInstrBuilder MIB;
2059 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), DestReg)
2060 .addReg(SrcReg);
2061 if (isBoolZext)
2062 MIB.addImm(1);
Jim Grosbachc5a8c862011-07-27 16:47:19 +00002063 else
2064 MIB.addImm(0);
Eli Friedman76927d732011-05-25 23:49:02 +00002065 AddOptionalDefs(MIB);
2066 UpdateValueMap(I, DestReg);
2067 return true;
2068}
2069
Eric Christopher56d2b722010-09-02 23:43:26 +00002070// TODO: SoftFP support.
Eric Christopherab695882010-07-21 22:26:11 +00002071bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopherac1a19e2010-09-09 01:06:51 +00002072
Eric Christopherab695882010-07-21 22:26:11 +00002073 switch (I->getOpcode()) {
Eric Christopher83007122010-08-23 21:44:12 +00002074 case Instruction::Load:
Eric Christopher43b62be2010-09-27 06:02:23 +00002075 return SelectLoad(I);
Eric Christopher543cf052010-09-01 22:16:27 +00002076 case Instruction::Store:
Eric Christopher43b62be2010-09-27 06:02:23 +00002077 return SelectStore(I);
Eric Christophere5734102010-09-03 00:35:47 +00002078 case Instruction::Br:
Eric Christopher43b62be2010-09-27 06:02:23 +00002079 return SelectBranch(I);
Eric Christopherd43393a2010-09-08 23:13:45 +00002080 case Instruction::ICmp:
2081 case Instruction::FCmp:
Eric Christopher43b62be2010-09-27 06:02:23 +00002082 return SelectCmp(I);
Eric Christopher46203602010-09-09 00:26:48 +00002083 case Instruction::FPExt:
Eric Christopher43b62be2010-09-27 06:02:23 +00002084 return SelectFPExt(I);
Eric Christopherce07b542010-09-09 20:26:31 +00002085 case Instruction::FPTrunc:
Eric Christopher43b62be2010-09-27 06:02:23 +00002086 return SelectFPTrunc(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002087 case Instruction::SIToFP:
Eric Christopher43b62be2010-09-27 06:02:23 +00002088 return SelectSIToFP(I);
Eric Christopher9a040492010-09-09 18:54:59 +00002089 case Instruction::FPToSI:
Eric Christopher43b62be2010-09-27 06:02:23 +00002090 return SelectFPToSI(I);
Eric Christopherbc39b822010-09-09 00:53:57 +00002091 case Instruction::FAdd:
Eric Christopher43b62be2010-09-27 06:02:23 +00002092 return SelectBinaryOp(I, ISD::FADD);
Eric Christopherbc39b822010-09-09 00:53:57 +00002093 case Instruction::FSub:
Eric Christopher43b62be2010-09-27 06:02:23 +00002094 return SelectBinaryOp(I, ISD::FSUB);
Eric Christopherbc39b822010-09-09 00:53:57 +00002095 case Instruction::FMul:
Eric Christopher43b62be2010-09-27 06:02:23 +00002096 return SelectBinaryOp(I, ISD::FMUL);
Eric Christopherbb3e5da2010-09-14 23:03:37 +00002097 case Instruction::SDiv:
Eric Christopher43b62be2010-09-27 06:02:23 +00002098 return SelectSDiv(I);
Eric Christopher6a880d62010-10-11 08:37:26 +00002099 case Instruction::SRem:
2100 return SelectSRem(I);
Eric Christopherf9764fa2010-09-30 20:49:44 +00002101 case Instruction::Call:
2102 return SelectCall(I);
Eric Christopher3bbd3962010-10-11 08:27:59 +00002103 case Instruction::Select:
2104 return SelectSelect(I);
Eric Christopher4f512ef2010-10-22 01:28:00 +00002105 case Instruction::Ret:
2106 return SelectRet(I);
Eli Friedman76927d732011-05-25 23:49:02 +00002107 case Instruction::Trunc:
2108 case Instruction::ZExt:
2109 case Instruction::SExt:
2110 return SelectIntCast(I);
Eric Christopherab695882010-07-21 22:26:11 +00002111 default: break;
2112 }
2113 return false;
2114}
2115
2116namespace llvm {
2117 llvm::FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo) {
Eric Christopherfeadddd2010-10-11 20:05:22 +00002118 // Completely untested on non-darwin.
2119 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002120
Eric Christopheraaa8df42010-11-02 01:21:28 +00002121 // Darwin and thumb1 only for now.
Eric Christopherfeadddd2010-10-11 20:05:22 +00002122 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
Jim Grosbach16cb3762010-11-09 19:22:26 +00002123 if (Subtarget->isTargetDarwin() && !Subtarget->isThumb1Only() &&
Eric Christopheraaa8df42010-11-02 01:21:28 +00002124 !DisableARMFastISel)
Eric Christopherfeadddd2010-10-11 20:05:22 +00002125 return new ARMFastISel(funcInfo);
Evan Cheng09447952010-07-26 18:32:55 +00002126 return 0;
Eric Christopherab695882010-07-21 22:26:11 +00002127 }
2128}