blob: 5d33303ffa1731132fc4bfa5d2a37c1b673a3998 [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)
516 return false;
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
549 // Load from constant pool. For now 32-bit only.
Chad Rosier67f96882011-11-04 22:29:00 +0000550 if (VT != MVT::i32)
551 return false;
552
553 unsigned DestReg = createResultReg(TLI.getRegClassFor(VT));
554
Eric Christopherc3e118e2010-09-02 23:43:26 +0000555 // MachineConstantPool wants an explicit alignment.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000556 unsigned Align = DL.getPrefTypeAlignment(C->getType());
Eric Christopherc3e118e2010-09-02 23:43:26 +0000557 if (Align == 0) {
558 // TODO: Figure out if this is correct.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000559 Align = DL.getTypeAllocSize(C->getType());
Eric Christopherc3e118e2010-09-02 23:43:26 +0000560 }
561 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
Eric Christopher7ac602b2010-10-11 08:38:55 +0000562
Chad Rosier0439cfc2011-11-08 21:12:00 +0000563 if (isThumb2)
Rafael Espindolaea09c592014-02-18 22:05:46 +0000564 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher953b1af2010-09-28 21:55:34 +0000565 TII.get(ARM::t2LDRpci), DestReg)
566 .addConstantPoolIndex(Idx));
Tim Northovere42fb072014-02-04 10:38:46 +0000567 else {
Eric Christopher22d04922010-11-12 09:48:30 +0000568 // The extra immediate is for addrmode2.
Jim Grosbach5f71aab2013-08-26 20:07:29 +0000569 DestReg = constrainOperandRegClass(TII.get(ARM::LDRcp), DestReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000570 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher953b1af2010-09-28 21:55:34 +0000571 TII.get(ARM::LDRcp), DestReg)
572 .addConstantPoolIndex(Idx)
Jim Grosbach1e4d9a12010-10-26 22:37:02 +0000573 .addImm(0));
Tim Northovere42fb072014-02-04 10:38:46 +0000574 }
Eric Christopher2ff757d2010-09-09 01:06:51 +0000575
Eric Christopherc3e118e2010-09-02 23:43:26 +0000576 return DestReg;
Eric Christopher92db2012010-09-02 01:48:11 +0000577}
578
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000579unsigned ARMFastISel::ARMMaterializeGV(const GlobalValue *GV, MVT VT) {
Eric Christopher7787f792010-10-02 00:32:44 +0000580 // For now 32-bit only.
Duncan Sands14627772010-11-03 12:17:33 +0000581 if (VT != MVT::i32) return 0;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000582
Eric Christopher7787f792010-10-02 00:32:44 +0000583 Reloc::Model RelocM = TM.getRelocationModel();
Jush Lue87e5592012-08-29 02:41:21 +0000584 bool IsIndirect = Subtarget->GVIsIndirectSymbol(GV, RelocM);
Chad Rosier65710a72012-11-07 00:13:01 +0000585 const TargetRegisterClass *RC = isThumb2 ?
586 (const TargetRegisterClass*)&ARM::rGPRRegClass :
587 (const TargetRegisterClass*)&ARM::GPRRegClass;
588 unsigned DestReg = createResultReg(RC);
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000589
Tim Northoverd6a729b2014-01-06 14:28:05 +0000590 // FastISel TLS support on non-MachO is broken, punt to SelectionDAG.
JF Bastien18db1f22013-06-14 02:49:43 +0000591 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
592 bool IsThreadLocal = GVar && GVar->isThreadLocal();
Tim Northoverd6a729b2014-01-06 14:28:05 +0000593 if (!Subtarget->isTargetMachO() && IsThreadLocal) return 0;
JF Bastien18db1f22013-06-14 02:49:43 +0000594
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000595 // Use movw+movt when possible, it avoids constant pool entries.
Tim Northoverfa36dfe2013-11-26 12:45:05 +0000596 // Non-darwin targets only support static movt relocations in FastISel.
Eric Christopherc1058df2014-07-04 01:55:26 +0000597 if (Subtarget->useMovt(*FuncInfo.MF) &&
Tim Northoverd6a729b2014-01-06 14:28:05 +0000598 (Subtarget->isTargetMachO() || RelocM == Reloc::Static)) {
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000599 unsigned Opc;
Tim Northoverdb962e2c2013-11-25 16:24:52 +0000600 unsigned char TF = 0;
Tim Northoverd6a729b2014-01-06 14:28:05 +0000601 if (Subtarget->isTargetMachO())
Tim Northoverdb962e2c2013-11-25 16:24:52 +0000602 TF = ARMII::MO_NONLAZY;
603
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000604 switch (RelocM) {
605 case Reloc::PIC_:
606 Opc = isThumb2 ? ARM::t2MOV_ga_pcrel : ARM::MOV_ga_pcrel;
607 break;
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000608 default:
609 Opc = isThumb2 ? ARM::t2MOVi32imm : ARM::MOVi32imm;
610 break;
611 }
Rafael Espindolaea09c592014-02-18 22:05:46 +0000612 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
613 TII.get(Opc), DestReg).addGlobalAddress(GV, 0, TF));
Eric Christopher7787f792010-10-02 00:32:44 +0000614 } else {
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000615 // MachineConstantPool wants an explicit alignment.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000616 unsigned Align = DL.getPrefTypeAlignment(GV->getType());
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000617 if (Align == 0) {
618 // TODO: Figure out if this is correct.
Rafael Espindolaea09c592014-02-18 22:05:46 +0000619 Align = DL.getTypeAllocSize(GV->getType());
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000620 }
621
Jush Lu47172a02012-09-27 05:21:41 +0000622 if (Subtarget->isTargetELF() && RelocM == Reloc::PIC_)
623 return ARMLowerPICELF(GV, Align, VT);
624
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000625 // Grab index.
626 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 :
627 (Subtarget->isThumb() ? 4 : 8);
628 unsigned Id = AFI->createPICLabelUId();
629 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id,
630 ARMCP::CPValue,
631 PCAdj);
632 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
633
634 // Load value.
635 MachineInstrBuilder MIB;
636 if (isThumb2) {
637 unsigned Opc = (RelocM!=Reloc::PIC_) ? ARM::t2LDRpci : ARM::t2LDRpci_pic;
Rafael Espindolaea09c592014-02-18 22:05:46 +0000638 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opc),
639 DestReg).addConstantPoolIndex(Idx);
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000640 if (RelocM == Reloc::PIC_)
641 MIB.addImm(Id);
Jush Lue87e5592012-08-29 02:41:21 +0000642 AddOptionalDefs(MIB);
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000643 } else {
644 // The extra immediate is for addrmode2.
Jim Grosbach5f71aab2013-08-26 20:07:29 +0000645 DestReg = constrainOperandRegClass(TII.get(ARM::LDRcp), DestReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +0000646 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
647 TII.get(ARM::LDRcp), DestReg)
648 .addConstantPoolIndex(Idx)
649 .addImm(0);
Jush Lue87e5592012-08-29 02:41:21 +0000650 AddOptionalDefs(MIB);
651
652 if (RelocM == Reloc::PIC_) {
653 unsigned Opc = IsIndirect ? ARM::PICLDR : ARM::PICADD;
654 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
655
656 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +0000657 DbgLoc, TII.get(Opc), NewDestReg)
Jush Lue87e5592012-08-29 02:41:21 +0000658 .addReg(DestReg)
659 .addImm(Id);
660 AddOptionalDefs(MIB);
661 return NewDestReg;
662 }
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000663 }
Eric Christopher7787f792010-10-02 00:32:44 +0000664 }
Eli Friedman86585792011-06-03 01:13:19 +0000665
Jush Lue87e5592012-08-29 02:41:21 +0000666 if (IsIndirect) {
Jakob Stoklund Olesen68f034e2012-01-07 01:47:05 +0000667 MachineInstrBuilder MIB;
Eli Friedman86585792011-06-03 01:13:19 +0000668 unsigned NewDestReg = createResultReg(TLI.getRegClassFor(VT));
Chad Rosier0439cfc2011-11-08 21:12:00 +0000669 if (isThumb2)
Rafael Espindolaea09c592014-02-18 22:05:46 +0000670 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jim Grosbache7e2aca2011-09-13 20:30:37 +0000671 TII.get(ARM::t2LDRi12), NewDestReg)
Eli Friedman86585792011-06-03 01:13:19 +0000672 .addReg(DestReg)
673 .addImm(0);
674 else
Rafael Espindolaea09c592014-02-18 22:05:46 +0000675 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
676 TII.get(ARM::LDRi12), NewDestReg)
677 .addReg(DestReg)
678 .addImm(0);
Eli Friedman86585792011-06-03 01:13:19 +0000679 DestReg = NewDestReg;
680 AddOptionalDefs(MIB);
681 }
682
Eric Christopher7787f792010-10-02 00:32:44 +0000683 return DestReg;
Eric Christopher83a5ec82010-10-01 23:24:42 +0000684}
685
Eric Christopher3cf63f12010-09-09 00:19:41 +0000686unsigned ARMFastISel::TargetMaterializeConstant(const Constant *C) {
Patrik Hagglundc494d242012-12-17 14:30:06 +0000687 EVT CEVT = TLI.getValueType(C->getType(), true);
688
689 // Only handle simple types.
690 if (!CEVT.isSimple()) return 0;
691 MVT VT = CEVT.getSimpleVT();
Eric Christopher3cf63f12010-09-09 00:19:41 +0000692
693 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C))
694 return ARMMaterializeFP(CFP, VT);
Eric Christopher83a5ec82010-10-01 23:24:42 +0000695 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
696 return ARMMaterializeGV(GV, VT);
697 else if (isa<ConstantInt>(C))
698 return ARMMaterializeInt(C, VT);
Eric Christopher7ac602b2010-10-11 08:38:55 +0000699
Eric Christopher83a5ec82010-10-01 23:24:42 +0000700 return 0;
Eric Christopher3cf63f12010-09-09 00:19:41 +0000701}
702
Chad Rosier0eff3e52011-11-17 21:46:13 +0000703// TODO: unsigned ARMFastISel::TargetMaterializeFloatZero(const ConstantFP *CF);
704
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000705unsigned ARMFastISel::TargetMaterializeAlloca(const AllocaInst *AI) {
706 // Don't handle dynamic allocas.
707 if (!FuncInfo.StaticAllocaMap.count(AI)) return 0;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000708
Duncan Sandsf5dda012010-11-03 11:35:31 +0000709 MVT VT;
Chad Rosier466d3d82012-05-11 16:41:38 +0000710 if (!isLoadTypeLegal(AI->getType(), VT)) return 0;
Eric Christopher7ac602b2010-10-11 08:38:55 +0000711
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000712 DenseMap<const AllocaInst*, int>::iterator SI =
713 FuncInfo.StaticAllocaMap.find(AI);
714
715 // This will get lowered later into the correct offsets and registers
716 // via rewriteXFrameIndex.
717 if (SI != FuncInfo.StaticAllocaMap.end()) {
Tim Northover76fc8a42013-12-11 16:04:57 +0000718 unsigned Opc = isThumb2 ? ARM::t2ADDri : ARM::ADDri;
Craig Topper760b1342012-02-22 05:59:10 +0000719 const TargetRegisterClass* RC = TLI.getRegClassFor(VT);
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000720 unsigned ResultReg = createResultReg(RC);
Tim Northover76fc8a42013-12-11 16:04:57 +0000721 ResultReg = constrainOperandRegClass(TII.get(Opc), ResultReg, 0);
722
Rafael Espindolaea09c592014-02-18 22:05:46 +0000723 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000724 TII.get(Opc), ResultReg)
725 .addFrameIndex(SI->second)
726 .addImm(0));
727 return ResultReg;
728 }
Eric Christopher7ac602b2010-10-11 08:38:55 +0000729
Eric Christopher78f8d4e2010-09-30 20:49:44 +0000730 return 0;
731}
732
Chris Lattner229907c2011-07-18 04:54:35 +0000733bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
Duncan Sandsf5dda012010-11-03 11:35:31 +0000734 EVT evt = TLI.getValueType(Ty, true);
Eric Christopher2ff757d2010-09-09 01:06:51 +0000735
Eric Christopher761e7fb2010-08-25 07:23:49 +0000736 // Only handle simple types.
Duncan Sandsf5dda012010-11-03 11:35:31 +0000737 if (evt == MVT::Other || !evt.isSimple()) return false;
738 VT = evt.getSimpleVT();
Eric Christopher2ff757d2010-09-09 01:06:51 +0000739
Eric Christopher901176a2010-08-31 01:28:42 +0000740 // Handle all legal types, i.e. a register that will directly hold this
741 // value.
742 return TLI.isTypeLegal(VT);
Eric Christopher761e7fb2010-08-25 07:23:49 +0000743}
744
Chris Lattner229907c2011-07-18 04:54:35 +0000745bool ARMFastISel::isLoadTypeLegal(Type *Ty, MVT &VT) {
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000746 if (isTypeLegal(Ty, VT)) return true;
Eric Christopher2ff757d2010-09-09 01:06:51 +0000747
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000748 // If this is a type than can be sign or zero-extended to a basic operation
749 // go ahead and accept it now.
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000750 if (VT == MVT::i1 || VT == MVT::i8 || VT == MVT::i16)
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000751 return true;
Eric Christopher2ff757d2010-09-09 01:06:51 +0000752
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000753 return false;
754}
755
Eric Christopher558b61e2010-11-19 22:36:41 +0000756// Computes the address to get to an object.
Eric Christopherfef5f312010-11-19 22:30:02 +0000757bool ARMFastISel::ARMComputeAddress(const Value *Obj, Address &Addr) {
Eric Christopher00202ee2010-08-23 21:44:12 +0000758 // Some boilerplate from the X86 FastISel.
Craig Topper062a2ba2014-04-25 05:30:21 +0000759 const User *U = nullptr;
Eric Christopher00202ee2010-08-23 21:44:12 +0000760 unsigned Opcode = Instruction::UserOp1;
Eric Christopher9d4e4712010-08-24 00:07:24 +0000761 if (const Instruction *I = dyn_cast<Instruction>(Obj)) {
Eric Christophercee83d62010-11-19 22:37:58 +0000762 // Don't walk into other basic blocks unless the object is an alloca from
763 // another block, otherwise it may not have a virtual register assigned.
Eric Christopher96494372010-11-15 21:11:06 +0000764 if (FuncInfo.StaticAllocaMap.count(static_cast<const AllocaInst *>(Obj)) ||
765 FuncInfo.MBBMap[I->getParent()] == FuncInfo.MBB) {
766 Opcode = I->getOpcode();
767 U = I;
768 }
Eric Christopher9d4e4712010-08-24 00:07:24 +0000769 } else if (const ConstantExpr *C = dyn_cast<ConstantExpr>(Obj)) {
Eric Christopher00202ee2010-08-23 21:44:12 +0000770 Opcode = C->getOpcode();
771 U = C;
772 }
773
Chris Lattner229907c2011-07-18 04:54:35 +0000774 if (PointerType *Ty = dyn_cast<PointerType>(Obj->getType()))
Eric Christopher00202ee2010-08-23 21:44:12 +0000775 if (Ty->getAddressSpace() > 255)
776 // Fast instruction selection doesn't support the special
777 // address spaces.
778 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +0000779
Eric Christopher00202ee2010-08-23 21:44:12 +0000780 switch (Opcode) {
Eric Christopher2ff757d2010-09-09 01:06:51 +0000781 default:
Eric Christopher00202ee2010-08-23 21:44:12 +0000782 break;
Eric Christopher3931cf92013-07-12 22:08:24 +0000783 case Instruction::BitCast:
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000784 // Look through bitcasts.
Eric Christopherfef5f312010-11-19 22:30:02 +0000785 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopher3931cf92013-07-12 22:08:24 +0000786 case Instruction::IntToPtr:
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000787 // Look past no-op inttoptrs.
788 if (TLI.getValueType(U->getOperand(0)->getType()) == TLI.getPointerTy())
Eric Christopherfef5f312010-11-19 22:30:02 +0000789 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000790 break;
Eric Christopher3931cf92013-07-12 22:08:24 +0000791 case Instruction::PtrToInt:
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000792 // Look past no-op ptrtoints.
793 if (TLI.getValueType(U->getType()) == TLI.getPointerTy())
Eric Christopherfef5f312010-11-19 22:30:02 +0000794 return ARMComputeAddress(U->getOperand(0), Addr);
Eric Christopherdb3bcc92010-10-12 00:43:21 +0000795 break;
Eric Christopher21d0c172010-10-14 09:29:41 +0000796 case Instruction::GetElementPtr: {
Eric Christopher35e2d7f2010-11-19 22:39:56 +0000797 Address SavedAddr = Addr;
Eric Christopherfef5f312010-11-19 22:30:02 +0000798 int TmpOffset = Addr.Offset;
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000799
Eric Christopher21d0c172010-10-14 09:29:41 +0000800 // Iterate through the GEP folding the constants into offsets where
801 // we can.
802 gep_type_iterator GTI = gep_type_begin(U);
803 for (User::const_op_iterator i = U->op_begin() + 1, e = U->op_end();
804 i != e; ++i, ++GTI) {
805 const Value *Op = *i;
Chris Lattner229907c2011-07-18 04:54:35 +0000806 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000807 const StructLayout *SL = DL.getStructLayout(STy);
Eric Christopher21d0c172010-10-14 09:29:41 +0000808 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
809 TmpOffset += SL->getElementOffset(Idx);
810 } else {
Rafael Espindolaea09c592014-02-18 22:05:46 +0000811 uint64_t S = DL.getTypeAllocSize(GTI.getIndexedType());
Eric Christophera5a779e2011-03-22 19:39:17 +0000812 for (;;) {
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000813 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Op)) {
814 // Constant-offset addressing.
815 TmpOffset += CI->getSExtValue() * S;
Eric Christophera5a779e2011-03-22 19:39:17 +0000816 break;
817 }
Bob Wilson9f3e6b22013-11-15 19:09:27 +0000818 if (canFoldAddIntoGEP(U, Op)) {
819 // A compatible add with a constant operand. Fold the constant.
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000820 ConstantInt *CI =
Eric Christophera5a779e2011-03-22 19:39:17 +0000821 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1));
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000822 TmpOffset += CI->getSExtValue() * S;
Eric Christophera5a779e2011-03-22 19:39:17 +0000823 // Iterate on the other operand.
824 Op = cast<AddOperator>(Op)->getOperand(0);
825 continue;
Eric Christopher501d2e22011-04-29 00:03:10 +0000826 }
Eric Christophera5a779e2011-03-22 19:39:17 +0000827 // Unsupported
828 goto unsupported_gep;
829 }
Eric Christopher21d0c172010-10-14 09:29:41 +0000830 }
831 }
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000832
833 // Try to grab the base operand now.
Eric Christopherfef5f312010-11-19 22:30:02 +0000834 Addr.Offset = TmpOffset;
835 if (ARMComputeAddress(U->getOperand(0), Addr)) return true;
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000836
837 // We failed, restore everything and try the other options.
Eric Christopher35e2d7f2010-11-19 22:39:56 +0000838 Addr = SavedAddr;
Eric Christophere4b3d6b2010-10-15 18:02:07 +0000839
Eric Christopher21d0c172010-10-14 09:29:41 +0000840 unsupported_gep:
Eric Christopher21d0c172010-10-14 09:29:41 +0000841 break;
842 }
Eric Christopher00202ee2010-08-23 21:44:12 +0000843 case Instruction::Alloca: {
Eric Christopher7cd5cda2010-10-12 05:39:06 +0000844 const AllocaInst *AI = cast<AllocaInst>(Obj);
Eric Christopher0a3c28b2010-11-20 22:38:27 +0000845 DenseMap<const AllocaInst*, int>::iterator SI =
846 FuncInfo.StaticAllocaMap.find(AI);
847 if (SI != FuncInfo.StaticAllocaMap.end()) {
848 Addr.BaseType = Address::FrameIndexBase;
849 Addr.Base.FI = SI->second;
850 return true;
851 }
852 break;
Eric Christopher00202ee2010-08-23 21:44:12 +0000853 }
854 }
Eric Christopher2ff757d2010-09-09 01:06:51 +0000855
Eric Christopher9d4e4712010-08-24 00:07:24 +0000856 // Try to get this in a register if nothing else has worked.
Eric Christopherfef5f312010-11-19 22:30:02 +0000857 if (Addr.Base.Reg == 0) Addr.Base.Reg = getRegForValue(Obj);
858 return Addr.Base.Reg != 0;
Eric Christopher21d0c172010-10-14 09:29:41 +0000859}
860
Chad Rosier150d35b2012-12-17 22:35:29 +0000861void ARMFastISel::ARMSimplifyAddress(Address &Addr, MVT VT, bool useAM3) {
Eric Christopher73bc5b02010-10-21 19:40:30 +0000862 bool needsLowering = false;
Chad Rosier150d35b2012-12-17 22:35:29 +0000863 switch (VT.SimpleTy) {
Craig Toppere55c5562012-02-07 02:50:20 +0000864 default: llvm_unreachable("Unhandled load/store type!");
Eric Christopher73bc5b02010-10-21 19:40:30 +0000865 case MVT::i1:
866 case MVT::i8:
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000867 case MVT::i16:
Eric Christopher73bc5b02010-10-21 19:40:30 +0000868 case MVT::i32:
Chad Rosieradfd2002011-11-14 20:22:27 +0000869 if (!useAM3) {
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000870 // Integer loads/stores handle 12-bit offsets.
871 needsLowering = ((Addr.Offset & 0xfff) != Addr.Offset);
Chad Rosieradfd2002011-11-14 20:22:27 +0000872 // Handle negative offsets.
Chad Rosier45110fd2011-11-14 22:34:48 +0000873 if (needsLowering && isThumb2)
874 needsLowering = !(Subtarget->hasV6T2Ops() && Addr.Offset < 0 &&
875 Addr.Offset > -256);
Chad Rosieradfd2002011-11-14 20:22:27 +0000876 } else {
Chad Rosier5196efd2011-11-13 04:25:02 +0000877 // ARM halfword load/stores and signed byte loads use +/-imm8 offsets.
Chad Rosier2a1df882011-11-14 04:09:28 +0000878 needsLowering = (Addr.Offset > 255 || Addr.Offset < -255);
Chad Rosieradfd2002011-11-14 20:22:27 +0000879 }
Eric Christopher73bc5b02010-10-21 19:40:30 +0000880 break;
881 case MVT::f32:
882 case MVT::f64:
883 // Floating point operands handle 8-bit offsets.
Eric Christopherfef5f312010-11-19 22:30:02 +0000884 needsLowering = ((Addr.Offset & 0xff) != Addr.Offset);
Eric Christopher73bc5b02010-10-21 19:40:30 +0000885 break;
886 }
Jim Grosbach055de2c2010-10-27 21:39:08 +0000887
Eric Christopher0a3c28b2010-11-20 22:38:27 +0000888 // If this is a stack pointer and the offset needs to be simplified then
889 // put the alloca address into a register, set the base type back to
890 // register and continue. This should almost never happen.
891 if (needsLowering && Addr.BaseType == Address::FrameIndexBase) {
Craig Topperc7242e02012-04-20 07:30:17 +0000892 const TargetRegisterClass *RC = isThumb2 ?
893 (const TargetRegisterClass*)&ARM::tGPRRegClass :
894 (const TargetRegisterClass*)&ARM::GPRRegClass;
Eric Christopher0a3c28b2010-11-20 22:38:27 +0000895 unsigned ResultReg = createResultReg(RC);
Chad Rosier0439cfc2011-11-08 21:12:00 +0000896 unsigned Opc = isThumb2 ? ARM::t2ADDri : ARM::ADDri;
Rafael Espindolaea09c592014-02-18 22:05:46 +0000897 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher0a3c28b2010-11-20 22:38:27 +0000898 TII.get(Opc), ResultReg)
899 .addFrameIndex(Addr.Base.FI)
900 .addImm(0));
901 Addr.Base.Reg = ResultReg;
902 Addr.BaseType = Address::RegBase;
903 }
904
Eric Christopher73bc5b02010-10-21 19:40:30 +0000905 // Since the offset is too large for the load/store instruction
Eric Christopher74487fc2010-09-02 00:53:56 +0000906 // get the reg+offset into a register.
Eric Christopher73bc5b02010-10-21 19:40:30 +0000907 if (needsLowering) {
Eli Friedman86caced2011-04-29 21:22:56 +0000908 Addr.Base.Reg = FastEmit_ri_(MVT::i32, ISD::ADD, Addr.Base.Reg,
909 /*Op0IsKill*/false, Addr.Offset, MVT::i32);
Eric Christopherfef5f312010-11-19 22:30:02 +0000910 Addr.Offset = 0;
Eric Christopher74487fc2010-09-02 00:53:56 +0000911 }
Eric Christopher00202ee2010-08-23 21:44:12 +0000912}
913
Chad Rosier150d35b2012-12-17 22:35:29 +0000914void ARMFastISel::AddLoadStoreOperands(MVT VT, Address &Addr,
Cameron Zwarich6528a542011-05-28 20:34:49 +0000915 const MachineInstrBuilder &MIB,
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000916 unsigned Flags, bool useAM3) {
Eric Christopher119ff7f2010-12-01 01:40:24 +0000917 // addrmode5 output depends on the selection dag addressing dividing the
918 // offset by 4 that it then later multiplies. Do this here as well.
Chad Rosier150d35b2012-12-17 22:35:29 +0000919 if (VT.SimpleTy == MVT::f32 || VT.SimpleTy == MVT::f64)
Eric Christopher119ff7f2010-12-01 01:40:24 +0000920 Addr.Offset /= 4;
Eric Christopher501d2e22011-04-29 00:03:10 +0000921
Eric Christopher119ff7f2010-12-01 01:40:24 +0000922 // Frame base works a bit differently. Handle it separately.
923 if (Addr.BaseType == Address::FrameIndexBase) {
924 int FI = Addr.Base.FI;
925 int Offset = Addr.Offset;
926 MachineMemOperand *MMO =
927 FuncInfo.MF->getMachineMemOperand(
928 MachinePointerInfo::getFixedStack(FI, Offset),
Cameron Zwarich6528a542011-05-28 20:34:49 +0000929 Flags,
Eric Christopher119ff7f2010-12-01 01:40:24 +0000930 MFI.getObjectSize(FI),
931 MFI.getObjectAlignment(FI));
932 // Now add the rest of the operands.
933 MIB.addFrameIndex(FI);
934
Bob Wilson80381f62011-12-04 00:52:23 +0000935 // ARM halfword load/stores and signed byte loads need an additional
936 // operand.
Chad Rosier2a1df882011-11-14 04:09:28 +0000937 if (useAM3) {
938 signed Imm = (Addr.Offset < 0) ? (0x100 | -Addr.Offset) : Addr.Offset;
939 MIB.addReg(0);
940 MIB.addImm(Imm);
941 } else {
942 MIB.addImm(Addr.Offset);
943 }
Eric Christopher119ff7f2010-12-01 01:40:24 +0000944 MIB.addMemOperand(MMO);
945 } else {
946 // Now add the rest of the operands.
947 MIB.addReg(Addr.Base.Reg);
Eric Christopher501d2e22011-04-29 00:03:10 +0000948
Bob Wilson80381f62011-12-04 00:52:23 +0000949 // ARM halfword load/stores and signed byte loads need an additional
950 // operand.
Chad Rosier2a1df882011-11-14 04:09:28 +0000951 if (useAM3) {
952 signed Imm = (Addr.Offset < 0) ? (0x100 | -Addr.Offset) : Addr.Offset;
953 MIB.addReg(0);
954 MIB.addImm(Imm);
955 } else {
956 MIB.addImm(Addr.Offset);
957 }
Eric Christopher119ff7f2010-12-01 01:40:24 +0000958 }
959 AddOptionalDefs(MIB);
960}
961
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000962bool ARMFastISel::ARMEmitLoad(MVT VT, unsigned &ResultReg, Address &Addr,
Chad Rosier563de602011-12-13 19:22:14 +0000963 unsigned Alignment, bool isZExt, bool allocReg) {
Eric Christopher901176a2010-08-31 01:28:42 +0000964 unsigned Opc;
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000965 bool useAM3 = false;
Chad Rosier563de602011-12-13 19:22:14 +0000966 bool needVMOV = false;
Craig Topper760b1342012-02-22 05:59:10 +0000967 const TargetRegisterClass *RC;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +0000968 switch (VT.SimpleTy) {
Eric Christopher119ff7f2010-12-01 01:40:24 +0000969 // This is mostly going to be Neon/vector support.
970 default: return false;
Chad Rosier023ede52011-11-11 02:38:59 +0000971 case MVT::i1:
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000972 case MVT::i8:
Chad Rosieradfd2002011-11-14 20:22:27 +0000973 if (isThumb2) {
974 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
975 Opc = isZExt ? ARM::t2LDRBi8 : ARM::t2LDRSBi8;
976 else
977 Opc = isZExt ? ARM::t2LDRBi12 : ARM::t2LDRSBi12;
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000978 } else {
Chad Rosieradfd2002011-11-14 20:22:27 +0000979 if (isZExt) {
980 Opc = ARM::LDRBi12;
981 } else {
982 Opc = ARM::LDRSB;
983 useAM3 = true;
984 }
Chad Rosierc8cfd3a2011-11-13 02:23:59 +0000985 }
JF Bastien652fa6a2013-06-09 00:20:24 +0000986 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRnopcRegClass;
Eric Christopher3ce9c4a2010-09-01 18:01:32 +0000987 break;
Chad Rosier2f27fab2011-11-09 21:30:12 +0000988 case MVT::i16:
Chad Rosier66bb1782012-11-09 18:25:27 +0000989 if (Alignment && Alignment < 2 && !Subtarget->allowsUnalignedMem())
Chad Rosier2364f582012-09-21 00:41:42 +0000990 return false;
991
Chad Rosieradfd2002011-11-14 20:22:27 +0000992 if (isThumb2) {
993 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
994 Opc = isZExt ? ARM::t2LDRHi8 : ARM::t2LDRSHi8;
995 else
996 Opc = isZExt ? ARM::t2LDRHi12 : ARM::t2LDRSHi12;
997 } else {
998 Opc = isZExt ? ARM::LDRH : ARM::LDRSH;
999 useAM3 = true;
1000 }
JF Bastien652fa6a2013-06-09 00:20:24 +00001001 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRnopcRegClass;
Chad Rosier2f27fab2011-11-09 21:30:12 +00001002 break;
Eric Christopher901176a2010-08-31 01:28:42 +00001003 case MVT::i32:
Chad Rosier66bb1782012-11-09 18:25:27 +00001004 if (Alignment && Alignment < 4 && !Subtarget->allowsUnalignedMem())
Chad Rosier8bf01fc2012-09-21 16:58:35 +00001005 return false;
1006
Chad Rosieradfd2002011-11-14 20:22:27 +00001007 if (isThumb2) {
1008 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
1009 Opc = ARM::t2LDRi8;
1010 else
1011 Opc = ARM::t2LDRi12;
1012 } else {
1013 Opc = ARM::LDRi12;
1014 }
JF Bastien652fa6a2013-06-09 00:20:24 +00001015 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRnopcRegClass;
Eric Christopher901176a2010-08-31 01:28:42 +00001016 break;
Eric Christopheraef6499b2010-09-18 01:59:37 +00001017 case MVT::f32:
Chad Rosierded61602011-12-14 17:55:03 +00001018 if (!Subtarget->hasVFP2()) return false;
Chad Rosier563de602011-12-13 19:22:14 +00001019 // Unaligned loads need special handling. Floats require word-alignment.
1020 if (Alignment && Alignment < 4) {
1021 needVMOV = true;
1022 VT = MVT::i32;
1023 Opc = isThumb2 ? ARM::t2LDRi12 : ARM::LDRi12;
JF Bastien652fa6a2013-06-09 00:20:24 +00001024 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRnopcRegClass;
Chad Rosier563de602011-12-13 19:22:14 +00001025 } else {
1026 Opc = ARM::VLDRS;
1027 RC = TLI.getRegClassFor(VT);
1028 }
Eric Christopheraef6499b2010-09-18 01:59:37 +00001029 break;
1030 case MVT::f64:
Chad Rosierded61602011-12-14 17:55:03 +00001031 if (!Subtarget->hasVFP2()) return false;
Chad Rosiera26979b2011-12-14 17:26:05 +00001032 // FIXME: Unaligned loads need special handling. Doublewords require
1033 // word-alignment.
1034 if (Alignment && Alignment < 4)
Chad Rosier563de602011-12-13 19:22:14 +00001035 return false;
Chad Rosiera26979b2011-12-14 17:26:05 +00001036
Eric Christopheraef6499b2010-09-18 01:59:37 +00001037 Opc = ARM::VLDRD;
Eric Christophera2583ea2010-10-07 05:50:44 +00001038 RC = TLI.getRegClassFor(VT);
Eric Christopheraef6499b2010-09-18 01:59:37 +00001039 break;
Eric Christopher761e7fb2010-08-25 07:23:49 +00001040 }
Eric Christopher119ff7f2010-12-01 01:40:24 +00001041 // Simplify this down to something we can handle.
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001042 ARMSimplifyAddress(Addr, VT, useAM3);
Jim Grosbach055de2c2010-10-27 21:39:08 +00001043
Eric Christopher119ff7f2010-12-01 01:40:24 +00001044 // Create the base instruction, then add the operands.
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001045 if (allocReg)
1046 ResultReg = createResultReg(RC);
1047 assert (ResultReg > 255 && "Expected an allocated virtual register.");
Rafael Espindolaea09c592014-02-18 22:05:46 +00001048 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher119ff7f2010-12-01 01:40:24 +00001049 TII.get(Opc), ResultReg);
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001050 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOLoad, useAM3);
Chad Rosier563de602011-12-13 19:22:14 +00001051
1052 // If we had an unaligned load of a float we've converted it to an regular
1053 // load. Now we must move from the GRP to the FP register.
1054 if (needVMOV) {
1055 unsigned MoveReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001056 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier563de602011-12-13 19:22:14 +00001057 TII.get(ARM::VMOVSR), MoveReg)
1058 .addReg(ResultReg));
1059 ResultReg = MoveReg;
1060 }
Eric Christopher901176a2010-08-31 01:28:42 +00001061 return true;
Eric Christopher761e7fb2010-08-25 07:23:49 +00001062}
1063
Eric Christopher29ab6d12010-09-27 06:02:23 +00001064bool ARMFastISel::SelectLoad(const Instruction *I) {
Eli Friedmanf3dd6da2011-09-02 22:33:24 +00001065 // Atomic loads need special handling.
1066 if (cast<LoadInst>(I)->isAtomic())
1067 return false;
1068
Eric Christopher860fc932010-09-10 00:34:35 +00001069 // Verify we have a legal type before going any further.
Duncan Sandsf5dda012010-11-03 11:35:31 +00001070 MVT VT;
Eric Christopher860fc932010-09-10 00:34:35 +00001071 if (!isLoadTypeLegal(I->getType(), VT))
1072 return false;
1073
Eric Christopher119ff7f2010-12-01 01:40:24 +00001074 // See if we can handle this address.
Eric Christopherfef5f312010-11-19 22:30:02 +00001075 Address Addr;
Eric Christopher119ff7f2010-12-01 01:40:24 +00001076 if (!ARMComputeAddress(I->getOperand(0), Addr)) return false;
Eric Christopher860fc932010-09-10 00:34:35 +00001077
1078 unsigned ResultReg;
Chad Rosier563de602011-12-13 19:22:14 +00001079 if (!ARMEmitLoad(VT, ResultReg, Addr, cast<LoadInst>(I)->getAlignment()))
1080 return false;
Eric Christopher860fc932010-09-10 00:34:35 +00001081 UpdateValueMap(I, ResultReg);
1082 return true;
1083}
1084
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00001085bool ARMFastISel::ARMEmitStore(MVT VT, unsigned SrcReg, Address &Addr,
Bob Wilson80381f62011-12-04 00:52:23 +00001086 unsigned Alignment) {
Eric Christopher74487fc2010-09-02 00:53:56 +00001087 unsigned StrOpc;
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001088 bool useAM3 = false;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00001089 switch (VT.SimpleTy) {
Eric Christopher119ff7f2010-12-01 01:40:24 +00001090 // This is mostly going to be Neon/vector support.
Eric Christopher74487fc2010-09-02 00:53:56 +00001091 default: return false;
Eric Christopher1e43892e2010-11-02 23:59:09 +00001092 case MVT::i1: {
Craig Topperc7242e02012-04-20 07:30:17 +00001093 unsigned Res = createResultReg(isThumb2 ?
1094 (const TargetRegisterClass*)&ARM::tGPRRegClass :
1095 (const TargetRegisterClass*)&ARM::GPRRegClass);
Chad Rosier0439cfc2011-11-08 21:12:00 +00001096 unsigned Opc = isThumb2 ? ARM::t2ANDri : ARM::ANDri;
Joey Goulyc7cda1c2013-08-23 15:20:56 +00001097 SrcReg = constrainOperandRegClass(TII.get(Opc), SrcReg, 1);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001098 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher1e43892e2010-11-02 23:59:09 +00001099 TII.get(Opc), Res)
1100 .addReg(SrcReg).addImm(1));
1101 SrcReg = Res;
1102 } // Fallthrough here.
Eric Christophere4b3d6b2010-10-15 18:02:07 +00001103 case MVT::i8:
Chad Rosieradfd2002011-11-14 20:22:27 +00001104 if (isThumb2) {
1105 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
1106 StrOpc = ARM::t2STRBi8;
1107 else
1108 StrOpc = ARM::t2STRBi12;
1109 } else {
1110 StrOpc = ARM::STRBi12;
1111 }
Eric Christopher7cd5cda2010-10-12 05:39:06 +00001112 break;
1113 case MVT::i16:
Chad Rosier66bb1782012-11-09 18:25:27 +00001114 if (Alignment && Alignment < 2 && !Subtarget->allowsUnalignedMem())
Chad Rosier2364f582012-09-21 00:41:42 +00001115 return false;
1116
Chad Rosieradfd2002011-11-14 20:22:27 +00001117 if (isThumb2) {
1118 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
1119 StrOpc = ARM::t2STRHi8;
1120 else
1121 StrOpc = ARM::t2STRHi12;
1122 } else {
1123 StrOpc = ARM::STRH;
1124 useAM3 = true;
1125 }
Eric Christopher7cd5cda2010-10-12 05:39:06 +00001126 break;
Eric Christopherc918d552010-10-16 01:10:35 +00001127 case MVT::i32:
Chad Rosier66bb1782012-11-09 18:25:27 +00001128 if (Alignment && Alignment < 4 && !Subtarget->allowsUnalignedMem())
Chad Rosier8bf01fc2012-09-21 16:58:35 +00001129 return false;
1130
Chad Rosieradfd2002011-11-14 20:22:27 +00001131 if (isThumb2) {
1132 if (Addr.Offset < 0 && Addr.Offset > -256 && Subtarget->hasV6T2Ops())
1133 StrOpc = ARM::t2STRi8;
1134 else
1135 StrOpc = ARM::t2STRi12;
1136 } else {
1137 StrOpc = ARM::STRi12;
1138 }
Eric Christopherc918d552010-10-16 01:10:35 +00001139 break;
Eric Christopherc3e118e2010-09-02 23:43:26 +00001140 case MVT::f32:
1141 if (!Subtarget->hasVFP2()) return false;
Chad Rosierc77830d2011-12-06 01:44:17 +00001142 // Unaligned stores need special handling. Floats require word-alignment.
Chad Rosierec3b77e2011-12-03 02:21:57 +00001143 if (Alignment && Alignment < 4) {
1144 unsigned MoveReg = createResultReg(TLI.getRegClassFor(MVT::i32));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001145 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosierec3b77e2011-12-03 02:21:57 +00001146 TII.get(ARM::VMOVRS), MoveReg)
1147 .addReg(SrcReg));
1148 SrcReg = MoveReg;
1149 VT = MVT::i32;
1150 StrOpc = isThumb2 ? ARM::t2STRi12 : ARM::STRi12;
Chad Rosierfce28912011-12-14 17:32:02 +00001151 } else {
1152 StrOpc = ARM::VSTRS;
Chad Rosierec3b77e2011-12-03 02:21:57 +00001153 }
Eric Christopherc3e118e2010-09-02 23:43:26 +00001154 break;
1155 case MVT::f64:
1156 if (!Subtarget->hasVFP2()) return false;
Chad Rosierc77830d2011-12-06 01:44:17 +00001157 // FIXME: Unaligned stores need special handling. Doublewords require
1158 // word-alignment.
Chad Rosiera26979b2011-12-14 17:26:05 +00001159 if (Alignment && Alignment < 4)
Chad Rosierec3b77e2011-12-03 02:21:57 +00001160 return false;
Chad Rosiera26979b2011-12-14 17:26:05 +00001161
Eric Christopherc3e118e2010-09-02 23:43:26 +00001162 StrOpc = ARM::VSTRD;
1163 break;
Eric Christopher74487fc2010-09-02 00:53:56 +00001164 }
Eric Christopher119ff7f2010-12-01 01:40:24 +00001165 // Simplify this down to something we can handle.
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001166 ARMSimplifyAddress(Addr, VT, useAM3);
Jim Grosbach055de2c2010-10-27 21:39:08 +00001167
Eric Christopher119ff7f2010-12-01 01:40:24 +00001168 // Create the base instruction, then add the operands.
Joey Goulyc7cda1c2013-08-23 15:20:56 +00001169 SrcReg = constrainOperandRegClass(TII.get(StrOpc), SrcReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001170 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher119ff7f2010-12-01 01:40:24 +00001171 TII.get(StrOpc))
Chad Rosierce619dd2011-11-17 01:16:53 +00001172 .addReg(SrcReg);
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00001173 AddLoadStoreOperands(VT, Addr, MIB, MachineMemOperand::MOStore, useAM3);
Eric Christopher74487fc2010-09-02 00:53:56 +00001174 return true;
1175}
1176
Eric Christopher29ab6d12010-09-27 06:02:23 +00001177bool ARMFastISel::SelectStore(const Instruction *I) {
Eric Christopher74487fc2010-09-02 00:53:56 +00001178 Value *Op0 = I->getOperand(0);
1179 unsigned SrcReg = 0;
1180
Eli Friedmanf3dd6da2011-09-02 22:33:24 +00001181 // Atomic stores need special handling.
1182 if (cast<StoreInst>(I)->isAtomic())
1183 return false;
1184
Eric Christopher119ff7f2010-12-01 01:40:24 +00001185 // Verify we have a legal type before going any further.
Duncan Sandsf5dda012010-11-03 11:35:31 +00001186 MVT VT;
Eric Christopher74487fc2010-09-02 00:53:56 +00001187 if (!isLoadTypeLegal(I->getOperand(0)->getType(), VT))
Eric Christopherfde5a3d2010-09-01 22:16:27 +00001188 return false;
Eric Christopher74487fc2010-09-02 00:53:56 +00001189
Eric Christopher92db2012010-09-02 01:48:11 +00001190 // Get the value to be stored into a register.
1191 SrcReg = getRegForValue(Op0);
Eric Christopher119ff7f2010-12-01 01:40:24 +00001192 if (SrcReg == 0) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001193
Eric Christopher119ff7f2010-12-01 01:40:24 +00001194 // See if we can handle this address.
Eric Christopherfef5f312010-11-19 22:30:02 +00001195 Address Addr;
Eric Christopherfef5f312010-11-19 22:30:02 +00001196 if (!ARMComputeAddress(I->getOperand(1), Addr))
Eric Christopher74487fc2010-09-02 00:53:56 +00001197 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001198
Chad Rosierec3b77e2011-12-03 02:21:57 +00001199 if (!ARMEmitStore(VT, SrcReg, Addr, cast<StoreInst>(I)->getAlignment()))
1200 return false;
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001201 return true;
1202}
1203
1204static ARMCC::CondCodes getComparePred(CmpInst::Predicate Pred) {
1205 switch (Pred) {
1206 // Needs two compares...
1207 case CmpInst::FCMP_ONE:
Eric Christopher7ac602b2010-10-11 08:38:55 +00001208 case CmpInst::FCMP_UEQ:
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001209 default:
Eric Christopherb2abb502010-11-02 01:24:49 +00001210 // AL is our "false" for now. The other two need more compares.
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001211 return ARMCC::AL;
1212 case CmpInst::ICMP_EQ:
1213 case CmpInst::FCMP_OEQ:
1214 return ARMCC::EQ;
1215 case CmpInst::ICMP_SGT:
1216 case CmpInst::FCMP_OGT:
1217 return ARMCC::GT;
1218 case CmpInst::ICMP_SGE:
1219 case CmpInst::FCMP_OGE:
1220 return ARMCC::GE;
1221 case CmpInst::ICMP_UGT:
1222 case CmpInst::FCMP_UGT:
1223 return ARMCC::HI;
1224 case CmpInst::FCMP_OLT:
1225 return ARMCC::MI;
1226 case CmpInst::ICMP_ULE:
1227 case CmpInst::FCMP_OLE:
1228 return ARMCC::LS;
1229 case CmpInst::FCMP_ORD:
1230 return ARMCC::VC;
1231 case CmpInst::FCMP_UNO:
1232 return ARMCC::VS;
1233 case CmpInst::FCMP_UGE:
1234 return ARMCC::PL;
1235 case CmpInst::ICMP_SLT:
1236 case CmpInst::FCMP_ULT:
Eric Christopher7ac602b2010-10-11 08:38:55 +00001237 return ARMCC::LT;
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001238 case CmpInst::ICMP_SLE:
1239 case CmpInst::FCMP_ULE:
1240 return ARMCC::LE;
1241 case CmpInst::FCMP_UNE:
1242 case CmpInst::ICMP_NE:
1243 return ARMCC::NE;
1244 case CmpInst::ICMP_UGE:
1245 return ARMCC::HS;
1246 case CmpInst::ICMP_ULT:
1247 return ARMCC::LO;
1248 }
Eric Christopherfde5a3d2010-09-01 22:16:27 +00001249}
1250
Eric Christopher29ab6d12010-09-27 06:02:23 +00001251bool ARMFastISel::SelectBranch(const Instruction *I) {
Eric Christopher6aaed722010-09-03 00:35:47 +00001252 const BranchInst *BI = cast<BranchInst>(I);
1253 MachineBasicBlock *TBB = FuncInfo.MBBMap[BI->getSuccessor(0)];
1254 MachineBasicBlock *FBB = FuncInfo.MBBMap[BI->getSuccessor(1)];
Eric Christopher2ff757d2010-09-09 01:06:51 +00001255
Eric Christopher6aaed722010-09-03 00:35:47 +00001256 // Simple branch support.
Jim Grosbach68147ee2010-11-09 19:22:26 +00001257
Eric Christopher5c308f82010-10-29 21:08:19 +00001258 // If we can, avoid recomputing the compare - redoing it could lead to wonky
1259 // behavior.
Eric Christopher5c308f82010-10-29 21:08:19 +00001260 if (const CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition())) {
Chad Rosiereafbf3f2011-10-26 23:17:28 +00001261 if (CI->hasOneUse() && (CI->getParent() == I->getParent())) {
Eric Christopher5c308f82010-10-29 21:08:19 +00001262
1263 // Get the compare predicate.
Eric Christopher26b8ac42011-04-29 21:56:31 +00001264 // Try to take advantage of fallthrough opportunities.
1265 CmpInst::Predicate Predicate = CI->getPredicate();
1266 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1267 std::swap(TBB, FBB);
1268 Predicate = CmpInst::getInversePredicate(Predicate);
1269 }
1270
1271 ARMCC::CondCodes ARMPred = getComparePred(Predicate);
Eric Christopher5c308f82010-10-29 21:08:19 +00001272
1273 // We may not handle every CC for now.
1274 if (ARMPred == ARMCC::AL) return false;
1275
Chad Rosiereafbf3f2011-10-26 23:17:28 +00001276 // Emit the compare.
Chad Rosier9cf803c2011-11-02 18:08:25 +00001277 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
Chad Rosiereafbf3f2011-10-26 23:17:28 +00001278 return false;
Jim Grosbach68147ee2010-11-09 19:22:26 +00001279
Chad Rosier0439cfc2011-11-08 21:12:00 +00001280 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001281 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BrOpc))
Eric Christopher5c308f82010-10-29 21:08:19 +00001282 .addMBB(TBB).addImm(ARMPred).addReg(ARM::CPSR);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001283 FastEmitBranch(FBB, DbgLoc);
Eric Christopher5c308f82010-10-29 21:08:19 +00001284 FuncInfo.MBB->addSuccessor(TBB);
1285 return true;
1286 }
Eric Christopher8d46b472011-04-29 20:02:39 +00001287 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1288 MVT SourceVT;
1289 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
Eli Friedmanc7035512011-05-25 23:49:02 +00001290 (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
Chad Rosier0439cfc2011-11-08 21:12:00 +00001291 unsigned TstOpc = isThumb2 ? ARM::t2TSTri : ARM::TSTri;
Eric Christopher8d46b472011-04-29 20:02:39 +00001292 unsigned OpReg = getRegForValue(TI->getOperand(0));
Jim Grosbach667b1472013-08-26 20:22:05 +00001293 OpReg = constrainOperandRegClass(TII.get(TstOpc), OpReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001294 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher8d46b472011-04-29 20:02:39 +00001295 TII.get(TstOpc))
1296 .addReg(OpReg).addImm(1));
1297
1298 unsigned CCMode = ARMCC::NE;
1299 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1300 std::swap(TBB, FBB);
1301 CCMode = ARMCC::EQ;
1302 }
1303
Chad Rosier0439cfc2011-11-08 21:12:00 +00001304 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001305 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BrOpc))
Eric Christopher8d46b472011-04-29 20:02:39 +00001306 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
1307
Rafael Espindolaea09c592014-02-18 22:05:46 +00001308 FastEmitBranch(FBB, DbgLoc);
Eric Christopher8d46b472011-04-29 20:02:39 +00001309 FuncInfo.MBB->addSuccessor(TBB);
1310 return true;
1311 }
Chad Rosierd24e7e1d2011-10-27 00:21:16 +00001312 } else if (const ConstantInt *CI =
1313 dyn_cast<ConstantInt>(BI->getCondition())) {
1314 uint64_t Imm = CI->getZExtValue();
1315 MachineBasicBlock *Target = (Imm == 0) ? FBB : TBB;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001316 FastEmitBranch(Target, DbgLoc);
Chad Rosierd24e7e1d2011-10-27 00:21:16 +00001317 return true;
Eric Christopher5c308f82010-10-29 21:08:19 +00001318 }
Jim Grosbach68147ee2010-11-09 19:22:26 +00001319
Eric Christopher5c308f82010-10-29 21:08:19 +00001320 unsigned CmpReg = getRegForValue(BI->getCondition());
1321 if (CmpReg == 0) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001322
Stuart Hastingsebddfe62011-04-16 03:31:26 +00001323 // We've been divorced from our compare! Our block was split, and
1324 // now our compare lives in a predecessor block. We musn't
1325 // re-compare here, as the children of the compare aren't guaranteed
1326 // live across the block boundary (we *could* check for this).
1327 // Regardless, the compare has been done in the predecessor block,
1328 // and it left a value for us in a virtual register. Ergo, we test
1329 // the one-bit value left in the virtual register.
Chad Rosier0439cfc2011-11-08 21:12:00 +00001330 unsigned TstOpc = isThumb2 ? ARM::t2TSTri : ARM::TSTri;
Jim Grosbach667b1472013-08-26 20:22:05 +00001331 CmpReg = constrainOperandRegClass(TII.get(TstOpc), CmpReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001332 AddOptionalDefs(
1333 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(TstOpc))
1334 .addReg(CmpReg)
1335 .addImm(1));
Eric Christopher7ac602b2010-10-11 08:38:55 +00001336
Eric Christopher4f012fd2011-04-28 16:52:09 +00001337 unsigned CCMode = ARMCC::NE;
1338 if (FuncInfo.MBB->isLayoutSuccessor(TBB)) {
1339 std::swap(TBB, FBB);
1340 CCMode = ARMCC::EQ;
1341 }
1342
Chad Rosier0439cfc2011-11-08 21:12:00 +00001343 unsigned BrOpc = isThumb2 ? ARM::t2Bcc : ARM::Bcc;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001344 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(BrOpc))
Eric Christopher4f012fd2011-04-28 16:52:09 +00001345 .addMBB(TBB).addImm(CCMode).addReg(ARM::CPSR);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001346 FastEmitBranch(FBB, DbgLoc);
Eric Christopher6aaed722010-09-03 00:35:47 +00001347 FuncInfo.MBB->addSuccessor(TBB);
Eric Christopher7ac602b2010-10-11 08:38:55 +00001348 return true;
Eric Christopher6aaed722010-09-03 00:35:47 +00001349}
1350
Chad Rosierded4c992012-02-07 23:56:08 +00001351bool ARMFastISel::SelectIndirectBr(const Instruction *I) {
1352 unsigned AddrReg = getRegForValue(I->getOperand(0));
1353 if (AddrReg == 0) return false;
1354
1355 unsigned Opc = isThumb2 ? ARM::tBRIND : ARM::BX;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001356 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1357 TII.get(Opc)).addReg(AddrReg));
Bill Wendling12cda502012-10-22 23:30:04 +00001358
1359 const IndirectBrInst *IB = cast<IndirectBrInst>(I);
1360 for (unsigned i = 0, e = IB->getNumSuccessors(); i != e; ++i)
1361 FuncInfo.MBB->addSuccessor(FuncInfo.MBBMap[IB->getSuccessor(i)]);
1362
Jush Luac96b762012-06-14 06:08:19 +00001363 return true;
Chad Rosierded4c992012-02-07 23:56:08 +00001364}
1365
Chad Rosier9cf803c2011-11-02 18:08:25 +00001366bool ARMFastISel::ARMEmitCmp(const Value *Src1Value, const Value *Src2Value,
1367 bool isZExt) {
Chad Rosier78127d32011-10-26 23:25:44 +00001368 Type *Ty = Src1Value->getType();
Patrik Hagglundc494d242012-12-17 14:30:06 +00001369 EVT SrcEVT = TLI.getValueType(Ty, true);
1370 if (!SrcEVT.isSimple()) return false;
1371 MVT SrcVT = SrcEVT.getSimpleVT();
Eric Christopher2ff757d2010-09-09 01:06:51 +00001372
Chad Rosier78127d32011-10-26 23:25:44 +00001373 bool isFloat = (Ty->isFloatTy() || Ty->isDoubleTy());
1374 if (isFloat && !Subtarget->hasVFP2())
Eric Christopherc3e9c402010-09-08 23:13:45 +00001375 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001376
Chad Rosier595d4192011-11-09 03:22:02 +00001377 // Check to see if the 2nd operand is a constant that we can encode directly
1378 // in the compare.
Chad Rosiere19b0a92011-11-11 06:27:41 +00001379 int Imm = 0;
1380 bool UseImm = false;
Chad Rosier595d4192011-11-09 03:22:02 +00001381 bool isNegativeImm = false;
Chad Rosieraf13d762011-11-16 00:32:20 +00001382 // FIXME: At -O0 we don't have anything that canonicalizes operand order.
1383 // Thus, Src1Value may be a ConstantInt, but we're missing it.
Chad Rosier595d4192011-11-09 03:22:02 +00001384 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(Src2Value)) {
1385 if (SrcVT == MVT::i32 || SrcVT == MVT::i16 || SrcVT == MVT::i8 ||
1386 SrcVT == MVT::i1) {
1387 const APInt &CIVal = ConstInt->getValue();
Chad Rosiere19b0a92011-11-11 06:27:41 +00001388 Imm = (isZExt) ? (int)CIVal.getZExtValue() : (int)CIVal.getSExtValue();
Chad Rosier26d05882012-03-15 22:54:20 +00001389 // For INT_MIN/LONG_MIN (i.e., 0x80000000) we need to use a cmp, rather
Jim Grosbach1a597112014-04-03 23:43:18 +00001390 // then a cmn, because there is no way to represent 2147483648 as a
Chad Rosier26d05882012-03-15 22:54:20 +00001391 // signed 32-bit int.
1392 if (Imm < 0 && Imm != (int)0x80000000) {
1393 isNegativeImm = true;
1394 Imm = -Imm;
Chad Rosier3fbd0942011-11-10 01:30:39 +00001395 }
Chad Rosier26d05882012-03-15 22:54:20 +00001396 UseImm = isThumb2 ? (ARM_AM::getT2SOImmVal(Imm) != -1) :
1397 (ARM_AM::getSOImmVal(Imm) != -1);
Chad Rosier595d4192011-11-09 03:22:02 +00001398 }
1399 } else if (const ConstantFP *ConstFP = dyn_cast<ConstantFP>(Src2Value)) {
1400 if (SrcVT == MVT::f32 || SrcVT == MVT::f64)
1401 if (ConstFP->isZero() && !ConstFP->isNegative())
Chad Rosiere19b0a92011-11-11 06:27:41 +00001402 UseImm = true;
Chad Rosier595d4192011-11-09 03:22:02 +00001403 }
1404
Eric Christopherc3e9c402010-09-08 23:13:45 +00001405 unsigned CmpOpc;
Chad Rosier595d4192011-11-09 03:22:02 +00001406 bool isICmp = true;
Chad Rosier9cf803c2011-11-02 18:08:25 +00001407 bool needsExt = false;
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00001408 switch (SrcVT.SimpleTy) {
Eric Christopherc3e9c402010-09-08 23:13:45 +00001409 default: return false;
1410 // TODO: Verify compares.
1411 case MVT::f32:
Chad Rosier595d4192011-11-09 03:22:02 +00001412 isICmp = false;
Chad Rosiere19b0a92011-11-11 06:27:41 +00001413 CmpOpc = UseImm ? ARM::VCMPEZS : ARM::VCMPES;
Eric Christopherc3e9c402010-09-08 23:13:45 +00001414 break;
1415 case MVT::f64:
Chad Rosier595d4192011-11-09 03:22:02 +00001416 isICmp = false;
Chad Rosiere19b0a92011-11-11 06:27:41 +00001417 CmpOpc = UseImm ? ARM::VCMPEZD : ARM::VCMPED;
Eric Christopherc3e9c402010-09-08 23:13:45 +00001418 break;
Chad Rosier9cf803c2011-11-02 18:08:25 +00001419 case MVT::i1:
1420 case MVT::i8:
1421 case MVT::i16:
1422 needsExt = true;
1423 // Intentional fall-through.
Eric Christopherc3e9c402010-09-08 23:13:45 +00001424 case MVT::i32:
Chad Rosier595d4192011-11-09 03:22:02 +00001425 if (isThumb2) {
Chad Rosiere19b0a92011-11-11 06:27:41 +00001426 if (!UseImm)
Chad Rosier595d4192011-11-09 03:22:02 +00001427 CmpOpc = ARM::t2CMPrr;
1428 else
Bill Wendling4b796472012-06-11 08:07:26 +00001429 CmpOpc = isNegativeImm ? ARM::t2CMNri : ARM::t2CMPri;
Chad Rosier595d4192011-11-09 03:22:02 +00001430 } else {
Chad Rosiere19b0a92011-11-11 06:27:41 +00001431 if (!UseImm)
Chad Rosier595d4192011-11-09 03:22:02 +00001432 CmpOpc = ARM::CMPrr;
1433 else
Bill Wendling4b796472012-06-11 08:07:26 +00001434 CmpOpc = isNegativeImm ? ARM::CMNri : ARM::CMPri;
Chad Rosier595d4192011-11-09 03:22:02 +00001435 }
Eric Christopherc3e9c402010-09-08 23:13:45 +00001436 break;
1437 }
1438
Chad Rosier9cf803c2011-11-02 18:08:25 +00001439 unsigned SrcReg1 = getRegForValue(Src1Value);
1440 if (SrcReg1 == 0) return false;
Chad Rosier59a20192011-10-26 22:47:55 +00001441
Duncan Sands12330652011-11-28 10:31:27 +00001442 unsigned SrcReg2 = 0;
Chad Rosiere19b0a92011-11-11 06:27:41 +00001443 if (!UseImm) {
Chad Rosier595d4192011-11-09 03:22:02 +00001444 SrcReg2 = getRegForValue(Src2Value);
1445 if (SrcReg2 == 0) return false;
1446 }
Chad Rosier9cf803c2011-11-02 18:08:25 +00001447
1448 // We have i1, i8, or i16, we need to either zero extend or sign extend.
1449 if (needsExt) {
Chad Rosiera0d3c752012-02-16 22:45:33 +00001450 SrcReg1 = ARMEmitIntExt(SrcVT, SrcReg1, MVT::i32, isZExt);
1451 if (SrcReg1 == 0) return false;
Chad Rosiere19b0a92011-11-11 06:27:41 +00001452 if (!UseImm) {
Chad Rosiera0d3c752012-02-16 22:45:33 +00001453 SrcReg2 = ARMEmitIntExt(SrcVT, SrcReg2, MVT::i32, isZExt);
1454 if (SrcReg2 == 0) return false;
Chad Rosier595d4192011-11-09 03:22:02 +00001455 }
Chad Rosier9cf803c2011-11-02 18:08:25 +00001456 }
Chad Rosier59a20192011-10-26 22:47:55 +00001457
Jim Grosbachd7866792013-08-16 23:37:40 +00001458 const MCInstrDesc &II = TII.get(CmpOpc);
1459 SrcReg1 = constrainOperandRegClass(II, SrcReg1, 0);
Chad Rosiere19b0a92011-11-11 06:27:41 +00001460 if (!UseImm) {
Jim Grosbachd7866792013-08-16 23:37:40 +00001461 SrcReg2 = constrainOperandRegClass(II, SrcReg2, 1);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001462 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Chad Rosier595d4192011-11-09 03:22:02 +00001463 .addReg(SrcReg1).addReg(SrcReg2));
1464 } else {
1465 MachineInstrBuilder MIB;
Rafael Espindolaea09c592014-02-18 22:05:46 +00001466 MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
Chad Rosier595d4192011-11-09 03:22:02 +00001467 .addReg(SrcReg1);
1468
1469 // Only add immediate for icmp as the immediate for fcmp is an implicit 0.0.
1470 if (isICmp)
Chad Rosiere19b0a92011-11-11 06:27:41 +00001471 MIB.addImm(Imm);
Chad Rosier595d4192011-11-09 03:22:02 +00001472 AddOptionalDefs(MIB);
1473 }
Chad Rosier78127d32011-10-26 23:25:44 +00001474
1475 // For floating point we need to move the result to a comparison register
1476 // that we can then use for branches.
1477 if (Ty->isFloatTy() || Ty->isDoubleTy())
Rafael Espindolaea09c592014-02-18 22:05:46 +00001478 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier78127d32011-10-26 23:25:44 +00001479 TII.get(ARM::FMSTAT)));
Chad Rosier59a20192011-10-26 22:47:55 +00001480 return true;
1481}
1482
1483bool ARMFastISel::SelectCmp(const Instruction *I) {
1484 const CmpInst *CI = cast<CmpInst>(I);
1485
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001486 // Get the compare predicate.
1487 ARMCC::CondCodes ARMPred = getComparePred(CI->getPredicate());
Eric Christopher7ac602b2010-10-11 08:38:55 +00001488
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001489 // We may not handle every CC for now.
1490 if (ARMPred == ARMCC::AL) return false;
1491
Chad Rosier59a20192011-10-26 22:47:55 +00001492 // Emit the compare.
Chad Rosier9cf803c2011-11-02 18:08:25 +00001493 if (!ARMEmitCmp(CI->getOperand(0), CI->getOperand(1), CI->isUnsigned()))
Chad Rosier59a20192011-10-26 22:47:55 +00001494 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001495
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001496 // Now set a register based on the comparison. Explicitly set the predicates
1497 // here.
Chad Rosier0439cfc2011-11-08 21:12:00 +00001498 unsigned MovCCOpc = isThumb2 ? ARM::t2MOVCCi : ARM::MOVCCi;
Craig Topperc7242e02012-04-20 07:30:17 +00001499 const TargetRegisterClass *RC = isThumb2 ?
1500 (const TargetRegisterClass*)&ARM::rGPRRegClass :
1501 (const TargetRegisterClass*)&ARM::GPRRegClass;
Eric Christopher76a97522010-10-07 05:39:19 +00001502 unsigned DestReg = createResultReg(RC);
Chad Rosier78127d32011-10-26 23:25:44 +00001503 Constant *Zero = ConstantInt::get(Type::getInt32Ty(*Context), 0);
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001504 unsigned ZeroReg = TargetMaterializeConstant(Zero);
Chad Rosier377f1f22012-03-07 20:59:26 +00001505 // ARMEmitCmp emits a FMSTAT when necessary, so it's always safe to use CPSR.
Rafael Espindolaea09c592014-02-18 22:05:46 +00001506 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovCCOpc), DestReg)
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001507 .addReg(ZeroReg).addImm(1)
Chad Rosier377f1f22012-03-07 20:59:26 +00001508 .addImm(ARMPred).addReg(ARM::CPSR);
Eric Christopher3a7e8cd2010-09-29 01:14:47 +00001509
Eric Christopher2ccc1aa2010-09-17 22:28:18 +00001510 UpdateValueMap(I, DestReg);
Eric Christopherc3e9c402010-09-08 23:13:45 +00001511 return true;
1512}
1513
Eric Christopher29ab6d12010-09-27 06:02:23 +00001514bool ARMFastISel::SelectFPExt(const Instruction *I) {
Eric Christopherf14b9bf2010-09-09 00:26:48 +00001515 // Make sure we have VFP and that we're extending float to double.
1516 if (!Subtarget->hasVFP2()) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001517
Eric Christopherf14b9bf2010-09-09 00:26:48 +00001518 Value *V = I->getOperand(0);
1519 if (!I->getType()->isDoubleTy() ||
1520 !V->getType()->isFloatTy()) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001521
Eric Christopherf14b9bf2010-09-09 00:26:48 +00001522 unsigned Op = getRegForValue(V);
1523 if (Op == 0) return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001524
Craig Topperc7242e02012-04-20 07:30:17 +00001525 unsigned Result = createResultReg(&ARM::DPRRegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001526 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher82b05d72010-09-09 20:36:19 +00001527 TII.get(ARM::VCVTDS), Result)
Eric Christopher5903c0b2010-09-09 20:26:31 +00001528 .addReg(Op));
1529 UpdateValueMap(I, Result);
1530 return true;
1531}
1532
Eric Christopher29ab6d12010-09-27 06:02:23 +00001533bool ARMFastISel::SelectFPTrunc(const Instruction *I) {
Eric Christopher5903c0b2010-09-09 20:26:31 +00001534 // Make sure we have VFP and that we're truncating double to float.
1535 if (!Subtarget->hasVFP2()) return false;
1536
1537 Value *V = I->getOperand(0);
Eric Christopher8cfc4592010-10-05 23:13:24 +00001538 if (!(I->getType()->isFloatTy() &&
1539 V->getType()->isDoubleTy())) return false;
Eric Christopher5903c0b2010-09-09 20:26:31 +00001540
1541 unsigned Op = getRegForValue(V);
1542 if (Op == 0) return false;
1543
Craig Topperc7242e02012-04-20 07:30:17 +00001544 unsigned Result = createResultReg(&ARM::SPRRegClass);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001545 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher82b05d72010-09-09 20:36:19 +00001546 TII.get(ARM::VCVTSD), Result)
Eric Christopherf14b9bf2010-09-09 00:26:48 +00001547 .addReg(Op));
1548 UpdateValueMap(I, Result);
1549 return true;
1550}
1551
Chad Rosiere023d5d2012-02-03 21:14:11 +00001552bool ARMFastISel::SelectIToFP(const Instruction *I, bool isSigned) {
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001553 // Make sure we have VFP.
1554 if (!Subtarget->hasVFP2()) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001555
Duncan Sandsf5dda012010-11-03 11:35:31 +00001556 MVT DstVT;
Chris Lattner229907c2011-07-18 04:54:35 +00001557 Type *Ty = I->getType();
Eric Christopher4bd70472010-09-09 21:44:45 +00001558 if (!isTypeLegal(Ty, DstVT))
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001559 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001560
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001561 Value *Src = I->getOperand(0);
Patrik Hagglundc494d242012-12-17 14:30:06 +00001562 EVT SrcEVT = TLI.getValueType(Src->getType(), true);
1563 if (!SrcEVT.isSimple())
1564 return false;
1565 MVT SrcVT = SrcEVT.getSimpleVT();
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001566 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
Eli Friedman5bbb7562011-05-25 19:09:45 +00001567 return false;
1568
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001569 unsigned SrcReg = getRegForValue(Src);
1570 if (SrcReg == 0) return false;
1571
1572 // Handle sign-extension.
1573 if (SrcVT == MVT::i16 || SrcVT == MVT::i8) {
Chad Rosier62a144f2012-12-17 19:59:43 +00001574 SrcReg = ARMEmitIntExt(SrcVT, SrcReg, MVT::i32,
Chad Rosiere023d5d2012-02-03 21:14:11 +00001575 /*isZExt*/!isSigned);
Chad Rosiera0d3c752012-02-16 22:45:33 +00001576 if (SrcReg == 0) return false;
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001577 }
Eric Christopher7ac602b2010-10-11 08:38:55 +00001578
Eric Christopher860fc932010-09-10 00:34:35 +00001579 // The conversion routine works on fp-reg to fp-reg and the operand above
1580 // was an integer, move it to the fp registers if possible.
Chad Rosierbf5f4be2011-11-03 02:04:59 +00001581 unsigned FP = ARMMoveToFPReg(MVT::f32, SrcReg);
Eric Christopher4bd70472010-09-09 21:44:45 +00001582 if (FP == 0) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001583
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001584 unsigned Opc;
Chad Rosiere023d5d2012-02-03 21:14:11 +00001585 if (Ty->isFloatTy()) Opc = isSigned ? ARM::VSITOS : ARM::VUITOS;
1586 else if (Ty->isDoubleTy()) Opc = isSigned ? ARM::VSITOD : ARM::VUITOD;
Chad Rosier17847ae2011-08-31 23:49:05 +00001587 else return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001588
Eric Christopher4bd70472010-09-09 21:44:45 +00001589 unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001590 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1591 TII.get(Opc), ResultReg).addReg(FP));
Eric Christopher5903c0b2010-09-09 20:26:31 +00001592 UpdateValueMap(I, ResultReg);
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001593 return true;
1594}
1595
Chad Rosiere023d5d2012-02-03 21:14:11 +00001596bool ARMFastISel::SelectFPToI(const Instruction *I, bool isSigned) {
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001597 // Make sure we have VFP.
1598 if (!Subtarget->hasVFP2()) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001599
Duncan Sandsf5dda012010-11-03 11:35:31 +00001600 MVT DstVT;
Chris Lattner229907c2011-07-18 04:54:35 +00001601 Type *RetTy = I->getType();
Eric Christopher712bd0a2010-09-10 00:35:09 +00001602 if (!isTypeLegal(RetTy, DstVT))
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001603 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001604
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001605 unsigned Op = getRegForValue(I->getOperand(0));
1606 if (Op == 0) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001607
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001608 unsigned Opc;
Chris Lattner229907c2011-07-18 04:54:35 +00001609 Type *OpTy = I->getOperand(0)->getType();
Chad Rosiere023d5d2012-02-03 21:14:11 +00001610 if (OpTy->isFloatTy()) Opc = isSigned ? ARM::VTOSIZS : ARM::VTOUIZS;
1611 else if (OpTy->isDoubleTy()) Opc = isSigned ? ARM::VTOSIZD : ARM::VTOUIZD;
Chad Rosier17847ae2011-08-31 23:49:05 +00001612 else return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001613
Chad Rosier41f0e782012-02-03 20:27:51 +00001614 // f64->s32/u32 or f32->s32/u32 both need an intermediate f32 reg.
Eric Christopher8cfc4592010-10-05 23:13:24 +00001615 unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001616 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1617 TII.get(Opc), ResultReg).addReg(Op));
Eric Christopher7ac602b2010-10-11 08:38:55 +00001618
Eric Christopher4bd70472010-09-09 21:44:45 +00001619 // This result needs to be in an integer register, but the conversion only
1620 // takes place in fp-regs.
Eric Christopher860fc932010-09-10 00:34:35 +00001621 unsigned IntReg = ARMMoveToIntReg(DstVT, ResultReg);
Eric Christopher4bd70472010-09-09 21:44:45 +00001622 if (IntReg == 0) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00001623
Eric Christopher4bd70472010-09-09 21:44:45 +00001624 UpdateValueMap(I, IntReg);
Eric Christopher6e3eeba2010-09-09 18:54:59 +00001625 return true;
1626}
1627
Eric Christopher511aa312010-10-11 08:27:59 +00001628bool ARMFastISel::SelectSelect(const Instruction *I) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00001629 MVT VT;
1630 if (!isTypeLegal(I->getType(), VT))
Eric Christopher511aa312010-10-11 08:27:59 +00001631 return false;
1632
1633 // Things need to be register sized for register moves.
Duncan Sandsf5dda012010-11-03 11:35:31 +00001634 if (VT != MVT::i32) return false;
Eric Christopher511aa312010-10-11 08:27:59 +00001635
1636 unsigned CondReg = getRegForValue(I->getOperand(0));
1637 if (CondReg == 0) return false;
1638 unsigned Op1Reg = getRegForValue(I->getOperand(1));
1639 if (Op1Reg == 0) return false;
Eric Christopher511aa312010-10-11 08:27:59 +00001640
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001641 // Check to see if we can use an immediate in the conditional move.
1642 int Imm = 0;
1643 bool UseImm = false;
1644 bool isNegativeImm = false;
1645 if (const ConstantInt *ConstInt = dyn_cast<ConstantInt>(I->getOperand(2))) {
1646 assert (VT == MVT::i32 && "Expecting an i32.");
1647 Imm = (int)ConstInt->getValue().getZExtValue();
1648 if (Imm < 0) {
1649 isNegativeImm = true;
1650 Imm = ~Imm;
1651 }
1652 UseImm = isThumb2 ? (ARM_AM::getT2SOImmVal(Imm) != -1) :
1653 (ARM_AM::getSOImmVal(Imm) != -1);
1654 }
1655
Duncan Sands12330652011-11-28 10:31:27 +00001656 unsigned Op2Reg = 0;
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001657 if (!UseImm) {
1658 Op2Reg = getRegForValue(I->getOperand(2));
1659 if (Op2Reg == 0) return false;
1660 }
1661
1662 unsigned CmpOpc = isThumb2 ? ARM::t2CMPri : ARM::CMPri;
Jim Grosbachd7866792013-08-16 23:37:40 +00001663 CondReg = constrainOperandRegClass(TII.get(CmpOpc), CondReg, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001664 AddOptionalDefs(
1665 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(CmpOpc))
1666 .addReg(CondReg)
1667 .addImm(0));
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001668
1669 unsigned MovCCOpc;
Chad Rosier2ec7db02012-11-27 21:46:46 +00001670 const TargetRegisterClass *RC;
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001671 if (!UseImm) {
Chad Rosier2ec7db02012-11-27 21:46:46 +00001672 RC = isThumb2 ? &ARM::tGPRRegClass : &ARM::GPRRegClass;
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001673 MovCCOpc = isThumb2 ? ARM::t2MOVCCr : ARM::MOVCCr;
1674 } else {
Chad Rosier2ec7db02012-11-27 21:46:46 +00001675 RC = isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRRegClass;
1676 if (!isNegativeImm)
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001677 MovCCOpc = isThumb2 ? ARM::t2MOVCCi : ARM::MOVCCi;
Chad Rosier2ec7db02012-11-27 21:46:46 +00001678 else
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001679 MovCCOpc = isThumb2 ? ARM::t2MVNCCi : ARM::MVNCCi;
Chad Rosier7ddd63c2011-11-11 06:20:39 +00001680 }
Eric Christopher511aa312010-10-11 08:27:59 +00001681 unsigned ResultReg = createResultReg(RC);
Jim Grosbachd7866792013-08-16 23:37:40 +00001682 if (!UseImm) {
Jim Grosbach71a78f92013-08-20 19:12:42 +00001683 Op2Reg = constrainOperandRegClass(TII.get(MovCCOpc), Op2Reg, 1);
Jim Grosbachd7866792013-08-16 23:37:40 +00001684 Op1Reg = constrainOperandRegClass(TII.get(MovCCOpc), Op1Reg, 2);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001685 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovCCOpc),
1686 ResultReg)
1687 .addReg(Op2Reg)
1688 .addReg(Op1Reg)
1689 .addImm(ARMCC::NE)
1690 .addReg(ARM::CPSR);
Jim Grosbachd7866792013-08-16 23:37:40 +00001691 } else {
1692 Op1Reg = constrainOperandRegClass(TII.get(MovCCOpc), Op1Reg, 1);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001693 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MovCCOpc),
1694 ResultReg)
1695 .addReg(Op1Reg)
1696 .addImm(Imm)
1697 .addImm(ARMCC::EQ)
1698 .addReg(ARM::CPSR);
Jim Grosbachd7866792013-08-16 23:37:40 +00001699 }
Eric Christopher511aa312010-10-11 08:27:59 +00001700 UpdateValueMap(I, ResultReg);
1701 return true;
1702}
1703
Chad Rosieraaa55a82012-02-03 21:07:27 +00001704bool ARMFastISel::SelectDiv(const Instruction *I, bool isSigned) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00001705 MVT VT;
Chris Lattner229907c2011-07-18 04:54:35 +00001706 Type *Ty = I->getType();
Eric Christopher56094ff2010-09-30 22:34:19 +00001707 if (!isTypeLegal(Ty, VT))
1708 return false;
1709
1710 // If we have integer div support we should have selected this automagically.
1711 // In case we have a real miss go ahead and return false and we'll pick
1712 // it up later.
Eric Christopher7ac602b2010-10-11 08:38:55 +00001713 if (Subtarget->hasDivide()) return false;
1714
Eric Christopher56094ff2010-09-30 22:34:19 +00001715 // Otherwise emit a libcall.
1716 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Eric Christophere11017c2010-10-11 08:31:54 +00001717 if (VT == MVT::i8)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001718 LC = isSigned ? RTLIB::SDIV_I8 : RTLIB::UDIV_I8;
Eric Christophere11017c2010-10-11 08:31:54 +00001719 else if (VT == MVT::i16)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001720 LC = isSigned ? RTLIB::SDIV_I16 : RTLIB::UDIV_I16;
Eric Christopher56094ff2010-09-30 22:34:19 +00001721 else if (VT == MVT::i32)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001722 LC = isSigned ? RTLIB::SDIV_I32 : RTLIB::UDIV_I32;
Eric Christopher56094ff2010-09-30 22:34:19 +00001723 else if (VT == MVT::i64)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001724 LC = isSigned ? RTLIB::SDIV_I64 : RTLIB::UDIV_I64;
Eric Christopher56094ff2010-09-30 22:34:19 +00001725 else if (VT == MVT::i128)
Chad Rosieraaa55a82012-02-03 21:07:27 +00001726 LC = isSigned ? RTLIB::SDIV_I128 : RTLIB::UDIV_I128;
Eric Christopher56094ff2010-09-30 22:34:19 +00001727 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
Eric Christopher7ac602b2010-10-11 08:38:55 +00001728
Eric Christopher56094ff2010-09-30 22:34:19 +00001729 return ARMEmitLibcall(I, LC);
1730}
1731
Chad Rosierb84a4b42012-02-03 21:23:45 +00001732bool ARMFastISel::SelectRem(const Instruction *I, bool isSigned) {
Duncan Sandsf5dda012010-11-03 11:35:31 +00001733 MVT VT;
Chris Lattner229907c2011-07-18 04:54:35 +00001734 Type *Ty = I->getType();
Eric Christophereae1b382010-10-11 08:37:26 +00001735 if (!isTypeLegal(Ty, VT))
1736 return false;
1737
1738 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
1739 if (VT == MVT::i8)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001740 LC = isSigned ? RTLIB::SREM_I8 : RTLIB::UREM_I8;
Eric Christophereae1b382010-10-11 08:37:26 +00001741 else if (VT == MVT::i16)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001742 LC = isSigned ? RTLIB::SREM_I16 : RTLIB::UREM_I16;
Eric Christophereae1b382010-10-11 08:37:26 +00001743 else if (VT == MVT::i32)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001744 LC = isSigned ? RTLIB::SREM_I32 : RTLIB::UREM_I32;
Eric Christophereae1b382010-10-11 08:37:26 +00001745 else if (VT == MVT::i64)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001746 LC = isSigned ? RTLIB::SREM_I64 : RTLIB::UREM_I64;
Eric Christophereae1b382010-10-11 08:37:26 +00001747 else if (VT == MVT::i128)
Chad Rosierb84a4b42012-02-03 21:23:45 +00001748 LC = isSigned ? RTLIB::SREM_I128 : RTLIB::UREM_I128;
Eric Christophere1bcb432010-10-11 08:40:05 +00001749 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SREM!");
Eric Christophere4b3d6b2010-10-15 18:02:07 +00001750
Eric Christophereae1b382010-10-11 08:37:26 +00001751 return ARMEmitLibcall(I, LC);
1752}
1753
Chad Rosier685b20c2012-02-06 23:50:07 +00001754bool ARMFastISel::SelectBinaryIntOp(const Instruction *I, unsigned ISDOpcode) {
Chad Rosier685b20c2012-02-06 23:50:07 +00001755 EVT DestVT = TLI.getValueType(I->getType(), true);
1756
1757 // We can get here in the case when we have a binary operation on a non-legal
1758 // type and the target independent selector doesn't know how to handle it.
1759 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
1760 return false;
Jush Luac96b762012-06-14 06:08:19 +00001761
Chad Rosierbd471252012-02-08 02:29:21 +00001762 unsigned Opc;
1763 switch (ISDOpcode) {
1764 default: return false;
1765 case ISD::ADD:
1766 Opc = isThumb2 ? ARM::t2ADDrr : ARM::ADDrr;
1767 break;
1768 case ISD::OR:
1769 Opc = isThumb2 ? ARM::t2ORRrr : ARM::ORRrr;
1770 break;
Chad Rosier0ee8c512012-02-08 02:45:44 +00001771 case ISD::SUB:
1772 Opc = isThumb2 ? ARM::t2SUBrr : ARM::SUBrr;
1773 break;
Chad Rosierbd471252012-02-08 02:29:21 +00001774 }
1775
Chad Rosier685b20c2012-02-06 23:50:07 +00001776 unsigned SrcReg1 = getRegForValue(I->getOperand(0));
1777 if (SrcReg1 == 0) return false;
1778
1779 // TODO: Often the 2nd operand is an immediate, which can be encoded directly
1780 // in the instruction, rather then materializing the value in a register.
1781 unsigned SrcReg2 = getRegForValue(I->getOperand(1));
1782 if (SrcReg2 == 0) return false;
1783
JF Bastien13969d02013-05-29 15:45:47 +00001784 unsigned ResultReg = createResultReg(&ARM::GPRnopcRegClass);
Joey Goulyc7cda1c2013-08-23 15:20:56 +00001785 SrcReg1 = constrainOperandRegClass(TII.get(Opc), SrcReg1, 1);
1786 SrcReg2 = constrainOperandRegClass(TII.get(Opc), SrcReg2, 2);
Rafael Espindolaea09c592014-02-18 22:05:46 +00001787 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier685b20c2012-02-06 23:50:07 +00001788 TII.get(Opc), ResultReg)
1789 .addReg(SrcReg1).addReg(SrcReg2));
1790 UpdateValueMap(I, ResultReg);
1791 return true;
1792}
1793
1794bool ARMFastISel::SelectBinaryFPOp(const Instruction *I, unsigned ISDOpcode) {
Chad Rosier62a144f2012-12-17 19:59:43 +00001795 EVT FPVT = TLI.getValueType(I->getType(), true);
1796 if (!FPVT.isSimple()) return false;
1797 MVT VT = FPVT.getSimpleVT();
Eric Christopher2ff757d2010-09-09 01:06:51 +00001798
Eric Christopher24dc27f2010-09-09 00:53:57 +00001799 // We can get here in the case when we want to use NEON for our fp
1800 // operations, but can't figure out how to. Just use the vfp instructions
1801 // if we have them.
1802 // FIXME: It'd be nice to use NEON instructions.
Chris Lattner229907c2011-07-18 04:54:35 +00001803 Type *Ty = I->getType();
Eric Christopherbd3d1212010-09-09 01:02:03 +00001804 bool isFloat = (Ty->isDoubleTy() || Ty->isFloatTy());
1805 if (isFloat && !Subtarget->hasVFP2())
1806 return false;
Eric Christopher2ff757d2010-09-09 01:06:51 +00001807
Eric Christopher24dc27f2010-09-09 00:53:57 +00001808 unsigned Opc;
Duncan Sands14627772010-11-03 12:17:33 +00001809 bool is64bit = VT == MVT::f64 || VT == MVT::i64;
Eric Christopher24dc27f2010-09-09 00:53:57 +00001810 switch (ISDOpcode) {
1811 default: return false;
1812 case ISD::FADD:
Eric Christopherbd3d1212010-09-09 01:02:03 +00001813 Opc = is64bit ? ARM::VADDD : ARM::VADDS;
Eric Christopher24dc27f2010-09-09 00:53:57 +00001814 break;
1815 case ISD::FSUB:
Eric Christopherbd3d1212010-09-09 01:02:03 +00001816 Opc = is64bit ? ARM::VSUBD : ARM::VSUBS;
Eric Christopher24dc27f2010-09-09 00:53:57 +00001817 break;
1818 case ISD::FMUL:
Eric Christopherbd3d1212010-09-09 01:02:03 +00001819 Opc = is64bit ? ARM::VMULD : ARM::VMULS;
Eric Christopher24dc27f2010-09-09 00:53:57 +00001820 break;
1821 }
Chad Rosier80979b62011-11-16 18:39:44 +00001822 unsigned Op1 = getRegForValue(I->getOperand(0));
1823 if (Op1 == 0) return false;
1824
1825 unsigned Op2 = getRegForValue(I->getOperand(1));
1826 if (Op2 == 0) return false;
1827
Chad Rosier62a144f2012-12-17 19:59:43 +00001828 unsigned ResultReg = createResultReg(TLI.getRegClassFor(VT.SimpleTy));
Rafael Espindolaea09c592014-02-18 22:05:46 +00001829 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher24dc27f2010-09-09 00:53:57 +00001830 TII.get(Opc), ResultReg)
1831 .addReg(Op1).addReg(Op2));
Eric Christopher5903c0b2010-09-09 20:26:31 +00001832 UpdateValueMap(I, ResultReg);
Eric Christopher24dc27f2010-09-09 00:53:57 +00001833 return true;
1834}
1835
Eric Christopher72497e52010-09-10 23:18:12 +00001836// Call Handling Code
1837
Jush Lue67e07b2012-07-19 09:49:00 +00001838// This is largely taken directly from CCAssignFnForNode
Eric Christopher72497e52010-09-10 23:18:12 +00001839// TODO: We may not support all of this.
Jush Lue67e07b2012-07-19 09:49:00 +00001840CCAssignFn *ARMFastISel::CCAssignFnForCall(CallingConv::ID CC,
1841 bool Return,
1842 bool isVarArg) {
Eric Christopher72497e52010-09-10 23:18:12 +00001843 switch (CC) {
1844 default:
1845 llvm_unreachable("Unsupported calling convention");
Eric Christopher72497e52010-09-10 23:18:12 +00001846 case CallingConv::Fast:
Jush Lu26088cb2012-08-16 05:15:53 +00001847 if (Subtarget->hasVFP2() && !isVarArg) {
1848 if (!Subtarget->isAAPCS_ABI())
1849 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
1850 // For AAPCS ABI targets, just use VFP variant of the calling convention.
1851 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1852 }
Evan Cheng21abfc92010-10-22 18:57:05 +00001853 // Fallthrough
1854 case CallingConv::C:
Eric Christopher72497e52010-09-10 23:18:12 +00001855 // Use target triple & subtarget features to do actual dispatch.
1856 if (Subtarget->isAAPCS_ABI()) {
1857 if (Subtarget->hasVFP2() &&
Jush Lue67e07b2012-07-19 09:49:00 +00001858 TM.Options.FloatABIType == FloatABI::Hard && !isVarArg)
Eric Christopher72497e52010-09-10 23:18:12 +00001859 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1860 else
1861 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1862 } else
1863 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
1864 case CallingConv::ARM_AAPCS_VFP:
Jush Lue67e07b2012-07-19 09:49:00 +00001865 if (!isVarArg)
1866 return (Return ? RetCC_ARM_AAPCS_VFP: CC_ARM_AAPCS_VFP);
1867 // Fall through to soft float variant, variadic functions don't
1868 // use hard floating point ABI.
Eric Christopher72497e52010-09-10 23:18:12 +00001869 case CallingConv::ARM_AAPCS:
1870 return (Return ? RetCC_ARM_AAPCS: CC_ARM_AAPCS);
1871 case CallingConv::ARM_APCS:
1872 return (Return ? RetCC_ARM_APCS: CC_ARM_APCS);
Eric Christopherb3322362012-08-03 00:05:53 +00001873 case CallingConv::GHC:
1874 if (Return)
1875 llvm_unreachable("Can't return in GHC call convention");
1876 else
1877 return CC_ARM_APCS_GHC;
Eric Christopher72497e52010-09-10 23:18:12 +00001878 }
1879}
1880
Eric Christopher79398062010-09-29 23:11:09 +00001881bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
1882 SmallVectorImpl<unsigned> &ArgRegs,
Duncan Sandsf5dda012010-11-03 11:35:31 +00001883 SmallVectorImpl<MVT> &ArgVTs,
Eric Christopher79398062010-09-29 23:11:09 +00001884 SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags,
1885 SmallVectorImpl<unsigned> &RegArgs,
1886 CallingConv::ID CC,
Jush Lue67e07b2012-07-19 09:49:00 +00001887 unsigned &NumBytes,
1888 bool isVarArg) {
Eric Christopher79398062010-09-29 23:11:09 +00001889 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001890 CCState CCInfo(CC, isVarArg, *FuncInfo.MF, ArgLocs, *Context);
Jush Lue67e07b2012-07-19 09:49:00 +00001891 CCInfo.AnalyzeCallOperands(ArgVTs, ArgFlags,
1892 CCAssignFnForCall(CC, false, isVarArg));
Eric Christopher79398062010-09-29 23:11:09 +00001893
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001894 // Check that we can handle all of the arguments. If we can't, then bail out
1895 // now before we add code to the MBB.
1896 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1897 CCValAssign &VA = ArgLocs[i];
1898 MVT ArgVT = ArgVTs[VA.getValNo()];
1899
1900 // We don't handle NEON/vector parameters yet.
1901 if (ArgVT.isVector() || ArgVT.getSizeInBits() > 64)
1902 return false;
1903
1904 // Now copy/store arg to correct locations.
1905 if (VA.isRegLoc() && !VA.needsCustom()) {
1906 continue;
1907 } else if (VA.needsCustom()) {
1908 // TODO: We need custom lowering for vector (v2f64) args.
1909 if (VA.getLocVT() != MVT::f64 ||
1910 // TODO: Only handle register args for now.
1911 !VA.isRegLoc() || !ArgLocs[++i].isRegLoc())
1912 return false;
1913 } else {
Craig Topper56710102013-08-15 02:33:50 +00001914 switch (ArgVT.SimpleTy) {
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001915 default:
1916 return false;
1917 case MVT::i1:
1918 case MVT::i8:
1919 case MVT::i16:
1920 case MVT::i32:
1921 break;
1922 case MVT::f32:
1923 if (!Subtarget->hasVFP2())
1924 return false;
1925 break;
1926 case MVT::f64:
1927 if (!Subtarget->hasVFP2())
1928 return false;
1929 break;
1930 }
1931 }
1932 }
1933
1934 // At the point, we are able to handle the call's arguments in fast isel.
1935
Eric Christopher79398062010-09-29 23:11:09 +00001936 // Get a count of how many bytes are to be pushed on the stack.
1937 NumBytes = CCInfo.getNextStackOffset();
1938
1939 // Issue CALLSEQ_START
Evan Cheng194c3dc2011-06-28 21:14:33 +00001940 unsigned AdjStackDown = TII.getCallFrameSetupOpcode();
Rafael Espindolaea09c592014-02-18 22:05:46 +00001941 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher71ef1af2010-10-11 21:20:02 +00001942 TII.get(AdjStackDown))
1943 .addImm(NumBytes));
Eric Christopher79398062010-09-29 23:11:09 +00001944
1945 // Process the args.
1946 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1947 CCValAssign &VA = ArgLocs[i];
Juergen Ributzka4c018a12014-08-01 18:04:14 +00001948 const Value *ArgVal = Args[VA.getValNo()];
Eric Christopher79398062010-09-29 23:11:09 +00001949 unsigned Arg = ArgRegs[VA.getValNo()];
Duncan Sandsf5dda012010-11-03 11:35:31 +00001950 MVT ArgVT = ArgVTs[VA.getValNo()];
Eric Christopher79398062010-09-29 23:11:09 +00001951
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001952 assert((!ArgVT.isVector() && ArgVT.getSizeInBits() <= 64) &&
1953 "We don't handle NEON/vector parameters yet.");
Eric Christopherc9616f22010-10-23 09:37:17 +00001954
Eric Christopher78f8d4e2010-09-30 20:49:44 +00001955 // Handle arg promotion, etc.
Eric Christopher79398062010-09-29 23:11:09 +00001956 switch (VA.getLocInfo()) {
1957 case CCValAssign::Full: break;
Eric Christopherc103c662010-10-18 02:17:53 +00001958 case CCValAssign::SExt: {
Chad Rosier9fd0e552011-12-02 20:25:18 +00001959 MVT DestVT = VA.getLocVT();
Chad Rosier5b9c3972012-02-14 22:29:48 +00001960 Arg = ARMEmitIntExt(ArgVT, Arg, DestVT, /*isZExt*/false);
1961 assert (Arg != 0 && "Failed to emit a sext");
Chad Rosier9fd0e552011-12-02 20:25:18 +00001962 ArgVT = DestVT;
Eric Christopherc103c662010-10-18 02:17:53 +00001963 break;
1964 }
Chad Rosierd0191a52011-11-05 20:16:15 +00001965 case CCValAssign::AExt:
1966 // Intentional fall-through. Handle AExt and ZExt.
Eric Christopherc103c662010-10-18 02:17:53 +00001967 case CCValAssign::ZExt: {
Chad Rosier9fd0e552011-12-02 20:25:18 +00001968 MVT DestVT = VA.getLocVT();
Chad Rosier5b9c3972012-02-14 22:29:48 +00001969 Arg = ARMEmitIntExt(ArgVT, Arg, DestVT, /*isZExt*/true);
JF Bastien06ce03d2013-06-07 20:10:37 +00001970 assert (Arg != 0 && "Failed to emit a zext");
Chad Rosier9fd0e552011-12-02 20:25:18 +00001971 ArgVT = DestVT;
Eric Christopherc103c662010-10-18 02:17:53 +00001972 break;
1973 }
1974 case CCValAssign::BCvt: {
Wesley Peck527da1b2010-11-23 03:31:01 +00001975 unsigned BC = FastEmit_r(ArgVT, VA.getLocVT(), ISD::BITCAST, Arg,
Duncan Sandsf5dda012010-11-03 11:35:31 +00001976 /*TODO: Kill=*/false);
Eric Christopherc103c662010-10-18 02:17:53 +00001977 assert(BC != 0 && "Failed to emit a bitcast!");
1978 Arg = BC;
1979 ArgVT = VA.getLocVT();
1980 break;
1981 }
1982 default: llvm_unreachable("Unknown arg promotion!");
Eric Christopher79398062010-09-29 23:11:09 +00001983 }
1984
1985 // Now copy/store arg to correct locations.
Eric Christopher71ef1af2010-10-11 21:20:02 +00001986 if (VA.isRegLoc() && !VA.needsCustom()) {
Rafael Espindolaea09c592014-02-18 22:05:46 +00001987 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
1988 TII.get(TargetOpcode::COPY), VA.getLocReg()).addReg(Arg);
Eric Christopher79398062010-09-29 23:11:09 +00001989 RegArgs.push_back(VA.getLocReg());
Eric Christopher4ac3ed02010-10-21 00:01:47 +00001990 } else if (VA.needsCustom()) {
1991 // TODO: We need custom lowering for vector (v2f64) args.
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001992 assert(VA.getLocVT() == MVT::f64 &&
1993 "Custom lowering for v2f64 args not available");
Jim Grosbach055de2c2010-10-27 21:39:08 +00001994
Eric Christopher4ac3ed02010-10-21 00:01:47 +00001995 CCValAssign &NextVA = ArgLocs[++i];
1996
Bill Wendling23f8c4a2012-03-16 23:11:07 +00001997 assert(VA.isRegLoc() && NextVA.isRegLoc() &&
1998 "We only handle register args!");
Eric Christopher4ac3ed02010-10-21 00:01:47 +00001999
Rafael Espindolaea09c592014-02-18 22:05:46 +00002000 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher4ac3ed02010-10-21 00:01:47 +00002001 TII.get(ARM::VMOVRRD), VA.getLocReg())
2002 .addReg(NextVA.getLocReg(), RegState::Define)
2003 .addReg(Arg));
2004 RegArgs.push_back(VA.getLocReg());
2005 RegArgs.push_back(NextVA.getLocReg());
Eric Christopher79398062010-09-29 23:11:09 +00002006 } else {
Eric Christopherb353e4f2010-10-21 20:09:54 +00002007 assert(VA.isMemLoc());
2008 // Need to store on the stack.
Juergen Ributzka4c018a12014-08-01 18:04:14 +00002009
2010 // Don't emit stores for undef values.
2011 if (isa<UndefValue>(ArgVal))
2012 continue;
2013
Eric Christopherfef5f312010-11-19 22:30:02 +00002014 Address Addr;
2015 Addr.BaseType = Address::RegBase;
2016 Addr.Base.Reg = ARM::SP;
2017 Addr.Offset = VA.getLocMemOffset();
Eric Christopherb353e4f2010-10-21 20:09:54 +00002018
Bill Wendling23f8c4a2012-03-16 23:11:07 +00002019 bool EmitRet = ARMEmitStore(ArgVT, Arg, Addr); (void)EmitRet;
2020 assert(EmitRet && "Could not emit a store for argument!");
Eric Christopher79398062010-09-29 23:11:09 +00002021 }
2022 }
Bill Wendling23f8c4a2012-03-16 23:11:07 +00002023
Eric Christopher79398062010-09-29 23:11:09 +00002024 return true;
2025}
2026
Duncan Sandsf5dda012010-11-03 11:35:31 +00002027bool ARMFastISel::FinishCall(MVT RetVT, SmallVectorImpl<unsigned> &UsedRegs,
Eric Christopher79398062010-09-29 23:11:09 +00002028 const Instruction *I, CallingConv::ID CC,
Jush Lue67e07b2012-07-19 09:49:00 +00002029 unsigned &NumBytes, bool isVarArg) {
Eric Christopher79398062010-09-29 23:11:09 +00002030 // Issue CALLSEQ_END
Evan Cheng194c3dc2011-06-28 21:14:33 +00002031 unsigned AdjStackUp = TII.getCallFrameDestroyOpcode();
Rafael Espindolaea09c592014-02-18 22:05:46 +00002032 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopher71ef1af2010-10-11 21:20:02 +00002033 TII.get(AdjStackUp))
2034 .addImm(NumBytes).addImm(0));
Eric Christopher79398062010-09-29 23:11:09 +00002035
2036 // Now the return value.
Duncan Sandsf5dda012010-11-03 11:35:31 +00002037 if (RetVT != MVT::isVoid) {
Eric Christopher79398062010-09-29 23:11:09 +00002038 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002039 CCState CCInfo(CC, isVarArg, *FuncInfo.MF, RVLocs, *Context);
Jush Lue67e07b2012-07-19 09:49:00 +00002040 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true, isVarArg));
Eric Christopher79398062010-09-29 23:11:09 +00002041
2042 // Copy all of the result registers out of their specified physreg.
Duncan Sandsf5dda012010-11-03 11:35:31 +00002043 if (RVLocs.size() == 2 && RetVT == MVT::f64) {
Eric Christopherc1e209d2010-10-01 00:00:11 +00002044 // For this move we copy into two registers and then move into the
2045 // double fp reg we want.
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00002046 MVT DestVT = RVLocs[0].getValVT();
Craig Topper760b1342012-02-22 05:59:10 +00002047 const TargetRegisterClass* DstRC = TLI.getRegClassFor(DestVT);
Eric Christopherc1e209d2010-10-01 00:00:11 +00002048 unsigned ResultReg = createResultReg(DstRC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002049 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Eric Christopherc1e209d2010-10-01 00:00:11 +00002050 TII.get(ARM::VMOVDRR), ResultReg)
Eric Christopheraf719ef2010-10-20 08:02:24 +00002051 .addReg(RVLocs[0].getLocReg())
2052 .addReg(RVLocs[1].getLocReg()));
Eric Christopher7ac602b2010-10-11 08:38:55 +00002053
Eric Christopheraf719ef2010-10-20 08:02:24 +00002054 UsedRegs.push_back(RVLocs[0].getLocReg());
2055 UsedRegs.push_back(RVLocs[1].getLocReg());
Jim Grosbach055de2c2010-10-27 21:39:08 +00002056
Eric Christopher7ac602b2010-10-11 08:38:55 +00002057 // Finally update the result.
Eric Christopherc1e209d2010-10-01 00:00:11 +00002058 UpdateValueMap(I, ResultReg);
Chad Rosier90f9afe2012-05-11 18:51:55 +00002059 } else {
2060 assert(RVLocs.size() == 1 &&"Can't handle non-double multi-reg retvals!");
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00002061 MVT CopyVT = RVLocs[0].getValVT();
Chad Rosier5de1bea2011-11-08 00:03:32 +00002062
2063 // Special handling for extended integers.
2064 if (RetVT == MVT::i1 || RetVT == MVT::i8 || RetVT == MVT::i16)
2065 CopyVT = MVT::i32;
2066
Craig Topper760b1342012-02-22 05:59:10 +00002067 const TargetRegisterClass* DstRC = TLI.getRegClassFor(CopyVT);
Eric Christopher79398062010-09-29 23:11:09 +00002068
Eric Christopherc1e209d2010-10-01 00:00:11 +00002069 unsigned ResultReg = createResultReg(DstRC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002070 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2071 TII.get(TargetOpcode::COPY),
Eric Christopherc1e209d2010-10-01 00:00:11 +00002072 ResultReg).addReg(RVLocs[0].getLocReg());
2073 UsedRegs.push_back(RVLocs[0].getLocReg());
Eric Christopher79398062010-09-29 23:11:09 +00002074
Eric Christopher7ac602b2010-10-11 08:38:55 +00002075 // Finally update the result.
Eric Christopherc1e209d2010-10-01 00:00:11 +00002076 UpdateValueMap(I, ResultReg);
2077 }
Eric Christopher79398062010-09-29 23:11:09 +00002078 }
2079
Eric Christopher7ac602b2010-10-11 08:38:55 +00002080 return true;
Eric Christopher79398062010-09-29 23:11:09 +00002081}
2082
Eric Christopher93bbe652010-10-22 01:28:00 +00002083bool ARMFastISel::SelectRet(const Instruction *I) {
2084 const ReturnInst *Ret = cast<ReturnInst>(I);
2085 const Function &F = *I->getParent()->getParent();
Jim Grosbach055de2c2010-10-27 21:39:08 +00002086
Eric Christopher93bbe652010-10-22 01:28:00 +00002087 if (!FuncInfo.CanLowerReturn)
2088 return false;
Jim Grosbach055de2c2010-10-27 21:39:08 +00002089
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002090 // Build a list of return value registers.
2091 SmallVector<unsigned, 4> RetRegs;
2092
Eric Christopher93bbe652010-10-22 01:28:00 +00002093 CallingConv::ID CC = F.getCallingConv();
2094 if (Ret->getNumOperands() > 0) {
2095 SmallVector<ISD::OutputArg, 4> Outs;
Bill Wendling74dba872012-12-30 13:01:51 +00002096 GetReturnInfo(F.getReturnType(), F.getAttributes(), Outs, TLI);
Eric Christopher93bbe652010-10-22 01:28:00 +00002097
2098 // Analyze operands of the call, assigning locations to each operand.
2099 SmallVector<CCValAssign, 16> ValLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002100 CCState CCInfo(CC, F.isVarArg(), *FuncInfo.MF, ValLocs, I->getContext());
Jush Lue67e07b2012-07-19 09:49:00 +00002101 CCInfo.AnalyzeReturn(Outs, CCAssignFnForCall(CC, true /* is Ret */,
2102 F.isVarArg()));
Eric Christopher93bbe652010-10-22 01:28:00 +00002103
2104 const Value *RV = Ret->getOperand(0);
2105 unsigned Reg = getRegForValue(RV);
2106 if (Reg == 0)
2107 return false;
2108
2109 // Only handle a single return value for now.
2110 if (ValLocs.size() != 1)
2111 return false;
2112
2113 CCValAssign &VA = ValLocs[0];
Jim Grosbach055de2c2010-10-27 21:39:08 +00002114
Eric Christopher93bbe652010-10-22 01:28:00 +00002115 // Don't bother handling odd stuff for now.
2116 if (VA.getLocInfo() != CCValAssign::Full)
2117 return false;
2118 // Only handle register returns for now.
2119 if (!VA.isRegLoc())
2120 return false;
Chad Rosierf3e73ad2011-11-04 00:50:21 +00002121
2122 unsigned SrcReg = Reg + VA.getValNo();
Chad Rosier62a144f2012-12-17 19:59:43 +00002123 EVT RVEVT = TLI.getValueType(RV->getType());
2124 if (!RVEVT.isSimple()) return false;
2125 MVT RVVT = RVEVT.getSimpleVT();
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00002126 MVT DestVT = VA.getValVT();
Chad Rosierf3e73ad2011-11-04 00:50:21 +00002127 // Special handling for extended integers.
2128 if (RVVT != DestVT) {
2129 if (RVVT != MVT::i1 && RVVT != MVT::i8 && RVVT != MVT::i16)
2130 return false;
2131
Chad Rosierf3e73ad2011-11-04 00:50:21 +00002132 assert(DestVT == MVT::i32 && "ARM should always ext to i32");
2133
Chad Rosierfcd29ae2012-02-17 01:21:28 +00002134 // Perform extension if flagged as either zext or sext. Otherwise, do
2135 // nothing.
2136 if (Outs[0].Flags.isZExt() || Outs[0].Flags.isSExt()) {
2137 SrcReg = ARMEmitIntExt(RVVT, SrcReg, DestVT, Outs[0].Flags.isZExt());
2138 if (SrcReg == 0) return false;
2139 }
Chad Rosierf3e73ad2011-11-04 00:50:21 +00002140 }
Jim Grosbach055de2c2010-10-27 21:39:08 +00002141
Eric Christopher93bbe652010-10-22 01:28:00 +00002142 // Make the copy.
Eric Christopher93bbe652010-10-22 01:28:00 +00002143 unsigned DstReg = VA.getLocReg();
2144 const TargetRegisterClass* SrcRC = MRI.getRegClass(SrcReg);
2145 // Avoid a cross-class copy. This is very unlikely.
2146 if (!SrcRC->contains(DstReg))
2147 return false;
Rafael Espindolaea09c592014-02-18 22:05:46 +00002148 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
2149 TII.get(TargetOpcode::COPY), DstReg).addReg(SrcReg);
Eric Christopher93bbe652010-10-22 01:28:00 +00002150
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002151 // Add register to return instruction.
2152 RetRegs.push_back(VA.getLocReg());
Eric Christopher93bbe652010-10-22 01:28:00 +00002153 }
Jim Grosbach055de2c2010-10-27 21:39:08 +00002154
Chad Rosier0439cfc2011-11-08 21:12:00 +00002155 unsigned RetOpc = isThumb2 ? ARM::tBX_RET : ARM::BX_RET;
Rafael Espindolaea09c592014-02-18 22:05:46 +00002156 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002157 TII.get(RetOpc));
2158 AddOptionalDefs(MIB);
2159 for (unsigned i = 0, e = RetRegs.size(); i != e; ++i)
2160 MIB.addReg(RetRegs[i], RegState::Implicit);
Eric Christopher93bbe652010-10-22 01:28:00 +00002161 return true;
2162}
2163
Chad Rosierc6916f82012-06-12 19:25:13 +00002164unsigned ARMFastISel::ARMSelectCallOp(bool UseReg) {
2165 if (UseReg)
2166 return isThumb2 ? ARM::tBLXr : ARM::BLX;
2167 else
2168 return isThumb2 ? ARM::tBL : ARM::BL;
2169}
2170
2171unsigned ARMFastISel::getLibcallReg(const Twine &Name) {
Chandler Carruth1c82d332013-07-27 11:23:08 +00002172 // Manually compute the global's type to avoid building it when unnecessary.
2173 Type *GVTy = Type::getInt32PtrTy(*Context, /*AS=*/0);
2174 EVT LCREVT = TLI.getValueType(GVTy);
2175 if (!LCREVT.isSimple()) return 0;
2176
Bill Wendling76cce192013-12-29 08:00:04 +00002177 GlobalValue *GV = new GlobalVariable(M, Type::getInt32Ty(*Context), false,
Craig Topper062a2ba2014-04-25 05:30:21 +00002178 GlobalValue::ExternalLinkage, nullptr,
2179 Name);
Chandler Carruth1c82d332013-07-27 11:23:08 +00002180 assert(GV->getType() == GVTy && "We miscomputed the type for the global!");
Chad Rosier62a144f2012-12-17 19:59:43 +00002181 return ARMMaterializeGV(GV, LCREVT.getSimpleVT());
Eric Christopher919772f2011-02-22 01:37:10 +00002182}
2183
Eric Christopher8b912662010-09-14 23:03:37 +00002184// A quick function that will emit a call for a named libcall in F with the
2185// vector of passed arguments for the Instruction in I. We can assume that we
Eric Christopher7ac602b2010-10-11 08:38:55 +00002186// can emit a call for any libcall we can produce. This is an abridged version
2187// of the full call infrastructure since we won't need to worry about things
Eric Christopher8b912662010-09-14 23:03:37 +00002188// like computed function pointers or strange arguments at call sites.
2189// TODO: Try to unify this and the normal call bits for ARM, then try to unify
2190// with X86.
Eric Christopher7990df12010-09-28 01:21:42 +00002191bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) {
2192 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002193
Eric Christopher8b912662010-09-14 23:03:37 +00002194 // Handle *simple* calls for now.
Chris Lattner229907c2011-07-18 04:54:35 +00002195 Type *RetTy = I->getType();
Duncan Sandsf5dda012010-11-03 11:35:31 +00002196 MVT RetVT;
Eric Christopher8b912662010-09-14 23:03:37 +00002197 if (RetTy->isVoidTy())
2198 RetVT = MVT::isVoid;
2199 else if (!isTypeLegal(RetTy, RetVT))
2200 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002201
Chad Rosier90f9afe2012-05-11 18:51:55 +00002202 // Can't handle non-double multi-reg retvals.
Jush Luac96b762012-06-14 06:08:19 +00002203 if (RetVT != MVT::isVoid && RetVT != MVT::i32) {
Chad Rosier90f9afe2012-05-11 18:51:55 +00002204 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002205 CCState CCInfo(CC, false, *FuncInfo.MF, RVLocs, *Context);
Jush Lue67e07b2012-07-19 09:49:00 +00002206 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true, false));
Chad Rosier90f9afe2012-05-11 18:51:55 +00002207 if (RVLocs.size() >= 2 && RetVT != MVT::f64)
2208 return false;
2209 }
2210
Eric Christopher79398062010-09-29 23:11:09 +00002211 // Set up the argument vectors.
Eric Christopher8b912662010-09-14 23:03:37 +00002212 SmallVector<Value*, 8> Args;
2213 SmallVector<unsigned, 8> ArgRegs;
Duncan Sandsf5dda012010-11-03 11:35:31 +00002214 SmallVector<MVT, 8> ArgVTs;
Eric Christopher8b912662010-09-14 23:03:37 +00002215 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
2216 Args.reserve(I->getNumOperands());
2217 ArgRegs.reserve(I->getNumOperands());
2218 ArgVTs.reserve(I->getNumOperands());
2219 ArgFlags.reserve(I->getNumOperands());
Eric Christopher7990df12010-09-28 01:21:42 +00002220 for (unsigned i = 0; i < I->getNumOperands(); ++i) {
Eric Christopher8b912662010-09-14 23:03:37 +00002221 Value *Op = I->getOperand(i);
2222 unsigned Arg = getRegForValue(Op);
2223 if (Arg == 0) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002224
Chris Lattner229907c2011-07-18 04:54:35 +00002225 Type *ArgTy = Op->getType();
Duncan Sandsf5dda012010-11-03 11:35:31 +00002226 MVT ArgVT;
Eric Christopher8b912662010-09-14 23:03:37 +00002227 if (!isTypeLegal(ArgTy, ArgVT)) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002228
Eric Christopher8b912662010-09-14 23:03:37 +00002229 ISD::ArgFlagsTy Flags;
Rafael Espindolaea09c592014-02-18 22:05:46 +00002230 unsigned OriginalAlignment = DL.getABITypeAlignment(ArgTy);
Eric Christopher8b912662010-09-14 23:03:37 +00002231 Flags.setOrigAlign(OriginalAlignment);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002232
Eric Christopher8b912662010-09-14 23:03:37 +00002233 Args.push_back(Op);
2234 ArgRegs.push_back(Arg);
2235 ArgVTs.push_back(ArgVT);
2236 ArgFlags.push_back(Flags);
2237 }
Eric Christopher7ac602b2010-10-11 08:38:55 +00002238
Eric Christopher79398062010-09-29 23:11:09 +00002239 // Handle the arguments now that we've gotten them.
Eric Christopher8b912662010-09-14 23:03:37 +00002240 SmallVector<unsigned, 4> RegArgs;
Eric Christopher79398062010-09-29 23:11:09 +00002241 unsigned NumBytes;
Jush Lue67e07b2012-07-19 09:49:00 +00002242 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags,
2243 RegArgs, CC, NumBytes, false))
Eric Christopher79398062010-09-29 23:11:09 +00002244 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002245
Chad Rosierc6916f82012-06-12 19:25:13 +00002246 unsigned CalleeReg = 0;
2247 if (EnableARMLongCalls) {
2248 CalleeReg = getLibcallReg(TLI.getLibcallName(Call));
2249 if (CalleeReg == 0) return false;
2250 }
Eric Christopher7ac602b2010-10-11 08:38:55 +00002251
Chad Rosierc6916f82012-06-12 19:25:13 +00002252 // Issue the call.
2253 unsigned CallOpc = ARMSelectCallOp(EnableARMLongCalls);
2254 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +00002255 DbgLoc, TII.get(CallOpc));
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002256 // BL / BLX don't take a predicate, but tBL / tBLX do.
2257 if (isThumb2)
Chad Rosierc6916f82012-06-12 19:25:13 +00002258 AddDefaultPred(MIB);
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002259 if (EnableARMLongCalls)
2260 MIB.addReg(CalleeReg);
2261 else
2262 MIB.addExternalSymbol(TLI.getLibcallName(Call));
Chad Rosierc6916f82012-06-12 19:25:13 +00002263
Eric Christopher8b912662010-09-14 23:03:37 +00002264 // Add implicit physical register uses to the call.
2265 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002266 MIB.addReg(RegArgs[i], RegState::Implicit);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002267
Jakob Stoklund Olesenfa7a5372012-02-24 01:19:29 +00002268 // Add a register mask with the call-preserved registers.
2269 // Proper defs for return values will be added by setPhysRegsDeadExcept().
2270 MIB.addRegMask(TRI.getCallPreservedMask(CC));
2271
Eric Christopher79398062010-09-29 23:11:09 +00002272 // Finish off the call including any return values.
Eric Christopher7ac602b2010-10-11 08:38:55 +00002273 SmallVector<unsigned, 4> UsedRegs;
Jush Lue67e07b2012-07-19 09:49:00 +00002274 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes, false)) return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002275
Eric Christopher8b912662010-09-14 23:03:37 +00002276 // Set all unused physreg defs as dead.
2277 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002278
Eric Christopher8b912662010-09-14 23:03:37 +00002279 return true;
2280}
2281
Chad Rosiera7ebc562011-11-11 23:31:03 +00002282bool ARMFastISel::SelectCall(const Instruction *I,
Craig Topper062a2ba2014-04-25 05:30:21 +00002283 const char *IntrMemName = nullptr) {
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002284 const CallInst *CI = cast<CallInst>(I);
2285 const Value *Callee = CI->getCalledValue();
2286
Chad Rosiera7ebc562011-11-11 23:31:03 +00002287 // Can't handle inline asm.
2288 if (isa<InlineAsm>(Callee)) return false;
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002289
Chad Rosierdf42cf32012-12-11 00:18:02 +00002290 // Allow SelectionDAG isel to handle tail calls.
2291 if (CI->isTailCall()) return false;
2292
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002293 // Check the calling convention.
2294 ImmutableCallSite CS(CI);
2295 CallingConv::ID CC = CS.getCallingConv();
Eric Christopher167a70022010-10-18 06:49:12 +00002296
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002297 // TODO: Avoid some calling conventions?
Eric Christopher7ac602b2010-10-11 08:38:55 +00002298
Chris Lattner229907c2011-07-18 04:54:35 +00002299 PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType());
2300 FunctionType *FTy = cast<FunctionType>(PT->getElementType());
Jush Lue67e07b2012-07-19 09:49:00 +00002301 bool isVarArg = FTy->isVarArg();
Eric Christopher7ac602b2010-10-11 08:38:55 +00002302
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002303 // Handle *simple* calls for now.
Chris Lattner229907c2011-07-18 04:54:35 +00002304 Type *RetTy = I->getType();
Duncan Sandsf5dda012010-11-03 11:35:31 +00002305 MVT RetVT;
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002306 if (RetTy->isVoidTy())
2307 RetVT = MVT::isVoid;
Chad Rosier5de1bea2011-11-08 00:03:32 +00002308 else if (!isTypeLegal(RetTy, RetVT) && RetVT != MVT::i16 &&
2309 RetVT != MVT::i8 && RetVT != MVT::i1)
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002310 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002311
Chad Rosier90f9afe2012-05-11 18:51:55 +00002312 // Can't handle non-double multi-reg retvals.
2313 if (RetVT != MVT::isVoid && RetVT != MVT::i1 && RetVT != MVT::i8 &&
2314 RetVT != MVT::i16 && RetVT != MVT::i32) {
2315 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002316 CCState CCInfo(CC, isVarArg, *FuncInfo.MF, RVLocs, *Context);
Jush Lue67e07b2012-07-19 09:49:00 +00002317 CCInfo.AnalyzeCallResult(RetVT, CCAssignFnForCall(CC, true, isVarArg));
Chad Rosier90f9afe2012-05-11 18:51:55 +00002318 if (RVLocs.size() >= 2 && RetVT != MVT::f64)
2319 return false;
2320 }
2321
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002322 // Set up the argument vectors.
2323 SmallVector<Value*, 8> Args;
2324 SmallVector<unsigned, 8> ArgRegs;
Duncan Sandsf5dda012010-11-03 11:35:31 +00002325 SmallVector<MVT, 8> ArgVTs;
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002326 SmallVector<ISD::ArgFlagsTy, 8> ArgFlags;
Chad Rosierdccc4792012-02-15 00:23:55 +00002327 unsigned arg_size = CS.arg_size();
2328 Args.reserve(arg_size);
2329 ArgRegs.reserve(arg_size);
2330 ArgVTs.reserve(arg_size);
2331 ArgFlags.reserve(arg_size);
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002332 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end();
2333 i != e; ++i) {
Chad Rosiera7ebc562011-11-11 23:31:03 +00002334 // If we're lowering a memory intrinsic instead of a regular call, skip the
2335 // last two arguments, which shouldn't be passed to the underlying function.
2336 if (IntrMemName && e-i <= 2)
2337 break;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002338
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002339 ISD::ArgFlagsTy Flags;
2340 unsigned AttrInd = i - CS.arg_begin() + 1;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00002341 if (CS.paramHasAttr(AttrInd, Attribute::SExt))
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002342 Flags.setSExt();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00002343 if (CS.paramHasAttr(AttrInd, Attribute::ZExt))
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002344 Flags.setZExt();
2345
Chad Rosier8a98ec42011-11-04 00:58:10 +00002346 // FIXME: Only handle *easy* calls for now.
Bill Wendling3d7b0b82012-12-19 07:18:57 +00002347 if (CS.paramHasAttr(AttrInd, Attribute::InReg) ||
2348 CS.paramHasAttr(AttrInd, Attribute::StructRet) ||
2349 CS.paramHasAttr(AttrInd, Attribute::Nest) ||
2350 CS.paramHasAttr(AttrInd, Attribute::ByVal))
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002351 return false;
2352
Chris Lattner229907c2011-07-18 04:54:35 +00002353 Type *ArgTy = (*i)->getType();
Duncan Sandsf5dda012010-11-03 11:35:31 +00002354 MVT ArgVT;
Chad Rosierd0191a52011-11-05 20:16:15 +00002355 if (!isTypeLegal(ArgTy, ArgVT) && ArgVT != MVT::i16 && ArgVT != MVT::i8 &&
2356 ArgVT != MVT::i1)
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002357 return false;
Chad Rosieree93ff72011-11-18 01:17:34 +00002358
2359 unsigned Arg = getRegForValue(*i);
2360 if (Arg == 0)
2361 return false;
2362
Rafael Espindolaea09c592014-02-18 22:05:46 +00002363 unsigned OriginalAlignment = DL.getABITypeAlignment(ArgTy);
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002364 Flags.setOrigAlign(OriginalAlignment);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002365
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002366 Args.push_back(*i);
2367 ArgRegs.push_back(Arg);
2368 ArgVTs.push_back(ArgVT);
2369 ArgFlags.push_back(Flags);
2370 }
Eric Christopher7ac602b2010-10-11 08:38:55 +00002371
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002372 // Handle the arguments now that we've gotten them.
2373 SmallVector<unsigned, 4> RegArgs;
2374 unsigned NumBytes;
Jush Lue67e07b2012-07-19 09:49:00 +00002375 if (!ProcessCallArgs(Args, ArgRegs, ArgVTs, ArgFlags,
2376 RegArgs, CC, NumBytes, isVarArg))
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002377 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002378
Chad Rosierc6916f82012-06-12 19:25:13 +00002379 bool UseReg = false;
Chad Rosier223faf72012-05-23 18:38:57 +00002380 const GlobalValue *GV = dyn_cast<GlobalValue>(Callee);
Chad Rosierc6916f82012-06-12 19:25:13 +00002381 if (!GV || EnableARMLongCalls) UseReg = true;
Chad Rosier223faf72012-05-23 18:38:57 +00002382
Chad Rosierc6916f82012-06-12 19:25:13 +00002383 unsigned CalleeReg = 0;
2384 if (UseReg) {
2385 if (IntrMemName)
2386 CalleeReg = getLibcallReg(IntrMemName);
2387 else
2388 CalleeReg = getRegForValue(Callee);
2389
Chad Rosier223faf72012-05-23 18:38:57 +00002390 if (CalleeReg == 0) return false;
2391 }
2392
Chad Rosierc6916f82012-06-12 19:25:13 +00002393 // Issue the call.
2394 unsigned CallOpc = ARMSelectCallOp(UseReg);
2395 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +00002396 DbgLoc, TII.get(CallOpc));
Chad Rosierc6916f82012-06-12 19:25:13 +00002397
Logan Chien2361f512013-08-22 12:08:04 +00002398 unsigned char OpFlags = 0;
2399
2400 // Add MO_PLT for global address or external symbol in the PIC relocation
2401 // model.
2402 if (Subtarget->isTargetELF() && TM.getRelocationModel() == Reloc::PIC_)
2403 OpFlags = ARMII::MO_PLT;
2404
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002405 // ARM calls don't take a predicate, but tBL / tBLX do.
2406 if(isThumb2)
Chad Rosierc6916f82012-06-12 19:25:13 +00002407 AddDefaultPred(MIB);
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002408 if (UseReg)
2409 MIB.addReg(CalleeReg);
2410 else if (!IntrMemName)
Logan Chien2361f512013-08-22 12:08:04 +00002411 MIB.addGlobalAddress(GV, 0, OpFlags);
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002412 else
Logan Chien2361f512013-08-22 12:08:04 +00002413 MIB.addExternalSymbol(IntrMemName, OpFlags);
Jush Luac96b762012-06-14 06:08:19 +00002414
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002415 // Add implicit physical register uses to the call.
2416 for (unsigned i = 0, e = RegArgs.size(); i != e; ++i)
Jakob Stoklund Olesene6afde52012-08-24 20:52:46 +00002417 MIB.addReg(RegArgs[i], RegState::Implicit);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002418
Jakob Stoklund Olesenfa7a5372012-02-24 01:19:29 +00002419 // Add a register mask with the call-preserved registers.
2420 // Proper defs for return values will be added by setPhysRegsDeadExcept().
2421 MIB.addRegMask(TRI.getCallPreservedMask(CC));
2422
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002423 // Finish off the call including any return values.
Eric Christopher7ac602b2010-10-11 08:38:55 +00002424 SmallVector<unsigned, 4> UsedRegs;
Jush Lue67e07b2012-07-19 09:49:00 +00002425 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes, isVarArg))
2426 return false;
Eric Christopher7ac602b2010-10-11 08:38:55 +00002427
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002428 // Set all unused physreg defs as dead.
2429 static_cast<MachineInstr *>(MIB)->setPhysRegsDeadExcept(UsedRegs, TRI);
Eric Christopher7ac602b2010-10-11 08:38:55 +00002430
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002431 return true;
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002432}
2433
Chad Rosier057b6d32011-11-14 23:04:09 +00002434bool ARMFastISel::ARMIsMemCpySmall(uint64_t Len) {
Chad Rosierab7223e2011-11-14 22:46:17 +00002435 return Len <= 16;
2436}
2437
Jim Grosbach0c509fa2012-04-06 23:43:50 +00002438bool ARMFastISel::ARMTryEmitSmallMemCpy(Address Dest, Address Src,
Chad Rosier9f5c68a2012-12-06 01:34:31 +00002439 uint64_t Len, unsigned Alignment) {
Chad Rosierab7223e2011-11-14 22:46:17 +00002440 // Make sure we don't bloat code by inlining very large memcpy's.
Chad Rosier057b6d32011-11-14 23:04:09 +00002441 if (!ARMIsMemCpySmall(Len))
Chad Rosierab7223e2011-11-14 22:46:17 +00002442 return false;
2443
Chad Rosierab7223e2011-11-14 22:46:17 +00002444 while (Len) {
2445 MVT VT;
Chad Rosier9f5c68a2012-12-06 01:34:31 +00002446 if (!Alignment || Alignment >= 4) {
2447 if (Len >= 4)
2448 VT = MVT::i32;
2449 else if (Len >= 2)
2450 VT = MVT::i16;
2451 else {
2452 assert (Len == 1 && "Expected a length of 1!");
2453 VT = MVT::i8;
2454 }
2455 } else {
2456 // Bound based on alignment.
2457 if (Len >= 2 && Alignment == 2)
2458 VT = MVT::i16;
2459 else {
Chad Rosier9f5c68a2012-12-06 01:34:31 +00002460 VT = MVT::i8;
2461 }
Chad Rosierab7223e2011-11-14 22:46:17 +00002462 }
2463
2464 bool RV;
2465 unsigned ResultReg;
2466 RV = ARMEmitLoad(VT, ResultReg, Src);
Eric Christopherd284c1d2012-01-11 20:55:27 +00002467 assert (RV == true && "Should be able to handle this load.");
Chad Rosierab7223e2011-11-14 22:46:17 +00002468 RV = ARMEmitStore(VT, ResultReg, Dest);
Eric Christopherd284c1d2012-01-11 20:55:27 +00002469 assert (RV == true && "Should be able to handle this store.");
Duncan Sandsae22c602012-02-05 14:20:11 +00002470 (void)RV;
Chad Rosierab7223e2011-11-14 22:46:17 +00002471
2472 unsigned Size = VT.getSizeInBits()/8;
2473 Len -= Size;
2474 Dest.Offset += Size;
2475 Src.Offset += Size;
2476 }
2477
2478 return true;
2479}
2480
Chad Rosiera7ebc562011-11-11 23:31:03 +00002481bool ARMFastISel::SelectIntrinsicCall(const IntrinsicInst &I) {
2482 // FIXME: Handle more intrinsics.
2483 switch (I.getIntrinsicID()) {
2484 default: return false;
Chad Rosier820d248c2012-05-30 17:23:22 +00002485 case Intrinsic::frameaddress: {
2486 MachineFrameInfo *MFI = FuncInfo.MF->getFrameInfo();
2487 MFI->setFrameAddressIsTaken(true);
2488
2489 unsigned LdrOpc;
2490 const TargetRegisterClass *RC;
2491 if (isThumb2) {
2492 LdrOpc = ARM::t2LDRi12;
2493 RC = (const TargetRegisterClass*)&ARM::tGPRRegClass;
2494 } else {
2495 LdrOpc = ARM::LDRi12;
2496 RC = (const TargetRegisterClass*)&ARM::GPRRegClass;
2497 }
2498
2499 const ARMBaseRegisterInfo *RegInfo =
Eric Christopherd9134482014-08-04 21:25:23 +00002500 static_cast<const ARMBaseRegisterInfo *>(
2501 TM.getSubtargetImpl()->getRegisterInfo());
Chad Rosier820d248c2012-05-30 17:23:22 +00002502 unsigned FramePtr = RegInfo->getFrameRegister(*(FuncInfo.MF));
2503 unsigned SrcReg = FramePtr;
2504
2505 // Recursively load frame address
2506 // ldr r0 [fp]
2507 // ldr r0 [r0]
2508 // ldr r0 [r0]
2509 // ...
2510 unsigned DestReg;
2511 unsigned Depth = cast<ConstantInt>(I.getOperand(0))->getZExtValue();
2512 while (Depth--) {
2513 DestReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002514 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Chad Rosier820d248c2012-05-30 17:23:22 +00002515 TII.get(LdrOpc), DestReg)
2516 .addReg(SrcReg).addImm(0));
2517 SrcReg = DestReg;
2518 }
Chad Rosierf3193242012-06-01 21:12:31 +00002519 UpdateValueMap(&I, SrcReg);
Chad Rosier820d248c2012-05-30 17:23:22 +00002520 return true;
2521 }
Chad Rosiera7ebc562011-11-11 23:31:03 +00002522 case Intrinsic::memcpy:
2523 case Intrinsic::memmove: {
Chad Rosiera7ebc562011-11-11 23:31:03 +00002524 const MemTransferInst &MTI = cast<MemTransferInst>(I);
2525 // Don't handle volatile.
2526 if (MTI.isVolatile())
2527 return false;
Chad Rosierab7223e2011-11-14 22:46:17 +00002528
2529 // Disable inlining for memmove before calls to ComputeAddress. Otherwise,
2530 // we would emit dead code because we don't currently handle memmoves.
2531 bool isMemCpy = (I.getIntrinsicID() == Intrinsic::memcpy);
2532 if (isa<ConstantInt>(MTI.getLength()) && isMemCpy) {
Chad Rosier057b6d32011-11-14 23:04:09 +00002533 // Small memcpy's are common enough that we want to do them without a call
2534 // if possible.
Chad Rosierab7223e2011-11-14 22:46:17 +00002535 uint64_t Len = cast<ConstantInt>(MTI.getLength())->getZExtValue();
Chad Rosier057b6d32011-11-14 23:04:09 +00002536 if (ARMIsMemCpySmall(Len)) {
Chad Rosierab7223e2011-11-14 22:46:17 +00002537 Address Dest, Src;
2538 if (!ARMComputeAddress(MTI.getRawDest(), Dest) ||
2539 !ARMComputeAddress(MTI.getRawSource(), Src))
2540 return false;
Chad Rosier9f5c68a2012-12-06 01:34:31 +00002541 unsigned Alignment = MTI.getAlignment();
2542 if (ARMTryEmitSmallMemCpy(Dest, Src, Len, Alignment))
Chad Rosierab7223e2011-11-14 22:46:17 +00002543 return true;
2544 }
2545 }
Jush Luac96b762012-06-14 06:08:19 +00002546
Chad Rosiera7ebc562011-11-11 23:31:03 +00002547 if (!MTI.getLength()->getType()->isIntegerTy(32))
2548 return false;
Jush Luac96b762012-06-14 06:08:19 +00002549
Chad Rosiera7ebc562011-11-11 23:31:03 +00002550 if (MTI.getSourceAddressSpace() > 255 || MTI.getDestAddressSpace() > 255)
2551 return false;
2552
2553 const char *IntrMemName = isa<MemCpyInst>(I) ? "memcpy" : "memmove";
2554 return SelectCall(&I, IntrMemName);
2555 }
2556 case Intrinsic::memset: {
2557 const MemSetInst &MSI = cast<MemSetInst>(I);
2558 // Don't handle volatile.
2559 if (MSI.isVolatile())
2560 return false;
Jush Luac96b762012-06-14 06:08:19 +00002561
Chad Rosiera7ebc562011-11-11 23:31:03 +00002562 if (!MSI.getLength()->getType()->isIntegerTy(32))
2563 return false;
Jush Luac96b762012-06-14 06:08:19 +00002564
Chad Rosiera7ebc562011-11-11 23:31:03 +00002565 if (MSI.getDestAddressSpace() > 255)
2566 return false;
Jush Luac96b762012-06-14 06:08:19 +00002567
Chad Rosiera7ebc562011-11-11 23:31:03 +00002568 return SelectCall(&I, "memset");
2569 }
Chad Rosieraa9cb9d2012-05-11 21:33:49 +00002570 case Intrinsic::trap: {
Rafael Espindolaea09c592014-02-18 22:05:46 +00002571 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(
Eli Bendersky2e2ce492013-01-30 16:30:19 +00002572 Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP));
Chad Rosieraa9cb9d2012-05-11 21:33:49 +00002573 return true;
2574 }
Chad Rosiera7ebc562011-11-11 23:31:03 +00002575 }
Chad Rosiera7ebc562011-11-11 23:31:03 +00002576}
2577
Chad Rosieree7e4522011-11-02 00:18:48 +00002578bool ARMFastISel::SelectTrunc(const Instruction *I) {
Jush Luac96b762012-06-14 06:08:19 +00002579 // The high bits for a type smaller than the register size are assumed to be
Chad Rosieree7e4522011-11-02 00:18:48 +00002580 // undefined.
2581 Value *Op = I->getOperand(0);
2582
2583 EVT SrcVT, DestVT;
2584 SrcVT = TLI.getValueType(Op->getType(), true);
2585 DestVT = TLI.getValueType(I->getType(), true);
2586
2587 if (SrcVT != MVT::i32 && SrcVT != MVT::i16 && SrcVT != MVT::i8)
2588 return false;
2589 if (DestVT != MVT::i16 && DestVT != MVT::i8 && DestVT != MVT::i1)
2590 return false;
2591
2592 unsigned SrcReg = getRegForValue(Op);
2593 if (!SrcReg) return false;
2594
2595 // Because the high bits are undefined, a truncate doesn't generate
2596 // any code.
2597 UpdateValueMap(I, SrcReg);
2598 return true;
2599}
2600
Chad Rosier62a144f2012-12-17 19:59:43 +00002601unsigned ARMFastISel::ARMEmitIntExt(MVT SrcVT, unsigned SrcReg, MVT DestVT,
Chad Rosier4489f942011-11-02 17:20:24 +00002602 bool isZExt) {
Eli Friedmanc7035512011-05-25 23:49:02 +00002603 if (DestVT != MVT::i32 && DestVT != MVT::i16 && DestVT != MVT::i8)
Chad Rosier4489f942011-11-02 17:20:24 +00002604 return 0;
JF Bastien06ce03d2013-06-07 20:10:37 +00002605 if (SrcVT != MVT::i16 && SrcVT != MVT::i8 && SrcVT != MVT::i1)
Chad Rosier4489f942011-11-02 17:20:24 +00002606 return 0;
JF Bastien06ce03d2013-06-07 20:10:37 +00002607
2608 // Table of which combinations can be emitted as a single instruction,
2609 // and which will require two.
2610 static const uint8_t isSingleInstrTbl[3][2][2][2] = {
2611 // ARM Thumb
2612 // !hasV6Ops hasV6Ops !hasV6Ops hasV6Ops
2613 // ext: s z s z s z s z
2614 /* 1 */ { { { 0, 1 }, { 0, 1 } }, { { 0, 0 }, { 0, 1 } } },
2615 /* 8 */ { { { 0, 1 }, { 1, 1 } }, { { 0, 0 }, { 1, 1 } } },
2616 /* 16 */ { { { 0, 0 }, { 1, 1 } }, { { 0, 0 }, { 1, 1 } } }
2617 };
2618
2619 // Target registers for:
2620 // - For ARM can never be PC.
2621 // - For 16-bit Thumb are restricted to lower 8 registers.
2622 // - For 32-bit Thumb are restricted to non-SP and non-PC.
2623 static const TargetRegisterClass *RCTbl[2][2] = {
2624 // Instructions: Two Single
2625 /* ARM */ { &ARM::GPRnopcRegClass, &ARM::GPRnopcRegClass },
2626 /* Thumb */ { &ARM::tGPRRegClass, &ARM::rGPRRegClass }
2627 };
2628
2629 // Table governing the instruction(s) to be emitted.
JF Bastiencd4c64d2013-07-17 05:46:46 +00002630 static const struct InstructionTable {
2631 uint32_t Opc : 16;
2632 uint32_t hasS : 1; // Some instructions have an S bit, always set it to 0.
2633 uint32_t Shift : 7; // For shift operand addressing mode, used by MOVsi.
2634 uint32_t Imm : 8; // All instructions have either a shift or a mask.
2635 } IT[2][2][3][2] = {
JF Bastien06ce03d2013-06-07 20:10:37 +00002636 { // Two instructions (first is left shift, second is in this table).
JF Bastiencd4c64d2013-07-17 05:46:46 +00002637 { // ARM Opc S Shift Imm
2638 /* 1 bit sext */ { { ARM::MOVsi , 1, ARM_AM::asr , 31 },
2639 /* 1 bit zext */ { ARM::MOVsi , 1, ARM_AM::lsr , 31 } },
2640 /* 8 bit sext */ { { ARM::MOVsi , 1, ARM_AM::asr , 24 },
2641 /* 8 bit zext */ { ARM::MOVsi , 1, ARM_AM::lsr , 24 } },
2642 /* 16 bit sext */ { { ARM::MOVsi , 1, ARM_AM::asr , 16 },
2643 /* 16 bit zext */ { ARM::MOVsi , 1, ARM_AM::lsr , 16 } }
JF Bastien06ce03d2013-06-07 20:10:37 +00002644 },
JF Bastiencd4c64d2013-07-17 05:46:46 +00002645 { // Thumb Opc S Shift Imm
2646 /* 1 bit sext */ { { ARM::tASRri , 0, ARM_AM::no_shift, 31 },
2647 /* 1 bit zext */ { ARM::tLSRri , 0, ARM_AM::no_shift, 31 } },
2648 /* 8 bit sext */ { { ARM::tASRri , 0, ARM_AM::no_shift, 24 },
2649 /* 8 bit zext */ { ARM::tLSRri , 0, ARM_AM::no_shift, 24 } },
2650 /* 16 bit sext */ { { ARM::tASRri , 0, ARM_AM::no_shift, 16 },
2651 /* 16 bit zext */ { ARM::tLSRri , 0, ARM_AM::no_shift, 16 } }
JF Bastien06ce03d2013-06-07 20:10:37 +00002652 }
2653 },
2654 { // Single instruction.
JF Bastiencd4c64d2013-07-17 05:46:46 +00002655 { // ARM Opc S Shift Imm
2656 /* 1 bit sext */ { { ARM::KILL , 0, ARM_AM::no_shift, 0 },
2657 /* 1 bit zext */ { ARM::ANDri , 1, ARM_AM::no_shift, 1 } },
2658 /* 8 bit sext */ { { ARM::SXTB , 0, ARM_AM::no_shift, 0 },
2659 /* 8 bit zext */ { ARM::ANDri , 1, ARM_AM::no_shift, 255 } },
2660 /* 16 bit sext */ { { ARM::SXTH , 0, ARM_AM::no_shift, 0 },
2661 /* 16 bit zext */ { ARM::UXTH , 0, ARM_AM::no_shift, 0 } }
JF Bastien06ce03d2013-06-07 20:10:37 +00002662 },
JF Bastiencd4c64d2013-07-17 05:46:46 +00002663 { // Thumb Opc S Shift Imm
2664 /* 1 bit sext */ { { ARM::KILL , 0, ARM_AM::no_shift, 0 },
2665 /* 1 bit zext */ { ARM::t2ANDri, 1, ARM_AM::no_shift, 1 } },
2666 /* 8 bit sext */ { { ARM::t2SXTB , 0, ARM_AM::no_shift, 0 },
2667 /* 8 bit zext */ { ARM::t2ANDri, 1, ARM_AM::no_shift, 255 } },
2668 /* 16 bit sext */ { { ARM::t2SXTH , 0, ARM_AM::no_shift, 0 },
2669 /* 16 bit zext */ { ARM::t2UXTH , 0, ARM_AM::no_shift, 0 } }
JF Bastien06ce03d2013-06-07 20:10:37 +00002670 }
2671 }
2672 };
2673
2674 unsigned SrcBits = SrcVT.getSizeInBits();
2675 unsigned DestBits = DestVT.getSizeInBits();
JF Bastien60a24422013-06-08 00:51:51 +00002676 (void) DestBits;
JF Bastien06ce03d2013-06-07 20:10:37 +00002677 assert((SrcBits < DestBits) && "can only extend to larger types");
2678 assert((DestBits == 32 || DestBits == 16 || DestBits == 8) &&
2679 "other sizes unimplemented");
2680 assert((SrcBits == 16 || SrcBits == 8 || SrcBits == 1) &&
2681 "other sizes unimplemented");
2682
2683 bool hasV6Ops = Subtarget->hasV6Ops();
JF Bastiencd4c64d2013-07-17 05:46:46 +00002684 unsigned Bitness = SrcBits / 8; // {1,8,16}=>{0,1,2}
JF Bastien06ce03d2013-06-07 20:10:37 +00002685 assert((Bitness < 3) && "sanity-check table bounds");
2686
2687 bool isSingleInstr = isSingleInstrTbl[Bitness][isThumb2][hasV6Ops][isZExt];
2688 const TargetRegisterClass *RC = RCTbl[isThumb2][isSingleInstr];
JF Bastiencd4c64d2013-07-17 05:46:46 +00002689 const InstructionTable *ITP = &IT[isSingleInstr][isThumb2][Bitness][isZExt];
2690 unsigned Opc = ITP->Opc;
JF Bastien06ce03d2013-06-07 20:10:37 +00002691 assert(ARM::KILL != Opc && "Invalid table entry");
JF Bastiencd4c64d2013-07-17 05:46:46 +00002692 unsigned hasS = ITP->hasS;
2693 ARM_AM::ShiftOpc Shift = (ARM_AM::ShiftOpc) ITP->Shift;
2694 assert(((Shift == ARM_AM::no_shift) == (Opc != ARM::MOVsi)) &&
2695 "only MOVsi has shift operand addressing mode");
2696 unsigned Imm = ITP->Imm;
JF Bastien06ce03d2013-06-07 20:10:37 +00002697
2698 // 16-bit Thumb instructions always set CPSR (unless they're in an IT block).
2699 bool setsCPSR = &ARM::tGPRRegClass == RC;
JF Bastiencd4c64d2013-07-17 05:46:46 +00002700 unsigned LSLOpc = isThumb2 ? ARM::tLSLri : ARM::MOVsi;
JF Bastien06ce03d2013-06-07 20:10:37 +00002701 unsigned ResultReg;
JF Bastiencd4c64d2013-07-17 05:46:46 +00002702 // MOVsi encodes shift and immediate in shift operand addressing mode.
2703 // The following condition has the same value when emitting two
2704 // instruction sequences: both are shifts.
2705 bool ImmIsSO = (Shift != ARM_AM::no_shift);
JF Bastien06ce03d2013-06-07 20:10:37 +00002706
2707 // Either one or two instructions are emitted.
2708 // They're always of the form:
2709 // dst = in OP imm
2710 // CPSR is set only by 16-bit Thumb instructions.
2711 // Predicate, if any, is AL.
2712 // S bit, if available, is always 0.
2713 // When two are emitted the first's result will feed as the second's input,
2714 // that value is then dead.
2715 unsigned NumInstrsEmitted = isSingleInstr ? 1 : 2;
2716 for (unsigned Instr = 0; Instr != NumInstrsEmitted; ++Instr) {
2717 ResultReg = createResultReg(RC);
JF Bastiencd4c64d2013-07-17 05:46:46 +00002718 bool isLsl = (0 == Instr) && !isSingleInstr;
2719 unsigned Opcode = isLsl ? LSLOpc : Opc;
2720 ARM_AM::ShiftOpc ShiftAM = isLsl ? ARM_AM::lsl : Shift;
2721 unsigned ImmEnc = ImmIsSO ? ARM_AM::getSORegOpc(ShiftAM, Imm) : Imm;
JF Bastien06ce03d2013-06-07 20:10:37 +00002722 bool isKill = 1 == Instr;
2723 MachineInstrBuilder MIB = BuildMI(
Rafael Espindolaea09c592014-02-18 22:05:46 +00002724 *FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(Opcode), ResultReg);
JF Bastien06ce03d2013-06-07 20:10:37 +00002725 if (setsCPSR)
2726 MIB.addReg(ARM::CPSR, RegState::Define);
Jim Grosbach3fa74912013-08-16 23:37:36 +00002727 SrcReg = constrainOperandRegClass(TII.get(Opcode), SrcReg, 1 + setsCPSR);
JF Bastiencd4c64d2013-07-17 05:46:46 +00002728 AddDefaultPred(MIB.addReg(SrcReg, isKill * RegState::Kill).addImm(ImmEnc));
JF Bastien06ce03d2013-06-07 20:10:37 +00002729 if (hasS)
2730 AddDefaultCC(MIB);
2731 // Second instruction consumes the first's result.
2732 SrcReg = ResultReg;
Eli Friedmanc7035512011-05-25 23:49:02 +00002733 }
2734
Chad Rosier4489f942011-11-02 17:20:24 +00002735 return ResultReg;
2736}
2737
2738bool ARMFastISel::SelectIntExt(const Instruction *I) {
2739 // On ARM, in general, integer casts don't involve legal types; this code
2740 // handles promotable integers.
Chad Rosier4489f942011-11-02 17:20:24 +00002741 Type *DestTy = I->getType();
2742 Value *Src = I->getOperand(0);
2743 Type *SrcTy = Src->getType();
2744
Chad Rosier4489f942011-11-02 17:20:24 +00002745 bool isZExt = isa<ZExtInst>(I);
2746 unsigned SrcReg = getRegForValue(Src);
2747 if (!SrcReg) return false;
2748
Chad Rosier62a144f2012-12-17 19:59:43 +00002749 EVT SrcEVT, DestEVT;
2750 SrcEVT = TLI.getValueType(SrcTy, true);
2751 DestEVT = TLI.getValueType(DestTy, true);
2752 if (!SrcEVT.isSimple()) return false;
2753 if (!DestEVT.isSimple()) return false;
Patrik Hagglundc494d242012-12-17 14:30:06 +00002754
Chad Rosier62a144f2012-12-17 19:59:43 +00002755 MVT SrcVT = SrcEVT.getSimpleVT();
2756 MVT DestVT = DestEVT.getSimpleVT();
Chad Rosier4489f942011-11-02 17:20:24 +00002757 unsigned ResultReg = ARMEmitIntExt(SrcVT, SrcReg, DestVT, isZExt);
2758 if (ResultReg == 0) return false;
2759 UpdateValueMap(I, ResultReg);
Eli Friedmanc7035512011-05-25 23:49:02 +00002760 return true;
2761}
2762
Jush Lu4705da92012-08-03 02:37:48 +00002763bool ARMFastISel::SelectShift(const Instruction *I,
2764 ARM_AM::ShiftOpc ShiftTy) {
2765 // We handle thumb2 mode by target independent selector
2766 // or SelectionDAG ISel.
2767 if (isThumb2)
2768 return false;
2769
2770 // Only handle i32 now.
2771 EVT DestVT = TLI.getValueType(I->getType(), true);
2772 if (DestVT != MVT::i32)
2773 return false;
2774
2775 unsigned Opc = ARM::MOVsr;
2776 unsigned ShiftImm;
2777 Value *Src2Value = I->getOperand(1);
2778 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Src2Value)) {
2779 ShiftImm = CI->getZExtValue();
2780
2781 // Fall back to selection DAG isel if the shift amount
2782 // is zero or greater than the width of the value type.
2783 if (ShiftImm == 0 || ShiftImm >=32)
2784 return false;
2785
2786 Opc = ARM::MOVsi;
2787 }
2788
2789 Value *Src1Value = I->getOperand(0);
2790 unsigned Reg1 = getRegForValue(Src1Value);
2791 if (Reg1 == 0) return false;
2792
Nadav Rotema8e15b02012-09-06 11:13:55 +00002793 unsigned Reg2 = 0;
Jush Lu4705da92012-08-03 02:37:48 +00002794 if (Opc == ARM::MOVsr) {
2795 Reg2 = getRegForValue(Src2Value);
2796 if (Reg2 == 0) return false;
2797 }
2798
JF Bastien13969d02013-05-29 15:45:47 +00002799 unsigned ResultReg = createResultReg(&ARM::GPRnopcRegClass);
Jush Lu4705da92012-08-03 02:37:48 +00002800 if(ResultReg == 0) return false;
2801
Rafael Espindolaea09c592014-02-18 22:05:46 +00002802 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jush Lu4705da92012-08-03 02:37:48 +00002803 TII.get(Opc), ResultReg)
2804 .addReg(Reg1);
2805
2806 if (Opc == ARM::MOVsi)
2807 MIB.addImm(ARM_AM::getSORegOpc(ShiftTy, ShiftImm));
2808 else if (Opc == ARM::MOVsr) {
2809 MIB.addReg(Reg2);
2810 MIB.addImm(ARM_AM::getSORegOpc(ShiftTy, 0));
2811 }
2812
2813 AddOptionalDefs(MIB);
2814 UpdateValueMap(I, ResultReg);
2815 return true;
2816}
2817
Eric Christopherc3e118e2010-09-02 23:43:26 +00002818// TODO: SoftFP support.
Eric Christopher84bdfd82010-07-21 22:26:11 +00002819bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
Eric Christopher2ff757d2010-09-09 01:06:51 +00002820
Eric Christopher84bdfd82010-07-21 22:26:11 +00002821 switch (I->getOpcode()) {
Eric Christopher00202ee2010-08-23 21:44:12 +00002822 case Instruction::Load:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002823 return SelectLoad(I);
Eric Christopherfde5a3d2010-09-01 22:16:27 +00002824 case Instruction::Store:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002825 return SelectStore(I);
Eric Christopher6aaed722010-09-03 00:35:47 +00002826 case Instruction::Br:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002827 return SelectBranch(I);
Chad Rosierded4c992012-02-07 23:56:08 +00002828 case Instruction::IndirectBr:
2829 return SelectIndirectBr(I);
Eric Christopherc3e9c402010-09-08 23:13:45 +00002830 case Instruction::ICmp:
2831 case Instruction::FCmp:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002832 return SelectCmp(I);
Eric Christopherf14b9bf2010-09-09 00:26:48 +00002833 case Instruction::FPExt:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002834 return SelectFPExt(I);
Eric Christopher5903c0b2010-09-09 20:26:31 +00002835 case Instruction::FPTrunc:
Eric Christopher29ab6d12010-09-27 06:02:23 +00002836 return SelectFPTrunc(I);
Eric Christopher6e3eeba2010-09-09 18:54:59 +00002837 case Instruction::SIToFP:
Chad Rosiere023d5d2012-02-03 21:14:11 +00002838 return SelectIToFP(I, /*isSigned*/ true);
Chad Rosiera8a8ac52012-02-03 19:42:52 +00002839 case Instruction::UIToFP:
Chad Rosiere023d5d2012-02-03 21:14:11 +00002840 return SelectIToFP(I, /*isSigned*/ false);
Eric Christopher6e3eeba2010-09-09 18:54:59 +00002841 case Instruction::FPToSI:
Chad Rosiere023d5d2012-02-03 21:14:11 +00002842 return SelectFPToI(I, /*isSigned*/ true);
Chad Rosier41f0e782012-02-03 20:27:51 +00002843 case Instruction::FPToUI:
Chad Rosiere023d5d2012-02-03 21:14:11 +00002844 return SelectFPToI(I, /*isSigned*/ false);
Chad Rosier685b20c2012-02-06 23:50:07 +00002845 case Instruction::Add:
2846 return SelectBinaryIntOp(I, ISD::ADD);
Chad Rosierbd471252012-02-08 02:29:21 +00002847 case Instruction::Or:
2848 return SelectBinaryIntOp(I, ISD::OR);
Chad Rosier0ee8c512012-02-08 02:45:44 +00002849 case Instruction::Sub:
2850 return SelectBinaryIntOp(I, ISD::SUB);
Eric Christopher24dc27f2010-09-09 00:53:57 +00002851 case Instruction::FAdd:
Chad Rosier685b20c2012-02-06 23:50:07 +00002852 return SelectBinaryFPOp(I, ISD::FADD);
Eric Christopher24dc27f2010-09-09 00:53:57 +00002853 case Instruction::FSub:
Chad Rosier685b20c2012-02-06 23:50:07 +00002854 return SelectBinaryFPOp(I, ISD::FSUB);
Eric Christopher24dc27f2010-09-09 00:53:57 +00002855 case Instruction::FMul:
Chad Rosier685b20c2012-02-06 23:50:07 +00002856 return SelectBinaryFPOp(I, ISD::FMUL);
Eric Christopher8b912662010-09-14 23:03:37 +00002857 case Instruction::SDiv:
Chad Rosieraaa55a82012-02-03 21:07:27 +00002858 return SelectDiv(I, /*isSigned*/ true);
2859 case Instruction::UDiv:
2860 return SelectDiv(I, /*isSigned*/ false);
Eric Christophereae1b382010-10-11 08:37:26 +00002861 case Instruction::SRem:
Chad Rosierb84a4b42012-02-03 21:23:45 +00002862 return SelectRem(I, /*isSigned*/ true);
2863 case Instruction::URem:
2864 return SelectRem(I, /*isSigned*/ false);
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002865 case Instruction::Call:
Chad Rosiera7ebc562011-11-11 23:31:03 +00002866 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
2867 return SelectIntrinsicCall(*II);
Eric Christopher78f8d4e2010-09-30 20:49:44 +00002868 return SelectCall(I);
Eric Christopher511aa312010-10-11 08:27:59 +00002869 case Instruction::Select:
2870 return SelectSelect(I);
Eric Christopher93bbe652010-10-22 01:28:00 +00002871 case Instruction::Ret:
2872 return SelectRet(I);
Eli Friedmanc7035512011-05-25 23:49:02 +00002873 case Instruction::Trunc:
Chad Rosieree7e4522011-11-02 00:18:48 +00002874 return SelectTrunc(I);
Eli Friedmanc7035512011-05-25 23:49:02 +00002875 case Instruction::ZExt:
2876 case Instruction::SExt:
Chad Rosieree7e4522011-11-02 00:18:48 +00002877 return SelectIntExt(I);
Jush Lu4705da92012-08-03 02:37:48 +00002878 case Instruction::Shl:
2879 return SelectShift(I, ARM_AM::lsl);
2880 case Instruction::LShr:
2881 return SelectShift(I, ARM_AM::lsr);
2882 case Instruction::AShr:
2883 return SelectShift(I, ARM_AM::asr);
Eric Christopher84bdfd82010-07-21 22:26:11 +00002884 default: break;
2885 }
2886 return false;
2887}
2888
JF Bastien3c6bb8e2013-06-11 22:13:46 +00002889namespace {
2890// This table describes sign- and zero-extend instructions which can be
2891// folded into a preceding load. All of these extends have an immediate
2892// (sometimes a mask and sometimes a shift) that's applied after
2893// extension.
2894const struct FoldableLoadExtendsStruct {
2895 uint16_t Opc[2]; // ARM, Thumb.
2896 uint8_t ExpectedImm;
2897 uint8_t isZExt : 1;
2898 uint8_t ExpectedVT : 7;
2899} FoldableLoadExtends[] = {
2900 { { ARM::SXTH, ARM::t2SXTH }, 0, 0, MVT::i16 },
2901 { { ARM::UXTH, ARM::t2UXTH }, 0, 1, MVT::i16 },
2902 { { ARM::ANDri, ARM::t2ANDri }, 255, 1, MVT::i8 },
2903 { { ARM::SXTB, ARM::t2SXTB }, 0, 0, MVT::i8 },
2904 { { ARM::UXTB, ARM::t2UXTB }, 0, 1, MVT::i8 }
2905};
2906}
2907
Eli Bendersky90dd3e72013-04-19 22:29:18 +00002908/// \brief The specified machine instr operand is a vreg, and that
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002909/// vreg is being provided by the specified load instruction. If possible,
2910/// try to fold the load as an operand to the instruction, returning true if
2911/// successful.
Eli Bendersky90dd3e72013-04-19 22:29:18 +00002912bool ARMFastISel::tryToFoldLoadIntoMI(MachineInstr *MI, unsigned OpNo,
2913 const LoadInst *LI) {
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002914 // Verify we have a legal type before going any further.
2915 MVT VT;
2916 if (!isLoadTypeLegal(LI->getType(), VT))
2917 return false;
2918
2919 // Combine load followed by zero- or sign-extend.
2920 // ldrb r1, [r0] ldrb r1, [r0]
2921 // uxtb r2, r1 =>
2922 // mov r3, r2 mov r3, r1
JF Bastien3c6bb8e2013-06-11 22:13:46 +00002923 if (MI->getNumOperands() < 3 || !MI->getOperand(2).isImm())
2924 return false;
2925 const uint64_t Imm = MI->getOperand(2).getImm();
2926
2927 bool Found = false;
2928 bool isZExt;
2929 for (unsigned i = 0, e = array_lengthof(FoldableLoadExtends);
2930 i != e; ++i) {
2931 if (FoldableLoadExtends[i].Opc[isThumb2] == MI->getOpcode() &&
2932 (uint64_t)FoldableLoadExtends[i].ExpectedImm == Imm &&
2933 MVT((MVT::SimpleValueType)FoldableLoadExtends[i].ExpectedVT) == VT) {
2934 Found = true;
2935 isZExt = FoldableLoadExtends[i].isZExt;
2936 }
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002937 }
JF Bastien3c6bb8e2013-06-11 22:13:46 +00002938 if (!Found) return false;
2939
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002940 // See if we can handle this address.
2941 Address Addr;
2942 if (!ARMComputeAddress(LI->getOperand(0), Addr)) return false;
Jush Luac96b762012-06-14 06:08:19 +00002943
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002944 unsigned ResultReg = MI->getOperand(0).getReg();
Chad Rosier563de602011-12-13 19:22:14 +00002945 if (!ARMEmitLoad(VT, ResultReg, Addr, LI->getAlignment(), isZExt, false))
Chad Rosierc8cfd3a2011-11-13 02:23:59 +00002946 return false;
2947 MI->eraseFromParent();
2948 return true;
2949}
2950
Jush Lu47172a02012-09-27 05:21:41 +00002951unsigned ARMFastISel::ARMLowerPICELF(const GlobalValue *GV,
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00002952 unsigned Align, MVT VT) {
Jush Lu47172a02012-09-27 05:21:41 +00002953 bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
2954 ARMConstantPoolConstant *CPV =
2955 ARMConstantPoolConstant::Create(GV, UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT);
2956 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
2957
2958 unsigned Opc;
2959 unsigned DestReg1 = createResultReg(TLI.getRegClassFor(VT));
2960 // Load value.
2961 if (isThumb2) {
Jim Grosbach5f71aab2013-08-26 20:07:29 +00002962 DestReg1 = constrainOperandRegClass(TII.get(ARM::t2LDRpci), DestReg1, 0);
Rafael Espindolaea09c592014-02-18 22:05:46 +00002963 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
Jush Lu47172a02012-09-27 05:21:41 +00002964 TII.get(ARM::t2LDRpci), DestReg1)
2965 .addConstantPoolIndex(Idx));
2966 Opc = UseGOTOFF ? ARM::t2ADDrr : ARM::t2LDRs;
2967 } else {
2968 // The extra immediate is for addrmode2.
Jim Grosbach5f71aab2013-08-26 20:07:29 +00002969 DestReg1 = constrainOperandRegClass(TII.get(ARM::LDRcp), DestReg1, 0);
Jush Lu47172a02012-09-27 05:21:41 +00002970 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +00002971 DbgLoc, TII.get(ARM::LDRcp), DestReg1)
Jush Lu47172a02012-09-27 05:21:41 +00002972 .addConstantPoolIndex(Idx).addImm(0));
2973 Opc = UseGOTOFF ? ARM::ADDrr : ARM::LDRrs;
2974 }
2975
2976 unsigned GlobalBaseReg = AFI->getGlobalBaseReg();
2977 if (GlobalBaseReg == 0) {
2978 GlobalBaseReg = MRI.createVirtualRegister(TLI.getRegClassFor(VT));
2979 AFI->setGlobalBaseReg(GlobalBaseReg);
2980 }
2981
2982 unsigned DestReg2 = createResultReg(TLI.getRegClassFor(VT));
Jim Grosbach5f71aab2013-08-26 20:07:29 +00002983 DestReg2 = constrainOperandRegClass(TII.get(Opc), DestReg2, 0);
2984 DestReg1 = constrainOperandRegClass(TII.get(Opc), DestReg1, 1);
2985 GlobalBaseReg = constrainOperandRegClass(TII.get(Opc), GlobalBaseReg, 2);
Jush Lu47172a02012-09-27 05:21:41 +00002986 MachineInstrBuilder MIB = BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt,
Rafael Espindolaea09c592014-02-18 22:05:46 +00002987 DbgLoc, TII.get(Opc), DestReg2)
Jush Lu47172a02012-09-27 05:21:41 +00002988 .addReg(DestReg1)
2989 .addReg(GlobalBaseReg);
2990 if (!UseGOTOFF)
2991 MIB.addImm(0);
2992 AddOptionalDefs(MIB);
2993
2994 return DestReg2;
2995}
2996
Evan Cheng615620c2013-02-11 01:27:15 +00002997bool ARMFastISel::FastLowerArguments() {
2998 if (!FuncInfo.CanLowerReturn)
2999 return false;
3000
3001 const Function *F = FuncInfo.Fn;
3002 if (F->isVarArg())
3003 return false;
3004
3005 CallingConv::ID CC = F->getCallingConv();
3006 switch (CC) {
3007 default:
3008 return false;
3009 case CallingConv::Fast:
3010 case CallingConv::C:
3011 case CallingConv::ARM_AAPCS_VFP:
3012 case CallingConv::ARM_AAPCS:
3013 case CallingConv::ARM_APCS:
3014 break;
3015 }
3016
3017 // Only handle simple cases. i.e. Up to 4 i8/i16/i32 scalar arguments
3018 // which are passed in r0 - r3.
3019 unsigned Idx = 1;
3020 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
3021 I != E; ++I, ++Idx) {
3022 if (Idx > 4)
3023 return false;
3024
3025 if (F->getAttributes().hasAttribute(Idx, Attribute::InReg) ||
3026 F->getAttributes().hasAttribute(Idx, Attribute::StructRet) ||
3027 F->getAttributes().hasAttribute(Idx, Attribute::ByVal))
3028 return false;
3029
3030 Type *ArgTy = I->getType();
3031 if (ArgTy->isStructTy() || ArgTy->isArrayTy() || ArgTy->isVectorTy())
3032 return false;
3033
3034 EVT ArgVT = TLI.getValueType(ArgTy);
Chad Rosier1b33e8d2013-02-26 01:05:31 +00003035 if (!ArgVT.isSimple()) return false;
Evan Cheng615620c2013-02-11 01:27:15 +00003036 switch (ArgVT.getSimpleVT().SimpleTy) {
3037 case MVT::i8:
3038 case MVT::i16:
3039 case MVT::i32:
3040 break;
3041 default:
3042 return false;
3043 }
3044 }
3045
3046
3047 static const uint16_t GPRArgRegs[] = {
3048 ARM::R0, ARM::R1, ARM::R2, ARM::R3
3049 };
3050
Jim Grosbachd69f3ed2013-08-16 23:37:23 +00003051 const TargetRegisterClass *RC = &ARM::rGPRRegClass;
Evan Cheng615620c2013-02-11 01:27:15 +00003052 Idx = 0;
3053 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
3054 I != E; ++I, ++Idx) {
Evan Cheng615620c2013-02-11 01:27:15 +00003055 unsigned SrcReg = GPRArgRegs[Idx];
3056 unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, RC);
3057 // FIXME: Unfortunately it's necessary to emit a copy from the livein copy.
3058 // Without this, EmitLiveInCopies may eliminate the livein if its only
3059 // use is a bitcast (which isn't turned into an instruction).
3060 unsigned ResultReg = createResultReg(RC);
Rafael Espindolaea09c592014-02-18 22:05:46 +00003061 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
3062 TII.get(TargetOpcode::COPY),
Evan Cheng615620c2013-02-11 01:27:15 +00003063 ResultReg).addReg(DstReg, getKillRegState(true));
3064 UpdateValueMap(I, ResultReg);
3065 }
3066
3067 return true;
3068}
3069
Eric Christopher84bdfd82010-07-21 22:26:11 +00003070namespace llvm {
Bob Wilson3e6fa462012-08-03 04:06:28 +00003071 FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo,
3072 const TargetLibraryInfo *libInfo) {
Eric Christopher5501b7e2010-10-11 20:05:22 +00003073 const TargetMachine &TM = funcInfo.MF->getTarget();
Jim Grosbach68147ee2010-11-09 19:22:26 +00003074
Eric Christopher5501b7e2010-10-11 20:05:22 +00003075 const ARMSubtarget *Subtarget = &TM.getSubtarget<ARMSubtarget>();
JF Bastien18db1f22013-06-14 02:49:43 +00003076 // Thumb2 support on iOS; ARM support on iOS, Linux and NaCl.
3077 bool UseFastISel = false;
Tim Northoverd6a729b2014-01-06 14:28:05 +00003078 UseFastISel |= Subtarget->isTargetMachO() && !Subtarget->isThumb1Only();
JF Bastien18db1f22013-06-14 02:49:43 +00003079 UseFastISel |= Subtarget->isTargetLinux() && !Subtarget->isThumb();
3080 UseFastISel |= Subtarget->isTargetNaCl() && !Subtarget->isThumb();
3081
3082 if (UseFastISel) {
3083 // iOS always has a FP for backtracking, force other targets
3084 // to keep their FP when doing FastISel. The emitted code is
3085 // currently superior, and in cases like test-suite's lencod
3086 // FastISel isn't quite correct when FP is eliminated.
3087 TM.Options.NoFramePointerElim = true;
Bob Wilson3e6fa462012-08-03 04:06:28 +00003088 return new ARMFastISel(funcInfo, libInfo);
JF Bastien18db1f22013-06-14 02:49:43 +00003089 }
Craig Topper062a2ba2014-04-25 05:30:21 +00003090 return nullptr;
Eric Christopher84bdfd82010-07-21 22:26:11 +00003091 }
3092}