blob: 43ccb34eeba0bb88554b8a761a0807321699c943 [file] [log] [blame]
Eric Christopher84bdfd82010-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"
Craig Toppera9253262014-03-22 23:51:00 +000017#include "ARMBaseRegisterInfo.h"
Eric Christopher72497e52010-09-10 23:18:12 +000018#include "ARMCallingConv.h"
Eric Christopher83a5ec82010-10-01 23:24:42 +000019#include "ARMConstantPoolValue.h"
Craig Toppera9253262014-03-22 23:51:00 +000020#include "ARMISelLowering.h"
21#include "ARMMachineFunctionInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "ARMSubtarget.h"
Evan Chenga20cde32011-07-20 23:34:39 +000023#include "MCTargetDesc/ARMAddressingModes.h"
JF Bastien3c6bb8e2013-06-11 22:13:46 +000024#include "llvm/ADT/STLExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/CodeGen/Analysis.h"
26#include "llvm/CodeGen/FastISel.h"
27#include "llvm/CodeGen/FunctionLoweringInfo.h"
28#include "llvm/CodeGen/MachineConstantPool.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
30#include "llvm/CodeGen/MachineInstrBuilder.h"
31#include "llvm/CodeGen/MachineMemOperand.h"
32#include "llvm/CodeGen/MachineModuleInfo.h"
33#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000034#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/CallingConv.h"
36#include "llvm/IR/DataLayout.h"
37#include "llvm/IR/DerivedTypes.h"
Chandler Carruth03eb0de2014-03-04 10:40:04 +000038#include "llvm/IR/GetElementPtrTypeIterator.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000039#include "llvm/IR/GlobalVariable.h"
40#include "llvm/IR/Instructions.h"
41#include "llvm/IR/IntrinsicInst.h"
42#include "llvm/IR/Module.h"
43#include "llvm/IR/Operator.h"
Eric Christopher663f4992010-08-17 00:46:57 +000044#include "llvm/Support/CommandLine.h"
Eric Christopher84bdfd82010-07-21 22:26:11 +000045#include "llvm/Support/ErrorHandling.h"
Eric Christopher09f757d2010-08-17 01:25:29 +000046#include "llvm/Target/TargetInstrInfo.h"
47#include "llvm/Target/TargetLowering.h"
48#include "llvm/Target/TargetMachine.h"
Eric Christopher84bdfd82010-07-21 22:26:11 +000049#include "llvm/Target/TargetOptions.h"
50using namespace llvm;
51
Eric Christopher347f4c32010-12-15 23:47:29 +000052extern cl::opt<bool> EnableARMLongCalls;
53
Eric Christopher84bdfd82010-07-21 22:26:11 +000054namespace {
Eric Christopher0a3c28b2010-11-20 22:38:27 +000055
Eric Christopherfef5f312010-11-19 22:30:02 +000056 // All possible address modes, plus some.
57 typedef struct Address {
58 enum {
59 RegBase,
60 FrameIndexBase
61 } BaseType;
Eric Christopher0a3c28b2010-11-20 22:38:27 +000062
Eric Christopherfef5f312010-11-19 22:30:02 +000063 union {
64 unsigned Reg;
65 int FI;
66 } Base;
Eric Christopher0a3c28b2010-11-20 22:38:27 +000067
Eric Christopherfef5f312010-11-19 22:30:02 +000068 int Offset;
Eric Christopher0a3c28b2010-11-20 22:38:27 +000069
Eric Christopherfef5f312010-11-19 22:30:02 +000070 // Innocuous defaults for our address.
71 Address()
Jim Grosbach4e983162011-05-16 22:24:07 +000072 : BaseType(RegBase), Offset(0) {
Eric Christopherfef5f312010-11-19 22:30:02 +000073 Base.Reg = 0;
74 }
75 } Address;
Eric Christopher84bdfd82010-07-21 22:26:11 +000076
Craig Topper26696312014-03-18 07:27:13 +000077class ARMFastISel final : public FastISel {
Eric Christopher84bdfd82010-07-21 22:26:11 +000078
79 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
80 /// make the right decision when generating code for different targets.
81 const ARMSubtarget *Subtarget;
Bill Wendling6c1d9592013-12-30 05:17:29 +000082 Module &M;
Eric Christopher09f757d2010-08-17 01:25:29 +000083 const TargetMachine &TM;
84 const TargetInstrInfo &TII;
85 const TargetLowering &TLI;
Eric Christopher83a5ec82010-10-01 23:24:42 +000086 ARMFunctionInfo *AFI;
Eric Christopher84bdfd82010-07-21 22:26:11 +000087
Eric Christopherb024be32010-09-29 22:24:45 +000088 // Convenience variables to avoid some queries.
Chad Rosier0439cfc2011-11-08 21:12:00 +000089 bool isThumb2;
Eric Christopherb024be32010-09-29 22:24:45 +000090 LLVMContext *Context;
Eric Christopher6a0333c2010-09-02 01:39:14 +000091
Eric Christopher84bdfd82010-07-21 22:26:11 +000092 public:
Bob Wilson3e6fa462012-08-03 04:06:28 +000093 explicit ARMFastISel(FunctionLoweringInfo &funcInfo,
94 const TargetLibraryInfo *libInfo)
Eric Christopherd9134482014-08-04 21:25:23 +000095 : FastISel(funcInfo, libInfo),
96 M(const_cast<Module &>(*funcInfo.Fn->getParent())),
97 TM(funcInfo.MF->getTarget()),
98 TII(*TM.getSubtargetImpl()->getInstrInfo()),
99 TLI(*TM.getSubtargetImpl()->getTargetLowering()) {
Eric Christopher84bdfd82010-07-21 22:26:11 +0000100 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Eric Christopher8d03b8a2010-08-23 22:32:45 +0000101 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>();
Chad Rosier0439cfc2011-11-08 21:12:00 +0000102 isThumb2 = AFI->isThumbFunction();
Eric Christopherb024be32010-09-29 22:24:45 +0000103 Context = &funcInfo.Fn->getContext();
Eric Christopher84bdfd82010-07-21 22:26:11 +0000104 }
105
Eric Christopherd8e8a292010-08-20 00:20:31 +0000106 // Code from FastISel.cpp.
Craig Topperfd1c9252012-08-18 21:38:45 +0000107 private:
Craig Topperfd1c9252012-08-18 21:38:45 +0000108 unsigned FastEmitInst_r(unsigned MachineInstOpcode,
109 const TargetRegisterClass *RC,
110 unsigned Op0, bool Op0IsKill);
111 unsigned FastEmitInst_rr(unsigned MachineInstOpcode,
112 const TargetRegisterClass *RC,
113 unsigned Op0, bool Op0IsKill,
114 unsigned Op1, bool Op1IsKill);
115 unsigned FastEmitInst_rrr(unsigned MachineInstOpcode,
116 const TargetRegisterClass *RC,
117 unsigned Op0, bool Op0IsKill,
118 unsigned Op1, bool Op1IsKill,
119 unsigned Op2, bool Op2IsKill);
120 unsigned FastEmitInst_ri(unsigned MachineInstOpcode,
121 const TargetRegisterClass *RC,
122 unsigned Op0, bool Op0IsKill,
123 uint64_t Imm);
Craig Topperfd1c9252012-08-18 21:38:45 +0000124 unsigned FastEmitInst_rri(unsigned MachineInstOpcode,
125 const TargetRegisterClass *RC,
126 unsigned Op0, bool Op0IsKill,
127 unsigned Op1, bool Op1IsKill,
128 uint64_t Imm);
129 unsigned FastEmitInst_i(unsigned MachineInstOpcode,
130 const TargetRegisterClass *RC,
131 uint64_t Imm);
Eric Christopher2ff757d2010-09-09 01:06:51 +0000132
Eric Christopherd8e8a292010-08-20 00:20:31 +0000133 // Backend specific FastISel code.
Craig Topperfd1c9252012-08-18 21:38:45 +0000134 private:
Craig Topper6bc27bf2014-03-10 02:09:33 +0000135 bool TargetSelectInstruction(const Instruction *I) override;
136 unsigned TargetMaterializeConstant(const Constant *C) override;
137 unsigned TargetMaterializeAlloca(const AllocaInst *AI) override;
138 bool tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
139 const LoadInst *LI) override;
140 bool FastLowerArguments() override;
Craig Topperfd1c9252012-08-18 21:38:45 +0000141 private:
Eric Christopher84bdfd82010-07-21 22:26:11 +0000142 #include "ARMGenFastISel.inc"
Eric Christopher2ff757d2010-09-09 01:06:51 +0000143
Eric Christopher00202ee2010-08-23 21:44:12 +0000144 // Instruction selection routines.
Eric Christophercc766a22010-09-10 23:10:30 +0000145 private:
Eric Christopher2f8637d2010-10-21 21:47:51 +0000146 bool SelectLoad(const Instruction *I);
147 bool SelectStore(const Instruction *I);
148 bool SelectBranch(const Instruction *I);
Chad Rosierded4c992012-02-07 23:56:08 +0000149 bool SelectIndirectBr(const Instruction *I);
Eric Christopher2f8637d2010-10-21 21:47:51 +0000150 bool SelectCmp(const Instruction *I);
151 bool SelectFPExt(const Instruction *I);
152 bool SelectFPTrunc(const Instruction *I);
Chad Rosier685b20c2012-02-06 23:50:07 +0000153 bool SelectBinaryIntOp(const Instruction *I, unsigned ISDOpcode);
154 bool SelectBinaryFPOp(const Instruction *I, unsigned ISDOpcode);
Chad Rosiere023d5d2012-02-03 21:14:11 +0000155 bool SelectIToFP(const Instruction *I, bool isSigned);
156 bool SelectFPToI(const Instruction *I, bool isSigned);
Chad Rosieraaa55a82012-02-03 21:07:27 +0000157 bool SelectDiv(const Instruction *I, bool isSigned);
Chad Rosierb84a4b42012-02-03 21:23:45 +0000158 bool SelectRem(const Instruction *I, bool isSigned);
Chad Rosiera7ebc562011-11-11 23:31:03 +0000159 bool SelectCall(const Instruction *I, const char *IntrMemName);
160 bool SelectIntrinsicCall(const IntrinsicInst &I);
Eric Christopher2f8637d2010-10-21 21:47:51 +0000161 bool SelectSelect(const Instruction *I);
Eric Christopher93bbe652010-10-22 01:28:00 +0000162 bool SelectRet(const Instruction *I);
Chad Rosieree7e4522011-11-02 00:18:48 +0000163 bool SelectTrunc(const Instruction *I);
164 bool SelectIntExt(const Instruction *I);
Jush Lu4705da92012-08-03 02:37:48 +0000165 bool SelectShift(const Instruction *I, ARM_AM::ShiftOpc ShiftTy);
Eric Christopher84bdfd82010-07-21 22:26:11 +0000166
Eric Christopher00202ee2010-08-23 21:44:12 +0000167 // Utility routines.
Eric Christopher0d274a02010-08-19 00:37:05 +0000168 private:
Chris Lattner229907c2011-07-18 04:54:35 +0000169 bool isTypeLegal(Type *Ty, MVT &VT);
170 bool isLoadTypeLegal(Type *Ty, MVT &VT);
Chad Rosier9cf803c2011-11-02 18:08:25 +0000171 bool ARMEmitCmp(const Value *Src1Value, const Value *Src2Value,
172 bool isZExt);
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000173 bool ARMEmitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
Chad Rosiera26979b2011-12-14 17:26:05 +0000174 unsigned Alignment = 0, bool isZExt = true,
175 bool allocReg = true);
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000176 bool ARMEmitStore(MVT VT, unsigned SrcReg, Address &Addr,
Bob Wilson80381f62011-12-04 00:52:23 +0000177 unsigned Alignment = 0);
Eric Christopherfef5f312010-11-19 22:30:02 +0000178 bool ARMComputeAddress(const Value *Obj, Address &Addr);
Chad Rosier150d35b2012-12-17 22:35:29 +0000179 void ARMSimplifyAddress(Address &Addr, MVT VT, bool useAM3);
Chad Rosier057b6d32011-11-14 23:04:09 +0000180 bool ARMIsMemCpySmall(uint64_t Len);
Chad Rosier9f5c68a2012-12-06 01:34:31 +0000181 bool ARMTryEmitSmallMemCpy(Address Dest, Address Src, uint64_t Len,
182 unsigned Alignment);
Chad Rosier62a144f2012-12-17 19:59:43 +0000183 unsigned ARMEmitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT, bool isZExt);
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000184 unsigned ARMMaterializeFP(const ConstantFP *CFP, MVT VT);
185 unsigned ARMMaterializeInt(const Constant *C, MVT VT);
186 unsigned ARMMaterializeGV(const GlobalValue *GV, MVT VT);
187 unsigned ARMMoveToFPReg(MVT VT, unsigned SrcReg);
188 unsigned ARMMoveToIntReg(MVT VT, unsigned SrcReg);
Chad Rosierc6916f82012-06-12 19:25:13 +0000189 unsigned ARMSelectCallOp(bool UseReg);
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000190 unsigned ARMLowerPICELF(const GlobalValue *GV, unsigned Align, MVT VT);
Eric Christopher2ff757d2010-09-09 01:06:51 +0000191
Eric Christopherd9134482014-08-04 21:25:23 +0000192 const TargetLowering *getTargetLowering() {
193 return TM.getSubtargetImpl()->getTargetLowering();
194 }
Christian Pirker238c7c12014-05-12 11:19:20 +0000195
Eric Christopher72497e52010-09-10 23:18:12 +0000196 // Call handling routines.
197 private:
Jush Lue67e07b2012-07-19 09:49:00 +0000198 CCAssignFn *CCAssignFnForCall(CallingConv::ID CC,
199 bool Return,
200 bool isVarArg);
Eric Christopher7ac602b2010-10-11 08:38:55 +0000201 bool ProcessCallArgs(SmallVectorImpl<Value*> &Args,
Eric Christopher79398062010-09-29 23:11:09 +0000202 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sandsf5dda012010-11-03 11:35:31 +0000203 SmallVectorImpl<MVT> &ArgVTs,
Eric Christopher79398062010-09-29 23:11:09 +0000204 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
205 SmallVectorImpl<unsigned> &RegArgs,
206 CallingConv::ID CC,
Jush Lue67e07b2012-07-19 09:49:00 +0000207 unsigned &NumBytes,
208 bool isVarArg);
Chad Rosierc6916f82012-06-12 19:25:13 +0000209 unsigned getLibcallReg(const Twine &Name);
Duncan Sandsf5dda012010-11-03 11:35:31 +0000210 bool FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christopher79398062010-09-29 23:11:09 +0000211 const Instruction *I, CallingConv::ID CC,
Jush Lue67e07b2012-07-19 09:49:00 +0000212 unsigned &NumBytes, bool isVarArg);
Eric Christopher7990df12010-09-28 01:21:42 +0000213 bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call);
Eric Christopher72497e52010-09-10 23:18:12 +0000214
215 // OptionalDef handling routines.
216 private:
Eric Christopher174d8722011-03-12 01:09:29 +0000217 bool isARMNEONPred(const MachineInstr *MI);
Eric Christopher0d274a02010-08-19 00:37:05 +0000218 bool DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR);
219 const MachineInstrBuilder &AddOptionalDefs(const MachineInstrBuilder &MIB);
Chad Rosier150d35b2012-12-17 22:35:29 +0000220 void AddLoadStoreOperands(MVT VT, Address &Addr,
Cameron Zwarich6528a542011-05-28 20:34:49 +0000221 const MachineInstrBuilder &MIB,
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000222 unsigned Flags, bool useAM3);
Eric Christopher0d274a02010-08-19 00:37:05 +0000223};
Eric Christopher84bdfd82010-07-21 22:26:11 +0000224
225} // end anonymous namespace
226
Eric Christopher72497e52010-09-10 23:18:12 +0000227#include "ARMGenCallingConv.inc"
Eric Christopher84bdfd82010-07-21 22:26:11 +0000228
Eric Christopher0d274a02010-08-19 00:37:05 +0000229// DefinesOptionalPredicate - This is different from DefinesPredicate in that
230// we don't care about implicit defs here, just places we'll need to add a
231// default CCReg argument. Sets CPSR if we're setting CPSR instead of CCR.
232bool ARMFastISel::DefinesOptionalPredicate(MachineInstr *MI, bool *CPSR) {
Evan Cheng7f8e5632011-12-07 07:15:52 +0000233 if (!MI->hasOptionalDef())
Eric Christopher0d274a02010-08-19 00:37:05 +0000234 return false;
235
236 // Look to see if our OptionalDef is defining CPSR or CCR.
237 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
238 const MachineOperand &MO = MI->getOperand(i);
Eric Christopher985d9e42010-08-20 00:36:24 +0000239 if (!MO.isReg() || !MO.isDef()) continue;
240 if (MO.getReg() == ARM::CPSR)
Eric Christopher0d274a02010-08-19 00:37:05 +0000241 *CPSR = true;
242 }
243 return true;
244}
245
Eric Christopher174d8722011-03-12 01:09:29 +0000246bool ARMFastISel::isARMNEONPred(const MachineInstr *MI) {
Evan Cheng6cc775f2011-06-28 19:10:37 +0000247 const MCInstrDesc &MCID = MI->getDesc();
Eric Christopher501d2e22011-04-29 00:03:10 +0000248
Joey Goulya5153cb2013-09-09 14:21:49 +0000249 // If we're a thumb2 or not NEON function we'll be handled via isPredicable.
Evan Cheng6cc775f2011-06-28 19:10:37 +0000250 if ((MCID.TSFlags & ARMII::DomainMask) != ARMII::DomainNEON ||
Eric Christopher174d8722011-03-12 01:09:29 +0000251 AFI->isThumb2Function())
Joey Goulya5153cb2013-09-09 14:21:49 +0000252 return MI->isPredicable();
Eric Christopher501d2e22011-04-29 00:03:10 +0000253
Evan Cheng6cc775f2011-06-28 19:10:37 +0000254 for (unsigned i = 0, e = MCID.getNumOperands(); i != e; ++i)
255 if (MCID.OpInfo[i].isPredicate())
Eric Christopher174d8722011-03-12 01:09:29 +0000256 return true;
Eric Christopher501d2e22011-04-29 00:03:10 +0000257
Eric Christopher174d8722011-03-12 01:09:29 +0000258 return false;
259}
260
Eric Christopher0d274a02010-08-19 00:37:05 +0000261// If the machine is predicable go ahead and add the predicate operands, if
262// it needs default CC operands add those.
Eric Christophere8fccc82010-11-02 01:21:28 +0000263// TODO: If we want to support thumb1 then we'll need to deal with optional
264// CPSR defs that need to be added before the remaining operands. See s_cc_out
265// for descriptions why.
Eric Christopher0d274a02010-08-19 00:37:05 +0000266const MachineInstrBuilder &
267ARMFastISel::AddOptionalDefs(const MachineInstrBuilder &MIB) {
268 MachineInstr *MI = &*MIB;
269
Eric Christopher174d8722011-03-12 01:09:29 +0000270 // Do we use a predicate? or...
271 // Are we NEON in ARM mode and have a predicate operand? If so, I know
272 // we're not predicable but add it anyways.
Joey Goulya5153cb2013-09-09 14:21:49 +0000273 if (isARMNEONPred(MI))
Eric Christopher0d274a02010-08-19 00:37:05 +0000274 AddDefaultPred(MIB);
Eric Christopher501d2e22011-04-29 00:03:10 +0000275
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000276 // Do we optionally set a predicate? Preds is size > 0 iff the predicate
Eric Christopher0d274a02010-08-19 00:37:05 +0000277 // defines CPSR. All other OptionalDefines in ARM are the CCR register.
Eric Christophera5d60c62010-08-19 15:35:27 +0000278 bool CPSR = false;
Eric Christopher0d274a02010-08-19 00:37:05 +0000279 if (DefinesOptionalPredicate(MI, &CPSR)) {
280 if (CPSR)
281 AddDefaultT1CC(MIB);
282 else
283 AddDefaultCC(MIB);
284 }
285 return MIB;
286}
287
Eric Christopher09f757d2010-08-17 01:25:29 +0000288unsigned ARMFastISel::FastEmitInst_r(unsigned MachineInstOpcode,
289 const TargetRegisterClass *RC,
290 unsigned Op0, bool Op0IsKill) {
291 unsigned ResultReg = createResultReg(RC);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000292 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher09f757d2010-08-17 01:25:29 +0000293
Jim Grosbach06c2a682013-08-16 23:37:31 +0000294 // Make sure the input operand is sufficiently constrained to be legal
295 // for this instruction.
296 Op0 = constrainOperandRegClass(II, Op0, 1);
Chad Rosier0bc51322012-02-15 17:36:21 +0000297 if (II.getNumDefs() >= 1) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000298 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II,
299 ResultReg).addReg(Op0, Op0IsKill * RegState::Kill));
Chad Rosier0bc51322012-02-15 17:36:21 +0000300 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000301 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Eric Christopher09f757d2010-08-17 01:25:29 +0000302 .addReg(Op0, Op0IsKill * RegState::Kill));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000303 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher09f757d2010-08-17 01:25:29 +0000304 TII.get(TargetOpcode::COPY), ResultReg)
305 .addReg(II.ImplicitDefs[0]));
306 }
307 return ResultReg;
308}
309
310unsigned ARMFastISel::FastEmitInst_rr(unsigned MachineInstOpcode,
311 const TargetRegisterClass *RC,
312 unsigned Op0, bool Op0IsKill,
313 unsigned Op1, bool Op1IsKill) {
314 unsigned ResultReg = createResultReg(RC);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000315 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher09f757d2010-08-17 01:25:29 +0000316
Jim Grosbach06c2a682013-08-16 23:37:31 +0000317 // Make sure the input operands are sufficiently constrained to be legal
318 // for this instruction.
319 Op0 = constrainOperandRegClass(II, Op0, 1);
320 Op1 = constrainOperandRegClass(II, Op1, 2);
321
Chad Rosier0bc51322012-02-15 17:36:21 +0000322 if (II.getNumDefs() >= 1) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000323 AddOptionalDefs(
324 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
325 .addReg(Op0, Op0IsKill * RegState::Kill)
326 .addReg(Op1, Op1IsKill * RegState::Kill));
Chad Rosier0bc51322012-02-15 17:36:21 +0000327 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000328 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Eric Christopher09f757d2010-08-17 01:25:29 +0000329 .addReg(Op0, Op0IsKill * RegState::Kill)
330 .addReg(Op1, Op1IsKill * RegState::Kill));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000331 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher09f757d2010-08-17 01:25:29 +0000332 TII.get(TargetOpcode::COPY), ResultReg)
333 .addReg(II.ImplicitDefs[0]));
334 }
335 return ResultReg;
336}
337
Cameron Zwarich53dd03d2011-03-30 23:01:21 +0000338unsigned ARMFastISel::FastEmitInst_rrr(unsigned MachineInstOpcode,
339 const TargetRegisterClass *RC,
340 unsigned Op0, bool Op0IsKill,
341 unsigned Op1, bool Op1IsKill,
342 unsigned Op2, bool Op2IsKill) {
343 unsigned ResultReg = createResultReg(RC);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000344 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Cameron Zwarich53dd03d2011-03-30 23:01:21 +0000345
Jim Grosbach06c2a682013-08-16 23:37:31 +0000346 // Make sure the input operands are sufficiently constrained to be legal
347 // for this instruction.
348 Op0 = constrainOperandRegClass(II, Op0, 1);
349 Op1 = constrainOperandRegClass(II, Op1, 2);
350 Op2 = constrainOperandRegClass(II, Op1, 3);
351
Chad Rosier0bc51322012-02-15 17:36:21 +0000352 if (II.getNumDefs() >= 1) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000353 AddOptionalDefs(
354 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
355 .addReg(Op0, Op0IsKill * RegState::Kill)
356 .addReg(Op1, Op1IsKill * RegState::Kill)
357 .addReg(Op2, Op2IsKill * RegState::Kill));
Chad Rosier0bc51322012-02-15 17:36:21 +0000358 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000359 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Cameron Zwarich53dd03d2011-03-30 23:01:21 +0000360 .addReg(Op0, Op0IsKill * RegState::Kill)
361 .addReg(Op1, Op1IsKill * RegState::Kill)
362 .addReg(Op2, Op2IsKill * RegState::Kill));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000363 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Cameron Zwarich53dd03d2011-03-30 23:01:21 +0000364 TII.get(TargetOpcode::COPY), ResultReg)
365 .addReg(II.ImplicitDefs[0]));
366 }
367 return ResultReg;
368}
369
Eric Christopher09f757d2010-08-17 01:25:29 +0000370unsigned ARMFastISel::FastEmitInst_ri(unsigned MachineInstOpcode,
371 const TargetRegisterClass *RC,
372 unsigned Op0, bool Op0IsKill,
373 uint64_t Imm) {
374 unsigned ResultReg = createResultReg(RC);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000375 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher09f757d2010-08-17 01:25:29 +0000376
Jim Grosbach06c2a682013-08-16 23:37:31 +0000377 // Make sure the input operand is sufficiently constrained to be legal
378 // for this instruction.
379 Op0 = constrainOperandRegClass(II, Op0, 1);
Chad Rosier0bc51322012-02-15 17:36:21 +0000380 if (II.getNumDefs() >= 1) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000381 AddOptionalDefs(
382 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
383 .addReg(Op0, Op0IsKill * RegState::Kill)
384 .addImm(Imm));
Chad Rosier0bc51322012-02-15 17:36:21 +0000385 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000386 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Eric Christopher09f757d2010-08-17 01:25:29 +0000387 .addReg(Op0, Op0IsKill * RegState::Kill)
388 .addImm(Imm));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000389 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher09f757d2010-08-17 01:25:29 +0000390 TII.get(TargetOpcode::COPY), ResultReg)
391 .addReg(II.ImplicitDefs[0]));
392 }
393 return ResultReg;
394}
395
Eric Christopher09f757d2010-08-17 01:25:29 +0000396unsigned ARMFastISel::FastEmitInst_rri(unsigned MachineInstOpcode,
397 const TargetRegisterClass *RC,
398 unsigned Op0, bool Op0IsKill,
399 unsigned Op1, bool Op1IsKill,
400 uint64_t Imm) {
401 unsigned ResultReg = createResultReg(RC);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000402 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher09f757d2010-08-17 01:25:29 +0000403
Jim Grosbach06c2a682013-08-16 23:37:31 +0000404 // Make sure the input operands are sufficiently constrained to be legal
405 // for this instruction.
406 Op0 = constrainOperandRegClass(II, Op0, 1);
407 Op1 = constrainOperandRegClass(II, Op1, 2);
Chad Rosier0bc51322012-02-15 17:36:21 +0000408 if (II.getNumDefs() >= 1) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000409 AddOptionalDefs(
410 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, ResultReg)
411 .addReg(Op0, Op0IsKill * RegState::Kill)
412 .addReg(Op1, Op1IsKill * RegState::Kill)
413 .addImm(Imm));
Chad Rosier0bc51322012-02-15 17:36:21 +0000414 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000415 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Eric Christopher09f757d2010-08-17 01:25:29 +0000416 .addReg(Op0, Op0IsKill * RegState::Kill)
417 .addReg(Op1, Op1IsKill * RegState::Kill)
418 .addImm(Imm));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000419 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher09f757d2010-08-17 01:25:29 +0000420 TII.get(TargetOpcode::COPY), ResultReg)
421 .addReg(II.ImplicitDefs[0]));
422 }
423 return ResultReg;
424}
425
426unsigned ARMFastISel::FastEmitInst_i(unsigned MachineInstOpcode,
427 const TargetRegisterClass *RC,
428 uint64_t Imm) {
429 unsigned ResultReg = createResultReg(RC);
Evan Cheng6cc775f2011-06-28 19:10:37 +0000430 const MCInstrDesc &II = TII.get(MachineInstOpcode);
Eric Christopher2ff757d2010-09-09 01:06:51 +0000431
Chad Rosier0bc51322012-02-15 17:36:21 +0000432 if (II.getNumDefs() >= 1) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000433 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II,
434 ResultReg).addImm(Imm));
Chad Rosier0bc51322012-02-15 17:36:21 +0000435 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000436 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Eric Christopher09f757d2010-08-17 01:25:29 +0000437 .addImm(Imm));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000438 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher09f757d2010-08-17 01:25:29 +0000439 TII.get(TargetOpcode::COPY), ResultReg)
440 .addReg(II.ImplicitDefs[0]));
441 }
442 return ResultReg;
443}
444
Eric Christopher860fc932010-09-10 00:34:35 +0000445// TODO: Don't worry about 64-bit now, but when this is fixed remove the
446// checks from the various callers.
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000447unsigned ARMFastISel::ARMMoveToFPReg(MVT VT, unsigned SrcReg) {
Duncan Sands14627772010-11-03 12:17:33 +0000448 if (VT == MVT::f64) return 0;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000449
Eric Christopher4bd70472010-09-09 21:44:45 +0000450 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000451 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jim Grosbach6990e5f2012-03-01 22:47:09 +0000452 TII.get(ARM::VMOVSR), MoveReg)
Eric Christopher4bd70472010-09-09 21:44:45 +0000453 .addReg(SrcReg));
454 return MoveReg;
455}
456
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000457unsigned ARMFastISel::ARMMoveToIntReg(MVT VT, unsigned SrcReg) {
Duncan Sands14627772010-11-03 12:17:33 +0000458 if (VT == MVT::i64) return 0;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000459
Eric Christopher2cbe0fd2010-09-09 20:49:25 +0000460 unsigned MoveReg = createResultReg(TLI.getRegClassFor(VT));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000461 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jim Grosbach6990e5f2012-03-01 22:47:09 +0000462 TII.get(ARM::VMOVRS), MoveReg)
Eric Christopher2cbe0fd2010-09-09 20:49:25 +0000463 .addReg(SrcReg));
464 return MoveReg;
465}
466
Eric Christopher3cf63f12010-09-09 00:19:41 +0000467// For double width floating point we need to materialize two constants
468// (the high and the low) into integer registers then use a move to get
469// the combined constant into an FP reg.
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000470unsigned ARMFastISel::ARMMaterializeFP(const ConstantFP *CFP, MVT VT) {
Eric Christopher3cf63f12010-09-09 00:19:41 +0000471 const APFloat Val = CFP->getValueAPF();
Duncan Sands14627772010-11-03 12:17:33 +0000472 bool is64bit = VT == MVT::f64;
Eric Christopher2ff757d2010-09-09 01:06:51 +0000473
Eric Christopher3cf63f12010-09-09 00:19:41 +0000474 // This checks to see if we can use VFP3 instructions to materialize
475 // a constant, otherwise we have to go through the constant pool.
476 if (TLI.isFPImmLegal(Val, VT)) {
Jim Grosbachefc761a2011-09-30 00:50:06 +0000477 int Imm;
478 unsigned Opc;
479 if (is64bit) {
480 Imm = ARM_AM::getFP64Imm(Val);
481 Opc = ARM::FCONSTD;
482 } else {
483 Imm = ARM_AM::getFP32Imm(Val);
484 Opc = ARM::FCONSTS;
485 }
Eric Christopher3cf63f12010-09-09 00:19:41 +0000486 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
Rafael Espindolaea09c592014-02-18 22:05:46 +0000487 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
488 TII.get(Opc), DestReg).addImm(Imm));
Eric Christopher3cf63f12010-09-09 00:19:41 +0000489 return DestReg;
490 }
Eric Christopher7ac602b2010-10-11 08:38:55 +0000491
Eric Christopher860fc932010-09-10 00:34:35 +0000492 // Require VFP2 for loading fp constants.
Eric Christopher22fd29a2010-09-09 23:50:00 +0000493 if (!Subtarget->hasVFP2()) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000494
Eric Christopher22fd29a2010-09-09 23:50:00 +0000495 // MachineConstantPool wants an explicit alignment.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000496 unsigned Align = DL.getPrefTypeAlignment(CFP->getType());
Eric Christopher22fd29a2010-09-09 23:50:00 +0000497 if (Align == 0) {
498 // TODO: Figure out if this is correct.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000499 Align = DL.getTypeAllocSize(CFP->getType());
Eric Christopher22fd29a2010-09-09 23:50:00 +0000500 }
501 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
502 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
503 unsigned Opc = is64bit ? ARM::VLDRD : ARM::VLDRS;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000504
Eric Christopher860fc932010-09-10 00:34:35 +0000505 // The extra reg is for addrmode5.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000506 AddOptionalDefs(
507 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc), DestReg)
508 .addConstantPoolIndex(Idx)
509 .addReg(0));
Eric Christopher22fd29a2010-09-09 23:50:00 +0000510 return DestReg;
Eric Christopher3cf63f12010-09-09 00:19:41 +0000511}
512
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000513unsigned ARMFastISel::ARMMaterializeInt(const Constant *C, MVT VT) {
Eric Christopher7ac602b2010-10-11 08:38:55 +0000514
Chad Rosier67f96882011-11-04 22:29:00 +0000515 if (VT != MVT::i32 && VT != MVT::i16 && VT != MVT::i8 && VT != MVT::i1)
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000516 return 0;
Eric Christophere4dd7372010-11-03 20:21:17 +0000517
518 // If we can do this in a single instruction without a constant pool entry
519 // do so now.
520 const ConstantInt *CI = cast<ConstantInt>(C);
Chad Rosiere8b8b772011-11-04 23:09:49 +0000521 if (Subtarget->hasV6T2Ops() && isUInt<16>(CI->getZExtValue())) {
Chad Rosier0439cfc2011-11-08 21:12:00 +0000522 unsigned Opc = isThumb2 ? ARM::t2MOVi16 : ARM::MOVi16;
Chad Rosier2e82ad12012-11-27 01:06:49 +0000523 const TargetRegisterClass *RC = isThumb2 ? &ARM::rGPRRegClass :
524 &ARM::GPRRegClass;
525 unsigned ImmReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000526 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier67f96882011-11-04 22:29:00 +0000527 TII.get(Opc), ImmReg)
Chad Rosierd0191a52011-11-05 20:16:15 +0000528 .addImm(CI->getZExtValue()));
Chad Rosier67f96882011-11-04 22:29:00 +0000529 return ImmReg;
Eric Christophere4dd7372010-11-03 20:21:17 +0000530 }
531
Chad Rosier2a3503e2011-11-11 00:36:21 +0000532 // Use MVN to emit negative constants.
533 if (VT == MVT::i32 && Subtarget->hasV6T2Ops() && CI->isNegative()) {
534 unsigned Imm = (unsigned)~(CI->getSExtValue());
Chad Rosiere19b0a92011-11-11 06:27:41 +0000535 bool UseImm = isThumb2 ? (ARM_AM::getT2SOImmVal(Imm) != -1) :
Chad Rosier2a3503e2011-11-11 00:36:21 +0000536 (ARM_AM::getSOImmVal(Imm) != -1);
Chad Rosiere19b0a92011-11-11 06:27:41 +0000537 if (UseImm) {
Chad Rosier2a3503e2011-11-11 00:36:21 +0000538 unsigned Opc = isThumb2 ? ARM::t2MVNi : ARM::MVNi;
Juergen Ributzka2cbcf7a2014-08-13 21:39:18 +0000539 const TargetRegisterClass *RC = isThumb2 ? &ARM::rGPRRegClass :
540 &ARM::GPRRegClass;
541 unsigned ImmReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000542 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier2a3503e2011-11-11 00:36:21 +0000543 TII.get(Opc), ImmReg)
544 .addImm(Imm));
545 return ImmReg;
546 }
547 }
548
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000549 unsigned ResultReg = 0;
Juergen Ributzkaa5b08382014-08-13 21:42:19 +0000550 if (Subtarget->useMovt(*FuncInfo.MF))
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000551 ResultReg = FastEmit_i(VT, VT, ISD::Constant, CI->getZExtValue());
552
553 if (ResultReg)
554 return ResultReg;
Juergen Ributzkaa5b08382014-08-13 21:42:19 +0000555
Chad Rosier2a3503e2011-11-11 00:36:21 +0000556 // Load from constant pool. For now 32-bit only.
Chad Rosier67f96882011-11-04 22:29:00 +0000557 if (VT != MVT::i32)
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000558 return 0;
Chad Rosier67f96882011-11-04 22:29:00 +0000559
Eric Christopherc3e118e2010-09-02 23:43:26 +0000560 // MachineConstantPool wants an explicit alignment.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000561 unsigned Align = DL.getPrefTypeAlignment(C->getType());
Eric Christopherc3e118e2010-09-02 23:43:26 +0000562 if (Align == 0) {
563 // TODO: Figure out if this is correct.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000564 Align = DL.getTypeAllocSize(C->getType());
Eric Christopherc3e118e2010-09-02 23:43:26 +0000565 }
566 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000567 ResultReg = createResultReg(TLI.getRegClassFor(VT));
Chad Rosier0439cfc2011-11-08 21:12:00 +0000568 if (isThumb2)
Rafael Espindolaea09c592014-02-18 22:05:46 +0000569 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000570 TII.get(ARM::t2LDRpci), ResultReg)
571 .addConstantPoolIndex(Idx));
Tim Northovere42fb072014-02-04 10:38:46 +0000572 else {
Eric Christopher22d04922010-11-12 09:48:30 +0000573 // The extra immediate is for addrmode2.
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000574 ResultReg = constrainOperandRegClass(TII.get(ARM::LDRcp), ResultReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000575 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000576 TII.get(ARM::LDRcp), ResultReg)
577 .addConstantPoolIndex(Idx)
578 .addImm(0));
Tim Northovere42fb072014-02-04 10:38:46 +0000579 }
Juergen Ributzka5df8603df2014-08-15 16:59:46 +0000580 return ResultReg;
Eric Christopher92db2012010-09-02 01:48:11 +0000581}
582
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000583unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, MVT VT) {
Eric Christopher7787f792010-10-02 00:32:44 +0000584 // For now 32-bit only.
Duncan Sands14627772010-11-03 12:17:33 +0000585 if (VT != MVT::i32) return 0;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000586
Eric Christopher7787f792010-10-02 00:32:44 +0000587 Reloc::Model RelocM = TM.getRelocationModel();
Jush Lue87e5592012-08-29 02:41:21 +0000588 bool IsIndirect = Subtarget->GVIsIndirectSymbol(GV, RelocM);
Chad Rosier65710a72012-11-07 00:13:01 +0000589 const TargetRegisterClass *RC = isThumb2 ?
590 (const TargetRegisterClass*)&ARM::rGPRRegClass :
591 (const TargetRegisterClass*)&ARM::GPRRegClass;
592 unsigned DestReg = createResultReg(RC);
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000593
Tim Northoverd6a729b2014-01-06 14:28:05 +0000594 // FastISel TLS support on non-MachO is broken, punt to SelectionDAG.
JF Bastien18db1f22013-06-14 02:49:43 +0000595 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
596 bool IsThreadLocal = GVar && GVar->isThreadLocal();
Tim Northoverd6a729b2014-01-06 14:28:05 +0000597 if (!Subtarget->isTargetMachO() && IsThreadLocal) return 0;
JF Bastien18db1f22013-06-14 02:49:43 +0000598
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000599 // Use movw+movt when possible, it avoids constant pool entries.
Tim Northoverfa36dfe2013-11-26 12:45:05 +0000600 // Non-darwin targets only support static movt relocations in FastISel.
Eric Christopherc1058df2014-07-04 01:55:26 +0000601 if (Subtarget->useMovt(*FuncInfo.MF) &&
Tim Northoverd6a729b2014-01-06 14:28:05 +0000602 (Subtarget->isTargetMachO() || RelocM == Reloc::Static)) {
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000603 unsigned Opc;
Tim Northoverdb962e2c2013-11-25 16:24:52 +0000604 unsigned char TF = 0;
Tim Northoverd6a729b2014-01-06 14:28:05 +0000605 if (Subtarget->isTargetMachO())
Tim Northoverdb962e2c2013-11-25 16:24:52 +0000606 TF = ARMII::MO_NONLAZY;
607
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000608 switch (RelocM) {
609 case Reloc::PIC_:
610 Opc = isThumb2 ? ARM::t2MOV_ga_pcrel : ARM::MOV_ga_pcrel;
611 break;
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000612 default:
613 Opc = isThumb2 ? ARM::t2MOVi32imm : ARM::MOVi32imm;
614 break;
615 }
Rafael Espindolaea09c592014-02-18 22:05:46 +0000616 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
617 TII.get(Opc), DestReg).addGlobalAddress(GV, 0, TF));
Eric Christopher7787f792010-10-02 00:32:44 +0000618 } else {
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000619 // MachineConstantPool wants an explicit alignment.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000620 unsigned Align = DL.getPrefTypeAlignment(GV->getType());
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000621 if (Align == 0) {
622 // TODO: Figure out if this is correct.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000623 Align = DL.getTypeAllocSize(GV->getType());
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000624 }
625
Jush Lu47172a02012-09-27 05:21:41 +0000626 if (Subtarget->isTargetELF() && RelocM == Reloc::PIC_)
627 return ARMLowerPICELF(GV, Align, VT);
628
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000629 // Grab index.
630 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 :
631 (Subtarget->isThumb() ? 4 : 8);
632 unsigned Id = AFI->createPICLabelUId();
633 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id,
634 ARMCP::CPValue,
635 PCAdj);
636 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
637
638 // Load value.
639 MachineInstrBuilder MIB;
640 if (isThumb2) {
641 unsigned Opc = (RelocM!=Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
Rafael Espindolaea09c592014-02-18 22:05:46 +0000642 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc),
643 DestReg).addConstantPoolIndex(Idx);
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000644 if (RelocM == Reloc::PIC_)
645 MIB.addImm(Id);
Jush Lue87e5592012-08-29 02:41:21 +0000646 AddOptionalDefs(MIB);
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000647 } else {
648 // The extra immediate is for addrmode2.
Jim Grosbach5f71aab2013-08-26 20:07:29 +0000649 DestReg = constrainOperandRegClass(TII.get(ARM::LDRcp), DestReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000650 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
651 TII.get(ARM::LDRcp), DestReg)
652 .addConstantPoolIndex(Idx)
653 .addImm(0);
Jush Lue87e5592012-08-29 02:41:21 +0000654 AddOptionalDefs(MIB);
655
656 if (RelocM == Reloc::PIC_) {
657 unsigned Opc = IsIndirect ? ARM::PICLDR : ARM::PICADD;
658 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
659
660 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +0000661 DbgLoc, TII.get(Opc), NewDestReg)
Jush Lue87e5592012-08-29 02:41:21 +0000662 .addReg(DestReg)
663 .addImm(Id);
664 AddOptionalDefs(MIB);
665 return NewDestReg;
666 }
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000667 }
Eric Christopher7787f792010-10-02 00:32:44 +0000668 }
Eli Friedman86585792011-06-03 01:13:19 +0000669
Jush Lue87e5592012-08-29 02:41:21 +0000670 if (IsIndirect) {
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000671 MachineInstrBuilder MIB;
Eli Friedman86585792011-06-03 01:13:19 +0000672 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
Chad Rosier0439cfc2011-11-08 21:12:00 +0000673 if (isThumb2)
Rafael Espindolaea09c592014-02-18 22:05:46 +0000674 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jim Grosbache7e2aca2011-09-13 20:30:37 +0000675 TII.get(ARM::t2LDRi12), NewDestReg)
Eli Friedman86585792011-06-03 01:13:19 +0000676 .addReg(DestReg)
677 .addImm(0);
678 else
Rafael Espindolaea09c592014-02-18 22:05:46 +0000679 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
680 TII.get(ARM::LDRi12), NewDestReg)
681 .addReg(DestReg)
682 .addImm(0);
Eli Friedman86585792011-06-03 01:13:19 +0000683 DestReg = NewDestReg;
684 AddOptionalDefs(MIB);
685 }
686
Eric Christopher7787f792010-10-02 00:32:44 +0000687 return DestReg;
Eric Christopher83a5ec82010-10-01 23:24:42 +0000688}
689
Eric Christopher3cf63f12010-09-09 00:19:41 +0000690unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
Patrik Hagglundc494d242012-12-17 14:30:06 +0000691 EVT CEVT = TLI.getValueType(C->getType(), true);
692
693 // Only handle simple types.
694 if (!CEVT.isSimple()) return 0;
695 MVT VT = CEVT.getSimpleVT();
Eric Christopher3cf63f12010-09-09 00:19:41 +0000696
697 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
698 return ARMMaterializeFP(CFP, VT);
Eric Christopher83a5ec82010-10-01 23:24:42 +0000699 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
700 return ARMMaterializeGV(GV, VT);
701 else if (isa<ConstantInt>(C))
702 return ARMMaterializeInt(C, VT);
Eric Christopher7ac602b2010-10-11 08:38:55 +0000703
Eric Christopher83a5ec82010-10-01 23:24:42 +0000704 return 0;
Eric Christopher3cf63f12010-09-09 00:19:41 +0000705}
706
Chad Rosier0eff3e52011-11-17 21:46:13 +0000707// TODO: unsigned ARMFastISel::TargetMaterializeFloatZero(const ConstantFP *CF);
708
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000709unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
710 // Don't handle dynamic allocas.
711 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000712
Duncan Sandsf5dda012010-11-03 11:35:31 +0000713 MVT VT;
Chad Rosier466d3d82012-05-11 16:41:38 +0000714 if (!isLoadTypeLegal(AI->getType(), VT)) return 0;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000715
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000716 DenseMap<const AllocaInst*, int>::iterator SI =
717 FuncInfo.StaticAllocaMap.find(AI);
718
719 // This will get lowered later into the correct offsets and registers
720 // via rewriteXFrameIndex.
721 if (SI != FuncInfo.StaticAllocaMap.end()) {
Tim Northover76fc8a42013-12-11 16:04:57 +0000722 unsigned Opc = isThumb2 ? ARM::t2ADDri : ARM::ADDri;
Craig Topper760b1342012-02-22 05:59:10 +0000723 const TargetRegisterClass* RC = TLI.getRegClassFor(VT);
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000724 unsigned ResultReg = createResultReg(RC);
Tim Northover76fc8a42013-12-11 16:04:57 +0000725 ResultReg = constrainOperandRegClass(TII.get(Opc), ResultReg, 0);
726
Rafael Espindolaea09c592014-02-18 22:05:46 +0000727 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000728 TII.get(Opc), ResultReg)
729 .addFrameIndex(SI->second)
730 .addImm(0));
731 return ResultReg;
732 }
Eric Christopher7ac602b2010-10-11 08:38:55 +0000733
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000734 return 0;
735}
736
Chris Lattner229907c2011-07-18 04:54:35 +0000737bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
Duncan Sandsf5dda012010-11-03 11:35:31 +0000738 EVT evt = TLI.getValueType(Ty, true);
Eric Christopher2ff757d2010-09-09 01:06:51 +0000739
Eric Christopher761e7fb2010-08-25 07:23:49 +0000740 // Only handle simple types.
Duncan Sandsf5dda012010-11-03 11:35:31 +0000741 if (evt == MVT::Other || !evt.isSimple()) return false;
742 VT = evt.getSimpleVT();
Eric Christopher2ff757d2010-09-09 01:06:51 +0000743
Eric Christopher901176a2010-08-31 01:28:42 +0000744 // Handle all legal types, i.e. a register that will directly hold this
745 // value.
746 return TLI.isTypeLegal(VT);
Eric Christopher761e7fb2010-08-25 07:23:49 +0000747}
748
Chris Lattner229907c2011-07-18 04:54:35 +0000749bool ARMFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000750 if (isTypeLegal(Ty, VT)) return true;
Eric Christopher2ff757d2010-09-09 01:06:51 +0000751
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000752 // If this is a type than can be sign or zero-extended to a basic operation
753 // go ahead and accept it now.
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000754 if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000755 return true;
Eric Christopher2ff757d2010-09-09 01:06:51 +0000756
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000757 return false;
758}
759
Eric Christopher558b61e2010-11-19 22:36:41 +0000760// Computes the address to get to an object.
Eric Christopherfef5f312010-11-19 22:30:02 +0000761bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher00202ee2010-08-23 21:44:12 +0000762 // Some boilerplate from the X86 FastISel.
Craig Topper062a2ba2014-04-25 05:30:21 +0000763 const User *U = nullptr;
Eric Christopher00202ee2010-08-23 21:44:12 +0000764 unsigned Opcode = Instruction::UserOp1;
Eric Christopher9d4e4712010-08-24 00:07:24 +0000765 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christophercee83d62010-11-19 22:37:58 +0000766 // Don't walk into other basic blocks unless the object is an alloca from
767 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher96494372010-11-15 21:11:06 +0000768 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
769 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
770 Opcode = I->getOpcode();
771 U = I;
772 }
Eric Christopher9d4e4712010-08-24 00:07:24 +0000773 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher00202ee2010-08-23 21:44:12 +0000774 Opcode = C->getOpcode();
775 U = C;
776 }
777
Chris Lattner229907c2011-07-18 04:54:35 +0000778 if (PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher00202ee2010-08-23 21:44:12 +0000779 if (Ty->getAddressSpace() > 255)
780 // Fast instruction selection doesn't support the special
781 // address spaces.
782 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +0000783
Eric Christopher00202ee2010-08-23 21:44:12 +0000784 switch (Opcode) {
Eric Christopher2ff757d2010-09-09 01:06:51 +0000785 default:
Eric Christopher00202ee2010-08-23 21:44:12 +0000786 break;
Eric Christopher3931cf92013-07-12 22:08:24 +0000787 case Instruction::BitCast:
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000788 // Look through bitcasts.
Eric Christopherfef5f312010-11-19 22:30:02 +0000789 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher3931cf92013-07-12 22:08:24 +0000790 case Instruction::IntToPtr:
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000791 // Look past no-op inttoptrs.
792 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopherfef5f312010-11-19 22:30:02 +0000793 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000794 break;
Eric Christopher3931cf92013-07-12 22:08:24 +0000795 case Instruction::PtrToInt:
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000796 // Look past no-op ptrtoints.
797 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Eric Christopherfef5f312010-11-19 22:30:02 +0000798 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000799 break;
Eric Christopher21d0c172010-10-14 09:29:41 +0000800 case Instruction::GetElementPtr: {
Eric Christopher35e2d7f2010-11-19 22:39:56 +0000801 Address SavedAddr = Addr;
Eric Christopherfef5f312010-11-19 22:30:02 +0000802 int TmpOffset = Addr.Offset;
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000803
Eric Christopher21d0c172010-10-14 09:29:41 +0000804 // Iterate through the GEP folding the constants into offsets where
805 // we can.
806 gep_type_iterator GTI = gep_type_begin(U);
807 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
808 i != e; ++i, ++GTI) {
809 const Value *Op = *i;
Chris Lattner229907c2011-07-18 04:54:35 +0000810 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000811 const StructLayout *SL = DL.getStructLayout(STy);
Eric Christopher21d0c172010-10-14 09:29:41 +0000812 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
813 TmpOffset += SL->getElementOffset(Idx);
814 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000815 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
Eric Christophera5a779e2011-03-22 19:39:17 +0000816 for (;;) {
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000817 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
818 // Constant-offset addressing.
819 TmpOffset += CI->getSExtValue() * S;
Eric Christophera5a779e2011-03-22 19:39:17 +0000820 break;
821 }
Bob Wilson9f3e6b22013-11-15 19:09:27 +0000822 if (canFoldAddIntoGEP(U, Op)) {
823 // A compatible add with a constant operand. Fold the constant.
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000824 ConstantInt *CI =
Eric Christophera5a779e2011-03-22 19:39:17 +0000825 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000826 TmpOffset += CI->getSExtValue() * S;
Eric Christophera5a779e2011-03-22 19:39:17 +0000827 // Iterate on the other operand.
828 Op = cast<AddOperator>(Op)->getOperand(0);
829 continue;
Eric Christopher501d2e22011-04-29 00:03:10 +0000830 }
Eric Christophera5a779e2011-03-22 19:39:17 +0000831 // Unsupported
832 goto unsupported_gep;
833 }
Eric Christopher21d0c172010-10-14 09:29:41 +0000834 }
835 }
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000836
837 // Try to grab the base operand now.
Eric Christopherfef5f312010-11-19 22:30:02 +0000838 Addr.Offset = TmpOffset;
839 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000840
841 // We failed, restore everything and try the other options.
Eric Christopher35e2d7f2010-11-19 22:39:56 +0000842 Addr = SavedAddr;
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000843
Eric Christopher21d0c172010-10-14 09:29:41 +0000844 unsupported_gep:
Eric Christopher21d0c172010-10-14 09:29:41 +0000845 break;
846 }
Eric Christopher00202ee2010-08-23 21:44:12 +0000847 case Instruction::Alloca: {
Eric Christopher7cd5cda2010-10-12 05:39:06 +0000848 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher0a3c28b2010-11-20 22:38:27 +0000849 DenseMap<const AllocaInst*, int>::iterator SI =
850 FuncInfo.StaticAllocaMap.find(AI);
851 if (SI != FuncInfo.StaticAllocaMap.end()) {
852 Addr.BaseType = Address::FrameIndexBase;
853 Addr.Base.FI = SI->second;
854 return true;
855 }
856 break;
Eric Christopher00202ee2010-08-23 21:44:12 +0000857 }
858 }
Eric Christopher2ff757d2010-09-09 01:06:51 +0000859
Eric Christopher9d4e4712010-08-24 00:07:24 +0000860 // Try to get this in a register if nothing else has worked.
Eric Christopherfef5f312010-11-19 22:30:02 +0000861 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
862 return Addr.Base.Reg != 0;
Eric Christopher21d0c172010-10-14 09:29:41 +0000863}
864
Chad Rosier150d35b2012-12-17 22:35:29 +0000865void ARMFastISel::ARMSimplifyAddress(Address &Addr, MVT VT, bool useAM3) {
Eric Christopher73bc5b02010-10-21 19:40:30 +0000866 bool needsLowering = false;
Chad Rosier150d35b2012-12-17 22:35:29 +0000867 switch (VT.SimpleTy) {
Craig Toppere55c5562012-02-07 02:50:20 +0000868 default: llvm_unreachable("Unhandled load/store type!");
Eric Christopher73bc5b02010-10-21 19:40:30 +0000869 case MVT::i1:
870 case MVT::i8:
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000871 case MVT::i16:
Eric Christopher73bc5b02010-10-21 19:40:30 +0000872 case MVT::i32:
Chad Rosieradfd2002011-11-14 20:22:27 +0000873 if (!useAM3) {
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000874 // Integer loads/stores handle 12-bit offsets.
875 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Chad Rosieradfd2002011-11-14 20:22:27 +0000876 // Handle negative offsets.
Chad Rosier45110fd2011-11-14 22:34:48 +0000877 if (needsLowering && isThumb2)
878 needsLowering = !(Subtarget->hasV6T2Ops() && Addr.Offset < 0 &&
879 Addr.Offset > -256);
Chad Rosieradfd2002011-11-14 20:22:27 +0000880 } else {
Chad Rosier5196efd2011-11-13 04:25:02 +0000881 // ARM halfword load/stores and signed byte loads use +/-imm8 offsets.
Chad Rosier2a1df882011-11-14 04:09:28 +0000882 needsLowering = (Addr.Offset > 255 || Addr.Offset < -255);
Chad Rosieradfd2002011-11-14 20:22:27 +0000883 }
Eric Christopher73bc5b02010-10-21 19:40:30 +0000884 break;
885 case MVT::f32:
886 case MVT::f64:
887 // Floating point operands handle 8-bit offsets.
Eric Christopherfef5f312010-11-19 22:30:02 +0000888 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher73bc5b02010-10-21 19:40:30 +0000889 break;
890 }
Jim Grosbach055de2c2010-10-27 21:39:08 +0000891
Eric Christopher0a3c28b2010-11-20 22:38:27 +0000892 // If this is a stack pointer and the offset needs to be simplified then
893 // put the alloca address into a register, set the base type back to
894 // register and continue. This should almost never happen.
895 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
Craig Topperc7242e02012-04-20 07:30:17 +0000896 const TargetRegisterClass *RC = isThumb2 ?
897 (const TargetRegisterClass*)&ARM::tGPRRegClass :
898 (const TargetRegisterClass*)&ARM::GPRRegClass;
Eric Christopher0a3c28b2010-11-20 22:38:27 +0000899 unsigned ResultReg = createResultReg(RC);
Chad Rosier0439cfc2011-11-08 21:12:00 +0000900 unsigned Opc = isThumb2 ? ARM::t2ADDri : ARM::ADDri;
Rafael Espindolaea09c592014-02-18 22:05:46 +0000901 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher0a3c28b2010-11-20 22:38:27 +0000902 TII.get(Opc), ResultReg)
903 .addFrameIndex(Addr.Base.FI)
904 .addImm(0));
905 Addr.Base.Reg = ResultReg;
906 Addr.BaseType = Address::RegBase;
907 }
908
Eric Christopher73bc5b02010-10-21 19:40:30 +0000909 // Since the offset is too large for the load/store instruction
Eric Christopher74487fc2010-09-02 00:53:56 +0000910 // get the reg+offset into a register.
Eric Christopher73bc5b02010-10-21 19:40:30 +0000911 if (needsLowering) {
Eli Friedman86caced2011-04-29 21:22:56 +0000912 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
913 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopherfef5f312010-11-19 22:30:02 +0000914 Addr.Offset = 0;
Eric Christopher74487fc2010-09-02 00:53:56 +0000915 }
Eric Christopher00202ee2010-08-23 21:44:12 +0000916}
917
Chad Rosier150d35b2012-12-17 22:35:29 +0000918void ARMFastISel::AddLoadStoreOperands(MVT VT, Address &Addr,
Cameron Zwarich6528a542011-05-28 20:34:49 +0000919 const MachineInstrBuilder &MIB,
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000920 unsigned Flags, bool useAM3) {
Eric Christopher119ff7f2010-12-01 01:40:24 +0000921 // addrmode5 output depends on the selection dag addressing dividing the
922 // offset by 4 that it then later multiplies. Do this here as well.
Chad Rosier150d35b2012-12-17 22:35:29 +0000923 if (VT.SimpleTy == MVT::f32 || VT.SimpleTy == MVT::f64)
Eric Christopher119ff7f2010-12-01 01:40:24 +0000924 Addr.Offset /= 4;
Eric Christopher501d2e22011-04-29 00:03:10 +0000925
Eric Christopher119ff7f2010-12-01 01:40:24 +0000926 // Frame base works a bit differently. Handle it separately.
927 if (Addr.BaseType == Address::FrameIndexBase) {
928 int FI = Addr.Base.FI;
929 int Offset = Addr.Offset;
930 MachineMemOperand *MMO =
931 FuncInfo.MF->getMachineMemOperand(
932 MachinePointerInfo::getFixedStack(FI, Offset),
Cameron Zwarich6528a542011-05-28 20:34:49 +0000933 Flags,
Eric Christopher119ff7f2010-12-01 01:40:24 +0000934 MFI.getObjectSize(FI),
935 MFI.getObjectAlignment(FI));
936 // Now add the rest of the operands.
937 MIB.addFrameIndex(FI);
938
Bob Wilson80381f62011-12-04 00:52:23 +0000939 // ARM halfword load/stores and signed byte loads need an additional
940 // operand.
Chad Rosier2a1df882011-11-14 04:09:28 +0000941 if (useAM3) {
942 signed Imm = (Addr.Offset < 0) ? (0x100 | -Addr.Offset) : Addr.Offset;
943 MIB.addReg(0);
944 MIB.addImm(Imm);
945 } else {
946 MIB.addImm(Addr.Offset);
947 }
Eric Christopher119ff7f2010-12-01 01:40:24 +0000948 MIB.addMemOperand(MMO);
949 } else {
950 // Now add the rest of the operands.
951 MIB.addReg(Addr.Base.Reg);
Eric Christopher501d2e22011-04-29 00:03:10 +0000952
Bob Wilson80381f62011-12-04 00:52:23 +0000953 // ARM halfword load/stores and signed byte loads need an additional
954 // operand.
Chad Rosier2a1df882011-11-14 04:09:28 +0000955 if (useAM3) {
956 signed Imm = (Addr.Offset < 0) ? (0x100 | -Addr.Offset) : Addr.Offset;
957 MIB.addReg(0);
958 MIB.addImm(Imm);
959 } else {
960 MIB.addImm(Addr.Offset);
961 }
Eric Christopher119ff7f2010-12-01 01:40:24 +0000962 }
963 AddOptionalDefs(MIB);
964}
965
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000966bool ARMFastISel::ARMEmitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
Chad Rosier563de602011-12-13 19:22:14 +0000967 unsigned Alignment, bool isZExt, bool allocReg) {
Eric Christopher901176a2010-08-31 01:28:42 +0000968 unsigned Opc;
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000969 bool useAM3 = false;
Chad Rosier563de602011-12-13 19:22:14 +0000970 bool needVMOV = false;
Craig Topper760b1342012-02-22 05:59:10 +0000971 const TargetRegisterClass *RC;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000972 switch (VT.SimpleTy) {
Eric Christopher119ff7f2010-12-01 01:40:24 +0000973 // This is mostly going to be Neon/vector support.
974 default: return false;
Chad Rosier023ede52011-11-11 02:38:59 +0000975 case MVT::i1:
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000976 case MVT::i8:
Chad Rosieradfd2002011-11-14 20:22:27 +0000977 if (isThumb2) {
978 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
979 Opc = isZExt ? ARM::t2LDRBi8 : ARM::t2LDRSBi8;
980 else
981 Opc = isZExt ? ARM::t2LDRBi12 : ARM::t2LDRSBi12;
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000982 } else {
Chad Rosieradfd2002011-11-14 20:22:27 +0000983 if (isZExt) {
984 Opc = ARM::LDRBi12;
985 } else {
986 Opc = ARM::LDRSB;
987 useAM3 = true;
988 }
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000989 }
JF Bastien652fa6a2013-06-09 00:20:24 +0000990 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRnopcRegClass;
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000991 break;
Chad Rosier2f27fab2011-11-09 21:30:12 +0000992 case MVT::i16:
Chad Rosier66bb1782012-11-09 18:25:27 +0000993 if (Alignment && Alignment < 2 && !Subtarget->allowsUnalignedMem())
Chad Rosier2364f582012-09-21 00:41:42 +0000994 return false;
995
Chad Rosieradfd2002011-11-14 20:22:27 +0000996 if (isThumb2) {
997 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
998 Opc = isZExt ? ARM::t2LDRHi8 : ARM::t2LDRSHi8;
999 else
1000 Opc = isZExt ? ARM::t2LDRHi12 : ARM::t2LDRSHi12;
1001 } else {
1002 Opc = isZExt ? ARM::LDRH : ARM::LDRSH;
1003 useAM3 = true;
1004 }
JF Bastien652fa6a2013-06-09 00:20:24 +00001005 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRnopcRegClass;
Chad Rosier2f27fab2011-11-09 21:30:12 +00001006 break;
Eric Christopher901176a2010-08-31 01:28:42 +00001007 case MVT::i32:
Chad Rosier66bb1782012-11-09 18:25:27 +00001008 if (Alignment && Alignment < 4 && !Subtarget->allowsUnalignedMem())
Chad Rosier8bf01fc2012-09-21 16:58:35 +00001009 return false;
1010
Chad Rosieradfd2002011-11-14 20:22:27 +00001011 if (isThumb2) {
1012 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
1013 Opc = ARM::t2LDRi8;
1014 else
1015 Opc = ARM::t2LDRi12;
1016 } else {
1017 Opc = ARM::LDRi12;
1018 }
JF Bastien652fa6a2013-06-09 00:20:24 +00001019 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRnopcRegClass;
Eric Christopher901176a2010-08-31 01:28:42 +00001020 break;
Eric Christopheraef6499b2010-09-18 01:59:37 +00001021 case MVT::f32:
Chad Rosierded61602011-12-14 17:55:03 +00001022 if (!Subtarget->hasVFP2()) return false;
Chad Rosier563de602011-12-13 19:22:14 +00001023 // Unaligned loads need special handling. Floats require word-alignment.
1024 if (Alignment && Alignment < 4) {
1025 needVMOV = true;
1026 VT = MVT::i32;
1027 Opc = isThumb2 ? ARM::t2LDRi12 : ARM::LDRi12;
JF Bastien652fa6a2013-06-09 00:20:24 +00001028 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRnopcRegClass;
Chad Rosier563de602011-12-13 19:22:14 +00001029 } else {
1030 Opc = ARM::VLDRS;
1031 RC = TLI.getRegClassFor(VT);
1032 }
Eric Christopheraef6499b2010-09-18 01:59:37 +00001033 break;
1034 case MVT::f64:
Chad Rosierded61602011-12-14 17:55:03 +00001035 if (!Subtarget->hasVFP2()) return false;
Chad Rosiera26979b2011-12-14 17:26:05 +00001036 // FIXME: Unaligned loads need special handling. Doublewords require
1037 // word-alignment.
1038 if (Alignment && Alignment < 4)
Chad Rosier563de602011-12-13 19:22:14 +00001039 return false;
Chad Rosiera26979b2011-12-14 17:26:05 +00001040
Eric Christopheraef6499b2010-09-18 01:59:37 +00001041 Opc = ARM::VLDRD;
Eric Christophera2583ea2010-10-07 05:50:44 +00001042 RC = TLI.getRegClassFor(VT);
Eric Christopheraef6499b2010-09-18 01:59:37 +00001043 break;
Eric Christopher761e7fb2010-08-25 07:23:49 +00001044 }
Eric Christopher119ff7f2010-12-01 01:40:24 +00001045 // Simplify this down to something we can handle.
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001046 ARMSimplifyAddress(Addr, VT, useAM3);
Jim Grosbach055de2c2010-10-27 21:39:08 +00001047
Eric Christopher119ff7f2010-12-01 01:40:24 +00001048 // Create the base instruction, then add the operands.
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001049 if (allocReg)
1050 ResultReg = createResultReg(RC);
1051 assert (ResultReg > 255 && "Expected an allocated virtual register.");
Rafael Espindolaea09c592014-02-18 22:05:46 +00001052 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher119ff7f2010-12-01 01:40:24 +00001053 TII.get(Opc), ResultReg);
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001054 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOLoad, useAM3);
Chad Rosier563de602011-12-13 19:22:14 +00001055
1056 // If we had an unaligned load of a float we've converted it to an regular
1057 // load. Now we must move from the GRP to the FP register.
1058 if (needVMOV) {
1059 unsigned MoveReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001060 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier563de602011-12-13 19:22:14 +00001061 TII.get(ARM::VMOVSR), MoveReg)
1062 .addReg(ResultReg));
1063 ResultReg = MoveReg;
1064 }
Eric Christopher901176a2010-08-31 01:28:42 +00001065 return true;
Eric Christopher761e7fb2010-08-25 07:23:49 +00001066}
1067
Eric Christopher29ab6d12010-09-27 06:02:23 +00001068bool ARMFastISel::SelectLoad(const Instruction *I) {
Eli Friedmanf3dd6da2011-09-02 22:33:24 +00001069 // Atomic loads need special handling.
1070 if (cast<LoadInst>(I)->isAtomic())
1071 return false;
1072
Eric Christopher860fc932010-09-10 00:34:35 +00001073 // Verify we have a legal type before going any further.
Duncan Sandsf5dda012010-11-03 11:35:31 +00001074 MVT VT;
Eric Christopher860fc932010-09-10 00:34:35 +00001075 if (!isLoadTypeLegal(I->getType(), VT))
1076 return false;
1077
Eric Christopher119ff7f2010-12-01 01:40:24 +00001078 // See if we can handle this address.
Eric Christopherfef5f312010-11-19 22:30:02 +00001079 Address Addr;
Eric Christopher119ff7f2010-12-01 01:40:24 +00001080 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopher860fc932010-09-10 00:34:35 +00001081
1082 unsigned ResultReg;
Chad Rosier563de602011-12-13 19:22:14 +00001083 if (!ARMEmitLoad(VT, ResultReg, Addr, cast<LoadInst>(I)->getAlignment()))
1084 return false;
Eric Christopher860fc932010-09-10 00:34:35 +00001085 UpdateValueMap(I, ResultReg);
1086 return true;
1087}
1088
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00001089bool ARMFastISel::ARMEmitStore(MVT VT, unsigned SrcReg, Address &Addr,
Bob Wilson80381f62011-12-04 00:52:23 +00001090 unsigned Alignment) {
Eric Christopher74487fc2010-09-02 00:53:56 +00001091 unsigned StrOpc;
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001092 bool useAM3 = false;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00001093 switch (VT.SimpleTy) {
Eric Christopher119ff7f2010-12-01 01:40:24 +00001094 // This is mostly going to be Neon/vector support.
Eric Christopher74487fc2010-09-02 00:53:56 +00001095 default: return false;
Eric Christopher1e43892e2010-11-02 23:59:09 +00001096 case MVT::i1: {
Craig Topperc7242e02012-04-20 07:30:17 +00001097 unsigned Res = createResultReg(isThumb2 ?
1098 (const TargetRegisterClass*)&ARM::tGPRRegClass :
1099 (const TargetRegisterClass*)&ARM::GPRRegClass);
Chad Rosier0439cfc2011-11-08 21:12:00 +00001100 unsigned Opc = isThumb2 ? ARM::t2ANDri : ARM::ANDri;
Joey Goulyc7cda1c2013-08-23 15:20:56 +00001101 SrcReg = constrainOperandRegClass(TII.get(Opc), SrcReg, 1);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001102 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher1e43892e2010-11-02 23:59:09 +00001103 TII.get(Opc), Res)
1104 .addReg(SrcReg).addImm(1));
1105 SrcReg = Res;
1106 } // Fallthrough here.
Eric Christophere4b3d6b2010-10-15 18:02:07 +00001107 case MVT::i8:
Chad Rosieradfd2002011-11-14 20:22:27 +00001108 if (isThumb2) {
1109 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
1110 StrOpc = ARM::t2STRBi8;
1111 else
1112 StrOpc = ARM::t2STRBi12;
1113 } else {
1114 StrOpc = ARM::STRBi12;
1115 }
Eric Christopher7cd5cda2010-10-12 05:39:06 +00001116 break;
1117 case MVT::i16:
Chad Rosier66bb1782012-11-09 18:25:27 +00001118 if (Alignment && Alignment < 2 && !Subtarget->allowsUnalignedMem())
Chad Rosier2364f582012-09-21 00:41:42 +00001119 return false;
1120
Chad Rosieradfd2002011-11-14 20:22:27 +00001121 if (isThumb2) {
1122 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
1123 StrOpc = ARM::t2STRHi8;
1124 else
1125 StrOpc = ARM::t2STRHi12;
1126 } else {
1127 StrOpc = ARM::STRH;
1128 useAM3 = true;
1129 }
Eric Christopher7cd5cda2010-10-12 05:39:06 +00001130 break;
Eric Christopherc918d552010-10-16 01:10:35 +00001131 case MVT::i32:
Chad Rosier66bb1782012-11-09 18:25:27 +00001132 if (Alignment && Alignment < 4 && !Subtarget->allowsUnalignedMem())
Chad Rosier8bf01fc2012-09-21 16:58:35 +00001133 return false;
1134
Chad Rosieradfd2002011-11-14 20:22:27 +00001135 if (isThumb2) {
1136 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
1137 StrOpc = ARM::t2STRi8;
1138 else
1139 StrOpc = ARM::t2STRi12;
1140 } else {
1141 StrOpc = ARM::STRi12;
1142 }
Eric Christopherc918d552010-10-16 01:10:35 +00001143 break;
Eric Christopherc3e118e2010-09-02 23:43:26 +00001144 case MVT::f32:
1145 if (!Subtarget->hasVFP2()) return false;
Chad Rosierc77830d2011-12-06 01:44:17 +00001146 // Unaligned stores need special handling. Floats require word-alignment.
Chad Rosierec3b77e2011-12-03 02:21:57 +00001147 if (Alignment && Alignment < 4) {
1148 unsigned MoveReg = createResultReg(TLI.getRegClassFor(MVT::i32));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001149 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosierec3b77e2011-12-03 02:21:57 +00001150 TII.get(ARM::VMOVRS), MoveReg)
1151 .addReg(SrcReg));
1152 SrcReg = MoveReg;
1153 VT = MVT::i32;
1154 StrOpc = isThumb2 ? ARM::t2STRi12 : ARM::STRi12;
Chad Rosierfce28912011-12-14 17:32:02 +00001155 } else {
1156 StrOpc = ARM::VSTRS;
Chad Rosierec3b77e2011-12-03 02:21:57 +00001157 }
Eric Christopherc3e118e2010-09-02 23:43:26 +00001158 break;
1159 case MVT::f64:
1160 if (!Subtarget->hasVFP2()) return false;
Chad Rosierc77830d2011-12-06 01:44:17 +00001161 // FIXME: Unaligned stores need special handling. Doublewords require
1162 // word-alignment.
Chad Rosiera26979b2011-12-14 17:26:05 +00001163 if (Alignment && Alignment < 4)
Chad Rosierec3b77e2011-12-03 02:21:57 +00001164 return false;
Chad Rosiera26979b2011-12-14 17:26:05 +00001165
Eric Christopherc3e118e2010-09-02 23:43:26 +00001166 StrOpc = ARM::VSTRD;
1167 break;
Eric Christopher74487fc2010-09-02 00:53:56 +00001168 }
Eric Christopher119ff7f2010-12-01 01:40:24 +00001169 // Simplify this down to something we can handle.
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001170 ARMSimplifyAddress(Addr, VT, useAM3);
Jim Grosbach055de2c2010-10-27 21:39:08 +00001171
Eric Christopher119ff7f2010-12-01 01:40:24 +00001172 // Create the base instruction, then add the operands.
Joey Goulyc7cda1c2013-08-23 15:20:56 +00001173 SrcReg = constrainOperandRegClass(TII.get(StrOpc), SrcReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001174 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher119ff7f2010-12-01 01:40:24 +00001175 TII.get(StrOpc))
Chad Rosierce619dd2011-11-17 01:16:53 +00001176 .addReg(SrcReg);
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001177 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOStore, useAM3);
Eric Christopher74487fc2010-09-02 00:53:56 +00001178 return true;
1179}
1180
Eric Christopher29ab6d12010-09-27 06:02:23 +00001181bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher74487fc2010-09-02 00:53:56 +00001182 Value *Op0 = I->getOperand(0);
1183 unsigned SrcReg = 0;
1184
Eli Friedmanf3dd6da2011-09-02 22:33:24 +00001185 // Atomic stores need special handling.
1186 if (cast<StoreInst>(I)->isAtomic())
1187 return false;
1188
Eric Christopher119ff7f2010-12-01 01:40:24 +00001189 // Verify we have a legal type before going any further.
Duncan Sandsf5dda012010-11-03 11:35:31 +00001190 MVT VT;
Eric Christopher74487fc2010-09-02 00:53:56 +00001191 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopherfde5a3d2010-09-01 22:16:27 +00001192 return false;
Eric Christopher74487fc2010-09-02 00:53:56 +00001193
Eric Christopher92db2012010-09-02 01:48:11 +00001194 // Get the value to be stored into a register.
1195 SrcReg = getRegForValue(Op0);
Eric Christopher119ff7f2010-12-01 01:40:24 +00001196 if (SrcReg == 0) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001197
Eric Christopher119ff7f2010-12-01 01:40:24 +00001198 // See if we can handle this address.
Eric Christopherfef5f312010-11-19 22:30:02 +00001199 Address Addr;
Eric Christopherfef5f312010-11-19 22:30:02 +00001200 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher74487fc2010-09-02 00:53:56 +00001201 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001202
Chad Rosierec3b77e2011-12-03 02:21:57 +00001203 if (!ARMEmitStore(VT, SrcReg, Addr, cast<StoreInst>(I)->getAlignment()))
1204 return false;
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001205 return true;
1206}
1207
1208static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1209 switch (Pred) {
1210 // Needs two compares...
1211 case CmpInst::FCMP_ONE:
Eric Christopher7ac602b2010-10-11 08:38:55 +00001212 case CmpInst::FCMP_UEQ:
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001213 default:
Eric Christopherb2abb502010-11-02 01:24:49 +00001214 // AL is our "false" for now. The other two need more compares.
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001215 return ARMCC::AL;
1216 case CmpInst::ICMP_EQ:
1217 case CmpInst::FCMP_OEQ:
1218 return ARMCC::EQ;
1219 case CmpInst::ICMP_SGT:
1220 case CmpInst::FCMP_OGT:
1221 return ARMCC::GT;
1222 case CmpInst::ICMP_SGE:
1223 case CmpInst::FCMP_OGE:
1224 return ARMCC::GE;
1225 case CmpInst::ICMP_UGT:
1226 case CmpInst::FCMP_UGT:
1227 return ARMCC::HI;
1228 case CmpInst::FCMP_OLT:
1229 return ARMCC::MI;
1230 case CmpInst::ICMP_ULE:
1231 case CmpInst::FCMP_OLE:
1232 return ARMCC::LS;
1233 case CmpInst::FCMP_ORD:
1234 return ARMCC::VC;
1235 case CmpInst::FCMP_UNO:
1236 return ARMCC::VS;
1237 case CmpInst::FCMP_UGE:
1238 return ARMCC::PL;
1239 case CmpInst::ICMP_SLT:
1240 case CmpInst::FCMP_ULT:
Eric Christopher7ac602b2010-10-11 08:38:55 +00001241 return ARMCC::LT;
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001242 case CmpInst::ICMP_SLE:
1243 case CmpInst::FCMP_ULE:
1244 return ARMCC::LE;
1245 case CmpInst::FCMP_UNE:
1246 case CmpInst::ICMP_NE:
1247 return ARMCC::NE;
1248 case CmpInst::ICMP_UGE:
1249 return ARMCC::HS;
1250 case CmpInst::ICMP_ULT:
1251 return ARMCC::LO;
1252 }
Eric Christopherfde5a3d2010-09-01 22:16:27 +00001253}
1254
Eric Christopher29ab6d12010-09-27 06:02:23 +00001255bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christopher6aaed722010-09-03 00:35:47 +00001256 const BranchInst *BI = cast<BranchInst>(I);
1257 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1258 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopher2ff757d2010-09-09 01:06:51 +00001259
Eric Christopher6aaed722010-09-03 00:35:47 +00001260 // Simple branch support.
Jim Grosbach68147ee2010-11-09 19:22:26 +00001261
Eric Christopher5c308f82010-10-29 21:08:19 +00001262 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1263 // behavior.
Eric Christopher5c308f82010-10-29 21:08:19 +00001264 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Chad Rosiereafbf3f2011-10-26 23:17:28 +00001265 if (CI->hasOneUse() && (CI->getParent() == I->getParent())) {
Eric Christopher5c308f82010-10-29 21:08:19 +00001266
1267 // Get the compare predicate.
Eric Christopher26b8ac42011-04-29 21:56:31 +00001268 // Try to take advantage of fallthrough opportunities.
1269 CmpInst::Predicate Predicate = CI->getPredicate();
1270 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1271 std::swap(TBB, FBB);
1272 Predicate = CmpInst::getInversePredicate(Predicate);
1273 }
1274
1275 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher5c308f82010-10-29 21:08:19 +00001276
1277 // We may not handle every CC for now.
1278 if (ARMPred == ARMCC::AL) return false;
1279
Chad Rosiereafbf3f2011-10-26 23:17:28 +00001280 // Emit the compare.
Chad Rosier9cf803c2011-11-02 18:08:25 +00001281 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
Chad Rosiereafbf3f2011-10-26 23:17:28 +00001282 return false;
Jim Grosbach68147ee2010-11-09 19:22:26 +00001283
Chad Rosier0439cfc2011-11-08 21:12:00 +00001284 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001285 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BrOpc))
Eric Christopher5c308f82010-10-29 21:08:19 +00001286 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001287 FastEmitBranch(FBB, DbgLoc);
Eric Christopher5c308f82010-10-29 21:08:19 +00001288 FuncInfo.MBB->addSuccessor(TBB);
1289 return true;
1290 }
Eric Christopher8d46b472011-04-29 20:02:39 +00001291 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1292 MVT SourceVT;
1293 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
Eli Friedmanc7035512011-05-25 23:49:02 +00001294 (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
Chad Rosier0439cfc2011-11-08 21:12:00 +00001295 unsigned TstOpc = isThumb2 ? ARM::t2TSTri : ARM::TSTri;
Eric Christopher8d46b472011-04-29 20:02:39 +00001296 unsigned OpReg = getRegForValue(TI->getOperand(0));
Jim Grosbach667b1472013-08-26 20:22:05 +00001297 OpReg = constrainOperandRegClass(TII.get(TstOpc), OpReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001298 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher8d46b472011-04-29 20:02:39 +00001299 TII.get(TstOpc))
1300 .addReg(OpReg).addImm(1));
1301
1302 unsigned CCMode = ARMCC::NE;
1303 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1304 std::swap(TBB, FBB);
1305 CCMode = ARMCC::EQ;
1306 }
1307
Chad Rosier0439cfc2011-11-08 21:12:00 +00001308 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001309 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BrOpc))
Eric Christopher8d46b472011-04-29 20:02:39 +00001310 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1311
Rafael Espindolaea09c592014-02-18 22:05:46 +00001312 FastEmitBranch(FBB, DbgLoc);
Eric Christopher8d46b472011-04-29 20:02:39 +00001313 FuncInfo.MBB->addSuccessor(TBB);
1314 return true;
1315 }
Chad Rosierd24e7e1d2011-10-27 00:21:16 +00001316 } else if (const ConstantInt *CI =
1317 dyn_cast<ConstantInt>(BI->getCondition())) {
1318 uint64_t Imm = CI->getZExtValue();
1319 MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001320 FastEmitBranch(Target, DbgLoc);
Chad Rosierd24e7e1d2011-10-27 00:21:16 +00001321 return true;
Eric Christopher5c308f82010-10-29 21:08:19 +00001322 }
Jim Grosbach68147ee2010-11-09 19:22:26 +00001323
Eric Christopher5c308f82010-10-29 21:08:19 +00001324 unsigned CmpReg = getRegForValue(BI->getCondition());
1325 if (CmpReg == 0) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001326
Stuart Hastingsebddfe62011-04-16 03:31:26 +00001327 // We've been divorced from our compare! Our block was split, and
1328 // now our compare lives in a predecessor block. We musn't
1329 // re-compare here, as the children of the compare aren't guaranteed
1330 // live across the block boundary (we *could* check for this).
1331 // Regardless, the compare has been done in the predecessor block,
1332 // and it left a value for us in a virtual register. Ergo, we test
1333 // the one-bit value left in the virtual register.
Chad Rosier0439cfc2011-11-08 21:12:00 +00001334 unsigned TstOpc = isThumb2 ? ARM::t2TSTri : ARM::TSTri;
Jim Grosbach667b1472013-08-26 20:22:05 +00001335 CmpReg = constrainOperandRegClass(TII.get(TstOpc), CmpReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001336 AddOptionalDefs(
1337 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TstOpc))
1338 .addReg(CmpReg)
1339 .addImm(1));
Eric Christopher7ac602b2010-10-11 08:38:55 +00001340
Eric Christopher4f012fd2011-04-28 16:52:09 +00001341 unsigned CCMode = ARMCC::NE;
1342 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1343 std::swap(TBB, FBB);
1344 CCMode = ARMCC::EQ;
1345 }
1346
Chad Rosier0439cfc2011-11-08 21:12:00 +00001347 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001348 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BrOpc))
Eric Christopher4f012fd2011-04-28 16:52:09 +00001349 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001350 FastEmitBranch(FBB, DbgLoc);
Eric Christopher6aaed722010-09-03 00:35:47 +00001351 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopher7ac602b2010-10-11 08:38:55 +00001352 return true;
Eric Christopher6aaed722010-09-03 00:35:47 +00001353}
1354
Chad Rosierded4c992012-02-07 23:56:08 +00001355bool ARMFastISel::SelectIndirectBr(const Instruction *I) {
1356 unsigned AddrReg = getRegForValue(I->getOperand(0));
1357 if (AddrReg == 0) return false;
1358
1359 unsigned Opc = isThumb2 ? ARM::tBRIND : ARM::BX;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001360 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1361 TII.get(Opc)).addReg(AddrReg));
Bill Wendling12cda502012-10-22 23:30:04 +00001362
1363 const IndirectBrInst *IB = cast<IndirectBrInst>(I);
1364 for (unsigned i = 0, e = IB->getNumSuccessors(); i != e; ++i)
1365 FuncInfo.MBB->addSuccessor(FuncInfo.MBBMap[IB->getSuccessor(i)]);
1366
Jush Luac96b762012-06-14 06:08:19 +00001367 return true;
Chad Rosierded4c992012-02-07 23:56:08 +00001368}
1369
Chad Rosier9cf803c2011-11-02 18:08:25 +00001370bool ARMFastISel::ARMEmitCmp(const Value *Src1Value, const Value *Src2Value,
1371 bool isZExt) {
Chad Rosier78127d32011-10-26 23:25:44 +00001372 Type *Ty = Src1Value->getType();
Patrik Hagglundc494d242012-12-17 14:30:06 +00001373 EVT SrcEVT = TLI.getValueType(Ty, true);
1374 if (!SrcEVT.isSimple()) return false;
1375 MVT SrcVT = SrcEVT.getSimpleVT();
Eric Christopher2ff757d2010-09-09 01:06:51 +00001376
Chad Rosier78127d32011-10-26 23:25:44 +00001377 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy());
1378 if (isFloat && !Subtarget->hasVFP2())
Eric Christopherc3e9c402010-09-08 23:13:45 +00001379 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001380
Chad Rosier595d4192011-11-09 03:22:02 +00001381 // Check to see if the 2nd operand is a constant that we can encode directly
1382 // in the compare.
Chad Rosiere19b0a92011-11-11 06:27:41 +00001383 int Imm = 0;
1384 bool UseImm = false;
Chad Rosier595d4192011-11-09 03:22:02 +00001385 bool isNegativeImm = false;
Chad Rosieraf13d762011-11-16 00:32:20 +00001386 // FIXME: At -O0 we don't have anything that canonicalizes operand order.
1387 // Thus, Src1Value may be a ConstantInt, but we're missing it.
Chad Rosier595d4192011-11-09 03:22:02 +00001388 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(Src2Value)) {
1389 if (SrcVT == MVT::i32 || SrcVT == MVT::i16 || SrcVT == MVT::i8 ||
1390 SrcVT == MVT::i1) {
1391 const APInt &CIVal = ConstInt->getValue();
Chad Rosiere19b0a92011-11-11 06:27:41 +00001392 Imm = (isZExt) ? (int)CIVal.getZExtValue() : (int)CIVal.getSExtValue();
Chad Rosier26d05882012-03-15 22:54:20 +00001393 // For INT_MIN/LONG_MIN (i.e., 0x80000000) we need to use a cmp, rather
Jim Grosbach1a597112014-04-03 23:43:18 +00001394 // then a cmn, because there is no way to represent 2147483648 as a
Chad Rosier26d05882012-03-15 22:54:20 +00001395 // signed 32-bit int.
1396 if (Imm < 0 && Imm != (int)0x80000000) {
1397 isNegativeImm = true;
1398 Imm = -Imm;
Chad Rosier3fbd0942011-11-10 01:30:39 +00001399 }
Chad Rosier26d05882012-03-15 22:54:20 +00001400 UseImm = isThumb2 ? (ARM_AM::getT2SOImmVal(Imm) != -1) :
1401 (ARM_AM::getSOImmVal(Imm) != -1);
Chad Rosier595d4192011-11-09 03:22:02 +00001402 }
1403 } else if (const ConstantFP *ConstFP = dyn_cast<ConstantFP>(Src2Value)) {
1404 if (SrcVT == MVT::f32 || SrcVT == MVT::f64)
1405 if (ConstFP->isZero() && !ConstFP->isNegative())
Chad Rosiere19b0a92011-11-11 06:27:41 +00001406 UseImm = true;
Chad Rosier595d4192011-11-09 03:22:02 +00001407 }
1408
Eric Christopherc3e9c402010-09-08 23:13:45 +00001409 unsigned CmpOpc;
Chad Rosier595d4192011-11-09 03:22:02 +00001410 bool isICmp = true;
Chad Rosier9cf803c2011-11-02 18:08:25 +00001411 bool needsExt = false;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00001412 switch (SrcVT.SimpleTy) {
Eric Christopherc3e9c402010-09-08 23:13:45 +00001413 default: return false;
1414 // TODO: Verify compares.
1415 case MVT::f32:
Chad Rosier595d4192011-11-09 03:22:02 +00001416 isICmp = false;
Chad Rosiere19b0a92011-11-11 06:27:41 +00001417 CmpOpc = UseImm ? ARM::VCMPEZS : ARM::VCMPES;
Eric Christopherc3e9c402010-09-08 23:13:45 +00001418 break;
1419 case MVT::f64:
Chad Rosier595d4192011-11-09 03:22:02 +00001420 isICmp = false;
Chad Rosiere19b0a92011-11-11 06:27:41 +00001421 CmpOpc = UseImm ? ARM::VCMPEZD : ARM::VCMPED;
Eric Christopherc3e9c402010-09-08 23:13:45 +00001422 break;
Chad Rosier9cf803c2011-11-02 18:08:25 +00001423 case MVT::i1:
1424 case MVT::i8:
1425 case MVT::i16:
1426 needsExt = true;
1427 // Intentional fall-through.
Eric Christopherc3e9c402010-09-08 23:13:45 +00001428 case MVT::i32:
Chad Rosier595d4192011-11-09 03:22:02 +00001429 if (isThumb2) {
Chad Rosiere19b0a92011-11-11 06:27:41 +00001430 if (!UseImm)
Chad Rosier595d4192011-11-09 03:22:02 +00001431 CmpOpc = ARM::t2CMPrr;
1432 else
Bill Wendling4b796472012-06-11 08:07:26 +00001433 CmpOpc = isNegativeImm ? ARM::t2CMNri : ARM::t2CMPri;
Chad Rosier595d4192011-11-09 03:22:02 +00001434 } else {
Chad Rosiere19b0a92011-11-11 06:27:41 +00001435 if (!UseImm)
Chad Rosier595d4192011-11-09 03:22:02 +00001436 CmpOpc = ARM::CMPrr;
1437 else
Bill Wendling4b796472012-06-11 08:07:26 +00001438 CmpOpc = isNegativeImm ? ARM::CMNri : ARM::CMPri;
Chad Rosier595d4192011-11-09 03:22:02 +00001439 }
Eric Christopherc3e9c402010-09-08 23:13:45 +00001440 break;
1441 }
1442
Chad Rosier9cf803c2011-11-02 18:08:25 +00001443 unsigned SrcReg1 = getRegForValue(Src1Value);
1444 if (SrcReg1 == 0) return false;
Chad Rosier59a20192011-10-26 22:47:55 +00001445
Duncan Sands12330652011-11-28 10:31:27 +00001446 unsigned SrcReg2 = 0;
Chad Rosiere19b0a92011-11-11 06:27:41 +00001447 if (!UseImm) {
Chad Rosier595d4192011-11-09 03:22:02 +00001448 SrcReg2 = getRegForValue(Src2Value);
1449 if (SrcReg2 == 0) return false;
1450 }
Chad Rosier9cf803c2011-11-02 18:08:25 +00001451
1452 // We have i1, i8, or i16, we need to either zero extend or sign extend.
1453 if (needsExt) {
Chad Rosiera0d3c752012-02-16 22:45:33 +00001454 SrcReg1 = ARMEmitIntExt(SrcVT, SrcReg1, MVT::i32, isZExt);
1455 if (SrcReg1 == 0) return false;
Chad Rosiere19b0a92011-11-11 06:27:41 +00001456 if (!UseImm) {
Chad Rosiera0d3c752012-02-16 22:45:33 +00001457 SrcReg2 = ARMEmitIntExt(SrcVT, SrcReg2, MVT::i32, isZExt);
1458 if (SrcReg2 == 0) return false;
Chad Rosier595d4192011-11-09 03:22:02 +00001459 }
Chad Rosier9cf803c2011-11-02 18:08:25 +00001460 }
Chad Rosier59a20192011-10-26 22:47:55 +00001461
Jim Grosbachd7866792013-08-16 23:37:40 +00001462 const MCInstrDesc &II = TII.get(CmpOpc);
1463 SrcReg1 = constrainOperandRegClass(II, SrcReg1, 0);
Chad Rosiere19b0a92011-11-11 06:27:41 +00001464 if (!UseImm) {
Jim Grosbachd7866792013-08-16 23:37:40 +00001465 SrcReg2 = constrainOperandRegClass(II, SrcReg2, 1);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001466 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Chad Rosier595d4192011-11-09 03:22:02 +00001467 .addReg(SrcReg1).addReg(SrcReg2));
1468 } else {
1469 MachineInstrBuilder MIB;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001470 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Chad Rosier595d4192011-11-09 03:22:02 +00001471 .addReg(SrcReg1);
1472
1473 // Only add immediate for icmp as the immediate for fcmp is an implicit 0.0.
1474 if (isICmp)
Chad Rosiere19b0a92011-11-11 06:27:41 +00001475 MIB.addImm(Imm);
Chad Rosier595d4192011-11-09 03:22:02 +00001476 AddOptionalDefs(MIB);
1477 }
Chad Rosier78127d32011-10-26 23:25:44 +00001478
1479 // For floating point we need to move the result to a comparison register
1480 // that we can then use for branches.
1481 if (Ty->isFloatTy() || Ty->isDoubleTy())
Rafael Espindolaea09c592014-02-18 22:05:46 +00001482 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier78127d32011-10-26 23:25:44 +00001483 TII.get(ARM::FMSTAT)));
Chad Rosier59a20192011-10-26 22:47:55 +00001484 return true;
1485}
1486
1487bool ARMFastISel::SelectCmp(const Instruction *I) {
1488 const CmpInst *CI = cast<CmpInst>(I);
1489
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001490 // Get the compare predicate.
1491 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopher7ac602b2010-10-11 08:38:55 +00001492
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001493 // We may not handle every CC for now.
1494 if (ARMPred == ARMCC::AL) return false;
1495
Chad Rosier59a20192011-10-26 22:47:55 +00001496 // Emit the compare.
Chad Rosier9cf803c2011-11-02 18:08:25 +00001497 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
Chad Rosier59a20192011-10-26 22:47:55 +00001498 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001499
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001500 // Now set a register based on the comparison. Explicitly set the predicates
1501 // here.
Chad Rosier0439cfc2011-11-08 21:12:00 +00001502 unsigned MovCCOpc = isThumb2 ? ARM::t2MOVCCi : ARM::MOVCCi;
Craig Topperc7242e02012-04-20 07:30:17 +00001503 const TargetRegisterClass *RC = isThumb2 ?
1504 (const TargetRegisterClass*)&ARM::rGPRRegClass :
1505 (const TargetRegisterClass*)&ARM::GPRRegClass;
Eric Christopher76a97522010-10-07 05:39:19 +00001506 unsigned DestReg = createResultReg(RC);
Chad Rosier78127d32011-10-26 23:25:44 +00001507 Constant *Zero = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001508 unsigned ZeroReg = TargetMaterializeConstant(Zero);
Chad Rosier377f1f22012-03-07 20:59:26 +00001509 // ARMEmitCmp emits a FMSTAT when necessary, so it's always safe to use CPSR.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001510 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovCCOpc), DestReg)
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001511 .addReg(ZeroReg).addImm(1)
Chad Rosier377f1f22012-03-07 20:59:26 +00001512 .addImm(ARMPred).addReg(ARM::CPSR);
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001513
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001514 UpdateValueMap(I, DestReg);
Eric Christopherc3e9c402010-09-08 23:13:45 +00001515 return true;
1516}
1517
Eric Christopher29ab6d12010-09-27 06:02:23 +00001518bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopherf14b9bf2010-09-09 00:26:48 +00001519 // Make sure we have VFP and that we're extending float to double.
1520 if (!Subtarget->hasVFP2()) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001521
Eric Christopherf14b9bf2010-09-09 00:26:48 +00001522 Value *V = I->getOperand(0);
1523 if (!I->getType()->isDoubleTy() ||
1524 !V->getType()->isFloatTy()) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001525
Eric Christopherf14b9bf2010-09-09 00:26:48 +00001526 unsigned Op = getRegForValue(V);
1527 if (Op == 0) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001528
Craig Topperc7242e02012-04-20 07:30:17 +00001529 unsigned Result = createResultReg(&ARM::DPRRegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001530 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher82b05d72010-09-09 20:36:19 +00001531 TII.get(ARM::VCVTDS), Result)
Eric Christopher5903c0b2010-09-09 20:26:31 +00001532 .addReg(Op));
1533 UpdateValueMap(I, Result);
1534 return true;
1535}
1536
Eric Christopher29ab6d12010-09-27 06:02:23 +00001537bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopher5903c0b2010-09-09 20:26:31 +00001538 // Make sure we have VFP and that we're truncating double to float.
1539 if (!Subtarget->hasVFP2()) return false;
1540
1541 Value *V = I->getOperand(0);
Eric Christopher8cfc4592010-10-05 23:13:24 +00001542 if (!(I->getType()->isFloatTy() &&
1543 V->getType()->isDoubleTy())) return false;
Eric Christopher5903c0b2010-09-09 20:26:31 +00001544
1545 unsigned Op = getRegForValue(V);
1546 if (Op == 0) return false;
1547
Craig Topperc7242e02012-04-20 07:30:17 +00001548 unsigned Result = createResultReg(&ARM::SPRRegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001549 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher82b05d72010-09-09 20:36:19 +00001550 TII.get(ARM::VCVTSD), Result)
Eric Christopherf14b9bf2010-09-09 00:26:48 +00001551 .addReg(Op));
1552 UpdateValueMap(I, Result);
1553 return true;
1554}
1555
Chad Rosiere023d5d2012-02-03 21:14:11 +00001556bool ARMFastISel::SelectIToFP(const Instruction *I, bool isSigned) {
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001557 // Make sure we have VFP.
1558 if (!Subtarget->hasVFP2()) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001559
Duncan Sandsf5dda012010-11-03 11:35:31 +00001560 MVT DstVT;
Chris Lattner229907c2011-07-18 04:54:35 +00001561 Type *Ty = I->getType();
Eric Christopher4bd70472010-09-09 21:44:45 +00001562 if (!isTypeLegal(Ty, DstVT))
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001563 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001564
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001565 Value *Src = I->getOperand(0);
Patrik Hagglundc494d242012-12-17 14:30:06 +00001566 EVT SrcEVT = TLI.getValueType(Src->getType(), true);
1567 if (!SrcEVT.isSimple())
1568 return false;
1569 MVT SrcVT = SrcEVT.getSimpleVT();
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001570 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
Eli Friedman5bbb7562011-05-25 19:09:45 +00001571 return false;
1572
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001573 unsigned SrcReg = getRegForValue(Src);
1574 if (SrcReg == 0) return false;
1575
1576 // Handle sign-extension.
1577 if (SrcVT == MVT::i16 || SrcVT == MVT::i8) {
Chad Rosier62a144f2012-12-17 19:59:43 +00001578 SrcReg = ARMEmitIntExt(SrcVT, SrcReg, MVT::i32,
Chad Rosiere023d5d2012-02-03 21:14:11 +00001579 /*isZExt*/!isSigned);
Chad Rosiera0d3c752012-02-16 22:45:33 +00001580 if (SrcReg == 0) return false;
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001581 }
Eric Christopher7ac602b2010-10-11 08:38:55 +00001582
Eric Christopher860fc932010-09-10 00:34:35 +00001583 // The conversion routine works on fp-reg to fp-reg and the operand above
1584 // was an integer, move it to the fp registers if possible.
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001585 unsigned FP = ARMMoveToFPReg(MVT::f32, SrcReg);
Eric Christopher4bd70472010-09-09 21:44:45 +00001586 if (FP == 0) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001587
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001588 unsigned Opc;
Chad Rosiere023d5d2012-02-03 21:14:11 +00001589 if (Ty->isFloatTy()) Opc = isSigned ? ARM::VSITOS : ARM::VUITOS;
1590 else if (Ty->isDoubleTy()) Opc = isSigned ? ARM::VSITOD : ARM::VUITOD;
Chad Rosier17847ae2011-08-31 23:49:05 +00001591 else return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001592
Eric Christopher4bd70472010-09-09 21:44:45 +00001593 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001594 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1595 TII.get(Opc), ResultReg).addReg(FP));
Eric Christopher5903c0b2010-09-09 20:26:31 +00001596 UpdateValueMap(I, ResultReg);
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001597 return true;
1598}
1599
Chad Rosiere023d5d2012-02-03 21:14:11 +00001600bool ARMFastISel::SelectFPToI(const Instruction *I, bool isSigned) {
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001601 // Make sure we have VFP.
1602 if (!Subtarget->hasVFP2()) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001603
Duncan Sandsf5dda012010-11-03 11:35:31 +00001604 MVT DstVT;
Chris Lattner229907c2011-07-18 04:54:35 +00001605 Type *RetTy = I->getType();
Eric Christopher712bd0a2010-09-10 00:35:09 +00001606 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001607 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001608
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001609 unsigned Op = getRegForValue(I->getOperand(0));
1610 if (Op == 0) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001611
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001612 unsigned Opc;
Chris Lattner229907c2011-07-18 04:54:35 +00001613 Type *OpTy = I->getOperand(0)->getType();
Chad Rosiere023d5d2012-02-03 21:14:11 +00001614 if (OpTy->isFloatTy()) Opc = isSigned ? ARM::VTOSIZS : ARM::VTOUIZS;
1615 else if (OpTy->isDoubleTy()) Opc = isSigned ? ARM::VTOSIZD : ARM::VTOUIZD;
Chad Rosier17847ae2011-08-31 23:49:05 +00001616 else return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001617
Chad Rosier41f0e782012-02-03 20:27:51 +00001618 // f64->s32/u32 or f32->s32/u32 both need an intermediate f32 reg.
Eric Christopher8cfc4592010-10-05 23:13:24 +00001619 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001620 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1621 TII.get(Opc), ResultReg).addReg(Op));
Eric Christopher7ac602b2010-10-11 08:38:55 +00001622
Eric Christopher4bd70472010-09-09 21:44:45 +00001623 // This result needs to be in an integer register, but the conversion only
1624 // takes place in fp-regs.
Eric Christopher860fc932010-09-10 00:34:35 +00001625 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher4bd70472010-09-09 21:44:45 +00001626 if (IntReg == 0) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001627
Eric Christopher4bd70472010-09-09 21:44:45 +00001628 UpdateValueMap(I, IntReg);
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001629 return true;
1630}
1631
Eric Christopher511aa312010-10-11 08:27:59 +00001632bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00001633 MVT VT;
1634 if (!isTypeLegal(I->getType(), VT))
Eric Christopher511aa312010-10-11 08:27:59 +00001635 return false;
1636
1637 // Things need to be register sized for register moves.
Duncan Sandsf5dda012010-11-03 11:35:31 +00001638 if (VT != MVT::i32) return false;
Eric Christopher511aa312010-10-11 08:27:59 +00001639
1640 unsigned CondReg = getRegForValue(I->getOperand(0));
1641 if (CondReg == 0) return false;
1642 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1643 if (Op1Reg == 0) return false;
Eric Christopher511aa312010-10-11 08:27:59 +00001644
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001645 // Check to see if we can use an immediate in the conditional move.
1646 int Imm = 0;
1647 bool UseImm = false;
1648 bool isNegativeImm = false;
1649 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(I->getOperand(2))) {
1650 assert (VT == MVT::i32 && "Expecting an i32.");
1651 Imm = (int)ConstInt->getValue().getZExtValue();
1652 if (Imm < 0) {
1653 isNegativeImm = true;
1654 Imm = ~Imm;
1655 }
1656 UseImm = isThumb2 ? (ARM_AM::getT2SOImmVal(Imm) != -1) :
1657 (ARM_AM::getSOImmVal(Imm) != -1);
1658 }
1659
Duncan Sands12330652011-11-28 10:31:27 +00001660 unsigned Op2Reg = 0;
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001661 if (!UseImm) {
1662 Op2Reg = getRegForValue(I->getOperand(2));
1663 if (Op2Reg == 0) return false;
1664 }
1665
1666 unsigned CmpOpc = isThumb2 ? ARM::t2CMPri : ARM::CMPri;
Jim Grosbachd7866792013-08-16 23:37:40 +00001667 CondReg = constrainOperandRegClass(TII.get(CmpOpc), CondReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001668 AddOptionalDefs(
1669 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CmpOpc))
1670 .addReg(CondReg)
1671 .addImm(0));
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001672
1673 unsigned MovCCOpc;
Chad Rosier2ec7db02012-11-27 21:46:46 +00001674 const TargetRegisterClass *RC;
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001675 if (!UseImm) {
Chad Rosier2ec7db02012-11-27 21:46:46 +00001676 RC = isThumb2 ? &ARM::tGPRRegClass : &ARM::GPRRegClass;
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001677 MovCCOpc = isThumb2 ? ARM::t2MOVCCr : ARM::MOVCCr;
1678 } else {
Chad Rosier2ec7db02012-11-27 21:46:46 +00001679 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRRegClass;
1680 if (!isNegativeImm)
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001681 MovCCOpc = isThumb2 ? ARM::t2MOVCCi : ARM::MOVCCi;
Chad Rosier2ec7db02012-11-27 21:46:46 +00001682 else
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001683 MovCCOpc = isThumb2 ? ARM::t2MVNCCi : ARM::MVNCCi;
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001684 }
Eric Christopher511aa312010-10-11 08:27:59 +00001685 unsigned ResultReg = createResultReg(RC);
Jim Grosbachd7866792013-08-16 23:37:40 +00001686 if (!UseImm) {
Jim Grosbach71a78f92013-08-20 19:12:42 +00001687 Op2Reg = constrainOperandRegClass(TII.get(MovCCOpc), Op2Reg, 1);
Jim Grosbachd7866792013-08-16 23:37:40 +00001688 Op1Reg = constrainOperandRegClass(TII.get(MovCCOpc), Op1Reg, 2);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001689 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovCCOpc),
1690 ResultReg)
1691 .addReg(Op2Reg)
1692 .addReg(Op1Reg)
1693 .addImm(ARMCC::NE)
1694 .addReg(ARM::CPSR);
Jim Grosbachd7866792013-08-16 23:37:40 +00001695 } else {
1696 Op1Reg = constrainOperandRegClass(TII.get(MovCCOpc), Op1Reg, 1);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001697 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovCCOpc),
1698 ResultReg)
1699 .addReg(Op1Reg)
1700 .addImm(Imm)
1701 .addImm(ARMCC::EQ)
1702 .addReg(ARM::CPSR);
Jim Grosbachd7866792013-08-16 23:37:40 +00001703 }
Eric Christopher511aa312010-10-11 08:27:59 +00001704 UpdateValueMap(I, ResultReg);
1705 return true;
1706}
1707
Chad Rosieraaa55a82012-02-03 21:07:27 +00001708bool ARMFastISel::SelectDiv(const Instruction *I, bool isSigned) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00001709 MVT VT;
Chris Lattner229907c2011-07-18 04:54:35 +00001710 Type *Ty = I->getType();
Eric Christopher56094ff2010-09-30 22:34:19 +00001711 if (!isTypeLegal(Ty, VT))
1712 return false;
1713
1714 // If we have integer div support we should have selected this automagically.
1715 // In case we have a real miss go ahead and return false and we'll pick
1716 // it up later.
Eric Christopher7ac602b2010-10-11 08:38:55 +00001717 if (Subtarget->hasDivide()) return false;
1718
Eric Christopher56094ff2010-09-30 22:34:19 +00001719 // Otherwise emit a libcall.
1720 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christophere11017c2010-10-11 08:31:54 +00001721 if (VT == MVT::i8)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001722 LC = isSigned ? RTLIB::SDIV_I8 : RTLIB::UDIV_I8;
Eric Christophere11017c2010-10-11 08:31:54 +00001723 else if (VT == MVT::i16)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001724 LC = isSigned ? RTLIB::SDIV_I16 : RTLIB::UDIV_I16;
Eric Christopher56094ff2010-09-30 22:34:19 +00001725 else if (VT == MVT::i32)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001726 LC = isSigned ? RTLIB::SDIV_I32 : RTLIB::UDIV_I32;
Eric Christopher56094ff2010-09-30 22:34:19 +00001727 else if (VT == MVT::i64)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001728 LC = isSigned ? RTLIB::SDIV_I64 : RTLIB::UDIV_I64;
Eric Christopher56094ff2010-09-30 22:34:19 +00001729 else if (VT == MVT::i128)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001730 LC = isSigned ? RTLIB::SDIV_I128 : RTLIB::UDIV_I128;
Eric Christopher56094ff2010-09-30 22:34:19 +00001731 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopher7ac602b2010-10-11 08:38:55 +00001732
Eric Christopher56094ff2010-09-30 22:34:19 +00001733 return ARMEmitLibcall(I, LC);
1734}
1735
Chad Rosierb84a4b42012-02-03 21:23:45 +00001736bool ARMFastISel::SelectRem(const Instruction *I, bool isSigned) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00001737 MVT VT;
Chris Lattner229907c2011-07-18 04:54:35 +00001738 Type *Ty = I->getType();
Eric Christophereae1b382010-10-11 08:37:26 +00001739 if (!isTypeLegal(Ty, VT))
1740 return false;
1741
1742 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1743 if (VT == MVT::i8)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001744 LC = isSigned ? RTLIB::SREM_I8 : RTLIB::UREM_I8;
Eric Christophereae1b382010-10-11 08:37:26 +00001745 else if (VT == MVT::i16)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001746 LC = isSigned ? RTLIB::SREM_I16 : RTLIB::UREM_I16;
Eric Christophereae1b382010-10-11 08:37:26 +00001747 else if (VT == MVT::i32)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001748 LC = isSigned ? RTLIB::SREM_I32 : RTLIB::UREM_I32;
Eric Christophereae1b382010-10-11 08:37:26 +00001749 else if (VT == MVT::i64)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001750 LC = isSigned ? RTLIB::SREM_I64 : RTLIB::UREM_I64;
Eric Christophereae1b382010-10-11 08:37:26 +00001751 else if (VT == MVT::i128)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001752 LC = isSigned ? RTLIB::SREM_I128 : RTLIB::UREM_I128;
Eric Christophere1bcb432010-10-11 08:40:05 +00001753 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christophere4b3d6b2010-10-15 18:02:07 +00001754
Eric Christophereae1b382010-10-11 08:37:26 +00001755 return ARMEmitLibcall(I, LC);
1756}
1757
Chad Rosier685b20c2012-02-06 23:50:07 +00001758bool ARMFastISel::SelectBinaryIntOp(const Instruction *I, unsigned ISDOpcode) {
Chad Rosier685b20c2012-02-06 23:50:07 +00001759 EVT DestVT = TLI.getValueType(I->getType(), true);
1760
1761 // We can get here in the case when we have a binary operation on a non-legal
1762 // type and the target independent selector doesn't know how to handle it.
1763 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
1764 return false;
Jush Luac96b762012-06-14 06:08:19 +00001765
Chad Rosierbd471252012-02-08 02:29:21 +00001766 unsigned Opc;
1767 switch (ISDOpcode) {
1768 default: return false;
1769 case ISD::ADD:
1770 Opc = isThumb2 ? ARM::t2ADDrr : ARM::ADDrr;
1771 break;
1772 case ISD::OR:
1773 Opc = isThumb2 ? ARM::t2ORRrr : ARM::ORRrr;
1774 break;
Chad Rosier0ee8c512012-02-08 02:45:44 +00001775 case ISD::SUB:
1776 Opc = isThumb2 ? ARM::t2SUBrr : ARM::SUBrr;
1777 break;
Chad Rosierbd471252012-02-08 02:29:21 +00001778 }
1779
Chad Rosier685b20c2012-02-06 23:50:07 +00001780 unsigned SrcReg1 = getRegForValue(I->getOperand(0));
1781 if (SrcReg1 == 0) return false;
1782
1783 // TODO: Often the 2nd operand is an immediate, which can be encoded directly
1784 // in the instruction, rather then materializing the value in a register.
1785 unsigned SrcReg2 = getRegForValue(I->getOperand(1));
1786 if (SrcReg2 == 0) return false;
1787
JF Bastien13969d02013-05-29 15:45:47 +00001788 unsigned ResultReg = createResultReg(&ARM::GPRnopcRegClass);
Joey Goulyc7cda1c2013-08-23 15:20:56 +00001789 SrcReg1 = constrainOperandRegClass(TII.get(Opc), SrcReg1, 1);
1790 SrcReg2 = constrainOperandRegClass(TII.get(Opc), SrcReg2, 2);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001791 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier685b20c2012-02-06 23:50:07 +00001792 TII.get(Opc), ResultReg)
1793 .addReg(SrcReg1).addReg(SrcReg2));
1794 UpdateValueMap(I, ResultReg);
1795 return true;
1796}
1797
1798bool ARMFastISel::SelectBinaryFPOp(const Instruction *I, unsigned ISDOpcode) {
Chad Rosier62a144f2012-12-17 19:59:43 +00001799 EVT FPVT = TLI.getValueType(I->getType(), true);
1800 if (!FPVT.isSimple()) return false;
1801 MVT VT = FPVT.getSimpleVT();
Eric Christopher2ff757d2010-09-09 01:06:51 +00001802
Eric Christopher24dc27f2010-09-09 00:53:57 +00001803 // We can get here in the case when we want to use NEON for our fp
1804 // operations, but can't figure out how to. Just use the vfp instructions
1805 // if we have them.
1806 // FIXME: It'd be nice to use NEON instructions.
Chris Lattner229907c2011-07-18 04:54:35 +00001807 Type *Ty = I->getType();
Eric Christopherbd3d1212010-09-09 01:02:03 +00001808 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1809 if (isFloat && !Subtarget->hasVFP2())
1810 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001811
Eric Christopher24dc27f2010-09-09 00:53:57 +00001812 unsigned Opc;
Duncan Sands14627772010-11-03 12:17:33 +00001813 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopher24dc27f2010-09-09 00:53:57 +00001814 switch (ISDOpcode) {
1815 default: return false;
1816 case ISD::FADD:
Eric Christopherbd3d1212010-09-09 01:02:03 +00001817 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopher24dc27f2010-09-09 00:53:57 +00001818 break;
1819 case ISD::FSUB:
Eric Christopherbd3d1212010-09-09 01:02:03 +00001820 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopher24dc27f2010-09-09 00:53:57 +00001821 break;
1822 case ISD::FMUL:
Eric Christopherbd3d1212010-09-09 01:02:03 +00001823 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopher24dc27f2010-09-09 00:53:57 +00001824 break;
1825 }
Chad Rosier80979b62011-11-16 18:39:44 +00001826 unsigned Op1 = getRegForValue(I->getOperand(0));
1827 if (Op1 == 0) return false;
1828
1829 unsigned Op2 = getRegForValue(I->getOperand(1));
1830 if (Op2 == 0) return false;
1831
Chad Rosier62a144f2012-12-17 19:59:43 +00001832 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT.SimpleTy));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001833 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher24dc27f2010-09-09 00:53:57 +00001834 TII.get(Opc), ResultReg)
1835 .addReg(Op1).addReg(Op2));
Eric Christopher5903c0b2010-09-09 20:26:31 +00001836 UpdateValueMap(I, ResultReg);
Eric Christopher24dc27f2010-09-09 00:53:57 +00001837 return true;
1838}
1839
Eric Christopher72497e52010-09-10 23:18:12 +00001840// Call Handling Code
1841
Jush Lue67e07b2012-07-19 09:49:00 +00001842// This is largely taken directly from CCAssignFnForNode
Eric Christopher72497e52010-09-10 23:18:12 +00001843// TODO: We may not support all of this.
Jush Lue67e07b2012-07-19 09:49:00 +00001844CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC,
1845 bool Return,
1846 bool isVarArg) {
Eric Christopher72497e52010-09-10 23:18:12 +00001847 switch (CC) {
1848 default:
1849 llvm_unreachable("Unsupported calling convention");
Eric Christopher72497e52010-09-10 23:18:12 +00001850 case CallingConv::Fast:
Jush Lu26088cb2012-08-16 05:15:53 +00001851 if (Subtarget->hasVFP2() && !isVarArg) {
1852 if (!Subtarget->isAAPCS_ABI())
1853 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
1854 // For AAPCS ABI targets, just use VFP variant of the calling convention.
1855 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1856 }
Evan Cheng21abfc92010-10-22 18:57:05 +00001857 // Fallthrough
1858 case CallingConv::C:
Eric Christopher72497e52010-09-10 23:18:12 +00001859 // Use target triple & subtarget features to do actual dispatch.
1860 if (Subtarget->isAAPCS_ABI()) {
1861 if (Subtarget->hasVFP2() &&
Jush Lue67e07b2012-07-19 09:49:00 +00001862 TM.Options.FloatABIType == FloatABI::Hard && !isVarArg)
Eric Christopher72497e52010-09-10 23:18:12 +00001863 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1864 else
1865 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1866 } else
1867 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1868 case CallingConv::ARM_AAPCS_VFP:
Jush Lue67e07b2012-07-19 09:49:00 +00001869 if (!isVarArg)
1870 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1871 // Fall through to soft float variant, variadic functions don't
1872 // use hard floating point ABI.
Eric Christopher72497e52010-09-10 23:18:12 +00001873 case CallingConv::ARM_AAPCS:
1874 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1875 case CallingConv::ARM_APCS:
1876 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
Eric Christopherb3322362012-08-03 00:05:53 +00001877 case CallingConv::GHC:
1878 if (Return)
1879 llvm_unreachable("Can't return in GHC call convention");
1880 else
1881 return CC_ARM_APCS_GHC;
Eric Christopher72497e52010-09-10 23:18:12 +00001882 }
1883}
1884
Eric Christopher79398062010-09-29 23:11:09 +00001885bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1886 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sandsf5dda012010-11-03 11:35:31 +00001887 SmallVectorImpl<MVT> &ArgVTs,
Eric Christopher79398062010-09-29 23:11:09 +00001888 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1889 SmallVectorImpl<unsigned> &RegArgs,
1890 CallingConv::ID CC,
Jush Lue67e07b2012-07-19 09:49:00 +00001891 unsigned &NumBytes,
1892 bool isVarArg) {
Eric Christopher79398062010-09-29 23:11:09 +00001893 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001894 CCState CCInfo(CC, isVarArg, *FuncInfo.MF, ArgLocs, *Context);
Jush Lue67e07b2012-07-19 09:49:00 +00001895 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags,
1896 CCAssignFnForCall(CC, false, isVarArg));
Eric Christopher79398062010-09-29 23:11:09 +00001897
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001898 // Check that we can handle all of the arguments. If we can't, then bail out
1899 // now before we add code to the MBB.
1900 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1901 CCValAssign &VA = ArgLocs[i];
1902 MVT ArgVT = ArgVTs[VA.getValNo()];
1903
1904 // We don't handle NEON/vector parameters yet.
1905 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
1906 return false;
1907
1908 // Now copy/store arg to correct locations.
1909 if (VA.isRegLoc() && !VA.needsCustom()) {
1910 continue;
1911 } else if (VA.needsCustom()) {
1912 // TODO: We need custom lowering for vector (v2f64) args.
1913 if (VA.getLocVT() != MVT::f64 ||
1914 // TODO: Only handle register args for now.
1915 !VA.isRegLoc() || !ArgLocs[++i].isRegLoc())
1916 return false;
1917 } else {
Craig Topper56710102013-08-15 02:33:50 +00001918 switch (ArgVT.SimpleTy) {
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001919 default:
1920 return false;
1921 case MVT::i1:
1922 case MVT::i8:
1923 case MVT::i16:
1924 case MVT::i32:
1925 break;
1926 case MVT::f32:
1927 if (!Subtarget->hasVFP2())
1928 return false;
1929 break;
1930 case MVT::f64:
1931 if (!Subtarget->hasVFP2())
1932 return false;
1933 break;
1934 }
1935 }
1936 }
1937
1938 // At the point, we are able to handle the call's arguments in fast isel.
1939
Eric Christopher79398062010-09-29 23:11:09 +00001940 // Get a count of how many bytes are to be pushed on the stack.
1941 NumBytes = CCInfo.getNextStackOffset();
1942
1943 // Issue CALLSEQ_START
Evan Cheng194c3dc2011-06-28 21:14:33 +00001944 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
Rafael Espindolaea09c592014-02-18 22:05:46 +00001945 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher71ef1af2010-10-11 21:20:02 +00001946 TII.get(AdjStackDown))
1947 .addImm(NumBytes));
Eric Christopher79398062010-09-29 23:11:09 +00001948
1949 // Process the args.
1950 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1951 CCValAssign &VA = ArgLocs[i];
Juergen Ributzka4c018a12014-08-01 18:04:14 +00001952 const Value *ArgVal = Args[VA.getValNo()];
Eric Christopher79398062010-09-29 23:11:09 +00001953 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sandsf5dda012010-11-03 11:35:31 +00001954 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christopher79398062010-09-29 23:11:09 +00001955
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001956 assert((!ArgVT.isVector() && ArgVT.getSizeInBits() <= 64) &&
1957 "We don't handle NEON/vector parameters yet.");
Eric Christopherc9616f22010-10-23 09:37:17 +00001958
Eric Christopher78f8d4e2010-09-30 20:49:44 +00001959 // Handle arg promotion, etc.
Eric Christopher79398062010-09-29 23:11:09 +00001960 switch (VA.getLocInfo()) {
1961 case CCValAssign::Full: break;
Eric Christopherc103c662010-10-18 02:17:53 +00001962 case CCValAssign::SExt: {
Chad Rosier9fd0e552011-12-02 20:25:18 +00001963 MVT DestVT = VA.getLocVT();
Chad Rosier5b9c3972012-02-14 22:29:48 +00001964 Arg = ARMEmitIntExt(ArgVT, Arg, DestVT, /*isZExt*/false);
1965 assert (Arg != 0 && "Failed to emit a sext");
Chad Rosier9fd0e552011-12-02 20:25:18 +00001966 ArgVT = DestVT;
Eric Christopherc103c662010-10-18 02:17:53 +00001967 break;
1968 }
Chad Rosierd0191a52011-11-05 20:16:15 +00001969 case CCValAssign::AExt:
1970 // Intentional fall-through. Handle AExt and ZExt.
Eric Christopherc103c662010-10-18 02:17:53 +00001971 case CCValAssign::ZExt: {
Chad Rosier9fd0e552011-12-02 20:25:18 +00001972 MVT DestVT = VA.getLocVT();
Chad Rosier5b9c3972012-02-14 22:29:48 +00001973 Arg = ARMEmitIntExt(ArgVT, Arg, DestVT, /*isZExt*/true);
JF Bastien06ce03d2013-06-07 20:10:37 +00001974 assert (Arg != 0 && "Failed to emit a zext");
Chad Rosier9fd0e552011-12-02 20:25:18 +00001975 ArgVT = DestVT;
Eric Christopherc103c662010-10-18 02:17:53 +00001976 break;
1977 }
1978 case CCValAssign::BCvt: {
Wesley Peck527da1b2010-11-23 03:31:01 +00001979 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sandsf5dda012010-11-03 11:35:31 +00001980 /*TODO: Kill=*/false);
Eric Christopherc103c662010-10-18 02:17:53 +00001981 assert(BC != 0 && "Failed to emit a bitcast!");
1982 Arg = BC;
1983 ArgVT = VA.getLocVT();
1984 break;
1985 }
1986 default: llvm_unreachable("Unknown arg promotion!");
Eric Christopher79398062010-09-29 23:11:09 +00001987 }
1988
1989 // Now copy/store arg to correct locations.
Eric Christopher71ef1af2010-10-11 21:20:02 +00001990 if (VA.isRegLoc() && !VA.needsCustom()) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001991 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1992 TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(Arg);
Eric Christopher79398062010-09-29 23:11:09 +00001993 RegArgs.push_back(VA.getLocReg());
Eric Christopher4ac3ed02010-10-21 00:01:47 +00001994 } else if (VA.needsCustom()) {
1995 // TODO: We need custom lowering for vector (v2f64) args.
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001996 assert(VA.getLocVT() == MVT::f64 &&
1997 "Custom lowering for v2f64 args not available");
Jim Grosbach055de2c2010-10-27 21:39:08 +00001998
Eric Christopher4ac3ed02010-10-21 00:01:47 +00001999 CCValAssign &NextVA = ArgLocs[++i];
2000
Bill Wendling23f8c4a2012-03-16 23:11:07 +00002001 assert(VA.isRegLoc() && NextVA.isRegLoc() &&
2002 "We only handle register args!");
Eric Christopher4ac3ed02010-10-21 00:01:47 +00002003
Rafael Espindolaea09c592014-02-18 22:05:46 +00002004 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher4ac3ed02010-10-21 00:01:47 +00002005 TII.get(ARM::VMOVRRD), VA.getLocReg())
2006 .addReg(NextVA.getLocReg(), RegState::Define)
2007 .addReg(Arg));
2008 RegArgs.push_back(VA.getLocReg());
2009 RegArgs.push_back(NextVA.getLocReg());
Eric Christopher79398062010-09-29 23:11:09 +00002010 } else {
Eric Christopherb353e4f2010-10-21 20:09:54 +00002011 assert(VA.isMemLoc());
2012 // Need to store on the stack.
Juergen Ributzka4c018a12014-08-01 18:04:14 +00002013
2014 // Don't emit stores for undef values.
2015 if (isa<UndefValue>(ArgVal))
2016 continue;
2017
Eric Christopherfef5f312010-11-19 22:30:02 +00002018 Address Addr;
2019 Addr.BaseType = Address::RegBase;
2020 Addr.Base.Reg = ARM::SP;
2021 Addr.Offset = VA.getLocMemOffset();
Eric Christopherb353e4f2010-10-21 20:09:54 +00002022
Bill Wendling23f8c4a2012-03-16 23:11:07 +00002023 bool EmitRet = ARMEmitStore(ArgVT, Arg, Addr); (void)EmitRet;
2024 assert(EmitRet && "Could not emit a store for argument!");
Eric Christopher79398062010-09-29 23:11:09 +00002025 }
2026 }
Bill Wendling23f8c4a2012-03-16 23:11:07 +00002027
Eric Christopher79398062010-09-29 23:11:09 +00002028 return true;
2029}
2030
Duncan Sandsf5dda012010-11-03 11:35:31 +00002031bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christopher79398062010-09-29 23:11:09 +00002032 const Instruction *I, CallingConv::ID CC,
Jush Lue67e07b2012-07-19 09:49:00 +00002033 unsigned &NumBytes, bool isVarArg) {
Eric Christopher79398062010-09-29 23:11:09 +00002034 // Issue CALLSEQ_END
Evan Cheng194c3dc2011-06-28 21:14:33 +00002035 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
Rafael Espindolaea09c592014-02-18 22:05:46 +00002036 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher71ef1af2010-10-11 21:20:02 +00002037 TII.get(AdjStackUp))
2038 .addImm(NumBytes).addImm(0));
Eric Christopher79398062010-09-29 23:11:09 +00002039
2040 // Now the return value.
Duncan Sandsf5dda012010-11-03 11:35:31 +00002041 if (RetVT != MVT::isVoid) {
Eric Christopher79398062010-09-29 23:11:09 +00002042 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002043 CCState CCInfo(CC, isVarArg, *FuncInfo.MF, RVLocs, *Context);
Jush Lue67e07b2012-07-19 09:49:00 +00002044 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true, isVarArg));
Eric Christopher79398062010-09-29 23:11:09 +00002045
2046 // Copy all of the result registers out of their specified physreg.
Duncan Sandsf5dda012010-11-03 11:35:31 +00002047 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopherc1e209d2010-10-01 00:00:11 +00002048 // For this move we copy into two registers and then move into the
2049 // double fp reg we want.
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00002050 MVT DestVT = RVLocs[0].getValVT();
Craig Topper760b1342012-02-22 05:59:10 +00002051 const TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
Eric Christopherc1e209d2010-10-01 00:00:11 +00002052 unsigned ResultReg = createResultReg(DstRC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002053 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopherc1e209d2010-10-01 00:00:11 +00002054 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopheraf719ef2010-10-20 08:02:24 +00002055 .addReg(RVLocs[0].getLocReg())
2056 .addReg(RVLocs[1].getLocReg()));
Eric Christopher7ac602b2010-10-11 08:38:55 +00002057
Eric Christopheraf719ef2010-10-20 08:02:24 +00002058 UsedRegs.push_back(RVLocs[0].getLocReg());
2059 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach055de2c2010-10-27 21:39:08 +00002060
Eric Christopher7ac602b2010-10-11 08:38:55 +00002061 // Finally update the result.
Eric Christopherc1e209d2010-10-01 00:00:11 +00002062 UpdateValueMap(I, ResultReg);
Chad Rosier90f9afe2012-05-11 18:51:55 +00002063 } else {
2064 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00002065 MVT CopyVT = RVLocs[0].getValVT();
Chad Rosier5de1bea2011-11-08 00:03:32 +00002066
2067 // Special handling for extended integers.
2068 if (RetVT == MVT::i1 || RetVT == MVT::i8 || RetVT == MVT::i16)
2069 CopyVT = MVT::i32;
2070
Craig Topper760b1342012-02-22 05:59:10 +00002071 const TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christopher79398062010-09-29 23:11:09 +00002072
Eric Christopherc1e209d2010-10-01 00:00:11 +00002073 unsigned ResultReg = createResultReg(DstRC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002074 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2075 TII.get(TargetOpcode::COPY),
Eric Christopherc1e209d2010-10-01 00:00:11 +00002076 ResultReg).addReg(RVLocs[0].getLocReg());
2077 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christopher79398062010-09-29 23:11:09 +00002078
Eric Christopher7ac602b2010-10-11 08:38:55 +00002079 // Finally update the result.
Eric Christopherc1e209d2010-10-01 00:00:11 +00002080 UpdateValueMap(I, ResultReg);
2081 }
Eric Christopher79398062010-09-29 23:11:09 +00002082 }
2083
Eric Christopher7ac602b2010-10-11 08:38:55 +00002084 return true;
Eric Christopher79398062010-09-29 23:11:09 +00002085}
2086
Eric Christopher93bbe652010-10-22 01:28:00 +00002087bool ARMFastISel::SelectRet(const Instruction *I) {
2088 const ReturnInst *Ret = cast<ReturnInst>(I);
2089 const Function &F = *I->getParent()->getParent();
Jim Grosbach055de2c2010-10-27 21:39:08 +00002090
Eric Christopher93bbe652010-10-22 01:28:00 +00002091 if (!FuncInfo.CanLowerReturn)
2092 return false;
Jim Grosbach055de2c2010-10-27 21:39:08 +00002093
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002094 // Build a list of return value registers.
2095 SmallVector<unsigned, 4> RetRegs;
2096
Eric Christopher93bbe652010-10-22 01:28:00 +00002097 CallingConv::ID CC = F.getCallingConv();
2098 if (Ret->getNumOperands() > 0) {
2099 SmallVector<ISD::OutputArg, 4> Outs;
Bill Wendling74dba872012-12-30 13:01:51 +00002100 GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI);
Eric Christopher93bbe652010-10-22 01:28:00 +00002101
2102 // Analyze operands of the call, assigning locations to each operand.
2103 SmallVector<CCValAssign, 16> ValLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002104 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, ValLocs, I->getContext());
Jush Lue67e07b2012-07-19 09:49:00 +00002105 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */,
2106 F.isVarArg()));
Eric Christopher93bbe652010-10-22 01:28:00 +00002107
2108 const Value *RV = Ret->getOperand(0);
2109 unsigned Reg = getRegForValue(RV);
2110 if (Reg == 0)
2111 return false;
2112
2113 // Only handle a single return value for now.
2114 if (ValLocs.size() != 1)
2115 return false;
2116
2117 CCValAssign &VA = ValLocs[0];
Jim Grosbach055de2c2010-10-27 21:39:08 +00002118
Eric Christopher93bbe652010-10-22 01:28:00 +00002119 // Don't bother handling odd stuff for now.
2120 if (VA.getLocInfo() != CCValAssign::Full)
2121 return false;
2122 // Only handle register returns for now.
2123 if (!VA.isRegLoc())
2124 return false;
Chad Rosierf3e73ad2011-11-04 00:50:21 +00002125
2126 unsigned SrcReg = Reg + VA.getValNo();
Chad Rosier62a144f2012-12-17 19:59:43 +00002127 EVT RVEVT = TLI.getValueType(RV->getType());
2128 if (!RVEVT.isSimple()) return false;
2129 MVT RVVT = RVEVT.getSimpleVT();
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00002130 MVT DestVT = VA.getValVT();
Chad Rosierf3e73ad2011-11-04 00:50:21 +00002131 // Special handling for extended integers.
2132 if (RVVT != DestVT) {
2133 if (RVVT != MVT::i1 && RVVT != MVT::i8 && RVVT != MVT::i16)
2134 return false;
2135
Chad Rosierf3e73ad2011-11-04 00:50:21 +00002136 assert(DestVT == MVT::i32 && "ARM should always ext to i32");
2137
Chad Rosierfcd29ae2012-02-17 01:21:28 +00002138 // Perform extension if flagged as either zext or sext. Otherwise, do
2139 // nothing.
2140 if (Outs[0].Flags.isZExt() || Outs[0].Flags.isSExt()) {
2141 SrcReg = ARMEmitIntExt(RVVT, SrcReg, DestVT, Outs[0].Flags.isZExt());
2142 if (SrcReg == 0) return false;
2143 }
Chad Rosierf3e73ad2011-11-04 00:50:21 +00002144 }
Jim Grosbach055de2c2010-10-27 21:39:08 +00002145
Eric Christopher93bbe652010-10-22 01:28:00 +00002146 // Make the copy.
Eric Christopher93bbe652010-10-22 01:28:00 +00002147 unsigned DstReg = VA.getLocReg();
2148 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
2149 // Avoid a cross-class copy. This is very unlikely.
2150 if (!SrcRC->contains(DstReg))
2151 return false;
Rafael Espindolaea09c592014-02-18 22:05:46 +00002152 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2153 TII.get(TargetOpcode::COPY), DstReg).addReg(SrcReg);
Eric Christopher93bbe652010-10-22 01:28:00 +00002154
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002155 // Add register to return instruction.
2156 RetRegs.push_back(VA.getLocReg());
Eric Christopher93bbe652010-10-22 01:28:00 +00002157 }
Jim Grosbach055de2c2010-10-27 21:39:08 +00002158
Chad Rosier0439cfc2011-11-08 21:12:00 +00002159 unsigned RetOpc = isThumb2 ? ARM::tBX_RET : ARM::BX_RET;
Rafael Espindolaea09c592014-02-18 22:05:46 +00002160 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002161 TII.get(RetOpc));
2162 AddOptionalDefs(MIB);
2163 for (unsigned i = 0, e = RetRegs.size(); i != e; ++i)
2164 MIB.addReg(RetRegs[i], RegState::Implicit);
Eric Christopher93bbe652010-10-22 01:28:00 +00002165 return true;
2166}
2167
Chad Rosierc6916f82012-06-12 19:25:13 +00002168unsigned ARMFastISel::ARMSelectCallOp(bool UseReg) {
2169 if (UseReg)
2170 return isThumb2 ? ARM::tBLXr : ARM::BLX;
2171 else
2172 return isThumb2 ? ARM::tBL : ARM::BL;
2173}
2174
2175unsigned ARMFastISel::getLibcallReg(const Twine &Name) {
Chandler Carruth1c82d332013-07-27 11:23:08 +00002176 // Manually compute the global's type to avoid building it when unnecessary.
2177 Type *GVTy = Type::getInt32PtrTy(*Context, /*AS=*/0);
2178 EVT LCREVT = TLI.getValueType(GVTy);
2179 if (!LCREVT.isSimple()) return 0;
2180
Bill Wendling76cce192013-12-29 08:00:04 +00002181 GlobalValue *GV = new GlobalVariable(M, Type::getInt32Ty(*Context), false,
Craig Topper062a2ba2014-04-25 05:30:21 +00002182 GlobalValue::ExternalLinkage, nullptr,
2183 Name);
Chandler Carruth1c82d332013-07-27 11:23:08 +00002184 assert(GV->getType() == GVTy && "We miscomputed the type for the global!");
Chad Rosier62a144f2012-12-17 19:59:43 +00002185 return ARMMaterializeGV(GV, LCREVT.getSimpleVT());
Eric Christopher919772f2011-02-22 01:37:10 +00002186}
2187
Eric Christopher8b912662010-09-14 23:03:37 +00002188// A quick function that will emit a call for a named libcall in F with the
2189// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopher7ac602b2010-10-11 08:38:55 +00002190// can emit a call for any libcall we can produce. This is an abridged version
2191// of the full call infrastructure since we won't need to worry about things
Eric Christopher8b912662010-09-14 23:03:37 +00002192// like computed function pointers or strange arguments at call sites.
2193// TODO: Try to unify this and the normal call bits for ARM, then try to unify
2194// with X86.
Eric Christopher7990df12010-09-28 01:21:42 +00002195bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
2196 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002197
Eric Christopher8b912662010-09-14 23:03:37 +00002198 // Handle *simple* calls for now.
Chris Lattner229907c2011-07-18 04:54:35 +00002199 Type *RetTy = I->getType();
Duncan Sandsf5dda012010-11-03 11:35:31 +00002200 MVT RetVT;
Eric Christopher8b912662010-09-14 23:03:37 +00002201 if (RetTy->isVoidTy())
2202 RetVT = MVT::isVoid;
2203 else if (!isTypeLegal(RetTy, RetVT))
2204 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002205
Chad Rosier90f9afe2012-05-11 18:51:55 +00002206 // Can't handle non-double multi-reg retvals.
Jush Luac96b762012-06-14 06:08:19 +00002207 if (RetVT != MVT::isVoid && RetVT != MVT::i32) {
Chad Rosier90f9afe2012-05-11 18:51:55 +00002208 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002209 CCState CCInfo(CC, false, *FuncInfo.MF, RVLocs, *Context);
Jush Lue67e07b2012-07-19 09:49:00 +00002210 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true, false));
Chad Rosier90f9afe2012-05-11 18:51:55 +00002211 if (RVLocs.size() >= 2 && RetVT != MVT::f64)
2212 return false;
2213 }
2214
Eric Christopher79398062010-09-29 23:11:09 +00002215 // Set up the argument vectors.
Eric Christopher8b912662010-09-14 23:03:37 +00002216 SmallVector<Value*, 8> Args;
2217 SmallVector<unsigned, 8> ArgRegs;
Duncan Sandsf5dda012010-11-03 11:35:31 +00002218 SmallVector<MVT, 8> ArgVTs;
Eric Christopher8b912662010-09-14 23:03:37 +00002219 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
2220 Args.reserve(I->getNumOperands());
2221 ArgRegs.reserve(I->getNumOperands());
2222 ArgVTs.reserve(I->getNumOperands());
2223 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7990df12010-09-28 01:21:42 +00002224 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopher8b912662010-09-14 23:03:37 +00002225 Value *Op = I->getOperand(i);
2226 unsigned Arg = getRegForValue(Op);
2227 if (Arg == 0) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002228
Chris Lattner229907c2011-07-18 04:54:35 +00002229 Type *ArgTy = Op->getType();
Duncan Sandsf5dda012010-11-03 11:35:31 +00002230 MVT ArgVT;
Eric Christopher8b912662010-09-14 23:03:37 +00002231 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002232
Eric Christopher8b912662010-09-14 23:03:37 +00002233 ISD::ArgFlagsTy Flags;
Rafael Espindolaea09c592014-02-18 22:05:46 +00002234 unsigned OriginalAlignment = DL.getABITypeAlignment(ArgTy);
Eric Christopher8b912662010-09-14 23:03:37 +00002235 Flags.setOrigAlign(OriginalAlignment);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002236
Eric Christopher8b912662010-09-14 23:03:37 +00002237 Args.push_back(Op);
2238 ArgRegs.push_back(Arg);
2239 ArgVTs.push_back(ArgVT);
2240 ArgFlags.push_back(Flags);
2241 }
Eric Christopher7ac602b2010-10-11 08:38:55 +00002242
Eric Christopher79398062010-09-29 23:11:09 +00002243 // Handle the arguments now that we've gotten them.
Eric Christopher8b912662010-09-14 23:03:37 +00002244 SmallVector<unsigned, 4> RegArgs;
Eric Christopher79398062010-09-29 23:11:09 +00002245 unsigned NumBytes;
Jush Lue67e07b2012-07-19 09:49:00 +00002246 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags,
2247 RegArgs, CC, NumBytes, false))
Eric Christopher79398062010-09-29 23:11:09 +00002248 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002249
Chad Rosierc6916f82012-06-12 19:25:13 +00002250 unsigned CalleeReg = 0;
2251 if (EnableARMLongCalls) {
2252 CalleeReg = getLibcallReg(TLI.getLibcallName(Call));
2253 if (CalleeReg == 0) return false;
2254 }
Eric Christopher7ac602b2010-10-11 08:38:55 +00002255
Chad Rosierc6916f82012-06-12 19:25:13 +00002256 // Issue the call.
2257 unsigned CallOpc = ARMSelectCallOp(EnableARMLongCalls);
2258 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +00002259 DbgLoc, TII.get(CallOpc));
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002260 // BL / BLX don't take a predicate, but tBL / tBLX do.
2261 if (isThumb2)
Chad Rosierc6916f82012-06-12 19:25:13 +00002262 AddDefaultPred(MIB);
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002263 if (EnableARMLongCalls)
2264 MIB.addReg(CalleeReg);
2265 else
2266 MIB.addExternalSymbol(TLI.getLibcallName(Call));
Chad Rosierc6916f82012-06-12 19:25:13 +00002267
Eric Christopher8b912662010-09-14 23:03:37 +00002268 // Add implicit physical register uses to the call.
2269 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002270 MIB.addReg(RegArgs[i], RegState::Implicit);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002271
Jakob Stoklund Olesenfa7a5372012-02-24 01:19:29 +00002272 // Add a register mask with the call-preserved registers.
2273 // Proper defs for return values will be added by setPhysRegsDeadExcept().
2274 MIB.addRegMask(TRI.getCallPreservedMask(CC));
2275
Eric Christopher79398062010-09-29 23:11:09 +00002276 // Finish off the call including any return values.
Eric Christopher7ac602b2010-10-11 08:38:55 +00002277 SmallVector<unsigned, 4> UsedRegs;
Jush Lue67e07b2012-07-19 09:49:00 +00002278 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes, false)) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002279
Eric Christopher8b912662010-09-14 23:03:37 +00002280 // Set all unused physreg defs as dead.
2281 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002282
Eric Christopher8b912662010-09-14 23:03:37 +00002283 return true;
2284}
2285
Chad Rosiera7ebc562011-11-11 23:31:03 +00002286bool ARMFastISel::SelectCall(const Instruction *I,
Craig Topper062a2ba2014-04-25 05:30:21 +00002287 const char *IntrMemName = nullptr) {
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002288 const CallInst *CI = cast<CallInst>(I);
2289 const Value *Callee = CI->getCalledValue();
2290
Chad Rosiera7ebc562011-11-11 23:31:03 +00002291 // Can't handle inline asm.
2292 if (isa<InlineAsm>(Callee)) return false;
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002293
Chad Rosierdf42cf32012-12-11 00:18:02 +00002294 // Allow SelectionDAG isel to handle tail calls.
2295 if (CI->isTailCall()) return false;
2296
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002297 // Check the calling convention.
2298 ImmutableCallSite CS(CI);
2299 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher167a70022010-10-18 06:49:12 +00002300
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002301 // TODO: Avoid some calling conventions?
Eric Christopher7ac602b2010-10-11 08:38:55 +00002302
Chris Lattner229907c2011-07-18 04:54:35 +00002303 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
2304 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Jush Lue67e07b2012-07-19 09:49:00 +00002305 bool isVarArg = FTy->isVarArg();
Eric Christopher7ac602b2010-10-11 08:38:55 +00002306
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002307 // Handle *simple* calls for now.
Chris Lattner229907c2011-07-18 04:54:35 +00002308 Type *RetTy = I->getType();
Duncan Sandsf5dda012010-11-03 11:35:31 +00002309 MVT RetVT;
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002310 if (RetTy->isVoidTy())
2311 RetVT = MVT::isVoid;
Chad Rosier5de1bea2011-11-08 00:03:32 +00002312 else if (!isTypeLegal(RetTy, RetVT) && RetVT != MVT::i16 &&
2313 RetVT != MVT::i8 && RetVT != MVT::i1)
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002314 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002315
Chad Rosier90f9afe2012-05-11 18:51:55 +00002316 // Can't handle non-double multi-reg retvals.
2317 if (RetVT != MVT::isVoid && RetVT != MVT::i1 && RetVT != MVT::i8 &&
2318 RetVT != MVT::i16 && RetVT != MVT::i32) {
2319 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002320 CCState CCInfo(CC, isVarArg, *FuncInfo.MF, RVLocs, *Context);
Jush Lue67e07b2012-07-19 09:49:00 +00002321 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true, isVarArg));
Chad Rosier90f9afe2012-05-11 18:51:55 +00002322 if (RVLocs.size() >= 2 && RetVT != MVT::f64)
2323 return false;
2324 }
2325
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002326 // Set up the argument vectors.
2327 SmallVector<Value*, 8> Args;
2328 SmallVector<unsigned, 8> ArgRegs;
Duncan Sandsf5dda012010-11-03 11:35:31 +00002329 SmallVector<MVT, 8> ArgVTs;
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002330 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Chad Rosierdccc4792012-02-15 00:23:55 +00002331 unsigned arg_size = CS.arg_size();
2332 Args.reserve(arg_size);
2333 ArgRegs.reserve(arg_size);
2334 ArgVTs.reserve(arg_size);
2335 ArgFlags.reserve(arg_size);
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002336 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
2337 i != e; ++i) {
Chad Rosiera7ebc562011-11-11 23:31:03 +00002338 // If we're lowering a memory intrinsic instead of a regular call, skip the
2339 // last two arguments, which shouldn't be passed to the underlying function.
2340 if (IntrMemName && e-i <= 2)
2341 break;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002342
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002343 ISD::ArgFlagsTy Flags;
2344 unsigned AttrInd = i - CS.arg_begin() + 1;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00002345 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002346 Flags.setSExt();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00002347 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002348 Flags.setZExt();
2349
Chad Rosier8a98ec42011-11-04 00:58:10 +00002350 // FIXME: Only handle *easy* calls for now.
Bill Wendling3d7b0b82012-12-19 07:18:57 +00002351 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
2352 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
2353 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
2354 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002355 return false;
2356
Chris Lattner229907c2011-07-18 04:54:35 +00002357 Type *ArgTy = (*i)->getType();
Duncan Sandsf5dda012010-11-03 11:35:31 +00002358 MVT ArgVT;
Chad Rosierd0191a52011-11-05 20:16:15 +00002359 if (!isTypeLegal(ArgTy, ArgVT) && ArgVT != MVT::i16 && ArgVT != MVT::i8 &&
2360 ArgVT != MVT::i1)
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002361 return false;
Chad Rosieree93ff72011-11-18 01:17:34 +00002362
2363 unsigned Arg = getRegForValue(*i);
2364 if (Arg == 0)
2365 return false;
2366
Rafael Espindolaea09c592014-02-18 22:05:46 +00002367 unsigned OriginalAlignment = DL.getABITypeAlignment(ArgTy);
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002368 Flags.setOrigAlign(OriginalAlignment);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002369
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002370 Args.push_back(*i);
2371 ArgRegs.push_back(Arg);
2372 ArgVTs.push_back(ArgVT);
2373 ArgFlags.push_back(Flags);
2374 }
Eric Christopher7ac602b2010-10-11 08:38:55 +00002375
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002376 // Handle the arguments now that we've gotten them.
2377 SmallVector<unsigned, 4> RegArgs;
2378 unsigned NumBytes;
Jush Lue67e07b2012-07-19 09:49:00 +00002379 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags,
2380 RegArgs, CC, NumBytes, isVarArg))
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002381 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002382
Chad Rosierc6916f82012-06-12 19:25:13 +00002383 bool UseReg = false;
Chad Rosier223faf72012-05-23 18:38:57 +00002384 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Chad Rosierc6916f82012-06-12 19:25:13 +00002385 if (!GV || EnableARMLongCalls) UseReg = true;
Chad Rosier223faf72012-05-23 18:38:57 +00002386
Chad Rosierc6916f82012-06-12 19:25:13 +00002387 unsigned CalleeReg = 0;
2388 if (UseReg) {
2389 if (IntrMemName)
2390 CalleeReg = getLibcallReg(IntrMemName);
2391 else
2392 CalleeReg = getRegForValue(Callee);
2393
Chad Rosier223faf72012-05-23 18:38:57 +00002394 if (CalleeReg == 0) return false;
2395 }
2396
Chad Rosierc6916f82012-06-12 19:25:13 +00002397 // Issue the call.
2398 unsigned CallOpc = ARMSelectCallOp(UseReg);
2399 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +00002400 DbgLoc, TII.get(CallOpc));
Chad Rosierc6916f82012-06-12 19:25:13 +00002401
Logan Chien2361f512013-08-22 12:08:04 +00002402 unsigned char OpFlags = 0;
2403
2404 // Add MO_PLT for global address or external symbol in the PIC relocation
2405 // model.
2406 if (Subtarget->isTargetELF() && TM.getRelocationModel() == Reloc::PIC_)
2407 OpFlags = ARMII::MO_PLT;
2408
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002409 // ARM calls don't take a predicate, but tBL / tBLX do.
2410 if(isThumb2)
Chad Rosierc6916f82012-06-12 19:25:13 +00002411 AddDefaultPred(MIB);
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002412 if (UseReg)
2413 MIB.addReg(CalleeReg);
2414 else if (!IntrMemName)
Logan Chien2361f512013-08-22 12:08:04 +00002415 MIB.addGlobalAddress(GV, 0, OpFlags);
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002416 else
Logan Chien2361f512013-08-22 12:08:04 +00002417 MIB.addExternalSymbol(IntrMemName, OpFlags);
Jush Luac96b762012-06-14 06:08:19 +00002418
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002419 // Add implicit physical register uses to the call.
2420 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002421 MIB.addReg(RegArgs[i], RegState::Implicit);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002422
Jakob Stoklund Olesenfa7a5372012-02-24 01:19:29 +00002423 // Add a register mask with the call-preserved registers.
2424 // Proper defs for return values will be added by setPhysRegsDeadExcept().
2425 MIB.addRegMask(TRI.getCallPreservedMask(CC));
2426
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002427 // Finish off the call including any return values.
Eric Christopher7ac602b2010-10-11 08:38:55 +00002428 SmallVector<unsigned, 4> UsedRegs;
Jush Lue67e07b2012-07-19 09:49:00 +00002429 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes, isVarArg))
2430 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002431
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002432 // Set all unused physreg defs as dead.
2433 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002434
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002435 return true;
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002436}
2437
Chad Rosier057b6d32011-11-14 23:04:09 +00002438bool ARMFastISel::ARMIsMemCpySmall(uint64_t Len) {
Chad Rosierab7223e2011-11-14 22:46:17 +00002439 return Len <= 16;
2440}
2441
Jim Grosbach0c509fa2012-04-06 23:43:50 +00002442bool ARMFastISel::ARMTryEmitSmallMemCpy(Address Dest, Address Src,
Chad Rosier9f5c68a2012-12-06 01:34:31 +00002443 uint64_t Len, unsigned Alignment) {
Chad Rosierab7223e2011-11-14 22:46:17 +00002444 // Make sure we don't bloat code by inlining very large memcpy's.
Chad Rosier057b6d32011-11-14 23:04:09 +00002445 if (!ARMIsMemCpySmall(Len))
Chad Rosierab7223e2011-11-14 22:46:17 +00002446 return false;
2447
Chad Rosierab7223e2011-11-14 22:46:17 +00002448 while (Len) {
2449 MVT VT;
Chad Rosier9f5c68a2012-12-06 01:34:31 +00002450 if (!Alignment || Alignment >= 4) {
2451 if (Len >= 4)
2452 VT = MVT::i32;
2453 else if (Len >= 2)
2454 VT = MVT::i16;
2455 else {
2456 assert (Len == 1 && "Expected a length of 1!");
2457 VT = MVT::i8;
2458 }
2459 } else {
2460 // Bound based on alignment.
2461 if (Len >= 2 && Alignment == 2)
2462 VT = MVT::i16;
2463 else {
Chad Rosier9f5c68a2012-12-06 01:34:31 +00002464 VT = MVT::i8;
2465 }
Chad Rosierab7223e2011-11-14 22:46:17 +00002466 }
2467
2468 bool RV;
2469 unsigned ResultReg;
2470 RV = ARMEmitLoad(VT, ResultReg, Src);
Eric Christopherd284c1d2012-01-11 20:55:27 +00002471 assert (RV == true && "Should be able to handle this load.");
Chad Rosierab7223e2011-11-14 22:46:17 +00002472 RV = ARMEmitStore(VT, ResultReg, Dest);
Eric Christopherd284c1d2012-01-11 20:55:27 +00002473 assert (RV == true && "Should be able to handle this store.");
Duncan Sandsae22c602012-02-05 14:20:11 +00002474 (void)RV;
Chad Rosierab7223e2011-11-14 22:46:17 +00002475
2476 unsigned Size = VT.getSizeInBits()/8;
2477 Len -= Size;
2478 Dest.Offset += Size;
2479 Src.Offset += Size;
2480 }
2481
2482 return true;
2483}
2484
Chad Rosiera7ebc562011-11-11 23:31:03 +00002485bool ARMFastISel::SelectIntrinsicCall(const IntrinsicInst &I) {
2486 // FIXME: Handle more intrinsics.
2487 switch (I.getIntrinsicID()) {
2488 default: return false;
Chad Rosier820d248c2012-05-30 17:23:22 +00002489 case Intrinsic::frameaddress: {
2490 MachineFrameInfo *MFI = FuncInfo.MF->getFrameInfo();
2491 MFI->setFrameAddressIsTaken(true);
2492
2493 unsigned LdrOpc;
2494 const TargetRegisterClass *RC;
2495 if (isThumb2) {
2496 LdrOpc = ARM::t2LDRi12;
2497 RC = (const TargetRegisterClass*)&ARM::tGPRRegClass;
2498 } else {
2499 LdrOpc = ARM::LDRi12;
2500 RC = (const TargetRegisterClass*)&ARM::GPRRegClass;
2501 }
2502
2503 const ARMBaseRegisterInfo *RegInfo =
Eric Christopherd9134482014-08-04 21:25:23 +00002504 static_cast<const ARMBaseRegisterInfo *>(
2505 TM.getSubtargetImpl()->getRegisterInfo());
Chad Rosier820d248c2012-05-30 17:23:22 +00002506 unsigned FramePtr = RegInfo->getFrameRegister(*(FuncInfo.MF));
2507 unsigned SrcReg = FramePtr;
2508
2509 // Recursively load frame address
2510 // ldr r0 [fp]
2511 // ldr r0 [r0]
2512 // ldr r0 [r0]
2513 // ...
2514 unsigned DestReg;
2515 unsigned Depth = cast<ConstantInt>(I.getOperand(0))->getZExtValue();
2516 while (Depth--) {
2517 DestReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002518 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier820d248c2012-05-30 17:23:22 +00002519 TII.get(LdrOpc), DestReg)
2520 .addReg(SrcReg).addImm(0));
2521 SrcReg = DestReg;
2522 }
Chad Rosierf3193242012-06-01 21:12:31 +00002523 UpdateValueMap(&I, SrcReg);
Chad Rosier820d248c2012-05-30 17:23:22 +00002524 return true;
2525 }
Chad Rosiera7ebc562011-11-11 23:31:03 +00002526 case Intrinsic::memcpy:
2527 case Intrinsic::memmove: {
Chad Rosiera7ebc562011-11-11 23:31:03 +00002528 const MemTransferInst &MTI = cast<MemTransferInst>(I);
2529 // Don't handle volatile.
2530 if (MTI.isVolatile())
2531 return false;
Chad Rosierab7223e2011-11-14 22:46:17 +00002532
2533 // Disable inlining for memmove before calls to ComputeAddress. Otherwise,
2534 // we would emit dead code because we don't currently handle memmoves.
2535 bool isMemCpy = (I.getIntrinsicID() == Intrinsic::memcpy);
2536 if (isa<ConstantInt>(MTI.getLength()) && isMemCpy) {
Chad Rosier057b6d32011-11-14 23:04:09 +00002537 // Small memcpy's are common enough that we want to do them without a call
2538 // if possible.
Chad Rosierab7223e2011-11-14 22:46:17 +00002539 uint64_t Len = cast<ConstantInt>(MTI.getLength())->getZExtValue();
Chad Rosier057b6d32011-11-14 23:04:09 +00002540 if (ARMIsMemCpySmall(Len)) {
Chad Rosierab7223e2011-11-14 22:46:17 +00002541 Address Dest, Src;
2542 if (!ARMComputeAddress(MTI.getRawDest(), Dest) ||
2543 !ARMComputeAddress(MTI.getRawSource(), Src))
2544 return false;
Chad Rosier9f5c68a2012-12-06 01:34:31 +00002545 unsigned Alignment = MTI.getAlignment();
2546 if (ARMTryEmitSmallMemCpy(Dest, Src, Len, Alignment))
Chad Rosierab7223e2011-11-14 22:46:17 +00002547 return true;
2548 }
2549 }
Jush Luac96b762012-06-14 06:08:19 +00002550
Chad Rosiera7ebc562011-11-11 23:31:03 +00002551 if (!MTI.getLength()->getType()->isIntegerTy(32))
2552 return false;
Jush Luac96b762012-06-14 06:08:19 +00002553
Chad Rosiera7ebc562011-11-11 23:31:03 +00002554 if (MTI.getSourceAddressSpace() > 255 || MTI.getDestAddressSpace() > 255)
2555 return false;
2556
2557 const char *IntrMemName = isa<MemCpyInst>(I) ? "memcpy" : "memmove";
2558 return SelectCall(&I, IntrMemName);
2559 }
2560 case Intrinsic::memset: {
2561 const MemSetInst &MSI = cast<MemSetInst>(I);
2562 // Don't handle volatile.
2563 if (MSI.isVolatile())
2564 return false;
Jush Luac96b762012-06-14 06:08:19 +00002565
Chad Rosiera7ebc562011-11-11 23:31:03 +00002566 if (!MSI.getLength()->getType()->isIntegerTy(32))
2567 return false;
Jush Luac96b762012-06-14 06:08:19 +00002568
Chad Rosiera7ebc562011-11-11 23:31:03 +00002569 if (MSI.getDestAddressSpace() > 255)
2570 return false;
Jush Luac96b762012-06-14 06:08:19 +00002571
Chad Rosiera7ebc562011-11-11 23:31:03 +00002572 return SelectCall(&I, "memset");
2573 }
Chad Rosieraa9cb9d2012-05-11 21:33:49 +00002574 case Intrinsic::trap: {
Rafael Espindolaea09c592014-02-18 22:05:46 +00002575 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(
Eli Bendersky2e2ce492013-01-30 16:30:19 +00002576 Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP));
Chad Rosieraa9cb9d2012-05-11 21:33:49 +00002577 return true;
2578 }
Chad Rosiera7ebc562011-11-11 23:31:03 +00002579 }
Chad Rosiera7ebc562011-11-11 23:31:03 +00002580}
2581
Chad Rosieree7e4522011-11-02 00:18:48 +00002582bool ARMFastISel::SelectTrunc(const Instruction *I) {
Jush Luac96b762012-06-14 06:08:19 +00002583 // The high bits for a type smaller than the register size are assumed to be
Chad Rosieree7e4522011-11-02 00:18:48 +00002584 // undefined.
2585 Value *Op = I->getOperand(0);
2586
2587 EVT SrcVT, DestVT;
2588 SrcVT = TLI.getValueType(Op->getType(), true);
2589 DestVT = TLI.getValueType(I->getType(), true);
2590
2591 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
2592 return false;
2593 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
2594 return false;
2595
2596 unsigned SrcReg = getRegForValue(Op);
2597 if (!SrcReg) return false;
2598
2599 // Because the high bits are undefined, a truncate doesn't generate
2600 // any code.
2601 UpdateValueMap(I, SrcReg);
2602 return true;
2603}
2604
Chad Rosier62a144f2012-12-17 19:59:43 +00002605unsigned ARMFastISel::ARMEmitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT,
Chad Rosier4489f942011-11-02 17:20:24 +00002606 bool isZExt) {
Eli Friedmanc7035512011-05-25 23:49:02 +00002607 if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8)
Chad Rosier4489f942011-11-02 17:20:24 +00002608 return 0;
JF Bastien06ce03d2013-06-07 20:10:37 +00002609 if (SrcVT != MVT::i16 && SrcVT != MVT::i8 && SrcVT != MVT::i1)
Chad Rosier4489f942011-11-02 17:20:24 +00002610 return 0;
JF Bastien06ce03d2013-06-07 20:10:37 +00002611
2612 // Table of which combinations can be emitted as a single instruction,
2613 // and which will require two.
2614 static const uint8_t isSingleInstrTbl[3][2][2][2] = {
2615 // ARM Thumb
2616 // !hasV6Ops hasV6Ops !hasV6Ops hasV6Ops
2617 // ext: s z s z s z s z
2618 /* 1 */ { { { 0, 1 }, { 0, 1 } }, { { 0, 0 }, { 0, 1 } } },
2619 /* 8 */ { { { 0, 1 }, { 1, 1 } }, { { 0, 0 }, { 1, 1 } } },
2620 /* 16 */ { { { 0, 0 }, { 1, 1 } }, { { 0, 0 }, { 1, 1 } } }
2621 };
2622
2623 // Target registers for:
2624 // - For ARM can never be PC.
2625 // - For 16-bit Thumb are restricted to lower 8 registers.
2626 // - For 32-bit Thumb are restricted to non-SP and non-PC.
2627 static const TargetRegisterClass *RCTbl[2][2] = {
2628 // Instructions: Two Single
2629 /* ARM */ { &ARM::GPRnopcRegClass, &ARM::GPRnopcRegClass },
2630 /* Thumb */ { &ARM::tGPRRegClass, &ARM::rGPRRegClass }
2631 };
2632
2633 // Table governing the instruction(s) to be emitted.
JF Bastiencd4c64d2013-07-17 05:46:46 +00002634 static const struct InstructionTable {
2635 uint32_t Opc : 16;
2636 uint32_t hasS : 1; // Some instructions have an S bit, always set it to 0.
2637 uint32_t Shift : 7; // For shift operand addressing mode, used by MOVsi.
2638 uint32_t Imm : 8; // All instructions have either a shift or a mask.
2639 } IT[2][2][3][2] = {
JF Bastien06ce03d2013-06-07 20:10:37 +00002640 { // Two instructions (first is left shift, second is in this table).
JF Bastiencd4c64d2013-07-17 05:46:46 +00002641 { // ARM Opc S Shift Imm
2642 /* 1 bit sext */ { { ARM::MOVsi , 1, ARM_AM::asr , 31 },
2643 /* 1 bit zext */ { ARM::MOVsi , 1, ARM_AM::lsr , 31 } },
2644 /* 8 bit sext */ { { ARM::MOVsi , 1, ARM_AM::asr , 24 },
2645 /* 8 bit zext */ { ARM::MOVsi , 1, ARM_AM::lsr , 24 } },
2646 /* 16 bit sext */ { { ARM::MOVsi , 1, ARM_AM::asr , 16 },
2647 /* 16 bit zext */ { ARM::MOVsi , 1, ARM_AM::lsr , 16 } }
JF Bastien06ce03d2013-06-07 20:10:37 +00002648 },
JF Bastiencd4c64d2013-07-17 05:46:46 +00002649 { // Thumb Opc S Shift Imm
2650 /* 1 bit sext */ { { ARM::tASRri , 0, ARM_AM::no_shift, 31 },
2651 /* 1 bit zext */ { ARM::tLSRri , 0, ARM_AM::no_shift, 31 } },
2652 /* 8 bit sext */ { { ARM::tASRri , 0, ARM_AM::no_shift, 24 },
2653 /* 8 bit zext */ { ARM::tLSRri , 0, ARM_AM::no_shift, 24 } },
2654 /* 16 bit sext */ { { ARM::tASRri , 0, ARM_AM::no_shift, 16 },
2655 /* 16 bit zext */ { ARM::tLSRri , 0, ARM_AM::no_shift, 16 } }
JF Bastien06ce03d2013-06-07 20:10:37 +00002656 }
2657 },
2658 { // Single instruction.
JF Bastiencd4c64d2013-07-17 05:46:46 +00002659 { // ARM Opc S Shift Imm
2660 /* 1 bit sext */ { { ARM::KILL , 0, ARM_AM::no_shift, 0 },
2661 /* 1 bit zext */ { ARM::ANDri , 1, ARM_AM::no_shift, 1 } },
2662 /* 8 bit sext */ { { ARM::SXTB , 0, ARM_AM::no_shift, 0 },
2663 /* 8 bit zext */ { ARM::ANDri , 1, ARM_AM::no_shift, 255 } },
2664 /* 16 bit sext */ { { ARM::SXTH , 0, ARM_AM::no_shift, 0 },
2665 /* 16 bit zext */ { ARM::UXTH , 0, ARM_AM::no_shift, 0 } }
JF Bastien06ce03d2013-06-07 20:10:37 +00002666 },
JF Bastiencd4c64d2013-07-17 05:46:46 +00002667 { // Thumb Opc S Shift Imm
2668 /* 1 bit sext */ { { ARM::KILL , 0, ARM_AM::no_shift, 0 },
2669 /* 1 bit zext */ { ARM::t2ANDri, 1, ARM_AM::no_shift, 1 } },
2670 /* 8 bit sext */ { { ARM::t2SXTB , 0, ARM_AM::no_shift, 0 },
2671 /* 8 bit zext */ { ARM::t2ANDri, 1, ARM_AM::no_shift, 255 } },
2672 /* 16 bit sext */ { { ARM::t2SXTH , 0, ARM_AM::no_shift, 0 },
2673 /* 16 bit zext */ { ARM::t2UXTH , 0, ARM_AM::no_shift, 0 } }
JF Bastien06ce03d2013-06-07 20:10:37 +00002674 }
2675 }
2676 };
2677
2678 unsigned SrcBits = SrcVT.getSizeInBits();
2679 unsigned DestBits = DestVT.getSizeInBits();
JF Bastien60a24422013-06-08 00:51:51 +00002680 (void) DestBits;
JF Bastien06ce03d2013-06-07 20:10:37 +00002681 assert((SrcBits < DestBits) && "can only extend to larger types");
2682 assert((DestBits == 32 || DestBits == 16 || DestBits == 8) &&
2683 "other sizes unimplemented");
2684 assert((SrcBits == 16 || SrcBits == 8 || SrcBits == 1) &&
2685 "other sizes unimplemented");
2686
2687 bool hasV6Ops = Subtarget->hasV6Ops();
JF Bastiencd4c64d2013-07-17 05:46:46 +00002688 unsigned Bitness = SrcBits / 8; // {1,8,16}=>{0,1,2}
JF Bastien06ce03d2013-06-07 20:10:37 +00002689 assert((Bitness < 3) && "sanity-check table bounds");
2690
2691 bool isSingleInstr = isSingleInstrTbl[Bitness][isThumb2][hasV6Ops][isZExt];
2692 const TargetRegisterClass *RC = RCTbl[isThumb2][isSingleInstr];
JF Bastiencd4c64d2013-07-17 05:46:46 +00002693 const InstructionTable *ITP = &IT[isSingleInstr][isThumb2][Bitness][isZExt];
2694 unsigned Opc = ITP->Opc;
JF Bastien06ce03d2013-06-07 20:10:37 +00002695 assert(ARM::KILL != Opc && "Invalid table entry");
JF Bastiencd4c64d2013-07-17 05:46:46 +00002696 unsigned hasS = ITP->hasS;
2697 ARM_AM::ShiftOpc Shift = (ARM_AM::ShiftOpc) ITP->Shift;
2698 assert(((Shift == ARM_AM::no_shift) == (Opc != ARM::MOVsi)) &&
2699 "only MOVsi has shift operand addressing mode");
2700 unsigned Imm = ITP->Imm;
JF Bastien06ce03d2013-06-07 20:10:37 +00002701
2702 // 16-bit Thumb instructions always set CPSR (unless they're in an IT block).
2703 bool setsCPSR = &ARM::tGPRRegClass == RC;
JF Bastiencd4c64d2013-07-17 05:46:46 +00002704 unsigned LSLOpc = isThumb2 ? ARM::tLSLri : ARM::MOVsi;
JF Bastien06ce03d2013-06-07 20:10:37 +00002705 unsigned ResultReg;
JF Bastiencd4c64d2013-07-17 05:46:46 +00002706 // MOVsi encodes shift and immediate in shift operand addressing mode.
2707 // The following condition has the same value when emitting two
2708 // instruction sequences: both are shifts.
2709 bool ImmIsSO = (Shift != ARM_AM::no_shift);
JF Bastien06ce03d2013-06-07 20:10:37 +00002710
2711 // Either one or two instructions are emitted.
2712 // They're always of the form:
2713 // dst = in OP imm
2714 // CPSR is set only by 16-bit Thumb instructions.
2715 // Predicate, if any, is AL.
2716 // S bit, if available, is always 0.
2717 // When two are emitted the first's result will feed as the second's input,
2718 // that value is then dead.
2719 unsigned NumInstrsEmitted = isSingleInstr ? 1 : 2;
2720 for (unsigned Instr = 0; Instr != NumInstrsEmitted; ++Instr) {
2721 ResultReg = createResultReg(RC);
JF Bastiencd4c64d2013-07-17 05:46:46 +00002722 bool isLsl = (0 == Instr) && !isSingleInstr;
2723 unsigned Opcode = isLsl ? LSLOpc : Opc;
2724 ARM_AM::ShiftOpc ShiftAM = isLsl ? ARM_AM::lsl : Shift;
2725 unsigned ImmEnc = ImmIsSO ? ARM_AM::getSORegOpc(ShiftAM, Imm) : Imm;
JF Bastien06ce03d2013-06-07 20:10:37 +00002726 bool isKill = 1 == Instr;
2727 MachineInstrBuilder MIB = BuildMI(
Rafael Espindolaea09c592014-02-18 22:05:46 +00002728 *FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opcode), ResultReg);
JF Bastien06ce03d2013-06-07 20:10:37 +00002729 if (setsCPSR)
2730 MIB.addReg(ARM::CPSR, RegState::Define);
Jim Grosbach3fa74912013-08-16 23:37:36 +00002731 SrcReg = constrainOperandRegClass(TII.get(Opcode), SrcReg, 1 + setsCPSR);
JF Bastiencd4c64d2013-07-17 05:46:46 +00002732 AddDefaultPred(MIB.addReg(SrcReg, isKill * RegState::Kill).addImm(ImmEnc));
JF Bastien06ce03d2013-06-07 20:10:37 +00002733 if (hasS)
2734 AddDefaultCC(MIB);
2735 // Second instruction consumes the first's result.
2736 SrcReg = ResultReg;
Eli Friedmanc7035512011-05-25 23:49:02 +00002737 }
2738
Chad Rosier4489f942011-11-02 17:20:24 +00002739 return ResultReg;
2740}
2741
2742bool ARMFastISel::SelectIntExt(const Instruction *I) {
2743 // On ARM, in general, integer casts don't involve legal types; this code
2744 // handles promotable integers.
Chad Rosier4489f942011-11-02 17:20:24 +00002745 Type *DestTy = I->getType();
2746 Value *Src = I->getOperand(0);
2747 Type *SrcTy = Src->getType();
2748
Chad Rosier4489f942011-11-02 17:20:24 +00002749 bool isZExt = isa<ZExtInst>(I);
2750 unsigned SrcReg = getRegForValue(Src);
2751 if (!SrcReg) return false;
2752
Chad Rosier62a144f2012-12-17 19:59:43 +00002753 EVT SrcEVT, DestEVT;
2754 SrcEVT = TLI.getValueType(SrcTy, true);
2755 DestEVT = TLI.getValueType(DestTy, true);
2756 if (!SrcEVT.isSimple()) return false;
2757 if (!DestEVT.isSimple()) return false;
Patrik Hagglundc494d242012-12-17 14:30:06 +00002758
Chad Rosier62a144f2012-12-17 19:59:43 +00002759 MVT SrcVT = SrcEVT.getSimpleVT();
2760 MVT DestVT = DestEVT.getSimpleVT();
Chad Rosier4489f942011-11-02 17:20:24 +00002761 unsigned ResultReg = ARMEmitIntExt(SrcVT, SrcReg, DestVT, isZExt);
2762 if (ResultReg == 0) return false;
2763 UpdateValueMap(I, ResultReg);
Eli Friedmanc7035512011-05-25 23:49:02 +00002764 return true;
2765}
2766
Jush Lu4705da92012-08-03 02:37:48 +00002767bool ARMFastISel::SelectShift(const Instruction *I,
2768 ARM_AM::ShiftOpc ShiftTy) {
2769 // We handle thumb2 mode by target independent selector
2770 // or SelectionDAG ISel.
2771 if (isThumb2)
2772 return false;
2773
2774 // Only handle i32 now.
2775 EVT DestVT = TLI.getValueType(I->getType(), true);
2776 if (DestVT != MVT::i32)
2777 return false;
2778
2779 unsigned Opc = ARM::MOVsr;
2780 unsigned ShiftImm;
2781 Value *Src2Value = I->getOperand(1);
2782 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Src2Value)) {
2783 ShiftImm = CI->getZExtValue();
2784
2785 // Fall back to selection DAG isel if the shift amount
2786 // is zero or greater than the width of the value type.
2787 if (ShiftImm == 0 || ShiftImm >=32)
2788 return false;
2789
2790 Opc = ARM::MOVsi;
2791 }
2792
2793 Value *Src1Value = I->getOperand(0);
2794 unsigned Reg1 = getRegForValue(Src1Value);
2795 if (Reg1 == 0) return false;
2796
Nadav Rotema8e15b02012-09-06 11:13:55 +00002797 unsigned Reg2 = 0;
Jush Lu4705da92012-08-03 02:37:48 +00002798 if (Opc == ARM::MOVsr) {
2799 Reg2 = getRegForValue(Src2Value);
2800 if (Reg2 == 0) return false;
2801 }
2802
JF Bastien13969d02013-05-29 15:45:47 +00002803 unsigned ResultReg = createResultReg(&ARM::GPRnopcRegClass);
Jush Lu4705da92012-08-03 02:37:48 +00002804 if(ResultReg == 0) return false;
2805
Rafael Espindolaea09c592014-02-18 22:05:46 +00002806 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jush Lu4705da92012-08-03 02:37:48 +00002807 TII.get(Opc), ResultReg)
2808 .addReg(Reg1);
2809
2810 if (Opc == ARM::MOVsi)
2811 MIB.addImm(ARM_AM::getSORegOpc(ShiftTy, ShiftImm));
2812 else if (Opc == ARM::MOVsr) {
2813 MIB.addReg(Reg2);
2814 MIB.addImm(ARM_AM::getSORegOpc(ShiftTy, 0));
2815 }
2816
2817 AddOptionalDefs(MIB);
2818 UpdateValueMap(I, ResultReg);
2819 return true;
2820}
2821
Eric Christopherc3e118e2010-09-02 23:43:26 +00002822// TODO: SoftFP support.
Eric Christopher84bdfd82010-07-21 22:26:11 +00002823bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopher2ff757d2010-09-09 01:06:51 +00002824
Eric Christopher84bdfd82010-07-21 22:26:11 +00002825 switch (I->getOpcode()) {
Eric Christopher00202ee2010-08-23 21:44:12 +00002826 case Instruction::Load:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002827 return SelectLoad(I);
Eric Christopherfde5a3d2010-09-01 22:16:27 +00002828 case Instruction::Store:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002829 return SelectStore(I);
Eric Christopher6aaed722010-09-03 00:35:47 +00002830 case Instruction::Br:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002831 return SelectBranch(I);
Chad Rosierded4c992012-02-07 23:56:08 +00002832 case Instruction::IndirectBr:
2833 return SelectIndirectBr(I);
Eric Christopherc3e9c402010-09-08 23:13:45 +00002834 case Instruction::ICmp:
2835 case Instruction::FCmp:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002836 return SelectCmp(I);
Eric Christopherf14b9bf2010-09-09 00:26:48 +00002837 case Instruction::FPExt:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002838 return SelectFPExt(I);
Eric Christopher5903c0b2010-09-09 20:26:31 +00002839 case Instruction::FPTrunc:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002840 return SelectFPTrunc(I);
Eric Christopher6e3eeba2010-09-09 18:54:59 +00002841 case Instruction::SIToFP:
Chad Rosiere023d5d2012-02-03 21:14:11 +00002842 return SelectIToFP(I, /*isSigned*/ true);
Chad Rosiera8a8ac52012-02-03 19:42:52 +00002843 case Instruction::UIToFP:
Chad Rosiere023d5d2012-02-03 21:14:11 +00002844 return SelectIToFP(I, /*isSigned*/ false);
Eric Christopher6e3eeba2010-09-09 18:54:59 +00002845 case Instruction::FPToSI:
Chad Rosiere023d5d2012-02-03 21:14:11 +00002846 return SelectFPToI(I, /*isSigned*/ true);
Chad Rosier41f0e782012-02-03 20:27:51 +00002847 case Instruction::FPToUI:
Chad Rosiere023d5d2012-02-03 21:14:11 +00002848 return SelectFPToI(I, /*isSigned*/ false);
Chad Rosier685b20c2012-02-06 23:50:07 +00002849 case Instruction::Add:
2850 return SelectBinaryIntOp(I, ISD::ADD);
Chad Rosierbd471252012-02-08 02:29:21 +00002851 case Instruction::Or:
2852 return SelectBinaryIntOp(I, ISD::OR);
Chad Rosier0ee8c512012-02-08 02:45:44 +00002853 case Instruction::Sub:
2854 return SelectBinaryIntOp(I, ISD::SUB);
Eric Christopher24dc27f2010-09-09 00:53:57 +00002855 case Instruction::FAdd:
Chad Rosier685b20c2012-02-06 23:50:07 +00002856 return SelectBinaryFPOp(I, ISD::FADD);
Eric Christopher24dc27f2010-09-09 00:53:57 +00002857 case Instruction::FSub:
Chad Rosier685b20c2012-02-06 23:50:07 +00002858 return SelectBinaryFPOp(I, ISD::FSUB);
Eric Christopher24dc27f2010-09-09 00:53:57 +00002859 case Instruction::FMul:
Chad Rosier685b20c2012-02-06 23:50:07 +00002860 return SelectBinaryFPOp(I, ISD::FMUL);
Eric Christopher8b912662010-09-14 23:03:37 +00002861 case Instruction::SDiv:
Chad Rosieraaa55a82012-02-03 21:07:27 +00002862 return SelectDiv(I, /*isSigned*/ true);
2863 case Instruction::UDiv:
2864 return SelectDiv(I, /*isSigned*/ false);
Eric Christophereae1b382010-10-11 08:37:26 +00002865 case Instruction::SRem:
Chad Rosierb84a4b42012-02-03 21:23:45 +00002866 return SelectRem(I, /*isSigned*/ true);
2867 case Instruction::URem:
2868 return SelectRem(I, /*isSigned*/ false);
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002869 case Instruction::Call:
Chad Rosiera7ebc562011-11-11 23:31:03 +00002870 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
2871 return SelectIntrinsicCall(*II);
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002872 return SelectCall(I);
Eric Christopher511aa312010-10-11 08:27:59 +00002873 case Instruction::Select:
2874 return SelectSelect(I);
Eric Christopher93bbe652010-10-22 01:28:00 +00002875 case Instruction::Ret:
2876 return SelectRet(I);
Eli Friedmanc7035512011-05-25 23:49:02 +00002877 case Instruction::Trunc:
Chad Rosieree7e4522011-11-02 00:18:48 +00002878 return SelectTrunc(I);
Eli Friedmanc7035512011-05-25 23:49:02 +00002879 case Instruction::ZExt:
2880 case Instruction::SExt:
Chad Rosieree7e4522011-11-02 00:18:48 +00002881 return SelectIntExt(I);
Jush Lu4705da92012-08-03 02:37:48 +00002882 case Instruction::Shl:
2883 return SelectShift(I, ARM_AM::lsl);
2884 case Instruction::LShr:
2885 return SelectShift(I, ARM_AM::lsr);
2886 case Instruction::AShr:
2887 return SelectShift(I, ARM_AM::asr);
Eric Christopher84bdfd82010-07-21 22:26:11 +00002888 default: break;
2889 }
2890 return false;
2891}
2892
JF Bastien3c6bb8e2013-06-11 22:13:46 +00002893namespace {
2894// This table describes sign- and zero-extend instructions which can be
2895// folded into a preceding load. All of these extends have an immediate
2896// (sometimes a mask and sometimes a shift) that's applied after
2897// extension.
2898const struct FoldableLoadExtendsStruct {
2899 uint16_t Opc[2]; // ARM, Thumb.
2900 uint8_t ExpectedImm;
2901 uint8_t isZExt : 1;
2902 uint8_t ExpectedVT : 7;
2903} FoldableLoadExtends[] = {
2904 { { ARM::SXTH, ARM::t2SXTH }, 0, 0, MVT::i16 },
2905 { { ARM::UXTH, ARM::t2UXTH }, 0, 1, MVT::i16 },
2906 { { ARM::ANDri, ARM::t2ANDri }, 255, 1, MVT::i8 },
2907 { { ARM::SXTB, ARM::t2SXTB }, 0, 0, MVT::i8 },
2908 { { ARM::UXTB, ARM::t2UXTB }, 0, 1, MVT::i8 }
2909};
2910}
2911
Eli Bendersky90dd3e72013-04-19 22:29:18 +00002912/// \brief The specified machine instr operand is a vreg, and that
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002913/// vreg is being provided by the specified load instruction. If possible,
2914/// try to fold the load as an operand to the instruction, returning true if
2915/// successful.
Eli Bendersky90dd3e72013-04-19 22:29:18 +00002916bool ARMFastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
2917 const LoadInst *LI) {
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002918 // Verify we have a legal type before going any further.
2919 MVT VT;
2920 if (!isLoadTypeLegal(LI->getType(), VT))
2921 return false;
2922
2923 // Combine load followed by zero- or sign-extend.
2924 // ldrb r1, [r0] ldrb r1, [r0]
2925 // uxtb r2, r1 =>
2926 // mov r3, r2 mov r3, r1
JF Bastien3c6bb8e2013-06-11 22:13:46 +00002927 if (MI->getNumOperands() < 3 || !MI->getOperand(2).isImm())
2928 return false;
2929 const uint64_t Imm = MI->getOperand(2).getImm();
2930
2931 bool Found = false;
2932 bool isZExt;
2933 for (unsigned i = 0, e = array_lengthof(FoldableLoadExtends);
2934 i != e; ++i) {
2935 if (FoldableLoadExtends[i].Opc[isThumb2] == MI->getOpcode() &&
2936 (uint64_t)FoldableLoadExtends[i].ExpectedImm == Imm &&
2937 MVT((MVT::SimpleValueType)FoldableLoadExtends[i].ExpectedVT) == VT) {
2938 Found = true;
2939 isZExt = FoldableLoadExtends[i].isZExt;
2940 }
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002941 }
JF Bastien3c6bb8e2013-06-11 22:13:46 +00002942 if (!Found) return false;
2943
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002944 // See if we can handle this address.
2945 Address Addr;
2946 if (!ARMComputeAddress(LI->getOperand(0), Addr)) return false;
Jush Luac96b762012-06-14 06:08:19 +00002947
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002948 unsigned ResultReg = MI->getOperand(0).getReg();
Chad Rosier563de602011-12-13 19:22:14 +00002949 if (!ARMEmitLoad(VT, ResultReg, Addr, LI->getAlignment(), isZExt, false))
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002950 return false;
2951 MI->eraseFromParent();
2952 return true;
2953}
2954
Jush Lu47172a02012-09-27 05:21:41 +00002955unsigned ARMFastISel::ARMLowerPICELF(const GlobalValue *GV,
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00002956 unsigned Align, MVT VT) {
Jush Lu47172a02012-09-27 05:21:41 +00002957 bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
2958 ARMConstantPoolConstant *CPV =
2959 ARMConstantPoolConstant::Create(GV, UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT);
2960 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
2961
2962 unsigned Opc;
2963 unsigned DestReg1 = createResultReg(TLI.getRegClassFor(VT));
2964 // Load value.
2965 if (isThumb2) {
Jim Grosbach5f71aab2013-08-26 20:07:29 +00002966 DestReg1 = constrainOperandRegClass(TII.get(ARM::t2LDRpci), DestReg1, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002967 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jush Lu47172a02012-09-27 05:21:41 +00002968 TII.get(ARM::t2LDRpci), DestReg1)
2969 .addConstantPoolIndex(Idx));
2970 Opc = UseGOTOFF ? ARM::t2ADDrr : ARM::t2LDRs;
2971 } else {
2972 // The extra immediate is for addrmode2.
Jim Grosbach5f71aab2013-08-26 20:07:29 +00002973 DestReg1 = constrainOperandRegClass(TII.get(ARM::LDRcp), DestReg1, 0);
Jush Lu47172a02012-09-27 05:21:41 +00002974 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +00002975 DbgLoc, TII.get(ARM::LDRcp), DestReg1)
Jush Lu47172a02012-09-27 05:21:41 +00002976 .addConstantPoolIndex(Idx).addImm(0));
2977 Opc = UseGOTOFF ? ARM::ADDrr : ARM::LDRrs;
2978 }
2979
2980 unsigned GlobalBaseReg = AFI->getGlobalBaseReg();
2981 if (GlobalBaseReg == 0) {
2982 GlobalBaseReg = MRI.createVirtualRegister(TLI.getRegClassFor(VT));
2983 AFI->setGlobalBaseReg(GlobalBaseReg);
2984 }
2985
2986 unsigned DestReg2 = createResultReg(TLI.getRegClassFor(VT));
Jim Grosbach5f71aab2013-08-26 20:07:29 +00002987 DestReg2 = constrainOperandRegClass(TII.get(Opc), DestReg2, 0);
2988 DestReg1 = constrainOperandRegClass(TII.get(Opc), DestReg1, 1);
2989 GlobalBaseReg = constrainOperandRegClass(TII.get(Opc), GlobalBaseReg, 2);
Jush Lu47172a02012-09-27 05:21:41 +00002990 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +00002991 DbgLoc, TII.get(Opc), DestReg2)
Jush Lu47172a02012-09-27 05:21:41 +00002992 .addReg(DestReg1)
2993 .addReg(GlobalBaseReg);
2994 if (!UseGOTOFF)
2995 MIB.addImm(0);
2996 AddOptionalDefs(MIB);
2997
2998 return DestReg2;
2999}
3000
Evan Cheng615620c2013-02-11 01:27:15 +00003001bool ARMFastISel::FastLowerArguments() {
3002 if (!FuncInfo.CanLowerReturn)
3003 return false;
3004
3005 const Function *F = FuncInfo.Fn;
3006 if (F->isVarArg())
3007 return false;
3008
3009 CallingConv::ID CC = F->getCallingConv();
3010 switch (CC) {
3011 default:
3012 return false;
3013 case CallingConv::Fast:
3014 case CallingConv::C:
3015 case CallingConv::ARM_AAPCS_VFP:
3016 case CallingConv::ARM_AAPCS:
3017 case CallingConv::ARM_APCS:
3018 break;
3019 }
3020
3021 // Only handle simple cases. i.e. Up to 4 i8/i16/i32 scalar arguments
3022 // which are passed in r0 - r3.
3023 unsigned Idx = 1;
3024 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
3025 I != E; ++I, ++Idx) {
3026 if (Idx > 4)
3027 return false;
3028
3029 if (F->getAttributes().hasAttribute(Idx, Attribute::InReg) ||
3030 F->getAttributes().hasAttribute(Idx, Attribute::StructRet) ||
3031 F->getAttributes().hasAttribute(Idx, Attribute::ByVal))
3032 return false;
3033
3034 Type *ArgTy = I->getType();
3035 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy())
3036 return false;
3037
3038 EVT ArgVT = TLI.getValueType(ArgTy);
Chad Rosier1b33e8d2013-02-26 01:05:31 +00003039 if (!ArgVT.isSimple()) return false;
Evan Cheng615620c2013-02-11 01:27:15 +00003040 switch (ArgVT.getSimpleVT().SimpleTy) {
3041 case MVT::i8:
3042 case MVT::i16:
3043 case MVT::i32:
3044 break;
3045 default:
3046 return false;
3047 }
3048 }
3049
3050
3051 static const uint16_t GPRArgRegs[] = {
3052 ARM::R0, ARM::R1, ARM::R2, ARM::R3
3053 };
3054
Jim Grosbachd69f3ed2013-08-16 23:37:23 +00003055 const TargetRegisterClass *RC = &ARM::rGPRRegClass;
Evan Cheng615620c2013-02-11 01:27:15 +00003056 Idx = 0;
3057 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
3058 I != E; ++I, ++Idx) {
Evan Cheng615620c2013-02-11 01:27:15 +00003059 unsigned SrcReg = GPRArgRegs[Idx];
3060 unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, RC);
3061 // FIXME: Unfortunately it's necessary to emit a copy from the livein copy.
3062 // Without this, EmitLiveInCopies may eliminate the livein if its only
3063 // use is a bitcast (which isn't turned into an instruction).
3064 unsigned ResultReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00003065 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3066 TII.get(TargetOpcode::COPY),
Evan Cheng615620c2013-02-11 01:27:15 +00003067 ResultReg).addReg(DstReg, getKillRegState(true));
3068 UpdateValueMap(I, ResultReg);
3069 }
3070
3071 return true;
3072}
3073
Eric Christopher84bdfd82010-07-21 22:26:11 +00003074namespace llvm {
Bob Wilson3e6fa462012-08-03 04:06:28 +00003075 FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo,
3076 const TargetLibraryInfo *libInfo) {
Eric Christopher5501b7e2010-10-11 20:05:22 +00003077 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach68147ee2010-11-09 19:22:26 +00003078
Eric Christopher5501b7e2010-10-11 20:05:22 +00003079 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
JF Bastien18db1f22013-06-14 02:49:43 +00003080 // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl.
3081 bool UseFastISel = false;
Tim Northoverd6a729b2014-01-06 14:28:05 +00003082 UseFastISel |= Subtarget->isTargetMachO() && !Subtarget->isThumb1Only();
JF Bastien18db1f22013-06-14 02:49:43 +00003083 UseFastISel |= Subtarget->isTargetLinux() && !Subtarget->isThumb();
3084 UseFastISel |= Subtarget->isTargetNaCl() && !Subtarget->isThumb();
3085
3086 if (UseFastISel) {
3087 // iOS always has a FP for backtracking, force other targets
3088 // to keep their FP when doing FastISel. The emitted code is
3089 // currently superior, and in cases like test-suite's lencod
3090 // FastISel isn't quite correct when FP is eliminated.
3091 TM.Options.NoFramePointerElim = true;
Bob Wilson3e6fa462012-08-03 04:06:28 +00003092 return new ARMFastISel(funcInfo, libInfo);
JF Bastien18db1f22013-06-14 02:49:43 +00003093 }
Craig Topper062a2ba2014-04-25 05:30:21 +00003094 return nullptr;
Eric Christopher84bdfd82010-07-21 22:26:11 +00003095 }
3096}