blob: ef23b2d22639f337d9a7fb594eb54304807b6c6d [file] [log] [blame]
Evan Cheng10043e22007-01-19 07:51:42 +00001//===-- ARMISelLowering.cpp - ARM DAG Lowering Implementation -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Cheng10043e22007-01-19 07:51:42 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that ARM uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
Craig Topper188ed9d2012-03-17 07:33:42 +000015#include "ARMISelLowering.h"
Eric Christopher1c069172010-09-10 22:42:06 +000016#include "ARMCallingConv.h"
Evan Cheng10043e22007-01-19 07:51:42 +000017#include "ARMConstantPoolValue.h"
Evan Cheng10043e22007-01-19 07:51:42 +000018#include "ARMMachineFunctionInfo.h"
Anton Korobeynikov9a232f42009-08-21 12:41:24 +000019#include "ARMPerfectShuffle.h"
Evan Cheng10043e22007-01-19 07:51:42 +000020#include "ARMSubtarget.h"
21#include "ARMTargetMachine.h"
Chris Lattner4e7dfaf2009-08-02 00:34:36 +000022#include "ARMTargetObjectFile.h"
Evan Chenga20cde32011-07-20 23:34:39 +000023#include "MCTargetDesc/ARMAddressingModes.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/ADT/Statistic.h"
25#include "llvm/ADT/StringExtras.h"
Bob Wilsona4c22902009-04-17 19:07:39 +000026#include "llvm/CodeGen/CallingConvLower.h"
Evan Cheng078b0b02011-01-08 01:24:27 +000027#include "llvm/CodeGen/IntrinsicLowering.h"
Evan Cheng10043e22007-01-19 07:51:42 +000028#include "llvm/CodeGen/MachineBasicBlock.h"
29#include "llvm/CodeGen/MachineFrameInfo.h"
30#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineInstrBuilder.h"
Bill Wendling202803e2011-10-05 00:02:33 +000032#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng10043e22007-01-19 07:51:42 +000034#include "llvm/CodeGen/SelectionDAG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/CallingConv.h"
36#include "llvm/IR/Constants.h"
37#include "llvm/IR/Function.h"
38#include "llvm/IR/GlobalValue.h"
Tim Northover037f26f22014-04-17 18:22:47 +000039#include "llvm/IR/IRBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000040#include "llvm/IR/Instruction.h"
41#include "llvm/IR/Instructions.h"
42#include "llvm/IR/Intrinsics.h"
43#include "llvm/IR/Type.h"
Bill Wendling46ffefc2010-03-09 02:46:12 +000044#include "llvm/MC/MCSectionMachO.h"
Jim Grosbach32bb3622010-04-14 22:28:31 +000045#include "llvm/Support/CommandLine.h"
Oliver Stannardc24f2172014-05-09 14:01:47 +000046#include "llvm/Support/Debug.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000047#include "llvm/Support/ErrorHandling.h"
Evan Cheng2150b922007-03-12 23:30:29 +000048#include "llvm/Support/MathExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000049#include "llvm/Target/TargetOptions.h"
David Peixottoc32e24a2013-10-17 19:49:22 +000050#include <utility>
Evan Cheng10043e22007-01-19 07:51:42 +000051using namespace llvm;
52
Chandler Carruth84e68b22014-04-22 02:41:26 +000053#define DEBUG_TYPE "arm-isel"
54
Dale Johannesend679ff72010-06-03 21:09:53 +000055STATISTIC(NumTailCalls, "Number of tail calls");
Evan Cheng68aec142011-01-19 02:16:49 +000056STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
Manman Ren9f911162012-06-01 02:44:42 +000057STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments");
Dale Johannesend679ff72010-06-03 21:09:53 +000058
Eric Christopher347f4c32010-12-15 23:47:29 +000059cl::opt<bool>
Jim Grosbach32bb3622010-04-14 22:28:31 +000060EnableARMLongCalls("arm-long-calls", cl::Hidden,
Evan Cheng25f93642010-07-08 02:08:50 +000061 cl::desc("Generate calls via indirect call instructions"),
Jim Grosbach32bb3622010-04-14 22:28:31 +000062 cl::init(false));
63
Evan Chengf128bdc2010-06-16 07:35:02 +000064static cl::opt<bool>
65ARMInterworking("arm-interworking", cl::Hidden,
66 cl::desc("Enable / disable ARM interworking (for debugging only)"),
67 cl::init(true));
68
Benjamin Kramer7ba71be2011-11-26 23:01:57 +000069namespace {
Cameron Zwarich89019782011-06-10 20:59:24 +000070 class ARMCCState : public CCState {
71 public:
72 ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
Craig Topperb94011f2013-07-14 04:42:23 +000073 const TargetMachine &TM, SmallVectorImpl<CCValAssign> &locs,
Cameron Zwarich89019782011-06-10 20:59:24 +000074 LLVMContext &C, ParmContext PC)
75 : CCState(CC, isVarArg, MF, TM, locs, C) {
76 assert(((PC == Call) || (PC == Prologue)) &&
77 "ARMCCState users must specify whether their context is call"
78 "or prologue generation.");
79 CallOrPrologue = PC;
80 }
81 };
82}
83
Stuart Hastings45fe3c32011-04-20 16:47:52 +000084// The APCS parameter registers.
Craig Topper840beec2014-04-04 05:16:06 +000085static const MCPhysReg GPRArgRegs[] = {
Stuart Hastings45fe3c32011-04-20 16:47:52 +000086 ARM::R0, ARM::R1, ARM::R2, ARM::R3
87};
88
Craig Topper4fa625f2012-08-12 03:16:37 +000089void ARMTargetLowering::addTypeForNEON(MVT VT, MVT PromotedLdStVT,
90 MVT PromotedBitwiseVT) {
Bob Wilson2e076c42009-06-22 23:27:02 +000091 if (VT != PromotedLdStVT) {
Craig Topper4fa625f2012-08-12 03:16:37 +000092 setOperationAction(ISD::LOAD, VT, Promote);
93 AddPromotedToType (ISD::LOAD, VT, PromotedLdStVT);
Bob Wilson2e076c42009-06-22 23:27:02 +000094
Craig Topper4fa625f2012-08-12 03:16:37 +000095 setOperationAction(ISD::STORE, VT, Promote);
96 AddPromotedToType (ISD::STORE, VT, PromotedLdStVT);
Bob Wilson2e076c42009-06-22 23:27:02 +000097 }
98
Craig Topper4fa625f2012-08-12 03:16:37 +000099 MVT ElemTy = VT.getVectorElementType();
Owen Anderson9f944592009-08-11 20:47:22 +0000100 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
Craig Topper4fa625f2012-08-12 03:16:37 +0000101 setOperationAction(ISD::SETCC, VT, Custom);
102 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
103 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Eli Friedman2d4055b2011-11-09 23:36:02 +0000104 if (ElemTy == MVT::i32) {
Craig Topper4fa625f2012-08-12 03:16:37 +0000105 setOperationAction(ISD::SINT_TO_FP, VT, Custom);
106 setOperationAction(ISD::UINT_TO_FP, VT, Custom);
107 setOperationAction(ISD::FP_TO_SINT, VT, Custom);
108 setOperationAction(ISD::FP_TO_UINT, VT, Custom);
Eli Friedman2d4055b2011-11-09 23:36:02 +0000109 } else {
Craig Topper4fa625f2012-08-12 03:16:37 +0000110 setOperationAction(ISD::SINT_TO_FP, VT, Expand);
111 setOperationAction(ISD::UINT_TO_FP, VT, Expand);
112 setOperationAction(ISD::FP_TO_SINT, VT, Expand);
113 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
Bob Wilson5d8cfb22009-09-16 20:20:44 +0000114 }
Craig Topper4fa625f2012-08-12 03:16:37 +0000115 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
116 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
117 setOperationAction(ISD::CONCAT_VECTORS, VT, Legal);
118 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
119 setOperationAction(ISD::SELECT, VT, Expand);
120 setOperationAction(ISD::SELECT_CC, VT, Expand);
Jim Grosbach30af4422012-10-12 22:59:21 +0000121 setOperationAction(ISD::VSELECT, VT, Expand);
Craig Topper4fa625f2012-08-12 03:16:37 +0000122 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
Bob Wilson2e076c42009-06-22 23:27:02 +0000123 if (VT.isInteger()) {
Craig Topper4fa625f2012-08-12 03:16:37 +0000124 setOperationAction(ISD::SHL, VT, Custom);
125 setOperationAction(ISD::SRA, VT, Custom);
126 setOperationAction(ISD::SRL, VT, Custom);
Bob Wilson2e076c42009-06-22 23:27:02 +0000127 }
128
129 // Promote all bit-wise operations.
130 if (VT.isInteger() && VT != PromotedBitwiseVT) {
Craig Topper4fa625f2012-08-12 03:16:37 +0000131 setOperationAction(ISD::AND, VT, Promote);
132 AddPromotedToType (ISD::AND, VT, PromotedBitwiseVT);
133 setOperationAction(ISD::OR, VT, Promote);
134 AddPromotedToType (ISD::OR, VT, PromotedBitwiseVT);
135 setOperationAction(ISD::XOR, VT, Promote);
136 AddPromotedToType (ISD::XOR, VT, PromotedBitwiseVT);
Bob Wilson2e076c42009-06-22 23:27:02 +0000137 }
Bob Wilson4ed397c2009-09-16 00:17:28 +0000138
139 // Neon does not support vector divide/remainder operations.
Craig Topper4fa625f2012-08-12 03:16:37 +0000140 setOperationAction(ISD::SDIV, VT, Expand);
141 setOperationAction(ISD::UDIV, VT, Expand);
142 setOperationAction(ISD::FDIV, VT, Expand);
143 setOperationAction(ISD::SREM, VT, Expand);
144 setOperationAction(ISD::UREM, VT, Expand);
145 setOperationAction(ISD::FREM, VT, Expand);
Bob Wilson2e076c42009-06-22 23:27:02 +0000146}
147
Craig Topper4fa625f2012-08-12 03:16:37 +0000148void ARMTargetLowering::addDRTypeForNEON(MVT VT) {
Craig Topperc7242e02012-04-20 07:30:17 +0000149 addRegisterClass(VT, &ARM::DPRRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +0000150 addTypeForNEON(VT, MVT::f64, MVT::v2i32);
Bob Wilson2e076c42009-06-22 23:27:02 +0000151}
152
Craig Topper4fa625f2012-08-12 03:16:37 +0000153void ARMTargetLowering::addQRTypeForNEON(MVT VT) {
Jakob Stoklund Olesen20912062014-01-14 06:18:34 +0000154 addRegisterClass(VT, &ARM::DPairRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +0000155 addTypeForNEON(VT, MVT::v2f64, MVT::v4i32);
Bob Wilson2e076c42009-06-22 23:27:02 +0000156}
157
Eric Christopher89958332014-05-31 00:07:32 +0000158static TargetLoweringObjectFile *createTLOF(const Triple &TT) {
159 if (TT.isOSBinFormatMachO())
Bill Wendlingbbcaa402010-03-15 21:09:38 +0000160 return new TargetLoweringObjectFileMachO();
Eric Christopher89958332014-05-31 00:07:32 +0000161 if (TT.isOSWindows())
Saleem Abdulrasool46fed302014-05-17 04:28:08 +0000162 return new TargetLoweringObjectFileCOFF();
Chris Lattner4e7dfaf2009-08-02 00:34:36 +0000163 return new ARMElfTargetObjectFile();
Chris Lattner5e693ed2009-07-28 03:13:23 +0000164}
165
Evan Cheng10043e22007-01-19 07:51:42 +0000166ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
Eric Christopher89958332014-05-31 00:07:32 +0000167 : TargetLowering(TM, createTLOF(Triple(TM.getTargetTriple()))) {
Evan Cheng10043e22007-01-19 07:51:42 +0000168 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Chengdf907f42010-07-23 22:39:59 +0000169 RegInfo = TM.getRegisterInfo();
Evan Chengbf407072010-09-10 01:29:16 +0000170 Itins = TM.getInstrItineraryData();
Evan Cheng10043e22007-01-19 07:51:42 +0000171
Duncan Sandsf2641e12011-09-06 19:07:46 +0000172 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
173
Tim Northoverd6a729b2014-01-06 14:28:05 +0000174 if (Subtarget->isTargetMachO()) {
Evan Chengc9f22fd12007-04-27 08:15:43 +0000175 // Uses VFP for Thumb libfuncs if available.
Jim Grosbach1d1d6d42013-10-24 23:07:11 +0000176 if (Subtarget->isThumb() && Subtarget->hasVFP2() &&
Tim Northover978d25f2014-04-22 10:10:09 +0000177 Subtarget->hasARMOps() && !TM.Options.UseSoftFloat) {
Evan Chengc9f22fd12007-04-27 08:15:43 +0000178 // Single-precision floating-point arithmetic.
179 setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
180 setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
181 setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
182 setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
Evan Cheng10043e22007-01-19 07:51:42 +0000183
Evan Chengc9f22fd12007-04-27 08:15:43 +0000184 // Double-precision floating-point arithmetic.
185 setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
186 setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
187 setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
188 setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
Evan Cheng143576d2007-01-31 09:30:58 +0000189
Evan Chengc9f22fd12007-04-27 08:15:43 +0000190 // Single-precision comparisons.
191 setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
192 setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
193 setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
194 setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
195 setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
196 setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
197 setLibcallName(RTLIB::UO_F32, "__unordsf2vfp");
198 setLibcallName(RTLIB::O_F32, "__unordsf2vfp");
Evan Cheng10043e22007-01-19 07:51:42 +0000199
Evan Chengc9f22fd12007-04-27 08:15:43 +0000200 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
201 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
202 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
203 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
204 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
205 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
206 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE);
207 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ);
Evan Cheng143576d2007-01-31 09:30:58 +0000208
Evan Chengc9f22fd12007-04-27 08:15:43 +0000209 // Double-precision comparisons.
210 setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
211 setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
212 setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
213 setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
214 setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
215 setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
216 setLibcallName(RTLIB::UO_F64, "__unorddf2vfp");
217 setLibcallName(RTLIB::O_F64, "__unorddf2vfp");
Evan Cheng10043e22007-01-19 07:51:42 +0000218
Evan Chengc9f22fd12007-04-27 08:15:43 +0000219 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
220 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
221 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
222 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
223 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
224 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
225 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE);
226 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ);
Evan Cheng10043e22007-01-19 07:51:42 +0000227
Evan Chengc9f22fd12007-04-27 08:15:43 +0000228 // Floating-point to integer conversions.
229 // i64 conversions are done via library routines even when generating VFP
230 // instructions, so use the same ones.
231 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
232 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
233 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
234 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
Evan Cheng10043e22007-01-19 07:51:42 +0000235
Evan Chengc9f22fd12007-04-27 08:15:43 +0000236 // Conversions between floating types.
237 setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
238 setLibcallName(RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp");
239
240 // Integer to floating-point conversions.
241 // i64 conversions are done via library routines even when generating VFP
242 // instructions, so use the same ones.
Bob Wilsondc40d5a2009-03-20 23:16:43 +0000243 // FIXME: There appears to be some naming inconsistency in ARM libgcc:
244 // e.g., __floatunsidf vs. __floatunssidfvfp.
Evan Chengc9f22fd12007-04-27 08:15:43 +0000245 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
246 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
247 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
248 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
249 }
Evan Cheng10043e22007-01-19 07:51:42 +0000250 }
251
Bob Wilsonccbc17b2009-05-22 17:38:41 +0000252 // These libcalls are not available in 32-bit.
Craig Topper062a2ba2014-04-25 05:30:21 +0000253 setLibcallName(RTLIB::SHL_I128, nullptr);
254 setLibcallName(RTLIB::SRL_I128, nullptr);
255 setLibcallName(RTLIB::SRA_I128, nullptr);
Bob Wilsonccbc17b2009-05-22 17:38:41 +0000256
Saleem Abdulrasoolcd130822014-04-02 20:32:05 +0000257 if (Subtarget->isAAPCS_ABI() && !Subtarget->isTargetMachO() &&
258 !Subtarget->isTargetWindows()) {
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000259 static const struct {
260 const RTLIB::Libcall Op;
261 const char * const Name;
262 const CallingConv::ID CC;
263 const ISD::CondCode Cond;
264 } LibraryCalls[] = {
265 // Double-precision floating-point arithmetic helper functions
266 // RTABI chapter 4.1.2, Table 2
267 { RTLIB::ADD_F64, "__aeabi_dadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
268 { RTLIB::DIV_F64, "__aeabi_ddiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
269 { RTLIB::MUL_F64, "__aeabi_dmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
270 { RTLIB::SUB_F64, "__aeabi_dsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000271
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000272 // Double-precision floating-point comparison helper functions
273 // RTABI chapter 4.1.2, Table 3
274 { RTLIB::OEQ_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
275 { RTLIB::UNE_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
276 { RTLIB::OLT_F64, "__aeabi_dcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
277 { RTLIB::OLE_F64, "__aeabi_dcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
278 { RTLIB::OGE_F64, "__aeabi_dcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
279 { RTLIB::OGT_F64, "__aeabi_dcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
280 { RTLIB::UO_F64, "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
281 { RTLIB::O_F64, "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000282
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000283 // Single-precision floating-point arithmetic helper functions
284 // RTABI chapter 4.1.2, Table 4
285 { RTLIB::ADD_F32, "__aeabi_fadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
286 { RTLIB::DIV_F32, "__aeabi_fdiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
287 { RTLIB::MUL_F32, "__aeabi_fmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
288 { RTLIB::SUB_F32, "__aeabi_fsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000289
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000290 // Single-precision floating-point comparison helper functions
291 // RTABI chapter 4.1.2, Table 5
292 { RTLIB::OEQ_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
293 { RTLIB::UNE_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
294 { RTLIB::OLT_F32, "__aeabi_fcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
295 { RTLIB::OLE_F32, "__aeabi_fcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
296 { RTLIB::OGE_F32, "__aeabi_fcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
297 { RTLIB::OGT_F32, "__aeabi_fcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
298 { RTLIB::UO_F32, "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
299 { RTLIB::O_F32, "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000300
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000301 // Floating-point to integer conversions.
302 // RTABI chapter 4.1.2, Table 6
303 { RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
304 { RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
305 { RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
306 { RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
307 { RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
308 { RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
309 { RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
310 { RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000311
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000312 // Conversions between floating types.
313 // RTABI chapter 4.1.2, Table 7
314 { RTLIB::FPROUND_F64_F32, "__aeabi_d2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
315 { RTLIB::FPEXT_F32_F64, "__aeabi_f2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000316
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000317 // Integer to floating-point conversions.
318 // RTABI chapter 4.1.2, Table 8
319 { RTLIB::SINTTOFP_I32_F64, "__aeabi_i2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
320 { RTLIB::UINTTOFP_I32_F64, "__aeabi_ui2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
321 { RTLIB::SINTTOFP_I64_F64, "__aeabi_l2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
322 { RTLIB::UINTTOFP_I64_F64, "__aeabi_ul2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
323 { RTLIB::SINTTOFP_I32_F32, "__aeabi_i2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
324 { RTLIB::UINTTOFP_I32_F32, "__aeabi_ui2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
325 { RTLIB::SINTTOFP_I64_F32, "__aeabi_l2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
326 { RTLIB::UINTTOFP_I64_F32, "__aeabi_ul2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000327
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000328 // Long long helper functions
329 // RTABI chapter 4.2, Table 9
330 { RTLIB::MUL_I64, "__aeabi_lmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
331 { RTLIB::SHL_I64, "__aeabi_llsl", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
332 { RTLIB::SRL_I64, "__aeabi_llsr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
333 { RTLIB::SRA_I64, "__aeabi_lasr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000334
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000335 // Integer division functions
336 // RTABI chapter 4.3.1
337 { RTLIB::SDIV_I8, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
338 { RTLIB::SDIV_I16, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
339 { RTLIB::SDIV_I32, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
340 { RTLIB::SDIV_I64, "__aeabi_ldivmod", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
341 { RTLIB::UDIV_I8, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
342 { RTLIB::UDIV_I16, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
343 { RTLIB::UDIV_I32, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
344 { RTLIB::UDIV_I64, "__aeabi_uldivmod", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Renato Golin4cd51872011-05-22 21:41:23 +0000345
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000346 // Memory operations
347 // RTABI chapter 4.3.4
348 { RTLIB::MEMCPY, "__aeabi_memcpy", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
349 { RTLIB::MEMMOVE, "__aeabi_memmove", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
350 { RTLIB::MEMSET, "__aeabi_memset", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
351 };
352
353 for (const auto &LC : LibraryCalls) {
354 setLibcallName(LC.Op, LC.Name);
355 setLibcallCallingConv(LC.Op, LC.CC);
356 if (LC.Cond != ISD::SETCC_INVALID)
357 setCmpLibcallCC(LC.Op, LC.Cond);
358 }
Anton Korobeynikova6b3ce22009-08-14 20:10:52 +0000359 }
360
Saleem Abdulrasool056fc3d2014-05-16 05:41:33 +0000361 if (Subtarget->isTargetWindows()) {
362 static const struct {
363 const RTLIB::Libcall Op;
364 const char * const Name;
365 const CallingConv::ID CC;
366 } LibraryCalls[] = {
367 { RTLIB::FPTOSINT_F32_I64, "__stoi64", CallingConv::ARM_AAPCS_VFP },
368 { RTLIB::FPTOSINT_F64_I64, "__dtoi64", CallingConv::ARM_AAPCS_VFP },
369 { RTLIB::FPTOUINT_F32_I64, "__stou64", CallingConv::ARM_AAPCS_VFP },
370 { RTLIB::FPTOUINT_F64_I64, "__dtou64", CallingConv::ARM_AAPCS_VFP },
371 { RTLIB::SINTTOFP_I64_F32, "__i64tos", CallingConv::ARM_AAPCS_VFP },
372 { RTLIB::SINTTOFP_I64_F64, "__i64tod", CallingConv::ARM_AAPCS_VFP },
373 { RTLIB::UINTTOFP_I64_F32, "__u64tos", CallingConv::ARM_AAPCS_VFP },
374 { RTLIB::UINTTOFP_I64_F64, "__u64tod", CallingConv::ARM_AAPCS_VFP },
375 };
376
377 for (const auto &LC : LibraryCalls) {
378 setLibcallName(LC.Op, LC.Name);
379 setLibcallCallingConv(LC.Op, LC.CC);
380 }
381 }
382
Bob Wilsonbc158992011-10-07 16:59:21 +0000383 // Use divmod compiler-rt calls for iOS 5.0 and later.
Cameron Esfahani943908b2013-08-29 20:23:14 +0000384 if (Subtarget->getTargetTriple().isiOS() &&
Bob Wilsonbc158992011-10-07 16:59:21 +0000385 !Subtarget->getTargetTriple().isOSVersionLT(5, 0)) {
386 setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4");
387 setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4");
388 }
389
David Goodwin22c2fba2009-07-08 23:10:31 +0000390 if (Subtarget->isThumb1Only())
Craig Topperc7242e02012-04-20 07:30:17 +0000391 addRegisterClass(MVT::i32, &ARM::tGPRRegClass);
Jim Grosbachfde21102009-04-07 20:34:09 +0000392 else
Craig Topperc7242e02012-04-20 07:30:17 +0000393 addRegisterClass(MVT::i32, &ARM::GPRRegClass);
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000394 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
395 !Subtarget->isThumb1Only()) {
Craig Topperc7242e02012-04-20 07:30:17 +0000396 addRegisterClass(MVT::f32, &ARM::SPRRegClass);
Jim Grosbach4d5dc3e2010-08-11 15:44:15 +0000397 if (!Subtarget->isFPOnlySP())
Craig Topperc7242e02012-04-20 07:30:17 +0000398 addRegisterClass(MVT::f64, &ARM::DPRRegClass);
Bob Wilson7117a912009-03-20 22:42:55 +0000399
Owen Anderson9f944592009-08-11 20:47:22 +0000400 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000401 }
Bob Wilson2e076c42009-06-22 23:27:02 +0000402
Eli Friedman6f84fed2011-11-08 01:43:53 +0000403 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
404 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
405 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
406 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
407 setTruncStoreAction((MVT::SimpleValueType)VT,
408 (MVT::SimpleValueType)InnerVT, Expand);
409 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
410 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
411 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Benjamin Kramer4dae5982014-04-26 12:06:28 +0000412
413 setOperationAction(ISD::MULHS, (MVT::SimpleValueType)VT, Expand);
414 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
415 setOperationAction(ISD::MULHU, (MVT::SimpleValueType)VT, Expand);
416 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
Benjamin Kramerf3ad2352014-05-19 13:12:38 +0000417
418 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
Eli Friedman6f84fed2011-11-08 01:43:53 +0000419 }
420
Lang Hamesc35ee8b2012-03-15 18:49:02 +0000421 setOperationAction(ISD::ConstantFP, MVT::f32, Custom);
Tim Northoverf79c3a52013-08-20 08:57:11 +0000422 setOperationAction(ISD::ConstantFP, MVT::f64, Custom);
Lang Hamesc35ee8b2012-03-15 18:49:02 +0000423
Bob Wilson2e076c42009-06-22 23:27:02 +0000424 if (Subtarget->hasNEON()) {
Owen Anderson9f944592009-08-11 20:47:22 +0000425 addDRTypeForNEON(MVT::v2f32);
426 addDRTypeForNEON(MVT::v8i8);
427 addDRTypeForNEON(MVT::v4i16);
428 addDRTypeForNEON(MVT::v2i32);
429 addDRTypeForNEON(MVT::v1i64);
Bob Wilson2e076c42009-06-22 23:27:02 +0000430
Owen Anderson9f944592009-08-11 20:47:22 +0000431 addQRTypeForNEON(MVT::v4f32);
432 addQRTypeForNEON(MVT::v2f64);
433 addQRTypeForNEON(MVT::v16i8);
434 addQRTypeForNEON(MVT::v8i16);
435 addQRTypeForNEON(MVT::v4i32);
436 addQRTypeForNEON(MVT::v2i64);
Bob Wilson2e076c42009-06-22 23:27:02 +0000437
Bob Wilson194a2512009-09-15 23:55:57 +0000438 // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
439 // neither Neon nor VFP support any arithmetic operations on it.
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000440 // The same with v4f32. But keep in mind that vadd, vsub, vmul are natively
441 // supported for v4f32.
Bob Wilson194a2512009-09-15 23:55:57 +0000442 setOperationAction(ISD::FADD, MVT::v2f64, Expand);
443 setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
444 setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000445 // FIXME: Code duplication: FDIV and FREM are expanded always, see
446 // ARMTargetLowering::addTypeForNEON method for details.
Bob Wilson194a2512009-09-15 23:55:57 +0000447 setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
448 setOperationAction(ISD::FREM, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000449 // FIXME: Create unittest.
450 // In another words, find a way when "copysign" appears in DAG with vector
451 // operands.
Bob Wilson194a2512009-09-15 23:55:57 +0000452 setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000453 // FIXME: Code duplication: SETCC has custom operation action, see
454 // ARMTargetLowering::addTypeForNEON method for details.
Duncan Sandsf2641e12011-09-06 19:07:46 +0000455 setOperationAction(ISD::SETCC, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000456 // FIXME: Create unittest for FNEG and for FABS.
Bob Wilson194a2512009-09-15 23:55:57 +0000457 setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
458 setOperationAction(ISD::FABS, MVT::v2f64, Expand);
459 setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
460 setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
461 setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
462 setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
463 setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
464 setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
465 setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
466 setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
467 setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
468 setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000469 // FIXME: Create unittest for FCEIL, FTRUNC, FRINT, FNEARBYINT, FFLOOR.
Bob Wilson194a2512009-09-15 23:55:57 +0000470 setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
471 setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
472 setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
473 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
474 setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
Arnold Schwaighofer99cba962013-03-02 19:38:33 +0000475 setOperationAction(ISD::FMA, MVT::v2f64, Expand);
Lang Hames591cdaf2012-03-29 21:56:11 +0000476
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000477 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
478 setOperationAction(ISD::FSIN, MVT::v4f32, Expand);
479 setOperationAction(ISD::FCOS, MVT::v4f32, Expand);
480 setOperationAction(ISD::FPOWI, MVT::v4f32, Expand);
481 setOperationAction(ISD::FPOW, MVT::v4f32, Expand);
482 setOperationAction(ISD::FLOG, MVT::v4f32, Expand);
483 setOperationAction(ISD::FLOG2, MVT::v4f32, Expand);
484 setOperationAction(ISD::FLOG10, MVT::v4f32, Expand);
485 setOperationAction(ISD::FEXP, MVT::v4f32, Expand);
486 setOperationAction(ISD::FEXP2, MVT::v4f32, Expand);
Craig Topper61d04572012-11-15 06:51:10 +0000487 setOperationAction(ISD::FCEIL, MVT::v4f32, Expand);
488 setOperationAction(ISD::FTRUNC, MVT::v4f32, Expand);
489 setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
490 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
Craig Topper3e41a5b2012-09-08 04:58:43 +0000491 setOperationAction(ISD::FFLOOR, MVT::v4f32, Expand);
Bob Wilson194a2512009-09-15 23:55:57 +0000492
Arnold Schwaighofer99cba962013-03-02 19:38:33 +0000493 // Mark v2f32 intrinsics.
494 setOperationAction(ISD::FSQRT, MVT::v2f32, Expand);
495 setOperationAction(ISD::FSIN, MVT::v2f32, Expand);
496 setOperationAction(ISD::FCOS, MVT::v2f32, Expand);
497 setOperationAction(ISD::FPOWI, MVT::v2f32, Expand);
498 setOperationAction(ISD::FPOW, MVT::v2f32, Expand);
499 setOperationAction(ISD::FLOG, MVT::v2f32, Expand);
500 setOperationAction(ISD::FLOG2, MVT::v2f32, Expand);
501 setOperationAction(ISD::FLOG10, MVT::v2f32, Expand);
502 setOperationAction(ISD::FEXP, MVT::v2f32, Expand);
503 setOperationAction(ISD::FEXP2, MVT::v2f32, Expand);
504 setOperationAction(ISD::FCEIL, MVT::v2f32, Expand);
505 setOperationAction(ISD::FTRUNC, MVT::v2f32, Expand);
506 setOperationAction(ISD::FRINT, MVT::v2f32, Expand);
507 setOperationAction(ISD::FNEARBYINT, MVT::v2f32, Expand);
508 setOperationAction(ISD::FFLOOR, MVT::v2f32, Expand);
509
Bob Wilson6cc46572009-09-16 00:32:15 +0000510 // Neon does not support some operations on v1i64 and v2i64 types.
511 setOperationAction(ISD::MUL, MVT::v1i64, Expand);
Bob Wilson38ab35a2010-09-01 23:50:19 +0000512 // Custom handling for some quad-vector types to detect VMULL.
513 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
514 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
515 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Nate Begemanfa62d502011-02-11 20:53:29 +0000516 // Custom handling for some vector types to avoid expensive expansions
517 setOperationAction(ISD::SDIV, MVT::v4i16, Custom);
518 setOperationAction(ISD::SDIV, MVT::v8i8, Custom);
519 setOperationAction(ISD::UDIV, MVT::v4i16, Custom);
520 setOperationAction(ISD::UDIV, MVT::v8i8, Custom);
Duncan Sandsf2641e12011-09-06 19:07:46 +0000521 setOperationAction(ISD::SETCC, MVT::v1i64, Expand);
522 setOperationAction(ISD::SETCC, MVT::v2i64, Expand);
Cameron Zwarich143f9ae2011-03-29 21:41:55 +0000523 // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with
James Molloy547d4c02012-02-20 09:24:05 +0000524 // a destination type that is wider than the source, and nor does
525 // it have a FP_TO_[SU]INT instruction with a narrower destination than
526 // source.
Cameron Zwarich143f9ae2011-03-29 21:41:55 +0000527 setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom);
528 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
James Molloy547d4c02012-02-20 09:24:05 +0000529 setOperationAction(ISD::FP_TO_UINT, MVT::v4i16, Custom);
530 setOperationAction(ISD::FP_TO_SINT, MVT::v4i16, Custom);
Bob Wilson6cc46572009-09-16 00:32:15 +0000531
Eli Friedmane6385e62012-11-15 22:44:27 +0000532 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Expand);
Eli Friedman30834942012-11-17 01:52:46 +0000533 setOperationAction(ISD::FP_EXTEND, MVT::v2f64, Expand);
Eli Friedmane6385e62012-11-15 22:44:27 +0000534
Evan Chengb4eae132012-12-04 22:41:50 +0000535 // NEON does not have single instruction CTPOP for vectors with element
536 // types wider than 8-bits. However, custom lowering can leverage the
537 // v8i8/v16i8 vcnt instruction.
538 setOperationAction(ISD::CTPOP, MVT::v2i32, Custom);
539 setOperationAction(ISD::CTPOP, MVT::v4i32, Custom);
540 setOperationAction(ISD::CTPOP, MVT::v4i16, Custom);
541 setOperationAction(ISD::CTPOP, MVT::v8i16, Custom);
542
Jim Grosbach5f215872013-02-27 21:31:12 +0000543 // NEON only has FMA instructions as of VFP4.
544 if (!Subtarget->hasVFP4()) {
545 setOperationAction(ISD::FMA, MVT::v2f32, Expand);
546 setOperationAction(ISD::FMA, MVT::v4f32, Expand);
547 }
548
Bob Wilson06fce872011-02-07 17:43:21 +0000549 setTargetDAGCombine(ISD::INTRINSIC_VOID);
550 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
Bob Wilson2e076c42009-06-22 23:27:02 +0000551 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
552 setTargetDAGCombine(ISD::SHL);
553 setTargetDAGCombine(ISD::SRL);
554 setTargetDAGCombine(ISD::SRA);
555 setTargetDAGCombine(ISD::SIGN_EXTEND);
556 setTargetDAGCombine(ISD::ZERO_EXTEND);
557 setTargetDAGCombine(ISD::ANY_EXTEND);
Bob Wilsonc6c13a32010-02-18 06:05:53 +0000558 setTargetDAGCombine(ISD::SELECT_CC);
Bob Wilsoncb6db982010-09-17 22:59:05 +0000559 setTargetDAGCombine(ISD::BUILD_VECTOR);
Bob Wilsonc7334a12010-10-27 20:38:28 +0000560 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Bob Wilson1a20c2a2010-12-21 06:43:19 +0000561 setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
562 setTargetDAGCombine(ISD::STORE);
Chad Rosierfa8d8932011-06-24 19:23:04 +0000563 setTargetDAGCombine(ISD::FP_TO_SINT);
564 setTargetDAGCombine(ISD::FP_TO_UINT);
565 setTargetDAGCombine(ISD::FDIV);
Nadav Rotem097106b2011-10-15 20:03:12 +0000566
James Molloy547d4c02012-02-20 09:24:05 +0000567 // It is legal to extload from v4i8 to v4i16 or v4i32.
568 MVT Tys[6] = {MVT::v8i8, MVT::v4i8, MVT::v2i8,
569 MVT::v4i16, MVT::v2i16,
570 MVT::v2i32};
571 for (unsigned i = 0; i < 6; ++i) {
572 setLoadExtAction(ISD::EXTLOAD, Tys[i], Legal);
573 setLoadExtAction(ISD::ZEXTLOAD, Tys[i], Legal);
574 setLoadExtAction(ISD::SEXTLOAD, Tys[i], Legal);
575 }
Bob Wilson2e076c42009-06-22 23:27:02 +0000576 }
577
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +0000578 // ARM and Thumb2 support UMLAL/SMLAL.
579 if (!Subtarget->isThumb1Only())
580 setTargetDAGCombine(ISD::ADDC);
581
582
Evan Cheng6addd652007-05-18 00:19:34 +0000583 computeRegisterProperties();
Evan Cheng10043e22007-01-19 07:51:42 +0000584
585 // ARM does not have f32 extending load.
Owen Anderson9f944592009-08-11 20:47:22 +0000586 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000587
Duncan Sands95d46ef2008-01-23 20:39:46 +0000588 // ARM does not have i1 sign extending load.
Owen Anderson9f944592009-08-11 20:47:22 +0000589 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Duncan Sands95d46ef2008-01-23 20:39:46 +0000590
Evan Cheng10043e22007-01-19 07:51:42 +0000591 // ARM supports all 4 flavors of integer indexed load / store.
Evan Cheng84c6cda2009-07-02 07:28:31 +0000592 if (!Subtarget->isThumb1Only()) {
593 for (unsigned im = (unsigned)ISD::PRE_INC;
594 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
Owen Anderson9f944592009-08-11 20:47:22 +0000595 setIndexedLoadAction(im, MVT::i1, Legal);
596 setIndexedLoadAction(im, MVT::i8, Legal);
597 setIndexedLoadAction(im, MVT::i16, Legal);
598 setIndexedLoadAction(im, MVT::i32, Legal);
599 setIndexedStoreAction(im, MVT::i1, Legal);
600 setIndexedStoreAction(im, MVT::i8, Legal);
601 setIndexedStoreAction(im, MVT::i16, Legal);
602 setIndexedStoreAction(im, MVT::i32, Legal);
Evan Cheng84c6cda2009-07-02 07:28:31 +0000603 }
Evan Cheng10043e22007-01-19 07:51:42 +0000604 }
605
Louis Gerbarg3342bf12014-05-09 17:02:49 +0000606 setOperationAction(ISD::SADDO, MVT::i32, Custom);
607 setOperationAction(ISD::UADDO, MVT::i32, Custom);
608 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
609 setOperationAction(ISD::USUBO, MVT::i32, Custom);
610
Evan Cheng10043e22007-01-19 07:51:42 +0000611 // i64 operation support.
Eric Christopherc721b0db2011-04-19 18:49:19 +0000612 setOperationAction(ISD::MUL, MVT::i64, Expand);
613 setOperationAction(ISD::MULHU, MVT::i32, Expand);
Evan Chengb24e51e2009-07-07 01:17:28 +0000614 if (Subtarget->isThumb1Only()) {
Owen Anderson9f944592009-08-11 20:47:22 +0000615 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
616 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000617 }
Jim Grosbachcf1464d2011-07-01 21:12:19 +0000618 if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops()
619 || (Subtarget->isThumb2() && !Subtarget->hasThumb2DSP()))
Eric Christopherc721b0db2011-04-19 18:49:19 +0000620 setOperationAction(ISD::MULHS, MVT::i32, Expand);
621
Jim Grosbach5d994042009-10-31 19:38:01 +0000622 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
Jim Grosbach624fcb22009-10-31 21:00:56 +0000623 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
Jim Grosbach8fe6fd72009-10-31 21:42:19 +0000624 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000625 setOperationAction(ISD::SRL, MVT::i64, Custom);
626 setOperationAction(ISD::SRA, MVT::i64, Custom);
Evan Cheng10043e22007-01-19 07:51:42 +0000627
Evan Chenge8916542011-08-30 01:34:54 +0000628 if (!Subtarget->isThumb1Only()) {
629 // FIXME: We should do this for Thumb1 as well.
630 setOperationAction(ISD::ADDC, MVT::i32, Custom);
631 setOperationAction(ISD::ADDE, MVT::i32, Custom);
632 setOperationAction(ISD::SUBC, MVT::i32, Custom);
633 setOperationAction(ISD::SUBE, MVT::i32, Custom);
634 }
635
Evan Cheng10043e22007-01-19 07:51:42 +0000636 // ARM does not have ROTL.
Owen Anderson9f944592009-08-11 20:47:22 +0000637 setOperationAction(ISD::ROTL, MVT::i32, Expand);
Jim Grosbach8546ec92010-01-18 19:58:49 +0000638 setOperationAction(ISD::CTTZ, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000639 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
David Goodwinaa294c52009-06-26 20:47:43 +0000640 if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
Owen Anderson9f944592009-08-11 20:47:22 +0000641 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000642
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000643 // These just redirect to CTTZ and CTLZ on ARM.
644 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i32 , Expand);
645 setOperationAction(ISD::CTLZ_ZERO_UNDEF , MVT::i32 , Expand);
646
Tim Northoverbc933082013-05-23 19:11:20 +0000647 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom);
648
Lauro Ramos Venancio25d40522007-03-16 22:54:16 +0000649 // Only ARMv6 has BSWAP.
650 if (!Subtarget->hasV6Ops())
Owen Anderson9f944592009-08-11 20:47:22 +0000651 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Lauro Ramos Venancio25d40522007-03-16 22:54:16 +0000652
Bob Wilsone8a549c2012-09-29 21:43:49 +0000653 if (!(Subtarget->hasDivide() && Subtarget->isThumb2()) &&
654 !(Subtarget->hasDivideInARMMode() && !Subtarget->isThumb())) {
655 // These are expanded into libcalls if the cpu doesn't have HW divider.
Jim Grosbach92d999002010-05-05 20:44:35 +0000656 setOperationAction(ISD::SDIV, MVT::i32, Expand);
657 setOperationAction(ISD::UDIV, MVT::i32, Expand);
658 }
Renato Golin87610692013-07-16 09:32:17 +0000659
660 // FIXME: Also set divmod for SREM on EABI
Owen Anderson9f944592009-08-11 20:47:22 +0000661 setOperationAction(ISD::SREM, MVT::i32, Expand);
662 setOperationAction(ISD::UREM, MVT::i32, Expand);
Renato Golin87610692013-07-16 09:32:17 +0000663 // Register based DivRem for AEABI (RTABI 4.2)
664 if (Subtarget->isTargetAEABI()) {
665 setLibcallName(RTLIB::SDIVREM_I8, "__aeabi_idivmod");
666 setLibcallName(RTLIB::SDIVREM_I16, "__aeabi_idivmod");
667 setLibcallName(RTLIB::SDIVREM_I32, "__aeabi_idivmod");
668 setLibcallName(RTLIB::SDIVREM_I64, "__aeabi_ldivmod");
669 setLibcallName(RTLIB::UDIVREM_I8, "__aeabi_uidivmod");
670 setLibcallName(RTLIB::UDIVREM_I16, "__aeabi_uidivmod");
671 setLibcallName(RTLIB::UDIVREM_I32, "__aeabi_uidivmod");
672 setLibcallName(RTLIB::UDIVREM_I64, "__aeabi_uldivmod");
673
674 setLibcallCallingConv(RTLIB::SDIVREM_I8, CallingConv::ARM_AAPCS);
675 setLibcallCallingConv(RTLIB::SDIVREM_I16, CallingConv::ARM_AAPCS);
676 setLibcallCallingConv(RTLIB::SDIVREM_I32, CallingConv::ARM_AAPCS);
677 setLibcallCallingConv(RTLIB::SDIVREM_I64, CallingConv::ARM_AAPCS);
678 setLibcallCallingConv(RTLIB::UDIVREM_I8, CallingConv::ARM_AAPCS);
679 setLibcallCallingConv(RTLIB::UDIVREM_I16, CallingConv::ARM_AAPCS);
680 setLibcallCallingConv(RTLIB::UDIVREM_I32, CallingConv::ARM_AAPCS);
681 setLibcallCallingConv(RTLIB::UDIVREM_I64, CallingConv::ARM_AAPCS);
682
683 setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
684 setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
685 } else {
686 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
687 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
688 }
Bob Wilson7117a912009-03-20 22:42:55 +0000689
Owen Anderson9f944592009-08-11 20:47:22 +0000690 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
691 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
692 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
693 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilson1cf0b032009-10-30 05:45:42 +0000694 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Evan Cheng10043e22007-01-19 07:51:42 +0000695
Evan Cheng74d92c12011-04-08 21:37:21 +0000696 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Evan Cheng2fa5a7e2010-05-11 07:26:32 +0000697
Evan Cheng10043e22007-01-19 07:51:42 +0000698 // Use the default implementation.
Owen Anderson9f944592009-08-11 20:47:22 +0000699 setOperationAction(ISD::VASTART, MVT::Other, Custom);
700 setOperationAction(ISD::VAARG, MVT::Other, Expand);
701 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
702 setOperationAction(ISD::VAEND, MVT::Other, Expand);
703 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
704 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Bill Wendling05d6f2f2012-02-13 23:47:16 +0000705
Tim Northoverd6a729b2014-01-06 14:28:05 +0000706 if (!Subtarget->isTargetMachO()) {
707 // Non-MachO platforms may return values in these registers via the
Bill Wendling05d6f2f2012-02-13 23:47:16 +0000708 // personality function.
Bill Wendling05d6f2f2012-02-13 23:47:16 +0000709 setExceptionPointerRegister(ARM::R0);
710 setExceptionSelectorRegister(ARM::R1);
711 }
Anton Korobeynikovf3a62312011-01-24 22:38:45 +0000712
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +0000713 if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
714 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
715 else
716 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
717
Evan Cheng6e809de2010-08-11 06:22:01 +0000718 // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use
719 // the default expansion.
Tim Northoverc7ea8042013-10-25 09:30:24 +0000720 if (Subtarget->hasAnyDataBarrier() && !Subtarget->isThumb1Only()) {
Tim Northoverc882eb02014-04-03 11:44:58 +0000721 // ATOMIC_FENCE needs custom lowering; the others should have been expanded
722 // to ldrex/strex loops already.
Tim Northoverc7ea8042013-10-25 09:30:24 +0000723 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
Tim Northoverc882eb02014-04-03 11:44:58 +0000724
Amara Emersonb4ad2f32013-09-26 12:22:36 +0000725 // On v8, we have particularly efficient implementations of atomic fences
726 // if they can be combined with nearby atomic loads and stores.
727 if (!Subtarget->hasV8Ops()) {
728 // Automatically insert fences (dmb ist) around ATOMIC_SWAP etc.
729 setInsertFencesForAtomic(true);
730 }
Jim Grosbach6860bb72010-06-18 22:35:32 +0000731 } else {
Tim Northoverc7ea8042013-10-25 09:30:24 +0000732 // If there's anything we can use as a barrier, go through custom lowering
733 // for ATOMIC_FENCE.
734 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other,
735 Subtarget->hasAnyDataBarrier() ? Custom : Expand);
736
Jim Grosbach6860bb72010-06-18 22:35:32 +0000737 // Set them all for expansion, which will force libcalls.
Jim Grosbach6860bb72010-06-18 22:35:32 +0000738 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Expand);
Jim Grosbacha57c2882010-06-18 23:03:10 +0000739 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000740 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000741 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000742 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000743 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000744 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000745 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand);
Jim Grosbachd4b733e2011-04-26 19:44:18 +0000746 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand);
Jim Grosbachd4b733e2011-04-26 19:44:18 +0000747 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand);
Jim Grosbachd4b733e2011-04-26 19:44:18 +0000748 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand);
Jim Grosbachd4b733e2011-04-26 19:44:18 +0000749 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand);
Eli Friedmanba912e02011-09-15 22:18:49 +0000750 // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the
751 // Unordered/Monotonic case.
752 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom);
753 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000754 }
Evan Cheng10043e22007-01-19 07:51:42 +0000755
Evan Cheng21acf9f2010-11-04 05:19:35 +0000756 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
Evan Cheng6f360422010-11-03 05:14:24 +0000757
Eli Friedman8cfa7712010-06-26 04:36:50 +0000758 // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes.
759 if (!Subtarget->hasV6Ops()) {
Owen Anderson9f944592009-08-11 20:47:22 +0000760 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
761 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000762 }
Owen Anderson9f944592009-08-11 20:47:22 +0000763 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000764
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000765 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
766 !Subtarget->isThumb1Only()) {
Bob Wilson6a4491b2010-01-19 22:56:26 +0000767 // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000768 // iff target supports vfp2.
Wesley Peck527da1b2010-11-23 03:31:01 +0000769 setOperationAction(ISD::BITCAST, MVT::i64, Custom);
Nate Begemanb69b1822010-08-03 21:31:55 +0000770 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
771 }
Lauro Ramos Venanciof6a67bf2007-11-08 17:20:05 +0000772
773 // We want to custom lower some of our intrinsics.
Owen Anderson9f944592009-08-11 20:47:22 +0000774 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Jim Grosbach31984832010-07-07 00:07:57 +0000775 if (Subtarget->isTargetDarwin()) {
776 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
777 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
John McCall7d84ece2011-05-29 19:50:32 +0000778 setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume");
Jim Grosbach31984832010-07-07 00:07:57 +0000779 }
Lauro Ramos Venanciof6a67bf2007-11-08 17:20:05 +0000780
Owen Anderson9f944592009-08-11 20:47:22 +0000781 setOperationAction(ISD::SETCC, MVT::i32, Expand);
782 setOperationAction(ISD::SETCC, MVT::f32, Expand);
783 setOperationAction(ISD::SETCC, MVT::f64, Expand);
Bill Wendling6a981312010-08-11 08:43:16 +0000784 setOperationAction(ISD::SELECT, MVT::i32, Custom);
785 setOperationAction(ISD::SELECT, MVT::f32, Custom);
786 setOperationAction(ISD::SELECT, MVT::f64, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000787 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
788 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
789 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Evan Cheng10043e22007-01-19 07:51:42 +0000790
Owen Anderson9f944592009-08-11 20:47:22 +0000791 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
792 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
793 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
794 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
795 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
Evan Cheng10043e22007-01-19 07:51:42 +0000796
Dan Gohman482732a2007-10-11 23:21:31 +0000797 // We don't support sin/cos/fmod/copysign/pow
Owen Anderson9f944592009-08-11 20:47:22 +0000798 setOperationAction(ISD::FSIN, MVT::f64, Expand);
799 setOperationAction(ISD::FSIN, MVT::f32, Expand);
800 setOperationAction(ISD::FCOS, MVT::f32, Expand);
801 setOperationAction(ISD::FCOS, MVT::f64, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000802 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
803 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000804 setOperationAction(ISD::FREM, MVT::f64, Expand);
805 setOperationAction(ISD::FREM, MVT::f32, Expand);
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000806 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
807 !Subtarget->isThumb1Only()) {
Owen Anderson9f944592009-08-11 20:47:22 +0000808 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
809 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng86e476b2008-04-01 01:50:16 +0000810 }
Owen Anderson9f944592009-08-11 20:47:22 +0000811 setOperationAction(ISD::FPOW, MVT::f64, Expand);
812 setOperationAction(ISD::FPOW, MVT::f32, Expand);
Bob Wilson7117a912009-03-20 22:42:55 +0000813
Evan Chengd0007f32012-04-10 21:40:28 +0000814 if (!Subtarget->hasVFP4()) {
815 setOperationAction(ISD::FMA, MVT::f64, Expand);
816 setOperationAction(ISD::FMA, MVT::f32, Expand);
817 }
Cameron Zwarichf03fa182011-07-08 21:39:21 +0000818
Anton Korobeynikovd7fece32010-03-14 18:42:31 +0000819 // Various VFP goodness
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000820 if (!TM.Options.UseSoftFloat && !Subtarget->isThumb1Only()) {
Bob Wilsone4191e72010-03-19 22:51:32 +0000821 // int <-> fp are custom expanded into bit_convert + ARMISD ops.
822 if (Subtarget->hasVFP2()) {
823 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
824 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
825 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
826 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
827 }
Anton Korobeynikovd7fece32010-03-14 18:42:31 +0000828 // Special handling for half-precision FP.
Anton Korobeynikov64578d52010-03-18 22:35:37 +0000829 if (!Subtarget->hasFP16()) {
830 setOperationAction(ISD::FP16_TO_FP32, MVT::f32, Expand);
831 setOperationAction(ISD::FP32_TO_FP16, MVT::i32, Expand);
Anton Korobeynikovd7fece32010-03-14 18:42:31 +0000832 }
Evan Cheng86e476b2008-04-01 01:50:16 +0000833 }
Jim Grosbach1a597112014-04-03 23:43:18 +0000834
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000835 // Combine sin / cos into one node or libcall if possible.
836 if (Subtarget->hasSinCos()) {
837 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
838 setLibcallName(RTLIB::SINCOS_F64, "sincos");
839 if (Subtarget->getTargetTriple().getOS() == Triple::IOS) {
840 // For iOS, we don't want to the normal expansion of a libcall to
841 // sincos. We want to issue a libcall to __sincos_stret.
842 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
843 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
844 }
845 }
Evan Cheng10043e22007-01-19 07:51:42 +0000846
Chris Lattnerf3f4ad92007-11-27 22:36:16 +0000847 // We have target-specific dag combine patterns for the following nodes:
Jim Grosbachd7cf55c2009-11-09 00:11:35 +0000848 // ARMISD::VMOVRRD - No need to call setTargetDAGCombine
Chris Lattner4147f082009-03-12 06:52:53 +0000849 setTargetDAGCombine(ISD::ADD);
850 setTargetDAGCombine(ISD::SUB);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +0000851 setTargetDAGCombine(ISD::MUL);
Jakob Stoklund Olesene45e22b2012-09-07 17:34:15 +0000852 setTargetDAGCombine(ISD::AND);
853 setTargetDAGCombine(ISD::OR);
854 setTargetDAGCombine(ISD::XOR);
Jim Grosbach11013ed2010-07-16 23:05:05 +0000855
Evan Chengf258a152012-02-23 02:58:19 +0000856 if (Subtarget->hasV6Ops())
857 setTargetDAGCombine(ISD::SRL);
858
Evan Cheng10043e22007-01-19 07:51:42 +0000859 setStackPointerRegisterToSaveRestore(ARM::SP);
Evan Cheng4401f882010-05-20 23:26:43 +0000860
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000861 if (TM.Options.UseSoftFloat || Subtarget->isThumb1Only() ||
862 !Subtarget->hasVFP2())
Evan Cheng34c26042010-05-21 00:43:17 +0000863 setSchedulingPreference(Sched::RegPressure);
864 else
865 setSchedulingPreference(Sched::Hybrid);
Dale Johannesen58698d22007-05-17 21:31:21 +0000866
Evan Cheng3ae2b792011-01-06 06:52:41 +0000867 //// temporary - rewrite interface to use type
Jim Grosbach341ad3e2013-02-20 21:13:59 +0000868 MaxStoresPerMemset = 8;
869 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
870 MaxStoresPerMemcpy = 4; // For @llvm.memcpy -> sequence of stores
871 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 4 : 2;
872 MaxStoresPerMemmove = 4; // For @llvm.memmove -> sequence of stores
873 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 4 : 2;
Evan Chengb71233f2010-06-26 01:52:05 +0000874
Rafael Espindolaa76eccf2010-07-11 04:01:49 +0000875 // On ARM arguments smaller than 4 bytes are extended, so all arguments
876 // are at least 4 bytes aligned.
877 setMinStackArgumentAlignment(4);
878
Benjamin Kramere31f31e2012-05-05 12:49:14 +0000879 // Prefer likely predicted branches to selects on out-of-order cores.
Jim Grosbach341ad3e2013-02-20 21:13:59 +0000880 PredictableSelectIsExpensive = Subtarget->isLikeA9();
Benjamin Kramere31f31e2012-05-05 12:49:14 +0000881
Eli Friedman2518f832011-05-06 20:34:06 +0000882 setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2);
Evan Cheng10043e22007-01-19 07:51:42 +0000883}
884
Andrew Trick43f25632011-01-19 02:35:27 +0000885// FIXME: It might make sense to define the representative register class as the
886// nearest super-register that has a non-null superset. For example, DPR_VFP2 is
887// a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently,
888// SPR's representative would be DPR_VFP2. This should work well if register
889// pressure tracking were modified such that a register use would increment the
890// pressure of the register class's representative and all of it's super
891// classes' representatives transitively. We have not implemented this because
892// of the difficulty prior to coalescing of modeling operand register classes
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000893// due to the common occurrence of cross class copies and subregister insertions
Andrew Trick43f25632011-01-19 02:35:27 +0000894// and extractions.
Evan Chenga77f3d32010-07-21 06:09:07 +0000895std::pair<const TargetRegisterClass*, uint8_t>
Patrik Hagglundf9eb1682012-12-19 11:30:36 +0000896ARMTargetLowering::findRepresentativeClass(MVT VT) const{
Craig Topper062a2ba2014-04-25 05:30:21 +0000897 const TargetRegisterClass *RRC = nullptr;
Evan Chenga77f3d32010-07-21 06:09:07 +0000898 uint8_t Cost = 1;
Patrik Hagglundf9eb1682012-12-19 11:30:36 +0000899 switch (VT.SimpleTy) {
Evan Cheng10f99a32010-07-19 22:15:08 +0000900 default:
Evan Chenga77f3d32010-07-21 06:09:07 +0000901 return TargetLowering::findRepresentativeClass(VT);
Evan Cheng28590382010-07-21 23:53:58 +0000902 // Use DPR as representative register class for all floating point
903 // and vector types. Since there are 32 SPR registers and 32 DPR registers so
904 // the cost is 1 for both f32 and f64.
905 case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16:
Evan Chenga77f3d32010-07-21 06:09:07 +0000906 case MVT::v2i32: case MVT::v1i64: case MVT::v2f32:
Craig Topperc7242e02012-04-20 07:30:17 +0000907 RRC = &ARM::DPRRegClass;
Andrew Trick43f25632011-01-19 02:35:27 +0000908 // When NEON is used for SP, only half of the register file is available
909 // because operations that define both SP and DP results will be constrained
910 // to the VFP2 class (D0-D15). We currently model this constraint prior to
911 // coalescing by double-counting the SP regs. See the FIXME above.
912 if (Subtarget->useNEONForSinglePrecisionFP())
913 Cost = 2;
Evan Chenga77f3d32010-07-21 06:09:07 +0000914 break;
915 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
916 case MVT::v4f32: case MVT::v2f64:
Craig Topperc7242e02012-04-20 07:30:17 +0000917 RRC = &ARM::DPRRegClass;
Evan Cheng28590382010-07-21 23:53:58 +0000918 Cost = 2;
Evan Chenga77f3d32010-07-21 06:09:07 +0000919 break;
920 case MVT::v4i64:
Craig Topperc7242e02012-04-20 07:30:17 +0000921 RRC = &ARM::DPRRegClass;
Evan Cheng28590382010-07-21 23:53:58 +0000922 Cost = 4;
Evan Chenga77f3d32010-07-21 06:09:07 +0000923 break;
924 case MVT::v8i64:
Craig Topperc7242e02012-04-20 07:30:17 +0000925 RRC = &ARM::DPRRegClass;
Evan Cheng28590382010-07-21 23:53:58 +0000926 Cost = 8;
Evan Chenga77f3d32010-07-21 06:09:07 +0000927 break;
Evan Cheng10f99a32010-07-19 22:15:08 +0000928 }
Evan Chenga77f3d32010-07-21 06:09:07 +0000929 return std::make_pair(RRC, Cost);
Evan Cheng10f99a32010-07-19 22:15:08 +0000930}
931
Evan Cheng10043e22007-01-19 07:51:42 +0000932const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
933 switch (Opcode) {
Craig Topper062a2ba2014-04-25 05:30:21 +0000934 default: return nullptr;
Evan Cheng10043e22007-01-19 07:51:42 +0000935 case ARMISD::Wrapper: return "ARMISD::Wrapper";
Evan Chengdfce83c2011-01-17 08:03:18 +0000936 case ARMISD::WrapperPIC: return "ARMISD::WrapperPIC";
Evan Cheng10043e22007-01-19 07:51:42 +0000937 case ARMISD::WrapperJT: return "ARMISD::WrapperJT";
938 case ARMISD::CALL: return "ARMISD::CALL";
Evan Chengc3c949b42007-06-19 21:05:09 +0000939 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED";
Evan Cheng10043e22007-01-19 07:51:42 +0000940 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK";
941 case ARMISD::tCALL: return "ARMISD::tCALL";
942 case ARMISD::BRCOND: return "ARMISD::BRCOND";
943 case ARMISD::BR_JT: return "ARMISD::BR_JT";
Evan Chengc6d70ae2009-07-29 02:18:14 +0000944 case ARMISD::BR2_JT: return "ARMISD::BR2_JT";
Evan Cheng10043e22007-01-19 07:51:42 +0000945 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG";
Tim Northoverd8407452013-10-01 14:33:28 +0000946 case ARMISD::INTRET_FLAG: return "ARMISD::INTRET_FLAG";
Evan Cheng10043e22007-01-19 07:51:42 +0000947 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD";
948 case ARMISD::CMP: return "ARMISD::CMP";
Bill Wendling4b796472012-06-11 08:07:26 +0000949 case ARMISD::CMN: return "ARMISD::CMN";
David Goodwindbf11ba2009-06-29 15:33:01 +0000950 case ARMISD::CMPZ: return "ARMISD::CMPZ";
Evan Cheng10043e22007-01-19 07:51:42 +0000951 case ARMISD::CMPFP: return "ARMISD::CMPFP";
952 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0";
Evan Cheng0cc4ad92010-07-13 19:27:42 +0000953 case ARMISD::BCC_i64: return "ARMISD::BCC_i64";
Evan Cheng10043e22007-01-19 07:51:42 +0000954 case ARMISD::FMSTAT: return "ARMISD::FMSTAT";
Evan Chenge87681c2012-02-23 01:19:06 +0000955
Evan Cheng10043e22007-01-19 07:51:42 +0000956 case ARMISD::CMOV: return "ARMISD::CMOV";
Bob Wilson7117a912009-03-20 22:42:55 +0000957
Jim Grosbach8546ec92010-01-18 19:58:49 +0000958 case ARMISD::RBIT: return "ARMISD::RBIT";
959
Bob Wilsone4191e72010-03-19 22:51:32 +0000960 case ARMISD::FTOSI: return "ARMISD::FTOSI";
961 case ARMISD::FTOUI: return "ARMISD::FTOUI";
962 case ARMISD::SITOF: return "ARMISD::SITOF";
963 case ARMISD::UITOF: return "ARMISD::UITOF";
964
Evan Cheng10043e22007-01-19 07:51:42 +0000965 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG";
966 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG";
967 case ARMISD::RRX: return "ARMISD::RRX";
Bob Wilson7117a912009-03-20 22:42:55 +0000968
Evan Chenge8916542011-08-30 01:34:54 +0000969 case ARMISD::ADDC: return "ARMISD::ADDC";
970 case ARMISD::ADDE: return "ARMISD::ADDE";
971 case ARMISD::SUBC: return "ARMISD::SUBC";
972 case ARMISD::SUBE: return "ARMISD::SUBE";
973
Bob Wilson22806742010-09-22 22:09:21 +0000974 case ARMISD::VMOVRRD: return "ARMISD::VMOVRRD";
975 case ARMISD::VMOVDRR: return "ARMISD::VMOVDRR";
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +0000976
Evan Chengec6d7c92009-10-28 06:55:03 +0000977 case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
978 case ARMISD::EH_SJLJ_LONGJMP:return "ARMISD::EH_SJLJ_LONGJMP";
979
Dale Johannesend679ff72010-06-03 21:09:53 +0000980 case ARMISD::TC_RETURN: return "ARMISD::TC_RETURN";
Jim Grosbach535d3b42010-09-08 03:54:02 +0000981
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +0000982 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
Bob Wilson2e076c42009-06-22 23:27:02 +0000983
Evan Chengb972e562009-08-07 00:34:42 +0000984 case ARMISD::DYN_ALLOC: return "ARMISD::DYN_ALLOC";
985
Bob Wilson7ed59712010-10-30 00:54:37 +0000986 case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR";
Jim Grosbach53e88542009-12-10 00:11:09 +0000987
Evan Cheng8740ee32010-11-03 06:34:55 +0000988 case ARMISD::PRELOAD: return "ARMISD::PRELOAD";
989
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +0000990 case ARMISD::WIN__CHKSTK: return "ARMISD:::WIN__CHKSTK";
991
Bob Wilson2e076c42009-06-22 23:27:02 +0000992 case ARMISD::VCEQ: return "ARMISD::VCEQ";
Bob Wilsonf268d032010-12-18 00:04:26 +0000993 case ARMISD::VCEQZ: return "ARMISD::VCEQZ";
Bob Wilson2e076c42009-06-22 23:27:02 +0000994 case ARMISD::VCGE: return "ARMISD::VCGE";
Bob Wilsonf268d032010-12-18 00:04:26 +0000995 case ARMISD::VCGEZ: return "ARMISD::VCGEZ";
996 case ARMISD::VCLEZ: return "ARMISD::VCLEZ";
Bob Wilson2e076c42009-06-22 23:27:02 +0000997 case ARMISD::VCGEU: return "ARMISD::VCGEU";
998 case ARMISD::VCGT: return "ARMISD::VCGT";
Bob Wilsonf268d032010-12-18 00:04:26 +0000999 case ARMISD::VCGTZ: return "ARMISD::VCGTZ";
1000 case ARMISD::VCLTZ: return "ARMISD::VCLTZ";
Bob Wilson2e076c42009-06-22 23:27:02 +00001001 case ARMISD::VCGTU: return "ARMISD::VCGTU";
1002 case ARMISD::VTST: return "ARMISD::VTST";
1003
1004 case ARMISD::VSHL: return "ARMISD::VSHL";
1005 case ARMISD::VSHRs: return "ARMISD::VSHRs";
1006 case ARMISD::VSHRu: return "ARMISD::VSHRu";
Bob Wilson2e076c42009-06-22 23:27:02 +00001007 case ARMISD::VRSHRs: return "ARMISD::VRSHRs";
1008 case ARMISD::VRSHRu: return "ARMISD::VRSHRu";
1009 case ARMISD::VRSHRN: return "ARMISD::VRSHRN";
1010 case ARMISD::VQSHLs: return "ARMISD::VQSHLs";
1011 case ARMISD::VQSHLu: return "ARMISD::VQSHLu";
1012 case ARMISD::VQSHLsu: return "ARMISD::VQSHLsu";
1013 case ARMISD::VQSHRNs: return "ARMISD::VQSHRNs";
1014 case ARMISD::VQSHRNu: return "ARMISD::VQSHRNu";
1015 case ARMISD::VQSHRNsu: return "ARMISD::VQSHRNsu";
1016 case ARMISD::VQRSHRNs: return "ARMISD::VQRSHRNs";
1017 case ARMISD::VQRSHRNu: return "ARMISD::VQRSHRNu";
1018 case ARMISD::VQRSHRNsu: return "ARMISD::VQRSHRNsu";
1019 case ARMISD::VGETLANEu: return "ARMISD::VGETLANEu";
1020 case ARMISD::VGETLANEs: return "ARMISD::VGETLANEs";
Bob Wilsona3f19012010-07-13 21:16:48 +00001021 case ARMISD::VMOVIMM: return "ARMISD::VMOVIMM";
Bob Wilsonbad47f62010-07-14 06:31:50 +00001022 case ARMISD::VMVNIMM: return "ARMISD::VMVNIMM";
Evan Cheng7ca4b6e2011-11-15 02:12:34 +00001023 case ARMISD::VMOVFPIMM: return "ARMISD::VMOVFPIMM";
Bob Wilsoneb54d512009-08-14 05:13:08 +00001024 case ARMISD::VDUP: return "ARMISD::VDUP";
Bob Wilsoncce31f62009-08-14 05:08:32 +00001025 case ARMISD::VDUPLANE: return "ARMISD::VDUPLANE";
Bob Wilson32cd8552009-08-19 17:03:43 +00001026 case ARMISD::VEXT: return "ARMISD::VEXT";
Bob Wilsonea3a4022009-08-12 22:31:50 +00001027 case ARMISD::VREV64: return "ARMISD::VREV64";
1028 case ARMISD::VREV32: return "ARMISD::VREV32";
1029 case ARMISD::VREV16: return "ARMISD::VREV16";
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00001030 case ARMISD::VZIP: return "ARMISD::VZIP";
1031 case ARMISD::VUZP: return "ARMISD::VUZP";
1032 case ARMISD::VTRN: return "ARMISD::VTRN";
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00001033 case ARMISD::VTBL1: return "ARMISD::VTBL1";
1034 case ARMISD::VTBL2: return "ARMISD::VTBL2";
Bob Wilson38ab35a2010-09-01 23:50:19 +00001035 case ARMISD::VMULLs: return "ARMISD::VMULLs";
1036 case ARMISD::VMULLu: return "ARMISD::VMULLu";
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00001037 case ARMISD::UMLAL: return "ARMISD::UMLAL";
1038 case ARMISD::SMLAL: return "ARMISD::SMLAL";
Bob Wilsond8a9a042010-06-04 00:04:02 +00001039 case ARMISD::BUILD_VECTOR: return "ARMISD::BUILD_VECTOR";
Bob Wilsonc6c13a32010-02-18 06:05:53 +00001040 case ARMISD::FMAX: return "ARMISD::FMAX";
1041 case ARMISD::FMIN: return "ARMISD::FMIN";
Joey Goulye3dd6842013-08-23 12:01:13 +00001042 case ARMISD::VMAXNM: return "ARMISD::VMAX";
1043 case ARMISD::VMINNM: return "ARMISD::VMIN";
Jim Grosbach6e3b5fa2010-07-17 01:50:57 +00001044 case ARMISD::BFI: return "ARMISD::BFI";
Bob Wilson62a6f7e2010-11-28 06:51:11 +00001045 case ARMISD::VORRIMM: return "ARMISD::VORRIMM";
1046 case ARMISD::VBICIMM: return "ARMISD::VBICIMM";
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00001047 case ARMISD::VBSL: return "ARMISD::VBSL";
Bob Wilson2d790df2010-11-28 06:51:26 +00001048 case ARMISD::VLD2DUP: return "ARMISD::VLD2DUP";
1049 case ARMISD::VLD3DUP: return "ARMISD::VLD3DUP";
1050 case ARMISD::VLD4DUP: return "ARMISD::VLD4DUP";
Bob Wilson06fce872011-02-07 17:43:21 +00001051 case ARMISD::VLD1_UPD: return "ARMISD::VLD1_UPD";
1052 case ARMISD::VLD2_UPD: return "ARMISD::VLD2_UPD";
1053 case ARMISD::VLD3_UPD: return "ARMISD::VLD3_UPD";
1054 case ARMISD::VLD4_UPD: return "ARMISD::VLD4_UPD";
1055 case ARMISD::VLD2LN_UPD: return "ARMISD::VLD2LN_UPD";
1056 case ARMISD::VLD3LN_UPD: return "ARMISD::VLD3LN_UPD";
1057 case ARMISD::VLD4LN_UPD: return "ARMISD::VLD4LN_UPD";
1058 case ARMISD::VLD2DUP_UPD: return "ARMISD::VLD2DUP_UPD";
1059 case ARMISD::VLD3DUP_UPD: return "ARMISD::VLD3DUP_UPD";
1060 case ARMISD::VLD4DUP_UPD: return "ARMISD::VLD4DUP_UPD";
1061 case ARMISD::VST1_UPD: return "ARMISD::VST1_UPD";
1062 case ARMISD::VST2_UPD: return "ARMISD::VST2_UPD";
1063 case ARMISD::VST3_UPD: return "ARMISD::VST3_UPD";
1064 case ARMISD::VST4_UPD: return "ARMISD::VST4_UPD";
1065 case ARMISD::VST2LN_UPD: return "ARMISD::VST2LN_UPD";
1066 case ARMISD::VST3LN_UPD: return "ARMISD::VST3LN_UPD";
1067 case ARMISD::VST4LN_UPD: return "ARMISD::VST4LN_UPD";
Evan Cheng10043e22007-01-19 07:51:42 +00001068 }
1069}
1070
Matt Arsenault758659232013-05-18 00:21:46 +00001071EVT ARMTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
Duncan Sandsf2641e12011-09-06 19:07:46 +00001072 if (!VT.isVector()) return getPointerTy();
1073 return VT.changeVectorElementTypeToInteger();
1074}
1075
Evan Cheng4cad68e2010-05-15 02:18:07 +00001076/// getRegClassFor - Return the register class that should be used for the
1077/// specified value type.
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00001078const TargetRegisterClass *ARMTargetLowering::getRegClassFor(MVT VT) const {
Evan Cheng4cad68e2010-05-15 02:18:07 +00001079 // Map v4i64 to QQ registers but do not make the type legal. Similarly map
1080 // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to
1081 // load / store 4 to 8 consecutive D registers.
Evan Cheng3d214cd2010-05-15 02:20:21 +00001082 if (Subtarget->hasNEON()) {
1083 if (VT == MVT::v4i64)
Craig Topperc7242e02012-04-20 07:30:17 +00001084 return &ARM::QQPRRegClass;
1085 if (VT == MVT::v8i64)
1086 return &ARM::QQQQPRRegClass;
Evan Cheng3d214cd2010-05-15 02:20:21 +00001087 }
Evan Cheng4cad68e2010-05-15 02:18:07 +00001088 return TargetLowering::getRegClassFor(VT);
1089}
1090
Eric Christopher84bdfd82010-07-21 22:26:11 +00001091// Create a fast isel object.
1092FastISel *
Bob Wilson3e6fa462012-08-03 04:06:28 +00001093ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
1094 const TargetLibraryInfo *libInfo) const {
1095 return ARM::createFastISel(funcInfo, libInfo);
Eric Christopher84bdfd82010-07-21 22:26:11 +00001096}
1097
Anton Korobeynikov19edda02010-07-24 21:52:08 +00001098/// getMaximalGlobalOffset - Returns the maximal possible offset which can
1099/// be used for loads / stores from the global.
1100unsigned ARMTargetLowering::getMaximalGlobalOffset() const {
1101 return (Subtarget->isThumb1Only() ? 127 : 4095);
1102}
1103
Evan Cheng4401f882010-05-20 23:26:43 +00001104Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
Evan Chengbf914992010-05-28 23:25:23 +00001105 unsigned NumVals = N->getNumValues();
1106 if (!NumVals)
1107 return Sched::RegPressure;
1108
1109 for (unsigned i = 0; i != NumVals; ++i) {
Evan Cheng4401f882010-05-20 23:26:43 +00001110 EVT VT = N->getValueType(i);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00001111 if (VT == MVT::Glue || VT == MVT::Other)
Evan Cheng0c4c5ca2010-10-29 18:07:31 +00001112 continue;
Evan Cheng4401f882010-05-20 23:26:43 +00001113 if (VT.isFloatingPoint() || VT.isVector())
Dan Gohman4ed1afa2011-10-24 17:55:11 +00001114 return Sched::ILP;
Evan Cheng4401f882010-05-20 23:26:43 +00001115 }
Evan Chengbf914992010-05-28 23:25:23 +00001116
1117 if (!N->isMachineOpcode())
1118 return Sched::RegPressure;
1119
1120 // Load are scheduled for latency even if there instruction itinerary
1121 // is not available.
1122 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng6cc775f2011-06-28 19:10:37 +00001123 const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
Evan Cheng0c4c5ca2010-10-29 18:07:31 +00001124
Evan Cheng6cc775f2011-06-28 19:10:37 +00001125 if (MCID.getNumDefs() == 0)
Evan Cheng0c4c5ca2010-10-29 18:07:31 +00001126 return Sched::RegPressure;
1127 if (!Itins->isEmpty() &&
Evan Cheng6cc775f2011-06-28 19:10:37 +00001128 Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2)
Dan Gohman4ed1afa2011-10-24 17:55:11 +00001129 return Sched::ILP;
Evan Chengbf914992010-05-28 23:25:23 +00001130
Evan Cheng4401f882010-05-20 23:26:43 +00001131 return Sched::RegPressure;
1132}
1133
Evan Cheng10043e22007-01-19 07:51:42 +00001134//===----------------------------------------------------------------------===//
1135// Lowering Code
1136//===----------------------------------------------------------------------===//
1137
Evan Cheng10043e22007-01-19 07:51:42 +00001138/// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
1139static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
1140 switch (CC) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001141 default: llvm_unreachable("Unknown condition code!");
Evan Cheng10043e22007-01-19 07:51:42 +00001142 case ISD::SETNE: return ARMCC::NE;
1143 case ISD::SETEQ: return ARMCC::EQ;
1144 case ISD::SETGT: return ARMCC::GT;
1145 case ISD::SETGE: return ARMCC::GE;
1146 case ISD::SETLT: return ARMCC::LT;
1147 case ISD::SETLE: return ARMCC::LE;
1148 case ISD::SETUGT: return ARMCC::HI;
1149 case ISD::SETUGE: return ARMCC::HS;
1150 case ISD::SETULT: return ARMCC::LO;
1151 case ISD::SETULE: return ARMCC::LS;
1152 }
1153}
1154
Bob Wilsona2e83332009-09-09 23:14:54 +00001155/// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
1156static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
Evan Cheng10043e22007-01-19 07:51:42 +00001157 ARMCC::CondCodes &CondCode2) {
Evan Cheng10043e22007-01-19 07:51:42 +00001158 CondCode2 = ARMCC::AL;
1159 switch (CC) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001160 default: llvm_unreachable("Unknown FP condition!");
Evan Cheng10043e22007-01-19 07:51:42 +00001161 case ISD::SETEQ:
1162 case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
1163 case ISD::SETGT:
1164 case ISD::SETOGT: CondCode = ARMCC::GT; break;
1165 case ISD::SETGE:
1166 case ISD::SETOGE: CondCode = ARMCC::GE; break;
1167 case ISD::SETOLT: CondCode = ARMCC::MI; break;
Bob Wilsona2e83332009-09-09 23:14:54 +00001168 case ISD::SETOLE: CondCode = ARMCC::LS; break;
Evan Cheng10043e22007-01-19 07:51:42 +00001169 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
1170 case ISD::SETO: CondCode = ARMCC::VC; break;
1171 case ISD::SETUO: CondCode = ARMCC::VS; break;
1172 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
1173 case ISD::SETUGT: CondCode = ARMCC::HI; break;
1174 case ISD::SETUGE: CondCode = ARMCC::PL; break;
1175 case ISD::SETLT:
1176 case ISD::SETULT: CondCode = ARMCC::LT; break;
1177 case ISD::SETLE:
1178 case ISD::SETULE: CondCode = ARMCC::LE; break;
1179 case ISD::SETNE:
1180 case ISD::SETUNE: CondCode = ARMCC::NE; break;
1181 }
Evan Cheng10043e22007-01-19 07:51:42 +00001182}
1183
Bob Wilsona4c22902009-04-17 19:07:39 +00001184//===----------------------------------------------------------------------===//
1185// Calling Convention Implementation
Bob Wilsona4c22902009-04-17 19:07:39 +00001186//===----------------------------------------------------------------------===//
1187
1188#include "ARMGenCallingConv.inc"
1189
Oliver Stannardc24f2172014-05-09 14:01:47 +00001190/// getEffectiveCallingConv - Get the effective calling convention, taking into
1191/// account presence of floating point hardware and calling convention
1192/// limitations, such as support for variadic functions.
1193CallingConv::ID
1194ARMTargetLowering::getEffectiveCallingConv(CallingConv::ID CC,
1195 bool isVarArg) const {
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001196 switch (CC) {
1197 default:
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00001198 llvm_unreachable("Unsupported calling convention");
Oliver Stannardc24f2172014-05-09 14:01:47 +00001199 case CallingConv::ARM_AAPCS:
1200 case CallingConv::ARM_APCS:
1201 case CallingConv::GHC:
1202 return CC;
1203 case CallingConv::ARM_AAPCS_VFP:
1204 return isVarArg ? CallingConv::ARM_AAPCS : CallingConv::ARM_AAPCS_VFP;
1205 case CallingConv::C:
Evan Cheng08dd8c82010-10-22 18:23:05 +00001206 if (!Subtarget->isAAPCS_ABI())
Oliver Stannardc24f2172014-05-09 14:01:47 +00001207 return CallingConv::ARM_APCS;
Oliver Stannardb5e596f2014-06-13 08:33:03 +00001208 else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001209 getTargetMachine().Options.FloatABIType == FloatABI::Hard &&
1210 !isVarArg)
Oliver Stannardc24f2172014-05-09 14:01:47 +00001211 return CallingConv::ARM_AAPCS_VFP;
1212 else
1213 return CallingConv::ARM_AAPCS;
1214 case CallingConv::Fast:
1215 if (!Subtarget->isAAPCS_ABI()) {
Oliver Stannardb5e596f2014-06-13 08:33:03 +00001216 if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
Oliver Stannardc24f2172014-05-09 14:01:47 +00001217 return CallingConv::Fast;
1218 return CallingConv::ARM_APCS;
Oliver Stannardb5e596f2014-06-13 08:33:03 +00001219 } else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
Oliver Stannardc24f2172014-05-09 14:01:47 +00001220 return CallingConv::ARM_AAPCS_VFP;
1221 else
1222 return CallingConv::ARM_AAPCS;
Evan Cheng08dd8c82010-10-22 18:23:05 +00001223 }
Oliver Stannardc24f2172014-05-09 14:01:47 +00001224}
1225
1226/// CCAssignFnForNode - Selects the correct CCAssignFn for the given
1227/// CallingConvention.
1228CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
1229 bool Return,
1230 bool isVarArg) const {
1231 switch (getEffectiveCallingConv(CC, isVarArg)) {
1232 default:
1233 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001234 case CallingConv::ARM_APCS:
Evan Cheng08dd8c82010-10-22 18:23:05 +00001235 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
Oliver Stannardc24f2172014-05-09 14:01:47 +00001236 case CallingConv::ARM_AAPCS:
1237 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
1238 case CallingConv::ARM_AAPCS_VFP:
1239 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1240 case CallingConv::Fast:
1241 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
Eric Christopherb3322362012-08-03 00:05:53 +00001242 case CallingConv::GHC:
1243 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS_GHC);
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001244 }
1245}
1246
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001247/// LowerCallResult - Lower the result values of a call into the
1248/// appropriate copies out of appropriate physical registers.
1249SDValue
1250ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +00001251 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001252 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001253 SDLoc dl, SelectionDAG &DAG,
Stephen Linb8bd2322013-04-20 05:14:40 +00001254 SmallVectorImpl<SDValue> &InVals,
1255 bool isThisReturn, SDValue ThisVal) const {
Bob Wilsona4c22902009-04-17 19:07:39 +00001256
Bob Wilsona4c22902009-04-17 19:07:39 +00001257 // Assign locations to each value returned by this call.
1258 SmallVector<CCValAssign, 16> RVLocs;
Cameron Zwarich89019782011-06-10 20:59:24 +00001259 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1260 getTargetMachine(), RVLocs, *DAG.getContext(), Call);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001261 CCInfo.AnalyzeCallResult(Ins,
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00001262 CCAssignFnForNode(CallConv, /* Return*/ true,
1263 isVarArg));
Bob Wilsona4c22902009-04-17 19:07:39 +00001264
1265 // Copy all of the result registers out of their specified physreg.
1266 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1267 CCValAssign VA = RVLocs[i];
1268
Stephen Linb8bd2322013-04-20 05:14:40 +00001269 // Pass 'this' value directly from the argument to return value, to avoid
1270 // reg unit interference
1271 if (i == 0 && isThisReturn) {
Stephen Lin8118e0b2013-04-23 19:42:25 +00001272 assert(!VA.needsCustom() && VA.getLocVT() == MVT::i32 &&
1273 "unexpected return calling convention register assignment");
Stephen Linb8bd2322013-04-20 05:14:40 +00001274 InVals.push_back(ThisVal);
1275 continue;
1276 }
1277
Bob Wilson0041bd32009-04-25 00:33:20 +00001278 SDValue Val;
Bob Wilsona4c22902009-04-17 19:07:39 +00001279 if (VA.needsCustom()) {
Bob Wilson2e076c42009-06-22 23:27:02 +00001280 // Handle f64 or half of a v2f64.
Owen Anderson9f944592009-08-11 20:47:22 +00001281 SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
Bob Wilsona4c22902009-04-17 19:07:39 +00001282 InFlag);
Bob Wilsonf134b2d2009-04-24 17:00:36 +00001283 Chain = Lo.getValue(1);
1284 InFlag = Lo.getValue(2);
Bob Wilsona4c22902009-04-17 19:07:39 +00001285 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson9f944592009-08-11 20:47:22 +00001286 SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
Bob Wilsonf134b2d2009-04-24 17:00:36 +00001287 InFlag);
1288 Chain = Hi.getValue(1);
1289 InFlag = Hi.getValue(2);
Christian Pirkerb5728192014-05-08 14:06:24 +00001290 if (!Subtarget->isLittle())
1291 std::swap (Lo, Hi);
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00001292 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Bob Wilson2e076c42009-06-22 23:27:02 +00001293
Owen Anderson9f944592009-08-11 20:47:22 +00001294 if (VA.getLocVT() == MVT::v2f64) {
1295 SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1296 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1297 DAG.getConstant(0, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00001298
1299 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson9f944592009-08-11 20:47:22 +00001300 Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
Bob Wilson2e076c42009-06-22 23:27:02 +00001301 Chain = Lo.getValue(1);
1302 InFlag = Lo.getValue(2);
1303 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson9f944592009-08-11 20:47:22 +00001304 Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
Bob Wilson2e076c42009-06-22 23:27:02 +00001305 Chain = Hi.getValue(1);
1306 InFlag = Hi.getValue(2);
Christian Pirkerb5728192014-05-08 14:06:24 +00001307 if (!Subtarget->isLittle())
1308 std::swap (Lo, Hi);
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00001309 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Owen Anderson9f944592009-08-11 20:47:22 +00001310 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1311 DAG.getConstant(1, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00001312 }
Bob Wilsona4c22902009-04-17 19:07:39 +00001313 } else {
Bob Wilson0041bd32009-04-25 00:33:20 +00001314 Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1315 InFlag);
Bob Wilsonf134b2d2009-04-24 17:00:36 +00001316 Chain = Val.getValue(1);
1317 InFlag = Val.getValue(2);
Bob Wilsona4c22902009-04-17 19:07:39 +00001318 }
Bob Wilson0041bd32009-04-25 00:33:20 +00001319
1320 switch (VA.getLocInfo()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001321 default: llvm_unreachable("Unknown loc info!");
Bob Wilson0041bd32009-04-25 00:33:20 +00001322 case CCValAssign::Full: break;
1323 case CCValAssign::BCvt:
Wesley Peck527da1b2010-11-23 03:31:01 +00001324 Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val);
Bob Wilson0041bd32009-04-25 00:33:20 +00001325 break;
1326 }
1327
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001328 InVals.push_back(Val);
Bob Wilsona4c22902009-04-17 19:07:39 +00001329 }
1330
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001331 return Chain;
Bob Wilsona4c22902009-04-17 19:07:39 +00001332}
1333
Bob Wilsonea09d4a2009-04-17 20:35:10 +00001334/// LowerMemOpCallTo - Store the argument to the stack.
Bob Wilsona4c22902009-04-17 19:07:39 +00001335SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001336ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
1337 SDValue StackPtr, SDValue Arg,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001338 SDLoc dl, SelectionDAG &DAG,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001339 const CCValAssign &VA,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001340 ISD::ArgFlagsTy Flags) const {
Bob Wilsona4c22902009-04-17 19:07:39 +00001341 unsigned LocMemOffset = VA.getLocMemOffset();
1342 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
1343 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Bob Wilsona4c22902009-04-17 19:07:39 +00001344 return DAG.getStore(Chain, dl, Arg, PtrOff,
Chris Lattner886250c2010-09-21 18:51:21 +00001345 MachinePointerInfo::getStack(LocMemOffset),
David Greene0d0149f2010-02-15 16:55:24 +00001346 false, false, 0);
Evan Cheng10043e22007-01-19 07:51:42 +00001347}
1348
Andrew Trickef9de2a2013-05-25 02:42:55 +00001349void ARMTargetLowering::PassF64ArgInRegs(SDLoc dl, SelectionDAG &DAG,
Bob Wilson2e076c42009-06-22 23:27:02 +00001350 SDValue Chain, SDValue &Arg,
1351 RegsToPassVector &RegsToPass,
1352 CCValAssign &VA, CCValAssign &NextVA,
1353 SDValue &StackPtr,
Craig Topperb94011f2013-07-14 04:42:23 +00001354 SmallVectorImpl<SDValue> &MemOpChains,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001355 ISD::ArgFlagsTy Flags) const {
Bob Wilson2e076c42009-06-22 23:27:02 +00001356
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00001357 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00001358 DAG.getVTList(MVT::i32, MVT::i32), Arg);
Christian Pirkerb5728192014-05-08 14:06:24 +00001359 unsigned id = Subtarget->isLittle() ? 0 : 1;
1360 RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd.getValue(id)));
Bob Wilson2e076c42009-06-22 23:27:02 +00001361
1362 if (NextVA.isRegLoc())
Christian Pirkerb5728192014-05-08 14:06:24 +00001363 RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1-id)));
Bob Wilson2e076c42009-06-22 23:27:02 +00001364 else {
1365 assert(NextVA.isMemLoc());
Craig Topper062a2ba2014-04-25 05:30:21 +00001366 if (!StackPtr.getNode())
Bob Wilson2e076c42009-06-22 23:27:02 +00001367 StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1368
Christian Pirkerb5728192014-05-08 14:06:24 +00001369 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1-id),
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001370 dl, DAG, NextVA,
1371 Flags));
Bob Wilson2e076c42009-06-22 23:27:02 +00001372 }
1373}
1374
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001375/// LowerCall - Lowering a call into a callseq_start <-
Evan Cheng4b6c8f72007-02-03 08:53:01 +00001376/// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
1377/// nodes.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001378SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +00001379ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001380 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +00001381 SelectionDAG &DAG = CLI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00001382 SDLoc &dl = CLI.DL;
Craig Topperb94011f2013-07-14 04:42:23 +00001383 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
1384 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
1385 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +00001386 SDValue Chain = CLI.Chain;
1387 SDValue Callee = CLI.Callee;
1388 bool &isTailCall = CLI.IsTailCall;
1389 CallingConv::ID CallConv = CLI.CallConv;
1390 bool doesNotRet = CLI.DoesNotReturn;
1391 bool isVarArg = CLI.IsVarArg;
1392
Dale Johannesend679ff72010-06-03 21:09:53 +00001393 MachineFunction &MF = DAG.getMachineFunction();
Stephen Lin4eedb292013-04-23 19:30:12 +00001394 bool isStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
1395 bool isThisReturn = false;
1396 bool isSibCall = false;
Saleem Abdulrasool0d96f3d2014-03-11 15:09:54 +00001397
Bob Wilson8decdc42011-10-07 17:17:49 +00001398 // Disable tail calls if they're not supported.
Saleem Abdulrasool0d96f3d2014-03-11 15:09:54 +00001399 if (!Subtarget->supportsTailCall() || MF.getTarget().Options.DisableTailCalls)
Bob Wilson3c9ed762010-08-13 22:43:33 +00001400 isTailCall = false;
Saleem Abdulrasool0d96f3d2014-03-11 15:09:54 +00001401
Dale Johannesend679ff72010-06-03 21:09:53 +00001402 if (isTailCall) {
1403 // Check if it's really possible to do a tail call.
1404 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Stephen Lin4eedb292013-04-23 19:30:12 +00001405 isVarArg, isStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanfe7532a2010-07-07 15:54:55 +00001406 Outs, OutVals, Ins, DAG);
Reid Kleckner5772b772014-04-24 20:14:34 +00001407 if (!isTailCall && CLI.CS && CLI.CS->isMustTailCall())
1408 report_fatal_error("failed to perform tail call elimination on a call "
1409 "site marked musttail");
Dale Johannesend679ff72010-06-03 21:09:53 +00001410 // We don't support GuaranteedTailCallOpt for ARM, only automatically
1411 // detected sibcalls.
1412 if (isTailCall) {
1413 ++NumTailCalls;
Stephen Lin4eedb292013-04-23 19:30:12 +00001414 isSibCall = true;
Dale Johannesend679ff72010-06-03 21:09:53 +00001415 }
1416 }
Evan Cheng10043e22007-01-19 07:51:42 +00001417
Bob Wilsona4c22902009-04-17 19:07:39 +00001418 // Analyze operands of the call, assigning locations to each operand.
1419 SmallVector<CCValAssign, 16> ArgLocs;
Cameron Zwarich89019782011-06-10 20:59:24 +00001420 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1421 getTargetMachine(), ArgLocs, *DAG.getContext(), Call);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001422 CCInfo.AnalyzeCallOperands(Outs,
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00001423 CCAssignFnForNode(CallConv, /* Return*/ false,
1424 isVarArg));
Evan Cheng10043e22007-01-19 07:51:42 +00001425
Bob Wilsona4c22902009-04-17 19:07:39 +00001426 // Get a count of how many bytes are to be pushed on the stack.
1427 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Cheng10043e22007-01-19 07:51:42 +00001428
Dale Johannesend679ff72010-06-03 21:09:53 +00001429 // For tail calls, memory operands are available in our caller's stack.
Stephen Lin4eedb292013-04-23 19:30:12 +00001430 if (isSibCall)
Dale Johannesend679ff72010-06-03 21:09:53 +00001431 NumBytes = 0;
1432
Evan Cheng10043e22007-01-19 07:51:42 +00001433 // Adjust the stack pointer for the new arguments...
1434 // These operations are automatically eliminated by the prolog/epilog pass
Stephen Lin4eedb292013-04-23 19:30:12 +00001435 if (!isSibCall)
Andrew Trickad6d08a2013-05-29 22:03:55 +00001436 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
1437 dl);
Evan Cheng10043e22007-01-19 07:51:42 +00001438
Jim Grosbach6ad4bcb2010-02-24 01:43:03 +00001439 SDValue StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
Evan Cheng10043e22007-01-19 07:51:42 +00001440
Bob Wilson2e076c42009-06-22 23:27:02 +00001441 RegsToPassVector RegsToPass;
Bob Wilsona4c22902009-04-17 19:07:39 +00001442 SmallVector<SDValue, 8> MemOpChains;
Evan Cheng10043e22007-01-19 07:51:42 +00001443
Bob Wilsona4c22902009-04-17 19:07:39 +00001444 // Walk the register/memloc assignments, inserting copies/loads. In the case
Bob Wilsonea09d4a2009-04-17 20:35:10 +00001445 // of tail call optimization, arguments are handled later.
Bob Wilsona4c22902009-04-17 19:07:39 +00001446 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1447 i != e;
1448 ++i, ++realArgIdx) {
1449 CCValAssign &VA = ArgLocs[i];
Dan Gohmanfe7532a2010-07-07 15:54:55 +00001450 SDValue Arg = OutVals[realArgIdx];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001451 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00001452 bool isByVal = Flags.isByVal();
Evan Cheng10043e22007-01-19 07:51:42 +00001453
Bob Wilsona4c22902009-04-17 19:07:39 +00001454 // Promote the value if needed.
1455 switch (VA.getLocInfo()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001456 default: llvm_unreachable("Unknown loc info!");
Bob Wilsona4c22902009-04-17 19:07:39 +00001457 case CCValAssign::Full: break;
1458 case CCValAssign::SExt:
1459 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1460 break;
1461 case CCValAssign::ZExt:
1462 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1463 break;
1464 case CCValAssign::AExt:
1465 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1466 break;
1467 case CCValAssign::BCvt:
Wesley Peck527da1b2010-11-23 03:31:01 +00001468 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
Bob Wilsona4c22902009-04-17 19:07:39 +00001469 break;
Evan Cheng10043e22007-01-19 07:51:42 +00001470 }
1471
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00001472 // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
Bob Wilsona4c22902009-04-17 19:07:39 +00001473 if (VA.needsCustom()) {
Owen Anderson9f944592009-08-11 20:47:22 +00001474 if (VA.getLocVT() == MVT::v2f64) {
1475 SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1476 DAG.getConstant(0, MVT::i32));
1477 SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1478 DAG.getConstant(1, MVT::i32));
Bob Wilsona4c22902009-04-17 19:07:39 +00001479
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001480 PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
Bob Wilson2e076c42009-06-22 23:27:02 +00001481 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1482
1483 VA = ArgLocs[++i]; // skip ahead to next loc
1484 if (VA.isRegLoc()) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001485 PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
Bob Wilson2e076c42009-06-22 23:27:02 +00001486 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1487 } else {
1488 assert(VA.isMemLoc());
Bob Wilson2e076c42009-06-22 23:27:02 +00001489
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001490 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
1491 dl, DAG, VA, Flags));
Bob Wilson2e076c42009-06-22 23:27:02 +00001492 }
1493 } else {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001494 PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
Bob Wilson2e076c42009-06-22 23:27:02 +00001495 StackPtr, MemOpChains, Flags);
Bob Wilsona4c22902009-04-17 19:07:39 +00001496 }
1497 } else if (VA.isRegLoc()) {
Stephen Lin8118e0b2013-04-23 19:42:25 +00001498 if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i32) {
1499 assert(VA.getLocVT() == MVT::i32 &&
1500 "unexpected calling convention register assignment");
1501 assert(!Ins.empty() && Ins[0].VT == MVT::i32 &&
Stephen Linb8bd2322013-04-20 05:14:40 +00001502 "unexpected use of 'returned'");
Stephen Lin4eedb292013-04-23 19:30:12 +00001503 isThisReturn = true;
Stephen Linb8bd2322013-04-20 05:14:40 +00001504 }
Bob Wilsona4c22902009-04-17 19:07:39 +00001505 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001506 } else if (isByVal) {
1507 assert(VA.isMemLoc());
1508 unsigned offset = 0;
1509
1510 // True if this byval aggregate will be split between registers
1511 // and memory.
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001512 unsigned ByValArgsCount = CCInfo.getInRegsParamsCount();
1513 unsigned CurByValIdx = CCInfo.getInRegsParamsProceed();
1514
1515 if (CurByValIdx < ByValArgsCount) {
1516
1517 unsigned RegBegin, RegEnd;
1518 CCInfo.getInRegsParamInfo(CurByValIdx, RegBegin, RegEnd);
1519
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001520 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1521 unsigned int i, j;
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001522 for (i = 0, j = RegBegin; j < RegEnd; i++, j++) {
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001523 SDValue Const = DAG.getConstant(4*i, MVT::i32);
1524 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
1525 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
1526 MachinePointerInfo(),
Manman Ren5a787552013-10-07 19:47:53 +00001527 false, false, false,
1528 DAG.InferPtrAlignment(AddArg));
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001529 MemOpChains.push_back(Load.getValue(1));
1530 RegsToPass.push_back(std::make_pair(j, Load));
1531 }
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001532
1533 // If parameter size outsides register area, "offset" value
1534 // helps us to calculate stack slot for remained part properly.
1535 offset = RegEnd - RegBegin;
1536
1537 CCInfo.nextInRegsParam();
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001538 }
1539
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001540 if (Flags.getByValSize() > 4*offset) {
Manman Ren9f911162012-06-01 02:44:42 +00001541 unsigned LocMemOffset = VA.getLocMemOffset();
1542 SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset);
1543 SDValue Dst = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr,
1544 StkPtrOff);
1545 SDValue SrcOffset = DAG.getIntPtrConstant(4*offset);
1546 SDValue Src = DAG.getNode(ISD::ADD, dl, getPointerTy(), Arg, SrcOffset);
1547 SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset,
1548 MVT::i32);
Manman Rene8735522012-06-01 19:33:18 +00001549 SDValue AlignNode = DAG.getConstant(Flags.getByValAlign(), MVT::i32);
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001550
Manman Ren9f911162012-06-01 02:44:42 +00001551 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
Manman Rene8735522012-06-01 19:33:18 +00001552 SDValue Ops[] = { Chain, Dst, Src, SizeNode, AlignNode};
Manman Ren9f911162012-06-01 02:44:42 +00001553 MemOpChains.push_back(DAG.getNode(ARMISD::COPY_STRUCT_BYVAL, dl, VTs,
Craig Topper48d114b2014-04-26 18:35:24 +00001554 Ops));
Manman Ren9f911162012-06-01 02:44:42 +00001555 }
Stephen Lin4eedb292013-04-23 19:30:12 +00001556 } else if (!isSibCall) {
Bob Wilsona4c22902009-04-17 19:07:39 +00001557 assert(VA.isMemLoc());
Bob Wilsona4c22902009-04-17 19:07:39 +00001558
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001559 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1560 dl, DAG, VA, Flags));
Bob Wilsona4c22902009-04-17 19:07:39 +00001561 }
Evan Cheng10043e22007-01-19 07:51:42 +00001562 }
1563
1564 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00001565 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Evan Cheng10043e22007-01-19 07:51:42 +00001566
1567 // Build a sequence of copy-to-reg nodes chained together with token chain
1568 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001569 SDValue InFlag;
Dale Johannesen44f9dfc2010-06-15 22:08:33 +00001570 // Tail call byval lowering might overwrite argument registers so in case of
1571 // tail call optimization the copies to registers are lowered later.
1572 if (!isTailCall)
1573 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1574 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1575 RegsToPass[i].second, InFlag);
1576 InFlag = Chain.getValue(1);
1577 }
Evan Cheng10043e22007-01-19 07:51:42 +00001578
Dale Johannesend679ff72010-06-03 21:09:53 +00001579 // For tail calls lower the arguments to the 'real' stack slot.
1580 if (isTailCall) {
1581 // Force all the incoming stack arguments to be loaded from the stack
1582 // before any new outgoing arguments are stored to the stack, because the
1583 // outgoing stack slots may alias the incoming argument stack slots, and
1584 // the alias isn't otherwise explicit. This is slightly more conservative
1585 // than necessary, because it means that each store effectively depends
1586 // on every argument instead of just those arguments it would clobber.
1587
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001588 // Do not flag preceding copytoreg stuff together with the following stuff.
Dale Johannesend679ff72010-06-03 21:09:53 +00001589 InFlag = SDValue();
1590 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1591 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1592 RegsToPass[i].second, InFlag);
1593 InFlag = Chain.getValue(1);
1594 }
Stephen Lind36fd2c2013-04-20 00:47:48 +00001595 InFlag = SDValue();
Dale Johannesend679ff72010-06-03 21:09:53 +00001596 }
1597
Bill Wendling24c79f22008-09-16 21:48:12 +00001598 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1599 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1600 // node so that legalize doesn't hack it.
Evan Cheng10043e22007-01-19 07:51:42 +00001601 bool isDirect = false;
1602 bool isARMFunc = false;
Evan Chengc3c949b42007-06-19 21:05:09 +00001603 bool isLocalARMFunc = false;
Evan Cheng408aa562009-11-06 22:24:13 +00001604 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Jim Grosbach32bb3622010-04-14 22:28:31 +00001605
1606 if (EnableARMLongCalls) {
Saleem Abdulrasool90386ad2014-06-07 20:29:27 +00001607 assert((Subtarget->isTargetWindows() ||
1608 getTargetMachine().getRelocationModel() == Reloc::Static) &&
1609 "long-calls with non-static relocation model!");
Jim Grosbach32bb3622010-04-14 22:28:31 +00001610 // Handle a global address or an external symbol. If it's not one of
1611 // those, the target's already in a register, so we don't need to do
1612 // anything extra.
1613 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anders Carlsson47bccf72010-04-15 03:11:28 +00001614 const GlobalValue *GV = G->getGlobal();
Jim Grosbach32bb3622010-04-14 22:28:31 +00001615 // Create a constant pool entry for the callee address
Evan Chengdfce83c2011-01-17 08:03:18 +00001616 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendling7753d662011-10-01 08:00:54 +00001617 ARMConstantPoolValue *CPV =
1618 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0);
1619
Jim Grosbach32bb3622010-04-14 22:28:31 +00001620 // Get the address of the callee into a register
1621 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1622 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1623 Callee = DAG.getLoad(getPointerTy(), dl,
1624 DAG.getEntryNode(), CPAddr,
Chris Lattner7727d052010-09-21 06:44:06 +00001625 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001626 false, false, false, 0);
Jim Grosbach32bb3622010-04-14 22:28:31 +00001627 } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) {
1628 const char *Sym = S->getSymbol();
1629
1630 // Create a constant pool entry for the callee address
Evan Chengdfce83c2011-01-17 08:03:18 +00001631 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendlingc214cb02011-10-01 08:58:29 +00001632 ARMConstantPoolValue *CPV =
1633 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1634 ARMPCLabelIndex, 0);
Jim Grosbach32bb3622010-04-14 22:28:31 +00001635 // Get the address of the callee into a register
1636 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1637 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1638 Callee = DAG.getLoad(getPointerTy(), dl,
1639 DAG.getEntryNode(), CPAddr,
Chris Lattner7727d052010-09-21 06:44:06 +00001640 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001641 false, false, false, 0);
Jim Grosbach32bb3622010-04-14 22:28:31 +00001642 }
1643 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001644 const GlobalValue *GV = G->getGlobal();
Evan Cheng10043e22007-01-19 07:51:42 +00001645 isDirect = true;
Chris Lattner55452c22009-07-15 04:12:33 +00001646 bool isExt = GV->isDeclaration() || GV->isWeakForLinker();
Tim Northoverd6a729b2014-01-06 14:28:05 +00001647 bool isStub = (isExt && Subtarget->isTargetMachO()) &&
Evan Cheng10043e22007-01-19 07:51:42 +00001648 getTargetMachine().getRelocationModel() != Reloc::Static;
1649 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Chengc3c949b42007-06-19 21:05:09 +00001650 // ARM call to a local ARM function is predicable.
Evan Chengf128bdc2010-06-16 07:35:02 +00001651 isLocalARMFunc = !Subtarget->isThumb() && (!isExt || !ARMInterworking);
Evan Cheng83f35172007-01-30 20:37:08 +00001652 // tBX takes a register source operand.
Tim Northover72360d22013-12-02 10:35:41 +00001653 if (isStub && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
Tim Northoverd6a729b2014-01-06 14:28:05 +00001654 assert(Subtarget->isTargetMachO() && "WrapperPIC use on non-MachO?");
Tim Northover72360d22013-12-02 10:35:41 +00001655 Callee = DAG.getNode(ARMISD::WrapperPIC, dl, getPointerTy(),
1656 DAG.getTargetGlobalAddress(GV, dl, getPointerTy()));
Jim Grosbach85dcd3d2010-09-22 23:27:36 +00001657 } else {
1658 // On ELF targets for PIC code, direct calls should go through the PLT
1659 unsigned OpFlags = 0;
1660 if (Subtarget->isTargetELF() &&
Chad Rosier537ff502013-02-28 19:16:42 +00001661 getTargetMachine().getRelocationModel() == Reloc::PIC_)
Jim Grosbach85dcd3d2010-09-22 23:27:36 +00001662 OpFlags = ARMII::MO_PLT;
1663 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
1664 }
Bill Wendling24c79f22008-09-16 21:48:12 +00001665 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Evan Cheng10043e22007-01-19 07:51:42 +00001666 isDirect = true;
Tim Northoverd6a729b2014-01-06 14:28:05 +00001667 bool isStub = Subtarget->isTargetMachO() &&
Evan Cheng10043e22007-01-19 07:51:42 +00001668 getTargetMachine().getRelocationModel() != Reloc::Static;
1669 isARMFunc = !Subtarget->isThumb() || isStub;
Evan Cheng83f35172007-01-30 20:37:08 +00001670 // tBX takes a register source operand.
1671 const char *Sym = S->getSymbol();
David Goodwin22c2fba2009-07-08 23:10:31 +00001672 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
Evan Chengdfce83c2011-01-17 08:03:18 +00001673 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendlingc214cb02011-10-01 08:58:29 +00001674 ARMConstantPoolValue *CPV =
1675 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1676 ARMPCLabelIndex, 4);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00001677 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
Owen Anderson9f944592009-08-11 20:47:22 +00001678 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Dale Johannesen021052a2009-02-04 20:06:27 +00001679 Callee = DAG.getLoad(getPointerTy(), dl,
Evan Chengcdbb70c2009-10-31 03:39:36 +00001680 DAG.getEntryNode(), CPAddr,
Chris Lattner7727d052010-09-21 06:44:06 +00001681 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00001682 false, false, false, 0);
Evan Cheng408aa562009-11-06 22:24:13 +00001683 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Bob Wilson7117a912009-03-20 22:42:55 +00001684 Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
Dale Johannesen021052a2009-02-04 20:06:27 +00001685 getPointerTy(), Callee, PICLabel);
Jim Grosbach85dcd3d2010-09-22 23:27:36 +00001686 } else {
1687 unsigned OpFlags = 0;
1688 // On ELF targets for PIC code, direct calls should go through the PLT
1689 if (Subtarget->isTargetELF() &&
1690 getTargetMachine().getRelocationModel() == Reloc::PIC_)
1691 OpFlags = ARMII::MO_PLT;
1692 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlags);
1693 }
Evan Cheng10043e22007-01-19 07:51:42 +00001694 }
1695
Lauro Ramos Venancioa88c4a72007-03-20 17:57:23 +00001696 // FIXME: handle tail calls differently.
1697 unsigned CallOpc;
Tim Northoverdee86042013-12-02 14:46:26 +00001698 bool HasMinSizeAttr = Subtarget->isMinSize();
Evan Cheng6ab54fd2009-08-01 00:16:10 +00001699 if (Subtarget->isThumb()) {
1700 if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
Lauro Ramos Venancioa88c4a72007-03-20 17:57:23 +00001701 CallOpc = ARMISD::CALL_NOLINK;
1702 else
1703 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1704 } else {
Evan Cheng21b03482012-11-10 02:09:05 +00001705 if (!isDirect && !Subtarget->hasV5TOps())
Evan Cheng65f9d192012-02-28 18:51:51 +00001706 CallOpc = ARMISD::CALL_NOLINK;
Evan Cheng21b03482012-11-10 02:09:05 +00001707 else if (doesNotRet && isDirect && Subtarget->hasRAS() &&
Quentin Colombet8e1fe842012-11-02 21:32:17 +00001708 // Emit regular call when code size is the priority
1709 !HasMinSizeAttr)
Evan Cheng65f9d192012-02-28 18:51:51 +00001710 // "mov lr, pc; b _foo" to avoid confusing the RSP
1711 CallOpc = ARMISD::CALL_NOLINK;
1712 else
1713 CallOpc = isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL;
Lauro Ramos Venancioa88c4a72007-03-20 17:57:23 +00001714 }
Lauro Ramos Venancioa88c4a72007-03-20 17:57:23 +00001715
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001716 std::vector<SDValue> Ops;
Evan Cheng10043e22007-01-19 07:51:42 +00001717 Ops.push_back(Chain);
1718 Ops.push_back(Callee);
1719
1720 // Add argument registers to the end of the list so that they are known live
1721 // into the call.
1722 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1723 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1724 RegsToPass[i].second.getValueType()));
1725
Jakob Stoklund Olesenfa7a5372012-02-24 01:19:29 +00001726 // Add a register mask operand representing the call-preserved registers.
Matthias Braunc22630e2013-10-04 16:52:54 +00001727 if (!isTailCall) {
1728 const uint32_t *Mask;
1729 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
1730 const ARMBaseRegisterInfo *ARI = static_cast<const ARMBaseRegisterInfo*>(TRI);
1731 if (isThisReturn) {
1732 // For 'this' returns, use the R0-preserving mask if applicable
1733 Mask = ARI->getThisReturnPreservedMask(CallConv);
1734 if (!Mask) {
1735 // Set isThisReturn to false if the calling convention is not one that
1736 // allows 'returned' to be modeled in this way, so LowerCallResult does
1737 // not try to pass 'this' straight through
1738 isThisReturn = false;
1739 Mask = ARI->getCallPreservedMask(CallConv);
1740 }
1741 } else
Stephen Linff7fcee2013-06-26 21:42:14 +00001742 Mask = ARI->getCallPreservedMask(CallConv);
Stephen Linb8bd2322013-04-20 05:14:40 +00001743
Matthias Braunc22630e2013-10-04 16:52:54 +00001744 assert(Mask && "Missing call preserved mask for calling convention");
1745 Ops.push_back(DAG.getRegisterMask(Mask));
1746 }
Jakob Stoklund Olesenfa7a5372012-02-24 01:19:29 +00001747
Gabor Greiff304a7a2008-08-28 21:40:38 +00001748 if (InFlag.getNode())
Evan Cheng10043e22007-01-19 07:51:42 +00001749 Ops.push_back(InFlag);
Dale Johannesend679ff72010-06-03 21:09:53 +00001750
Chris Lattner3e5fbd72010-12-21 02:38:05 +00001751 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dale Johannesen81ef35b2010-06-05 00:51:39 +00001752 if (isTailCall)
Craig Topper48d114b2014-04-26 18:35:24 +00001753 return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, Ops);
Dale Johannesend679ff72010-06-03 21:09:53 +00001754
Duncan Sands739a0542008-07-02 17:40:58 +00001755 // Returns a chain and a flag for retval copy to use.
Craig Topper48d114b2014-04-26 18:35:24 +00001756 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
Evan Cheng10043e22007-01-19 07:51:42 +00001757 InFlag = Chain.getValue(1);
1758
Chris Lattner27539552008-10-11 22:08:30 +00001759 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trickad6d08a2013-05-29 22:03:55 +00001760 DAG.getIntPtrConstant(0, true), InFlag, dl);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001761 if (!Ins.empty())
Evan Cheng10043e22007-01-19 07:51:42 +00001762 InFlag = Chain.getValue(1);
1763
Bob Wilsona4c22902009-04-17 19:07:39 +00001764 // Handle result values, copying them out of physregs into vregs that we
1765 // return.
Stephen Linb8bd2322013-04-20 05:14:40 +00001766 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG,
Stephen Lin4eedb292013-04-23 19:30:12 +00001767 InVals, isThisReturn,
1768 isThisReturn ? OutVals[0] : SDValue());
Evan Cheng10043e22007-01-19 07:51:42 +00001769}
1770
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00001771/// HandleByVal - Every parameter *after* a byval parameter is passed
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001772/// on the stack. Remember the next parameter register to allocate,
1773/// and then confiscate the rest of the parameter registers to insure
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00001774/// this.
1775void
Stepan Dyatkovskiye59a9202012-10-16 07:16:47 +00001776ARMTargetLowering::HandleByVal(
1777 CCState *State, unsigned &size, unsigned Align) const {
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001778 unsigned reg = State->AllocateReg(GPRArgRegs, 4);
1779 assert((State->getCallOrPrologue() == Prologue ||
1780 State->getCallOrPrologue() == Call) &&
1781 "unhandled ParmContext");
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001782
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001783 if ((ARM::R0 <= reg) && (reg <= ARM::R3)) {
Stepan Dyatkovskiye59a9202012-10-16 07:16:47 +00001784 if (Subtarget->isAAPCS_ABI() && Align > 4) {
1785 unsigned AlignInRegs = Align / 4;
1786 unsigned Waste = (ARM::R4 - reg) % AlignInRegs;
1787 for (unsigned i = 0; i < Waste; ++i)
1788 reg = State->AllocateReg(GPRArgRegs, 4);
1789 }
1790 if (reg != 0) {
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001791 unsigned excess = 4 * (ARM::R4 - reg);
1792
1793 // Special case when NSAA != SP and parameter size greater than size of
1794 // all remained GPR regs. In that case we can't split parameter, we must
1795 // send it to stack. We also must set NCRN to R4, so waste all
1796 // remained registers.
Oliver Stannardd55e1152014-03-05 15:25:27 +00001797 const unsigned NSAAOffset = State->getNextStackOffset();
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001798 if (Subtarget->isAAPCS_ABI() && NSAAOffset != 0 && size > excess) {
1799 while (State->AllocateReg(GPRArgRegs, 4))
1800 ;
1801 return;
1802 }
1803
1804 // First register for byval parameter is the first register that wasn't
1805 // allocated before this method call, so it would be "reg".
1806 // If parameter is small enough to be saved in range [reg, r4), then
1807 // the end (first after last) register would be reg + param-size-in-regs,
1808 // else parameter would be splitted between registers and stack,
1809 // end register would be r4 in this case.
1810 unsigned ByValRegBegin = reg;
Stepan Dyatkovskiy2703bca2013-05-08 14:51:27 +00001811 unsigned ByValRegEnd = (size < excess) ? reg + size/4 : (unsigned)ARM::R4;
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001812 State->addInRegsParamInfo(ByValRegBegin, ByValRegEnd);
1813 // Note, first register is allocated in the beginning of function already,
1814 // allocate remained amount of registers we need.
1815 for (unsigned i = reg+1; i != ByValRegEnd; ++i)
1816 State->AllocateReg(GPRArgRegs, 4);
Oliver Stannardd55e1152014-03-05 15:25:27 +00001817 // A byval parameter that is split between registers and memory needs its
1818 // size truncated here.
1819 // In the case where the entire structure fits in registers, we set the
1820 // size in memory to zero.
1821 if (size < excess)
1822 size = 0;
1823 else
1824 size -= excess;
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001825 }
1826 }
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00001827}
1828
Dale Johannesend679ff72010-06-03 21:09:53 +00001829/// MatchingStackOffset - Return true if the given stack call argument is
1830/// already available in the same position (relatively) of the caller's
1831/// incoming argument stack.
1832static
1833bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
1834 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
Craig Topper07720d82012-03-25 23:49:58 +00001835 const TargetInstrInfo *TII) {
Dale Johannesend679ff72010-06-03 21:09:53 +00001836 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
1837 int FI = INT_MAX;
1838 if (Arg.getOpcode() == ISD::CopyFromReg) {
1839 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +00001840 if (!TargetRegisterInfo::isVirtualRegister(VR))
Dale Johannesend679ff72010-06-03 21:09:53 +00001841 return false;
1842 MachineInstr *Def = MRI->getVRegDef(VR);
1843 if (!Def)
1844 return false;
1845 if (!Flags.isByVal()) {
1846 if (!TII->isLoadFromStackSlot(Def, FI))
1847 return false;
1848 } else {
Dale Johannesene2289282010-07-08 01:18:23 +00001849 return false;
Dale Johannesend679ff72010-06-03 21:09:53 +00001850 }
1851 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
1852 if (Flags.isByVal())
1853 // ByVal argument is passed in as a pointer but it's now being
1854 // dereferenced. e.g.
1855 // define @foo(%struct.X* %A) {
1856 // tail call @bar(%struct.X* byval %A)
1857 // }
1858 return false;
1859 SDValue Ptr = Ld->getBasePtr();
1860 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
1861 if (!FINode)
1862 return false;
1863 FI = FINode->getIndex();
1864 } else
1865 return false;
1866
1867 assert(FI != INT_MAX);
1868 if (!MFI->isFixedObjectIndex(FI))
1869 return false;
1870 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
1871}
1872
1873/// IsEligibleForTailCallOptimization - Check whether the call is eligible
1874/// for tail call optimization. Targets which want to do tail call
1875/// optimization should implement this function.
1876bool
1877ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
1878 CallingConv::ID CalleeCC,
1879 bool isVarArg,
1880 bool isCalleeStructRet,
1881 bool isCallerStructRet,
1882 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00001883 const SmallVectorImpl<SDValue> &OutVals,
Dale Johannesend679ff72010-06-03 21:09:53 +00001884 const SmallVectorImpl<ISD::InputArg> &Ins,
1885 SelectionDAG& DAG) const {
Dale Johannesend679ff72010-06-03 21:09:53 +00001886 const Function *CallerF = DAG.getMachineFunction().getFunction();
1887 CallingConv::ID CallerCC = CallerF->getCallingConv();
1888 bool CCMatch = CallerCC == CalleeCC;
1889
1890 // Look for obvious safe cases to perform tail call optimization that do not
1891 // require ABI changes. This is what gcc calls sibcall.
1892
Jim Grosbache3864cc2010-06-16 23:45:49 +00001893 // Do not sibcall optimize vararg calls unless the call site is not passing
1894 // any arguments.
Dale Johannesend679ff72010-06-03 21:09:53 +00001895 if (isVarArg && !Outs.empty())
1896 return false;
1897
Tim Northoverd8407452013-10-01 14:33:28 +00001898 // Exception-handling functions need a special set of instructions to indicate
1899 // a return to the hardware. Tail-calling another function would probably
1900 // break this.
1901 if (CallerF->hasFnAttribute("interrupt"))
1902 return false;
1903
Dale Johannesend679ff72010-06-03 21:09:53 +00001904 // Also avoid sibcall optimization if either caller or callee uses struct
1905 // return semantics.
1906 if (isCalleeStructRet || isCallerStructRet)
1907 return false;
1908
Dale Johannesend24c66b2010-06-23 18:52:34 +00001909 // FIXME: Completely disable sibcall for Thumb1 since Thumb1RegisterInfo::
Jim Grosbach3840c902011-07-08 20:18:11 +00001910 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
1911 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
1912 // support in the assembler and linker to be used. This would need to be
1913 // fixed to fully support tail calls in Thumb1.
1914 //
Dale Johannesene2289282010-07-08 01:18:23 +00001915 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
1916 // LR. This means if we need to reload LR, it takes an extra instructions,
1917 // which outweighs the value of the tail call; but here we don't know yet
1918 // whether LR is going to be used. Probably the right approach is to
Jim Grosbach535d3b42010-09-08 03:54:02 +00001919 // generate the tail call here and turn it back into CALL/RET in
Dale Johannesene2289282010-07-08 01:18:23 +00001920 // emitEpilogue if LR is used.
Dale Johannesene2289282010-07-08 01:18:23 +00001921
1922 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
1923 // but we need to make sure there are enough registers; the only valid
1924 // registers are the 4 used for parameters. We don't currently do this
1925 // case.
Evan Chengd4b08732010-11-30 23:55:39 +00001926 if (Subtarget->isThumb1Only())
1927 return false;
Dale Johannesen3ac52b32010-06-18 18:13:11 +00001928
Dale Johannesend679ff72010-06-03 21:09:53 +00001929 // If the calling conventions do not match, then we'd better make sure the
1930 // results are returned in the same way as what the caller expects.
1931 if (!CCMatch) {
1932 SmallVector<CCValAssign, 16> RVLocs1;
Cameron Zwarich89019782011-06-10 20:59:24 +00001933 ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
1934 getTargetMachine(), RVLocs1, *DAG.getContext(), Call);
Dale Johannesend679ff72010-06-03 21:09:53 +00001935 CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg));
1936
1937 SmallVector<CCValAssign, 16> RVLocs2;
Cameron Zwarich89019782011-06-10 20:59:24 +00001938 ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
1939 getTargetMachine(), RVLocs2, *DAG.getContext(), Call);
Dale Johannesend679ff72010-06-03 21:09:53 +00001940 CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg));
1941
1942 if (RVLocs1.size() != RVLocs2.size())
1943 return false;
1944 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
1945 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
1946 return false;
1947 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
1948 return false;
1949 if (RVLocs1[i].isRegLoc()) {
1950 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
1951 return false;
1952 } else {
1953 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
1954 return false;
1955 }
1956 }
1957 }
1958
Manman Ren7e48b252012-10-12 23:39:43 +00001959 // If Caller's vararg or byval argument has been split between registers and
1960 // stack, do not perform tail call, since part of the argument is in caller's
1961 // local frame.
1962 const ARMFunctionInfo *AFI_Caller = DAG.getMachineFunction().
1963 getInfo<ARMFunctionInfo>();
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00001964 if (AFI_Caller->getArgRegsSaveSize())
Manman Ren7e48b252012-10-12 23:39:43 +00001965 return false;
1966
Dale Johannesend679ff72010-06-03 21:09:53 +00001967 // If the callee takes no arguments then go on to check the results of the
1968 // call.
1969 if (!Outs.empty()) {
1970 // Check if stack adjustment is needed. For now, do not do this if any
1971 // argument is passed on the stack.
1972 SmallVector<CCValAssign, 16> ArgLocs;
Cameron Zwarich89019782011-06-10 20:59:24 +00001973 ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
1974 getTargetMachine(), ArgLocs, *DAG.getContext(), Call);
Dale Johannesend679ff72010-06-03 21:09:53 +00001975 CCInfo.AnalyzeCallOperands(Outs,
1976 CCAssignFnForNode(CalleeCC, false, isVarArg));
1977 if (CCInfo.getNextStackOffset()) {
1978 MachineFunction &MF = DAG.getMachineFunction();
1979
1980 // Check if the arguments are already laid out in the right way as
1981 // the caller's fixed stack objects.
1982 MachineFrameInfo *MFI = MF.getFrameInfo();
1983 const MachineRegisterInfo *MRI = &MF.getRegInfo();
Craig Topper07720d82012-03-25 23:49:58 +00001984 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Dale Johannesen81ef35b2010-06-05 00:51:39 +00001985 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1986 i != e;
1987 ++i, ++realArgIdx) {
Dale Johannesend679ff72010-06-03 21:09:53 +00001988 CCValAssign &VA = ArgLocs[i];
1989 EVT RegVT = VA.getLocVT();
Dan Gohmanfe7532a2010-07-07 15:54:55 +00001990 SDValue Arg = OutVals[realArgIdx];
Dale Johannesen81ef35b2010-06-05 00:51:39 +00001991 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
Dale Johannesend679ff72010-06-03 21:09:53 +00001992 if (VA.getLocInfo() == CCValAssign::Indirect)
1993 return false;
Dale Johannesen81ef35b2010-06-05 00:51:39 +00001994 if (VA.needsCustom()) {
1995 // f64 and vector types are split into multiple registers or
1996 // register/stack-slot combinations. The types will not match
1997 // the registers; give up on memory f64 refs until we figure
1998 // out what to do about this.
1999 if (!VA.isRegLoc())
2000 return false;
2001 if (!ArgLocs[++i].isRegLoc())
Jim Grosbach535d3b42010-09-08 03:54:02 +00002002 return false;
Dale Johannesen81ef35b2010-06-05 00:51:39 +00002003 if (RegVT == MVT::v2f64) {
2004 if (!ArgLocs[++i].isRegLoc())
2005 return false;
2006 if (!ArgLocs[++i].isRegLoc())
2007 return false;
2008 }
2009 } else if (!VA.isRegLoc()) {
Dale Johannesend679ff72010-06-03 21:09:53 +00002010 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2011 MFI, MRI, TII))
2012 return false;
2013 }
2014 }
2015 }
2016 }
2017
2018 return true;
2019}
2020
Benjamin Kramerb1996da2012-11-28 20:55:10 +00002021bool
2022ARMTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
2023 MachineFunction &MF, bool isVarArg,
2024 const SmallVectorImpl<ISD::OutputArg> &Outs,
2025 LLVMContext &Context) const {
2026 SmallVector<CCValAssign, 16> RVLocs;
2027 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(), RVLocs, Context);
2028 return CCInfo.CheckReturn(Outs, CCAssignFnForNode(CallConv, /*Return=*/true,
2029 isVarArg));
2030}
2031
Tim Northoverd8407452013-10-01 14:33:28 +00002032static SDValue LowerInterruptReturn(SmallVectorImpl<SDValue> &RetOps,
2033 SDLoc DL, SelectionDAG &DAG) {
2034 const MachineFunction &MF = DAG.getMachineFunction();
2035 const Function *F = MF.getFunction();
2036
2037 StringRef IntKind = F->getFnAttribute("interrupt").getValueAsString();
2038
2039 // See ARM ARM v7 B1.8.3. On exception entry LR is set to a possibly offset
2040 // version of the "preferred return address". These offsets affect the return
2041 // instruction if this is a return from PL1 without hypervisor extensions.
2042 // IRQ/FIQ: +4 "subs pc, lr, #4"
2043 // SWI: 0 "subs pc, lr, #0"
2044 // ABORT: +4 "subs pc, lr, #4"
2045 // UNDEF: +4/+2 "subs pc, lr, #0"
2046 // UNDEF varies depending on where the exception came from ARM or Thumb
2047 // mode. Alongside GCC, we throw our hands up in disgust and pretend it's 0.
2048
2049 int64_t LROffset;
2050 if (IntKind == "" || IntKind == "IRQ" || IntKind == "FIQ" ||
2051 IntKind == "ABORT")
2052 LROffset = 4;
2053 else if (IntKind == "SWI" || IntKind == "UNDEF")
2054 LROffset = 0;
2055 else
2056 report_fatal_error("Unsupported interrupt attribute. If present, value "
2057 "must be one of: IRQ, FIQ, SWI, ABORT or UNDEF");
2058
2059 RetOps.insert(RetOps.begin() + 1, DAG.getConstant(LROffset, MVT::i32, false));
2060
Craig Topper48d114b2014-04-26 18:35:24 +00002061 return DAG.getNode(ARMISD::INTRET_FLAG, DL, MVT::Other, RetOps);
Tim Northoverd8407452013-10-01 14:33:28 +00002062}
2063
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002064SDValue
2065ARMTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002066 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002067 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002068 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002069 SDLoc dl, SelectionDAG &DAG) const {
Bob Wilson7117a912009-03-20 22:42:55 +00002070
Bob Wilsonea09d4a2009-04-17 20:35:10 +00002071 // CCValAssign - represent the assignment of the return value to a location.
Bob Wilsona4c22902009-04-17 19:07:39 +00002072 SmallVector<CCValAssign, 16> RVLocs;
Bob Wilsona4c22902009-04-17 19:07:39 +00002073
Bob Wilsonea09d4a2009-04-17 20:35:10 +00002074 // CCState - Info about the registers and stack slots.
Cameron Zwarich89019782011-06-10 20:59:24 +00002075 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2076 getTargetMachine(), RVLocs, *DAG.getContext(), Call);
Bob Wilsona4c22902009-04-17 19:07:39 +00002077
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002078 // Analyze outgoing return values.
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00002079 CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
2080 isVarArg));
Bob Wilsona4c22902009-04-17 19:07:39 +00002081
Bob Wilsona4c22902009-04-17 19:07:39 +00002082 SDValue Flag;
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002083 SmallVector<SDValue, 4> RetOps;
2084 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
Christian Pirkerb5728192014-05-08 14:06:24 +00002085 bool isLittleEndian = Subtarget->isLittle();
Bob Wilsona4c22902009-04-17 19:07:39 +00002086
2087 // Copy the result values into the output registers.
2088 for (unsigned i = 0, realRVLocIdx = 0;
2089 i != RVLocs.size();
2090 ++i, ++realRVLocIdx) {
2091 CCValAssign &VA = RVLocs[i];
2092 assert(VA.isRegLoc() && "Can only return in registers!");
2093
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002094 SDValue Arg = OutVals[realRVLocIdx];
Bob Wilsona4c22902009-04-17 19:07:39 +00002095
2096 switch (VA.getLocInfo()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002097 default: llvm_unreachable("Unknown loc info!");
Bob Wilsona4c22902009-04-17 19:07:39 +00002098 case CCValAssign::Full: break;
2099 case CCValAssign::BCvt:
Wesley Peck527da1b2010-11-23 03:31:01 +00002100 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
Bob Wilsona4c22902009-04-17 19:07:39 +00002101 break;
2102 }
2103
Bob Wilsona4c22902009-04-17 19:07:39 +00002104 if (VA.needsCustom()) {
Owen Anderson9f944592009-08-11 20:47:22 +00002105 if (VA.getLocVT() == MVT::v2f64) {
Bob Wilson2e076c42009-06-22 23:27:02 +00002106 // Extract the first half and return it in two registers.
Owen Anderson9f944592009-08-11 20:47:22 +00002107 SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2108 DAG.getConstant(0, MVT::i32));
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00002109 SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00002110 DAG.getVTList(MVT::i32, MVT::i32), Half);
Bob Wilson2e076c42009-06-22 23:27:02 +00002111
Christian Pirkerb5728192014-05-08 14:06:24 +00002112 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2113 HalfGPRs.getValue(isLittleEndian ? 0 : 1),
2114 Flag);
Bob Wilson2e076c42009-06-22 23:27:02 +00002115 Flag = Chain.getValue(1);
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002116 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Bob Wilson2e076c42009-06-22 23:27:02 +00002117 VA = RVLocs[++i]; // skip ahead to next loc
2118 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Christian Pirkerb5728192014-05-08 14:06:24 +00002119 HalfGPRs.getValue(isLittleEndian ? 1 : 0),
2120 Flag);
Bob Wilson2e076c42009-06-22 23:27:02 +00002121 Flag = Chain.getValue(1);
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002122 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Bob Wilson2e076c42009-06-22 23:27:02 +00002123 VA = RVLocs[++i]; // skip ahead to next loc
2124
2125 // Extract the 2nd half and fall through to handle it as an f64 value.
Owen Anderson9f944592009-08-11 20:47:22 +00002126 Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2127 DAG.getConstant(1, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00002128 }
2129 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is
2130 // available.
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00002131 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
Craig Topper48d114b2014-04-26 18:35:24 +00002132 DAG.getVTList(MVT::i32, MVT::i32), Arg);
Christian Pirkerb5728192014-05-08 14:06:24 +00002133 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2134 fmrrd.getValue(isLittleEndian ? 0 : 1),
2135 Flag);
Bob Wilsonf134b2d2009-04-24 17:00:36 +00002136 Flag = Chain.getValue(1);
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002137 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Bob Wilsona4c22902009-04-17 19:07:39 +00002138 VA = RVLocs[++i]; // skip ahead to next loc
Christian Pirkerb5728192014-05-08 14:06:24 +00002139 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2140 fmrrd.getValue(isLittleEndian ? 1 : 0),
Bob Wilsona4c22902009-04-17 19:07:39 +00002141 Flag);
2142 } else
2143 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
2144
Bob Wilsonea09d4a2009-04-17 20:35:10 +00002145 // Guarantee that all emitted copies are
2146 // stuck together, avoiding something bad.
Bob Wilsona4c22902009-04-17 19:07:39 +00002147 Flag = Chain.getValue(1);
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002148 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Bob Wilsona4c22902009-04-17 19:07:39 +00002149 }
2150
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002151 // Update chain and glue.
2152 RetOps[0] = Chain;
Bob Wilsona4c22902009-04-17 19:07:39 +00002153 if (Flag.getNode())
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002154 RetOps.push_back(Flag);
Bob Wilsona4c22902009-04-17 19:07:39 +00002155
Tim Northoverd8407452013-10-01 14:33:28 +00002156 // CPUs which aren't M-class use a special sequence to return from
2157 // exceptions (roughly, any instruction setting pc and cpsr simultaneously,
2158 // though we use "subs pc, lr, #N").
2159 //
2160 // M-class CPUs actually use a normal return sequence with a special
2161 // (hardware-provided) value in LR, so the normal code path works.
2162 if (DAG.getMachineFunction().getFunction()->hasFnAttribute("interrupt") &&
2163 !Subtarget->isMClass()) {
2164 if (Subtarget->isThumb1Only())
2165 report_fatal_error("interrupt attribute is not supported in Thumb1");
2166 return LowerInterruptReturn(RetOps, dl, DAG);
2167 }
2168
Craig Topper48d114b2014-04-26 18:35:24 +00002169 return DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, RetOps);
Evan Cheng10043e22007-01-19 07:51:42 +00002170}
2171
Evan Chengf8bad082012-04-10 01:51:00 +00002172bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Chengd4b08732010-11-30 23:55:39 +00002173 if (N->getNumValues() != 1)
2174 return false;
2175 if (!N->hasNUsesOfValue(1, 0))
2176 return false;
2177
Evan Chengf8bad082012-04-10 01:51:00 +00002178 SDValue TCChain = Chain;
2179 SDNode *Copy = *N->use_begin();
2180 if (Copy->getOpcode() == ISD::CopyToReg) {
2181 // If the copy has a glue operand, we conservatively assume it isn't safe to
2182 // perform a tail call.
2183 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2184 return false;
2185 TCChain = Copy->getOperand(0);
2186 } else if (Copy->getOpcode() == ARMISD::VMOVRRD) {
2187 SDNode *VMov = Copy;
Evan Chengd4b08732010-11-30 23:55:39 +00002188 // f64 returned in a pair of GPRs.
Evan Chengf8bad082012-04-10 01:51:00 +00002189 SmallPtrSet<SDNode*, 2> Copies;
2190 for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
Evan Chengd4b08732010-11-30 23:55:39 +00002191 UI != UE; ++UI) {
2192 if (UI->getOpcode() != ISD::CopyToReg)
2193 return false;
Evan Chengf8bad082012-04-10 01:51:00 +00002194 Copies.insert(*UI);
Evan Chengd4b08732010-11-30 23:55:39 +00002195 }
Evan Chengf8bad082012-04-10 01:51:00 +00002196 if (Copies.size() > 2)
2197 return false;
2198
2199 for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2200 UI != UE; ++UI) {
2201 SDValue UseChain = UI->getOperand(0);
2202 if (Copies.count(UseChain.getNode()))
2203 // Second CopyToReg
2204 Copy = *UI;
2205 else
2206 // First CopyToReg
2207 TCChain = UseChain;
2208 }
2209 } else if (Copy->getOpcode() == ISD::BITCAST) {
Evan Chengd4b08732010-11-30 23:55:39 +00002210 // f32 returned in a single GPR.
Evan Chengf8bad082012-04-10 01:51:00 +00002211 if (!Copy->hasOneUse())
Evan Chengd4b08732010-11-30 23:55:39 +00002212 return false;
Evan Chengf8bad082012-04-10 01:51:00 +00002213 Copy = *Copy->use_begin();
2214 if (Copy->getOpcode() != ISD::CopyToReg || !Copy->hasNUsesOfValue(1, 0))
Evan Chengd4b08732010-11-30 23:55:39 +00002215 return false;
Lang Hames67c09b32013-05-13 10:21:19 +00002216 TCChain = Copy->getOperand(0);
Evan Chengd4b08732010-11-30 23:55:39 +00002217 } else {
2218 return false;
2219 }
2220
Evan Cheng419ea282010-12-01 22:59:46 +00002221 bool HasRet = false;
Evan Chengf8bad082012-04-10 01:51:00 +00002222 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2223 UI != UE; ++UI) {
Tim Northoverd8407452013-10-01 14:33:28 +00002224 if (UI->getOpcode() != ARMISD::RET_FLAG &&
2225 UI->getOpcode() != ARMISD::INTRET_FLAG)
Evan Chengf8bad082012-04-10 01:51:00 +00002226 return false;
2227 HasRet = true;
Evan Chengd4b08732010-11-30 23:55:39 +00002228 }
2229
Evan Chengf8bad082012-04-10 01:51:00 +00002230 if (!HasRet)
2231 return false;
2232
2233 Chain = TCChain;
2234 return true;
Evan Chengd4b08732010-11-30 23:55:39 +00002235}
2236
Evan Cheng0663f232011-03-21 01:19:09 +00002237bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Saleem Abdulrasoolb720a6b2014-03-11 15:09:49 +00002238 if (!Subtarget->supportsTailCall())
Evan Cheng0663f232011-03-21 01:19:09 +00002239 return false;
2240
Saleem Abdulrasool0d96f3d2014-03-11 15:09:54 +00002241 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng0663f232011-03-21 01:19:09 +00002242 return false;
2243
2244 return !Subtarget->isThumb1Only();
2245}
2246
Bob Wilsonb389f2a2009-11-03 00:02:05 +00002247// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
2248// their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
2249// one of the above mentioned nodes. It has to be wrapped because otherwise
2250// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
2251// be used to form addressing mode. These wrapped nodes will be selected
2252// into MOVi.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002253static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002254 EVT PtrVT = Op.getValueType();
Dale Johannesen62fd95d2009-02-07 00:55:49 +00002255 // FIXME there is no actual debug info here
Andrew Trickef9de2a2013-05-25 02:42:55 +00002256 SDLoc dl(Op);
Evan Cheng10043e22007-01-19 07:51:42 +00002257 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002258 SDValue Res;
Evan Cheng10043e22007-01-19 07:51:42 +00002259 if (CP->isMachineConstantPoolEntry())
2260 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
2261 CP->getAlignment());
2262 else
2263 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
2264 CP->getAlignment());
Owen Anderson9f944592009-08-11 20:47:22 +00002265 return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
Evan Cheng10043e22007-01-19 07:51:42 +00002266}
2267
Jim Grosbach8d3ba732010-07-19 17:20:38 +00002268unsigned ARMTargetLowering::getJumpTableEncoding() const {
2269 return MachineJumpTableInfo::EK_Inline;
2270}
2271
Dan Gohman21cea8a2010-04-17 15:26:15 +00002272SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op,
2273 SelectionDAG &DAG) const {
Evan Cheng408aa562009-11-06 22:24:13 +00002274 MachineFunction &MF = DAG.getMachineFunction();
2275 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2276 unsigned ARMPCLabelIndex = 0;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002277 SDLoc DL(Op);
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002278 EVT PtrVT = getPointerTy();
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002279 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002280 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2281 SDValue CPAddr;
2282 if (RelocM == Reloc::Static) {
2283 CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
2284 } else {
2285 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
Evan Chengdfce83c2011-01-17 08:03:18 +00002286 ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendling7753d662011-10-01 08:00:54 +00002287 ARMConstantPoolValue *CPV =
2288 ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex,
2289 ARMCP::CPBlockAddress, PCAdj);
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002290 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2291 }
2292 CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
2293 SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
Chris Lattner7727d052010-09-21 06:44:06 +00002294 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002295 false, false, false, 0);
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002296 if (RelocM == Reloc::Static)
2297 return Result;
Evan Cheng408aa562009-11-06 22:24:13 +00002298 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002299 return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
Bob Wilson1cf0b032009-10-30 05:45:42 +00002300}
2301
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002302// Lower ISD::GlobalTLSAddress using the "general dynamic" model
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002303SDValue
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002304ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002305 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002306 SDLoc dl(GA);
Owen Anderson53aa7a92009-08-10 22:56:29 +00002307 EVT PtrVT = getPointerTy();
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002308 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
Evan Cheng408aa562009-11-06 22:24:13 +00002309 MachineFunction &MF = DAG.getMachineFunction();
2310 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Chengdfce83c2011-01-17 08:03:18 +00002311 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002312 ARMConstantPoolValue *CPV =
Bill Wendling7753d662011-10-01 08:00:54 +00002313 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2314 ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002315 SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002316 Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
Evan Chengcdbb70c2009-10-31 03:39:36 +00002317 Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
Chris Lattner7727d052010-09-21 06:44:06 +00002318 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002319 false, false, false, 0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002320 SDValue Chain = Argument.getValue(1);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002321
Evan Cheng408aa562009-11-06 22:24:13 +00002322 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00002323 Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002324
2325 // call __tls_get_addr.
2326 ArgListTy Args;
2327 ArgListEntry Entry;
2328 Entry.Node = Argument;
Chris Lattner229907c2011-07-18 04:54:35 +00002329 Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext());
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002330 Args.push_back(Entry);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002331
Dale Johannesen555a3752009-01-30 23:10:59 +00002332 // FIXME: is there useful debug info available here?
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002333 TargetLowering::CallLoweringInfo CLI(DAG);
2334 CLI.setDebugLoc(dl).setChain(Chain)
2335 .setCallee(CallingConv::C, Type::getInt32Ty(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002336 DAG.getExternalSymbol("__tls_get_addr", PtrVT), std::move(Args),
2337 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002338
Justin Holewinskiaa583972012-05-25 16:35:28 +00002339 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002340 return CallResult.first;
2341}
2342
2343// Lower ISD::GlobalTLSAddress using the "initial exec" or
2344// "local exec" model.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002345SDValue
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002346ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
Hans Wennborgaea41202012-05-04 09:40:39 +00002347 SelectionDAG &DAG,
2348 TLSModel::Model model) const {
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002349 const GlobalValue *GV = GA->getGlobal();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002350 SDLoc dl(GA);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002351 SDValue Offset;
2352 SDValue Chain = DAG.getEntryNode();
Owen Anderson53aa7a92009-08-10 22:56:29 +00002353 EVT PtrVT = getPointerTy();
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002354 // Get the Thread Pointer
Dale Johannesen021052a2009-02-04 20:06:27 +00002355 SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002356
Hans Wennborgaea41202012-05-04 09:40:39 +00002357 if (model == TLSModel::InitialExec) {
Evan Cheng408aa562009-11-06 22:24:13 +00002358 MachineFunction &MF = DAG.getMachineFunction();
2359 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Chengdfce83c2011-01-17 08:03:18 +00002360 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Evan Cheng408aa562009-11-06 22:24:13 +00002361 // Initial exec model.
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002362 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2363 ARMConstantPoolValue *CPV =
Bill Wendling7753d662011-10-01 08:00:54 +00002364 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2365 ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF,
2366 true);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002367 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002368 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
Evan Chengcdbb70c2009-10-31 03:39:36 +00002369 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattner7727d052010-09-21 06:44:06 +00002370 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002371 false, false, false, 0);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002372 Chain = Offset.getValue(1);
2373
Evan Cheng408aa562009-11-06 22:24:13 +00002374 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00002375 Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002376
Evan Chengcdbb70c2009-10-31 03:39:36 +00002377 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattner7727d052010-09-21 06:44:06 +00002378 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002379 false, false, false, 0);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002380 } else {
2381 // local exec model
Hans Wennborgaea41202012-05-04 09:40:39 +00002382 assert(model == TLSModel::LocalExec);
Bill Wendling7753d662011-10-01 08:00:54 +00002383 ARMConstantPoolValue *CPV =
2384 ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002385 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002386 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
Evan Chengcdbb70c2009-10-31 03:39:36 +00002387 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
Chris Lattner7727d052010-09-21 06:44:06 +00002388 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002389 false, false, false, 0);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002390 }
2391
2392 // The address of the thread local variable is the add of the thread
2393 // pointer with the offset of the variable.
Dale Johannesen021052a2009-02-04 20:06:27 +00002394 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002395}
2396
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002397SDValue
Dan Gohman21cea8a2010-04-17 15:26:15 +00002398ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002399 // TODO: implement the "local dynamic" model
2400 assert(Subtarget->isTargetELF() &&
2401 "TLS not implemented for non-ELF targets");
2402 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Hans Wennborgaea41202012-05-04 09:40:39 +00002403
2404 TLSModel::Model model = getTargetMachine().getTLSModel(GA->getGlobal());
2405
2406 switch (model) {
2407 case TLSModel::GeneralDynamic:
2408 case TLSModel::LocalDynamic:
2409 return LowerToTLSGeneralDynamicModel(GA, DAG);
2410 case TLSModel::InitialExec:
2411 case TLSModel::LocalExec:
2412 return LowerToTLSExecModels(GA, DAG, model);
2413 }
Matt Beaumont-Gaye82ab6b2012-05-04 18:34:27 +00002414 llvm_unreachable("bogus TLS model");
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002415}
2416
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002417SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002418 SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002419 EVT PtrVT = getPointerTy();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002420 SDLoc dl(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002421 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Chad Rosier537ff502013-02-28 19:16:42 +00002422 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Rafael Espindola6de96a12009-01-15 20:18:42 +00002423 bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002424 ARMConstantPoolValue *CPV =
Bill Wendling7753d662011-10-01 08:00:54 +00002425 ARMConstantPoolConstant::Create(GV,
2426 UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002427 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002428 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Bob Wilson7117a912009-03-20 22:42:55 +00002429 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +00002430 CPAddr,
Chris Lattner7727d052010-09-21 06:44:06 +00002431 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002432 false, false, false, 0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002433 SDValue Chain = Result.getValue(1);
Dale Johannesen62fd95d2009-02-07 00:55:49 +00002434 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
Dale Johannesen021052a2009-02-04 20:06:27 +00002435 Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002436 if (!UseGOTOFF)
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +00002437 Result = DAG.getLoad(PtrVT, dl, Chain, Result,
Pete Cooper82cd9e82011-11-08 18:42:53 +00002438 MachinePointerInfo::getGOT(),
2439 false, false, false, 0);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002440 return Result;
Evan Chengdfce83c2011-01-17 08:03:18 +00002441 }
2442
2443 // If we have T2 ops, we can materialize the address directly via movt/movw
James Molloydd9137a2011-10-26 08:53:19 +00002444 // pair. This is always cheaper.
2445 if (Subtarget->useMovt()) {
Evan Cheng68aec142011-01-19 02:16:49 +00002446 ++NumMovwMovt;
Evan Chengdfce83c2011-01-17 08:03:18 +00002447 // FIXME: Once remat is capable of dealing with instructions with register
2448 // operands, expand this into two nodes.
2449 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
2450 DAG.getTargetGlobalAddress(GV, dl, PtrVT));
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002451 } else {
Evan Chengdfce83c2011-01-17 08:03:18 +00002452 SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
2453 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2454 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2455 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002456 false, false, false, 0);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002457 }
2458}
2459
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002460SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002461 SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002462 EVT PtrVT = getPointerTy();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002463 SDLoc dl(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002464 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Evan Cheng10043e22007-01-19 07:51:42 +00002465 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
Evan Chengdfce83c2011-01-17 08:03:18 +00002466
Tim Northover72360d22013-12-02 10:35:41 +00002467 if (Subtarget->useMovt())
Evan Cheng68aec142011-01-19 02:16:49 +00002468 ++NumMovwMovt;
Evan Chengdfce83c2011-01-17 08:03:18 +00002469
Tim Northover72360d22013-12-02 10:35:41 +00002470 // FIXME: Once remat is capable of dealing with instructions with register
2471 // operands, expand this into multiple nodes
2472 unsigned Wrapper =
2473 RelocM == Reloc::PIC_ ? ARMISD::WrapperPIC : ARMISD::Wrapper;
Tim Northoverdb962e2c2013-11-25 16:24:52 +00002474
Tim Northover72360d22013-12-02 10:35:41 +00002475 SDValue G = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, ARMII::MO_NONLAZY);
2476 SDValue Result = DAG.getNode(Wrapper, dl, PtrVT, G);
Evan Cheng43b9ca62009-08-28 23:18:09 +00002477
Evan Cheng1b389522009-09-03 07:04:02 +00002478 if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
Tim Northover72360d22013-12-02 10:35:41 +00002479 Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
2480 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng10043e22007-01-19 07:51:42 +00002481 return Result;
2482}
2483
Saleem Abdulrasool40bca0a2014-05-09 00:58:32 +00002484SDValue ARMTargetLowering::LowerGlobalAddressWindows(SDValue Op,
2485 SelectionDAG &DAG) const {
2486 assert(Subtarget->isTargetWindows() && "non-Windows COFF is not supported");
2487 assert(Subtarget->useMovt() && "Windows on ARM expects to use movw/movt");
2488
2489 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2490 EVT PtrVT = getPointerTy();
2491 SDLoc DL(Op);
2492
2493 ++NumMovwMovt;
2494
2495 // FIXME: Once remat is capable of dealing with instructions with register
2496 // operands, expand this into two nodes.
2497 return DAG.getNode(ARMISD::Wrapper, DL, PtrVT,
2498 DAG.getTargetGlobalAddress(GV, DL, PtrVT));
2499}
2500
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002501SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002502 SelectionDAG &DAG) const {
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002503 assert(Subtarget->isTargetELF() &&
2504 "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
Evan Cheng408aa562009-11-06 22:24:13 +00002505 MachineFunction &MF = DAG.getMachineFunction();
2506 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Chengdfce83c2011-01-17 08:03:18 +00002507 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Owen Anderson53aa7a92009-08-10 22:56:29 +00002508 EVT PtrVT = getPointerTy();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002509 SDLoc dl(Op);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002510 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
Bill Wendlingc214cb02011-10-01 08:58:29 +00002511 ARMConstantPoolValue *CPV =
2512 ARMConstantPoolSymbol::Create(*DAG.getContext(), "_GLOBAL_OFFSET_TABLE_",
2513 ARMPCLabelIndex, PCAdj);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002514 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002515 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +00002516 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattner7727d052010-09-21 06:44:06 +00002517 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002518 false, false, false, 0);
Evan Cheng408aa562009-11-06 22:24:13 +00002519 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00002520 return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002521}
2522
Jim Grosbachaeca45d2009-05-12 23:59:14 +00002523SDValue
Jim Grosbachc98892f2010-05-26 20:22:18 +00002524ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002525 SDLoc dl(Op);
Jim Grosbachfaa3abb2010-05-27 23:49:24 +00002526 SDValue Val = DAG.getConstant(0, MVT::i32);
Bill Wendling7ecfbd92011-10-07 21:25:38 +00002527 return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl,
2528 DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0),
Jim Grosbachc98892f2010-05-26 20:22:18 +00002529 Op.getOperand(1), Val);
2530}
2531
2532SDValue
Jim Grosbachbd9485d2010-05-22 01:06:18 +00002533ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002534 SDLoc dl(Op);
Jim Grosbachbd9485d2010-05-22 01:06:18 +00002535 return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0),
2536 Op.getOperand(1), DAG.getConstant(0, MVT::i32));
2537}
2538
2539SDValue
Jim Grosbacha570d052010-02-08 23:22:00 +00002540ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
Jim Grosbache3864cc2010-06-16 23:45:49 +00002541 const ARMSubtarget *Subtarget) const {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002542 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002543 SDLoc dl(Op);
Lauro Ramos Venanciof6a67bf2007-11-08 17:20:05 +00002544 switch (IntNo) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002545 default: return SDValue(); // Don't custom lower most intrinsics.
Jim Grosbach07393ba2014-06-16 21:55:30 +00002546 case Intrinsic::arm_rbit: {
2547 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
2548 "RBIT intrinsic must have i32 type!");
2549 return DAG.getNode(ARMISD::RBIT, dl, MVT::i32, Op.getOperand(0));
2550 }
Bob Wilson17f88782009-08-04 00:25:01 +00002551 case Intrinsic::arm_thread_pointer: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002552 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Bob Wilson17f88782009-08-04 00:25:01 +00002553 return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2554 }
Jim Grosbach693e36a2009-08-11 00:09:57 +00002555 case Intrinsic::eh_sjlj_lsda: {
Jim Grosbach693e36a2009-08-11 00:09:57 +00002556 MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng408aa562009-11-06 22:24:13 +00002557 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Chengdfce83c2011-01-17 08:03:18 +00002558 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Jim Grosbach693e36a2009-08-11 00:09:57 +00002559 EVT PtrVT = getPointerTy();
Jim Grosbach693e36a2009-08-11 00:09:57 +00002560 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2561 SDValue CPAddr;
2562 unsigned PCAdj = (RelocM != Reloc::PIC_)
2563 ? 0 : (Subtarget->isThumb() ? 4 : 8);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002564 ARMConstantPoolValue *CPV =
Bill Wendling7753d662011-10-01 08:00:54 +00002565 ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex,
2566 ARMCP::CPLSDA, PCAdj);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002567 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002568 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002569 SDValue Result =
Evan Chengcdbb70c2009-10-31 03:39:36 +00002570 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
Chris Lattner7727d052010-09-21 06:44:06 +00002571 MachinePointerInfo::getConstantPool(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002572 false, false, false, 0);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002573
2574 if (RelocM == Reloc::PIC_) {
Evan Cheng408aa562009-11-06 22:24:13 +00002575 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002576 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2577 }
2578 return Result;
2579 }
Evan Cheng18381b42011-03-29 23:06:19 +00002580 case Intrinsic::arm_neon_vmulls:
2581 case Intrinsic::arm_neon_vmullu: {
2582 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls)
2583 ? ARMISD::VMULLs : ARMISD::VMULLu;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002584 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
Evan Cheng18381b42011-03-29 23:06:19 +00002585 Op.getOperand(1), Op.getOperand(2));
2586 }
Lauro Ramos Venanciof6a67bf2007-11-08 17:20:05 +00002587 }
2588}
2589
Eli Friedman30a49e92011-08-03 21:06:02 +00002590static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG,
2591 const ARMSubtarget *Subtarget) {
2592 // FIXME: handle "fence singlethread" more efficiently.
Andrew Trickef9de2a2013-05-25 02:42:55 +00002593 SDLoc dl(Op);
Eli Friedman26a48482011-07-27 22:21:52 +00002594 if (!Subtarget->hasDataBarrier()) {
2595 // Some ARMv6 cpus can support data barriers with an mcr instruction.
2596 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
2597 // here.
2598 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() &&
Tim Northoverc7ea8042013-10-25 09:30:24 +00002599 "Unexpected ISD::ATOMIC_FENCE encountered. Should be libcall!");
Eli Friedman30a49e92011-08-03 21:06:02 +00002600 return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0),
Eli Friedman26a48482011-07-27 22:21:52 +00002601 DAG.getConstant(0, MVT::i32));
2602 }
2603
Tim Northover36b24172013-07-03 09:20:36 +00002604 ConstantSDNode *OrdN = cast<ConstantSDNode>(Op.getOperand(1));
2605 AtomicOrdering Ord = static_cast<AtomicOrdering>(OrdN->getZExtValue());
2606 unsigned Domain = ARM_MB::ISH;
Tim Northoverf5769882013-08-28 14:39:19 +00002607 if (Subtarget->isMClass()) {
2608 // Only a full system barrier exists in the M-class architectures.
2609 Domain = ARM_MB::SY;
2610 } else if (Subtarget->isSwift() && Ord == Release) {
Tim Northover36b24172013-07-03 09:20:36 +00002611 // Swift happens to implement ISHST barriers in a way that's compatible with
2612 // Release semantics but weaker than ISH so we'd be fools not to use
2613 // it. Beware: other processors probably don't!
2614 Domain = ARM_MB::ISHST;
2615 }
2616
Joey Gouly926d3f52013-09-05 15:35:24 +00002617 return DAG.getNode(ISD::INTRINSIC_VOID, dl, MVT::Other, Op.getOperand(0),
2618 DAG.getConstant(Intrinsic::arm_dmb, MVT::i32),
Tim Northover36b24172013-07-03 09:20:36 +00002619 DAG.getConstant(Domain, MVT::i32));
Eli Friedman26a48482011-07-27 22:21:52 +00002620}
2621
Evan Cheng8740ee32010-11-03 06:34:55 +00002622static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG,
2623 const ARMSubtarget *Subtarget) {
2624 // ARM pre v5TE and Thumb1 does not have preload instructions.
2625 if (!(Subtarget->isThumb2() ||
2626 (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps())))
2627 // Just preserve the chain.
2628 return Op.getOperand(0);
2629
Andrew Trickef9de2a2013-05-25 02:42:55 +00002630 SDLoc dl(Op);
Evan Cheng21acf9f2010-11-04 05:19:35 +00002631 unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1;
2632 if (!isRead &&
2633 (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension()))
2634 // ARMv7 with MP extension has PLDW.
2635 return Op.getOperand(0);
Evan Cheng8740ee32010-11-03 06:34:55 +00002636
Bruno Cardoso Lopesdc9ff3a2011-06-14 04:58:37 +00002637 unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2638 if (Subtarget->isThumb()) {
Evan Cheng8740ee32010-11-03 06:34:55 +00002639 // Invert the bits.
Evan Cheng21acf9f2010-11-04 05:19:35 +00002640 isRead = ~isRead & 1;
Bruno Cardoso Lopesdc9ff3a2011-06-14 04:58:37 +00002641 isData = ~isData & 1;
2642 }
Evan Cheng8740ee32010-11-03 06:34:55 +00002643
2644 return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0),
Evan Cheng21acf9f2010-11-04 05:19:35 +00002645 Op.getOperand(1), DAG.getConstant(isRead, MVT::i32),
2646 DAG.getConstant(isData, MVT::i32));
Evan Cheng8740ee32010-11-03 06:34:55 +00002647}
2648
Dan Gohman31ae5862010-04-17 14:41:14 +00002649static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) {
2650 MachineFunction &MF = DAG.getMachineFunction();
2651 ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>();
2652
Evan Cheng10043e22007-01-19 07:51:42 +00002653 // vastart just stores the address of the VarArgsFrameIndex slot into the
2654 // memory location argument.
Andrew Trickef9de2a2013-05-25 02:42:55 +00002655 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00002656 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
Dan Gohman31ae5862010-04-17 14:41:14 +00002657 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00002658 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner886250c2010-09-21 18:51:21 +00002659 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2660 MachinePointerInfo(SV), false, false, 0);
Evan Cheng10043e22007-01-19 07:51:42 +00002661}
2662
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002663SDValue
Bob Wilson2e076c42009-06-22 23:27:02 +00002664ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
2665 SDValue &Root, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002666 SDLoc dl) const {
Bob Wilson2e076c42009-06-22 23:27:02 +00002667 MachineFunction &MF = DAG.getMachineFunction();
2668 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2669
Craig Topper760b1342012-02-22 05:59:10 +00002670 const TargetRegisterClass *RC;
David Goodwin22c2fba2009-07-08 23:10:31 +00002671 if (AFI->isThumb1OnlyFunction())
Craig Topperc7242e02012-04-20 07:30:17 +00002672 RC = &ARM::tGPRRegClass;
Bob Wilson2e076c42009-06-22 23:27:02 +00002673 else
Craig Topperc7242e02012-04-20 07:30:17 +00002674 RC = &ARM::GPRRegClass;
Bob Wilson2e076c42009-06-22 23:27:02 +00002675
2676 // Transform the arguments stored in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00002677 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Owen Anderson9f944592009-08-11 20:47:22 +00002678 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
Bob Wilson2e076c42009-06-22 23:27:02 +00002679
2680 SDValue ArgValue2;
2681 if (NextVA.isMemLoc()) {
Bob Wilson2e076c42009-06-22 23:27:02 +00002682 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng0664a672010-07-03 00:40:23 +00002683 int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true);
Bob Wilson2e076c42009-06-22 23:27:02 +00002684
2685 // Create load node to retrieve arguments from the stack.
2686 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Evan Chengcdbb70c2009-10-31 03:39:36 +00002687 ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN,
Chris Lattner7727d052010-09-21 06:44:06 +00002688 MachinePointerInfo::getFixedStack(FI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002689 false, false, false, 0);
Bob Wilson2e076c42009-06-22 23:27:02 +00002690 } else {
Devang Patelf3292b22011-02-21 23:21:26 +00002691 Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
Owen Anderson9f944592009-08-11 20:47:22 +00002692 ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
Bob Wilson2e076c42009-06-22 23:27:02 +00002693 }
Christian Pirkerb5728192014-05-08 14:06:24 +00002694 if (!Subtarget->isLittle())
2695 std::swap (ArgValue, ArgValue2);
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00002696 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
Bob Wilson2e076c42009-06-22 23:27:02 +00002697}
2698
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002699void
2700ARMTargetLowering::computeRegArea(CCState &CCInfo, MachineFunction &MF,
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002701 unsigned InRegsParamRecordIdx,
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002702 unsigned ArgSize,
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002703 unsigned &ArgRegsSize,
2704 unsigned &ArgRegsSaveSize)
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002705 const {
2706 unsigned NumGPRs;
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002707 if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
2708 unsigned RBegin, REnd;
2709 CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
2710 NumGPRs = REnd - RBegin;
2711 } else {
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002712 unsigned int firstUnalloced;
2713 firstUnalloced = CCInfo.getFirstUnallocated(GPRArgRegs,
2714 sizeof(GPRArgRegs) /
2715 sizeof(GPRArgRegs[0]));
2716 NumGPRs = (firstUnalloced <= 3) ? (4 - firstUnalloced) : 0;
2717 }
2718
2719 unsigned Align = MF.getTarget().getFrameLowering()->getStackAlignment();
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002720 ArgRegsSize = NumGPRs * 4;
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002721
2722 // If parameter is split between stack and GPRs...
Mark Seabornbe266aa2014-02-16 18:59:48 +00002723 if (NumGPRs && Align > 4 &&
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002724 (ArgRegsSize < ArgSize ||
2725 InRegsParamRecordIdx >= CCInfo.getInRegsParamsCount())) {
Mark Seabornbe266aa2014-02-16 18:59:48 +00002726 // Add padding for part of param recovered from GPRs. For example,
2727 // if Align == 8, its last byte must be at address K*8 - 1.
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002728 // We need to do it, since remained (stack) part of parameter has
2729 // stack alignment, and we need to "attach" "GPRs head" without gaps
2730 // to it:
2731 // Stack:
2732 // |---- 8 bytes block ----| |---- 8 bytes block ----| |---- 8 bytes...
2733 // [ [padding] [GPRs head] ] [ Tail passed via stack ....
2734 //
2735 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2736 unsigned Padding =
Mark Seabornbe266aa2014-02-16 18:59:48 +00002737 OffsetToAlignment(ArgRegsSize + AFI->getArgRegsSaveSize(), Align);
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002738 ArgRegsSaveSize = ArgRegsSize + Padding;
2739 } else
2740 // We don't need to extend regs save size for byval parameters if they
2741 // are passed via GPRs only.
2742 ArgRegsSaveSize = ArgRegsSize;
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002743}
2744
2745// The remaining GPRs hold either the beginning of variable-argument
David Peixotto4299cf82013-02-13 00:36:35 +00002746// data, or the beginning of an aggregate passed by value (usually
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002747// byval). Either way, we allocate stack slots adjacent to the data
2748// provided by our caller, and store the unallocated registers there.
2749// If this is a variadic function, the va_list pointer will begin with
2750// these values; otherwise, this reassembles a (byval) structure that
2751// was split between registers and memory.
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002752// Return: The frame index registers were stored into.
2753int
2754ARMTargetLowering::StoreByValRegs(CCState &CCInfo, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002755 SDLoc dl, SDValue &Chain,
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002756 const Value *OrigArg,
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002757 unsigned InRegsParamRecordIdx,
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002758 unsigned OffsetFromOrigArg,
2759 unsigned ArgOffset,
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002760 unsigned ArgSize,
Oliver Stannardd55e1152014-03-05 15:25:27 +00002761 bool ForceMutable,
2762 unsigned ByValStoreOffset,
2763 unsigned TotalArgRegsSaveSize) const {
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002764
2765 // Currently, two use-cases possible:
Alp Tokerf907b892013-12-05 05:44:44 +00002766 // Case #1. Non-var-args function, and we meet first byval parameter.
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002767 // Setup first unallocated register as first byval register;
2768 // eat all remained registers
2769 // (these two actions are performed by HandleByVal method).
2770 // Then, here, we initialize stack frame with
2771 // "store-reg" instructions.
2772 // Case #2. Var-args function, that doesn't contain byval parameters.
2773 // The same: eat all remained unallocated registers,
2774 // initialize stack frame.
2775
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002776 MachineFunction &MF = DAG.getMachineFunction();
2777 MachineFrameInfo *MFI = MF.getFrameInfo();
2778 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002779 unsigned firstRegToSaveIndex, lastRegToSaveIndex;
2780 unsigned RBegin, REnd;
2781 if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
2782 CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
2783 firstRegToSaveIndex = RBegin - ARM::R0;
2784 lastRegToSaveIndex = REnd - ARM::R0;
2785 } else {
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002786 firstRegToSaveIndex = CCInfo.getFirstUnallocated
Craig Topper58713212013-07-15 04:27:47 +00002787 (GPRArgRegs, array_lengthof(GPRArgRegs));
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002788 lastRegToSaveIndex = 4;
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002789 }
2790
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002791 unsigned ArgRegsSize, ArgRegsSaveSize;
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002792 computeRegArea(CCInfo, MF, InRegsParamRecordIdx, ArgSize,
2793 ArgRegsSize, ArgRegsSaveSize);
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002794
2795 // Store any by-val regs to their spots on the stack so that they may be
2796 // loaded by deferencing the result of formal parameter pointer or va_next.
2797 // Note: once stack area for byval/varargs registers
2798 // was initialized, it can't be initialized again.
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002799 if (ArgRegsSaveSize) {
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002800 unsigned Padding = ArgRegsSaveSize - ArgRegsSize;
2801
2802 if (Padding) {
2803 assert(AFI->getStoredByValParamsPadding() == 0 &&
2804 "The only parameter may be padded.");
2805 AFI->setStoredByValParamsPadding(Padding);
2806 }
2807
Oliver Stannardd55e1152014-03-05 15:25:27 +00002808 int FrameIndex = MFI->CreateFixedObject(ArgRegsSaveSize,
2809 Padding +
2810 ByValStoreOffset -
2811 (int64_t)TotalArgRegsSaveSize,
2812 false);
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002813 SDValue FIN = DAG.getFrameIndex(FrameIndex, getPointerTy());
Oliver Stannardd55e1152014-03-05 15:25:27 +00002814 if (Padding) {
2815 MFI->CreateFixedObject(Padding,
2816 ArgOffset + ByValStoreOffset -
2817 (int64_t)ArgRegsSaveSize,
2818 false);
2819 }
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002820
2821 SmallVector<SDValue, 4> MemOps;
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002822 for (unsigned i = 0; firstRegToSaveIndex < lastRegToSaveIndex;
2823 ++firstRegToSaveIndex, ++i) {
Craig Topper760b1342012-02-22 05:59:10 +00002824 const TargetRegisterClass *RC;
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002825 if (AFI->isThumb1OnlyFunction())
Craig Topperc7242e02012-04-20 07:30:17 +00002826 RC = &ARM::tGPRRegClass;
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002827 else
Craig Topperc7242e02012-04-20 07:30:17 +00002828 RC = &ARM::GPRRegClass;
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002829
2830 unsigned VReg = MF.addLiveIn(GPRArgRegs[firstRegToSaveIndex], RC);
2831 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
2832 SDValue Store =
2833 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Stepan Dyatkovskiyf13dbb82012-10-10 11:37:36 +00002834 MachinePointerInfo(OrigArg, OffsetFromOrigArg + 4*i),
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002835 false, false, 0);
2836 MemOps.push_back(Store);
2837 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
2838 DAG.getConstant(4, getPointerTy()));
2839 }
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002840
2841 AFI->setArgRegsSaveSize(ArgRegsSaveSize + AFI->getArgRegsSaveSize());
2842
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002843 if (!MemOps.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00002844 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002845 return FrameIndex;
Oliver Stannardd55e1152014-03-05 15:25:27 +00002846 } else {
2847 if (ArgSize == 0) {
2848 // We cannot allocate a zero-byte object for the first variadic argument,
2849 // so just make up a size.
2850 ArgSize = 4;
2851 }
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002852 // This will point to the next argument passed via stack.
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00002853 return MFI->CreateFixedObject(
Oliver Stannardd55e1152014-03-05 15:25:27 +00002854 ArgSize, ArgOffset, !ForceMutable);
2855 }
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002856}
2857
2858// Setup stack frame, the va_list pointer will start from.
2859void
2860ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002861 SDLoc dl, SDValue &Chain,
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002862 unsigned ArgOffset,
Oliver Stannardd55e1152014-03-05 15:25:27 +00002863 unsigned TotalArgRegsSaveSize,
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002864 bool ForceMutable) const {
2865 MachineFunction &MF = DAG.getMachineFunction();
2866 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2867
2868 // Try to store any remaining integer argument regs
2869 // to their spots on the stack so that they may be loaded by deferencing
2870 // the result of va_next.
2871 // If there is no regs to be stored, just point address after last
2872 // argument passed via stack.
2873 int FrameIndex =
Craig Topper062a2ba2014-04-25 05:30:21 +00002874 StoreByValRegs(CCInfo, DAG, dl, Chain, nullptr,
2875 CCInfo.getInRegsParamsCount(), 0, ArgOffset, 0, ForceMutable,
2876 0, TotalArgRegsSaveSize);
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002877
2878 AFI->setVarArgsFrameIndex(FrameIndex);
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002879}
2880
Bob Wilson2e076c42009-06-22 23:27:02 +00002881SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002882ARMTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002883 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002884 const SmallVectorImpl<ISD::InputArg>
2885 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002886 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002887 SmallVectorImpl<SDValue> &InVals)
2888 const {
Bob Wilsona4c22902009-04-17 19:07:39 +00002889 MachineFunction &MF = DAG.getMachineFunction();
2890 MachineFrameInfo *MFI = MF.getFrameInfo();
2891
Bob Wilsona4c22902009-04-17 19:07:39 +00002892 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2893
2894 // Assign locations to all of the incoming arguments.
2895 SmallVector<CCValAssign, 16> ArgLocs;
Cameron Zwarich89019782011-06-10 20:59:24 +00002896 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2897 getTargetMachine(), ArgLocs, *DAG.getContext(), Prologue);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002898 CCInfo.AnalyzeFormalArguments(Ins,
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00002899 CCAssignFnForNode(CallConv, /* Return*/ false,
2900 isVarArg));
Jim Grosbach54efea02013-03-02 20:16:15 +00002901
Bob Wilsona4c22902009-04-17 19:07:39 +00002902 SmallVector<SDValue, 16> ArgValues;
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00002903 int lastInsIndex = -1;
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00002904 SDValue ArgValue;
Stepan Dyatkovskiyf13dbb82012-10-10 11:37:36 +00002905 Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
2906 unsigned CurArgIdx = 0;
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00002907
2908 // Initially ArgRegsSaveSize is zero.
2909 // Then we increase this value each time we meet byval parameter.
2910 // We also increase this value in case of varargs function.
2911 AFI->setArgRegsSaveSize(0);
2912
Oliver Stannardd55e1152014-03-05 15:25:27 +00002913 unsigned ByValStoreOffset = 0;
2914 unsigned TotalArgRegsSaveSize = 0;
2915 unsigned ArgRegsSaveSizeMaxAlign = 4;
2916
2917 // Calculate the amount of stack space that we need to allocate to store
2918 // byval and variadic arguments that are passed in registers.
2919 // We need to know this before we allocate the first byval or variadic
2920 // argument, as they will be allocated a stack slot below the CFA (Canonical
2921 // Frame Address, the stack pointer at entry to the function).
2922 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2923 CCValAssign &VA = ArgLocs[i];
2924 if (VA.isMemLoc()) {
2925 int index = VA.getValNo();
2926 if (index != lastInsIndex) {
2927 ISD::ArgFlagsTy Flags = Ins[index].Flags;
2928 if (Flags.isByVal()) {
2929 unsigned ExtraArgRegsSize;
2930 unsigned ExtraArgRegsSaveSize;
2931 computeRegArea(CCInfo, MF, CCInfo.getInRegsParamsProceed(),
2932 Flags.getByValSize(),
2933 ExtraArgRegsSize, ExtraArgRegsSaveSize);
2934
2935 TotalArgRegsSaveSize += ExtraArgRegsSaveSize;
2936 if (Flags.getByValAlign() > ArgRegsSaveSizeMaxAlign)
2937 ArgRegsSaveSizeMaxAlign = Flags.getByValAlign();
2938 CCInfo.nextInRegsParam();
2939 }
2940 lastInsIndex = index;
2941 }
2942 }
2943 }
2944 CCInfo.rewindByValRegsInfo();
2945 lastInsIndex = -1;
2946 if (isVarArg) {
2947 unsigned ExtraArgRegsSize;
2948 unsigned ExtraArgRegsSaveSize;
2949 computeRegArea(CCInfo, MF, CCInfo.getInRegsParamsCount(), 0,
2950 ExtraArgRegsSize, ExtraArgRegsSaveSize);
2951 TotalArgRegsSaveSize += ExtraArgRegsSaveSize;
2952 }
2953 // If the arg regs save area contains N-byte aligned values, the
2954 // bottom of it must be at least N-byte aligned.
2955 TotalArgRegsSaveSize = RoundUpToAlignment(TotalArgRegsSaveSize, ArgRegsSaveSizeMaxAlign);
2956 TotalArgRegsSaveSize = std::min(TotalArgRegsSaveSize, 16U);
2957
Bob Wilsona4c22902009-04-17 19:07:39 +00002958 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2959 CCValAssign &VA = ArgLocs[i];
Stepan Dyatkovskiyf13dbb82012-10-10 11:37:36 +00002960 std::advance(CurOrigArg, Ins[VA.getValNo()].OrigArgIndex - CurArgIdx);
2961 CurArgIdx = Ins[VA.getValNo()].OrigArgIndex;
Bob Wilsonea09d4a2009-04-17 20:35:10 +00002962 // Arguments stored in registers.
Bob Wilsona4c22902009-04-17 19:07:39 +00002963 if (VA.isRegLoc()) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002964 EVT RegVT = VA.getLocVT();
Bob Wilsona4c22902009-04-17 19:07:39 +00002965
Bob Wilsona4c22902009-04-17 19:07:39 +00002966 if (VA.needsCustom()) {
Bob Wilson2e076c42009-06-22 23:27:02 +00002967 // f64 and vector types are split up into multiple registers or
2968 // combinations of registers and stack slots.
Owen Anderson9f944592009-08-11 20:47:22 +00002969 if (VA.getLocVT() == MVT::v2f64) {
Bob Wilson2e076c42009-06-22 23:27:02 +00002970 SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002971 Chain, DAG, dl);
Bob Wilson2e076c42009-06-22 23:27:02 +00002972 VA = ArgLocs[++i]; // skip ahead to next loc
Bob Wilson699bdf72010-04-13 22:03:22 +00002973 SDValue ArgValue2;
2974 if (VA.isMemLoc()) {
Evan Cheng0664a672010-07-03 00:40:23 +00002975 int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true);
Bob Wilson699bdf72010-04-13 22:03:22 +00002976 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2977 ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN,
Chris Lattner7727d052010-09-21 06:44:06 +00002978 MachinePointerInfo::getFixedStack(FI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002979 false, false, false, 0);
Bob Wilson699bdf72010-04-13 22:03:22 +00002980 } else {
2981 ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
2982 Chain, DAG, dl);
2983 }
Owen Anderson9f944592009-08-11 20:47:22 +00002984 ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
2985 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
Bob Wilson2e076c42009-06-22 23:27:02 +00002986 ArgValue, ArgValue1, DAG.getIntPtrConstant(0));
Owen Anderson9f944592009-08-11 20:47:22 +00002987 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
Bob Wilson2e076c42009-06-22 23:27:02 +00002988 ArgValue, ArgValue2, DAG.getIntPtrConstant(1));
2989 } else
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002990 ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
Bob Wilsona4c22902009-04-17 19:07:39 +00002991
Bob Wilson2e076c42009-06-22 23:27:02 +00002992 } else {
Craig Topper760b1342012-02-22 05:59:10 +00002993 const TargetRegisterClass *RC;
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00002994
Owen Anderson9f944592009-08-11 20:47:22 +00002995 if (RegVT == MVT::f32)
Craig Topperc7242e02012-04-20 07:30:17 +00002996 RC = &ARM::SPRRegClass;
Owen Anderson9f944592009-08-11 20:47:22 +00002997 else if (RegVT == MVT::f64)
Craig Topperc7242e02012-04-20 07:30:17 +00002998 RC = &ARM::DPRRegClass;
Owen Anderson9f944592009-08-11 20:47:22 +00002999 else if (RegVT == MVT::v2f64)
Craig Topperc7242e02012-04-20 07:30:17 +00003000 RC = &ARM::QPRRegClass;
Owen Anderson9f944592009-08-11 20:47:22 +00003001 else if (RegVT == MVT::i32)
Craig Topperc7242e02012-04-20 07:30:17 +00003002 RC = AFI->isThumb1OnlyFunction() ?
3003 (const TargetRegisterClass*)&ARM::tGPRRegClass :
3004 (const TargetRegisterClass*)&ARM::GPRRegClass;
Bob Wilson2e076c42009-06-22 23:27:02 +00003005 else
Anton Korobeynikovef98dbe2009-08-05 20:15:19 +00003006 llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
Bob Wilson2e076c42009-06-22 23:27:02 +00003007
3008 // Transform the arguments in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00003009 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003010 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Bob Wilsona4c22902009-04-17 19:07:39 +00003011 }
3012
3013 // If this is an 8 or 16-bit value, it is really passed promoted
3014 // to 32 bits. Insert an assert[sz]ext to capture this, then
3015 // truncate to the right size.
3016 switch (VA.getLocInfo()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003017 default: llvm_unreachable("Unknown loc info!");
Bob Wilsona4c22902009-04-17 19:07:39 +00003018 case CCValAssign::Full: break;
3019 case CCValAssign::BCvt:
Wesley Peck527da1b2010-11-23 03:31:01 +00003020 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Bob Wilsona4c22902009-04-17 19:07:39 +00003021 break;
3022 case CCValAssign::SExt:
3023 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
3024 DAG.getValueType(VA.getValVT()));
3025 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3026 break;
3027 case CCValAssign::ZExt:
3028 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
3029 DAG.getValueType(VA.getValVT()));
3030 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3031 break;
3032 }
3033
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003034 InVals.push_back(ArgValue);
Bob Wilsona4c22902009-04-17 19:07:39 +00003035
3036 } else { // VA.isRegLoc()
3037
3038 // sanity check
3039 assert(VA.isMemLoc());
Owen Anderson9f944592009-08-11 20:47:22 +00003040 assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
Bob Wilsona4c22902009-04-17 19:07:39 +00003041
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003042 int index = ArgLocs[i].getValNo();
Owen Anderson77aa2662011-04-05 21:48:57 +00003043
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003044 // Some Ins[] entries become multiple ArgLoc[] entries.
3045 // Process them only once.
3046 if (index != lastInsIndex)
3047 {
3048 ISD::ArgFlagsTy Flags = Ins[index].Flags;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003049 // FIXME: For now, all byval parameter objects are marked mutable.
Eric Christophere02e07c2011-04-29 23:12:01 +00003050 // This can be changed with more analysis.
3051 // In case of tail call optimization mark all arguments mutable.
3052 // Since they could be overwritten by lowering of arguments in case of
3053 // a tail call.
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003054 if (Flags.isByVal()) {
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00003055 unsigned CurByValIndex = CCInfo.getInRegsParamsProceed();
Oliver Stannardd55e1152014-03-05 15:25:27 +00003056
3057 ByValStoreOffset = RoundUpToAlignment(ByValStoreOffset, Flags.getByValAlign());
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003058 int FrameIndex = StoreByValRegs(
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00003059 CCInfo, DAG, dl, Chain, CurOrigArg,
3060 CurByValIndex,
3061 Ins[VA.getValNo()].PartOffset,
3062 VA.getLocMemOffset(),
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00003063 Flags.getByValSize(),
Oliver Stannardd55e1152014-03-05 15:25:27 +00003064 true /*force mutable frames*/,
3065 ByValStoreOffset,
3066 TotalArgRegsSaveSize);
3067 ByValStoreOffset += Flags.getByValSize();
3068 ByValStoreOffset = std::min(ByValStoreOffset, 16U);
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003069 InVals.push_back(DAG.getFrameIndex(FrameIndex, getPointerTy()));
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00003070 CCInfo.nextInRegsParam();
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003071 } else {
Oliver Stannardd55e1152014-03-05 15:25:27 +00003072 unsigned FIOffset = VA.getLocMemOffset();
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003073 int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00003074 FIOffset, true);
Bob Wilsona4c22902009-04-17 19:07:39 +00003075
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003076 // Create load nodes to retrieve arguments from the stack.
3077 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
3078 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
3079 MachinePointerInfo::getFixedStack(FI),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003080 false, false, false, 0));
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003081 }
3082 lastInsIndex = index;
3083 }
Bob Wilsona4c22902009-04-17 19:07:39 +00003084 }
3085 }
3086
3087 // varargs
Stuart Hastings45fe3c32011-04-20 16:47:52 +00003088 if (isVarArg)
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003089 VarArgStyleRegisters(CCInfo, DAG, dl, Chain,
Oliver Stannardd55e1152014-03-05 15:25:27 +00003090 CCInfo.getNextStackOffset(),
3091 TotalArgRegsSaveSize);
Evan Cheng10043e22007-01-19 07:51:42 +00003092
Oliver Stannardb14c6252014-04-02 16:10:33 +00003093 AFI->setArgumentStackSize(CCInfo.getNextStackOffset());
3094
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003095 return Chain;
Evan Cheng10043e22007-01-19 07:51:42 +00003096}
3097
3098/// isFloatingPointZero - Return true if this is +0.0.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003099static bool isFloatingPointZero(SDValue Op) {
Evan Cheng10043e22007-01-19 07:51:42 +00003100 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johannesen3cf889f2007-08-31 04:03:46 +00003101 return CFP->getValueAPF().isPosZero();
Gabor Greiff304a7a2008-08-28 21:40:38 +00003102 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Evan Cheng10043e22007-01-19 07:51:42 +00003103 // Maybe this has already been legalized into the constant pool?
3104 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003105 SDValue WrapperOp = Op.getOperand(1).getOperand(0);
Evan Cheng10043e22007-01-19 07:51:42 +00003106 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
Dan Gohmanbcaf6812010-04-15 01:51:59 +00003107 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johannesen3cf889f2007-08-31 04:03:46 +00003108 return CFP->getValueAPF().isPosZero();
Evan Cheng10043e22007-01-19 07:51:42 +00003109 }
3110 }
3111 return false;
3112}
3113
Evan Cheng10043e22007-01-19 07:51:42 +00003114/// Returns appropriate ARM CMP (cmp) and corresponding condition code for
3115/// the given operands.
Evan Cheng15b80e42009-11-12 07:13:11 +00003116SDValue
3117ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003118 SDValue &ARMcc, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003119 SDLoc dl) const {
Gabor Greiff304a7a2008-08-28 21:40:38 +00003120 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00003121 unsigned C = RHSC->getZExtValue();
Evan Cheng15b80e42009-11-12 07:13:11 +00003122 if (!isLegalICmpImmediate(C)) {
Evan Cheng10043e22007-01-19 07:51:42 +00003123 // Constant does not fit, try adjusting it by one?
3124 switch (CC) {
3125 default: break;
3126 case ISD::SETLT:
Evan Cheng10043e22007-01-19 07:51:42 +00003127 case ISD::SETGE:
Daniel Dunbara54a1b02010-08-25 16:58:05 +00003128 if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
Evan Cheng48b094d2007-02-02 01:53:26 +00003129 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
Owen Anderson9f944592009-08-11 20:47:22 +00003130 RHS = DAG.getConstant(C-1, MVT::i32);
Evan Cheng48b094d2007-02-02 01:53:26 +00003131 }
3132 break;
3133 case ISD::SETULT:
3134 case ISD::SETUGE:
Daniel Dunbara54a1b02010-08-25 16:58:05 +00003135 if (C != 0 && isLegalICmpImmediate(C-1)) {
Evan Cheng48b094d2007-02-02 01:53:26 +00003136 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
Owen Anderson9f944592009-08-11 20:47:22 +00003137 RHS = DAG.getConstant(C-1, MVT::i32);
Evan Cheng10043e22007-01-19 07:51:42 +00003138 }
3139 break;
3140 case ISD::SETLE:
Evan Cheng10043e22007-01-19 07:51:42 +00003141 case ISD::SETGT:
Daniel Dunbara54a1b02010-08-25 16:58:05 +00003142 if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
Evan Cheng48b094d2007-02-02 01:53:26 +00003143 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
Owen Anderson9f944592009-08-11 20:47:22 +00003144 RHS = DAG.getConstant(C+1, MVT::i32);
Evan Cheng48b094d2007-02-02 01:53:26 +00003145 }
3146 break;
3147 case ISD::SETULE:
3148 case ISD::SETUGT:
Daniel Dunbara54a1b02010-08-25 16:58:05 +00003149 if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
Evan Cheng48b094d2007-02-02 01:53:26 +00003150 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
Owen Anderson9f944592009-08-11 20:47:22 +00003151 RHS = DAG.getConstant(C+1, MVT::i32);
Evan Cheng10043e22007-01-19 07:51:42 +00003152 }
3153 break;
3154 }
3155 }
3156 }
3157
3158 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
Lauro Ramos Venancio6be85332007-04-02 01:30:03 +00003159 ARMISD::NodeType CompareType;
3160 switch (CondCode) {
3161 default:
3162 CompareType = ARMISD::CMP;
3163 break;
3164 case ARMCC::EQ:
3165 case ARMCC::NE:
David Goodwindbf11ba2009-06-29 15:33:01 +00003166 // Uses only Z Flag
3167 CompareType = ARMISD::CMPZ;
Lauro Ramos Venancio6be85332007-04-02 01:30:03 +00003168 break;
3169 }
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003170 ARMcc = DAG.getConstant(CondCode, MVT::i32);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003171 return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS);
Evan Cheng10043e22007-01-19 07:51:42 +00003172}
3173
3174/// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
Evan Cheng25f93642010-07-08 02:08:50 +00003175SDValue
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003176ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003177 SDLoc dl) const {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003178 SDValue Cmp;
Evan Cheng10043e22007-01-19 07:51:42 +00003179 if (!isFloatingPointZero(RHS))
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003180 Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS);
Evan Cheng10043e22007-01-19 07:51:42 +00003181 else
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003182 Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS);
3183 return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp);
Evan Cheng10043e22007-01-19 07:51:42 +00003184}
3185
Bob Wilson45acbd02011-03-08 01:17:20 +00003186/// duplicateCmp - Glue values can have only one use, so this function
3187/// duplicates a comparison node.
3188SDValue
3189ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const {
3190 unsigned Opc = Cmp.getOpcode();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003191 SDLoc DL(Cmp);
Bob Wilson45acbd02011-03-08 01:17:20 +00003192 if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ)
3193 return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3194
3195 assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation");
3196 Cmp = Cmp.getOperand(0);
3197 Opc = Cmp.getOpcode();
3198 if (Opc == ARMISD::CMPFP)
3199 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3200 else {
3201 assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT");
3202 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0));
3203 }
3204 return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp);
3205}
3206
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003207std::pair<SDValue, SDValue>
3208ARMTargetLowering::getARMXALUOOp(SDValue Op, SelectionDAG &DAG,
3209 SDValue &ARMcc) const {
3210 assert(Op.getValueType() == MVT::i32 && "Unsupported value type");
3211
3212 SDValue Value, OverflowCmp;
3213 SDValue LHS = Op.getOperand(0);
3214 SDValue RHS = Op.getOperand(1);
3215
3216
3217 // FIXME: We are currently always generating CMPs because we don't support
3218 // generating CMN through the backend. This is not as good as the natural
3219 // CMP case because it causes a register dependency and cannot be folded
3220 // later.
3221
3222 switch (Op.getOpcode()) {
3223 default:
3224 llvm_unreachable("Unknown overflow instruction!");
3225 case ISD::SADDO:
3226 ARMcc = DAG.getConstant(ARMCC::VC, MVT::i32);
3227 Value = DAG.getNode(ISD::ADD, SDLoc(Op), Op.getValueType(), LHS, RHS);
3228 OverflowCmp = DAG.getNode(ARMISD::CMP, SDLoc(Op), MVT::Glue, Value, LHS);
3229 break;
3230 case ISD::UADDO:
3231 ARMcc = DAG.getConstant(ARMCC::HS, MVT::i32);
3232 Value = DAG.getNode(ISD::ADD, SDLoc(Op), Op.getValueType(), LHS, RHS);
3233 OverflowCmp = DAG.getNode(ARMISD::CMP, SDLoc(Op), MVT::Glue, Value, LHS);
3234 break;
3235 case ISD::SSUBO:
3236 ARMcc = DAG.getConstant(ARMCC::VC, MVT::i32);
3237 Value = DAG.getNode(ISD::SUB, SDLoc(Op), Op.getValueType(), LHS, RHS);
3238 OverflowCmp = DAG.getNode(ARMISD::CMP, SDLoc(Op), MVT::Glue, LHS, RHS);
3239 break;
3240 case ISD::USUBO:
3241 ARMcc = DAG.getConstant(ARMCC::HS, MVT::i32);
3242 Value = DAG.getNode(ISD::SUB, SDLoc(Op), Op.getValueType(), LHS, RHS);
3243 OverflowCmp = DAG.getNode(ARMISD::CMP, SDLoc(Op), MVT::Glue, LHS, RHS);
3244 break;
3245 } // switch (...)
3246
3247 return std::make_pair(Value, OverflowCmp);
3248}
3249
3250
3251SDValue
3252ARMTargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
3253 // Let legalize expand this if it isn't a legal type yet.
3254 if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
3255 return SDValue();
3256
3257 SDValue Value, OverflowCmp;
3258 SDValue ARMcc;
3259 std::tie(Value, OverflowCmp) = getARMXALUOOp(Op, DAG, ARMcc);
3260 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3261 // We use 0 and 1 as false and true values.
3262 SDValue TVal = DAG.getConstant(1, MVT::i32);
3263 SDValue FVal = DAG.getConstant(0, MVT::i32);
3264 EVT VT = Op.getValueType();
3265
3266 SDValue Overflow = DAG.getNode(ARMISD::CMOV, SDLoc(Op), VT, TVal, FVal,
3267 ARMcc, CCR, OverflowCmp);
3268
3269 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
3270 return DAG.getNode(ISD::MERGE_VALUES, SDLoc(Op), VTs, Value, Overflow);
3271}
3272
3273
Bill Wendling6a981312010-08-11 08:43:16 +00003274SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
3275 SDValue Cond = Op.getOperand(0);
3276 SDValue SelectTrue = Op.getOperand(1);
3277 SDValue SelectFalse = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003278 SDLoc dl(Op);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003279 unsigned Opc = Cond.getOpcode();
3280
3281 if (Cond.getResNo() == 1 &&
3282 (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
3283 Opc == ISD::USUBO)) {
3284 if (!DAG.getTargetLoweringInfo().isTypeLegal(Cond->getValueType(0)))
3285 return SDValue();
3286
3287 SDValue Value, OverflowCmp;
3288 SDValue ARMcc;
3289 std::tie(Value, OverflowCmp) = getARMXALUOOp(Cond, DAG, ARMcc);
3290 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3291 EVT VT = Op.getValueType();
3292
3293 return DAG.getNode(ARMISD::CMOV, SDLoc(Op), VT, SelectTrue, SelectFalse,
3294 ARMcc, CCR, OverflowCmp);
3295
3296 }
Bill Wendling6a981312010-08-11 08:43:16 +00003297
3298 // Convert:
3299 //
3300 // (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond)
3301 // (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond)
3302 //
3303 if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) {
3304 const ConstantSDNode *CMOVTrue =
3305 dyn_cast<ConstantSDNode>(Cond.getOperand(0));
3306 const ConstantSDNode *CMOVFalse =
3307 dyn_cast<ConstantSDNode>(Cond.getOperand(1));
3308
3309 if (CMOVTrue && CMOVFalse) {
3310 unsigned CMOVTrueVal = CMOVTrue->getZExtValue();
3311 unsigned CMOVFalseVal = CMOVFalse->getZExtValue();
3312
3313 SDValue True;
3314 SDValue False;
3315 if (CMOVTrueVal == 1 && CMOVFalseVal == 0) {
3316 True = SelectTrue;
3317 False = SelectFalse;
3318 } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) {
3319 True = SelectFalse;
3320 False = SelectTrue;
3321 }
3322
3323 if (True.getNode() && False.getNode()) {
Evan Cheng522fbfe2011-05-18 18:59:17 +00003324 EVT VT = Op.getValueType();
Bill Wendling6a981312010-08-11 08:43:16 +00003325 SDValue ARMcc = Cond.getOperand(2);
3326 SDValue CCR = Cond.getOperand(3);
Bob Wilson45acbd02011-03-08 01:17:20 +00003327 SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG);
Evan Cheng522fbfe2011-05-18 18:59:17 +00003328 assert(True.getValueType() == VT);
3329 return DAG.getNode(ARMISD::CMOV, dl, VT, True, False, ARMcc, CCR, Cmp);
Bill Wendling6a981312010-08-11 08:43:16 +00003330 }
3331 }
3332 }
3333
Dan Gohmand4a77c42012-02-24 00:09:36 +00003334 // ARM's BooleanContents value is UndefinedBooleanContent. Mask out the
3335 // undefined bits before doing a full-word comparison with zero.
3336 Cond = DAG.getNode(ISD::AND, dl, Cond.getValueType(), Cond,
3337 DAG.getConstant(1, Cond.getValueType()));
3338
Bill Wendling6a981312010-08-11 08:43:16 +00003339 return DAG.getSelectCC(dl, Cond,
3340 DAG.getConstant(0, Cond.getValueType()),
3341 SelectTrue, SelectFalse, ISD::SETNE);
3342}
3343
Joey Gouly881eab52013-08-22 15:29:11 +00003344static ISD::CondCode getInverseCCForVSEL(ISD::CondCode CC) {
3345 if (CC == ISD::SETNE)
3346 return ISD::SETEQ;
Weiming Zhao63871d22013-12-18 22:25:17 +00003347 return ISD::getSetCCInverse(CC, true);
Joey Gouly881eab52013-08-22 15:29:11 +00003348}
3349
3350static void checkVSELConstraints(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
3351 bool &swpCmpOps, bool &swpVselOps) {
3352 // Start by selecting the GE condition code for opcodes that return true for
3353 // 'equality'
3354 if (CC == ISD::SETUGE || CC == ISD::SETOGE || CC == ISD::SETOLE ||
3355 CC == ISD::SETULE)
3356 CondCode = ARMCC::GE;
3357
3358 // and GT for opcodes that return false for 'equality'.
3359 else if (CC == ISD::SETUGT || CC == ISD::SETOGT || CC == ISD::SETOLT ||
3360 CC == ISD::SETULT)
3361 CondCode = ARMCC::GT;
3362
3363 // Since we are constrained to GE/GT, if the opcode contains 'less', we need
3364 // to swap the compare operands.
3365 if (CC == ISD::SETOLE || CC == ISD::SETULE || CC == ISD::SETOLT ||
3366 CC == ISD::SETULT)
3367 swpCmpOps = true;
3368
3369 // Both GT and GE are ordered comparisons, and return false for 'unordered'.
3370 // If we have an unordered opcode, we need to swap the operands to the VSEL
3371 // instruction (effectively negating the condition).
3372 //
3373 // This also has the effect of swapping which one of 'less' or 'greater'
3374 // returns true, so we also swap the compare operands. It also switches
3375 // whether we return true for 'equality', so we compensate by picking the
3376 // opposite condition code to our original choice.
3377 if (CC == ISD::SETULE || CC == ISD::SETULT || CC == ISD::SETUGE ||
3378 CC == ISD::SETUGT) {
3379 swpCmpOps = !swpCmpOps;
3380 swpVselOps = !swpVselOps;
3381 CondCode = CondCode == ARMCC::GT ? ARMCC::GE : ARMCC::GT;
3382 }
3383
3384 // 'ordered' is 'anything but unordered', so use the VS condition code and
3385 // swap the VSEL operands.
3386 if (CC == ISD::SETO) {
3387 CondCode = ARMCC::VS;
3388 swpVselOps = true;
3389 }
3390
3391 // 'unordered or not equal' is 'anything but equal', so use the EQ condition
3392 // code and swap the VSEL operands.
3393 if (CC == ISD::SETUNE) {
3394 CondCode = ARMCC::EQ;
3395 swpVselOps = true;
3396 }
3397}
3398
Dan Gohman21cea8a2010-04-17 15:26:15 +00003399SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003400 EVT VT = Op.getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003401 SDValue LHS = Op.getOperand(0);
3402 SDValue RHS = Op.getOperand(1);
Evan Cheng10043e22007-01-19 07:51:42 +00003403 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003404 SDValue TrueVal = Op.getOperand(2);
3405 SDValue FalseVal = Op.getOperand(3);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003406 SDLoc dl(Op);
Evan Cheng10043e22007-01-19 07:51:42 +00003407
Owen Anderson9f944592009-08-11 20:47:22 +00003408 if (LHS.getValueType() == MVT::i32) {
Joey Gouly881eab52013-08-22 15:29:11 +00003409 // Try to generate VSEL on ARMv8.
3410 // The VSEL instruction can't use all the usual ARM condition
3411 // codes: it only has two bits to select the condition code, so it's
3412 // constrained to use only GE, GT, VS and EQ.
3413 //
3414 // To implement all the various ISD::SETXXX opcodes, we sometimes need to
3415 // swap the operands of the previous compare instruction (effectively
3416 // inverting the compare condition, swapping 'less' and 'greater') and
3417 // sometimes need to swap the operands to the VSEL (which inverts the
3418 // condition in the sense of firing whenever the previous condition didn't)
Joey Goulyccd04892013-09-13 13:46:57 +00003419 if (getSubtarget()->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
Joey Gouly881eab52013-08-22 15:29:11 +00003420 TrueVal.getValueType() == MVT::f64)) {
3421 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3422 if (CondCode == ARMCC::LT || CondCode == ARMCC::LE ||
3423 CondCode == ARMCC::VC || CondCode == ARMCC::NE) {
3424 CC = getInverseCCForVSEL(CC);
3425 std::swap(TrueVal, FalseVal);
3426 }
3427 }
3428
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003429 SDValue ARMcc;
Owen Anderson9f944592009-08-11 20:47:22 +00003430 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003431 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
Joey Gouly881eab52013-08-22 15:29:11 +00003432 return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,
3433 Cmp);
Evan Cheng10043e22007-01-19 07:51:42 +00003434 }
3435
3436 ARMCC::CondCodes CondCode, CondCode2;
Bob Wilsona2e83332009-09-09 23:14:54 +00003437 FPCCToARMCC(CC, CondCode, CondCode2);
Evan Cheng10043e22007-01-19 07:51:42 +00003438
Joey Gouly881eab52013-08-22 15:29:11 +00003439 // Try to generate VSEL on ARMv8.
Joey Goulyccd04892013-09-13 13:46:57 +00003440 if (getSubtarget()->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
Joey Gouly881eab52013-08-22 15:29:11 +00003441 TrueVal.getValueType() == MVT::f64)) {
Joey Goulye3dd6842013-08-23 12:01:13 +00003442 // We can select VMAXNM/VMINNM from a compare followed by a select with the
3443 // same operands, as follows:
3444 // c = fcmp [ogt, olt, ugt, ult] a, b
3445 // select c, a, b
3446 // We only do this in unsafe-fp-math, because signed zeros and NaNs are
3447 // handled differently than the original code sequence.
3448 if (getTargetMachine().Options.UnsafeFPMath && LHS == TrueVal &&
3449 RHS == FalseVal) {
3450 if (CC == ISD::SETOGT || CC == ISD::SETUGT)
3451 return DAG.getNode(ARMISD::VMAXNM, dl, VT, TrueVal, FalseVal);
3452 if (CC == ISD::SETOLT || CC == ISD::SETULT)
3453 return DAG.getNode(ARMISD::VMINNM, dl, VT, TrueVal, FalseVal);
3454 }
3455
Joey Gouly881eab52013-08-22 15:29:11 +00003456 bool swpCmpOps = false;
3457 bool swpVselOps = false;
3458 checkVSELConstraints(CC, CondCode, swpCmpOps, swpVselOps);
3459
3460 if (CondCode == ARMCC::GT || CondCode == ARMCC::GE ||
3461 CondCode == ARMCC::VS || CondCode == ARMCC::EQ) {
3462 if (swpCmpOps)
3463 std::swap(LHS, RHS);
3464 if (swpVselOps)
3465 std::swap(TrueVal, FalseVal);
3466 }
3467 }
3468
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003469 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
3470 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00003471 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Dale Johannesen400dc2e2009-02-06 21:50:26 +00003472 SDValue Result = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003473 ARMcc, CCR, Cmp);
Evan Cheng10043e22007-01-19 07:51:42 +00003474 if (CondCode2 != ARMCC::AL) {
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003475 SDValue ARMcc2 = DAG.getConstant(CondCode2, MVT::i32);
Evan Cheng10043e22007-01-19 07:51:42 +00003476 // FIXME: Needs another CMP because flag can have but one use.
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003477 SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
Bob Wilson7117a912009-03-20 22:42:55 +00003478 Result = DAG.getNode(ARMISD::CMOV, dl, VT,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003479 Result, TrueVal, ARMcc2, CCR, Cmp2);
Evan Cheng10043e22007-01-19 07:51:42 +00003480 }
3481 return Result;
3482}
3483
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003484/// canChangeToInt - Given the fp compare operand, return true if it is suitable
3485/// to morph to an integer compare sequence.
3486static bool canChangeToInt(SDValue Op, bool &SeenZero,
3487 const ARMSubtarget *Subtarget) {
3488 SDNode *N = Op.getNode();
3489 if (!N->hasOneUse())
3490 // Otherwise it requires moving the value from fp to integer registers.
3491 return false;
3492 if (!N->getNumValues())
3493 return false;
3494 EVT VT = Op.getValueType();
3495 if (VT != MVT::f32 && !Subtarget->isFPBrccSlow())
3496 // f32 case is generally profitable. f64 case only makes sense when vcmpe +
3497 // vmrs are very slow, e.g. cortex-a8.
3498 return false;
3499
3500 if (isFloatingPointZero(Op)) {
3501 SeenZero = true;
3502 return true;
3503 }
3504 return ISD::isNormalLoad(N);
3505}
3506
3507static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) {
3508 if (isFloatingPointZero(Op))
3509 return DAG.getConstant(0, MVT::i32);
3510
3511 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op))
Andrew Trickef9de2a2013-05-25 02:42:55 +00003512 return DAG.getLoad(MVT::i32, SDLoc(Op),
Chris Lattner7727d052010-09-21 06:44:06 +00003513 Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003514 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003515 Ld->isInvariant(), Ld->getAlignment());
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003516
3517 llvm_unreachable("Unknown VFP cmp argument!");
3518}
3519
3520static void expandf64Toi32(SDValue Op, SelectionDAG &DAG,
3521 SDValue &RetVal1, SDValue &RetVal2) {
3522 if (isFloatingPointZero(Op)) {
3523 RetVal1 = DAG.getConstant(0, MVT::i32);
3524 RetVal2 = DAG.getConstant(0, MVT::i32);
3525 return;
3526 }
3527
3528 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) {
3529 SDValue Ptr = Ld->getBasePtr();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003530 RetVal1 = DAG.getLoad(MVT::i32, SDLoc(Op),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003531 Ld->getChain(), Ptr,
Chris Lattner7727d052010-09-21 06:44:06 +00003532 Ld->getPointerInfo(),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003533 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003534 Ld->isInvariant(), Ld->getAlignment());
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003535
3536 EVT PtrType = Ptr.getValueType();
3537 unsigned NewAlign = MinAlign(Ld->getAlignment(), 4);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003538 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(Op),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003539 PtrType, Ptr, DAG.getConstant(4, PtrType));
Andrew Trickef9de2a2013-05-25 02:42:55 +00003540 RetVal2 = DAG.getLoad(MVT::i32, SDLoc(Op),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003541 Ld->getChain(), NewPtr,
Chris Lattner7727d052010-09-21 06:44:06 +00003542 Ld->getPointerInfo().getWithOffset(4),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003543 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003544 Ld->isInvariant(), NewAlign);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003545 return;
3546 }
3547
3548 llvm_unreachable("Unknown VFP cmp argument!");
3549}
3550
3551/// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some
3552/// f32 and even f64 comparisons to integer ones.
3553SDValue
3554ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
3555 SDValue Chain = Op.getOperand(0);
Evan Cheng10043e22007-01-19 07:51:42 +00003556 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003557 SDValue LHS = Op.getOperand(2);
3558 SDValue RHS = Op.getOperand(3);
3559 SDValue Dest = Op.getOperand(4);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003560 SDLoc dl(Op);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003561
Evan Chengd12af5d2012-03-01 23:27:13 +00003562 bool LHSSeenZero = false;
3563 bool LHSOk = canChangeToInt(LHS, LHSSeenZero, Subtarget);
3564 bool RHSSeenZero = false;
3565 bool RHSOk = canChangeToInt(RHS, RHSSeenZero, Subtarget);
3566 if (LHSOk && RHSOk && (LHSSeenZero || RHSSeenZero)) {
Bob Wilson70bd3632011-03-08 01:17:16 +00003567 // If unsafe fp math optimization is enabled and there are no other uses of
3568 // the CMP operands, and the condition code is EQ or NE, we can optimize it
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003569 // to an integer comparison.
3570 if (CC == ISD::SETOEQ)
3571 CC = ISD::SETEQ;
3572 else if (CC == ISD::SETUNE)
3573 CC = ISD::SETNE;
3574
Evan Chengd12af5d2012-03-01 23:27:13 +00003575 SDValue Mask = DAG.getConstant(0x7fffffff, MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003576 SDValue ARMcc;
3577 if (LHS.getValueType() == MVT::f32) {
Evan Chengd12af5d2012-03-01 23:27:13 +00003578 LHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3579 bitcastf32Toi32(LHS, DAG), Mask);
3580 RHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3581 bitcastf32Toi32(RHS, DAG), Mask);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003582 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3583 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3584 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3585 Chain, Dest, ARMcc, CCR, Cmp);
3586 }
3587
3588 SDValue LHS1, LHS2;
3589 SDValue RHS1, RHS2;
3590 expandf64Toi32(LHS, DAG, LHS1, LHS2);
3591 expandf64Toi32(RHS, DAG, RHS1, RHS2);
Evan Chengd12af5d2012-03-01 23:27:13 +00003592 LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask);
3593 RHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, RHS2, Mask);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003594 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3595 ARMcc = DAG.getConstant(CondCode, MVT::i32);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003596 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003597 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest };
Craig Topper48d114b2014-04-26 18:35:24 +00003598 return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003599 }
3600
3601 return SDValue();
3602}
3603
3604SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3605 SDValue Chain = Op.getOperand(0);
3606 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3607 SDValue LHS = Op.getOperand(2);
3608 SDValue RHS = Op.getOperand(3);
3609 SDValue Dest = Op.getOperand(4);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003610 SDLoc dl(Op);
Evan Cheng10043e22007-01-19 07:51:42 +00003611
Owen Anderson9f944592009-08-11 20:47:22 +00003612 if (LHS.getValueType() == MVT::i32) {
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003613 SDValue ARMcc;
3614 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00003615 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +00003616 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003617 Chain, Dest, ARMcc, CCR, Cmp);
Evan Cheng10043e22007-01-19 07:51:42 +00003618 }
3619
Owen Anderson9f944592009-08-11 20:47:22 +00003620 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003621
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003622 if (getTargetMachine().Options.UnsafeFPMath &&
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003623 (CC == ISD::SETEQ || CC == ISD::SETOEQ ||
3624 CC == ISD::SETNE || CC == ISD::SETUNE)) {
3625 SDValue Result = OptimizeVFPBrcond(Op, DAG);
3626 if (Result.getNode())
3627 return Result;
3628 }
3629
Evan Cheng10043e22007-01-19 07:51:42 +00003630 ARMCC::CondCodes CondCode, CondCode2;
Bob Wilsona2e83332009-09-09 23:14:54 +00003631 FPCCToARMCC(CC, CondCode, CondCode2);
Bob Wilson7117a912009-03-20 22:42:55 +00003632
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003633 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
3634 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00003635 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003636 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003637 SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp };
Craig Topper48d114b2014-04-26 18:35:24 +00003638 SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
Evan Cheng10043e22007-01-19 07:51:42 +00003639 if (CondCode2 != ARMCC::AL) {
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003640 ARMcc = DAG.getConstant(CondCode2, MVT::i32);
3641 SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) };
Craig Topper48d114b2014-04-26 18:35:24 +00003642 Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
Evan Cheng10043e22007-01-19 07:51:42 +00003643 }
3644 return Res;
3645}
3646
Dan Gohman21cea8a2010-04-17 15:26:15 +00003647SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003648 SDValue Chain = Op.getOperand(0);
3649 SDValue Table = Op.getOperand(1);
3650 SDValue Index = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003651 SDLoc dl(Op);
Evan Cheng10043e22007-01-19 07:51:42 +00003652
Owen Anderson53aa7a92009-08-10 22:56:29 +00003653 EVT PTy = getPointerTy();
Evan Cheng10043e22007-01-19 07:51:42 +00003654 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
3655 ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
Bob Wilson3f17aee2009-07-14 18:44:34 +00003656 SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003657 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
Owen Anderson9f944592009-08-11 20:47:22 +00003658 Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI, UId);
Evan Chengc8bed032009-07-28 20:53:24 +00003659 Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, PTy));
3660 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Evan Chengf3a1fce2009-07-25 00:33:29 +00003661 if (Subtarget->isThumb2()) {
3662 // Thumb2 uses a two-level jump. That is, it jumps into the jump table
3663 // which does another jump to the destination. This also makes it easier
3664 // to translate it to TBB / TBH later.
3665 // FIXME: This might not work if the function is extremely large.
Owen Anderson9f944592009-08-11 20:47:22 +00003666 return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
Evan Chengc6d70ae2009-07-29 02:18:14 +00003667 Addr, Op.getOperand(2), JTI, UId);
Evan Chengf3a1fce2009-07-25 00:33:29 +00003668 }
Evan Chengf3a1fce2009-07-25 00:33:29 +00003669 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Chengcdbb70c2009-10-31 03:39:36 +00003670 Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
Chris Lattner7727d052010-09-21 06:44:06 +00003671 MachinePointerInfo::getJumpTable(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003672 false, false, false, 0);
Evan Chengf3a1fce2009-07-25 00:33:29 +00003673 Chain = Addr.getValue(1);
Dale Johannesen021052a2009-02-04 20:06:27 +00003674 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
Owen Anderson9f944592009-08-11 20:47:22 +00003675 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
Evan Chengf3a1fce2009-07-25 00:33:29 +00003676 } else {
Evan Chengcdbb70c2009-10-31 03:39:36 +00003677 Addr = DAG.getLoad(PTy, dl, Chain, Addr,
Pete Cooper82cd9e82011-11-08 18:42:53 +00003678 MachinePointerInfo::getJumpTable(),
3679 false, false, false, 0);
Evan Chengf3a1fce2009-07-25 00:33:29 +00003680 Chain = Addr.getValue(1);
Owen Anderson9f944592009-08-11 20:47:22 +00003681 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
Evan Chengf3a1fce2009-07-25 00:33:29 +00003682 }
Evan Cheng10043e22007-01-19 07:51:42 +00003683}
3684
Eli Friedman2d4055b2011-11-09 23:36:02 +00003685static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
James Molloy547d4c02012-02-20 09:24:05 +00003686 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003687 SDLoc dl(Op);
Eli Friedman2d4055b2011-11-09 23:36:02 +00003688
James Molloy547d4c02012-02-20 09:24:05 +00003689 if (Op.getValueType().getVectorElementType() == MVT::i32) {
3690 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::f32)
3691 return Op;
3692 return DAG.UnrollVectorOp(Op.getNode());
3693 }
3694
3695 assert(Op.getOperand(0).getValueType() == MVT::v4f32 &&
3696 "Invalid type for custom lowering!");
3697 if (VT != MVT::v4i16)
3698 return DAG.UnrollVectorOp(Op.getNode());
3699
3700 Op = DAG.getNode(Op.getOpcode(), dl, MVT::v4i32, Op.getOperand(0));
3701 return DAG.getNode(ISD::TRUNCATE, dl, VT, Op);
Eli Friedman2d4055b2011-11-09 23:36:02 +00003702}
3703
Bob Wilsone4191e72010-03-19 22:51:32 +00003704static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
Eli Friedman2d4055b2011-11-09 23:36:02 +00003705 EVT VT = Op.getValueType();
3706 if (VT.isVector())
3707 return LowerVectorFP_TO_INT(Op, DAG);
3708
Andrew Trickef9de2a2013-05-25 02:42:55 +00003709 SDLoc dl(Op);
Bob Wilsone4191e72010-03-19 22:51:32 +00003710 unsigned Opc;
3711
3712 switch (Op.getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00003713 default: llvm_unreachable("Invalid opcode!");
Bob Wilsone4191e72010-03-19 22:51:32 +00003714 case ISD::FP_TO_SINT:
3715 Opc = ARMISD::FTOSI;
3716 break;
3717 case ISD::FP_TO_UINT:
3718 Opc = ARMISD::FTOUI;
3719 break;
3720 }
3721 Op = DAG.getNode(Opc, dl, MVT::f32, Op.getOperand(0));
Wesley Peck527da1b2010-11-23 03:31:01 +00003722 return DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
Bob Wilsone4191e72010-03-19 22:51:32 +00003723}
3724
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00003725static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3726 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003727 SDLoc dl(Op);
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00003728
Eli Friedman2d4055b2011-11-09 23:36:02 +00003729 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::i32) {
3730 if (VT.getVectorElementType() == MVT::f32)
3731 return Op;
3732 return DAG.UnrollVectorOp(Op.getNode());
3733 }
3734
Duncan Sandsa41634e2011-08-12 14:54:45 +00003735 assert(Op.getOperand(0).getValueType() == MVT::v4i16 &&
3736 "Invalid type for custom lowering!");
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00003737 if (VT != MVT::v4f32)
3738 return DAG.UnrollVectorOp(Op.getNode());
3739
3740 unsigned CastOpc;
3741 unsigned Opc;
3742 switch (Op.getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00003743 default: llvm_unreachable("Invalid opcode!");
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00003744 case ISD::SINT_TO_FP:
3745 CastOpc = ISD::SIGN_EXTEND;
3746 Opc = ISD::SINT_TO_FP;
3747 break;
3748 case ISD::UINT_TO_FP:
3749 CastOpc = ISD::ZERO_EXTEND;
3750 Opc = ISD::UINT_TO_FP;
3751 break;
3752 }
3753
3754 Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0));
3755 return DAG.getNode(Opc, dl, VT, Op);
3756}
3757
Bob Wilsone4191e72010-03-19 22:51:32 +00003758static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3759 EVT VT = Op.getValueType();
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00003760 if (VT.isVector())
3761 return LowerVectorINT_TO_FP(Op, DAG);
3762
Andrew Trickef9de2a2013-05-25 02:42:55 +00003763 SDLoc dl(Op);
Bob Wilsone4191e72010-03-19 22:51:32 +00003764 unsigned Opc;
3765
3766 switch (Op.getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00003767 default: llvm_unreachable("Invalid opcode!");
Bob Wilsone4191e72010-03-19 22:51:32 +00003768 case ISD::SINT_TO_FP:
3769 Opc = ARMISD::SITOF;
3770 break;
3771 case ISD::UINT_TO_FP:
3772 Opc = ARMISD::UITOF;
3773 break;
3774 }
3775
Wesley Peck527da1b2010-11-23 03:31:01 +00003776 Op = DAG.getNode(ISD::BITCAST, dl, MVT::f32, Op.getOperand(0));
Bob Wilsone4191e72010-03-19 22:51:32 +00003777 return DAG.getNode(Opc, dl, VT, Op);
3778}
3779
Evan Cheng25f93642010-07-08 02:08:50 +00003780SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng10043e22007-01-19 07:51:42 +00003781 // Implement fcopysign with a fabs and a conditional fneg.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003782 SDValue Tmp0 = Op.getOperand(0);
3783 SDValue Tmp1 = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003784 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00003785 EVT VT = Op.getValueType();
3786 EVT SrcVT = Tmp1.getValueType();
Evan Chengd6b641e2011-02-23 02:24:55 +00003787 bool InGPR = Tmp0.getOpcode() == ISD::BITCAST ||
3788 Tmp0.getOpcode() == ARMISD::VMOVDRR;
3789 bool UseNEON = !InGPR && Subtarget->hasNEON();
3790
3791 if (UseNEON) {
3792 // Use VBSL to copy the sign bit.
3793 unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80);
3794 SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32,
3795 DAG.getTargetConstant(EncodedVal, MVT::i32));
3796 EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64;
3797 if (VT == MVT::f64)
3798 Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3799 DAG.getNode(ISD::BITCAST, dl, OpVT, Mask),
3800 DAG.getConstant(32, MVT::i32));
3801 else /*if (VT == MVT::f32)*/
3802 Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0);
3803 if (SrcVT == MVT::f32) {
3804 Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1);
3805 if (VT == MVT::f64)
3806 Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3807 DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1),
3808 DAG.getConstant(32, MVT::i32));
Evan Cheng12bb05b2011-04-15 01:31:00 +00003809 } else if (VT == MVT::f32)
3810 Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64,
3811 DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1),
3812 DAG.getConstant(32, MVT::i32));
Evan Chengd6b641e2011-02-23 02:24:55 +00003813 Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0);
3814 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1);
3815
3816 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff),
3817 MVT::i32);
3818 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes);
3819 SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask,
3820 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes));
Owen Anderson77aa2662011-04-05 21:48:57 +00003821
Evan Chengd6b641e2011-02-23 02:24:55 +00003822 SDValue Res = DAG.getNode(ISD::OR, dl, OpVT,
3823 DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask),
3824 DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot));
Evan Cheng6e3d4432011-02-28 18:45:27 +00003825 if (VT == MVT::f32) {
Evan Chengd6b641e2011-02-23 02:24:55 +00003826 Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res);
3827 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res,
3828 DAG.getConstant(0, MVT::i32));
3829 } else {
3830 Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res);
3831 }
3832
3833 return Res;
3834 }
Evan Cheng2da1c952011-02-11 02:28:55 +00003835
3836 // Bitcast operand 1 to i32.
3837 if (SrcVT == MVT::f64)
3838 Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
Craig Topper48d114b2014-04-26 18:35:24 +00003839 Tmp1).getValue(1);
Evan Cheng2da1c952011-02-11 02:28:55 +00003840 Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1);
3841
Evan Chengd6b641e2011-02-23 02:24:55 +00003842 // Or in the signbit with integer operations.
3843 SDValue Mask1 = DAG.getConstant(0x80000000, MVT::i32);
3844 SDValue Mask2 = DAG.getConstant(0x7fffffff, MVT::i32);
3845 Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1);
3846 if (VT == MVT::f32) {
3847 Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32,
3848 DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2);
3849 return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
3850 DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1));
Evan Cheng2da1c952011-02-11 02:28:55 +00003851 }
3852
Evan Chengd6b641e2011-02-23 02:24:55 +00003853 // f64: Or the high part with signbit and then combine two parts.
3854 Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
Craig Topper48d114b2014-04-26 18:35:24 +00003855 Tmp0);
Evan Chengd6b641e2011-02-23 02:24:55 +00003856 SDValue Lo = Tmp0.getValue(0);
3857 SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2);
3858 Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1);
3859 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Evan Cheng10043e22007-01-19 07:51:42 +00003860}
3861
Evan Cheng168ced92010-05-22 01:47:14 +00003862SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{
3863 MachineFunction &MF = DAG.getMachineFunction();
3864 MachineFrameInfo *MFI = MF.getFrameInfo();
3865 MFI->setReturnAddressIsTaken(true);
3866
Bill Wendling908bf812014-01-06 00:43:20 +00003867 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +00003868 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +00003869
Evan Cheng168ced92010-05-22 01:47:14 +00003870 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003871 SDLoc dl(Op);
Evan Cheng168ced92010-05-22 01:47:14 +00003872 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
3873 if (Depth) {
3874 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
3875 SDValue Offset = DAG.getConstant(4, MVT::i32);
3876 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
3877 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003878 MachinePointerInfo(), false, false, false, 0);
Evan Cheng168ced92010-05-22 01:47:14 +00003879 }
3880
3881 // Return LR, which contains the return address. Mark it an implicit live-in.
Devang Patelf3292b22011-02-21 23:21:26 +00003882 unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32));
Evan Cheng168ced92010-05-22 01:47:14 +00003883 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
3884}
3885
Dan Gohman21cea8a2010-04-17 15:26:15 +00003886SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Saleem Abdulrasoolf11f4b42014-05-18 03:18:09 +00003887 const ARMBaseRegisterInfo &ARI =
3888 *static_cast<const ARMBaseRegisterInfo*>(RegInfo);
3889 MachineFunction &MF = DAG.getMachineFunction();
3890 MachineFrameInfo *MFI = MF.getFrameInfo();
Jim Grosbachaeca45d2009-05-12 23:59:14 +00003891 MFI->setFrameAddressIsTaken(true);
Evan Cheng168ced92010-05-22 01:47:14 +00003892
Owen Anderson53aa7a92009-08-10 22:56:29 +00003893 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003894 SDLoc dl(Op); // FIXME probably not meaningful
Jim Grosbachaeca45d2009-05-12 23:59:14 +00003895 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Saleem Abdulrasoolf11f4b42014-05-18 03:18:09 +00003896 unsigned FrameReg = ARI.getFrameRegister(MF);
Jim Grosbachaeca45d2009-05-12 23:59:14 +00003897 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
3898 while (Depth--)
Chris Lattner7727d052010-09-21 06:44:06 +00003899 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
3900 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003901 false, false, false, 0);
Jim Grosbachaeca45d2009-05-12 23:59:14 +00003902 return FrameAddr;
3903}
3904
Renato Golinc7aea402014-05-06 16:51:25 +00003905// FIXME? Maybe this could be a TableGen attribute on some registers and
3906// this table could be generated automatically from RegInfo.
Hal Finkelf0e086a2014-05-11 19:29:07 +00003907unsigned ARMTargetLowering::getRegisterByName(const char* RegName,
3908 EVT VT) const {
Renato Golinc7aea402014-05-06 16:51:25 +00003909 unsigned Reg = StringSwitch<unsigned>(RegName)
3910 .Case("sp", ARM::SP)
3911 .Default(0);
3912 if (Reg)
3913 return Reg;
3914 report_fatal_error("Invalid register name global variable");
3915}
3916
Wesley Peck527da1b2010-11-23 03:31:01 +00003917/// ExpandBITCAST - If the target supports VFP, this function is called to
Bob Wilson59b70ea2010-04-17 05:30:19 +00003918/// expand a bit convert where either the source or destination type is i64 to
3919/// use a VMOVDRR or VMOVRRD node. This should not be done when the non-i64
3920/// operand type is illegal (e.g., v2f32 for a target that doesn't support
3921/// vectors), since the legalizer won't know what to do with that.
Wesley Peck527da1b2010-11-23 03:31:01 +00003922static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) {
Bob Wilson59b70ea2010-04-17 05:30:19 +00003923 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003924 SDLoc dl(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003925 SDValue Op = N->getOperand(0);
Bob Wilsonc05b8872010-04-14 20:45:23 +00003926
Bob Wilson59b70ea2010-04-17 05:30:19 +00003927 // This function is only supposed to be called for i64 types, either as the
3928 // source or destination of the bit convert.
3929 EVT SrcVT = Op.getValueType();
3930 EVT DstVT = N->getValueType(0);
3931 assert((SrcVT == MVT::i64 || DstVT == MVT::i64) &&
Wesley Peck527da1b2010-11-23 03:31:01 +00003932 "ExpandBITCAST called for non-i64 type");
Bob Wilsonc05b8872010-04-14 20:45:23 +00003933
Bob Wilson59b70ea2010-04-17 05:30:19 +00003934 // Turn i64->f64 into VMOVDRR.
3935 if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) {
Owen Anderson9f944592009-08-11 20:47:22 +00003936 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
3937 DAG.getConstant(0, MVT::i32));
3938 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
3939 DAG.getConstant(1, MVT::i32));
Wesley Peck527da1b2010-11-23 03:31:01 +00003940 return DAG.getNode(ISD::BITCAST, dl, DstVT,
Bob Wilsonf07d33d2010-06-11 22:45:25 +00003941 DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi));
Evan Cheng297b32a2008-11-04 19:57:48 +00003942 }
Bob Wilson7117a912009-03-20 22:42:55 +00003943
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00003944 // Turn f64->i64 into VMOVRRD.
Bob Wilson59b70ea2010-04-17 05:30:19 +00003945 if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) {
Christian Pirker238c7c12014-05-12 11:19:20 +00003946 SDValue Cvt;
Christian Pirker6692e7c2014-05-14 16:59:44 +00003947 if (TLI.isBigEndian() && SrcVT.isVector() &&
3948 SrcVT.getVectorNumElements() > 1)
Christian Pirker238c7c12014-05-12 11:19:20 +00003949 Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
3950 DAG.getVTList(MVT::i32, MVT::i32),
3951 DAG.getNode(ARMISD::VREV64, dl, SrcVT, Op));
3952 else
3953 Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
3954 DAG.getVTList(MVT::i32, MVT::i32), Op);
Bob Wilson59b70ea2010-04-17 05:30:19 +00003955 // Merge the pieces into a single i64 value.
3956 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
3957 }
Bob Wilson7117a912009-03-20 22:42:55 +00003958
Bob Wilson59b70ea2010-04-17 05:30:19 +00003959 return SDValue();
Chris Lattnerf81d5882007-11-24 07:07:01 +00003960}
3961
Bob Wilson2e076c42009-06-22 23:27:02 +00003962/// getZeroVector - Returns a vector of specified type with all zero elements.
Bob Wilsona3f19012010-07-13 21:16:48 +00003963/// Zero vectors are used to represent vector negation and in those cases
3964/// will be implemented with the NEON VNEG instruction. However, VNEG does
3965/// not support i64 elements, so sometimes the zero vectors will need to be
3966/// explicitly constructed. Regardless, use a canonical VMOV to create the
3967/// zero vector.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003968static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, SDLoc dl) {
Bob Wilson2e076c42009-06-22 23:27:02 +00003969 assert(VT.isVector() && "Expected a vector type");
Bob Wilsona3f19012010-07-13 21:16:48 +00003970 // The canonical modified immediate encoding of a zero vector is....0!
3971 SDValue EncodedVal = DAG.getTargetConstant(0, MVT::i32);
3972 EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
3973 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal);
Wesley Peck527da1b2010-11-23 03:31:01 +00003974 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilson2e076c42009-06-22 23:27:02 +00003975}
3976
Jim Grosbach624fcb22009-10-31 21:00:56 +00003977/// LowerShiftRightParts - Lower SRA_PARTS, which returns two
3978/// i32 values and take a 2 x i32 value to shift plus a shift amount.
Dan Gohman21cea8a2010-04-17 15:26:15 +00003979SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op,
3980 SelectionDAG &DAG) const {
Jim Grosbach624fcb22009-10-31 21:00:56 +00003981 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
3982 EVT VT = Op.getValueType();
3983 unsigned VTBits = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003984 SDLoc dl(Op);
Jim Grosbach624fcb22009-10-31 21:00:56 +00003985 SDValue ShOpLo = Op.getOperand(0);
3986 SDValue ShOpHi = Op.getOperand(1);
3987 SDValue ShAmt = Op.getOperand(2);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003988 SDValue ARMcc;
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00003989 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
Jim Grosbach624fcb22009-10-31 21:00:56 +00003990
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00003991 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
3992
Jim Grosbach624fcb22009-10-31 21:00:56 +00003993 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
3994 DAG.getConstant(VTBits, MVT::i32), ShAmt);
3995 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
3996 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
3997 DAG.getConstant(VTBits, MVT::i32));
3998 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
3999 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00004000 SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
Jim Grosbach624fcb22009-10-31 21:00:56 +00004001
4002 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
4003 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004004 ARMcc, DAG, dl);
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00004005 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004006 SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc,
Jim Grosbach624fcb22009-10-31 21:00:56 +00004007 CCR, Cmp);
4008
4009 SDValue Ops[2] = { Lo, Hi };
Craig Topper64941d92014-04-27 19:20:57 +00004010 return DAG.getMergeValues(Ops, dl);
Jim Grosbach624fcb22009-10-31 21:00:56 +00004011}
4012
Jim Grosbach5d994042009-10-31 19:38:01 +00004013/// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
4014/// i32 values and take a 2 x i32 value to shift plus a shift amount.
Dan Gohman21cea8a2010-04-17 15:26:15 +00004015SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op,
4016 SelectionDAG &DAG) const {
Jim Grosbach5d994042009-10-31 19:38:01 +00004017 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4018 EVT VT = Op.getValueType();
4019 unsigned VTBits = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004020 SDLoc dl(Op);
Jim Grosbach5d994042009-10-31 19:38:01 +00004021 SDValue ShOpLo = Op.getOperand(0);
4022 SDValue ShOpHi = Op.getOperand(1);
4023 SDValue ShAmt = Op.getOperand(2);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004024 SDValue ARMcc;
Jim Grosbach5d994042009-10-31 19:38:01 +00004025
4026 assert(Op.getOpcode() == ISD::SHL_PARTS);
4027 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
4028 DAG.getConstant(VTBits, MVT::i32), ShAmt);
4029 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
4030 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
4031 DAG.getConstant(VTBits, MVT::i32));
4032 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
4033 SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
4034
4035 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4036 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
4037 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004038 ARMcc, DAG, dl);
Jim Grosbach5d994042009-10-31 19:38:01 +00004039 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004040 SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc,
Jim Grosbach5d994042009-10-31 19:38:01 +00004041 CCR, Cmp);
4042
4043 SDValue Ops[2] = { Lo, Hi };
Craig Topper64941d92014-04-27 19:20:57 +00004044 return DAG.getMergeValues(Ops, dl);
Jim Grosbach5d994042009-10-31 19:38:01 +00004045}
4046
Jim Grosbach535d3b42010-09-08 03:54:02 +00004047SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
Nate Begemanb69b1822010-08-03 21:31:55 +00004048 SelectionDAG &DAG) const {
4049 // The rounding mode is in bits 23:22 of the FPSCR.
4050 // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0
4051 // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3)
4052 // so that the shift + and get folded into a bitfield extract.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004053 SDLoc dl(Op);
Nate Begemanb69b1822010-08-03 21:31:55 +00004054 SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32,
4055 DAG.getConstant(Intrinsic::arm_get_fpscr,
4056 MVT::i32));
Jim Grosbach535d3b42010-09-08 03:54:02 +00004057 SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR,
Nate Begemanb69b1822010-08-03 21:31:55 +00004058 DAG.getConstant(1U << 22, MVT::i32));
4059 SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds,
4060 DAG.getConstant(22, MVT::i32));
Jim Grosbach535d3b42010-09-08 03:54:02 +00004061 return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE,
Nate Begemanb69b1822010-08-03 21:31:55 +00004062 DAG.getConstant(3, MVT::i32));
4063}
4064
Jim Grosbach8546ec92010-01-18 19:58:49 +00004065static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG,
4066 const ARMSubtarget *ST) {
4067 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004068 SDLoc dl(N);
Jim Grosbach8546ec92010-01-18 19:58:49 +00004069
4070 if (!ST->hasV6T2Ops())
4071 return SDValue();
4072
4073 SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0));
4074 return DAG.getNode(ISD::CTLZ, dl, VT, rbit);
4075}
4076
Evan Chengb4eae132012-12-04 22:41:50 +00004077/// getCTPOP16BitCounts - Returns a v8i8/v16i8 vector containing the bit-count
4078/// for each 16-bit element from operand, repeated. The basic idea is to
4079/// leverage vcnt to get the 8-bit counts, gather and add the results.
4080///
4081/// Trace for v4i16:
4082/// input = [v0 v1 v2 v3 ] (vi 16-bit element)
4083/// cast: N0 = [w0 w1 w2 w3 w4 w5 w6 w7] (v0 = [w0 w1], wi 8-bit element)
4084/// vcnt: N1 = [b0 b1 b2 b3 b4 b5 b6 b7] (bi = bit-count of 8-bit element wi)
Jim Grosbach54efea02013-03-02 20:16:15 +00004085/// vrev: N2 = [b1 b0 b3 b2 b5 b4 b7 b6]
Evan Chengb4eae132012-12-04 22:41:50 +00004086/// [b0 b1 b2 b3 b4 b5 b6 b7]
4087/// +[b1 b0 b3 b2 b5 b4 b7 b6]
4088/// N3=N1+N2 = [k0 k0 k1 k1 k2 k2 k3 k3] (k0 = b0+b1 = bit-count of 16-bit v0,
4089/// vuzp: = [k0 k1 k2 k3 k0 k1 k2 k3] each ki is 8-bits)
4090static SDValue getCTPOP16BitCounts(SDNode *N, SelectionDAG &DAG) {
4091 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004092 SDLoc DL(N);
Evan Chengb4eae132012-12-04 22:41:50 +00004093
4094 EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8;
4095 SDValue N0 = DAG.getNode(ISD::BITCAST, DL, VT8Bit, N->getOperand(0));
4096 SDValue N1 = DAG.getNode(ISD::CTPOP, DL, VT8Bit, N0);
4097 SDValue N2 = DAG.getNode(ARMISD::VREV16, DL, VT8Bit, N1);
4098 SDValue N3 = DAG.getNode(ISD::ADD, DL, VT8Bit, N1, N2);
4099 return DAG.getNode(ARMISD::VUZP, DL, VT8Bit, N3, N3);
4100}
4101
4102/// lowerCTPOP16BitElements - Returns a v4i16/v8i16 vector containing the
4103/// bit-count for each 16-bit element from the operand. We need slightly
4104/// different sequencing for v4i16 and v8i16 to stay within NEON's available
4105/// 64/128-bit registers.
Jim Grosbach54efea02013-03-02 20:16:15 +00004106///
Evan Chengb4eae132012-12-04 22:41:50 +00004107/// Trace for v4i16:
4108/// input = [v0 v1 v2 v3 ] (vi 16-bit element)
4109/// v8i8: BitCounts = [k0 k1 k2 k3 k0 k1 k2 k3 ] (ki is the bit-count of vi)
4110/// v8i16:Extended = [k0 k1 k2 k3 k0 k1 k2 k3 ]
4111/// v4i16:Extracted = [k0 k1 k2 k3 ]
4112static SDValue lowerCTPOP16BitElements(SDNode *N, SelectionDAG &DAG) {
4113 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004114 SDLoc DL(N);
Evan Chengb4eae132012-12-04 22:41:50 +00004115
4116 SDValue BitCounts = getCTPOP16BitCounts(N, DAG);
4117 if (VT.is64BitVector()) {
4118 SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, BitCounts);
4119 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, Extended,
4120 DAG.getIntPtrConstant(0));
4121 } else {
4122 SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v8i8,
4123 BitCounts, DAG.getIntPtrConstant(0));
4124 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, Extracted);
4125 }
4126}
4127
4128/// lowerCTPOP32BitElements - Returns a v2i32/v4i32 vector containing the
4129/// bit-count for each 32-bit element from the operand. The idea here is
4130/// to split the vector into 16-bit elements, leverage the 16-bit count
4131/// routine, and then combine the results.
4132///
4133/// Trace for v2i32 (v4i32 similar with Extracted/Extended exchanged):
4134/// input = [v0 v1 ] (vi: 32-bit elements)
4135/// Bitcast = [w0 w1 w2 w3 ] (wi: 16-bit elements, v0 = [w0 w1])
4136/// Counts16 = [k0 k1 k2 k3 ] (ki: 16-bit elements, bit-count of wi)
Jim Grosbach54efea02013-03-02 20:16:15 +00004137/// vrev: N0 = [k1 k0 k3 k2 ]
Evan Chengb4eae132012-12-04 22:41:50 +00004138/// [k0 k1 k2 k3 ]
4139/// N1 =+[k1 k0 k3 k2 ]
4140/// [k0 k2 k1 k3 ]
4141/// N2 =+[k1 k3 k0 k2 ]
4142/// [k0 k2 k1 k3 ]
4143/// Extended =+[k1 k3 k0 k2 ]
4144/// [k0 k2 ]
4145/// Extracted=+[k1 k3 ]
4146///
4147static SDValue lowerCTPOP32BitElements(SDNode *N, SelectionDAG &DAG) {
4148 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004149 SDLoc DL(N);
Evan Chengb4eae132012-12-04 22:41:50 +00004150
4151 EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16;
4152
4153 SDValue Bitcast = DAG.getNode(ISD::BITCAST, DL, VT16Bit, N->getOperand(0));
4154 SDValue Counts16 = lowerCTPOP16BitElements(Bitcast.getNode(), DAG);
4155 SDValue N0 = DAG.getNode(ARMISD::VREV32, DL, VT16Bit, Counts16);
4156 SDValue N1 = DAG.getNode(ISD::ADD, DL, VT16Bit, Counts16, N0);
4157 SDValue N2 = DAG.getNode(ARMISD::VUZP, DL, VT16Bit, N1, N1);
4158
4159 if (VT.is64BitVector()) {
4160 SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, N2);
4161 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i32, Extended,
4162 DAG.getIntPtrConstant(0));
4163 } else {
4164 SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, N2,
4165 DAG.getIntPtrConstant(0));
4166 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, Extracted);
4167 }
4168}
4169
4170static SDValue LowerCTPOP(SDNode *N, SelectionDAG &DAG,
4171 const ARMSubtarget *ST) {
4172 EVT VT = N->getValueType(0);
4173
4174 assert(ST->hasNEON() && "Custom ctpop lowering requires NEON.");
Matt Beaumont-Gay50f61b62012-12-04 23:54:02 +00004175 assert((VT == MVT::v2i32 || VT == MVT::v4i32 ||
4176 VT == MVT::v4i16 || VT == MVT::v8i16) &&
Evan Chengb4eae132012-12-04 22:41:50 +00004177 "Unexpected type for custom ctpop lowering");
4178
4179 if (VT.getVectorElementType() == MVT::i32)
4180 return lowerCTPOP32BitElements(N, DAG);
4181 else
4182 return lowerCTPOP16BitElements(N, DAG);
4183}
4184
Bob Wilson2e076c42009-06-22 23:27:02 +00004185static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
4186 const ARMSubtarget *ST) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004187 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004188 SDLoc dl(N);
Bob Wilson2e076c42009-06-22 23:27:02 +00004189
Bob Wilson7d471332010-11-18 21:16:28 +00004190 if (!VT.isVector())
4191 return SDValue();
4192
Bob Wilson2e076c42009-06-22 23:27:02 +00004193 // Lower vector shifts on NEON to use VSHL.
Bob Wilson7d471332010-11-18 21:16:28 +00004194 assert(ST->hasNEON() && "unexpected vector shift");
Bob Wilson2e076c42009-06-22 23:27:02 +00004195
Bob Wilson7d471332010-11-18 21:16:28 +00004196 // Left shifts translate directly to the vshiftu intrinsic.
4197 if (N->getOpcode() == ISD::SHL)
Bob Wilson2e076c42009-06-22 23:27:02 +00004198 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Bob Wilson7d471332010-11-18 21:16:28 +00004199 DAG.getConstant(Intrinsic::arm_neon_vshiftu, MVT::i32),
4200 N->getOperand(0), N->getOperand(1));
4201
4202 assert((N->getOpcode() == ISD::SRA ||
4203 N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
4204
4205 // NEON uses the same intrinsics for both left and right shifts. For
4206 // right shifts, the shift amounts are negative, so negate the vector of
4207 // shift amounts.
4208 EVT ShiftVT = N->getOperand(1).getValueType();
4209 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
4210 getZeroVector(ShiftVT, DAG, dl),
4211 N->getOperand(1));
4212 Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
4213 Intrinsic::arm_neon_vshifts :
4214 Intrinsic::arm_neon_vshiftu);
4215 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4216 DAG.getConstant(vshiftInt, MVT::i32),
4217 N->getOperand(0), NegatedCount);
4218}
4219
4220static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG,
4221 const ARMSubtarget *ST) {
4222 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004223 SDLoc dl(N);
Bob Wilson2e076c42009-06-22 23:27:02 +00004224
Eli Friedman682d8c12009-08-22 03:13:10 +00004225 // We can get here for a node like i32 = ISD::SHL i32, i64
4226 if (VT != MVT::i64)
4227 return SDValue();
4228
4229 assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
Chris Lattnerf81d5882007-11-24 07:07:01 +00004230 "Unknown shift to lower!");
Duncan Sands6ed40142008-12-01 11:39:25 +00004231
Chris Lattnerf81d5882007-11-24 07:07:01 +00004232 // We only lower SRA, SRL of 1 here, all others use generic lowering.
4233 if (!isa<ConstantSDNode>(N->getOperand(1)) ||
Dan Gohmaneffb8942008-09-12 16:56:44 +00004234 cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1)
Duncan Sands6ed40142008-12-01 11:39:25 +00004235 return SDValue();
Bob Wilson7117a912009-03-20 22:42:55 +00004236
Chris Lattnerf81d5882007-11-24 07:07:01 +00004237 // If we are in thumb mode, we don't have RRX.
David Goodwin22c2fba2009-07-08 23:10:31 +00004238 if (ST->isThumb1Only()) return SDValue();
Bob Wilson7117a912009-03-20 22:42:55 +00004239
Chris Lattnerf81d5882007-11-24 07:07:01 +00004240 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr.
Owen Anderson9f944592009-08-11 20:47:22 +00004241 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
Bob Wilson26fdebc2010-05-25 03:36:52 +00004242 DAG.getConstant(0, MVT::i32));
Owen Anderson9f944592009-08-11 20:47:22 +00004243 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
Bob Wilson26fdebc2010-05-25 03:36:52 +00004244 DAG.getConstant(1, MVT::i32));
Bob Wilson7117a912009-03-20 22:42:55 +00004245
Chris Lattnerf81d5882007-11-24 07:07:01 +00004246 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
4247 // captures the result into a carry flag.
4248 unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
Craig Topper48d114b2014-04-26 18:35:24 +00004249 Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), Hi);
Bob Wilson7117a912009-03-20 22:42:55 +00004250
Chris Lattnerf81d5882007-11-24 07:07:01 +00004251 // The low part is an ARMISD::RRX operand, which shifts the carry in.
Owen Anderson9f944592009-08-11 20:47:22 +00004252 Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
Bob Wilson7117a912009-03-20 22:42:55 +00004253
Chris Lattnerf81d5882007-11-24 07:07:01 +00004254 // Merge the pieces into a single i64 value.
Owen Anderson9f944592009-08-11 20:47:22 +00004255 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
Chris Lattnerf81d5882007-11-24 07:07:01 +00004256}
4257
Bob Wilson2e076c42009-06-22 23:27:02 +00004258static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
4259 SDValue TmpOp0, TmpOp1;
4260 bool Invert = false;
4261 bool Swap = false;
4262 unsigned Opc = 0;
4263
4264 SDValue Op0 = Op.getOperand(0);
4265 SDValue Op1 = Op.getOperand(1);
4266 SDValue CC = Op.getOperand(2);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004267 EVT VT = Op.getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +00004268 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004269 SDLoc dl(Op);
Bob Wilson2e076c42009-06-22 23:27:02 +00004270
4271 if (Op.getOperand(1).getValueType().isFloatingPoint()) {
4272 switch (SetCCOpcode) {
David Blaikie46a9f012012-01-20 21:51:11 +00004273 default: llvm_unreachable("Illegal FP comparison");
Bob Wilson2e076c42009-06-22 23:27:02 +00004274 case ISD::SETUNE:
4275 case ISD::SETNE: Invert = true; // Fallthrough
4276 case ISD::SETOEQ:
4277 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
4278 case ISD::SETOLT:
4279 case ISD::SETLT: Swap = true; // Fallthrough
4280 case ISD::SETOGT:
4281 case ISD::SETGT: Opc = ARMISD::VCGT; break;
4282 case ISD::SETOLE:
4283 case ISD::SETLE: Swap = true; // Fallthrough
4284 case ISD::SETOGE:
4285 case ISD::SETGE: Opc = ARMISD::VCGE; break;
4286 case ISD::SETUGE: Swap = true; // Fallthrough
4287 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
4288 case ISD::SETUGT: Swap = true; // Fallthrough
4289 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
4290 case ISD::SETUEQ: Invert = true; // Fallthrough
4291 case ISD::SETONE:
4292 // Expand this to (OLT | OGT).
4293 TmpOp0 = Op0;
4294 TmpOp1 = Op1;
4295 Opc = ISD::OR;
4296 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
4297 Op1 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp0, TmpOp1);
4298 break;
4299 case ISD::SETUO: Invert = true; // Fallthrough
4300 case ISD::SETO:
4301 // Expand this to (OLT | OGE).
4302 TmpOp0 = Op0;
4303 TmpOp1 = Op1;
4304 Opc = ISD::OR;
4305 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
4306 Op1 = DAG.getNode(ARMISD::VCGE, dl, VT, TmpOp0, TmpOp1);
4307 break;
4308 }
4309 } else {
4310 // Integer comparisons.
4311 switch (SetCCOpcode) {
David Blaikie46a9f012012-01-20 21:51:11 +00004312 default: llvm_unreachable("Illegal integer comparison");
Bob Wilson2e076c42009-06-22 23:27:02 +00004313 case ISD::SETNE: Invert = true;
4314 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
4315 case ISD::SETLT: Swap = true;
4316 case ISD::SETGT: Opc = ARMISD::VCGT; break;
4317 case ISD::SETLE: Swap = true;
4318 case ISD::SETGE: Opc = ARMISD::VCGE; break;
4319 case ISD::SETULT: Swap = true;
4320 case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
4321 case ISD::SETULE: Swap = true;
4322 case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
4323 }
4324
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004325 // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
Bob Wilson2e076c42009-06-22 23:27:02 +00004326 if (Opc == ARMISD::VCEQ) {
4327
4328 SDValue AndOp;
4329 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4330 AndOp = Op0;
4331 else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
4332 AndOp = Op1;
4333
4334 // Ignore bitconvert.
Wesley Peck527da1b2010-11-23 03:31:01 +00004335 if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST)
Bob Wilson2e076c42009-06-22 23:27:02 +00004336 AndOp = AndOp.getOperand(0);
4337
4338 if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
4339 Opc = ARMISD::VTST;
Wesley Peck527da1b2010-11-23 03:31:01 +00004340 Op0 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(0));
4341 Op1 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(1));
Bob Wilson2e076c42009-06-22 23:27:02 +00004342 Invert = !Invert;
4343 }
4344 }
4345 }
4346
4347 if (Swap)
4348 std::swap(Op0, Op1);
4349
Owen Andersonc7baee32010-11-08 23:21:22 +00004350 // If one of the operands is a constant vector zero, attempt to fold the
4351 // comparison to a specialized compare-against-zero form.
4352 SDValue SingleOp;
4353 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4354 SingleOp = Op0;
4355 else if (ISD::isBuildVectorAllZeros(Op0.getNode())) {
4356 if (Opc == ARMISD::VCGE)
4357 Opc = ARMISD::VCLEZ;
4358 else if (Opc == ARMISD::VCGT)
4359 Opc = ARMISD::VCLTZ;
4360 SingleOp = Op1;
4361 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004362
Owen Andersonc7baee32010-11-08 23:21:22 +00004363 SDValue Result;
4364 if (SingleOp.getNode()) {
4365 switch (Opc) {
4366 case ARMISD::VCEQ:
4367 Result = DAG.getNode(ARMISD::VCEQZ, dl, VT, SingleOp); break;
4368 case ARMISD::VCGE:
4369 Result = DAG.getNode(ARMISD::VCGEZ, dl, VT, SingleOp); break;
4370 case ARMISD::VCLEZ:
4371 Result = DAG.getNode(ARMISD::VCLEZ, dl, VT, SingleOp); break;
4372 case ARMISD::VCGT:
4373 Result = DAG.getNode(ARMISD::VCGTZ, dl, VT, SingleOp); break;
4374 case ARMISD::VCLTZ:
4375 Result = DAG.getNode(ARMISD::VCLTZ, dl, VT, SingleOp); break;
4376 default:
4377 Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
4378 }
4379 } else {
4380 Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
4381 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004382
4383 if (Invert)
4384 Result = DAG.getNOT(dl, Result, VT);
4385
4386 return Result;
4387}
4388
Bob Wilson5b2b5042010-06-14 22:19:57 +00004389/// isNEONModifiedImm - Check if the specified splat value corresponds to a
4390/// valid vector constant for a NEON instruction with a "modified immediate"
Bob Wilsona3f19012010-07-13 21:16:48 +00004391/// operand (e.g., VMOV). If so, return the encoded value.
Bob Wilson5b2b5042010-06-14 22:19:57 +00004392static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
4393 unsigned SplatBitSize, SelectionDAG &DAG,
Owen Andersona4076922010-11-05 21:57:54 +00004394 EVT &VT, bool is128Bits, NEONModImmType type) {
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004395 unsigned OpCmode, Imm;
Bob Wilson6eae5202010-06-11 21:34:50 +00004396
Bob Wilsonf3f7a772010-06-15 19:05:35 +00004397 // SplatBitSize is set to the smallest size that splats the vector, so a
4398 // zero vector will always have SplatBitSize == 8. However, NEON modified
4399 // immediate instructions others than VMOV do not support the 8-bit encoding
4400 // of a zero vector, and the default encoding of zero is supposed to be the
4401 // 32-bit version.
4402 if (SplatBits == 0)
4403 SplatBitSize = 32;
4404
Bob Wilson2e076c42009-06-22 23:27:02 +00004405 switch (SplatBitSize) {
4406 case 8:
Owen Andersona4076922010-11-05 21:57:54 +00004407 if (type != VMOVModImm)
Bob Wilsonbad47f62010-07-14 06:31:50 +00004408 return SDValue();
Bob Wilson6eae5202010-06-11 21:34:50 +00004409 // Any 1-byte value is OK. Op=0, Cmode=1110.
Bob Wilson2e076c42009-06-22 23:27:02 +00004410 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004411 OpCmode = 0xe;
Bob Wilson6eae5202010-06-11 21:34:50 +00004412 Imm = SplatBits;
Bob Wilsona3f19012010-07-13 21:16:48 +00004413 VT = is128Bits ? MVT::v16i8 : MVT::v8i8;
Bob Wilson6eae5202010-06-11 21:34:50 +00004414 break;
Bob Wilson2e076c42009-06-22 23:27:02 +00004415
4416 case 16:
4417 // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
Bob Wilsona3f19012010-07-13 21:16:48 +00004418 VT = is128Bits ? MVT::v8i16 : MVT::v4i16;
Bob Wilson6eae5202010-06-11 21:34:50 +00004419 if ((SplatBits & ~0xff) == 0) {
4420 // Value = 0x00nn: Op=x, Cmode=100x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004421 OpCmode = 0x8;
Bob Wilson6eae5202010-06-11 21:34:50 +00004422 Imm = SplatBits;
4423 break;
4424 }
4425 if ((SplatBits & ~0xff00) == 0) {
4426 // Value = 0xnn00: Op=x, Cmode=101x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004427 OpCmode = 0xa;
Bob Wilson6eae5202010-06-11 21:34:50 +00004428 Imm = SplatBits >> 8;
4429 break;
4430 }
4431 return SDValue();
Bob Wilson2e076c42009-06-22 23:27:02 +00004432
4433 case 32:
4434 // NEON's 32-bit VMOV supports splat values where:
4435 // * only one byte is nonzero, or
4436 // * the least significant byte is 0xff and the second byte is nonzero, or
4437 // * the least significant 2 bytes are 0xff and the third is nonzero.
Bob Wilsona3f19012010-07-13 21:16:48 +00004438 VT = is128Bits ? MVT::v4i32 : MVT::v2i32;
Bob Wilson6eae5202010-06-11 21:34:50 +00004439 if ((SplatBits & ~0xff) == 0) {
4440 // Value = 0x000000nn: Op=x, Cmode=000x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004441 OpCmode = 0;
Bob Wilson6eae5202010-06-11 21:34:50 +00004442 Imm = SplatBits;
4443 break;
4444 }
4445 if ((SplatBits & ~0xff00) == 0) {
4446 // Value = 0x0000nn00: Op=x, Cmode=001x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004447 OpCmode = 0x2;
Bob Wilson6eae5202010-06-11 21:34:50 +00004448 Imm = SplatBits >> 8;
4449 break;
4450 }
4451 if ((SplatBits & ~0xff0000) == 0) {
4452 // Value = 0x00nn0000: Op=x, Cmode=010x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004453 OpCmode = 0x4;
Bob Wilson6eae5202010-06-11 21:34:50 +00004454 Imm = SplatBits >> 16;
4455 break;
4456 }
4457 if ((SplatBits & ~0xff000000) == 0) {
4458 // Value = 0xnn000000: Op=x, Cmode=011x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004459 OpCmode = 0x6;
Bob Wilson6eae5202010-06-11 21:34:50 +00004460 Imm = SplatBits >> 24;
4461 break;
4462 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004463
Owen Andersona4076922010-11-05 21:57:54 +00004464 // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC
4465 if (type == OtherModImm) return SDValue();
4466
Bob Wilson2e076c42009-06-22 23:27:02 +00004467 if ((SplatBits & ~0xffff) == 0 &&
Bob Wilson6eae5202010-06-11 21:34:50 +00004468 ((SplatBits | SplatUndef) & 0xff) == 0xff) {
4469 // Value = 0x0000nnff: Op=x, Cmode=1100.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004470 OpCmode = 0xc;
Bob Wilson6eae5202010-06-11 21:34:50 +00004471 Imm = SplatBits >> 8;
Bob Wilson6eae5202010-06-11 21:34:50 +00004472 break;
4473 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004474
4475 if ((SplatBits & ~0xffffff) == 0 &&
Bob Wilson6eae5202010-06-11 21:34:50 +00004476 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
4477 // Value = 0x00nnffff: Op=x, Cmode=1101.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004478 OpCmode = 0xd;
Bob Wilson6eae5202010-06-11 21:34:50 +00004479 Imm = SplatBits >> 16;
Bob Wilson6eae5202010-06-11 21:34:50 +00004480 break;
4481 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004482
4483 // Note: there are a few 32-bit splat values (specifically: 00ffff00,
4484 // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
4485 // VMOV.I32. A (very) minor optimization would be to replicate the value
4486 // and fall through here to test for a valid 64-bit splat. But, then the
4487 // caller would also need to check and handle the change in size.
Bob Wilson6eae5202010-06-11 21:34:50 +00004488 return SDValue();
Bob Wilson2e076c42009-06-22 23:27:02 +00004489
4490 case 64: {
Owen Andersona4076922010-11-05 21:57:54 +00004491 if (type != VMOVModImm)
Bob Wilsonf3f7a772010-06-15 19:05:35 +00004492 return SDValue();
Bob Wilsonbad47f62010-07-14 06:31:50 +00004493 // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
Bob Wilson2e076c42009-06-22 23:27:02 +00004494 uint64_t BitMask = 0xff;
4495 uint64_t Val = 0;
Bob Wilson6eae5202010-06-11 21:34:50 +00004496 unsigned ImmMask = 1;
4497 Imm = 0;
Bob Wilson2e076c42009-06-22 23:27:02 +00004498 for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
Bob Wilson6eae5202010-06-11 21:34:50 +00004499 if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
Bob Wilson2e076c42009-06-22 23:27:02 +00004500 Val |= BitMask;
Bob Wilson6eae5202010-06-11 21:34:50 +00004501 Imm |= ImmMask;
4502 } else if ((SplatBits & BitMask) != 0) {
Bob Wilson2e076c42009-06-22 23:27:02 +00004503 return SDValue();
Bob Wilson6eae5202010-06-11 21:34:50 +00004504 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004505 BitMask <<= 8;
Bob Wilson6eae5202010-06-11 21:34:50 +00004506 ImmMask <<= 1;
Bob Wilson2e076c42009-06-22 23:27:02 +00004507 }
Christian Pirker6f81e752014-06-23 18:05:53 +00004508
4509 if (DAG.getTargetLoweringInfo().isBigEndian())
4510 // swap higher and lower 32 bit word
4511 Imm = ((Imm & 0xf) << 4) | ((Imm & 0xf0) >> 4);
4512
Bob Wilson6eae5202010-06-11 21:34:50 +00004513 // Op=1, Cmode=1110.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004514 OpCmode = 0x1e;
Bob Wilsona3f19012010-07-13 21:16:48 +00004515 VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
Bob Wilson2e076c42009-06-22 23:27:02 +00004516 break;
4517 }
4518
Bob Wilson6eae5202010-06-11 21:34:50 +00004519 default:
Bob Wilson0ae08932010-06-19 05:32:09 +00004520 llvm_unreachable("unexpected size for isNEONModifiedImm");
Bob Wilson6eae5202010-06-11 21:34:50 +00004521 }
4522
Bob Wilsona3f19012010-07-13 21:16:48 +00004523 unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm);
4524 return DAG.getTargetConstant(EncodedVal, MVT::i32);
Bob Wilson2e076c42009-06-22 23:27:02 +00004525}
4526
Lang Hames591cdaf2012-03-29 21:56:11 +00004527SDValue ARMTargetLowering::LowerConstantFP(SDValue Op, SelectionDAG &DAG,
4528 const ARMSubtarget *ST) const {
Tim Northoverf79c3a52013-08-20 08:57:11 +00004529 if (!ST->hasVFP3())
Lang Hames591cdaf2012-03-29 21:56:11 +00004530 return SDValue();
4531
Tim Northoverf79c3a52013-08-20 08:57:11 +00004532 bool IsDouble = Op.getValueType() == MVT::f64;
Lang Hames591cdaf2012-03-29 21:56:11 +00004533 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Op);
Lang Hames591cdaf2012-03-29 21:56:11 +00004534
4535 // Try splatting with a VMOV.f32...
4536 APFloat FPVal = CFP->getValueAPF();
Tim Northoverf79c3a52013-08-20 08:57:11 +00004537 int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal);
4538
Lang Hames591cdaf2012-03-29 21:56:11 +00004539 if (ImmVal != -1) {
Tim Northoverf79c3a52013-08-20 08:57:11 +00004540 if (IsDouble || !ST->useNEONForSinglePrecisionFP()) {
4541 // We have code in place to select a valid ConstantFP already, no need to
4542 // do any mangling.
4543 return Op;
4544 }
4545
4546 // It's a float and we are trying to use NEON operations where
4547 // possible. Lower it to a splat followed by an extract.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004548 SDLoc DL(Op);
Lang Hames591cdaf2012-03-29 21:56:11 +00004549 SDValue NewVal = DAG.getTargetConstant(ImmVal, MVT::i32);
4550 SDValue VecConstant = DAG.getNode(ARMISD::VMOVFPIMM, DL, MVT::v2f32,
4551 NewVal);
4552 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecConstant,
4553 DAG.getConstant(0, MVT::i32));
4554 }
4555
Tim Northoverf79c3a52013-08-20 08:57:11 +00004556 // The rest of our options are NEON only, make sure that's allowed before
4557 // proceeding..
4558 if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP()))
4559 return SDValue();
4560
Lang Hames591cdaf2012-03-29 21:56:11 +00004561 EVT VMovVT;
Tim Northoverf79c3a52013-08-20 08:57:11 +00004562 uint64_t iVal = FPVal.bitcastToAPInt().getZExtValue();
4563
4564 // It wouldn't really be worth bothering for doubles except for one very
4565 // important value, which does happen to match: 0.0. So make sure we don't do
4566 // anything stupid.
4567 if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32))
4568 return SDValue();
4569
4570 // Try a VMOV.i32 (FIXME: i8, i16, or i64 could work too).
4571 SDValue NewVal = isNEONModifiedImm(iVal & 0xffffffffU, 0, 32, DAG, VMovVT,
4572 false, VMOVModImm);
Lang Hames591cdaf2012-03-29 21:56:11 +00004573 if (NewVal != SDValue()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004574 SDLoc DL(Op);
Lang Hames591cdaf2012-03-29 21:56:11 +00004575 SDValue VecConstant = DAG.getNode(ARMISD::VMOVIMM, DL, VMovVT,
4576 NewVal);
Tim Northoverf79c3a52013-08-20 08:57:11 +00004577 if (IsDouble)
4578 return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4579
4580 // It's a float: cast and extract a vector element.
Lang Hames591cdaf2012-03-29 21:56:11 +00004581 SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4582 VecConstant);
4583 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4584 DAG.getConstant(0, MVT::i32));
4585 }
4586
4587 // Finally, try a VMVN.i32
Tim Northoverf79c3a52013-08-20 08:57:11 +00004588 NewVal = isNEONModifiedImm(~iVal & 0xffffffffU, 0, 32, DAG, VMovVT,
4589 false, VMVNModImm);
Lang Hames591cdaf2012-03-29 21:56:11 +00004590 if (NewVal != SDValue()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004591 SDLoc DL(Op);
Lang Hames591cdaf2012-03-29 21:56:11 +00004592 SDValue VecConstant = DAG.getNode(ARMISD::VMVNIMM, DL, VMovVT, NewVal);
Tim Northoverf79c3a52013-08-20 08:57:11 +00004593
4594 if (IsDouble)
4595 return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4596
4597 // It's a float: cast and extract a vector element.
Lang Hames591cdaf2012-03-29 21:56:11 +00004598 SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4599 VecConstant);
4600 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4601 DAG.getConstant(0, MVT::i32));
4602 }
4603
4604 return SDValue();
4605}
4606
Quentin Colombet8e1fe842012-11-02 21:32:17 +00004607// check if an VEXT instruction can handle the shuffle mask when the
4608// vector sources of the shuffle are the same.
4609static bool isSingletonVEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
4610 unsigned NumElts = VT.getVectorNumElements();
4611
4612 // Assume that the first shuffle index is not UNDEF. Fail if it is.
4613 if (M[0] < 0)
4614 return false;
4615
4616 Imm = M[0];
4617
4618 // If this is a VEXT shuffle, the immediate value is the index of the first
4619 // element. The other shuffle indices must be the successive elements after
4620 // the first one.
4621 unsigned ExpectedElt = Imm;
4622 for (unsigned i = 1; i < NumElts; ++i) {
4623 // Increment the expected index. If it wraps around, just follow it
4624 // back to index zero and keep going.
4625 ++ExpectedElt;
4626 if (ExpectedElt == NumElts)
4627 ExpectedElt = 0;
4628
4629 if (M[i] < 0) continue; // ignore UNDEF indices
4630 if (ExpectedElt != static_cast<unsigned>(M[i]))
4631 return false;
4632 }
4633
4634 return true;
4635}
4636
Lang Hames591cdaf2012-03-29 21:56:11 +00004637
Benjamin Kramer339ced42012-01-15 13:16:05 +00004638static bool isVEXTMask(ArrayRef<int> M, EVT VT,
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00004639 bool &ReverseVEXT, unsigned &Imm) {
Bob Wilson32cd8552009-08-19 17:03:43 +00004640 unsigned NumElts = VT.getVectorNumElements();
4641 ReverseVEXT = false;
Bob Wilson411dfad2010-08-17 05:54:34 +00004642
4643 // Assume that the first shuffle index is not UNDEF. Fail if it is.
4644 if (M[0] < 0)
4645 return false;
4646
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00004647 Imm = M[0];
Bob Wilson32cd8552009-08-19 17:03:43 +00004648
4649 // If this is a VEXT shuffle, the immediate value is the index of the first
4650 // element. The other shuffle indices must be the successive elements after
4651 // the first one.
4652 unsigned ExpectedElt = Imm;
4653 for (unsigned i = 1; i < NumElts; ++i) {
Bob Wilson32cd8552009-08-19 17:03:43 +00004654 // Increment the expected index. If it wraps around, it may still be
4655 // a VEXT but the source vectors must be swapped.
4656 ExpectedElt += 1;
4657 if (ExpectedElt == NumElts * 2) {
4658 ExpectedElt = 0;
4659 ReverseVEXT = true;
4660 }
4661
Bob Wilson411dfad2010-08-17 05:54:34 +00004662 if (M[i] < 0) continue; // ignore UNDEF indices
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00004663 if (ExpectedElt != static_cast<unsigned>(M[i]))
Bob Wilson32cd8552009-08-19 17:03:43 +00004664 return false;
4665 }
4666
4667 // Adjust the index value if the source operands will be swapped.
4668 if (ReverseVEXT)
4669 Imm -= NumElts;
4670
Bob Wilson32cd8552009-08-19 17:03:43 +00004671 return true;
4672}
4673
Bob Wilson8a37bbe2009-07-26 00:39:34 +00004674/// isVREVMask - Check if a vector shuffle corresponds to a VREV
4675/// instruction with the specified blocksize. (The order of the elements
4676/// within each block of the vector is reversed.)
Benjamin Kramer339ced42012-01-15 13:16:05 +00004677static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
Bob Wilson8a37bbe2009-07-26 00:39:34 +00004678 assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
4679 "Only possible block sizes for VREV are: 16, 32, 64");
4680
Bob Wilson8a37bbe2009-07-26 00:39:34 +00004681 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
Bob Wilson854530a2009-10-21 21:36:27 +00004682 if (EltSz == 64)
4683 return false;
4684
4685 unsigned NumElts = VT.getVectorNumElements();
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00004686 unsigned BlockElts = M[0] + 1;
Bob Wilson411dfad2010-08-17 05:54:34 +00004687 // If the first shuffle index is UNDEF, be optimistic.
4688 if (M[0] < 0)
4689 BlockElts = BlockSize / EltSz;
Bob Wilson8a37bbe2009-07-26 00:39:34 +00004690
4691 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
4692 return false;
4693
4694 for (unsigned i = 0; i < NumElts; ++i) {
Bob Wilson411dfad2010-08-17 05:54:34 +00004695 if (M[i] < 0) continue; // ignore UNDEF indices
4696 if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
Bob Wilson8a37bbe2009-07-26 00:39:34 +00004697 return false;
4698 }
4699
4700 return true;
4701}
4702
Benjamin Kramer339ced42012-01-15 13:16:05 +00004703static bool isVTBLMask(ArrayRef<int> M, EVT VT) {
Bill Wendling865f8b52011-03-15 21:15:20 +00004704 // We can handle <8 x i8> vector shuffles. If the index in the mask is out of
4705 // range, then 0 is placed into the resulting vector. So pretty much any mask
4706 // of 8 elements can work here.
4707 return VT == MVT::v8i8 && M.size() == 8;
4708}
4709
Benjamin Kramer339ced42012-01-15 13:16:05 +00004710static bool isVTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson854530a2009-10-21 21:36:27 +00004711 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4712 if (EltSz == 64)
4713 return false;
4714
Bob Wilsona7062312009-08-21 20:54:19 +00004715 unsigned NumElts = VT.getVectorNumElements();
4716 WhichResult = (M[0] == 0 ? 0 : 1);
4717 for (unsigned i = 0; i < NumElts; i += 2) {
Bob Wilson411dfad2010-08-17 05:54:34 +00004718 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
4719 (M[i+1] >= 0 && (unsigned) M[i+1] != i + NumElts + WhichResult))
Bob Wilsona7062312009-08-21 20:54:19 +00004720 return false;
4721 }
4722 return true;
4723}
4724
Bob Wilson0bbd3072009-12-03 06:40:55 +00004725/// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
4726/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4727/// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
Benjamin Kramer339ced42012-01-15 13:16:05 +00004728static bool isVTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson0bbd3072009-12-03 06:40:55 +00004729 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4730 if (EltSz == 64)
4731 return false;
4732
4733 unsigned NumElts = VT.getVectorNumElements();
4734 WhichResult = (M[0] == 0 ? 0 : 1);
4735 for (unsigned i = 0; i < NumElts; i += 2) {
Bob Wilson411dfad2010-08-17 05:54:34 +00004736 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
4737 (M[i+1] >= 0 && (unsigned) M[i+1] != i + WhichResult))
Bob Wilson0bbd3072009-12-03 06:40:55 +00004738 return false;
4739 }
4740 return true;
4741}
4742
Benjamin Kramer339ced42012-01-15 13:16:05 +00004743static bool isVUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson854530a2009-10-21 21:36:27 +00004744 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4745 if (EltSz == 64)
4746 return false;
4747
Bob Wilsona7062312009-08-21 20:54:19 +00004748 unsigned NumElts = VT.getVectorNumElements();
4749 WhichResult = (M[0] == 0 ? 0 : 1);
4750 for (unsigned i = 0; i != NumElts; ++i) {
Bob Wilson411dfad2010-08-17 05:54:34 +00004751 if (M[i] < 0) continue; // ignore UNDEF indices
Bob Wilsona7062312009-08-21 20:54:19 +00004752 if ((unsigned) M[i] != 2 * i + WhichResult)
4753 return false;
4754 }
4755
4756 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
Bob Wilson854530a2009-10-21 21:36:27 +00004757 if (VT.is64BitVector() && EltSz == 32)
Bob Wilsona7062312009-08-21 20:54:19 +00004758 return false;
4759
4760 return true;
4761}
4762
Bob Wilson0bbd3072009-12-03 06:40:55 +00004763/// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
4764/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4765/// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
Benjamin Kramer339ced42012-01-15 13:16:05 +00004766static bool isVUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson0bbd3072009-12-03 06:40:55 +00004767 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4768 if (EltSz == 64)
4769 return false;
4770
4771 unsigned Half = VT.getVectorNumElements() / 2;
4772 WhichResult = (M[0] == 0 ? 0 : 1);
4773 for (unsigned j = 0; j != 2; ++j) {
4774 unsigned Idx = WhichResult;
4775 for (unsigned i = 0; i != Half; ++i) {
Bob Wilson411dfad2010-08-17 05:54:34 +00004776 int MIdx = M[i + j * Half];
4777 if (MIdx >= 0 && (unsigned) MIdx != Idx)
Bob Wilson0bbd3072009-12-03 06:40:55 +00004778 return false;
4779 Idx += 2;
4780 }
4781 }
4782
4783 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4784 if (VT.is64BitVector() && EltSz == 32)
4785 return false;
4786
4787 return true;
4788}
4789
Benjamin Kramer339ced42012-01-15 13:16:05 +00004790static bool isVZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson854530a2009-10-21 21:36:27 +00004791 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4792 if (EltSz == 64)
4793 return false;
4794
Bob Wilsona7062312009-08-21 20:54:19 +00004795 unsigned NumElts = VT.getVectorNumElements();
4796 WhichResult = (M[0] == 0 ? 0 : 1);
4797 unsigned Idx = WhichResult * NumElts / 2;
4798 for (unsigned i = 0; i != NumElts; i += 2) {
Bob Wilson411dfad2010-08-17 05:54:34 +00004799 if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
4800 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx + NumElts))
Bob Wilsona7062312009-08-21 20:54:19 +00004801 return false;
4802 Idx += 1;
4803 }
4804
4805 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
Bob Wilson854530a2009-10-21 21:36:27 +00004806 if (VT.is64BitVector() && EltSz == 32)
Bob Wilsona7062312009-08-21 20:54:19 +00004807 return false;
4808
4809 return true;
4810}
4811
Bob Wilson0bbd3072009-12-03 06:40:55 +00004812/// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
4813/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4814/// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
Benjamin Kramer339ced42012-01-15 13:16:05 +00004815static bool isVZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson0bbd3072009-12-03 06:40:55 +00004816 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4817 if (EltSz == 64)
4818 return false;
4819
4820 unsigned NumElts = VT.getVectorNumElements();
4821 WhichResult = (M[0] == 0 ? 0 : 1);
4822 unsigned Idx = WhichResult * NumElts / 2;
4823 for (unsigned i = 0; i != NumElts; i += 2) {
Bob Wilson411dfad2010-08-17 05:54:34 +00004824 if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
4825 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx))
Bob Wilson0bbd3072009-12-03 06:40:55 +00004826 return false;
4827 Idx += 1;
4828 }
4829
4830 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4831 if (VT.is64BitVector() && EltSz == 32)
4832 return false;
4833
4834 return true;
4835}
4836
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00004837/// \return true if this is a reverse operation on an vector.
4838static bool isReverseMask(ArrayRef<int> M, EVT VT) {
4839 unsigned NumElts = VT.getVectorNumElements();
4840 // Make sure the mask has the right size.
4841 if (NumElts != M.size())
4842 return false;
4843
4844 // Look for <15, ..., 3, -1, 1, 0>.
4845 for (unsigned i = 0; i != NumElts; ++i)
4846 if (M[i] >= 0 && M[i] != (int) (NumElts - 1 - i))
4847 return false;
4848
4849 return true;
4850}
4851
Dale Johannesen2bff5052010-07-29 20:10:08 +00004852// If N is an integer constant that can be moved into a register in one
4853// instruction, return an SDValue of such a constant (will become a MOV
4854// instruction). Otherwise return null.
4855static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00004856 const ARMSubtarget *ST, SDLoc dl) {
Dale Johannesen2bff5052010-07-29 20:10:08 +00004857 uint64_t Val;
4858 if (!isa<ConstantSDNode>(N))
4859 return SDValue();
4860 Val = cast<ConstantSDNode>(N)->getZExtValue();
4861
4862 if (ST->isThumb1Only()) {
4863 if (Val <= 255 || ~Val <= 255)
4864 return DAG.getConstant(Val, MVT::i32);
4865 } else {
4866 if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1)
4867 return DAG.getConstant(Val, MVT::i32);
4868 }
4869 return SDValue();
4870}
4871
Bob Wilson2e076c42009-06-22 23:27:02 +00004872// If this is a case we can't handle, return null and let the default
4873// expansion code take care of it.
Bob Wilson6f2b8962011-01-07 21:37:30 +00004874SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
4875 const ARMSubtarget *ST) const {
Bob Wilsonfcd63612009-08-13 01:57:47 +00004876 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00004877 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004878 EVT VT = Op.getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +00004879
4880 APInt SplatBits, SplatUndef;
4881 unsigned SplatBitSize;
4882 bool HasAnyUndefs;
4883 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
Anton Korobeynikovece642a2009-08-29 00:08:18 +00004884 if (SplatBitSize <= 64) {
Bob Wilson5b2b5042010-06-14 22:19:57 +00004885 // Check if an immediate VMOV works.
Bob Wilsona3f19012010-07-13 21:16:48 +00004886 EVT VmovVT;
Bob Wilson5b2b5042010-06-14 22:19:57 +00004887 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
Bob Wilsona3f19012010-07-13 21:16:48 +00004888 SplatUndef.getZExtValue(), SplatBitSize,
Owen Andersona4076922010-11-05 21:57:54 +00004889 DAG, VmovVT, VT.is128BitVector(),
4890 VMOVModImm);
Bob Wilsona3f19012010-07-13 21:16:48 +00004891 if (Val.getNode()) {
4892 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val);
Wesley Peck527da1b2010-11-23 03:31:01 +00004893 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilsona3f19012010-07-13 21:16:48 +00004894 }
Bob Wilsonbad47f62010-07-14 06:31:50 +00004895
4896 // Try an immediate VMVN.
Eli Friedmanaa6ec392011-10-13 22:40:23 +00004897 uint64_t NegatedImm = (~SplatBits).getZExtValue();
Bob Wilsonbad47f62010-07-14 06:31:50 +00004898 Val = isNEONModifiedImm(NegatedImm,
4899 SplatUndef.getZExtValue(), SplatBitSize,
Wesley Peck527da1b2010-11-23 03:31:01 +00004900 DAG, VmovVT, VT.is128BitVector(),
Owen Andersona4076922010-11-05 21:57:54 +00004901 VMVNModImm);
Bob Wilsonbad47f62010-07-14 06:31:50 +00004902 if (Val.getNode()) {
4903 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val);
Wesley Peck527da1b2010-11-23 03:31:01 +00004904 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilsonbad47f62010-07-14 06:31:50 +00004905 }
Evan Cheng7ca4b6e2011-11-15 02:12:34 +00004906
4907 // Use vmov.f32 to materialize other v2f32 and v4f32 splats.
Eli Friedmanc9bf1b12011-12-15 22:56:53 +00004908 if ((VT == MVT::v2f32 || VT == MVT::v4f32) && SplatBitSize == 32) {
Eli Friedman4e36a932011-12-09 23:54:42 +00004909 int ImmVal = ARM_AM::getFP32Imm(SplatBits);
Evan Cheng7ca4b6e2011-11-15 02:12:34 +00004910 if (ImmVal != -1) {
4911 SDValue Val = DAG.getTargetConstant(ImmVal, MVT::i32);
4912 return DAG.getNode(ARMISD::VMOVFPIMM, dl, VT, Val);
4913 }
4914 }
Anton Korobeynikovece642a2009-08-29 00:08:18 +00004915 }
Bob Wilson0dbdec82009-07-30 00:31:25 +00004916 }
4917
Bob Wilson91fdf682010-05-22 00:23:12 +00004918 // Scan through the operands to see if only one value is used.
James Molloy49bdbce2012-09-06 09:55:02 +00004919 //
4920 // As an optimisation, even if more than one value is used it may be more
4921 // profitable to splat with one value then change some lanes.
4922 //
4923 // Heuristically we decide to do this if the vector has a "dominant" value,
4924 // defined as splatted to more than half of the lanes.
Bob Wilson91fdf682010-05-22 00:23:12 +00004925 unsigned NumElts = VT.getVectorNumElements();
4926 bool isOnlyLowElement = true;
4927 bool usesOnlyOneValue = true;
James Molloy49bdbce2012-09-06 09:55:02 +00004928 bool hasDominantValue = false;
Bob Wilson91fdf682010-05-22 00:23:12 +00004929 bool isConstant = true;
James Molloy49bdbce2012-09-06 09:55:02 +00004930
4931 // Map of the number of times a particular SDValue appears in the
4932 // element list.
James Molloy9d30dc22012-09-06 10:32:08 +00004933 DenseMap<SDValue, unsigned> ValueCounts;
Bob Wilson91fdf682010-05-22 00:23:12 +00004934 SDValue Value;
4935 for (unsigned i = 0; i < NumElts; ++i) {
4936 SDValue V = Op.getOperand(i);
4937 if (V.getOpcode() == ISD::UNDEF)
4938 continue;
4939 if (i > 0)
4940 isOnlyLowElement = false;
4941 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
4942 isConstant = false;
4943
James Molloy49bdbce2012-09-06 09:55:02 +00004944 ValueCounts.insert(std::make_pair(V, 0));
James Molloy9d30dc22012-09-06 10:32:08 +00004945 unsigned &Count = ValueCounts[V];
Jim Grosbach54efea02013-03-02 20:16:15 +00004946
James Molloy49bdbce2012-09-06 09:55:02 +00004947 // Is this value dominant? (takes up more than half of the lanes)
4948 if (++Count > (NumElts / 2)) {
4949 hasDominantValue = true;
Bob Wilson91fdf682010-05-22 00:23:12 +00004950 Value = V;
James Molloy49bdbce2012-09-06 09:55:02 +00004951 }
Bob Wilson91fdf682010-05-22 00:23:12 +00004952 }
James Molloy49bdbce2012-09-06 09:55:02 +00004953 if (ValueCounts.size() != 1)
4954 usesOnlyOneValue = false;
4955 if (!Value.getNode() && ValueCounts.size() > 0)
4956 Value = ValueCounts.begin()->first;
Bob Wilson91fdf682010-05-22 00:23:12 +00004957
James Molloy49bdbce2012-09-06 09:55:02 +00004958 if (ValueCounts.size() == 0)
Bob Wilson91fdf682010-05-22 00:23:12 +00004959 return DAG.getUNDEF(VT);
4960
Quentin Colombet0f2fe742013-07-23 22:34:47 +00004961 // Loads are better lowered with insert_vector_elt/ARMISD::BUILD_VECTOR.
4962 // Keep going if we are hitting this case.
4963 if (isOnlyLowElement && !ISD::isNormalLoad(Value.getNode()))
Bob Wilson91fdf682010-05-22 00:23:12 +00004964 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
4965
Dale Johannesen2bff5052010-07-29 20:10:08 +00004966 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4967
Dale Johannesen710a2d92010-10-19 20:00:17 +00004968 // Use VDUP for non-constant splats. For f32 constant splats, reduce to
4969 // i32 and try again.
James Molloy49bdbce2012-09-06 09:55:02 +00004970 if (hasDominantValue && EltSize <= 32) {
4971 if (!isConstant) {
4972 SDValue N;
4973
4974 // If we are VDUPing a value that comes directly from a vector, that will
4975 // cause an unnecessary move to and from a GPR, where instead we could
Jim Grosbacha3c5c762013-03-02 20:16:24 +00004976 // just use VDUPLANE. We can only do this if the lane being extracted
4977 // is at a constant index, as the VDUP from lane instructions only have
4978 // constant-index forms.
4979 if (Value->getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
4980 isa<ConstantSDNode>(Value->getOperand(1))) {
Silviu Barangab1409702012-10-15 09:41:32 +00004981 // We need to create a new undef vector to use for the VDUPLANE if the
4982 // size of the vector from which we get the value is different than the
4983 // size of the vector that we need to create. We will insert the element
4984 // such that the register coalescer will remove unnecessary copies.
4985 if (VT != Value->getOperand(0).getValueType()) {
4986 ConstantSDNode *constIndex;
4987 constIndex = dyn_cast<ConstantSDNode>(Value->getOperand(1));
4988 assert(constIndex && "The index is not a constant!");
4989 unsigned index = constIndex->getAPIntValue().getLimitedValue() %
4990 VT.getVectorNumElements();
4991 N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
4992 DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DAG.getUNDEF(VT),
4993 Value, DAG.getConstant(index, MVT::i32)),
4994 DAG.getConstant(index, MVT::i32));
Jim Grosbachc6f19142013-03-02 20:16:19 +00004995 } else
Silviu Barangab1409702012-10-15 09:41:32 +00004996 N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
James Molloy49bdbce2012-09-06 09:55:02 +00004997 Value->getOperand(0), Value->getOperand(1));
Jim Grosbachc6f19142013-03-02 20:16:19 +00004998 } else
James Molloy49bdbce2012-09-06 09:55:02 +00004999 N = DAG.getNode(ARMISD::VDUP, dl, VT, Value);
5000
5001 if (!usesOnlyOneValue) {
5002 // The dominant value was splatted as 'N', but we now have to insert
5003 // all differing elements.
5004 for (unsigned I = 0; I < NumElts; ++I) {
5005 if (Op.getOperand(I) == Value)
5006 continue;
5007 SmallVector<SDValue, 3> Ops;
5008 Ops.push_back(N);
5009 Ops.push_back(Op.getOperand(I));
5010 Ops.push_back(DAG.getConstant(I, MVT::i32));
Craig Topper48d114b2014-04-26 18:35:24 +00005011 N = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Ops);
James Molloy49bdbce2012-09-06 09:55:02 +00005012 }
5013 }
5014 return N;
5015 }
Dale Johannesen710a2d92010-10-19 20:00:17 +00005016 if (VT.getVectorElementType().isFloatingPoint()) {
5017 SmallVector<SDValue, 8> Ops;
5018 for (unsigned i = 0; i < NumElts; ++i)
Wesley Peck527da1b2010-11-23 03:31:01 +00005019 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32,
Dale Johannesen710a2d92010-10-19 20:00:17 +00005020 Op.getOperand(i)));
Nate Begemanca524112010-11-10 21:35:41 +00005021 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
Craig Topper48d114b2014-04-26 18:35:24 +00005022 SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops);
Dale Johannesenff376752010-10-20 22:03:37 +00005023 Val = LowerBUILD_VECTOR(Val, DAG, ST);
5024 if (Val.getNode())
Wesley Peck527da1b2010-11-23 03:31:01 +00005025 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Dale Johannesen2bff5052010-07-29 20:10:08 +00005026 }
James Molloy49bdbce2012-09-06 09:55:02 +00005027 if (usesOnlyOneValue) {
5028 SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl);
5029 if (isConstant && Val.getNode())
Jim Grosbach54efea02013-03-02 20:16:15 +00005030 return DAG.getNode(ARMISD::VDUP, dl, VT, Val);
James Molloy49bdbce2012-09-06 09:55:02 +00005031 }
Dale Johannesen2bff5052010-07-29 20:10:08 +00005032 }
5033
5034 // If all elements are constants and the case above didn't get hit, fall back
5035 // to the default expansion, which will generate a load from the constant
5036 // pool.
Bob Wilson91fdf682010-05-22 00:23:12 +00005037 if (isConstant)
5038 return SDValue();
5039
Bob Wilson6f2b8962011-01-07 21:37:30 +00005040 // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
5041 if (NumElts >= 4) {
5042 SDValue shuffle = ReconstructShuffle(Op, DAG);
5043 if (shuffle != SDValue())
5044 return shuffle;
5045 }
5046
Bob Wilson91fdf682010-05-22 00:23:12 +00005047 // Vectors with 32- or 64-bit elements can be built by directly assigning
Bob Wilsond8a9a042010-06-04 00:04:02 +00005048 // the subregisters. Lower it to an ARMISD::BUILD_VECTOR so the operands
5049 // will be legalized.
Bob Wilson91fdf682010-05-22 00:23:12 +00005050 if (EltSize >= 32) {
5051 // Do the expansion with floating-point types, since that is what the VFP
5052 // registers are defined to use, and since i64 is not legal.
5053 EVT EltVT = EVT::getFloatingPointVT(EltSize);
5054 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
Bob Wilsond8a9a042010-06-04 00:04:02 +00005055 SmallVector<SDValue, 8> Ops;
5056 for (unsigned i = 0; i < NumElts; ++i)
Wesley Peck527da1b2010-11-23 03:31:01 +00005057 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i)));
Craig Topper48d114b2014-04-26 18:35:24 +00005058 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00005059 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Bob Wilson2e076c42009-06-22 23:27:02 +00005060 }
5061
Jim Grosbach24e102a2013-07-08 18:18:52 +00005062 // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
5063 // know the default expansion would otherwise fall back on something even
5064 // worse. For a vector with one or two non-undef values, that's
5065 // scalar_to_vector for the elements followed by a shuffle (provided the
5066 // shuffle is valid for the target) and materialization element by element
5067 // on the stack followed by a load for everything else.
5068 if (!isConstant && !usesOnlyOneValue) {
5069 SDValue Vec = DAG.getUNDEF(VT);
5070 for (unsigned i = 0 ; i < NumElts; ++i) {
5071 SDValue V = Op.getOperand(i);
5072 if (V.getOpcode() == ISD::UNDEF)
5073 continue;
5074 SDValue LaneIdx = DAG.getConstant(i, MVT::i32);
5075 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
5076 }
5077 return Vec;
5078 }
5079
Bob Wilson2e076c42009-06-22 23:27:02 +00005080 return SDValue();
5081}
5082
Bob Wilson6f2b8962011-01-07 21:37:30 +00005083// Gather data to see if the operation can be modelled as a
Andrew Trick5eb0a302011-01-19 02:26:13 +00005084// shuffle in combination with VEXTs.
Eric Christopher2af95512011-01-14 23:50:53 +00005085SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op,
5086 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005087 SDLoc dl(Op);
Bob Wilson6f2b8962011-01-07 21:37:30 +00005088 EVT VT = Op.getValueType();
5089 unsigned NumElts = VT.getVectorNumElements();
5090
5091 SmallVector<SDValue, 2> SourceVecs;
5092 SmallVector<unsigned, 2> MinElts;
5093 SmallVector<unsigned, 2> MaxElts;
Andrew Trick5eb0a302011-01-19 02:26:13 +00005094
Bob Wilson6f2b8962011-01-07 21:37:30 +00005095 for (unsigned i = 0; i < NumElts; ++i) {
5096 SDValue V = Op.getOperand(i);
5097 if (V.getOpcode() == ISD::UNDEF)
5098 continue;
5099 else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
5100 // A shuffle can only come from building a vector from various
5101 // elements of other vectors.
5102 return SDValue();
Eli Friedman74d1da52011-10-14 23:58:49 +00005103 } else if (V.getOperand(0).getValueType().getVectorElementType() !=
5104 VT.getVectorElementType()) {
5105 // This code doesn't know how to handle shuffles where the vector
5106 // element types do not match (this happens because type legalization
5107 // promotes the return type of EXTRACT_VECTOR_ELT).
5108 // FIXME: It might be appropriate to extend this code to handle
5109 // mismatched types.
5110 return SDValue();
Bob Wilson6f2b8962011-01-07 21:37:30 +00005111 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005112
Bob Wilson6f2b8962011-01-07 21:37:30 +00005113 // Record this extraction against the appropriate vector if possible...
5114 SDValue SourceVec = V.getOperand(0);
Jim Grosbach6df755c2012-07-25 17:02:47 +00005115 // If the element number isn't a constant, we can't effectively
5116 // analyze what's going on.
5117 if (!isa<ConstantSDNode>(V.getOperand(1)))
5118 return SDValue();
Bob Wilson6f2b8962011-01-07 21:37:30 +00005119 unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
5120 bool FoundSource = false;
5121 for (unsigned j = 0; j < SourceVecs.size(); ++j) {
5122 if (SourceVecs[j] == SourceVec) {
5123 if (MinElts[j] > EltNo)
5124 MinElts[j] = EltNo;
5125 if (MaxElts[j] < EltNo)
5126 MaxElts[j] = EltNo;
5127 FoundSource = true;
5128 break;
5129 }
5130 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005131
Bob Wilson6f2b8962011-01-07 21:37:30 +00005132 // Or record a new source if not...
5133 if (!FoundSource) {
5134 SourceVecs.push_back(SourceVec);
5135 MinElts.push_back(EltNo);
5136 MaxElts.push_back(EltNo);
5137 }
5138 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005139
Bob Wilson6f2b8962011-01-07 21:37:30 +00005140 // Currently only do something sane when at most two source vectors
5141 // involved.
5142 if (SourceVecs.size() > 2)
5143 return SDValue();
5144
5145 SDValue ShuffleSrcs[2] = {DAG.getUNDEF(VT), DAG.getUNDEF(VT) };
5146 int VEXTOffsets[2] = {0, 0};
Andrew Trick5eb0a302011-01-19 02:26:13 +00005147
Bob Wilson6f2b8962011-01-07 21:37:30 +00005148 // This loop extracts the usage patterns of the source vectors
5149 // and prepares appropriate SDValues for a shuffle if possible.
5150 for (unsigned i = 0; i < SourceVecs.size(); ++i) {
5151 if (SourceVecs[i].getValueType() == VT) {
5152 // No VEXT necessary
5153 ShuffleSrcs[i] = SourceVecs[i];
5154 VEXTOffsets[i] = 0;
5155 continue;
5156 } else if (SourceVecs[i].getValueType().getVectorNumElements() < NumElts) {
5157 // It probably isn't worth padding out a smaller vector just to
5158 // break it down again in a shuffle.
5159 return SDValue();
5160 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005161
Bob Wilson6f2b8962011-01-07 21:37:30 +00005162 // Since only 64-bit and 128-bit vectors are legal on ARM and
5163 // we've eliminated the other cases...
Bob Wilson3fa9c062011-01-07 23:40:46 +00005164 assert(SourceVecs[i].getValueType().getVectorNumElements() == 2*NumElts &&
5165 "unexpected vector sizes in ReconstructShuffle");
Andrew Trick5eb0a302011-01-19 02:26:13 +00005166
Bob Wilson6f2b8962011-01-07 21:37:30 +00005167 if (MaxElts[i] - MinElts[i] >= NumElts) {
5168 // Span too large for a VEXT to cope
5169 return SDValue();
Andrew Trick5eb0a302011-01-19 02:26:13 +00005170 }
5171
Bob Wilson6f2b8962011-01-07 21:37:30 +00005172 if (MinElts[i] >= NumElts) {
5173 // The extraction can just take the second half
5174 VEXTOffsets[i] = NumElts;
Eric Christopher2af95512011-01-14 23:50:53 +00005175 ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5176 SourceVecs[i],
Bob Wilson6f2b8962011-01-07 21:37:30 +00005177 DAG.getIntPtrConstant(NumElts));
5178 } else if (MaxElts[i] < NumElts) {
5179 // The extraction can just take the first half
5180 VEXTOffsets[i] = 0;
Eric Christopher2af95512011-01-14 23:50:53 +00005181 ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5182 SourceVecs[i],
Bob Wilson6f2b8962011-01-07 21:37:30 +00005183 DAG.getIntPtrConstant(0));
5184 } else {
5185 // An actual VEXT is needed
5186 VEXTOffsets[i] = MinElts[i];
Eric Christopher2af95512011-01-14 23:50:53 +00005187 SDValue VEXTSrc1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5188 SourceVecs[i],
Bob Wilson6f2b8962011-01-07 21:37:30 +00005189 DAG.getIntPtrConstant(0));
Eric Christopher2af95512011-01-14 23:50:53 +00005190 SDValue VEXTSrc2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5191 SourceVecs[i],
Bob Wilson6f2b8962011-01-07 21:37:30 +00005192 DAG.getIntPtrConstant(NumElts));
5193 ShuffleSrcs[i] = DAG.getNode(ARMISD::VEXT, dl, VT, VEXTSrc1, VEXTSrc2,
5194 DAG.getConstant(VEXTOffsets[i], MVT::i32));
5195 }
5196 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005197
Bob Wilson6f2b8962011-01-07 21:37:30 +00005198 SmallVector<int, 8> Mask;
Andrew Trick5eb0a302011-01-19 02:26:13 +00005199
Bob Wilson6f2b8962011-01-07 21:37:30 +00005200 for (unsigned i = 0; i < NumElts; ++i) {
5201 SDValue Entry = Op.getOperand(i);
5202 if (Entry.getOpcode() == ISD::UNDEF) {
5203 Mask.push_back(-1);
5204 continue;
5205 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005206
Bob Wilson6f2b8962011-01-07 21:37:30 +00005207 SDValue ExtractVec = Entry.getOperand(0);
Eric Christopher2af95512011-01-14 23:50:53 +00005208 int ExtractElt = cast<ConstantSDNode>(Op.getOperand(i)
5209 .getOperand(1))->getSExtValue();
Bob Wilson6f2b8962011-01-07 21:37:30 +00005210 if (ExtractVec == SourceVecs[0]) {
5211 Mask.push_back(ExtractElt - VEXTOffsets[0]);
5212 } else {
5213 Mask.push_back(ExtractElt + NumElts - VEXTOffsets[1]);
5214 }
5215 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005216
Bob Wilson6f2b8962011-01-07 21:37:30 +00005217 // Final check before we try to produce nonsense...
5218 if (isShuffleMaskLegal(Mask, VT))
Eric Christopher2af95512011-01-14 23:50:53 +00005219 return DAG.getVectorShuffle(VT, dl, ShuffleSrcs[0], ShuffleSrcs[1],
5220 &Mask[0]);
Andrew Trick5eb0a302011-01-19 02:26:13 +00005221
Bob Wilson6f2b8962011-01-07 21:37:30 +00005222 return SDValue();
5223}
5224
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005225/// isShuffleMaskLegal - Targets can use this to indicate that they only
5226/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
5227/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
5228/// are assumed to be legal.
5229bool
5230ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
5231 EVT VT) const {
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005232 if (VT.getVectorNumElements() == 4 &&
5233 (VT.is128BitVector() || VT.is64BitVector())) {
5234 unsigned PFIndexes[4];
5235 for (unsigned i = 0; i != 4; ++i) {
5236 if (M[i] < 0)
5237 PFIndexes[i] = 8;
5238 else
5239 PFIndexes[i] = M[i];
5240 }
5241
5242 // Compute the index in the perfect shuffle table.
5243 unsigned PFTableIndex =
5244 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5245 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5246 unsigned Cost = (PFEntry >> 30);
5247
5248 if (Cost <= 4)
5249 return true;
5250 }
5251
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005252 bool ReverseVEXT;
Bob Wilsona7062312009-08-21 20:54:19 +00005253 unsigned Imm, WhichResult;
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005254
Bob Wilson846bd792010-06-07 23:53:38 +00005255 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5256 return (EltSize >= 32 ||
5257 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005258 isVREVMask(M, VT, 64) ||
5259 isVREVMask(M, VT, 32) ||
5260 isVREVMask(M, VT, 16) ||
Bob Wilsona7062312009-08-21 20:54:19 +00005261 isVEXTMask(M, VT, ReverseVEXT, Imm) ||
Bill Wendling865f8b52011-03-15 21:15:20 +00005262 isVTBLMask(M, VT) ||
Bob Wilsona7062312009-08-21 20:54:19 +00005263 isVTRNMask(M, VT, WhichResult) ||
5264 isVUZPMask(M, VT, WhichResult) ||
Bob Wilson0bbd3072009-12-03 06:40:55 +00005265 isVZIPMask(M, VT, WhichResult) ||
5266 isVTRN_v_undef_Mask(M, VT, WhichResult) ||
5267 isVUZP_v_undef_Mask(M, VT, WhichResult) ||
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00005268 isVZIP_v_undef_Mask(M, VT, WhichResult) ||
5269 ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(M, VT)));
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005270}
5271
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005272/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5273/// the specified operations to build the shuffle.
5274static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5275 SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005276 SDLoc dl) {
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005277 unsigned OpNum = (PFEntry >> 26) & 0x0F;
5278 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
5279 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
5280
5281 enum {
5282 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5283 OP_VREV,
5284 OP_VDUP0,
5285 OP_VDUP1,
5286 OP_VDUP2,
5287 OP_VDUP3,
5288 OP_VEXT1,
5289 OP_VEXT2,
5290 OP_VEXT3,
5291 OP_VUZPL, // VUZP, left result
5292 OP_VUZPR, // VUZP, right result
5293 OP_VZIPL, // VZIP, left result
5294 OP_VZIPR, // VZIP, right result
5295 OP_VTRNL, // VTRN, left result
5296 OP_VTRNR // VTRN, right result
5297 };
5298
5299 if (OpNum == OP_COPY) {
5300 if (LHSID == (1*9+2)*9+3) return LHS;
5301 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5302 return RHS;
5303 }
5304
5305 SDValue OpLHS, OpRHS;
5306 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5307 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5308 EVT VT = OpLHS.getValueType();
5309
5310 switch (OpNum) {
5311 default: llvm_unreachable("Unknown shuffle opcode!");
5312 case OP_VREV:
Tanya Lattner48b182c2011-05-18 06:42:21 +00005313 // VREV divides the vector in half and swaps within the half.
Tanya Lattner1d117202011-05-18 21:44:54 +00005314 if (VT.getVectorElementType() == MVT::i32 ||
5315 VT.getVectorElementType() == MVT::f32)
Tanya Lattner48b182c2011-05-18 06:42:21 +00005316 return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
5317 // vrev <4 x i16> -> VREV32
5318 if (VT.getVectorElementType() == MVT::i16)
5319 return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS);
5320 // vrev <4 x i8> -> VREV16
5321 assert(VT.getVectorElementType() == MVT::i8);
5322 return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS);
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005323 case OP_VDUP0:
5324 case OP_VDUP1:
5325 case OP_VDUP2:
5326 case OP_VDUP3:
5327 return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00005328 OpLHS, DAG.getConstant(OpNum-OP_VDUP0, MVT::i32));
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005329 case OP_VEXT1:
5330 case OP_VEXT2:
5331 case OP_VEXT3:
5332 return DAG.getNode(ARMISD::VEXT, dl, VT,
5333 OpLHS, OpRHS,
5334 DAG.getConstant(OpNum-OP_VEXT1+1, MVT::i32));
5335 case OP_VUZPL:
5336 case OP_VUZPR:
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00005337 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005338 OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
5339 case OP_VZIPL:
5340 case OP_VZIPR:
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00005341 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005342 OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
5343 case OP_VTRNL:
5344 case OP_VTRNR:
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00005345 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5346 OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005347 }
5348}
5349
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00005350static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op,
Benjamin Kramer339ced42012-01-15 13:16:05 +00005351 ArrayRef<int> ShuffleMask,
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00005352 SelectionDAG &DAG) {
5353 // Check to see if we can use the VTBL instruction.
5354 SDValue V1 = Op.getOperand(0);
5355 SDValue V2 = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005356 SDLoc DL(Op);
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00005357
5358 SmallVector<SDValue, 8> VTBLMask;
Benjamin Kramer339ced42012-01-15 13:16:05 +00005359 for (ArrayRef<int>::iterator
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00005360 I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I)
5361 VTBLMask.push_back(DAG.getConstant(*I, MVT::i32));
5362
5363 if (V2.getNode()->getOpcode() == ISD::UNDEF)
5364 return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1,
Craig Topper48d114b2014-04-26 18:35:24 +00005365 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
Bill Wendlingebecb332011-03-15 20:47:26 +00005366
Owen Anderson77aa2662011-04-05 21:48:57 +00005367 return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2,
Craig Topper48d114b2014-04-26 18:35:24 +00005368 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00005369}
5370
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00005371static SDValue LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(SDValue Op,
5372 SelectionDAG &DAG) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005373 SDLoc DL(Op);
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00005374 SDValue OpLHS = Op.getOperand(0);
5375 EVT VT = OpLHS.getValueType();
5376
5377 assert((VT == MVT::v8i16 || VT == MVT::v16i8) &&
5378 "Expect an v8i16/v16i8 type");
5379 OpLHS = DAG.getNode(ARMISD::VREV64, DL, VT, OpLHS);
5380 // For a v16i8 type: After the VREV, we have got <8, ...15, 8, ..., 0>. Now,
5381 // extract the first 8 bytes into the top double word and the last 8 bytes
5382 // into the bottom double word. The v8i16 case is similar.
5383 unsigned ExtractNum = (VT == MVT::v16i8) ? 8 : 4;
5384 return DAG.getNode(ARMISD::VEXT, DL, VT, OpLHS, OpLHS,
5385 DAG.getConstant(ExtractNum, MVT::i32));
5386}
5387
Bob Wilson2e076c42009-06-22 23:27:02 +00005388static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005389 SDValue V1 = Op.getOperand(0);
5390 SDValue V2 = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00005391 SDLoc dl(Op);
Bob Wilsonea3a4022009-08-12 22:31:50 +00005392 EVT VT = Op.getValueType();
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005393 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
Bob Wilsonea3a4022009-08-12 22:31:50 +00005394
Bob Wilsonc6800b52009-08-13 02:13:04 +00005395 // Convert shuffles that are directly supported on NEON to target-specific
5396 // DAG nodes, instead of keeping them as shuffles and matching them again
5397 // during code selection. This is more efficient and avoids the possibility
5398 // of inconsistencies between legalization and selection.
Bob Wilson3e4c0122009-08-13 06:01:30 +00005399 // FIXME: floating-point vectors should be canonicalized to integer vectors
5400 // of the same time so that they get CSEd properly.
Benjamin Kramer339ced42012-01-15 13:16:05 +00005401 ArrayRef<int> ShuffleMask = SVN->getMask();
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005402
Bob Wilson846bd792010-06-07 23:53:38 +00005403 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5404 if (EltSize <= 32) {
5405 if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
5406 int Lane = SVN->getSplatIndex();
5407 // If this is undef splat, generate it via "just" vdup, if possible.
5408 if (Lane == -1) Lane = 0;
Anton Korobeynikov4d237542009-11-02 00:12:06 +00005409
Dan Gohman198b7ff2011-11-03 21:49:52 +00005410 // Test if V1 is a SCALAR_TO_VECTOR.
Bob Wilson846bd792010-06-07 23:53:38 +00005411 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5412 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5413 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00005414 // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
5415 // (and probably will turn into a SCALAR_TO_VECTOR once legalization
5416 // reaches it).
5417 if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
5418 !isa<ConstantSDNode>(V1.getOperand(0))) {
5419 bool IsScalarToVector = true;
5420 for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i)
5421 if (V1.getOperand(i).getOpcode() != ISD::UNDEF) {
5422 IsScalarToVector = false;
5423 break;
5424 }
5425 if (IsScalarToVector)
5426 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5427 }
Bob Wilson846bd792010-06-07 23:53:38 +00005428 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
5429 DAG.getConstant(Lane, MVT::i32));
Bob Wilsoneb54d512009-08-14 05:13:08 +00005430 }
Bob Wilson846bd792010-06-07 23:53:38 +00005431
5432 bool ReverseVEXT;
5433 unsigned Imm;
5434 if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
5435 if (ReverseVEXT)
5436 std::swap(V1, V2);
5437 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
5438 DAG.getConstant(Imm, MVT::i32));
5439 }
5440
5441 if (isVREVMask(ShuffleMask, VT, 64))
5442 return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
5443 if (isVREVMask(ShuffleMask, VT, 32))
5444 return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
5445 if (isVREVMask(ShuffleMask, VT, 16))
5446 return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
5447
Quentin Colombet8e1fe842012-11-02 21:32:17 +00005448 if (V2->getOpcode() == ISD::UNDEF &&
5449 isSingletonVEXTMask(ShuffleMask, VT, Imm)) {
5450 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V1,
5451 DAG.getConstant(Imm, MVT::i32));
5452 }
5453
Bob Wilson846bd792010-06-07 23:53:38 +00005454 // Check for Neon shuffles that modify both input vectors in place.
5455 // If both results are used, i.e., if there are two shuffles with the same
5456 // source operands and with masks corresponding to both results of one of
5457 // these operations, DAG memoization will ensure that a single node is
5458 // used for both shuffles.
5459 unsigned WhichResult;
5460 if (isVTRNMask(ShuffleMask, VT, WhichResult))
5461 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5462 V1, V2).getValue(WhichResult);
5463 if (isVUZPMask(ShuffleMask, VT, WhichResult))
5464 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5465 V1, V2).getValue(WhichResult);
5466 if (isVZIPMask(ShuffleMask, VT, WhichResult))
5467 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5468 V1, V2).getValue(WhichResult);
5469
5470 if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
5471 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5472 V1, V1).getValue(WhichResult);
5473 if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5474 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5475 V1, V1).getValue(WhichResult);
5476 if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5477 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5478 V1, V1).getValue(WhichResult);
Bob Wilsoncce31f62009-08-14 05:08:32 +00005479 }
Bob Wilson32cd8552009-08-19 17:03:43 +00005480
Bob Wilsona7062312009-08-21 20:54:19 +00005481 // If the shuffle is not directly supported and it has 4 elements, use
5482 // the PerfectShuffle-generated table to synthesize it from other shuffles.
Bob Wilson91fdf682010-05-22 00:23:12 +00005483 unsigned NumElts = VT.getVectorNumElements();
5484 if (NumElts == 4) {
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005485 unsigned PFIndexes[4];
5486 for (unsigned i = 0; i != 4; ++i) {
5487 if (ShuffleMask[i] < 0)
5488 PFIndexes[i] = 8;
5489 else
5490 PFIndexes[i] = ShuffleMask[i];
5491 }
5492
5493 // Compute the index in the perfect shuffle table.
5494 unsigned PFTableIndex =
5495 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005496 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5497 unsigned Cost = (PFEntry >> 30);
5498
5499 if (Cost <= 4)
5500 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
5501 }
Bob Wilsonea3a4022009-08-12 22:31:50 +00005502
Bob Wilsond8a9a042010-06-04 00:04:02 +00005503 // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs.
Bob Wilson91fdf682010-05-22 00:23:12 +00005504 if (EltSize >= 32) {
5505 // Do the expansion with floating-point types, since that is what the VFP
5506 // registers are defined to use, and since i64 is not legal.
5507 EVT EltVT = EVT::getFloatingPointVT(EltSize);
5508 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
Wesley Peck527da1b2010-11-23 03:31:01 +00005509 V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1);
5510 V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2);
Bob Wilsond8a9a042010-06-04 00:04:02 +00005511 SmallVector<SDValue, 8> Ops;
Bob Wilson91fdf682010-05-22 00:23:12 +00005512 for (unsigned i = 0; i < NumElts; ++i) {
Bob Wilson59549942010-05-20 18:39:53 +00005513 if (ShuffleMask[i] < 0)
Bob Wilsond8a9a042010-06-04 00:04:02 +00005514 Ops.push_back(DAG.getUNDEF(EltVT));
5515 else
5516 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
5517 ShuffleMask[i] < (int)NumElts ? V1 : V2,
5518 DAG.getConstant(ShuffleMask[i] & (NumElts-1),
5519 MVT::i32)));
Bob Wilson59549942010-05-20 18:39:53 +00005520 }
Craig Topper48d114b2014-04-26 18:35:24 +00005521 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00005522 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Bob Wilson59549942010-05-20 18:39:53 +00005523 }
5524
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00005525 if ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(ShuffleMask, VT))
5526 return LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(Op, DAG);
5527
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00005528 if (VT == MVT::v8i8) {
5529 SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG);
5530 if (NewOp.getNode())
5531 return NewOp;
5532 }
5533
Bob Wilson6f34e272009-08-14 05:16:33 +00005534 return SDValue();
Bob Wilson2e076c42009-06-22 23:27:02 +00005535}
5536
Eli Friedmana5e244c2011-10-24 23:08:52 +00005537static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
5538 // INSERT_VECTOR_ELT is legal only for immediate indexes.
5539 SDValue Lane = Op.getOperand(2);
5540 if (!isa<ConstantSDNode>(Lane))
5541 return SDValue();
5542
5543 return Op;
5544}
5545
Bob Wilson2e076c42009-06-22 23:27:02 +00005546static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Bob Wilsonceb49292010-11-03 16:24:50 +00005547 // EXTRACT_VECTOR_ELT is legal only for immediate indexes.
Bob Wilson2e076c42009-06-22 23:27:02 +00005548 SDValue Lane = Op.getOperand(1);
Bob Wilsonceb49292010-11-03 16:24:50 +00005549 if (!isa<ConstantSDNode>(Lane))
5550 return SDValue();
5551
5552 SDValue Vec = Op.getOperand(0);
5553 if (Op.getValueType() == MVT::i32 &&
5554 Vec.getValueType().getVectorElementType().getSizeInBits() < 32) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005555 SDLoc dl(Op);
Bob Wilsonceb49292010-11-03 16:24:50 +00005556 return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
5557 }
5558
5559 return Op;
Bob Wilson2e076c42009-06-22 23:27:02 +00005560}
5561
Bob Wilsonf307e0b2009-08-03 20:36:38 +00005562static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5563 // The only time a CONCAT_VECTORS operation can have legal types is when
5564 // two 64-bit vectors are concatenated to a 128-bit vector.
5565 assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
5566 "unexpected CONCAT_VECTORS");
Andrew Trickef9de2a2013-05-25 02:42:55 +00005567 SDLoc dl(Op);
Owen Anderson9f944592009-08-11 20:47:22 +00005568 SDValue Val = DAG.getUNDEF(MVT::v2f64);
Bob Wilsonf307e0b2009-08-03 20:36:38 +00005569 SDValue Op0 = Op.getOperand(0);
5570 SDValue Op1 = Op.getOperand(1);
5571 if (Op0.getOpcode() != ISD::UNDEF)
Owen Anderson9f944592009-08-11 20:47:22 +00005572 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
Wesley Peck527da1b2010-11-23 03:31:01 +00005573 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0),
Bob Wilsonf307e0b2009-08-03 20:36:38 +00005574 DAG.getIntPtrConstant(0));
5575 if (Op1.getOpcode() != ISD::UNDEF)
Owen Anderson9f944592009-08-11 20:47:22 +00005576 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
Wesley Peck527da1b2010-11-23 03:31:01 +00005577 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1),
Bob Wilsonf307e0b2009-08-03 20:36:38 +00005578 DAG.getIntPtrConstant(1));
Wesley Peck527da1b2010-11-23 03:31:01 +00005579 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val);
Bob Wilson2e076c42009-06-22 23:27:02 +00005580}
5581
Bob Wilsond7d2cf72010-11-23 19:38:38 +00005582/// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each
5583/// element has been zero/sign-extended, depending on the isSigned parameter,
5584/// from an integer type half its size.
5585static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
5586 bool isSigned) {
5587 // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32.
5588 EVT VT = N->getValueType(0);
5589 if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) {
5590 SDNode *BVN = N->getOperand(0).getNode();
5591 if (BVN->getValueType(0) != MVT::v4i32 ||
5592 BVN->getOpcode() != ISD::BUILD_VECTOR)
5593 return false;
5594 unsigned LoElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
5595 unsigned HiElt = 1 - LoElt;
5596 ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt));
5597 ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt));
5598 ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2));
5599 ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2));
5600 if (!Lo0 || !Hi0 || !Lo1 || !Hi1)
5601 return false;
5602 if (isSigned) {
5603 if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 &&
5604 Hi1->getSExtValue() == Lo1->getSExtValue() >> 32)
5605 return true;
5606 } else {
5607 if (Hi0->isNullValue() && Hi1->isNullValue())
5608 return true;
5609 }
5610 return false;
5611 }
5612
5613 if (N->getOpcode() != ISD::BUILD_VECTOR)
5614 return false;
5615
5616 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
5617 SDNode *Elt = N->getOperand(i).getNode();
5618 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
5619 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5620 unsigned HalfSize = EltSize / 2;
5621 if (isSigned) {
Bob Wilson93b0f7b2011-10-18 18:46:49 +00005622 if (!isIntN(HalfSize, C->getSExtValue()))
Bob Wilsond7d2cf72010-11-23 19:38:38 +00005623 return false;
5624 } else {
Bob Wilson93b0f7b2011-10-18 18:46:49 +00005625 if (!isUIntN(HalfSize, C->getZExtValue()))
Bob Wilsond7d2cf72010-11-23 19:38:38 +00005626 return false;
5627 }
5628 continue;
5629 }
5630 return false;
5631 }
5632
5633 return true;
5634}
5635
5636/// isSignExtended - Check if a node is a vector value that is sign-extended
5637/// or a constant BUILD_VECTOR with sign-extended elements.
5638static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
5639 if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N))
5640 return true;
5641 if (isExtendedBUILD_VECTOR(N, DAG, true))
5642 return true;
5643 return false;
5644}
5645
5646/// isZeroExtended - Check if a node is a vector value that is zero-extended
5647/// or a constant BUILD_VECTOR with zero-extended elements.
5648static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
5649 if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N))
5650 return true;
5651 if (isExtendedBUILD_VECTOR(N, DAG, false))
5652 return true;
5653 return false;
5654}
5655
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00005656static EVT getExtensionTo64Bits(const EVT &OrigVT) {
5657 if (OrigVT.getSizeInBits() >= 64)
5658 return OrigVT;
5659
5660 assert(OrigVT.isSimple() && "Expecting a simple value type");
5661
5662 MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
5663 switch (OrigSimpleTy) {
5664 default: llvm_unreachable("Unexpected Vector Type");
5665 case MVT::v2i8:
5666 case MVT::v2i16:
5667 return MVT::v2i32;
5668 case MVT::v4i8:
5669 return MVT::v4i16;
5670 }
5671}
5672
Sebastian Popa204f722012-11-30 19:08:04 +00005673/// AddRequiredExtensionForVMULL - Add a sign/zero extension to extend the total
5674/// value size to 64 bits. We need a 64-bit D register as an operand to VMULL.
5675/// We insert the required extension here to get the vector to fill a D register.
5676static SDValue AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG,
5677 const EVT &OrigTy,
5678 const EVT &ExtTy,
5679 unsigned ExtOpcode) {
5680 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
5681 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
5682 // 64-bits we need to insert a new extension so that it will be 64-bits.
5683 assert(ExtTy.is128BitVector() && "Unexpected extension size");
5684 if (OrigTy.getSizeInBits() >= 64)
5685 return N;
5686
5687 // Must extend size to at least 64 bits to be used as an operand for VMULL.
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00005688 EVT NewVT = getExtensionTo64Bits(OrigTy);
5689
Andrew Trickef9de2a2013-05-25 02:42:55 +00005690 return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N);
Sebastian Popa204f722012-11-30 19:08:04 +00005691}
5692
5693/// SkipLoadExtensionForVMULL - return a load of the original vector size that
5694/// does not do any sign/zero extension. If the original vector is less
5695/// than 64 bits, an appropriate extension will be added after the load to
5696/// reach a total size of 64 bits. We have to add the extension separately
5697/// because ARM does not have a sign/zero extending load for vectors.
5698static SDValue SkipLoadExtensionForVMULL(LoadSDNode *LD, SelectionDAG& DAG) {
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00005699 EVT ExtendedTy = getExtensionTo64Bits(LD->getMemoryVT());
5700
5701 // The load already has the right type.
5702 if (ExtendedTy == LD->getMemoryVT())
Andrew Trickef9de2a2013-05-25 02:42:55 +00005703 return DAG.getLoad(LD->getMemoryVT(), SDLoc(LD), LD->getChain(),
Sebastian Popa204f722012-11-30 19:08:04 +00005704 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(),
5705 LD->isNonTemporal(), LD->isInvariant(),
5706 LD->getAlignment());
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00005707
5708 // We need to create a zextload/sextload. We cannot just create a load
5709 // followed by a zext/zext node because LowerMUL is also run during normal
5710 // operation legalization where we can't create illegal types.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005711 return DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), ExtendedTy,
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00005712 LD->getChain(), LD->getBasePtr(), LD->getPointerInfo(),
5713 LD->getMemoryVT(), LD->isVolatile(),
5714 LD->isNonTemporal(), LD->getAlignment());
Sebastian Popa204f722012-11-30 19:08:04 +00005715}
5716
5717/// SkipExtensionForVMULL - For a node that is a SIGN_EXTEND, ZERO_EXTEND,
5718/// extending load, or BUILD_VECTOR with extended elements, return the
5719/// unextended value. The unextended vector should be 64 bits so that it can
5720/// be used as an operand to a VMULL instruction. If the original vector size
5721/// before extension is less than 64 bits we add a an extension to resize
5722/// the vector to 64 bits.
5723static SDValue SkipExtensionForVMULL(SDNode *N, SelectionDAG &DAG) {
Bob Wilson38ab35a2010-09-01 23:50:19 +00005724 if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
Sebastian Popa204f722012-11-30 19:08:04 +00005725 return AddRequiredExtensionForVMULL(N->getOperand(0), DAG,
5726 N->getOperand(0)->getValueType(0),
5727 N->getValueType(0),
5728 N->getOpcode());
5729
Bob Wilsond7d2cf72010-11-23 19:38:38 +00005730 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
Sebastian Popa204f722012-11-30 19:08:04 +00005731 return SkipLoadExtensionForVMULL(LD, DAG);
5732
Bob Wilsond7d2cf72010-11-23 19:38:38 +00005733 // Otherwise, the value must be a BUILD_VECTOR. For v2i64, it will
5734 // have been legalized as a BITCAST from v4i32.
5735 if (N->getOpcode() == ISD::BITCAST) {
5736 SDNode *BVN = N->getOperand(0).getNode();
5737 assert(BVN->getOpcode() == ISD::BUILD_VECTOR &&
5738 BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR");
5739 unsigned LowElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
Andrew Trickef9de2a2013-05-25 02:42:55 +00005740 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), MVT::v2i32,
Bob Wilsond7d2cf72010-11-23 19:38:38 +00005741 BVN->getOperand(LowElt), BVN->getOperand(LowElt+2));
5742 }
5743 // Construct a new BUILD_VECTOR with elements truncated to half the size.
5744 assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
5745 EVT VT = N->getValueType(0);
5746 unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2;
5747 unsigned NumElts = VT.getVectorNumElements();
5748 MVT TruncVT = MVT::getIntegerVT(EltSize);
5749 SmallVector<SDValue, 8> Ops;
5750 for (unsigned i = 0; i != NumElts; ++i) {
5751 ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
5752 const APInt &CInt = C->getAPIntValue();
Bob Wilson9245c932012-04-30 16:53:34 +00005753 // Element types smaller than 32 bits are not legal, so use i32 elements.
5754 // The values are implicitly truncated so sext vs. zext doesn't matter.
5755 Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), MVT::i32));
Bob Wilsond7d2cf72010-11-23 19:38:38 +00005756 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00005757 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
Craig Topper48d114b2014-04-26 18:35:24 +00005758 MVT::getVectorVT(TruncVT, NumElts), Ops);
Bob Wilson38ab35a2010-09-01 23:50:19 +00005759}
5760
Evan Chenge2086e72011-03-29 01:56:09 +00005761static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
5762 unsigned Opcode = N->getOpcode();
5763 if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
5764 SDNode *N0 = N->getOperand(0).getNode();
5765 SDNode *N1 = N->getOperand(1).getNode();
5766 return N0->hasOneUse() && N1->hasOneUse() &&
5767 isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
5768 }
5769 return false;
5770}
5771
5772static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
5773 unsigned Opcode = N->getOpcode();
5774 if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
5775 SDNode *N0 = N->getOperand(0).getNode();
5776 SDNode *N1 = N->getOperand(1).getNode();
5777 return N0->hasOneUse() && N1->hasOneUse() &&
5778 isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
5779 }
5780 return false;
5781}
5782
Bob Wilson38ab35a2010-09-01 23:50:19 +00005783static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
5784 // Multiplications are only custom-lowered for 128-bit vectors so that
5785 // VMULL can be detected. Otherwise v2i64 multiplications are not legal.
5786 EVT VT = Op.getValueType();
Sebastian Popa204f722012-11-30 19:08:04 +00005787 assert(VT.is128BitVector() && VT.isInteger() &&
5788 "unexpected type for custom-lowering ISD::MUL");
Bob Wilson38ab35a2010-09-01 23:50:19 +00005789 SDNode *N0 = Op.getOperand(0).getNode();
5790 SDNode *N1 = Op.getOperand(1).getNode();
5791 unsigned NewOpc = 0;
Evan Chenge2086e72011-03-29 01:56:09 +00005792 bool isMLA = false;
5793 bool isN0SExt = isSignExtended(N0, DAG);
5794 bool isN1SExt = isSignExtended(N1, DAG);
5795 if (isN0SExt && isN1SExt)
Bob Wilson38ab35a2010-09-01 23:50:19 +00005796 NewOpc = ARMISD::VMULLs;
Evan Chenge2086e72011-03-29 01:56:09 +00005797 else {
5798 bool isN0ZExt = isZeroExtended(N0, DAG);
5799 bool isN1ZExt = isZeroExtended(N1, DAG);
5800 if (isN0ZExt && isN1ZExt)
5801 NewOpc = ARMISD::VMULLu;
5802 else if (isN1SExt || isN1ZExt) {
5803 // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
5804 // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
5805 if (isN1SExt && isAddSubSExt(N0, DAG)) {
5806 NewOpc = ARMISD::VMULLs;
5807 isMLA = true;
5808 } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
5809 NewOpc = ARMISD::VMULLu;
5810 isMLA = true;
5811 } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
5812 std::swap(N0, N1);
5813 NewOpc = ARMISD::VMULLu;
5814 isMLA = true;
5815 }
5816 }
5817
5818 if (!NewOpc) {
5819 if (VT == MVT::v2i64)
5820 // Fall through to expand this. It is not legal.
5821 return SDValue();
5822 else
5823 // Other vector multiplications are legal.
5824 return Op;
5825 }
5826 }
Bob Wilson38ab35a2010-09-01 23:50:19 +00005827
5828 // Legalize to a VMULL instruction.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005829 SDLoc DL(Op);
Evan Chenge2086e72011-03-29 01:56:09 +00005830 SDValue Op0;
Sebastian Popa204f722012-11-30 19:08:04 +00005831 SDValue Op1 = SkipExtensionForVMULL(N1, DAG);
Evan Chenge2086e72011-03-29 01:56:09 +00005832 if (!isMLA) {
Sebastian Popa204f722012-11-30 19:08:04 +00005833 Op0 = SkipExtensionForVMULL(N0, DAG);
Evan Chenge2086e72011-03-29 01:56:09 +00005834 assert(Op0.getValueType().is64BitVector() &&
5835 Op1.getValueType().is64BitVector() &&
5836 "unexpected types for extended operands to VMULL");
5837 return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
5838 }
Bob Wilson38ab35a2010-09-01 23:50:19 +00005839
Evan Chenge2086e72011-03-29 01:56:09 +00005840 // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during
5841 // isel lowering to take advantage of no-stall back to back vmul + vmla.
5842 // vmull q0, d4, d6
5843 // vmlal q0, d5, d6
5844 // is faster than
5845 // vaddl q0, d4, d5
5846 // vmovl q1, d6
5847 // vmul q0, q0, q1
Sebastian Popa204f722012-11-30 19:08:04 +00005848 SDValue N00 = SkipExtensionForVMULL(N0->getOperand(0).getNode(), DAG);
5849 SDValue N01 = SkipExtensionForVMULL(N0->getOperand(1).getNode(), DAG);
Evan Chenge2086e72011-03-29 01:56:09 +00005850 EVT Op1VT = Op1.getValueType();
5851 return DAG.getNode(N0->getOpcode(), DL, VT,
5852 DAG.getNode(NewOpc, DL, VT,
5853 DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
5854 DAG.getNode(NewOpc, DL, VT,
5855 DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
Bob Wilson38ab35a2010-09-01 23:50:19 +00005856}
5857
Owen Anderson77aa2662011-04-05 21:48:57 +00005858static SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00005859LowerSDIV_v4i8(SDValue X, SDValue Y, SDLoc dl, SelectionDAG &DAG) {
Nate Begemanfa62d502011-02-11 20:53:29 +00005860 // Convert to float
5861 // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo));
5862 // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo));
5863 X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X);
5864 Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y);
5865 X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X);
5866 Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y);
5867 // Get reciprocal estimate.
5868 // float4 recip = vrecpeq_f32(yf);
Owen Anderson77aa2662011-04-05 21:48:57 +00005869 Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begemanfa62d502011-02-11 20:53:29 +00005870 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), Y);
5871 // Because char has a smaller range than uchar, we can actually get away
5872 // without any newton steps. This requires that we use a weird bias
5873 // of 0xb000, however (again, this has been exhaustively tested).
5874 // float4 result = as_float4(as_int4(xf*recip) + 0xb000);
5875 X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y);
5876 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X);
5877 Y = DAG.getConstant(0xb000, MVT::i32);
5878 Y = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Y, Y, Y, Y);
5879 X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y);
5880 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X);
5881 // Convert back to short.
5882 X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X);
5883 X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X);
5884 return X;
5885}
5886
Owen Anderson77aa2662011-04-05 21:48:57 +00005887static SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00005888LowerSDIV_v4i16(SDValue N0, SDValue N1, SDLoc dl, SelectionDAG &DAG) {
Nate Begemanfa62d502011-02-11 20:53:29 +00005889 SDValue N2;
5890 // Convert to float.
5891 // float4 yf = vcvt_f32_s32(vmovl_s16(y));
5892 // float4 xf = vcvt_f32_s32(vmovl_s16(x));
5893 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0);
5894 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1);
5895 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
5896 N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
Owen Anderson77aa2662011-04-05 21:48:57 +00005897
Nate Begemanfa62d502011-02-11 20:53:29 +00005898 // Use reciprocal estimate and one refinement step.
5899 // float4 recip = vrecpeq_f32(yf);
5900 // recip *= vrecpsq_f32(yf, recip);
Owen Anderson77aa2662011-04-05 21:48:57 +00005901 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begemanfa62d502011-02-11 20:53:29 +00005902 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), N1);
Owen Anderson77aa2662011-04-05 21:48:57 +00005903 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begemanfa62d502011-02-11 20:53:29 +00005904 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
5905 N1, N2);
5906 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
5907 // Because short has a smaller range than ushort, we can actually get away
5908 // with only a single newton step. This requires that we use a weird bias
5909 // of 89, however (again, this has been exhaustively tested).
Mon P Wang6d9e1c72011-05-19 04:15:07 +00005910 // float4 result = as_float4(as_int4(xf*recip) + 0x89);
Nate Begemanfa62d502011-02-11 20:53:29 +00005911 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
5912 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
Mon P Wang6d9e1c72011-05-19 04:15:07 +00005913 N1 = DAG.getConstant(0x89, MVT::i32);
Nate Begemanfa62d502011-02-11 20:53:29 +00005914 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
5915 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
5916 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
5917 // Convert back to integer and return.
5918 // return vmovn_s32(vcvt_s32_f32(result));
5919 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
5920 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
5921 return N0;
5922}
5923
5924static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
5925 EVT VT = Op.getValueType();
5926 assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
5927 "unexpected type for custom-lowering ISD::SDIV");
5928
Andrew Trickef9de2a2013-05-25 02:42:55 +00005929 SDLoc dl(Op);
Nate Begemanfa62d502011-02-11 20:53:29 +00005930 SDValue N0 = Op.getOperand(0);
5931 SDValue N1 = Op.getOperand(1);
5932 SDValue N2, N3;
Owen Anderson77aa2662011-04-05 21:48:57 +00005933
Nate Begemanfa62d502011-02-11 20:53:29 +00005934 if (VT == MVT::v8i8) {
5935 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0);
5936 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1);
Owen Anderson77aa2662011-04-05 21:48:57 +00005937
Nate Begemanfa62d502011-02-11 20:53:29 +00005938 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5939 DAG.getIntPtrConstant(4));
5940 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
Owen Anderson77aa2662011-04-05 21:48:57 +00005941 DAG.getIntPtrConstant(4));
Nate Begemanfa62d502011-02-11 20:53:29 +00005942 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5943 DAG.getIntPtrConstant(0));
5944 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5945 DAG.getIntPtrConstant(0));
5946
5947 N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16
5948 N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16
5949
5950 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
5951 N0 = LowerCONCAT_VECTORS(N0, DAG);
Owen Anderson77aa2662011-04-05 21:48:57 +00005952
Nate Begemanfa62d502011-02-11 20:53:29 +00005953 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0);
5954 return N0;
5955 }
5956 return LowerSDIV_v4i16(N0, N1, dl, DAG);
5957}
5958
5959static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) {
5960 EVT VT = Op.getValueType();
5961 assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
5962 "unexpected type for custom-lowering ISD::UDIV");
5963
Andrew Trickef9de2a2013-05-25 02:42:55 +00005964 SDLoc dl(Op);
Nate Begemanfa62d502011-02-11 20:53:29 +00005965 SDValue N0 = Op.getOperand(0);
5966 SDValue N1 = Op.getOperand(1);
5967 SDValue N2, N3;
Owen Anderson77aa2662011-04-05 21:48:57 +00005968
Nate Begemanfa62d502011-02-11 20:53:29 +00005969 if (VT == MVT::v8i8) {
5970 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0);
5971 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1);
Owen Anderson77aa2662011-04-05 21:48:57 +00005972
Nate Begemanfa62d502011-02-11 20:53:29 +00005973 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5974 DAG.getIntPtrConstant(4));
5975 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
Owen Anderson77aa2662011-04-05 21:48:57 +00005976 DAG.getIntPtrConstant(4));
Nate Begemanfa62d502011-02-11 20:53:29 +00005977 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5978 DAG.getIntPtrConstant(0));
5979 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5980 DAG.getIntPtrConstant(0));
Owen Anderson77aa2662011-04-05 21:48:57 +00005981
Nate Begemanfa62d502011-02-11 20:53:29 +00005982 N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16
5983 N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16
Owen Anderson77aa2662011-04-05 21:48:57 +00005984
Nate Begemanfa62d502011-02-11 20:53:29 +00005985 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
5986 N0 = LowerCONCAT_VECTORS(N0, DAG);
Owen Anderson77aa2662011-04-05 21:48:57 +00005987
5988 N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8,
Nate Begemanfa62d502011-02-11 20:53:29 +00005989 DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, MVT::i32),
5990 N0);
5991 return N0;
5992 }
Owen Anderson77aa2662011-04-05 21:48:57 +00005993
Nate Begemanfa62d502011-02-11 20:53:29 +00005994 // v4i16 sdiv ... Convert to float.
5995 // float4 yf = vcvt_f32_s32(vmovl_u16(y));
5996 // float4 xf = vcvt_f32_s32(vmovl_u16(x));
5997 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0);
5998 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1);
5999 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006000 SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
Nate Begemanfa62d502011-02-11 20:53:29 +00006001
6002 // Use reciprocal estimate and two refinement steps.
6003 // float4 recip = vrecpeq_f32(yf);
6004 // recip *= vrecpsq_f32(yf, recip);
6005 // recip *= vrecpsq_f32(yf, recip);
Owen Anderson77aa2662011-04-05 21:48:57 +00006006 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006007 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), BN1);
Owen Anderson77aa2662011-04-05 21:48:57 +00006008 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begemanfa62d502011-02-11 20:53:29 +00006009 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006010 BN1, N2);
Nate Begemanfa62d502011-02-11 20:53:29 +00006011 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
Owen Anderson77aa2662011-04-05 21:48:57 +00006012 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Nate Begemanfa62d502011-02-11 20:53:29 +00006013 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006014 BN1, N2);
Nate Begemanfa62d502011-02-11 20:53:29 +00006015 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6016 // Simply multiplying by the reciprocal estimate can leave us a few ulps
6017 // too low, so we add 2 ulps (exhaustive testing shows that this is enough,
6018 // and that it will never cause us to return an answer too large).
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006019 // float4 result = as_float4(as_int4(xf*recip) + 2);
Nate Begemanfa62d502011-02-11 20:53:29 +00006020 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
6021 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
6022 N1 = DAG.getConstant(2, MVT::i32);
6023 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
6024 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
6025 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
6026 // Convert back to integer and return.
6027 // return vmovn_u32(vcvt_s32_f32(result));
6028 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
6029 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
6030 return N0;
6031}
6032
Evan Chenge8916542011-08-30 01:34:54 +00006033static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
6034 EVT VT = Op.getNode()->getValueType(0);
6035 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
6036
6037 unsigned Opc;
6038 bool ExtraOp = false;
6039 switch (Op.getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00006040 default: llvm_unreachable("Invalid code");
Evan Chenge8916542011-08-30 01:34:54 +00006041 case ISD::ADDC: Opc = ARMISD::ADDC; break;
6042 case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break;
6043 case ISD::SUBC: Opc = ARMISD::SUBC; break;
6044 case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break;
6045 }
6046
6047 if (!ExtraOp)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006048 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Evan Chenge8916542011-08-30 01:34:54 +00006049 Op.getOperand(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006050 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Evan Chenge8916542011-08-30 01:34:54 +00006051 Op.getOperand(1), Op.getOperand(2));
6052}
6053
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006054SDValue ARMTargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const {
6055 assert(Subtarget->isTargetDarwin());
6056
6057 // For iOS, we want to call an alternative entry point: __sincos_stret,
6058 // return values are passed via sret.
6059 SDLoc dl(Op);
6060 SDValue Arg = Op.getOperand(0);
6061 EVT ArgVT = Arg.getValueType();
6062 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
6063
6064 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
6065 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6066
6067 // Pair of floats / doubles used to pass the result.
6068 StructType *RetTy = StructType::get(ArgTy, ArgTy, NULL);
6069
6070 // Create stack object for sret.
6071 const uint64_t ByteSize = TLI.getDataLayout()->getTypeAllocSize(RetTy);
6072 const unsigned StackAlign = TLI.getDataLayout()->getPrefTypeAlignment(RetTy);
6073 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
6074 SDValue SRet = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
6075
6076 ArgListTy Args;
6077 ArgListEntry Entry;
6078
6079 Entry.Node = SRet;
6080 Entry.Ty = RetTy->getPointerTo();
6081 Entry.isSExt = false;
6082 Entry.isZExt = false;
6083 Entry.isSRet = true;
6084 Args.push_back(Entry);
6085
6086 Entry.Node = Arg;
6087 Entry.Ty = ArgTy;
6088 Entry.isSExt = false;
6089 Entry.isZExt = false;
6090 Args.push_back(Entry);
6091
6092 const char *LibcallName = (ArgVT == MVT::f64)
6093 ? "__sincos_stret" : "__sincosf_stret";
6094 SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy());
6095
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00006096 TargetLowering::CallLoweringInfo CLI(DAG);
6097 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
6098 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()), Callee,
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00006099 std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00006100 .setDiscardResult();
6101
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006102 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
6103
6104 SDValue LoadSin = DAG.getLoad(ArgVT, dl, CallResult.second, SRet,
6105 MachinePointerInfo(), false, false, false, 0);
6106
6107 // Address of cos field.
6108 SDValue Add = DAG.getNode(ISD::ADD, dl, getPointerTy(), SRet,
6109 DAG.getIntPtrConstant(ArgVT.getStoreSize()));
6110 SDValue LoadCos = DAG.getLoad(ArgVT, dl, LoadSin.getValue(1), Add,
6111 MachinePointerInfo(), false, false, false, 0);
6112
6113 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
6114 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys,
6115 LoadSin.getValue(0), LoadCos.getValue(0));
6116}
6117
Eli Friedman10f9ce22011-09-15 22:26:18 +00006118static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) {
Eli Friedmanba912e02011-09-15 22:18:49 +00006119 // Monotonic load/store is legal for all targets
6120 if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic)
6121 return Op;
6122
Alp Tokercb402912014-01-24 17:20:08 +00006123 // Acquire/Release load/store is not legal for targets without a
Eli Friedmanba912e02011-09-15 22:18:49 +00006124 // dmb or equivalent available.
6125 return SDValue();
6126}
6127
Tim Northoverbc933082013-05-23 19:11:20 +00006128static void ReplaceREADCYCLECOUNTER(SDNode *N,
6129 SmallVectorImpl<SDValue> &Results,
6130 SelectionDAG &DAG,
6131 const ARMSubtarget *Subtarget) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006132 SDLoc DL(N);
Tim Northoverbc933082013-05-23 19:11:20 +00006133 SDValue Cycles32, OutChain;
6134
6135 if (Subtarget->hasPerfMon()) {
6136 // Under Power Management extensions, the cycle-count is:
6137 // mrc p15, #0, <Rt>, c9, c13, #0
6138 SDValue Ops[] = { N->getOperand(0), // Chain
6139 DAG.getConstant(Intrinsic::arm_mrc, MVT::i32),
6140 DAG.getConstant(15, MVT::i32),
6141 DAG.getConstant(0, MVT::i32),
6142 DAG.getConstant(9, MVT::i32),
6143 DAG.getConstant(13, MVT::i32),
6144 DAG.getConstant(0, MVT::i32)
6145 };
6146
6147 Cycles32 = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DL,
Craig Topper48d114b2014-04-26 18:35:24 +00006148 DAG.getVTList(MVT::i32, MVT::Other), Ops);
Tim Northoverbc933082013-05-23 19:11:20 +00006149 OutChain = Cycles32.getValue(1);
6150 } else {
6151 // Intrinsic is defined to return 0 on unsupported platforms. Technically
6152 // there are older ARM CPUs that have implementation-specific ways of
6153 // obtaining this information (FIXME!).
6154 Cycles32 = DAG.getConstant(0, MVT::i32);
6155 OutChain = DAG.getEntryNode();
6156 }
6157
6158
6159 SDValue Cycles64 = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64,
6160 Cycles32, DAG.getConstant(0, MVT::i32));
6161 Results.push_back(Cycles64);
6162 Results.push_back(OutChain);
6163}
6164
Dan Gohman21cea8a2010-04-17 15:26:15 +00006165SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng10043e22007-01-19 07:51:42 +00006166 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006167 default: llvm_unreachable("Don't know how to custom lower this!");
Evan Cheng10043e22007-01-19 07:51:42 +00006168 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilson1cf0b032009-10-30 05:45:42 +00006169 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00006170 case ISD::GlobalAddress:
Saleem Abdulrasool40bca0a2014-05-09 00:58:32 +00006171 switch (Subtarget->getTargetTriple().getObjectFormat()) {
6172 default: llvm_unreachable("unknown object format");
6173 case Triple::COFF:
6174 return LowerGlobalAddressWindows(Op, DAG);
6175 case Triple::ELF:
6176 return LowerGlobalAddressELF(Op, DAG);
6177 case Triple::MachO:
6178 return LowerGlobalAddressDarwin(Op, DAG);
6179 }
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006180 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling6a981312010-08-11 08:43:16 +00006181 case ISD::SELECT: return LowerSELECT(Op, DAG);
Evan Cheng15b80e42009-11-12 07:13:11 +00006182 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
6183 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
Evan Cheng10043e22007-01-19 07:51:42 +00006184 case ISD::BR_JT: return LowerBR_JT(Op, DAG);
Dan Gohman31ae5862010-04-17 14:41:14 +00006185 case ISD::VASTART: return LowerVASTART(Op, DAG);
Eli Friedman26a48482011-07-27 22:21:52 +00006186 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG, Subtarget);
Evan Cheng8740ee32010-11-03 06:34:55 +00006187 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG, Subtarget);
Bob Wilsone4191e72010-03-19 22:51:32 +00006188 case ISD::SINT_TO_FP:
6189 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
6190 case ISD::FP_TO_SINT:
6191 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG);
Evan Cheng10043e22007-01-19 07:51:42 +00006192 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng168ced92010-05-22 01:47:14 +00006193 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Jim Grosbachaeca45d2009-05-12 23:59:14 +00006194 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00006195 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
Jim Grosbachc98892f2010-05-26 20:22:18 +00006196 case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG);
Jim Grosbachbd9485d2010-05-22 01:06:18 +00006197 case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG);
Jim Grosbacha570d052010-02-08 23:22:00 +00006198 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG,
6199 Subtarget);
Evan Cheng383ecd82011-03-14 18:02:30 +00006200 case ISD::BITCAST: return ExpandBITCAST(Op.getNode(), DAG);
Bob Wilson2e076c42009-06-22 23:27:02 +00006201 case ISD::SHL:
Chris Lattnerf81d5882007-11-24 07:07:01 +00006202 case ISD::SRL:
Bob Wilson2e076c42009-06-22 23:27:02 +00006203 case ISD::SRA: return LowerShift(Op.getNode(), DAG, Subtarget);
Evan Cheng15b80e42009-11-12 07:13:11 +00006204 case ISD::SHL_PARTS: return LowerShiftLeftParts(Op, DAG);
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00006205 case ISD::SRL_PARTS:
Evan Cheng15b80e42009-11-12 07:13:11 +00006206 case ISD::SRA_PARTS: return LowerShiftRightParts(Op, DAG);
Jim Grosbach8546ec92010-01-18 19:58:49 +00006207 case ISD::CTTZ: return LowerCTTZ(Op.getNode(), DAG, Subtarget);
Evan Chengb4eae132012-12-04 22:41:50 +00006208 case ISD::CTPOP: return LowerCTPOP(Op.getNode(), DAG, Subtarget);
Duncan Sandsf2641e12011-09-06 19:07:46 +00006209 case ISD::SETCC: return LowerVSETCC(Op, DAG);
Lang Hamesc35ee8b2012-03-15 18:49:02 +00006210 case ISD::ConstantFP: return LowerConstantFP(Op, DAG, Subtarget);
Dale Johannesen2bff5052010-07-29 20:10:08 +00006211 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG, Subtarget);
Bob Wilson2e076c42009-06-22 23:27:02 +00006212 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
Eli Friedmana5e244c2011-10-24 23:08:52 +00006213 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Bob Wilson2e076c42009-06-22 23:27:02 +00006214 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
Bob Wilsonf307e0b2009-08-03 20:36:38 +00006215 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Bob Wilson9a511c02010-08-20 04:54:02 +00006216 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Bob Wilson38ab35a2010-09-01 23:50:19 +00006217 case ISD::MUL: return LowerMUL(Op, DAG);
Nate Begemanfa62d502011-02-11 20:53:29 +00006218 case ISD::SDIV: return LowerSDIV(Op, DAG);
6219 case ISD::UDIV: return LowerUDIV(Op, DAG);
Evan Chenge8916542011-08-30 01:34:54 +00006220 case ISD::ADDC:
6221 case ISD::ADDE:
6222 case ISD::SUBC:
6223 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00006224 case ISD::SADDO:
6225 case ISD::UADDO:
6226 case ISD::SSUBO:
6227 case ISD::USUBO:
6228 return LowerXALUO(Op, DAG);
Eli Friedmanba912e02011-09-15 22:18:49 +00006229 case ISD::ATOMIC_LOAD:
Eli Friedman10f9ce22011-09-15 22:26:18 +00006230 case ISD::ATOMIC_STORE: return LowerAtomicLoadStore(Op, DAG);
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006231 case ISD::FSINCOS: return LowerFSINCOS(Op, DAG);
Renato Golin87610692013-07-16 09:32:17 +00006232 case ISD::SDIVREM:
6233 case ISD::UDIVREM: return LowerDivRem(Op, DAG);
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00006234 case ISD::DYNAMIC_STACKALLOC:
6235 if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
6236 return LowerDYNAMIC_STACKALLOC(Op, DAG);
6237 llvm_unreachable("Don't know how to custom lower this!");
Evan Cheng10043e22007-01-19 07:51:42 +00006238 }
Evan Cheng10043e22007-01-19 07:51:42 +00006239}
6240
Duncan Sands6ed40142008-12-01 11:39:25 +00006241/// ReplaceNodeResults - Replace the results of node with an illegal result
6242/// type with new values built out of custom code.
Duncan Sands6ed40142008-12-01 11:39:25 +00006243void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
6244 SmallVectorImpl<SDValue>&Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +00006245 SelectionDAG &DAG) const {
Bob Wilsonc05b8872010-04-14 20:45:23 +00006246 SDValue Res;
Chris Lattnerf81d5882007-11-24 07:07:01 +00006247 switch (N->getOpcode()) {
Duncan Sands6ed40142008-12-01 11:39:25 +00006248 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +00006249 llvm_unreachable("Don't know how to custom expand this!");
Wesley Peck527da1b2010-11-23 03:31:01 +00006250 case ISD::BITCAST:
6251 Res = ExpandBITCAST(N, DAG);
Bob Wilsonc05b8872010-04-14 20:45:23 +00006252 break;
Chris Lattnerf81d5882007-11-24 07:07:01 +00006253 case ISD::SRL:
Bob Wilsonc05b8872010-04-14 20:45:23 +00006254 case ISD::SRA:
Bob Wilson7d471332010-11-18 21:16:28 +00006255 Res = Expand64BitShift(N, DAG, Subtarget);
Bob Wilsonc05b8872010-04-14 20:45:23 +00006256 break;
Tim Northoverbc933082013-05-23 19:11:20 +00006257 case ISD::READCYCLECOUNTER:
6258 ReplaceREADCYCLECOUNTER(N, Results, DAG, Subtarget);
6259 return;
Duncan Sands6ed40142008-12-01 11:39:25 +00006260 }
Bob Wilsonc05b8872010-04-14 20:45:23 +00006261 if (Res.getNode())
6262 Results.push_back(Res);
Chris Lattnerf81d5882007-11-24 07:07:01 +00006263}
Chris Lattnerf81d5882007-11-24 07:07:01 +00006264
Evan Cheng10043e22007-01-19 07:51:42 +00006265//===----------------------------------------------------------------------===//
6266// ARM Scheduler Hooks
6267//===----------------------------------------------------------------------===//
6268
Bill Wendling030b58e2011-10-06 22:18:16 +00006269/// SetupEntryBlockForSjLj - Insert code into the entry block that creates and
6270/// registers the function context.
6271void ARMTargetLowering::
6272SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB,
6273 MachineBasicBlock *DispatchBB, int FI) const {
Bill Wendling374ee192011-10-03 21:25:38 +00006274 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6275 DebugLoc dl = MI->getDebugLoc();
6276 MachineFunction *MF = MBB->getParent();
6277 MachineRegisterInfo *MRI = &MF->getRegInfo();
6278 MachineConstantPool *MCP = MF->getConstantPool();
6279 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
6280 const Function *F = MF->getFunction();
Bill Wendling374ee192011-10-03 21:25:38 +00006281
Bill Wendling374ee192011-10-03 21:25:38 +00006282 bool isThumb = Subtarget->isThumb();
Bill Wendling1eab54f2011-10-03 22:44:15 +00006283 bool isThumb2 = Subtarget->isThumb2();
Bill Wendling030b58e2011-10-06 22:18:16 +00006284
Bill Wendling374ee192011-10-03 21:25:38 +00006285 unsigned PCLabelId = AFI->createPICLabelUId();
Bill Wendling1eab54f2011-10-03 22:44:15 +00006286 unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8;
Bill Wendling374ee192011-10-03 21:25:38 +00006287 ARMConstantPoolValue *CPV =
6288 ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj);
6289 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
6290
Craig Topperc7242e02012-04-20 07:30:17 +00006291 const TargetRegisterClass *TRC = isThumb ?
6292 (const TargetRegisterClass*)&ARM::tGPRRegClass :
6293 (const TargetRegisterClass*)&ARM::GPRRegClass;
Bill Wendling374ee192011-10-03 21:25:38 +00006294
Bill Wendling030b58e2011-10-06 22:18:16 +00006295 // Grab constant pool and fixed stack memory operands.
6296 MachineMemOperand *CPMMO =
6297 MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(),
6298 MachineMemOperand::MOLoad, 4, 4);
6299
6300 MachineMemOperand *FIMMOSt =
6301 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
6302 MachineMemOperand::MOStore, 4, 4);
6303
6304 // Load the address of the dispatch MBB into the jump buffer.
6305 if (isThumb2) {
6306 // Incoming value: jbuf
6307 // ldr.n r5, LCPI1_1
6308 // orr r5, r5, #1
6309 // add r5, pc
6310 // str r5, [$jbuf, #+4] ; &jbuf[1]
6311 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6312 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1)
6313 .addConstantPoolIndex(CPI)
6314 .addMemOperand(CPMMO));
6315 // Set the low bit because of thumb mode.
6316 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6317 AddDefaultCC(
6318 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2)
6319 .addReg(NewVReg1, RegState::Kill)
6320 .addImm(0x01)));
6321 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6322 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3)
6323 .addReg(NewVReg2, RegState::Kill)
6324 .addImm(PCLabelId);
6325 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12))
6326 .addReg(NewVReg3, RegState::Kill)
6327 .addFrameIndex(FI)
6328 .addImm(36) // &jbuf[1] :: pc
6329 .addMemOperand(FIMMOSt));
6330 } else if (isThumb) {
6331 // Incoming value: jbuf
6332 // ldr.n r1, LCPI1_4
6333 // add r1, pc
6334 // mov r2, #1
6335 // orrs r1, r2
6336 // add r2, $jbuf, #+4 ; &jbuf[1]
6337 // str r1, [r2]
6338 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6339 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1)
6340 .addConstantPoolIndex(CPI)
6341 .addMemOperand(CPMMO));
6342 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6343 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2)
6344 .addReg(NewVReg1, RegState::Kill)
6345 .addImm(PCLabelId);
6346 // Set the low bit because of thumb mode.
6347 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6348 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3)
6349 .addReg(ARM::CPSR, RegState::Define)
6350 .addImm(1));
6351 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6352 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4)
6353 .addReg(ARM::CPSR, RegState::Define)
6354 .addReg(NewVReg2, RegState::Kill)
6355 .addReg(NewVReg3, RegState::Kill));
6356 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6357 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tADDrSPi), NewVReg5)
6358 .addFrameIndex(FI)
6359 .addImm(36)); // &jbuf[1] :: pc
6360 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi))
6361 .addReg(NewVReg4, RegState::Kill)
6362 .addReg(NewVReg5, RegState::Kill)
6363 .addImm(0)
6364 .addMemOperand(FIMMOSt));
6365 } else {
6366 // Incoming value: jbuf
6367 // ldr r1, LCPI1_1
6368 // add r1, pc, r1
6369 // str r1, [$jbuf, #+4] ; &jbuf[1]
6370 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6371 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12), NewVReg1)
6372 .addConstantPoolIndex(CPI)
6373 .addImm(0)
6374 .addMemOperand(CPMMO));
6375 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6376 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2)
6377 .addReg(NewVReg1, RegState::Kill)
6378 .addImm(PCLabelId));
6379 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12))
6380 .addReg(NewVReg2, RegState::Kill)
6381 .addFrameIndex(FI)
6382 .addImm(36) // &jbuf[1] :: pc
6383 .addMemOperand(FIMMOSt));
6384 }
6385}
6386
6387MachineBasicBlock *ARMTargetLowering::
6388EmitSjLjDispatchBlock(MachineInstr *MI, MachineBasicBlock *MBB) const {
6389 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6390 DebugLoc dl = MI->getDebugLoc();
6391 MachineFunction *MF = MBB->getParent();
6392 MachineRegisterInfo *MRI = &MF->getRegInfo();
6393 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
6394 MachineFrameInfo *MFI = MF->getFrameInfo();
6395 int FI = MFI->getFunctionContextIndex();
6396
Craig Topperc7242e02012-04-20 07:30:17 +00006397 const TargetRegisterClass *TRC = Subtarget->isThumb() ?
6398 (const TargetRegisterClass*)&ARM::tGPRRegClass :
Jakob Stoklund Olesen691ae332012-05-20 06:38:47 +00006399 (const TargetRegisterClass*)&ARM::GPRnopcRegClass;
Bill Wendling030b58e2011-10-06 22:18:16 +00006400
Bill Wendling362c1b02011-10-06 21:29:56 +00006401 // Get a mapping of the call site numbers to all of the landing pads they're
6402 // associated with.
Bill Wendling202803e2011-10-05 00:02:33 +00006403 DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad;
6404 unsigned MaxCSNum = 0;
6405 MachineModuleInfo &MMI = MF->getMMI();
Jim Grosbach0c509fa2012-04-06 23:43:50 +00006406 for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E;
6407 ++BB) {
Bill Wendling202803e2011-10-05 00:02:33 +00006408 if (!BB->isLandingPad()) continue;
6409
6410 // FIXME: We should assert that the EH_LABEL is the first MI in the landing
6411 // pad.
6412 for (MachineBasicBlock::iterator
6413 II = BB->begin(), IE = BB->end(); II != IE; ++II) {
6414 if (!II->isEHLabel()) continue;
6415
6416 MCSymbol *Sym = II->getOperand(0).getMCSymbol();
Bill Wendlingf793e7e2011-10-05 23:28:57 +00006417 if (!MMI.hasCallSiteLandingPad(Sym)) continue;
Bill Wendling202803e2011-10-05 00:02:33 +00006418
Bill Wendlingf793e7e2011-10-05 23:28:57 +00006419 SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym);
6420 for (SmallVectorImpl<unsigned>::iterator
6421 CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end();
6422 CSI != CSE; ++CSI) {
6423 CallSiteNumToLPad[*CSI].push_back(BB);
6424 MaxCSNum = std::max(MaxCSNum, *CSI);
6425 }
Bill Wendling202803e2011-10-05 00:02:33 +00006426 break;
6427 }
6428 }
6429
6430 // Get an ordered list of the machine basic blocks for the jump table.
6431 std::vector<MachineBasicBlock*> LPadList;
Bill Wendling883ec972011-10-07 23:18:02 +00006432 SmallPtrSet<MachineBasicBlock*, 64> InvokeBBs;
Bill Wendling202803e2011-10-05 00:02:33 +00006433 LPadList.reserve(CallSiteNumToLPad.size());
6434 for (unsigned I = 1; I <= MaxCSNum; ++I) {
6435 SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I];
6436 for (SmallVectorImpl<MachineBasicBlock*>::iterator
Bill Wendling883ec972011-10-07 23:18:02 +00006437 II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) {
Bill Wendling202803e2011-10-05 00:02:33 +00006438 LPadList.push_back(*II);
Bill Wendling883ec972011-10-07 23:18:02 +00006439 InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end());
6440 }
Bill Wendling202803e2011-10-05 00:02:33 +00006441 }
6442
Bill Wendlingf793e7e2011-10-05 23:28:57 +00006443 assert(!LPadList.empty() &&
6444 "No landing pad destinations for the dispatch jump table!");
6445
Bill Wendling362c1b02011-10-06 21:29:56 +00006446 // Create the jump table and associated information.
Bill Wendling202803e2011-10-05 00:02:33 +00006447 MachineJumpTableInfo *JTI =
6448 MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline);
6449 unsigned MJTI = JTI->createJumpTableIndex(LPadList);
6450 unsigned UId = AFI->createJumpTableUId();
Chad Rosier96603432013-03-01 18:30:38 +00006451 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
Bill Wendling202803e2011-10-05 00:02:33 +00006452
Bill Wendling362c1b02011-10-06 21:29:56 +00006453 // Create the MBBs for the dispatch code.
Bill Wendling030b58e2011-10-06 22:18:16 +00006454
6455 // Shove the dispatch's address into the return slot in the function context.
6456 MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock();
6457 DispatchBB->setIsLandingPad();
Bill Wendling030b58e2011-10-06 22:18:16 +00006458
Bill Wendling324be982011-10-05 00:39:32 +00006459 MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock();
Eli Bendersky2e2ce492013-01-30 16:30:19 +00006460 unsigned trap_opcode;
Chad Rosier11a98282013-02-28 18:54:27 +00006461 if (Subtarget->isThumb())
Eli Bendersky2e2ce492013-01-30 16:30:19 +00006462 trap_opcode = ARM::tTRAP;
Chad Rosier11a98282013-02-28 18:54:27 +00006463 else
6464 trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP;
6465
Eli Bendersky2e2ce492013-01-30 16:30:19 +00006466 BuildMI(TrapBB, dl, TII->get(trap_opcode));
Bill Wendling324be982011-10-05 00:39:32 +00006467 DispatchBB->addSuccessor(TrapBB);
6468
6469 MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock();
6470 DispatchBB->addSuccessor(DispContBB);
Bill Wendling202803e2011-10-05 00:02:33 +00006471
Bill Wendling510fbcd2011-10-17 21:32:56 +00006472 // Insert and MBBs.
Bill Wendling61346552011-10-06 00:53:33 +00006473 MF->insert(MF->end(), DispatchBB);
6474 MF->insert(MF->end(), DispContBB);
6475 MF->insert(MF->end(), TrapBB);
Bill Wendling61346552011-10-06 00:53:33 +00006476
Bill Wendling030b58e2011-10-06 22:18:16 +00006477 // Insert code into the entry block that creates and registers the function
6478 // context.
6479 SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI);
6480
Bill Wendling030b58e2011-10-06 22:18:16 +00006481 MachineMemOperand *FIMMOLd =
Bill Wendling362c1b02011-10-06 21:29:56 +00006482 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
Bill Wendlingb3d46782011-10-06 23:37:36 +00006483 MachineMemOperand::MOLoad |
6484 MachineMemOperand::MOVolatile, 4, 4);
Bill Wendling61346552011-10-06 00:53:33 +00006485
Chad Rosier1ec8e402012-11-06 23:05:24 +00006486 MachineInstrBuilder MIB;
6487 MIB = BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup));
6488
6489 const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII);
6490 const ARMBaseRegisterInfo &RI = AII->getRegisterInfo();
6491
6492 // Add a register mask with no preserved registers. This results in all
6493 // registers being marked as clobbered.
6494 MIB.addRegMask(RI.getNoPreservedMask());
Bob Wilsonf6d17282011-11-16 07:11:57 +00006495
Bill Wendling85833f72011-10-18 22:49:07 +00006496 unsigned NumLPads = LPadList.size();
Bill Wendling5626c662011-10-06 22:53:00 +00006497 if (Subtarget->isThumb2()) {
6498 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6499 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1)
6500 .addFrameIndex(FI)
6501 .addImm(4)
6502 .addMemOperand(FIMMOLd));
Bill Wendlingb2a703d2011-10-18 21:55:58 +00006503
Bill Wendling85833f72011-10-18 22:49:07 +00006504 if (NumLPads < 256) {
6505 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri))
6506 .addReg(NewVReg1)
6507 .addImm(LPadList.size()));
6508 } else {
6509 unsigned VReg1 = MRI->createVirtualRegister(TRC);
6510 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVi16), VReg1)
Bill Wendling94f60012011-10-18 23:19:55 +00006511 .addImm(NumLPads & 0xFFFF));
6512
6513 unsigned VReg2 = VReg1;
6514 if ((NumLPads & 0xFFFF0000) != 0) {
6515 VReg2 = MRI->createVirtualRegister(TRC);
6516 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVTi16), VReg2)
6517 .addReg(VReg1)
6518 .addImm(NumLPads >> 16));
6519 }
6520
Bill Wendling85833f72011-10-18 22:49:07 +00006521 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPrr))
6522 .addReg(NewVReg1)
6523 .addReg(VReg2));
6524 }
Bill Wendlingb2a703d2011-10-18 21:55:58 +00006525
Bill Wendling5626c662011-10-06 22:53:00 +00006526 BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc))
6527 .addMBB(TrapBB)
6528 .addImm(ARMCC::HI)
6529 .addReg(ARM::CPSR);
Bill Wendling324be982011-10-05 00:39:32 +00006530
Bill Wendlingb2a703d2011-10-18 21:55:58 +00006531 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6532 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg3)
Bill Wendling5626c662011-10-06 22:53:00 +00006533 .addJumpTableIndex(MJTI)
6534 .addImm(UId));
Bill Wendling202803e2011-10-05 00:02:33 +00006535
Bill Wendlingb2a703d2011-10-18 21:55:58 +00006536 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
Bill Wendling5626c662011-10-06 22:53:00 +00006537 AddDefaultCC(
6538 AddDefaultPred(
Bill Wendlingb2a703d2011-10-18 21:55:58 +00006539 BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg4)
6540 .addReg(NewVReg3, RegState::Kill)
Bill Wendling5626c662011-10-06 22:53:00 +00006541 .addReg(NewVReg1)
6542 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
6543
6544 BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT))
Bill Wendlingb2a703d2011-10-18 21:55:58 +00006545 .addReg(NewVReg4, RegState::Kill)
Bill Wendling202803e2011-10-05 00:02:33 +00006546 .addReg(NewVReg1)
Bill Wendling5626c662011-10-06 22:53:00 +00006547 .addJumpTableIndex(MJTI)
6548 .addImm(UId);
6549 } else if (Subtarget->isThumb()) {
Bill Wendlingb3d46782011-10-06 23:37:36 +00006550 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6551 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1)
6552 .addFrameIndex(FI)
6553 .addImm(1)
6554 .addMemOperand(FIMMOLd));
Bill Wendlingf9f5e452011-10-07 22:08:37 +00006555
Bill Wendling64e6bfc2011-10-18 23:11:05 +00006556 if (NumLPads < 256) {
6557 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8))
6558 .addReg(NewVReg1)
6559 .addImm(NumLPads));
6560 } else {
6561 MachineConstantPool *ConstantPool = MF->getConstantPool();
Bill Wendling2977a152011-10-19 09:24:02 +00006562 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6563 const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
6564
6565 // MachineConstantPool wants an explicit alignment.
Micah Villmowcdfe20b2012-10-08 16:38:25 +00006566 unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
Bill Wendling2977a152011-10-19 09:24:02 +00006567 if (Align == 0)
Micah Villmowcdfe20b2012-10-08 16:38:25 +00006568 Align = getDataLayout()->getTypeAllocSize(C->getType());
Bill Wendling2977a152011-10-19 09:24:02 +00006569 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
Bill Wendling64e6bfc2011-10-18 23:11:05 +00006570
6571 unsigned VReg1 = MRI->createVirtualRegister(TRC);
6572 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRpci))
6573 .addReg(VReg1, RegState::Define)
6574 .addConstantPoolIndex(Idx));
6575 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPr))
6576 .addReg(NewVReg1)
6577 .addReg(VReg1));
6578 }
6579
Bill Wendlingb3d46782011-10-06 23:37:36 +00006580 BuildMI(DispatchBB, dl, TII->get(ARM::tBcc))
6581 .addMBB(TrapBB)
6582 .addImm(ARMCC::HI)
6583 .addReg(ARM::CPSR);
6584
6585 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6586 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2)
6587 .addReg(ARM::CPSR, RegState::Define)
6588 .addReg(NewVReg1)
6589 .addImm(2));
6590
6591 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
Bill Wendling8d50ea02011-10-06 23:41:14 +00006592 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3)
Bill Wendlingb3d46782011-10-06 23:37:36 +00006593 .addJumpTableIndex(MJTI)
6594 .addImm(UId));
6595
6596 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6597 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4)
6598 .addReg(ARM::CPSR, RegState::Define)
6599 .addReg(NewVReg2, RegState::Kill)
6600 .addReg(NewVReg3));
6601
6602 MachineMemOperand *JTMMOLd =
6603 MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
6604 MachineMemOperand::MOLoad, 4, 4);
6605
6606 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6607 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5)
6608 .addReg(NewVReg4, RegState::Kill)
6609 .addImm(0)
6610 .addMemOperand(JTMMOLd));
6611
Chad Rosier96603432013-03-01 18:30:38 +00006612 unsigned NewVReg6 = NewVReg5;
6613 if (RelocM == Reloc::PIC_) {
6614 NewVReg6 = MRI->createVirtualRegister(TRC);
6615 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6)
6616 .addReg(ARM::CPSR, RegState::Define)
6617 .addReg(NewVReg5, RegState::Kill)
6618 .addReg(NewVReg3));
6619 }
Bill Wendlingb3d46782011-10-06 23:37:36 +00006620
6621 BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr))
6622 .addReg(NewVReg6, RegState::Kill)
6623 .addJumpTableIndex(MJTI)
6624 .addImm(UId);
Bill Wendling5626c662011-10-06 22:53:00 +00006625 } else {
6626 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6627 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1)
6628 .addFrameIndex(FI)
6629 .addImm(4)
6630 .addMemOperand(FIMMOLd));
Bill Wendling973c8172011-10-18 22:11:18 +00006631
Bill Wendling4969dcd2011-10-18 22:52:20 +00006632 if (NumLPads < 256) {
6633 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri))
6634 .addReg(NewVReg1)
6635 .addImm(NumLPads));
Bill Wendling2977a152011-10-19 09:24:02 +00006636 } else if (Subtarget->hasV6T2Ops() && isUInt<16>(NumLPads)) {
Bill Wendling4969dcd2011-10-18 22:52:20 +00006637 unsigned VReg1 = MRI->createVirtualRegister(TRC);
6638 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVi16), VReg1)
Bill Wendling94f60012011-10-18 23:19:55 +00006639 .addImm(NumLPads & 0xFFFF));
6640
6641 unsigned VReg2 = VReg1;
6642 if ((NumLPads & 0xFFFF0000) != 0) {
6643 VReg2 = MRI->createVirtualRegister(TRC);
6644 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVTi16), VReg2)
6645 .addReg(VReg1)
6646 .addImm(NumLPads >> 16));
6647 }
6648
Bill Wendling4969dcd2011-10-18 22:52:20 +00006649 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
6650 .addReg(NewVReg1)
6651 .addReg(VReg2));
Bill Wendling2977a152011-10-19 09:24:02 +00006652 } else {
6653 MachineConstantPool *ConstantPool = MF->getConstantPool();
6654 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6655 const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
6656
6657 // MachineConstantPool wants an explicit alignment.
Micah Villmowcdfe20b2012-10-08 16:38:25 +00006658 unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
Bill Wendling2977a152011-10-19 09:24:02 +00006659 if (Align == 0)
Micah Villmowcdfe20b2012-10-08 16:38:25 +00006660 Align = getDataLayout()->getTypeAllocSize(C->getType());
Bill Wendling2977a152011-10-19 09:24:02 +00006661 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6662
6663 unsigned VReg1 = MRI->createVirtualRegister(TRC);
6664 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRcp))
6665 .addReg(VReg1, RegState::Define)
Bill Wendlingcf7bdf42011-10-20 20:37:11 +00006666 .addConstantPoolIndex(Idx)
6667 .addImm(0));
Bill Wendling2977a152011-10-19 09:24:02 +00006668 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
6669 .addReg(NewVReg1)
6670 .addReg(VReg1, RegState::Kill));
Bill Wendling4969dcd2011-10-18 22:52:20 +00006671 }
6672
Bill Wendling5626c662011-10-06 22:53:00 +00006673 BuildMI(DispatchBB, dl, TII->get(ARM::Bcc))
6674 .addMBB(TrapBB)
6675 .addImm(ARMCC::HI)
6676 .addReg(ARM::CPSR);
Bill Wendling202803e2011-10-05 00:02:33 +00006677
Bill Wendling973c8172011-10-18 22:11:18 +00006678 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
Bill Wendling5626c662011-10-06 22:53:00 +00006679 AddDefaultCC(
Bill Wendling973c8172011-10-18 22:11:18 +00006680 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg3)
Bill Wendling5626c662011-10-06 22:53:00 +00006681 .addReg(NewVReg1)
6682 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
Bill Wendling973c8172011-10-18 22:11:18 +00006683 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6684 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg4)
Bill Wendling5626c662011-10-06 22:53:00 +00006685 .addJumpTableIndex(MJTI)
6686 .addImm(UId));
6687
6688 MachineMemOperand *JTMMOLd =
6689 MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
6690 MachineMemOperand::MOLoad, 4, 4);
Bill Wendling973c8172011-10-18 22:11:18 +00006691 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
Bill Wendling5626c662011-10-06 22:53:00 +00006692 AddDefaultPred(
Bill Wendling973c8172011-10-18 22:11:18 +00006693 BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg5)
6694 .addReg(NewVReg3, RegState::Kill)
6695 .addReg(NewVReg4)
Bill Wendling5626c662011-10-06 22:53:00 +00006696 .addImm(0)
6697 .addMemOperand(JTMMOLd));
6698
Chad Rosier96603432013-03-01 18:30:38 +00006699 if (RelocM == Reloc::PIC_) {
6700 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd))
6701 .addReg(NewVReg5, RegState::Kill)
6702 .addReg(NewVReg4)
6703 .addJumpTableIndex(MJTI)
6704 .addImm(UId);
6705 } else {
6706 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTr))
6707 .addReg(NewVReg5, RegState::Kill)
6708 .addJumpTableIndex(MJTI)
6709 .addImm(UId);
6710 }
Bill Wendling5626c662011-10-06 22:53:00 +00006711 }
Bill Wendling202803e2011-10-05 00:02:33 +00006712
Bill Wendling324be982011-10-05 00:39:32 +00006713 // Add the jump table entries as successors to the MBB.
Jakob Stoklund Olesen710093e2012-08-20 20:52:03 +00006714 SmallPtrSet<MachineBasicBlock*, 8> SeenMBBs;
Bill Wendling324be982011-10-05 00:39:32 +00006715 for (std::vector<MachineBasicBlock*>::iterator
Bill Wendling883ec972011-10-07 23:18:02 +00006716 I = LPadList.begin(), E = LPadList.end(); I != E; ++I) {
6717 MachineBasicBlock *CurMBB = *I;
Jakob Stoklund Olesen710093e2012-08-20 20:52:03 +00006718 if (SeenMBBs.insert(CurMBB))
Bill Wendling883ec972011-10-07 23:18:02 +00006719 DispContBB->addSuccessor(CurMBB);
Bill Wendling883ec972011-10-07 23:18:02 +00006720 }
6721
Bill Wendling26d27802011-10-17 05:25:09 +00006722 // N.B. the order the invoke BBs are processed in doesn't matter here.
Craig Topper840beec2014-04-04 05:16:06 +00006723 const MCPhysReg *SavedRegs = RI.getCalleeSavedRegs(MF);
Bill Wendling617075f2011-10-18 18:30:49 +00006724 SmallVector<MachineBasicBlock*, 64> MBBLPads;
Bill Wendling883ec972011-10-07 23:18:02 +00006725 for (SmallPtrSet<MachineBasicBlock*, 64>::iterator
6726 I = InvokeBBs.begin(), E = InvokeBBs.end(); I != E; ++I) {
6727 MachineBasicBlock *BB = *I;
Bill Wendling6f3f9a32011-10-14 23:34:37 +00006728
6729 // Remove the landing pad successor from the invoke block and replace it
6730 // with the new dispatch block.
Bill Wendling1414bc52011-10-26 07:16:18 +00006731 SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(),
6732 BB->succ_end());
6733 while (!Successors.empty()) {
6734 MachineBasicBlock *SMBB = Successors.pop_back_val();
Bill Wendling883ec972011-10-07 23:18:02 +00006735 if (SMBB->isLandingPad()) {
6736 BB->removeSuccessor(SMBB);
Bill Wendling617075f2011-10-18 18:30:49 +00006737 MBBLPads.push_back(SMBB);
Bill Wendling883ec972011-10-07 23:18:02 +00006738 }
6739 }
6740
6741 BB->addSuccessor(DispatchBB);
Bill Wendling6f3f9a32011-10-14 23:34:37 +00006742
6743 // Find the invoke call and mark all of the callee-saved registers as
6744 // 'implicit defined' so that they're spilled. This prevents code from
6745 // moving instructions to before the EH block, where they will never be
6746 // executed.
6747 for (MachineBasicBlock::reverse_iterator
6748 II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) {
Evan Cheng7f8e5632011-12-07 07:15:52 +00006749 if (!II->isCall()) continue;
Bill Wendling6f3f9a32011-10-14 23:34:37 +00006750
6751 DenseMap<unsigned, bool> DefRegs;
6752 for (MachineInstr::mop_iterator
6753 OI = II->operands_begin(), OE = II->operands_end();
6754 OI != OE; ++OI) {
6755 if (!OI->isReg()) continue;
6756 DefRegs[OI->getReg()] = true;
6757 }
6758
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00006759 MachineInstrBuilder MIB(*MF, &*II);
Bill Wendling6f3f9a32011-10-14 23:34:37 +00006760
Bill Wendling9e0cd1e2011-10-14 23:55:44 +00006761 for (unsigned i = 0; SavedRegs[i] != 0; ++i) {
Bill Wendling94e66432011-10-22 00:29:28 +00006762 unsigned Reg = SavedRegs[i];
6763 if (Subtarget->isThumb2() &&
Craig Topperc7242e02012-04-20 07:30:17 +00006764 !ARM::tGPRRegClass.contains(Reg) &&
6765 !ARM::hGPRRegClass.contains(Reg))
Bill Wendling94e66432011-10-22 00:29:28 +00006766 continue;
Craig Topperc7242e02012-04-20 07:30:17 +00006767 if (Subtarget->isThumb1Only() && !ARM::tGPRRegClass.contains(Reg))
Bill Wendling94e66432011-10-22 00:29:28 +00006768 continue;
Craig Topperc7242e02012-04-20 07:30:17 +00006769 if (!Subtarget->isThumb() && !ARM::GPRRegClass.contains(Reg))
Bill Wendling94e66432011-10-22 00:29:28 +00006770 continue;
6771 if (!DefRegs[Reg])
6772 MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);
Bill Wendling9e0cd1e2011-10-14 23:55:44 +00006773 }
Bill Wendling6f3f9a32011-10-14 23:34:37 +00006774
6775 break;
6776 }
Bill Wendling883ec972011-10-07 23:18:02 +00006777 }
Bill Wendling324be982011-10-05 00:39:32 +00006778
Bill Wendling617075f2011-10-18 18:30:49 +00006779 // Mark all former landing pads as non-landing pads. The dispatch is the only
6780 // landing pad now.
6781 for (SmallVectorImpl<MachineBasicBlock*>::iterator
6782 I = MBBLPads.begin(), E = MBBLPads.end(); I != E; ++I)
6783 (*I)->setIsLandingPad(false);
6784
Bill Wendling324be982011-10-05 00:39:32 +00006785 // The instruction is gone now.
6786 MI->eraseFromParent();
6787
Bill Wendling374ee192011-10-03 21:25:38 +00006788 return MBB;
6789}
6790
Evan Cheng0cc4ad92010-07-13 19:27:42 +00006791static
6792MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) {
6793 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
6794 E = MBB->succ_end(); I != E; ++I)
6795 if (*I != Succ)
6796 return *I;
6797 llvm_unreachable("Expecting a BB with two successors!");
6798}
6799
Manman Renb504f492013-10-29 22:27:32 +00006800/// Return the load opcode for a given load size. If load size >= 8,
6801/// neon opcode will be returned.
6802static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) {
6803 if (LdSize >= 8)
6804 return LdSize == 16 ? ARM::VLD1q32wb_fixed
6805 : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0;
6806 if (IsThumb1)
6807 return LdSize == 4 ? ARM::tLDRi
6808 : LdSize == 2 ? ARM::tLDRHi
6809 : LdSize == 1 ? ARM::tLDRBi : 0;
6810 if (IsThumb2)
6811 return LdSize == 4 ? ARM::t2LDR_POST
6812 : LdSize == 2 ? ARM::t2LDRH_POST
6813 : LdSize == 1 ? ARM::t2LDRB_POST : 0;
6814 return LdSize == 4 ? ARM::LDR_POST_IMM
6815 : LdSize == 2 ? ARM::LDRH_POST
6816 : LdSize == 1 ? ARM::LDRB_POST_IMM : 0;
6817}
6818
6819/// Return the store opcode for a given store size. If store size >= 8,
6820/// neon opcode will be returned.
6821static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) {
6822 if (StSize >= 8)
6823 return StSize == 16 ? ARM::VST1q32wb_fixed
6824 : StSize == 8 ? ARM::VST1d32wb_fixed : 0;
6825 if (IsThumb1)
6826 return StSize == 4 ? ARM::tSTRi
6827 : StSize == 2 ? ARM::tSTRHi
6828 : StSize == 1 ? ARM::tSTRBi : 0;
6829 if (IsThumb2)
6830 return StSize == 4 ? ARM::t2STR_POST
6831 : StSize == 2 ? ARM::t2STRH_POST
6832 : StSize == 1 ? ARM::t2STRB_POST : 0;
6833 return StSize == 4 ? ARM::STR_POST_IMM
6834 : StSize == 2 ? ARM::STRH_POST
6835 : StSize == 1 ? ARM::STRB_POST_IMM : 0;
6836}
6837
6838/// Emit a post-increment load operation with given size. The instructions
6839/// will be added to BB at Pos.
6840static void emitPostLd(MachineBasicBlock *BB, MachineInstr *Pos,
6841 const TargetInstrInfo *TII, DebugLoc dl,
6842 unsigned LdSize, unsigned Data, unsigned AddrIn,
6843 unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
6844 unsigned LdOpc = getLdOpcode(LdSize, IsThumb1, IsThumb2);
6845 assert(LdOpc != 0 && "Should have a load opcode");
6846 if (LdSize >= 8) {
6847 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6848 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6849 .addImm(0));
6850 } else if (IsThumb1) {
6851 // load + update AddrIn
6852 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6853 .addReg(AddrIn).addImm(0));
6854 MachineInstrBuilder MIB =
6855 BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
6856 MIB = AddDefaultT1CC(MIB);
6857 MIB.addReg(AddrIn).addImm(LdSize);
6858 AddDefaultPred(MIB);
6859 } else if (IsThumb2) {
6860 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6861 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6862 .addImm(LdSize));
6863 } else { // arm
6864 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6865 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6866 .addReg(0).addImm(LdSize));
6867 }
6868}
6869
6870/// Emit a post-increment store operation with given size. The instructions
6871/// will be added to BB at Pos.
6872static void emitPostSt(MachineBasicBlock *BB, MachineInstr *Pos,
6873 const TargetInstrInfo *TII, DebugLoc dl,
6874 unsigned StSize, unsigned Data, unsigned AddrIn,
6875 unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
6876 unsigned StOpc = getStOpcode(StSize, IsThumb1, IsThumb2);
6877 assert(StOpc != 0 && "Should have a store opcode");
6878 if (StSize >= 8) {
6879 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6880 .addReg(AddrIn).addImm(0).addReg(Data));
6881 } else if (IsThumb1) {
6882 // store + update AddrIn
6883 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc)).addReg(Data)
6884 .addReg(AddrIn).addImm(0));
6885 MachineInstrBuilder MIB =
6886 BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
6887 MIB = AddDefaultT1CC(MIB);
6888 MIB.addReg(AddrIn).addImm(StSize);
6889 AddDefaultPred(MIB);
6890 } else if (IsThumb2) {
6891 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6892 .addReg(Data).addReg(AddrIn).addImm(StSize));
6893 } else { // arm
6894 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6895 .addReg(Data).addReg(AddrIn).addReg(0)
6896 .addImm(StSize));
6897 }
6898}
6899
David Peixottoc32e24a2013-10-17 19:49:22 +00006900MachineBasicBlock *
6901ARMTargetLowering::EmitStructByval(MachineInstr *MI,
6902 MachineBasicBlock *BB) const {
Manman Rene8735522012-06-01 19:33:18 +00006903 // This pseudo instruction has 3 operands: dst, src, size
6904 // We expand it to a loop if size > Subtarget->getMaxInlineSizeThreshold().
6905 // Otherwise, we will generate unrolled scalar copies.
6906 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6907 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6908 MachineFunction::iterator It = BB;
6909 ++It;
6910
6911 unsigned dest = MI->getOperand(0).getReg();
6912 unsigned src = MI->getOperand(1).getReg();
6913 unsigned SizeVal = MI->getOperand(2).getImm();
6914 unsigned Align = MI->getOperand(3).getImm();
6915 DebugLoc dl = MI->getDebugLoc();
6916
Manman Rene8735522012-06-01 19:33:18 +00006917 MachineFunction *MF = BB->getParent();
6918 MachineRegisterInfo &MRI = MF->getRegInfo();
David Peixottoc32e24a2013-10-17 19:49:22 +00006919 unsigned UnitSize = 0;
Craig Topper062a2ba2014-04-25 05:30:21 +00006920 const TargetRegisterClass *TRC = nullptr;
6921 const TargetRegisterClass *VecTRC = nullptr;
David Peixottob0653e532013-10-24 16:39:36 +00006922
6923 bool IsThumb1 = Subtarget->isThumb1Only();
6924 bool IsThumb2 = Subtarget->isThumb2();
Manman Rene8735522012-06-01 19:33:18 +00006925
6926 if (Align & 1) {
Manman Rene8735522012-06-01 19:33:18 +00006927 UnitSize = 1;
6928 } else if (Align & 2) {
Manman Rene8735522012-06-01 19:33:18 +00006929 UnitSize = 2;
6930 } else {
Manman Ren6e1fd462012-06-18 22:23:48 +00006931 // Check whether we can use NEON instructions.
Bill Wendling698e84f2012-12-30 10:32:01 +00006932 if (!MF->getFunction()->getAttributes().
6933 hasAttribute(AttributeSet::FunctionIndex,
6934 Attribute::NoImplicitFloat) &&
Manman Ren6e1fd462012-06-18 22:23:48 +00006935 Subtarget->hasNEON()) {
David Peixottoc32e24a2013-10-17 19:49:22 +00006936 if ((Align % 16 == 0) && SizeVal >= 16)
Manman Ren6e1fd462012-06-18 22:23:48 +00006937 UnitSize = 16;
David Peixottoc32e24a2013-10-17 19:49:22 +00006938 else if ((Align % 8 == 0) && SizeVal >= 8)
Manman Ren6e1fd462012-06-18 22:23:48 +00006939 UnitSize = 8;
Manman Ren6e1fd462012-06-18 22:23:48 +00006940 }
6941 // Can't use NEON instructions.
David Peixottoc32e24a2013-10-17 19:49:22 +00006942 if (UnitSize == 0)
Manman Ren6e1fd462012-06-18 22:23:48 +00006943 UnitSize = 4;
Manman Rene8735522012-06-01 19:33:18 +00006944 }
Manman Ren6e1fd462012-06-18 22:23:48 +00006945
David Peixottob0653e532013-10-24 16:39:36 +00006946 // Select the correct opcode and register class for unit size load/store
6947 bool IsNeon = UnitSize >= 8;
6948 TRC = (IsThumb1 || IsThumb2) ? (const TargetRegisterClass *)&ARM::tGPRRegClass
6949 : (const TargetRegisterClass *)&ARM::GPRRegClass;
Manman Renb504f492013-10-29 22:27:32 +00006950 if (IsNeon)
David Peixottob0653e532013-10-24 16:39:36 +00006951 VecTRC = UnitSize == 16
6952 ? (const TargetRegisterClass *)&ARM::DPairRegClass
6953 : UnitSize == 8
6954 ? (const TargetRegisterClass *)&ARM::DPRRegClass
Craig Topper062a2ba2014-04-25 05:30:21 +00006955 : nullptr;
David Peixottob0653e532013-10-24 16:39:36 +00006956
Manman Rene8735522012-06-01 19:33:18 +00006957 unsigned BytesLeft = SizeVal % UnitSize;
6958 unsigned LoopSize = SizeVal - BytesLeft;
6959
6960 if (SizeVal <= Subtarget->getMaxInlineSizeThreshold()) {
6961 // Use LDR and STR to copy.
6962 // [scratch, srcOut] = LDR_POST(srcIn, UnitSize)
6963 // [destOut] = STR_POST(scratch, destIn, UnitSize)
6964 unsigned srcIn = src;
6965 unsigned destIn = dest;
6966 for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
David Peixottob0653e532013-10-24 16:39:36 +00006967 unsigned srcOut = MRI.createVirtualRegister(TRC);
6968 unsigned destOut = MRI.createVirtualRegister(TRC);
6969 unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
Manman Renb504f492013-10-29 22:27:32 +00006970 emitPostLd(BB, MI, TII, dl, UnitSize, scratch, srcIn, srcOut,
6971 IsThumb1, IsThumb2);
6972 emitPostSt(BB, MI, TII, dl, UnitSize, scratch, destIn, destOut,
6973 IsThumb1, IsThumb2);
David Peixottob0653e532013-10-24 16:39:36 +00006974 srcIn = srcOut;
6975 destIn = destOut;
Manman Rene8735522012-06-01 19:33:18 +00006976 }
6977
6978 // Handle the leftover bytes with LDRB and STRB.
6979 // [scratch, srcOut] = LDRB_POST(srcIn, 1)
6980 // [destOut] = STRB_POST(scratch, destIn, 1)
Manman Rene8735522012-06-01 19:33:18 +00006981 for (unsigned i = 0; i < BytesLeft; i++) {
David Peixottob0653e532013-10-24 16:39:36 +00006982 unsigned srcOut = MRI.createVirtualRegister(TRC);
6983 unsigned destOut = MRI.createVirtualRegister(TRC);
6984 unsigned scratch = MRI.createVirtualRegister(TRC);
Manman Renb504f492013-10-29 22:27:32 +00006985 emitPostLd(BB, MI, TII, dl, 1, scratch, srcIn, srcOut,
6986 IsThumb1, IsThumb2);
6987 emitPostSt(BB, MI, TII, dl, 1, scratch, destIn, destOut,
6988 IsThumb1, IsThumb2);
David Peixottob0653e532013-10-24 16:39:36 +00006989 srcIn = srcOut;
6990 destIn = destOut;
Manman Rene8735522012-06-01 19:33:18 +00006991 }
6992 MI->eraseFromParent(); // The instruction is gone now.
6993 return BB;
6994 }
6995
6996 // Expand the pseudo op to a loop.
6997 // thisMBB:
6998 // ...
6999 // movw varEnd, # --> with thumb2
7000 // movt varEnd, #
7001 // ldrcp varEnd, idx --> without thumb2
7002 // fallthrough --> loopMBB
7003 // loopMBB:
7004 // PHI varPhi, varEnd, varLoop
7005 // PHI srcPhi, src, srcLoop
7006 // PHI destPhi, dst, destLoop
7007 // [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7008 // [destLoop] = STR_POST(scratch, destPhi, UnitSize)
7009 // subs varLoop, varPhi, #UnitSize
7010 // bne loopMBB
7011 // fallthrough --> exitMBB
7012 // exitMBB:
7013 // epilogue to handle left-over bytes
7014 // [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7015 // [destOut] = STRB_POST(scratch, destLoop, 1)
7016 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7017 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7018 MF->insert(It, loopMBB);
7019 MF->insert(It, exitMBB);
7020
7021 // Transfer the remainder of BB and its successor edges to exitMBB.
7022 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007023 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Manman Rene8735522012-06-01 19:33:18 +00007024 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
7025
7026 // Load an immediate to varEnd.
David Peixottob0653e532013-10-24 16:39:36 +00007027 unsigned varEnd = MRI.createVirtualRegister(TRC);
7028 if (IsThumb2) {
7029 unsigned Vtmp = varEnd;
7030 if ((LoopSize & 0xFFFF0000) != 0)
7031 Vtmp = MRI.createVirtualRegister(TRC);
7032 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2MOVi16), Vtmp)
7033 .addImm(LoopSize & 0xFFFF));
7034
7035 if ((LoopSize & 0xFFFF0000) != 0)
7036 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2MOVTi16), varEnd)
7037 .addReg(Vtmp).addImm(LoopSize >> 16));
7038 } else {
7039 MachineConstantPool *ConstantPool = MF->getConstantPool();
7040 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7041 const Constant *C = ConstantInt::get(Int32Ty, LoopSize);
7042
7043 // MachineConstantPool wants an explicit alignment.
7044 unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
7045 if (Align == 0)
7046 Align = getDataLayout()->getTypeAllocSize(C->getType());
7047 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7048
7049 if (IsThumb1)
7050 AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::tLDRpci)).addReg(
7051 varEnd, RegState::Define).addConstantPoolIndex(Idx));
7052 else
7053 AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::LDRcp)).addReg(
7054 varEnd, RegState::Define).addConstantPoolIndex(Idx).addImm(0));
7055 }
Manman Rene8735522012-06-01 19:33:18 +00007056 BB->addSuccessor(loopMBB);
7057
7058 // Generate the loop body:
7059 // varPhi = PHI(varLoop, varEnd)
7060 // srcPhi = PHI(srcLoop, src)
7061 // destPhi = PHI(destLoop, dst)
7062 MachineBasicBlock *entryBB = BB;
7063 BB = loopMBB;
David Peixottob0653e532013-10-24 16:39:36 +00007064 unsigned varLoop = MRI.createVirtualRegister(TRC);
7065 unsigned varPhi = MRI.createVirtualRegister(TRC);
7066 unsigned srcLoop = MRI.createVirtualRegister(TRC);
7067 unsigned srcPhi = MRI.createVirtualRegister(TRC);
7068 unsigned destLoop = MRI.createVirtualRegister(TRC);
7069 unsigned destPhi = MRI.createVirtualRegister(TRC);
Manman Rene8735522012-06-01 19:33:18 +00007070
7071 BuildMI(*BB, BB->begin(), dl, TII->get(ARM::PHI), varPhi)
7072 .addReg(varLoop).addMBB(loopMBB)
7073 .addReg(varEnd).addMBB(entryBB);
7074 BuildMI(BB, dl, TII->get(ARM::PHI), srcPhi)
7075 .addReg(srcLoop).addMBB(loopMBB)
7076 .addReg(src).addMBB(entryBB);
7077 BuildMI(BB, dl, TII->get(ARM::PHI), destPhi)
7078 .addReg(destLoop).addMBB(loopMBB)
7079 .addReg(dest).addMBB(entryBB);
7080
7081 // [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7082 // [destLoop] = STR_POST(scratch, destPhi, UnitSiz)
David Peixottob0653e532013-10-24 16:39:36 +00007083 unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
Manman Renb504f492013-10-29 22:27:32 +00007084 emitPostLd(BB, BB->end(), TII, dl, UnitSize, scratch, srcPhi, srcLoop,
7085 IsThumb1, IsThumb2);
7086 emitPostSt(BB, BB->end(), TII, dl, UnitSize, scratch, destPhi, destLoop,
7087 IsThumb1, IsThumb2);
Manman Rene8735522012-06-01 19:33:18 +00007088
7089 // Decrement loop variable by UnitSize.
David Peixottob0653e532013-10-24 16:39:36 +00007090 if (IsThumb1) {
7091 MachineInstrBuilder MIB =
7092 BuildMI(*BB, BB->end(), dl, TII->get(ARM::tSUBi8), varLoop);
7093 MIB = AddDefaultT1CC(MIB);
7094 MIB.addReg(varPhi).addImm(UnitSize);
7095 AddDefaultPred(MIB);
7096 } else {
7097 MachineInstrBuilder MIB =
7098 BuildMI(*BB, BB->end(), dl,
7099 TII->get(IsThumb2 ? ARM::t2SUBri : ARM::SUBri), varLoop);
7100 AddDefaultCC(AddDefaultPred(MIB.addReg(varPhi).addImm(UnitSize)));
7101 MIB->getOperand(5).setReg(ARM::CPSR);
7102 MIB->getOperand(5).setIsDef(true);
7103 }
7104 BuildMI(*BB, BB->end(), dl,
7105 TII->get(IsThumb1 ? ARM::tBcc : IsThumb2 ? ARM::t2Bcc : ARM::Bcc))
7106 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
Manman Rene8735522012-06-01 19:33:18 +00007107
7108 // loopMBB can loop back to loopMBB or fall through to exitMBB.
7109 BB->addSuccessor(loopMBB);
7110 BB->addSuccessor(exitMBB);
7111
7112 // Add epilogue to handle BytesLeft.
7113 BB = exitMBB;
7114 MachineInstr *StartOfExit = exitMBB->begin();
Manman Rene8735522012-06-01 19:33:18 +00007115
7116 // [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7117 // [destOut] = STRB_POST(scratch, destLoop, 1)
7118 unsigned srcIn = srcLoop;
7119 unsigned destIn = destLoop;
7120 for (unsigned i = 0; i < BytesLeft; i++) {
David Peixottob0653e532013-10-24 16:39:36 +00007121 unsigned srcOut = MRI.createVirtualRegister(TRC);
7122 unsigned destOut = MRI.createVirtualRegister(TRC);
7123 unsigned scratch = MRI.createVirtualRegister(TRC);
Manman Renb504f492013-10-29 22:27:32 +00007124 emitPostLd(BB, StartOfExit, TII, dl, 1, scratch, srcIn, srcOut,
7125 IsThumb1, IsThumb2);
7126 emitPostSt(BB, StartOfExit, TII, dl, 1, scratch, destIn, destOut,
7127 IsThumb1, IsThumb2);
David Peixottob0653e532013-10-24 16:39:36 +00007128 srcIn = srcOut;
7129 destIn = destOut;
Manman Rene8735522012-06-01 19:33:18 +00007130 }
7131
7132 MI->eraseFromParent(); // The instruction is gone now.
7133 return BB;
7134}
7135
Jim Grosbach8f9a3ac2009-12-12 01:40:06 +00007136MachineBasicBlock *
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00007137ARMTargetLowering::EmitLowered__chkstk(MachineInstr *MI,
7138 MachineBasicBlock *MBB) const {
7139 const TargetMachine &TM = getTargetMachine();
7140 const TargetInstrInfo &TII = *TM.getInstrInfo();
7141 DebugLoc DL = MI->getDebugLoc();
7142
7143 assert(Subtarget->isTargetWindows() &&
7144 "__chkstk is only supported on Windows");
7145 assert(Subtarget->isThumb2() && "Windows on ARM requires Thumb-2 mode");
7146
7147 // __chkstk takes the number of words to allocate on the stack in R4, and
7148 // returns the stack adjustment in number of bytes in R4. This will not
7149 // clober any other registers (other than the obvious lr).
7150 //
7151 // Although, technically, IP should be considered a register which may be
7152 // clobbered, the call itself will not touch it. Windows on ARM is a pure
7153 // thumb-2 environment, so there is no interworking required. As a result, we
7154 // do not expect a veneer to be emitted by the linker, clobbering IP.
7155 //
Alp Toker1d099d92014-06-19 19:41:26 +00007156 // Each module receives its own copy of __chkstk, so no import thunk is
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00007157 // required, again, ensuring that IP is not clobbered.
7158 //
7159 // Finally, although some linkers may theoretically provide a trampoline for
7160 // out of range calls (which is quite common due to a 32M range limitation of
7161 // branches for Thumb), we can generate the long-call version via
7162 // -mcmodel=large, alleviating the need for the trampoline which may clobber
7163 // IP.
7164
7165 switch (TM.getCodeModel()) {
7166 case CodeModel::Small:
7167 case CodeModel::Medium:
7168 case CodeModel::Default:
7169 case CodeModel::Kernel:
7170 BuildMI(*MBB, MI, DL, TII.get(ARM::tBL))
7171 .addImm((unsigned)ARMCC::AL).addReg(0)
7172 .addExternalSymbol("__chkstk")
7173 .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7174 .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7175 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7176 break;
7177 case CodeModel::Large:
7178 case CodeModel::JITDefault: {
7179 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
7180 unsigned Reg = MRI.createVirtualRegister(&ARM::rGPRRegClass);
7181
7182 BuildMI(*MBB, MI, DL, TII.get(ARM::t2MOVi32imm), Reg)
7183 .addExternalSymbol("__chkstk");
7184 BuildMI(*MBB, MI, DL, TII.get(ARM::tBLXr))
7185 .addImm((unsigned)ARMCC::AL).addReg(0)
7186 .addReg(Reg, RegState::Kill)
7187 .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7188 .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7189 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7190 break;
7191 }
7192 }
7193
7194 AddDefaultCC(AddDefaultPred(BuildMI(*MBB, MI, DL, TII.get(ARM::t2SUBrr),
7195 ARM::SP)
7196 .addReg(ARM::SP, RegState::Define)
7197 .addReg(ARM::R4, RegState::Kill)));
7198
7199 MI->eraseFromParent();
7200 return MBB;
7201}
7202
7203MachineBasicBlock *
Evan Cheng29cfb672008-01-30 18:18:23 +00007204ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +00007205 MachineBasicBlock *BB) const {
Evan Cheng10043e22007-01-19 07:51:42 +00007206 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Dale Johannesen7647da62009-02-13 02:25:56 +00007207 DebugLoc dl = MI->getDebugLoc();
Jim Grosbach57ccc192009-12-14 20:14:59 +00007208 bool isThumb2 = Subtarget->isThumb2();
Evan Cheng10043e22007-01-19 07:51:42 +00007209 switch (MI->getOpcode()) {
Andrew Trick0ed57782011-04-23 03:55:32 +00007210 default: {
Jim Grosbach5c4e99f2009-12-11 01:42:04 +00007211 MI->dump();
Evan Chengb972e562009-08-07 00:34:42 +00007212 llvm_unreachable("Unexpected instr type to insert");
Andrew Trick0ed57782011-04-23 03:55:32 +00007213 }
Jim Grosbach9c0b86a2011-09-16 21:55:56 +00007214 // The Thumb2 pre-indexed stores have the same MI operands, they just
7215 // define them differently in the .td files from the isel patterns, so
7216 // they need pseudos.
7217 case ARM::t2STR_preidx:
7218 MI->setDesc(TII->get(ARM::t2STR_PRE));
7219 return BB;
7220 case ARM::t2STRB_preidx:
7221 MI->setDesc(TII->get(ARM::t2STRB_PRE));
7222 return BB;
7223 case ARM::t2STRH_preidx:
7224 MI->setDesc(TII->get(ARM::t2STRH_PRE));
7225 return BB;
7226
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00007227 case ARM::STRi_preidx:
7228 case ARM::STRBi_preidx: {
Jim Grosbach5e80abb2011-08-09 21:22:41 +00007229 unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ?
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00007230 ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM;
7231 // Decode the offset.
7232 unsigned Offset = MI->getOperand(4).getImm();
7233 bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub;
7234 Offset = ARM_AM::getAM2Offset(Offset);
7235 if (isSub)
7236 Offset = -Offset;
7237
Jim Grosbachf402f692011-08-12 21:02:34 +00007238 MachineMemOperand *MMO = *MI->memoperands_begin();
Benjamin Kramer61a1ff52011-08-27 17:36:14 +00007239 BuildMI(*BB, MI, dl, TII->get(NewOpc))
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00007240 .addOperand(MI->getOperand(0)) // Rn_wb
7241 .addOperand(MI->getOperand(1)) // Rt
7242 .addOperand(MI->getOperand(2)) // Rn
7243 .addImm(Offset) // offset (skip GPR==zero_reg)
7244 .addOperand(MI->getOperand(5)) // pred
Jim Grosbachf402f692011-08-12 21:02:34 +00007245 .addOperand(MI->getOperand(6))
7246 .addMemOperand(MMO);
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00007247 MI->eraseFromParent();
7248 return BB;
7249 }
7250 case ARM::STRr_preidx:
Jim Grosbachd886f8c2011-08-11 21:17:22 +00007251 case ARM::STRBr_preidx:
7252 case ARM::STRH_preidx: {
7253 unsigned NewOpc;
7254 switch (MI->getOpcode()) {
7255 default: llvm_unreachable("unexpected opcode!");
7256 case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break;
7257 case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break;
7258 case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break;
7259 }
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00007260 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc));
7261 for (unsigned i = 0; i < MI->getNumOperands(); ++i)
7262 MIB.addOperand(MI->getOperand(i));
7263 MI->eraseFromParent();
7264 return BB;
7265 }
Eli Friedmanc3f9c4a2011-08-31 00:31:29 +00007266
Evan Chengbb2af352009-08-12 05:17:19 +00007267 case ARM::tMOVCCr_pseudo: {
Evan Cheng10043e22007-01-19 07:51:42 +00007268 // To "insert" a SELECT_CC instruction, we actually have to insert the
7269 // diamond control-flow pattern. The incoming instruction knows the
7270 // destination vreg to set, the condition code register to branch on, the
7271 // true/false values to select between, and a branch opcode to use.
7272 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman3b460302008-07-07 23:14:23 +00007273 MachineFunction::iterator It = BB;
Evan Cheng10043e22007-01-19 07:51:42 +00007274 ++It;
7275
7276 // thisMBB:
7277 // ...
7278 // TrueVal = ...
7279 // cmpTY ccX, r1, r2
7280 // bCC copy1MBB
7281 // fallthrough --> copy0MBB
7282 MachineBasicBlock *thisMBB = BB;
Dan Gohman3b460302008-07-07 23:14:23 +00007283 MachineFunction *F = BB->getParent();
7284 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7285 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohmanf4f04102010-07-06 15:49:48 +00007286 F->insert(It, copy0MBB);
7287 F->insert(It, sinkMBB);
Dan Gohman34396292010-07-06 20:24:04 +00007288
7289 // Transfer the remainder of BB and its successor edges to sinkMBB.
7290 sinkMBB->splice(sinkMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007291 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00007292 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7293
Dan Gohmanf4f04102010-07-06 15:49:48 +00007294 BB->addSuccessor(copy0MBB);
7295 BB->addSuccessor(sinkMBB);
Dan Gohman12205642010-07-06 15:18:19 +00007296
Dan Gohman34396292010-07-06 20:24:04 +00007297 BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
7298 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
7299
Evan Cheng10043e22007-01-19 07:51:42 +00007300 // copy0MBB:
7301 // %FalseValue = ...
7302 // # fallthrough to sinkMBB
7303 BB = copy0MBB;
7304
7305 // Update machine-CFG edges
7306 BB->addSuccessor(sinkMBB);
7307
7308 // sinkMBB:
7309 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7310 // ...
7311 BB = sinkMBB;
Dan Gohman34396292010-07-06 20:24:04 +00007312 BuildMI(*BB, BB->begin(), dl,
7313 TII->get(ARM::PHI), MI->getOperand(0).getReg())
Evan Cheng10043e22007-01-19 07:51:42 +00007314 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7315 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7316
Dan Gohman34396292010-07-06 20:24:04 +00007317 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng10043e22007-01-19 07:51:42 +00007318 return BB;
7319 }
Evan Chengb972e562009-08-07 00:34:42 +00007320
Evan Cheng0cc4ad92010-07-13 19:27:42 +00007321 case ARM::BCCi64:
7322 case ARM::BCCZi64: {
Bob Wilson36be00c2010-12-23 22:45:49 +00007323 // If there is an unconditional branch to the other successor, remove it.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007324 BB->erase(std::next(MachineBasicBlock::iterator(MI)), BB->end());
Andrew Trick5eb0a302011-01-19 02:26:13 +00007325
Evan Cheng0cc4ad92010-07-13 19:27:42 +00007326 // Compare both parts that make up the double comparison separately for
7327 // equality.
7328 bool RHSisZero = MI->getOpcode() == ARM::BCCZi64;
7329
7330 unsigned LHS1 = MI->getOperand(1).getReg();
7331 unsigned LHS2 = MI->getOperand(2).getReg();
7332 if (RHSisZero) {
7333 AddDefaultPred(BuildMI(BB, dl,
7334 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7335 .addReg(LHS1).addImm(0));
7336 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7337 .addReg(LHS2).addImm(0)
7338 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7339 } else {
7340 unsigned RHS1 = MI->getOperand(3).getReg();
7341 unsigned RHS2 = MI->getOperand(4).getReg();
7342 AddDefaultPred(BuildMI(BB, dl,
7343 TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7344 .addReg(LHS1).addReg(RHS1));
7345 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7346 .addReg(LHS2).addReg(RHS2)
7347 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7348 }
7349
7350 MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB();
7351 MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
7352 if (MI->getOperand(0).getImm() == ARMCC::NE)
7353 std::swap(destMBB, exitMBB);
7354
7355 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
7356 .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR);
Owen Anderson29cfe6c2011-09-09 21:48:23 +00007357 if (isThumb2)
7358 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB));
7359 else
7360 BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00007361
7362 MI->eraseFromParent(); // The pseudo instruction is gone now.
7363 return BB;
7364 }
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007365
Bill Wendlingf7f223f2011-10-17 20:37:20 +00007366 case ARM::Int_eh_sjlj_setjmp:
7367 case ARM::Int_eh_sjlj_setjmp_nofp:
7368 case ARM::tInt_eh_sjlj_setjmp:
7369 case ARM::t2Int_eh_sjlj_setjmp:
7370 case ARM::t2Int_eh_sjlj_setjmp_nofp:
7371 EmitSjLjDispatchBlock(MI, BB);
7372 return BB;
7373
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007374 case ARM::ABS:
7375 case ARM::t2ABS: {
7376 // To insert an ABS instruction, we have to insert the
7377 // diamond control-flow pattern. The incoming instruction knows the
7378 // source vreg to test against 0, the destination vreg to set,
7379 // the condition code register to branch on, the
Andrew Trick3f07c422011-10-18 18:40:53 +00007380 // true/false values to select between, and a branch opcode to use.
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007381 // It transforms
7382 // V1 = ABS V0
7383 // into
7384 // V2 = MOVS V0
7385 // BCC (branch to SinkBB if V0 >= 0)
7386 // RSBBB: V3 = RSBri V2, 0 (compute ABS if V2 < 0)
Andrew Trick3f07c422011-10-18 18:40:53 +00007387 // SinkBB: V1 = PHI(V2, V3)
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007388 const BasicBlock *LLVM_BB = BB->getBasicBlock();
7389 MachineFunction::iterator BBI = BB;
7390 ++BBI;
7391 MachineFunction *Fn = BB->getParent();
7392 MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB);
7393 MachineBasicBlock *SinkBB = Fn->CreateMachineBasicBlock(LLVM_BB);
7394 Fn->insert(BBI, RSBBB);
7395 Fn->insert(BBI, SinkBB);
7396
7397 unsigned int ABSSrcReg = MI->getOperand(1).getReg();
7398 unsigned int ABSDstReg = MI->getOperand(0).getReg();
7399 bool isThumb2 = Subtarget->isThumb2();
7400 MachineRegisterInfo &MRI = Fn->getRegInfo();
7401 // In Thumb mode S must not be specified if source register is the SP or
7402 // PC and if destination register is the SP, so restrict register class
Craig Topperc7242e02012-04-20 07:30:17 +00007403 unsigned NewRsbDstReg = MRI.createVirtualRegister(isThumb2 ?
7404 (const TargetRegisterClass*)&ARM::rGPRRegClass :
7405 (const TargetRegisterClass*)&ARM::GPRRegClass);
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007406
7407 // Transfer the remainder of BB and its successor edges to sinkMBB.
7408 SinkBB->splice(SinkBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007409 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007410 SinkBB->transferSuccessorsAndUpdatePHIs(BB);
7411
7412 BB->addSuccessor(RSBBB);
7413 BB->addSuccessor(SinkBB);
7414
7415 // fall through to SinkMBB
7416 RSBBB->addSuccessor(SinkBB);
7417
Manman Rene0763c72012-06-15 21:32:12 +00007418 // insert a cmp at the end of BB
Andrew Trickbc325162012-07-18 18:34:24 +00007419 AddDefaultPred(BuildMI(BB, dl,
Manman Rene0763c72012-06-15 21:32:12 +00007420 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7421 .addReg(ABSSrcReg).addImm(0));
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007422
7423 // insert a bcc with opposite CC to ARMCC::MI at the end of BB
Andrew Trick3f07c422011-10-18 18:40:53 +00007424 BuildMI(BB, dl,
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007425 TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB)
7426 .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR);
7427
7428 // insert rsbri in RSBBB
7429 // Note: BCC and rsbri will be converted into predicated rsbmi
7430 // by if-conversion pass
Andrew Trick3f07c422011-10-18 18:40:53 +00007431 BuildMI(*RSBBB, RSBBB->begin(), dl,
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007432 TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg)
Manman Rene0763c72012-06-15 21:32:12 +00007433 .addReg(ABSSrcReg, RegState::Kill)
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007434 .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
7435
Andrew Trick3f07c422011-10-18 18:40:53 +00007436 // insert PHI in SinkBB,
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007437 // reuse ABSDstReg to not change uses of ABS instruction
7438 BuildMI(*SinkBB, SinkBB->begin(), dl,
7439 TII->get(ARM::PHI), ABSDstReg)
7440 .addReg(NewRsbDstReg).addMBB(RSBBB)
Manman Rene0763c72012-06-15 21:32:12 +00007441 .addReg(ABSSrcReg).addMBB(BB);
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007442
7443 // remove ABS instruction
Andrew Trick3f07c422011-10-18 18:40:53 +00007444 MI->eraseFromParent();
Bill Wendlinga7d697e2011-10-10 22:59:55 +00007445
7446 // return last added BB
7447 return SinkBB;
7448 }
Manman Rene8735522012-06-01 19:33:18 +00007449 case ARM::COPY_STRUCT_BYVAL_I32:
Manman Ren9f911162012-06-01 02:44:42 +00007450 ++NumLoopByVals;
Manman Rene8735522012-06-01 19:33:18 +00007451 return EmitStructByval(MI, BB);
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00007452 case ARM::WIN__CHKSTK:
7453 return EmitLowered__chkstk(MI, BB);
Evan Cheng10043e22007-01-19 07:51:42 +00007454 }
7455}
7456
Evan Chenge6fba772011-08-30 19:09:48 +00007457void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI,
7458 SDNode *Node) const {
Evan Cheng7f8e5632011-12-07 07:15:52 +00007459 if (!MI->hasPostISelHook()) {
Andrew Trick924123a2011-09-21 02:20:46 +00007460 assert(!convertAddSubFlagsOpcode(MI->getOpcode()) &&
7461 "Pseudo flag-setting opcodes must be marked with 'hasPostISelHook'");
7462 return;
7463 }
7464
Evan Cheng7f8e5632011-12-07 07:15:52 +00007465 const MCInstrDesc *MCID = &MI->getDesc();
Andrew Trick8586e622011-09-20 03:17:40 +00007466 // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB,
7467 // RSC. Coming out of isel, they have an implicit CPSR def, but the optional
7468 // operand is still set to noreg. If needed, set the optional operand's
7469 // register to CPSR, and remove the redundant implicit def.
Andrew Trick924123a2011-09-21 02:20:46 +00007470 //
Andrew Trick88b24502011-10-18 19:18:52 +00007471 // e.g. ADCS (..., CPSR<imp-def>) -> ADC (... opt:CPSR<def>).
Andrew Trick8586e622011-09-20 03:17:40 +00007472
Andrew Trick924123a2011-09-21 02:20:46 +00007473 // Rename pseudo opcodes.
7474 unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode());
7475 if (NewOpc) {
7476 const ARMBaseInstrInfo *TII =
7477 static_cast<const ARMBaseInstrInfo*>(getTargetMachine().getInstrInfo());
Andrew Trick88b24502011-10-18 19:18:52 +00007478 MCID = &TII->get(NewOpc);
7479
7480 assert(MCID->getNumOperands() == MI->getDesc().getNumOperands() + 1 &&
7481 "converted opcode should be the same except for cc_out");
7482
7483 MI->setDesc(*MCID);
7484
7485 // Add the optional cc_out operand
7486 MI->addOperand(MachineOperand::CreateReg(0, /*isDef=*/true));
Andrew Trick924123a2011-09-21 02:20:46 +00007487 }
Andrew Trick88b24502011-10-18 19:18:52 +00007488 unsigned ccOutIdx = MCID->getNumOperands() - 1;
Andrew Trick8586e622011-09-20 03:17:40 +00007489
7490 // Any ARM instruction that sets the 's' bit should specify an optional
7491 // "cc_out" operand in the last operand position.
Evan Cheng7f8e5632011-12-07 07:15:52 +00007492 if (!MI->hasOptionalDef() || !MCID->OpInfo[ccOutIdx].isOptionalDef()) {
Andrew Trick924123a2011-09-21 02:20:46 +00007493 assert(!NewOpc && "Optional cc_out operand required");
Andrew Trick8586e622011-09-20 03:17:40 +00007494 return;
7495 }
Andrew Trick924123a2011-09-21 02:20:46 +00007496 // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it
7497 // since we already have an optional CPSR def.
Andrew Trick8586e622011-09-20 03:17:40 +00007498 bool definesCPSR = false;
7499 bool deadCPSR = false;
Andrew Trick88b24502011-10-18 19:18:52 +00007500 for (unsigned i = MCID->getNumOperands(), e = MI->getNumOperands();
Andrew Trick8586e622011-09-20 03:17:40 +00007501 i != e; ++i) {
7502 const MachineOperand &MO = MI->getOperand(i);
7503 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) {
7504 definesCPSR = true;
7505 if (MO.isDead())
7506 deadCPSR = true;
7507 MI->RemoveOperand(i);
7508 break;
Evan Chenge6fba772011-08-30 19:09:48 +00007509 }
7510 }
Andrew Trick8586e622011-09-20 03:17:40 +00007511 if (!definesCPSR) {
Andrew Trick924123a2011-09-21 02:20:46 +00007512 assert(!NewOpc && "Optional cc_out operand required");
Andrew Trick8586e622011-09-20 03:17:40 +00007513 return;
7514 }
7515 assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag");
Andrew Trick924123a2011-09-21 02:20:46 +00007516 if (deadCPSR) {
7517 assert(!MI->getOperand(ccOutIdx).getReg() &&
7518 "expect uninitialized optional cc_out operand");
Andrew Trick8586e622011-09-20 03:17:40 +00007519 return;
Andrew Trick924123a2011-09-21 02:20:46 +00007520 }
Andrew Trick8586e622011-09-20 03:17:40 +00007521
Andrew Trick924123a2011-09-21 02:20:46 +00007522 // If this instruction was defined with an optional CPSR def and its dag node
7523 // had a live implicit CPSR def, then activate the optional CPSR def.
Andrew Trick8586e622011-09-20 03:17:40 +00007524 MachineOperand &MO = MI->getOperand(ccOutIdx);
7525 MO.setReg(ARM::CPSR);
7526 MO.setIsDef(true);
Evan Chenge6fba772011-08-30 19:09:48 +00007527}
7528
Evan Cheng10043e22007-01-19 07:51:42 +00007529//===----------------------------------------------------------------------===//
7530// ARM Optimization Hooks
7531//===----------------------------------------------------------------------===//
7532
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00007533// Helper function that checks if N is a null or all ones constant.
7534static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) {
7535 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N);
7536 if (!C)
7537 return false;
7538 return AllOnes ? C->isAllOnesValue() : C->isNullValue();
7539}
7540
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007541// Return true if N is conditionally 0 or all ones.
7542// Detects these expressions where cc is an i1 value:
7543//
7544// (select cc 0, y) [AllOnes=0]
7545// (select cc y, 0) [AllOnes=0]
7546// (zext cc) [AllOnes=0]
7547// (sext cc) [AllOnes=0/1]
7548// (select cc -1, y) [AllOnes=1]
7549// (select cc y, -1) [AllOnes=1]
7550//
7551// Invert is set when N is the null/all ones constant when CC is false.
7552// OtherOp is set to the alternative value of N.
7553static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes,
7554 SDValue &CC, bool &Invert,
7555 SDValue &OtherOp,
7556 SelectionDAG &DAG) {
7557 switch (N->getOpcode()) {
7558 default: return false;
7559 case ISD::SELECT: {
7560 CC = N->getOperand(0);
7561 SDValue N1 = N->getOperand(1);
7562 SDValue N2 = N->getOperand(2);
7563 if (isZeroOrAllOnes(N1, AllOnes)) {
7564 Invert = false;
7565 OtherOp = N2;
7566 return true;
7567 }
7568 if (isZeroOrAllOnes(N2, AllOnes)) {
7569 Invert = true;
7570 OtherOp = N1;
7571 return true;
7572 }
7573 return false;
7574 }
7575 case ISD::ZERO_EXTEND:
7576 // (zext cc) can never be the all ones value.
7577 if (AllOnes)
7578 return false;
7579 // Fall through.
7580 case ISD::SIGN_EXTEND: {
7581 EVT VT = N->getValueType(0);
7582 CC = N->getOperand(0);
7583 if (CC.getValueType() != MVT::i1)
7584 return false;
7585 Invert = !AllOnes;
7586 if (AllOnes)
7587 // When looking for an AllOnes constant, N is an sext, and the 'other'
7588 // value is 0.
7589 OtherOp = DAG.getConstant(0, VT);
7590 else if (N->getOpcode() == ISD::ZERO_EXTEND)
7591 // When looking for a 0 constant, N can be zext or sext.
7592 OtherOp = DAG.getConstant(1, VT);
7593 else
7594 OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT);
7595 return true;
7596 }
7597 }
7598}
7599
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00007600// Combine a constant select operand into its use:
7601//
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00007602// (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
7603// (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
7604// (and (select cc, -1, c), x) -> (select cc, x, (and, x, c)) [AllOnes=1]
7605// (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
7606// (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00007607//
7608// The transform is rejected if the select doesn't have a constant operand that
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00007609// is null, or all ones when AllOnes is set.
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00007610//
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007611// Also recognize sext/zext from i1:
7612//
7613// (add (zext cc), x) -> (select cc (add x, 1), x)
7614// (add (sext cc), x) -> (select cc (add x, -1), x)
7615//
7616// These transformations eventually create predicated instructions.
7617//
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00007618// @param N The node to transform.
7619// @param Slct The N operand that is a select.
7620// @param OtherOp The other N operand (x above).
7621// @param DCI Context.
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00007622// @param AllOnes Require the select constant to be all ones instead of null.
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00007623// @returns The new node, or SDValue() on failure.
Chris Lattner4147f082009-03-12 06:52:53 +00007624static
7625SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00007626 TargetLowering::DAGCombinerInfo &DCI,
7627 bool AllOnes = false) {
Chris Lattner4147f082009-03-12 06:52:53 +00007628 SelectionDAG &DAG = DCI.DAG;
Owen Anderson53aa7a92009-08-10 22:56:29 +00007629 EVT VT = N->getValueType(0);
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007630 SDValue NonConstantVal;
7631 SDValue CCOp;
7632 bool SwapSelectOps;
7633 if (!isConditionalZeroOrAllOnes(Slct.getNode(), AllOnes, CCOp, SwapSelectOps,
7634 NonConstantVal, DAG))
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00007635 return SDValue();
7636
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007637 // Slct is now know to be the desired identity constant when CC is true.
7638 SDValue TrueVal = OtherOp;
Andrew Trickef9de2a2013-05-25 02:42:55 +00007639 SDValue FalseVal = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007640 OtherOp, NonConstantVal);
7641 // Unless SwapSelectOps says CC should be false.
7642 if (SwapSelectOps)
7643 std::swap(TrueVal, FalseVal);
7644
Andrew Trickef9de2a2013-05-25 02:42:55 +00007645 return DAG.getNode(ISD::SELECT, SDLoc(N), VT,
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007646 CCOp, TrueVal, FalseVal);
Chris Lattner4147f082009-03-12 06:52:53 +00007647}
7648
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00007649// Attempt combineSelectAndUse on each operand of a commutative operator N.
7650static
7651SDValue combineSelectAndUseCommutative(SDNode *N, bool AllOnes,
7652 TargetLowering::DAGCombinerInfo &DCI) {
7653 SDValue N0 = N->getOperand(0);
7654 SDValue N1 = N->getOperand(1);
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007655 if (N0.getNode()->hasOneUse()) {
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00007656 SDValue Result = combineSelectAndUse(N, N0, N1, DCI, AllOnes);
7657 if (Result.getNode())
7658 return Result;
7659 }
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007660 if (N1.getNode()->hasOneUse()) {
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00007661 SDValue Result = combineSelectAndUse(N, N1, N0, DCI, AllOnes);
7662 if (Result.getNode())
7663 return Result;
7664 }
7665 return SDValue();
7666}
7667
Eric Christopher1b8b94192011-06-29 21:10:36 +00007668// AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction
Tanya Lattnere9e67052011-06-14 23:48:48 +00007669// (only after legalization).
7670static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1,
7671 TargetLowering::DAGCombinerInfo &DCI,
7672 const ARMSubtarget *Subtarget) {
7673
7674 // Only perform optimization if after legalize, and if NEON is available. We
7675 // also expected both operands to be BUILD_VECTORs.
7676 if (DCI.isBeforeLegalize() || !Subtarget->hasNEON()
7677 || N0.getOpcode() != ISD::BUILD_VECTOR
7678 || N1.getOpcode() != ISD::BUILD_VECTOR)
7679 return SDValue();
7680
7681 // Check output type since VPADDL operand elements can only be 8, 16, or 32.
7682 EVT VT = N->getValueType(0);
7683 if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64)
7684 return SDValue();
7685
7686 // Check that the vector operands are of the right form.
7687 // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR
7688 // operands, where N is the size of the formed vector.
7689 // Each EXTRACT_VECTOR should have the same input vector and odd or even
7690 // index such that we have a pair wise add pattern.
Tanya Lattnere9e67052011-06-14 23:48:48 +00007691
7692 // Grab the vector that all EXTRACT_VECTOR nodes should be referencing.
Bob Wilson4b12a112011-06-15 06:04:34 +00007693 if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
Tanya Lattnere9e67052011-06-14 23:48:48 +00007694 return SDValue();
Bob Wilson4b12a112011-06-15 06:04:34 +00007695 SDValue Vec = N0->getOperand(0)->getOperand(0);
7696 SDNode *V = Vec.getNode();
7697 unsigned nextIndex = 0;
Tanya Lattnere9e67052011-06-14 23:48:48 +00007698
Eric Christopher1b8b94192011-06-29 21:10:36 +00007699 // For each operands to the ADD which are BUILD_VECTORs,
Tanya Lattnere9e67052011-06-14 23:48:48 +00007700 // check to see if each of their operands are an EXTRACT_VECTOR with
7701 // the same vector and appropriate index.
7702 for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) {
7703 if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT
7704 && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
Eric Christopher1b8b94192011-06-29 21:10:36 +00007705
Tanya Lattnere9e67052011-06-14 23:48:48 +00007706 SDValue ExtVec0 = N0->getOperand(i);
7707 SDValue ExtVec1 = N1->getOperand(i);
Eric Christopher1b8b94192011-06-29 21:10:36 +00007708
Tanya Lattnere9e67052011-06-14 23:48:48 +00007709 // First operand is the vector, verify its the same.
7710 if (V != ExtVec0->getOperand(0).getNode() ||
7711 V != ExtVec1->getOperand(0).getNode())
7712 return SDValue();
Eric Christopher1b8b94192011-06-29 21:10:36 +00007713
Tanya Lattnere9e67052011-06-14 23:48:48 +00007714 // Second is the constant, verify its correct.
7715 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1));
7716 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1));
Eric Christopher1b8b94192011-06-29 21:10:36 +00007717
Tanya Lattnere9e67052011-06-14 23:48:48 +00007718 // For the constant, we want to see all the even or all the odd.
7719 if (!C0 || !C1 || C0->getZExtValue() != nextIndex
7720 || C1->getZExtValue() != nextIndex+1)
7721 return SDValue();
7722
7723 // Increment index.
7724 nextIndex+=2;
Eric Christopher1b8b94192011-06-29 21:10:36 +00007725 } else
Tanya Lattnere9e67052011-06-14 23:48:48 +00007726 return SDValue();
7727 }
7728
7729 // Create VPADDL node.
7730 SelectionDAG &DAG = DCI.DAG;
7731 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Tanya Lattnere9e67052011-06-14 23:48:48 +00007732
7733 // Build operand list.
7734 SmallVector<SDValue, 8> Ops;
7735 Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls,
7736 TLI.getPointerTy()));
7737
7738 // Input is the vector.
7739 Ops.push_back(Vec);
Eric Christopher1b8b94192011-06-29 21:10:36 +00007740
Tanya Lattnere9e67052011-06-14 23:48:48 +00007741 // Get widened type and narrowed type.
7742 MVT widenType;
7743 unsigned numElem = VT.getVectorNumElements();
Silviu Barangaa3106e62014-04-03 10:44:27 +00007744
7745 EVT inputLaneType = Vec.getValueType().getVectorElementType();
7746 switch (inputLaneType.getSimpleVT().SimpleTy) {
Tanya Lattnere9e67052011-06-14 23:48:48 +00007747 case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break;
7748 case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break;
7749 case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break;
7750 default:
Craig Toppere55c5562012-02-07 02:50:20 +00007751 llvm_unreachable("Invalid vector element type for padd optimization.");
Tanya Lattnere9e67052011-06-14 23:48:48 +00007752 }
7753
Craig Topper48d114b2014-04-26 18:35:24 +00007754 SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), widenType, Ops);
Silviu Barangaa3106e62014-04-03 10:44:27 +00007755 unsigned ExtOp = VT.bitsGT(tmp.getValueType()) ? ISD::ANY_EXTEND : ISD::TRUNCATE;
7756 return DAG.getNode(ExtOp, SDLoc(N), VT, tmp);
Tanya Lattnere9e67052011-06-14 23:48:48 +00007757}
7758
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00007759static SDValue findMUL_LOHI(SDValue V) {
7760 if (V->getOpcode() == ISD::UMUL_LOHI ||
7761 V->getOpcode() == ISD::SMUL_LOHI)
7762 return V;
7763 return SDValue();
7764}
7765
7766static SDValue AddCombineTo64bitMLAL(SDNode *AddcNode,
7767 TargetLowering::DAGCombinerInfo &DCI,
7768 const ARMSubtarget *Subtarget) {
7769
7770 if (Subtarget->isThumb1Only()) return SDValue();
7771
7772 // Only perform the checks after legalize when the pattern is available.
7773 if (DCI.isBeforeLegalize()) return SDValue();
7774
7775 // Look for multiply add opportunities.
7776 // The pattern is a ISD::UMUL_LOHI followed by two add nodes, where
7777 // each add nodes consumes a value from ISD::UMUL_LOHI and there is
7778 // a glue link from the first add to the second add.
7779 // If we find this pattern, we can replace the U/SMUL_LOHI, ADDC, and ADDE by
7780 // a S/UMLAL instruction.
7781 // loAdd UMUL_LOHI
7782 // \ / :lo \ :hi
7783 // \ / \ [no multiline comment]
7784 // ADDC | hiAdd
7785 // \ :glue / /
7786 // \ / /
7787 // ADDE
7788 //
7789 assert(AddcNode->getOpcode() == ISD::ADDC && "Expect an ADDC");
7790 SDValue AddcOp0 = AddcNode->getOperand(0);
7791 SDValue AddcOp1 = AddcNode->getOperand(1);
7792
7793 // Check if the two operands are from the same mul_lohi node.
7794 if (AddcOp0.getNode() == AddcOp1.getNode())
7795 return SDValue();
7796
7797 assert(AddcNode->getNumValues() == 2 &&
7798 AddcNode->getValueType(0) == MVT::i32 &&
Michael Gottesmanb2a70562013-06-18 20:49:40 +00007799 "Expect ADDC with two result values. First: i32");
7800
7801 // Check that we have a glued ADDC node.
7802 if (AddcNode->getValueType(1) != MVT::Glue)
7803 return SDValue();
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00007804
7805 // Check that the ADDC adds the low result of the S/UMUL_LOHI.
7806 if (AddcOp0->getOpcode() != ISD::UMUL_LOHI &&
7807 AddcOp0->getOpcode() != ISD::SMUL_LOHI &&
7808 AddcOp1->getOpcode() != ISD::UMUL_LOHI &&
7809 AddcOp1->getOpcode() != ISD::SMUL_LOHI)
7810 return SDValue();
7811
7812 // Look for the glued ADDE.
7813 SDNode* AddeNode = AddcNode->getGluedUser();
Craig Topper062a2ba2014-04-25 05:30:21 +00007814 if (!AddeNode)
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00007815 return SDValue();
7816
7817 // Make sure it is really an ADDE.
7818 if (AddeNode->getOpcode() != ISD::ADDE)
7819 return SDValue();
7820
7821 assert(AddeNode->getNumOperands() == 3 &&
7822 AddeNode->getOperand(2).getValueType() == MVT::Glue &&
7823 "ADDE node has the wrong inputs");
7824
7825 // Check for the triangle shape.
7826 SDValue AddeOp0 = AddeNode->getOperand(0);
7827 SDValue AddeOp1 = AddeNode->getOperand(1);
7828
7829 // Make sure that the ADDE operands are not coming from the same node.
7830 if (AddeOp0.getNode() == AddeOp1.getNode())
7831 return SDValue();
7832
7833 // Find the MUL_LOHI node walking up ADDE's operands.
7834 bool IsLeftOperandMUL = false;
7835 SDValue MULOp = findMUL_LOHI(AddeOp0);
7836 if (MULOp == SDValue())
7837 MULOp = findMUL_LOHI(AddeOp1);
7838 else
7839 IsLeftOperandMUL = true;
7840 if (MULOp == SDValue())
7841 return SDValue();
7842
7843 // Figure out the right opcode.
7844 unsigned Opc = MULOp->getOpcode();
7845 unsigned FinalOpc = (Opc == ISD::SMUL_LOHI) ? ARMISD::SMLAL : ARMISD::UMLAL;
7846
7847 // Figure out the high and low input values to the MLAL node.
7848 SDValue* HiMul = &MULOp;
Craig Topper062a2ba2014-04-25 05:30:21 +00007849 SDValue* HiAdd = nullptr;
7850 SDValue* LoMul = nullptr;
7851 SDValue* LowAdd = nullptr;
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00007852
7853 if (IsLeftOperandMUL)
7854 HiAdd = &AddeOp1;
7855 else
7856 HiAdd = &AddeOp0;
7857
7858
7859 if (AddcOp0->getOpcode() == Opc) {
7860 LoMul = &AddcOp0;
7861 LowAdd = &AddcOp1;
7862 }
7863 if (AddcOp1->getOpcode() == Opc) {
7864 LoMul = &AddcOp1;
7865 LowAdd = &AddcOp0;
7866 }
7867
Craig Topper062a2ba2014-04-25 05:30:21 +00007868 if (!LoMul)
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00007869 return SDValue();
7870
7871 if (LoMul->getNode() != HiMul->getNode())
7872 return SDValue();
7873
7874 // Create the merged node.
7875 SelectionDAG &DAG = DCI.DAG;
7876
7877 // Build operand list.
7878 SmallVector<SDValue, 8> Ops;
7879 Ops.push_back(LoMul->getOperand(0));
7880 Ops.push_back(LoMul->getOperand(1));
7881 Ops.push_back(*LowAdd);
7882 Ops.push_back(*HiAdd);
7883
Andrew Trickef9de2a2013-05-25 02:42:55 +00007884 SDValue MLALNode = DAG.getNode(FinalOpc, SDLoc(AddcNode),
Craig Topper48d114b2014-04-26 18:35:24 +00007885 DAG.getVTList(MVT::i32, MVT::i32), Ops);
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00007886
7887 // Replace the ADDs' nodes uses by the MLA node's values.
7888 SDValue HiMLALResult(MLALNode.getNode(), 1);
7889 DAG.ReplaceAllUsesOfValueWith(SDValue(AddeNode, 0), HiMLALResult);
7890
7891 SDValue LoMLALResult(MLALNode.getNode(), 0);
7892 DAG.ReplaceAllUsesOfValueWith(SDValue(AddcNode, 0), LoMLALResult);
7893
7894 // Return original node to notify the driver to stop replacing.
7895 SDValue resNode(AddcNode, 0);
7896 return resNode;
7897}
7898
7899/// PerformADDCCombine - Target-specific dag combine transform from
7900/// ISD::ADDC, ISD::ADDE, and ISD::MUL_LOHI to MLAL.
7901static SDValue PerformADDCCombine(SDNode *N,
7902 TargetLowering::DAGCombinerInfo &DCI,
7903 const ARMSubtarget *Subtarget) {
7904
7905 return AddCombineTo64bitMLAL(N, DCI, Subtarget);
7906
7907}
7908
Bob Wilson728eb292010-07-29 20:34:14 +00007909/// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
7910/// operands N0 and N1. This is a helper for PerformADDCombine that is
7911/// called with the default operands, and if that fails, with commuted
7912/// operands.
7913static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1,
Tanya Lattnere9e67052011-06-14 23:48:48 +00007914 TargetLowering::DAGCombinerInfo &DCI,
7915 const ARMSubtarget *Subtarget){
7916
7917 // Attempt to create vpaddl for this add.
7918 SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget);
7919 if (Result.getNode())
7920 return Result;
Eric Christopher1b8b94192011-06-29 21:10:36 +00007921
Chris Lattner4147f082009-03-12 06:52:53 +00007922 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007923 if (N0.getNode()->hasOneUse()) {
Chris Lattner4147f082009-03-12 06:52:53 +00007924 SDValue Result = combineSelectAndUse(N, N0, N1, DCI);
7925 if (Result.getNode()) return Result;
7926 }
Chris Lattner4147f082009-03-12 06:52:53 +00007927 return SDValue();
7928}
7929
Bob Wilson728eb292010-07-29 20:34:14 +00007930/// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
7931///
7932static SDValue PerformADDCombine(SDNode *N,
Tanya Lattnere9e67052011-06-14 23:48:48 +00007933 TargetLowering::DAGCombinerInfo &DCI,
7934 const ARMSubtarget *Subtarget) {
Bob Wilson728eb292010-07-29 20:34:14 +00007935 SDValue N0 = N->getOperand(0);
7936 SDValue N1 = N->getOperand(1);
7937
7938 // First try with the default operand order.
Tanya Lattnere9e67052011-06-14 23:48:48 +00007939 SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget);
Bob Wilson728eb292010-07-29 20:34:14 +00007940 if (Result.getNode())
7941 return Result;
7942
7943 // If that didn't work, try again with the operands commuted.
Tanya Lattnere9e67052011-06-14 23:48:48 +00007944 return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget);
Bob Wilson728eb292010-07-29 20:34:14 +00007945}
7946
Chris Lattner4147f082009-03-12 06:52:53 +00007947/// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
Bob Wilson728eb292010-07-29 20:34:14 +00007948///
Chris Lattner4147f082009-03-12 06:52:53 +00007949static SDValue PerformSUBCombine(SDNode *N,
7950 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson728eb292010-07-29 20:34:14 +00007951 SDValue N0 = N->getOperand(0);
7952 SDValue N1 = N->getOperand(1);
Bob Wilson7117a912009-03-20 22:42:55 +00007953
Chris Lattner4147f082009-03-12 06:52:53 +00007954 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00007955 if (N1.getNode()->hasOneUse()) {
Chris Lattner4147f082009-03-12 06:52:53 +00007956 SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
7957 if (Result.getNode()) return Result;
7958 }
Bob Wilson7117a912009-03-20 22:42:55 +00007959
Chris Lattner4147f082009-03-12 06:52:53 +00007960 return SDValue();
7961}
7962
Evan Cheng38bf5ad2011-03-31 19:38:48 +00007963/// PerformVMULCombine
7964/// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the
7965/// special multiplier accumulator forwarding.
7966/// vmul d3, d0, d2
7967/// vmla d3, d1, d2
7968/// is faster than
7969/// vadd d3, d0, d1
7970/// vmul d3, d3, d2
Weiming Zhao2052f482013-09-25 23:12:06 +00007971// However, for (A + B) * (A + B),
7972// vadd d2, d0, d1
7973// vmul d3, d0, d2
7974// vmla d3, d1, d2
7975// is slower than
7976// vadd d2, d0, d1
7977// vmul d3, d2, d2
Evan Cheng38bf5ad2011-03-31 19:38:48 +00007978static SDValue PerformVMULCombine(SDNode *N,
7979 TargetLowering::DAGCombinerInfo &DCI,
7980 const ARMSubtarget *Subtarget) {
7981 if (!Subtarget->hasVMLxForwarding())
7982 return SDValue();
7983
7984 SelectionDAG &DAG = DCI.DAG;
7985 SDValue N0 = N->getOperand(0);
7986 SDValue N1 = N->getOperand(1);
7987 unsigned Opcode = N0.getOpcode();
7988 if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
7989 Opcode != ISD::FADD && Opcode != ISD::FSUB) {
Chad Rosier27301622011-06-16 01:21:54 +00007990 Opcode = N1.getOpcode();
Evan Cheng38bf5ad2011-03-31 19:38:48 +00007991 if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
7992 Opcode != ISD::FADD && Opcode != ISD::FSUB)
7993 return SDValue();
7994 std::swap(N0, N1);
7995 }
7996
Weiming Zhao2052f482013-09-25 23:12:06 +00007997 if (N0 == N1)
7998 return SDValue();
7999
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008000 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00008001 SDLoc DL(N);
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008002 SDValue N00 = N0->getOperand(0);
8003 SDValue N01 = N0->getOperand(1);
8004 return DAG.getNode(Opcode, DL, VT,
8005 DAG.getNode(ISD::MUL, DL, VT, N00, N1),
8006 DAG.getNode(ISD::MUL, DL, VT, N01, N1));
8007}
8008
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008009static SDValue PerformMULCombine(SDNode *N,
8010 TargetLowering::DAGCombinerInfo &DCI,
8011 const ARMSubtarget *Subtarget) {
8012 SelectionDAG &DAG = DCI.DAG;
8013
8014 if (Subtarget->isThumb1Only())
8015 return SDValue();
8016
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008017 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8018 return SDValue();
8019
8020 EVT VT = N->getValueType(0);
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008021 if (VT.is64BitVector() || VT.is128BitVector())
8022 return PerformVMULCombine(N, DCI, Subtarget);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008023 if (VT != MVT::i32)
8024 return SDValue();
8025
8026 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8027 if (!C)
8028 return SDValue();
8029
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008030 int64_t MulAmt = C->getSExtValue();
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008031 unsigned ShiftAmt = countTrailingZeros<uint64_t>(MulAmt);
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008032
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008033 ShiftAmt = ShiftAmt & (32 - 1);
8034 SDValue V = N->getOperand(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00008035 SDLoc DL(N);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008036
Anton Korobeynikov4c719c42010-05-16 08:54:20 +00008037 SDValue Res;
8038 MulAmt >>= ShiftAmt;
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008039
8040 if (MulAmt >= 0) {
8041 if (isPowerOf2_32(MulAmt - 1)) {
8042 // (mul x, 2^N + 1) => (add (shl x, N), x)
8043 Res = DAG.getNode(ISD::ADD, DL, VT,
8044 V,
8045 DAG.getNode(ISD::SHL, DL, VT,
8046 V,
8047 DAG.getConstant(Log2_32(MulAmt - 1),
8048 MVT::i32)));
8049 } else if (isPowerOf2_32(MulAmt + 1)) {
8050 // (mul x, 2^N - 1) => (sub (shl x, N), x)
8051 Res = DAG.getNode(ISD::SUB, DL, VT,
8052 DAG.getNode(ISD::SHL, DL, VT,
8053 V,
8054 DAG.getConstant(Log2_32(MulAmt + 1),
8055 MVT::i32)),
8056 V);
8057 } else
8058 return SDValue();
8059 } else {
8060 uint64_t MulAmtAbs = -MulAmt;
8061 if (isPowerOf2_32(MulAmtAbs + 1)) {
8062 // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
8063 Res = DAG.getNode(ISD::SUB, DL, VT,
8064 V,
8065 DAG.getNode(ISD::SHL, DL, VT,
8066 V,
8067 DAG.getConstant(Log2_32(MulAmtAbs + 1),
8068 MVT::i32)));
8069 } else if (isPowerOf2_32(MulAmtAbs - 1)) {
8070 // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
8071 Res = DAG.getNode(ISD::ADD, DL, VT,
8072 V,
8073 DAG.getNode(ISD::SHL, DL, VT,
8074 V,
8075 DAG.getConstant(Log2_32(MulAmtAbs-1),
8076 MVT::i32)));
8077 Res = DAG.getNode(ISD::SUB, DL, VT,
8078 DAG.getConstant(0, MVT::i32),Res);
8079
8080 } else
8081 return SDValue();
8082 }
Anton Korobeynikov4c719c42010-05-16 08:54:20 +00008083
8084 if (ShiftAmt != 0)
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008085 Res = DAG.getNode(ISD::SHL, DL, VT,
8086 Res, DAG.getConstant(ShiftAmt, MVT::i32));
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008087
8088 // Do not add new nodes to DAG combiner worklist.
Anton Korobeynikov4c719c42010-05-16 08:54:20 +00008089 DCI.CombineTo(N, Res, false);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008090 return SDValue();
8091}
8092
Owen Anderson30c48922010-11-05 19:27:46 +00008093static SDValue PerformANDCombine(SDNode *N,
Evan Chenge87681c2012-02-23 01:19:06 +00008094 TargetLowering::DAGCombinerInfo &DCI,
8095 const ARMSubtarget *Subtarget) {
Owen Anderson77aa2662011-04-05 21:48:57 +00008096
Owen Anderson30c48922010-11-05 19:27:46 +00008097 // Attempt to use immediate-form VBIC
8098 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00008099 SDLoc dl(N);
Owen Anderson30c48922010-11-05 19:27:46 +00008100 EVT VT = N->getValueType(0);
8101 SelectionDAG &DAG = DCI.DAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00008102
Tanya Lattner266792a2011-04-07 15:24:20 +00008103 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8104 return SDValue();
Andrew Trick0ed57782011-04-23 03:55:32 +00008105
Owen Anderson30c48922010-11-05 19:27:46 +00008106 APInt SplatBits, SplatUndef;
8107 unsigned SplatBitSize;
8108 bool HasAnyUndefs;
8109 if (BVN &&
8110 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8111 if (SplatBitSize <= 64) {
8112 EVT VbicVT;
8113 SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(),
8114 SplatUndef.getZExtValue(), SplatBitSize,
Wesley Peck527da1b2010-11-23 03:31:01 +00008115 DAG, VbicVT, VT.is128BitVector(),
Owen Andersona4076922010-11-05 21:57:54 +00008116 OtherModImm);
Owen Anderson30c48922010-11-05 19:27:46 +00008117 if (Val.getNode()) {
8118 SDValue Input =
Wesley Peck527da1b2010-11-23 03:31:01 +00008119 DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0));
Owen Anderson30c48922010-11-05 19:27:46 +00008120 SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val);
Wesley Peck527da1b2010-11-23 03:31:01 +00008121 return DAG.getNode(ISD::BITCAST, dl, VT, Vbic);
Owen Anderson30c48922010-11-05 19:27:46 +00008122 }
8123 }
8124 }
Wesley Peck527da1b2010-11-23 03:31:01 +00008125
Evan Chenge87681c2012-02-23 01:19:06 +00008126 if (!Subtarget->isThumb1Only()) {
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008127 // fold (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
8128 SDValue Result = combineSelectAndUseCommutative(N, true, DCI);
8129 if (Result.getNode())
8130 return Result;
Evan Chenge87681c2012-02-23 01:19:06 +00008131 }
8132
Owen Anderson30c48922010-11-05 19:27:46 +00008133 return SDValue();
8134}
8135
Jim Grosbach11013ed2010-07-16 23:05:05 +00008136/// PerformORCombine - Target-specific dag combine xforms for ISD::OR
8137static SDValue PerformORCombine(SDNode *N,
8138 TargetLowering::DAGCombinerInfo &DCI,
8139 const ARMSubtarget *Subtarget) {
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008140 // Attempt to use immediate-form VORR
8141 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00008142 SDLoc dl(N);
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008143 EVT VT = N->getValueType(0);
8144 SelectionDAG &DAG = DCI.DAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00008145
Tanya Lattner266792a2011-04-07 15:24:20 +00008146 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8147 return SDValue();
Andrew Trick0ed57782011-04-23 03:55:32 +00008148
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008149 APInt SplatBits, SplatUndef;
8150 unsigned SplatBitSize;
8151 bool HasAnyUndefs;
8152 if (BVN && Subtarget->hasNEON() &&
8153 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8154 if (SplatBitSize <= 64) {
8155 EVT VorrVT;
8156 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
8157 SplatUndef.getZExtValue(), SplatBitSize,
Owen Andersona4076922010-11-05 21:57:54 +00008158 DAG, VorrVT, VT.is128BitVector(),
8159 OtherModImm);
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008160 if (Val.getNode()) {
8161 SDValue Input =
Wesley Peck527da1b2010-11-23 03:31:01 +00008162 DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0));
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008163 SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val);
Wesley Peck527da1b2010-11-23 03:31:01 +00008164 return DAG.getNode(ISD::BITCAST, dl, VT, Vorr);
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008165 }
8166 }
8167 }
8168
Evan Chenge87681c2012-02-23 01:19:06 +00008169 if (!Subtarget->isThumb1Only()) {
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008170 // fold (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
8171 SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8172 if (Result.getNode())
8173 return Result;
Evan Chenge87681c2012-02-23 01:19:06 +00008174 }
8175
Nadav Rotem3a94c542012-08-13 18:52:44 +00008176 // The code below optimizes (or (and X, Y), Z).
8177 // The AND operand needs to have a single user to make these optimizations
8178 // profitable.
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00008179 SDValue N0 = N->getOperand(0);
Nadav Rotem3a94c542012-08-13 18:52:44 +00008180 if (N0.getOpcode() != ISD::AND || !N0.hasOneUse())
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00008181 return SDValue();
8182 SDValue N1 = N->getOperand(1);
8183
8184 // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant.
8185 if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() &&
8186 DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
8187 APInt SplatUndef;
8188 unsigned SplatBitSize;
8189 bool HasAnyUndefs;
8190
Saleem Abdulrasool0c2ee5a2013-07-30 04:43:08 +00008191 APInt SplatBits0, SplatBits1;
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00008192 BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1));
Saleem Abdulrasool0c2ee5a2013-07-30 04:43:08 +00008193 BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1));
8194 // Ensure that the second operand of both ands are constants
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00008195 if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize,
Saleem Abdulrasool0c2ee5a2013-07-30 04:43:08 +00008196 HasAnyUndefs) && !HasAnyUndefs) {
8197 if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize,
8198 HasAnyUndefs) && !HasAnyUndefs) {
8199 // Ensure that the bit width of the constants are the same and that
8200 // the splat arguments are logical inverses as per the pattern we
8201 // are trying to simplify.
8202 if (SplatBits0.getBitWidth() == SplatBits1.getBitWidth() &&
8203 SplatBits0 == ~SplatBits1) {
8204 // Canonicalize the vector type to make instruction selection
8205 // simpler.
8206 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
8207 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT,
8208 N0->getOperand(1),
8209 N0->getOperand(0),
8210 N1->getOperand(0));
8211 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
8212 }
8213 }
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00008214 }
8215 }
8216
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008217 // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when
8218 // reasonable.
8219
Jim Grosbach11013ed2010-07-16 23:05:05 +00008220 // BFI is only available on V6T2+
8221 if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops())
8222 return SDValue();
8223
Andrew Trickef9de2a2013-05-25 02:42:55 +00008224 SDLoc DL(N);
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008225 // 1) or (and A, mask), val => ARMbfi A, val, mask
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00008226 // iff (val & mask) == val
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008227 //
8228 // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00008229 // 2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2)
Eric Christopherd5530962011-03-26 01:21:03 +00008230 // && mask == ~mask2
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00008231 // 2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2)
Eric Christopherd5530962011-03-26 01:21:03 +00008232 // && ~mask == mask2
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008233 // (i.e., copy a bitfield value into another bitfield of the same width)
Jim Grosbach11013ed2010-07-16 23:05:05 +00008234
Jim Grosbach11013ed2010-07-16 23:05:05 +00008235 if (VT != MVT::i32)
8236 return SDValue();
8237
Evan Cheng2e51bb42010-12-13 20:32:54 +00008238 SDValue N00 = N0.getOperand(0);
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008239
Jim Grosbach11013ed2010-07-16 23:05:05 +00008240 // The value and the mask need to be constants so we can verify this is
8241 // actually a bitfield set. If the mask is 0xffff, we can do better
8242 // via a movt instruction, so don't use BFI in that case.
Evan Cheng2e51bb42010-12-13 20:32:54 +00008243 SDValue MaskOp = N0.getOperand(1);
8244 ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp);
8245 if (!MaskC)
Jim Grosbach11013ed2010-07-16 23:05:05 +00008246 return SDValue();
Evan Cheng2e51bb42010-12-13 20:32:54 +00008247 unsigned Mask = MaskC->getZExtValue();
Jim Grosbach11013ed2010-07-16 23:05:05 +00008248 if (Mask == 0xffff)
8249 return SDValue();
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008250 SDValue Res;
8251 // Case (1): or (and A, mask), val => ARMbfi A, val, mask
Evan Cheng2e51bb42010-12-13 20:32:54 +00008252 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
8253 if (N1C) {
8254 unsigned Val = N1C->getZExtValue();
Evan Cheng34345752010-12-11 04:11:38 +00008255 if ((Val & ~Mask) != Val)
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008256 return SDValue();
Jim Grosbach11013ed2010-07-16 23:05:05 +00008257
Evan Cheng34345752010-12-11 04:11:38 +00008258 if (ARM::isBitFieldInvertedMask(Mask)) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008259 Val >>= countTrailingZeros(~Mask);
Jim Grosbach11013ed2010-07-16 23:05:05 +00008260
Evan Cheng2e51bb42010-12-13 20:32:54 +00008261 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00,
Evan Cheng34345752010-12-11 04:11:38 +00008262 DAG.getConstant(Val, MVT::i32),
8263 DAG.getConstant(Mask, MVT::i32));
8264
8265 // Do not add new nodes to DAG combiner worklist.
8266 DCI.CombineTo(N, Res, false);
Evan Cheng2e51bb42010-12-13 20:32:54 +00008267 return SDValue();
Evan Cheng34345752010-12-11 04:11:38 +00008268 }
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008269 } else if (N1.getOpcode() == ISD::AND) {
8270 // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
Evan Cheng2e51bb42010-12-13 20:32:54 +00008271 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8272 if (!N11C)
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008273 return SDValue();
Evan Cheng2e51bb42010-12-13 20:32:54 +00008274 unsigned Mask2 = N11C->getZExtValue();
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008275
Eric Christopherd5530962011-03-26 01:21:03 +00008276 // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern
8277 // as is to match.
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008278 if (ARM::isBitFieldInvertedMask(Mask) &&
Eric Christopherd5530962011-03-26 01:21:03 +00008279 (Mask == ~Mask2)) {
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008280 // The pack halfword instruction works better for masks that fit it,
8281 // so use that when it's available.
8282 if (Subtarget->hasT2ExtractPack() &&
8283 (Mask == 0xffff || Mask == 0xffff0000))
8284 return SDValue();
8285 // 2a
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008286 unsigned amt = countTrailingZeros(Mask2);
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008287 Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0),
Eric Christopherd5530962011-03-26 01:21:03 +00008288 DAG.getConstant(amt, MVT::i32));
Evan Cheng2e51bb42010-12-13 20:32:54 +00008289 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res,
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008290 DAG.getConstant(Mask, MVT::i32));
8291 // Do not add new nodes to DAG combiner worklist.
8292 DCI.CombineTo(N, Res, false);
Evan Cheng2e51bb42010-12-13 20:32:54 +00008293 return SDValue();
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008294 } else if (ARM::isBitFieldInvertedMask(~Mask) &&
Eric Christopherd5530962011-03-26 01:21:03 +00008295 (~Mask == Mask2)) {
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008296 // The pack halfword instruction works better for masks that fit it,
8297 // so use that when it's available.
8298 if (Subtarget->hasT2ExtractPack() &&
8299 (Mask2 == 0xffff || Mask2 == 0xffff0000))
8300 return SDValue();
8301 // 2b
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008302 unsigned lsb = countTrailingZeros(Mask);
Evan Cheng2e51bb42010-12-13 20:32:54 +00008303 Res = DAG.getNode(ISD::SRL, DL, VT, N00,
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008304 DAG.getConstant(lsb, MVT::i32));
8305 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res,
Eric Christopherd5530962011-03-26 01:21:03 +00008306 DAG.getConstant(Mask2, MVT::i32));
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008307 // Do not add new nodes to DAG combiner worklist.
8308 DCI.CombineTo(N, Res, false);
Evan Cheng2e51bb42010-12-13 20:32:54 +00008309 return SDValue();
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00008310 }
8311 }
Wesley Peck527da1b2010-11-23 03:31:01 +00008312
Evan Cheng2e51bb42010-12-13 20:32:54 +00008313 if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) &&
8314 N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) &&
8315 ARM::isBitFieldInvertedMask(~Mask)) {
8316 // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask
8317 // where lsb(mask) == #shamt and masked bits of B are known zero.
8318 SDValue ShAmt = N00.getOperand(1);
8319 unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008320 unsigned LSB = countTrailingZeros(Mask);
Evan Cheng2e51bb42010-12-13 20:32:54 +00008321 if (ShAmtC != LSB)
8322 return SDValue();
8323
8324 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0),
8325 DAG.getConstant(~Mask, MVT::i32));
8326
8327 // Do not add new nodes to DAG combiner worklist.
8328 DCI.CombineTo(N, Res, false);
8329 }
8330
Jim Grosbach11013ed2010-07-16 23:05:05 +00008331 return SDValue();
8332}
8333
Evan Chenge87681c2012-02-23 01:19:06 +00008334static SDValue PerformXORCombine(SDNode *N,
8335 TargetLowering::DAGCombinerInfo &DCI,
8336 const ARMSubtarget *Subtarget) {
8337 EVT VT = N->getValueType(0);
8338 SelectionDAG &DAG = DCI.DAG;
8339
8340 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8341 return SDValue();
8342
8343 if (!Subtarget->isThumb1Only()) {
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008344 // fold (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
8345 SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8346 if (Result.getNode())
8347 return Result;
Evan Chenge87681c2012-02-23 01:19:06 +00008348 }
8349
8350 return SDValue();
8351}
8352
Evan Cheng6d02d902011-06-15 01:12:31 +00008353/// PerformBFICombine - (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff
8354/// the bits being cleared by the AND are not demanded by the BFI.
Evan Chengc1778132010-12-14 03:22:07 +00008355static SDValue PerformBFICombine(SDNode *N,
8356 TargetLowering::DAGCombinerInfo &DCI) {
8357 SDValue N1 = N->getOperand(1);
8358 if (N1.getOpcode() == ISD::AND) {
8359 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8360 if (!N11C)
8361 return SDValue();
Evan Cheng6d02d902011-06-15 01:12:31 +00008362 unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008363 unsigned LSB = countTrailingZeros(~InvMask);
8364 unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB;
Evan Cheng6d02d902011-06-15 01:12:31 +00008365 unsigned Mask = (1 << Width)-1;
Evan Chengc1778132010-12-14 03:22:07 +00008366 unsigned Mask2 = N11C->getZExtValue();
Evan Cheng6d02d902011-06-15 01:12:31 +00008367 if ((Mask & (~Mask2)) == 0)
Andrew Trickef9de2a2013-05-25 02:42:55 +00008368 return DCI.DAG.getNode(ARMISD::BFI, SDLoc(N), N->getValueType(0),
Evan Chengc1778132010-12-14 03:22:07 +00008369 N->getOperand(0), N1.getOperand(0),
8370 N->getOperand(2));
8371 }
8372 return SDValue();
8373}
8374
Bob Wilson22806742010-09-22 22:09:21 +00008375/// PerformVMOVRRDCombine - Target-specific dag combine xforms for
8376/// ARMISD::VMOVRRD.
8377static SDValue PerformVMOVRRDCombine(SDNode *N,
8378 TargetLowering::DAGCombinerInfo &DCI) {
8379 // vmovrrd(vmovdrr x, y) -> x,y
8380 SDValue InDouble = N->getOperand(0);
8381 if (InDouble.getOpcode() == ARMISD::VMOVDRR)
8382 return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00008383
8384 // vmovrrd(load f64) -> (load i32), (load i32)
8385 SDNode *InNode = InDouble.getNode();
8386 if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() &&
8387 InNode->getValueType(0) == MVT::f64 &&
8388 InNode->getOperand(1).getOpcode() == ISD::FrameIndex &&
8389 !cast<LoadSDNode>(InNode)->isVolatile()) {
8390 // TODO: Should this be done for non-FrameIndex operands?
8391 LoadSDNode *LD = cast<LoadSDNode>(InNode);
8392
8393 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00008394 SDLoc DL(LD);
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00008395 SDValue BasePtr = LD->getBasePtr();
8396 SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr,
8397 LD->getPointerInfo(), LD->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00008398 LD->isNonTemporal(), LD->isInvariant(),
8399 LD->getAlignment());
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00008400
8401 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
8402 DAG.getConstant(4, MVT::i32));
8403 SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr,
8404 LD->getPointerInfo(), LD->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00008405 LD->isNonTemporal(), LD->isInvariant(),
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00008406 std::min(4U, LD->getAlignment() / 2));
8407
8408 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1));
Christian Pirker762b2c62014-06-01 09:30:52 +00008409 if (DCI.DAG.getTargetLoweringInfo().isBigEndian())
8410 std::swap (NewLD1, NewLD2);
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00008411 SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2);
8412 DCI.RemoveFromWorklist(LD);
8413 DAG.DeleteNode(LD);
8414 return Result;
8415 }
8416
Bob Wilson22806742010-09-22 22:09:21 +00008417 return SDValue();
8418}
8419
8420/// PerformVMOVDRRCombine - Target-specific dag combine xforms for
8421/// ARMISD::VMOVDRR. This is also used for BUILD_VECTORs with 2 operands.
8422static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) {
8423 // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X)
8424 SDValue Op0 = N->getOperand(0);
8425 SDValue Op1 = N->getOperand(1);
Wesley Peck527da1b2010-11-23 03:31:01 +00008426 if (Op0.getOpcode() == ISD::BITCAST)
Bob Wilson22806742010-09-22 22:09:21 +00008427 Op0 = Op0.getOperand(0);
Wesley Peck527da1b2010-11-23 03:31:01 +00008428 if (Op1.getOpcode() == ISD::BITCAST)
Bob Wilson22806742010-09-22 22:09:21 +00008429 Op1 = Op1.getOperand(0);
8430 if (Op0.getOpcode() == ARMISD::VMOVRRD &&
8431 Op0.getNode() == Op1.getNode() &&
8432 Op0.getResNo() == 0 && Op1.getResNo() == 1)
Andrew Trickef9de2a2013-05-25 02:42:55 +00008433 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Bob Wilson22806742010-09-22 22:09:21 +00008434 N->getValueType(0), Op0.getOperand(0));
8435 return SDValue();
8436}
8437
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008438/// PerformSTORECombine - Target-specific dag combine xforms for
8439/// ISD::STORE.
8440static SDValue PerformSTORECombine(SDNode *N,
8441 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008442 StoreSDNode *St = cast<StoreSDNode>(N);
Chad Rosiere0e38f62012-04-09 20:32:02 +00008443 if (St->isVolatile())
8444 return SDValue();
8445
Andrew Trickbc325162012-07-18 18:34:24 +00008446 // Optimize trunc store (of multiple scalars) to shuffle and store. First,
Chad Rosiere0e38f62012-04-09 20:32:02 +00008447 // pack all of the elements in one place. Next, store to memory in fewer
8448 // chunks.
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008449 SDValue StVal = St->getValue();
Chad Rosiere0e38f62012-04-09 20:32:02 +00008450 EVT VT = StVal.getValueType();
8451 if (St->isTruncatingStore() && VT.isVector()) {
8452 SelectionDAG &DAG = DCI.DAG;
8453 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8454 EVT StVT = St->getMemoryVT();
8455 unsigned NumElems = VT.getVectorNumElements();
8456 assert(StVT != VT && "Cannot truncate to the same type");
8457 unsigned FromEltSz = VT.getVectorElementType().getSizeInBits();
8458 unsigned ToEltSz = StVT.getVectorElementType().getSizeInBits();
8459
8460 // From, To sizes and ElemCount must be pow of two
8461 if (!isPowerOf2_32(NumElems * FromEltSz * ToEltSz)) return SDValue();
8462
8463 // We are going to use the original vector elt for storing.
8464 // Accumulated smaller vector elements must be a multiple of the store size.
8465 if (0 != (NumElems * FromEltSz) % ToEltSz) return SDValue();
8466
8467 unsigned SizeRatio = FromEltSz / ToEltSz;
8468 assert(SizeRatio * NumElems * ToEltSz == VT.getSizeInBits());
8469
8470 // Create a type on which we perform the shuffle.
8471 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(),
8472 NumElems*SizeRatio);
8473 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
8474
Andrew Trickef9de2a2013-05-25 02:42:55 +00008475 SDLoc DL(St);
Chad Rosiere0e38f62012-04-09 20:32:02 +00008476 SDValue WideVec = DAG.getNode(ISD::BITCAST, DL, WideVecVT, StVal);
8477 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Christian Pirker2cc1cf02014-06-16 09:17:30 +00008478 for (unsigned i = 0; i < NumElems; ++i)
8479 ShuffleVec[i] = TLI.isBigEndian() ? (i+1) * SizeRatio - 1 : i * SizeRatio;
Chad Rosiere0e38f62012-04-09 20:32:02 +00008480
8481 // Can't shuffle using an illegal type.
8482 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
8483
8484 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, DL, WideVec,
8485 DAG.getUNDEF(WideVec.getValueType()),
8486 ShuffleVec.data());
8487 // At this point all of the data is stored at the bottom of the
8488 // register. We now need to save it to mem.
8489
8490 // Find the largest store unit
8491 MVT StoreType = MVT::i8;
8492 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
8493 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
8494 MVT Tp = (MVT::SimpleValueType)tp;
8495 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToEltSz)
8496 StoreType = Tp;
8497 }
8498 // Didn't find a legal store type.
8499 if (!TLI.isTypeLegal(StoreType))
8500 return SDValue();
8501
8502 // Bitcast the original vector into a vector of store-size units
8503 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
8504 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
8505 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
8506 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, DL, StoreVecVT, Shuff);
8507 SmallVector<SDValue, 8> Chains;
8508 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
8509 TLI.getPointerTy());
8510 SDValue BasePtr = St->getBasePtr();
8511
8512 // Perform one or more big stores into memory.
8513 unsigned E = (ToEltSz*NumElems)/StoreType.getSizeInBits();
8514 for (unsigned I = 0; I < E; I++) {
8515 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
8516 StoreType, ShuffWide,
8517 DAG.getIntPtrConstant(I));
8518 SDValue Ch = DAG.getStore(St->getChain(), DL, SubVec, BasePtr,
8519 St->getPointerInfo(), St->isVolatile(),
8520 St->isNonTemporal(), St->getAlignment());
8521 BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr,
8522 Increment);
8523 Chains.push_back(Ch);
8524 }
Craig Topper48d114b2014-04-26 18:35:24 +00008525 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
Chad Rosiere0e38f62012-04-09 20:32:02 +00008526 }
8527
8528 if (!ISD::isNormalStore(St))
Cameron Zwarichfbcd69b2011-04-12 02:24:17 +00008529 return SDValue();
8530
Chad Rosier99cbde92012-04-09 19:38:15 +00008531 // Split a store of a VMOVDRR into two integer stores to avoid mixing NEON and
8532 // ARM stores of arguments in the same cache line.
Cameron Zwarichfbcd69b2011-04-12 02:24:17 +00008533 if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR &&
Chad Rosier99cbde92012-04-09 19:38:15 +00008534 StVal.getNode()->hasOneUse()) {
Cameron Zwarichfbcd69b2011-04-12 02:24:17 +00008535 SelectionDAG &DAG = DCI.DAG;
Christian Pirkerb5728192014-05-08 14:06:24 +00008536 bool isBigEndian = DAG.getTargetLoweringInfo().isBigEndian();
Andrew Trickef9de2a2013-05-25 02:42:55 +00008537 SDLoc DL(St);
Cameron Zwarichfbcd69b2011-04-12 02:24:17 +00008538 SDValue BasePtr = St->getBasePtr();
8539 SDValue NewST1 = DAG.getStore(St->getChain(), DL,
Christian Pirkerb5728192014-05-08 14:06:24 +00008540 StVal.getNode()->getOperand(isBigEndian ? 1 : 0 ),
8541 BasePtr, St->getPointerInfo(), St->isVolatile(),
Cameron Zwarichfbcd69b2011-04-12 02:24:17 +00008542 St->isNonTemporal(), St->getAlignment());
8543
8544 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
8545 DAG.getConstant(4, MVT::i32));
Christian Pirkerb5728192014-05-08 14:06:24 +00008546 return DAG.getStore(NewST1.getValue(0), DL,
8547 StVal.getNode()->getOperand(isBigEndian ? 0 : 1),
Cameron Zwarichfbcd69b2011-04-12 02:24:17 +00008548 OffsetPtr, St->getPointerInfo(), St->isVolatile(),
8549 St->isNonTemporal(),
8550 std::min(4U, St->getAlignment() / 2));
8551 }
8552
8553 if (StVal.getValueType() != MVT::i64 ||
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008554 StVal.getNode()->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
8555 return SDValue();
8556
Chad Rosier99cbde92012-04-09 19:38:15 +00008557 // Bitcast an i64 store extracted from a vector to f64.
8558 // Otherwise, the i64 value will be legalized to a pair of i32 values.
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008559 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00008560 SDLoc dl(StVal);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008561 SDValue IntVec = StVal.getOperand(0);
8562 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
8563 IntVec.getValueType().getVectorNumElements());
8564 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec);
8565 SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8566 Vec, StVal.getOperand(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00008567 dl = SDLoc(N);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008568 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt);
8569 // Make the DAGCombiner fold the bitcasts.
8570 DCI.AddToWorklist(Vec.getNode());
8571 DCI.AddToWorklist(ExtElt.getNode());
8572 DCI.AddToWorklist(V.getNode());
8573 return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(),
8574 St->getPointerInfo(), St->isVolatile(),
8575 St->isNonTemporal(), St->getAlignment(),
8576 St->getTBAAInfo());
8577}
8578
8579/// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node
8580/// are normal, non-volatile loads. If so, it is profitable to bitcast an
8581/// i64 vector to have f64 elements, since the value can then be loaded
8582/// directly into a VFP register.
8583static bool hasNormalLoadOperand(SDNode *N) {
8584 unsigned NumElts = N->getValueType(0).getVectorNumElements();
8585 for (unsigned i = 0; i < NumElts; ++i) {
8586 SDNode *Elt = N->getOperand(i).getNode();
8587 if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile())
8588 return true;
8589 }
8590 return false;
8591}
8592
Bob Wilsoncb6db982010-09-17 22:59:05 +00008593/// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for
8594/// ISD::BUILD_VECTOR.
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008595static SDValue PerformBUILD_VECTORCombine(SDNode *N,
8596 TargetLowering::DAGCombinerInfo &DCI){
Bob Wilsoncb6db982010-09-17 22:59:05 +00008597 // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X):
8598 // VMOVRRD is introduced when legalizing i64 types. It forces the i64 value
8599 // into a pair of GPRs, which is fine when the value is used as a scalar,
8600 // but if the i64 value is converted to a vector, we need to undo the VMOVRRD.
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008601 SelectionDAG &DAG = DCI.DAG;
8602 if (N->getNumOperands() == 2) {
8603 SDValue RV = PerformVMOVDRRCombine(N, DAG);
8604 if (RV.getNode())
8605 return RV;
8606 }
Bob Wilsoncb6db982010-09-17 22:59:05 +00008607
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008608 // Load i64 elements as f64 values so that type legalization does not split
8609 // them up into i32 values.
8610 EVT VT = N->getValueType(0);
8611 if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N))
8612 return SDValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00008613 SDLoc dl(N);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008614 SmallVector<SDValue, 8> Ops;
8615 unsigned NumElts = VT.getVectorNumElements();
8616 for (unsigned i = 0; i < NumElts; ++i) {
8617 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i));
8618 Ops.push_back(V);
8619 // Make the DAGCombiner fold the bitcast.
8620 DCI.AddToWorklist(V.getNode());
8621 }
8622 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts);
Craig Topper48d114b2014-04-26 18:35:24 +00008623 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008624 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
8625}
8626
Quentin Colombet04b3a0f2013-07-03 21:42:57 +00008627/// \brief Target-specific dag combine xforms for ARMISD::BUILD_VECTOR.
8628static SDValue
8629PerformARMBUILD_VECTORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
8630 // ARMISD::BUILD_VECTOR is introduced when legalizing ISD::BUILD_VECTOR.
8631 // At that time, we may have inserted bitcasts from integer to float.
8632 // If these bitcasts have survived DAGCombine, change the lowering of this
8633 // BUILD_VECTOR in something more vector friendly, i.e., that does not
8634 // force to use floating point types.
8635
8636 // Make sure we can change the type of the vector.
8637 // This is possible iff:
8638 // 1. The vector is only used in a bitcast to a integer type. I.e.,
8639 // 1.1. Vector is used only once.
8640 // 1.2. Use is a bit convert to an integer type.
8641 // 2. The size of its operands are 32-bits (64-bits are not legal).
8642 EVT VT = N->getValueType(0);
8643 EVT EltVT = VT.getVectorElementType();
8644
8645 // Check 1.1. and 2.
8646 if (EltVT.getSizeInBits() != 32 || !N->hasOneUse())
8647 return SDValue();
8648
8649 // By construction, the input type must be float.
8650 assert(EltVT == MVT::f32 && "Unexpected type!");
8651
8652 // Check 1.2.
8653 SDNode *Use = *N->use_begin();
8654 if (Use->getOpcode() != ISD::BITCAST ||
8655 Use->getValueType(0).isFloatingPoint())
8656 return SDValue();
8657
8658 // Check profitability.
8659 // Model is, if more than half of the relevant operands are bitcast from
8660 // i32, turn the build_vector into a sequence of insert_vector_elt.
8661 // Relevant operands are everything that is not statically
8662 // (i.e., at compile time) bitcasted.
8663 unsigned NumOfBitCastedElts = 0;
8664 unsigned NumElts = VT.getVectorNumElements();
8665 unsigned NumOfRelevantElts = NumElts;
8666 for (unsigned Idx = 0; Idx < NumElts; ++Idx) {
8667 SDValue Elt = N->getOperand(Idx);
8668 if (Elt->getOpcode() == ISD::BITCAST) {
8669 // Assume only bit cast to i32 will go away.
8670 if (Elt->getOperand(0).getValueType() == MVT::i32)
8671 ++NumOfBitCastedElts;
8672 } else if (Elt.getOpcode() == ISD::UNDEF || isa<ConstantSDNode>(Elt))
8673 // Constants are statically casted, thus do not count them as
8674 // relevant operands.
8675 --NumOfRelevantElts;
8676 }
8677
8678 // Check if more than half of the elements require a non-free bitcast.
8679 if (NumOfBitCastedElts <= NumOfRelevantElts / 2)
8680 return SDValue();
8681
8682 SelectionDAG &DAG = DCI.DAG;
8683 // Create the new vector type.
8684 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
8685 // Check if the type is legal.
8686 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8687 if (!TLI.isTypeLegal(VecVT))
8688 return SDValue();
8689
8690 // Combine:
8691 // ARMISD::BUILD_VECTOR E1, E2, ..., EN.
8692 // => BITCAST INSERT_VECTOR_ELT
8693 // (INSERT_VECTOR_ELT (...), (BITCAST EN-1), N-1),
8694 // (BITCAST EN), N.
8695 SDValue Vec = DAG.getUNDEF(VecVT);
8696 SDLoc dl(N);
8697 for (unsigned Idx = 0 ; Idx < NumElts; ++Idx) {
8698 SDValue V = N->getOperand(Idx);
8699 if (V.getOpcode() == ISD::UNDEF)
8700 continue;
8701 if (V.getOpcode() == ISD::BITCAST &&
8702 V->getOperand(0).getValueType() == MVT::i32)
8703 // Fold obvious case.
8704 V = V.getOperand(0);
8705 else {
Jim Grosbach1a597112014-04-03 23:43:18 +00008706 V = DAG.getNode(ISD::BITCAST, SDLoc(V), MVT::i32, V);
Quentin Colombet04b3a0f2013-07-03 21:42:57 +00008707 // Make the DAGCombiner fold the bitcasts.
8708 DCI.AddToWorklist(V.getNode());
8709 }
8710 SDValue LaneIdx = DAG.getConstant(Idx, MVT::i32);
8711 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecVT, Vec, V, LaneIdx);
8712 }
8713 Vec = DAG.getNode(ISD::BITCAST, dl, VT, Vec);
8714 // Make the DAGCombiner fold the bitcasts.
8715 DCI.AddToWorklist(Vec.getNode());
8716 return Vec;
8717}
8718
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008719/// PerformInsertEltCombine - Target-specific dag combine xforms for
8720/// ISD::INSERT_VECTOR_ELT.
8721static SDValue PerformInsertEltCombine(SDNode *N,
8722 TargetLowering::DAGCombinerInfo &DCI) {
8723 // Bitcast an i64 load inserted into a vector to f64.
8724 // Otherwise, the i64 value will be legalized to a pair of i32 values.
8725 EVT VT = N->getValueType(0);
8726 SDNode *Elt = N->getOperand(1).getNode();
8727 if (VT.getVectorElementType() != MVT::i64 ||
8728 !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile())
8729 return SDValue();
8730
8731 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00008732 SDLoc dl(N);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00008733 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
8734 VT.getVectorNumElements());
8735 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0));
8736 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1));
8737 // Make the DAGCombiner fold the bitcasts.
8738 DCI.AddToWorklist(Vec.getNode());
8739 DCI.AddToWorklist(V.getNode());
8740 SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT,
8741 Vec, V, N->getOperand(2));
8742 return DAG.getNode(ISD::BITCAST, dl, VT, InsElt);
Bob Wilsoncb6db982010-09-17 22:59:05 +00008743}
8744
Bob Wilsonc7334a12010-10-27 20:38:28 +00008745/// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for
8746/// ISD::VECTOR_SHUFFLE.
8747static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) {
8748 // The LLVM shufflevector instruction does not require the shuffle mask
8749 // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does
8750 // have that requirement. When translating to ISD::VECTOR_SHUFFLE, if the
8751 // operands do not match the mask length, they are extended by concatenating
8752 // them with undef vectors. That is probably the right thing for other
8753 // targets, but for NEON it is better to concatenate two double-register
8754 // size vector operands into a single quad-register size vector. Do that
8755 // transformation here:
8756 // shuffle(concat(v1, undef), concat(v2, undef)) ->
8757 // shuffle(concat(v1, v2), undef)
8758 SDValue Op0 = N->getOperand(0);
8759 SDValue Op1 = N->getOperand(1);
8760 if (Op0.getOpcode() != ISD::CONCAT_VECTORS ||
8761 Op1.getOpcode() != ISD::CONCAT_VECTORS ||
8762 Op0.getNumOperands() != 2 ||
8763 Op1.getNumOperands() != 2)
8764 return SDValue();
8765 SDValue Concat0Op1 = Op0.getOperand(1);
8766 SDValue Concat1Op1 = Op1.getOperand(1);
8767 if (Concat0Op1.getOpcode() != ISD::UNDEF ||
8768 Concat1Op1.getOpcode() != ISD::UNDEF)
8769 return SDValue();
8770 // Skip the transformation if any of the types are illegal.
8771 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8772 EVT VT = N->getValueType(0);
8773 if (!TLI.isTypeLegal(VT) ||
8774 !TLI.isTypeLegal(Concat0Op1.getValueType()) ||
8775 !TLI.isTypeLegal(Concat1Op1.getValueType()))
8776 return SDValue();
8777
Andrew Trickef9de2a2013-05-25 02:42:55 +00008778 SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
Bob Wilsonc7334a12010-10-27 20:38:28 +00008779 Op0.getOperand(0), Op1.getOperand(0));
8780 // Translate the shuffle mask.
8781 SmallVector<int, 16> NewMask;
8782 unsigned NumElts = VT.getVectorNumElements();
8783 unsigned HalfElts = NumElts/2;
8784 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8785 for (unsigned n = 0; n < NumElts; ++n) {
8786 int MaskElt = SVN->getMaskElt(n);
8787 int NewElt = -1;
Bob Wilson6c550072010-10-27 23:49:00 +00008788 if (MaskElt < (int)HalfElts)
Bob Wilsonc7334a12010-10-27 20:38:28 +00008789 NewElt = MaskElt;
Bob Wilson6c550072010-10-27 23:49:00 +00008790 else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts))
Bob Wilsonc7334a12010-10-27 20:38:28 +00008791 NewElt = HalfElts + MaskElt - NumElts;
8792 NewMask.push_back(NewElt);
8793 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00008794 return DAG.getVectorShuffle(VT, SDLoc(N), NewConcat,
Bob Wilsonc7334a12010-10-27 20:38:28 +00008795 DAG.getUNDEF(VT), NewMask.data());
8796}
8797
Bob Wilson06fce872011-02-07 17:43:21 +00008798/// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP and
8799/// NEON load/store intrinsics to merge base address updates.
8800static SDValue CombineBaseUpdate(SDNode *N,
8801 TargetLowering::DAGCombinerInfo &DCI) {
8802 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8803 return SDValue();
8804
8805 SelectionDAG &DAG = DCI.DAG;
8806 bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID ||
8807 N->getOpcode() == ISD::INTRINSIC_W_CHAIN);
8808 unsigned AddrOpIdx = (isIntrinsic ? 2 : 1);
8809 SDValue Addr = N->getOperand(AddrOpIdx);
8810
8811 // Search for a use of the address operand that is an increment.
8812 for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
8813 UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
8814 SDNode *User = *UI;
8815 if (User->getOpcode() != ISD::ADD ||
8816 UI.getUse().getResNo() != Addr.getResNo())
8817 continue;
8818
8819 // Check that the add is independent of the load/store. Otherwise, folding
8820 // it would create a cycle.
8821 if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
8822 continue;
8823
8824 // Find the new opcode for the updating load/store.
8825 bool isLoad = true;
8826 bool isLaneOp = false;
8827 unsigned NewOpc = 0;
8828 unsigned NumVecs = 0;
8829 if (isIntrinsic) {
8830 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
8831 switch (IntNo) {
Craig Toppere55c5562012-02-07 02:50:20 +00008832 default: llvm_unreachable("unexpected intrinsic for Neon base update");
Bob Wilson06fce872011-02-07 17:43:21 +00008833 case Intrinsic::arm_neon_vld1: NewOpc = ARMISD::VLD1_UPD;
8834 NumVecs = 1; break;
8835 case Intrinsic::arm_neon_vld2: NewOpc = ARMISD::VLD2_UPD;
8836 NumVecs = 2; break;
8837 case Intrinsic::arm_neon_vld3: NewOpc = ARMISD::VLD3_UPD;
8838 NumVecs = 3; break;
8839 case Intrinsic::arm_neon_vld4: NewOpc = ARMISD::VLD4_UPD;
8840 NumVecs = 4; break;
8841 case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD;
8842 NumVecs = 2; isLaneOp = true; break;
8843 case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD;
8844 NumVecs = 3; isLaneOp = true; break;
8845 case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD;
8846 NumVecs = 4; isLaneOp = true; break;
8847 case Intrinsic::arm_neon_vst1: NewOpc = ARMISD::VST1_UPD;
8848 NumVecs = 1; isLoad = false; break;
8849 case Intrinsic::arm_neon_vst2: NewOpc = ARMISD::VST2_UPD;
8850 NumVecs = 2; isLoad = false; break;
8851 case Intrinsic::arm_neon_vst3: NewOpc = ARMISD::VST3_UPD;
8852 NumVecs = 3; isLoad = false; break;
8853 case Intrinsic::arm_neon_vst4: NewOpc = ARMISD::VST4_UPD;
8854 NumVecs = 4; isLoad = false; break;
8855 case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD;
8856 NumVecs = 2; isLoad = false; isLaneOp = true; break;
8857 case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD;
8858 NumVecs = 3; isLoad = false; isLaneOp = true; break;
8859 case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD;
8860 NumVecs = 4; isLoad = false; isLaneOp = true; break;
8861 }
8862 } else {
8863 isLaneOp = true;
8864 switch (N->getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00008865 default: llvm_unreachable("unexpected opcode for Neon base update");
Bob Wilson06fce872011-02-07 17:43:21 +00008866 case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break;
8867 case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break;
8868 case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break;
8869 }
8870 }
8871
8872 // Find the size of memory referenced by the load/store.
8873 EVT VecTy;
8874 if (isLoad)
8875 VecTy = N->getValueType(0);
Owen Anderson77aa2662011-04-05 21:48:57 +00008876 else
Bob Wilson06fce872011-02-07 17:43:21 +00008877 VecTy = N->getOperand(AddrOpIdx+1).getValueType();
8878 unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
8879 if (isLaneOp)
8880 NumBytes /= VecTy.getVectorNumElements();
8881
8882 // If the increment is a constant, it must match the memory ref size.
8883 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
8884 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
8885 uint64_t IncVal = CInc->getZExtValue();
8886 if (IncVal != NumBytes)
8887 continue;
8888 } else if (NumBytes >= 3 * 16) {
8889 // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two
8890 // separate instructions that make it harder to use a non-constant update.
8891 continue;
8892 }
8893
8894 // Create the new updating load/store node.
8895 EVT Tys[6];
8896 unsigned NumResultVecs = (isLoad ? NumVecs : 0);
8897 unsigned n;
8898 for (n = 0; n < NumResultVecs; ++n)
8899 Tys[n] = VecTy;
8900 Tys[n++] = MVT::i32;
8901 Tys[n] = MVT::Other;
Craig Topperabb4ac72014-04-16 06:10:51 +00008902 SDVTList SDTys = DAG.getVTList(ArrayRef<EVT>(Tys, NumResultVecs+2));
Bob Wilson06fce872011-02-07 17:43:21 +00008903 SmallVector<SDValue, 8> Ops;
8904 Ops.push_back(N->getOperand(0)); // incoming chain
8905 Ops.push_back(N->getOperand(AddrOpIdx));
8906 Ops.push_back(Inc);
8907 for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands(); ++i) {
8908 Ops.push_back(N->getOperand(i));
8909 }
8910 MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N);
Andrew Trickef9de2a2013-05-25 02:42:55 +00008911 SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, SDLoc(N), SDTys,
Craig Topper206fcd42014-04-26 19:29:41 +00008912 Ops, MemInt->getMemoryVT(),
Bob Wilson06fce872011-02-07 17:43:21 +00008913 MemInt->getMemOperand());
8914
8915 // Update the uses.
8916 std::vector<SDValue> NewResults;
8917 for (unsigned i = 0; i < NumResultVecs; ++i) {
8918 NewResults.push_back(SDValue(UpdN.getNode(), i));
8919 }
8920 NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain
8921 DCI.CombineTo(N, NewResults);
8922 DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
8923
8924 break;
Owen Anderson77aa2662011-04-05 21:48:57 +00008925 }
Bob Wilson06fce872011-02-07 17:43:21 +00008926 return SDValue();
8927}
8928
Bob Wilson2d790df2010-11-28 06:51:26 +00008929/// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a
8930/// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic
8931/// are also VDUPLANEs. If so, combine them to a vldN-dup operation and
8932/// return true.
8933static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
8934 SelectionDAG &DAG = DCI.DAG;
8935 EVT VT = N->getValueType(0);
8936 // vldN-dup instructions only support 64-bit vectors for N > 1.
8937 if (!VT.is64BitVector())
8938 return false;
8939
8940 // Check if the VDUPLANE operand is a vldN-dup intrinsic.
8941 SDNode *VLD = N->getOperand(0).getNode();
8942 if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN)
8943 return false;
8944 unsigned NumVecs = 0;
8945 unsigned NewOpc = 0;
8946 unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue();
8947 if (IntNo == Intrinsic::arm_neon_vld2lane) {
8948 NumVecs = 2;
8949 NewOpc = ARMISD::VLD2DUP;
8950 } else if (IntNo == Intrinsic::arm_neon_vld3lane) {
8951 NumVecs = 3;
8952 NewOpc = ARMISD::VLD3DUP;
8953 } else if (IntNo == Intrinsic::arm_neon_vld4lane) {
8954 NumVecs = 4;
8955 NewOpc = ARMISD::VLD4DUP;
8956 } else {
8957 return false;
8958 }
8959
8960 // First check that all the vldN-lane uses are VDUPLANEs and that the lane
8961 // numbers match the load.
8962 unsigned VLDLaneNo =
8963 cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue();
8964 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
8965 UI != UE; ++UI) {
8966 // Ignore uses of the chain result.
8967 if (UI.getUse().getResNo() == NumVecs)
8968 continue;
8969 SDNode *User = *UI;
8970 if (User->getOpcode() != ARMISD::VDUPLANE ||
8971 VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue())
8972 return false;
8973 }
8974
8975 // Create the vldN-dup node.
8976 EVT Tys[5];
8977 unsigned n;
8978 for (n = 0; n < NumVecs; ++n)
8979 Tys[n] = VT;
8980 Tys[n] = MVT::Other;
Craig Topperabb4ac72014-04-16 06:10:51 +00008981 SDVTList SDTys = DAG.getVTList(ArrayRef<EVT>(Tys, NumVecs+1));
Bob Wilson2d790df2010-11-28 06:51:26 +00008982 SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) };
8983 MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD);
Andrew Trickef9de2a2013-05-25 02:42:55 +00008984 SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, SDLoc(VLD), SDTys,
Craig Topper206fcd42014-04-26 19:29:41 +00008985 Ops, VLDMemInt->getMemoryVT(),
Bob Wilson2d790df2010-11-28 06:51:26 +00008986 VLDMemInt->getMemOperand());
8987
8988 // Update the uses.
8989 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
8990 UI != UE; ++UI) {
8991 unsigned ResNo = UI.getUse().getResNo();
8992 // Ignore uses of the chain result.
8993 if (ResNo == NumVecs)
8994 continue;
8995 SDNode *User = *UI;
8996 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));
8997 }
8998
8999 // Now the vldN-lane intrinsic is dead except for its chain result.
9000 // Update uses of the chain.
9001 std::vector<SDValue> VLDDupResults;
9002 for (unsigned n = 0; n < NumVecs; ++n)
9003 VLDDupResults.push_back(SDValue(VLDDup.getNode(), n));
9004 VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs));
9005 DCI.CombineTo(VLD, VLDDupResults);
9006
9007 return true;
9008}
9009
Bob Wilson103a0dc2010-07-14 01:22:12 +00009010/// PerformVDUPLANECombine - Target-specific dag combine xforms for
9011/// ARMISD::VDUPLANE.
Bob Wilson2d790df2010-11-28 06:51:26 +00009012static SDValue PerformVDUPLANECombine(SDNode *N,
9013 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson103a0dc2010-07-14 01:22:12 +00009014 SDValue Op = N->getOperand(0);
Bob Wilson103a0dc2010-07-14 01:22:12 +00009015
Bob Wilson2d790df2010-11-28 06:51:26 +00009016 // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses
9017 // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation.
9018 if (CombineVLDDUP(N, DCI))
9019 return SDValue(N, 0);
9020
9021 // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is
9022 // redundant. Ignore bit_converts for now; element sizes are checked below.
Wesley Peck527da1b2010-11-23 03:31:01 +00009023 while (Op.getOpcode() == ISD::BITCAST)
Bob Wilson103a0dc2010-07-14 01:22:12 +00009024 Op = Op.getOperand(0);
Bob Wilsonbad47f62010-07-14 06:31:50 +00009025 if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM)
Bob Wilson103a0dc2010-07-14 01:22:12 +00009026 return SDValue();
9027
9028 // Make sure the VMOV element size is not bigger than the VDUPLANE elements.
9029 unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits();
9030 // The canonical VMOV for a zero vector uses a 32-bit element size.
9031 unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9032 unsigned EltBits;
9033 if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0)
9034 EltSize = 8;
Bob Wilson2d790df2010-11-28 06:51:26 +00009035 EVT VT = N->getValueType(0);
Bob Wilson103a0dc2010-07-14 01:22:12 +00009036 if (EltSize > VT.getVectorElementType().getSizeInBits())
9037 return SDValue();
9038
Andrew Trickef9de2a2013-05-25 02:42:55 +00009039 return DCI.DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Bob Wilson103a0dc2010-07-14 01:22:12 +00009040}
9041
Eric Christopher1b8b94192011-06-29 21:10:36 +00009042// isConstVecPow2 - Return true if each vector element is a power of 2, all
Chad Rosierfa8d8932011-06-24 19:23:04 +00009043// elements are the same constant, C, and Log2(C) ranges from 1 to 32.
9044static bool isConstVecPow2(SDValue ConstVec, bool isSigned, uint64_t &C)
9045{
Chad Rosier6b610b32011-06-28 17:26:57 +00009046 integerPart cN;
9047 integerPart c0 = 0;
Chad Rosierfa8d8932011-06-24 19:23:04 +00009048 for (unsigned I = 0, E = ConstVec.getValueType().getVectorNumElements();
9049 I != E; I++) {
9050 ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(ConstVec.getOperand(I));
9051 if (!C)
9052 return false;
9053
Eric Christopher1b8b94192011-06-29 21:10:36 +00009054 bool isExact;
Chad Rosierfa8d8932011-06-24 19:23:04 +00009055 APFloat APF = C->getValueAPF();
9056 if (APF.convertToInteger(&cN, 64, isSigned, APFloat::rmTowardZero, &isExact)
9057 != APFloat::opOK || !isExact)
9058 return false;
9059
9060 c0 = (I == 0) ? cN : c0;
9061 if (!isPowerOf2_64(cN) || c0 != cN || Log2_64(c0) < 1 || Log2_64(c0) > 32)
9062 return false;
9063 }
9064 C = c0;
9065 return true;
9066}
9067
9068/// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD)
9069/// can replace combinations of VMUL and VCVT (floating-point to integer)
9070/// when the VMUL has a constant operand that is a power of 2.
9071///
9072/// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
9073/// vmul.f32 d16, d17, d16
9074/// vcvt.s32.f32 d16, d16
9075/// becomes:
9076/// vcvt.s32.f32 d16, d16, #3
9077static SDValue PerformVCVTCombine(SDNode *N,
9078 TargetLowering::DAGCombinerInfo &DCI,
9079 const ARMSubtarget *Subtarget) {
9080 SelectionDAG &DAG = DCI.DAG;
9081 SDValue Op = N->getOperand(0);
9082
9083 if (!Subtarget->hasNEON() || !Op.getValueType().isVector() ||
9084 Op.getOpcode() != ISD::FMUL)
9085 return SDValue();
9086
9087 uint64_t C;
9088 SDValue N0 = Op->getOperand(0);
9089 SDValue ConstVec = Op->getOperand(1);
9090 bool isSigned = N->getOpcode() == ISD::FP_TO_SINT;
9091
Eric Christopher1b8b94192011-06-29 21:10:36 +00009092 if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
Chad Rosierfa8d8932011-06-24 19:23:04 +00009093 !isConstVecPow2(ConstVec, isSigned, C))
9094 return SDValue();
9095
Tim Northover7cbc2152013-06-28 15:29:25 +00009096 MVT FloatTy = Op.getSimpleValueType().getVectorElementType();
9097 MVT IntTy = N->getSimpleValueType(0).getVectorElementType();
9098 if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32) {
9099 // These instructions only exist converting from f32 to i32. We can handle
9100 // smaller integers by generating an extra truncate, but larger ones would
9101 // be lossy.
9102 return SDValue();
9103 }
9104
Chad Rosierfa8d8932011-06-24 19:23:04 +00009105 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs :
9106 Intrinsic::arm_neon_vcvtfp2fxu;
Tim Northover7cbc2152013-06-28 15:29:25 +00009107 unsigned NumLanes = Op.getValueType().getVectorNumElements();
9108 SDValue FixConv = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N),
9109 NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
9110 DAG.getConstant(IntrinsicOpcode, MVT::i32), N0,
9111 DAG.getConstant(Log2_64(C), MVT::i32));
9112
9113 if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
9114 FixConv = DAG.getNode(ISD::TRUNCATE, SDLoc(N), N->getValueType(0), FixConv);
9115
9116 return FixConv;
Chad Rosierfa8d8932011-06-24 19:23:04 +00009117}
9118
9119/// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD)
9120/// can replace combinations of VCVT (integer to floating-point) and VDIV
9121/// when the VDIV has a constant operand that is a power of 2.
9122///
9123/// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
9124/// vcvt.f32.s32 d16, d16
9125/// vdiv.f32 d16, d17, d16
9126/// becomes:
9127/// vcvt.f32.s32 d16, d16, #3
9128static SDValue PerformVDIVCombine(SDNode *N,
9129 TargetLowering::DAGCombinerInfo &DCI,
9130 const ARMSubtarget *Subtarget) {
9131 SelectionDAG &DAG = DCI.DAG;
9132 SDValue Op = N->getOperand(0);
9133 unsigned OpOpcode = Op.getNode()->getOpcode();
9134
9135 if (!Subtarget->hasNEON() || !N->getValueType(0).isVector() ||
9136 (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP))
9137 return SDValue();
9138
9139 uint64_t C;
9140 SDValue ConstVec = N->getOperand(1);
9141 bool isSigned = OpOpcode == ISD::SINT_TO_FP;
9142
9143 if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
9144 !isConstVecPow2(ConstVec, isSigned, C))
9145 return SDValue();
9146
Tim Northover7cbc2152013-06-28 15:29:25 +00009147 MVT FloatTy = N->getSimpleValueType(0).getVectorElementType();
9148 MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType();
9149 if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32) {
9150 // These instructions only exist converting from i32 to f32. We can handle
9151 // smaller integers by generating an extra extend, but larger ones would
9152 // be lossy.
9153 return SDValue();
9154 }
9155
9156 SDValue ConvInput = Op.getOperand(0);
9157 unsigned NumLanes = Op.getValueType().getVectorNumElements();
9158 if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
9159 ConvInput = DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
9160 SDLoc(N), NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
9161 ConvInput);
9162
Eric Christopher1b8b94192011-06-29 21:10:36 +00009163 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp :
Chad Rosierfa8d8932011-06-24 19:23:04 +00009164 Intrinsic::arm_neon_vcvtfxu2fp;
Andrew Trickef9de2a2013-05-25 02:42:55 +00009165 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N),
Chad Rosierfa8d8932011-06-24 19:23:04 +00009166 Op.getValueType(),
Eric Christopher1b8b94192011-06-29 21:10:36 +00009167 DAG.getConstant(IntrinsicOpcode, MVT::i32),
Tim Northover7cbc2152013-06-28 15:29:25 +00009168 ConvInput, DAG.getConstant(Log2_64(C), MVT::i32));
Chad Rosierfa8d8932011-06-24 19:23:04 +00009169}
9170
9171/// Getvshiftimm - Check if this is a valid build_vector for the immediate
Bob Wilson2e076c42009-06-22 23:27:02 +00009172/// operand of a vector shift operation, where all the elements of the
9173/// build_vector must have the same constant integer value.
9174static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
9175 // Ignore bit_converts.
Wesley Peck527da1b2010-11-23 03:31:01 +00009176 while (Op.getOpcode() == ISD::BITCAST)
Bob Wilson2e076c42009-06-22 23:27:02 +00009177 Op = Op.getOperand(0);
9178 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
9179 APInt SplatBits, SplatUndef;
9180 unsigned SplatBitSize;
9181 bool HasAnyUndefs;
9182 if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
9183 HasAnyUndefs, ElementBits) ||
9184 SplatBitSize > ElementBits)
9185 return false;
9186 Cnt = SplatBits.getSExtValue();
9187 return true;
9188}
9189
9190/// isVShiftLImm - Check if this is a valid build_vector for the immediate
9191/// operand of a vector shift left operation. That value must be in the range:
9192/// 0 <= Value < ElementBits for a left shift; or
9193/// 0 <= Value <= ElementBits for a long left shift.
Owen Anderson53aa7a92009-08-10 22:56:29 +00009194static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
Bob Wilson2e076c42009-06-22 23:27:02 +00009195 assert(VT.isVector() && "vector shift count is not a vector type");
9196 unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
9197 if (! getVShiftImm(Op, ElementBits, Cnt))
9198 return false;
9199 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
9200}
9201
9202/// isVShiftRImm - Check if this is a valid build_vector for the immediate
9203/// operand of a vector shift right operation. For a shift opcode, the value
9204/// is positive, but for an intrinsic the value count must be negative. The
9205/// absolute value must be in the range:
9206/// 1 <= |Value| <= ElementBits for a right shift; or
9207/// 1 <= |Value| <= ElementBits/2 for a narrow right shift.
Owen Anderson53aa7a92009-08-10 22:56:29 +00009208static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
Bob Wilson2e076c42009-06-22 23:27:02 +00009209 int64_t &Cnt) {
9210 assert(VT.isVector() && "vector shift count is not a vector type");
9211 unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
9212 if (! getVShiftImm(Op, ElementBits, Cnt))
9213 return false;
9214 if (isIntrinsic)
9215 Cnt = -Cnt;
9216 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
9217}
9218
9219/// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
9220static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
9221 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
9222 switch (IntNo) {
9223 default:
9224 // Don't do anything for most intrinsics.
9225 break;
9226
9227 // Vector shifts: check for immediate versions and lower them.
9228 // Note: This is done during DAG combining instead of DAG legalizing because
9229 // the build_vectors for 64-bit vector element shift counts are generally
9230 // not legal, and it is hard to see their values after they get legalized to
9231 // loads from a constant pool.
9232 case Intrinsic::arm_neon_vshifts:
9233 case Intrinsic::arm_neon_vshiftu:
Bob Wilson2e076c42009-06-22 23:27:02 +00009234 case Intrinsic::arm_neon_vrshifts:
9235 case Intrinsic::arm_neon_vrshiftu:
9236 case Intrinsic::arm_neon_vrshiftn:
9237 case Intrinsic::arm_neon_vqshifts:
9238 case Intrinsic::arm_neon_vqshiftu:
9239 case Intrinsic::arm_neon_vqshiftsu:
9240 case Intrinsic::arm_neon_vqshiftns:
9241 case Intrinsic::arm_neon_vqshiftnu:
9242 case Intrinsic::arm_neon_vqshiftnsu:
9243 case Intrinsic::arm_neon_vqrshiftns:
9244 case Intrinsic::arm_neon_vqrshiftnu:
9245 case Intrinsic::arm_neon_vqrshiftnsu: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00009246 EVT VT = N->getOperand(1).getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +00009247 int64_t Cnt;
9248 unsigned VShiftOpc = 0;
9249
9250 switch (IntNo) {
9251 case Intrinsic::arm_neon_vshifts:
9252 case Intrinsic::arm_neon_vshiftu:
9253 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
9254 VShiftOpc = ARMISD::VSHL;
9255 break;
9256 }
9257 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
9258 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
9259 ARMISD::VSHRs : ARMISD::VSHRu);
9260 break;
9261 }
9262 return SDValue();
9263
Bob Wilson2e076c42009-06-22 23:27:02 +00009264 case Intrinsic::arm_neon_vrshifts:
9265 case Intrinsic::arm_neon_vrshiftu:
9266 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
9267 break;
9268 return SDValue();
9269
9270 case Intrinsic::arm_neon_vqshifts:
9271 case Intrinsic::arm_neon_vqshiftu:
9272 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9273 break;
9274 return SDValue();
9275
9276 case Intrinsic::arm_neon_vqshiftsu:
9277 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9278 break;
Torok Edwinfbcc6632009-07-14 16:55:14 +00009279 llvm_unreachable("invalid shift count for vqshlu intrinsic");
Bob Wilson2e076c42009-06-22 23:27:02 +00009280
Bob Wilson2e076c42009-06-22 23:27:02 +00009281 case Intrinsic::arm_neon_vrshiftn:
9282 case Intrinsic::arm_neon_vqshiftns:
9283 case Intrinsic::arm_neon_vqshiftnu:
9284 case Intrinsic::arm_neon_vqshiftnsu:
9285 case Intrinsic::arm_neon_vqrshiftns:
9286 case Intrinsic::arm_neon_vqrshiftnu:
9287 case Intrinsic::arm_neon_vqrshiftnsu:
9288 // Narrowing shifts require an immediate right shift.
9289 if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
9290 break;
Jim Grosbach84511e12010-06-02 21:53:11 +00009291 llvm_unreachable("invalid shift count for narrowing vector shift "
9292 "intrinsic");
Bob Wilson2e076c42009-06-22 23:27:02 +00009293
9294 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +00009295 llvm_unreachable("unhandled vector shift");
Bob Wilson2e076c42009-06-22 23:27:02 +00009296 }
9297
9298 switch (IntNo) {
9299 case Intrinsic::arm_neon_vshifts:
9300 case Intrinsic::arm_neon_vshiftu:
9301 // Opcode already set above.
9302 break;
Bob Wilson2e076c42009-06-22 23:27:02 +00009303 case Intrinsic::arm_neon_vrshifts:
9304 VShiftOpc = ARMISD::VRSHRs; break;
9305 case Intrinsic::arm_neon_vrshiftu:
9306 VShiftOpc = ARMISD::VRSHRu; break;
9307 case Intrinsic::arm_neon_vrshiftn:
9308 VShiftOpc = ARMISD::VRSHRN; break;
9309 case Intrinsic::arm_neon_vqshifts:
9310 VShiftOpc = ARMISD::VQSHLs; break;
9311 case Intrinsic::arm_neon_vqshiftu:
9312 VShiftOpc = ARMISD::VQSHLu; break;
9313 case Intrinsic::arm_neon_vqshiftsu:
9314 VShiftOpc = ARMISD::VQSHLsu; break;
9315 case Intrinsic::arm_neon_vqshiftns:
9316 VShiftOpc = ARMISD::VQSHRNs; break;
9317 case Intrinsic::arm_neon_vqshiftnu:
9318 VShiftOpc = ARMISD::VQSHRNu; break;
9319 case Intrinsic::arm_neon_vqshiftnsu:
9320 VShiftOpc = ARMISD::VQSHRNsu; break;
9321 case Intrinsic::arm_neon_vqrshiftns:
9322 VShiftOpc = ARMISD::VQRSHRNs; break;
9323 case Intrinsic::arm_neon_vqrshiftnu:
9324 VShiftOpc = ARMISD::VQRSHRNu; break;
9325 case Intrinsic::arm_neon_vqrshiftnsu:
9326 VShiftOpc = ARMISD::VQRSHRNsu; break;
9327 }
9328
Andrew Trickef9de2a2013-05-25 02:42:55 +00009329 return DAG.getNode(VShiftOpc, SDLoc(N), N->getValueType(0),
Owen Anderson9f944592009-08-11 20:47:22 +00009330 N->getOperand(1), DAG.getConstant(Cnt, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00009331 }
9332
9333 case Intrinsic::arm_neon_vshiftins: {
Owen Anderson53aa7a92009-08-10 22:56:29 +00009334 EVT VT = N->getOperand(1).getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +00009335 int64_t Cnt;
9336 unsigned VShiftOpc = 0;
9337
9338 if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
9339 VShiftOpc = ARMISD::VSLI;
9340 else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
9341 VShiftOpc = ARMISD::VSRI;
9342 else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00009343 llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
Bob Wilson2e076c42009-06-22 23:27:02 +00009344 }
9345
Andrew Trickef9de2a2013-05-25 02:42:55 +00009346 return DAG.getNode(VShiftOpc, SDLoc(N), N->getValueType(0),
Bob Wilson2e076c42009-06-22 23:27:02 +00009347 N->getOperand(1), N->getOperand(2),
Owen Anderson9f944592009-08-11 20:47:22 +00009348 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00009349 }
9350
9351 case Intrinsic::arm_neon_vqrshifts:
9352 case Intrinsic::arm_neon_vqrshiftu:
9353 // No immediate versions of these to check for.
9354 break;
9355 }
9356
9357 return SDValue();
9358}
9359
9360/// PerformShiftCombine - Checks for immediate versions of vector shifts and
9361/// lowers them. As with the vector shift intrinsics, this is done during DAG
9362/// combining instead of DAG legalizing because the build_vectors for 64-bit
9363/// vector element shift counts are generally not legal, and it is hard to see
9364/// their values after they get legalized to loads from a constant pool.
9365static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
9366 const ARMSubtarget *ST) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00009367 EVT VT = N->getValueType(0);
Evan Chengf258a152012-02-23 02:58:19 +00009368 if (N->getOpcode() == ISD::SRL && VT == MVT::i32 && ST->hasV6Ops()) {
9369 // Canonicalize (srl (bswap x), 16) to (rotr (bswap x), 16) if the high
9370 // 16-bits of x is zero. This optimizes rev + lsr 16 to rev16.
9371 SDValue N1 = N->getOperand(1);
9372 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
9373 SDValue N0 = N->getOperand(0);
9374 if (C->getZExtValue() == 16 && N0.getOpcode() == ISD::BSWAP &&
9375 DAG.MaskedValueIsZero(N0.getOperand(0),
9376 APInt::getHighBitsSet(32, 16)))
Andrew Trickef9de2a2013-05-25 02:42:55 +00009377 return DAG.getNode(ISD::ROTR, SDLoc(N), VT, N0, N1);
Evan Chengf258a152012-02-23 02:58:19 +00009378 }
9379 }
Bob Wilson2e076c42009-06-22 23:27:02 +00009380
9381 // Nothing to be done for scalar shifts.
Tanya Lattnercd680952010-11-18 22:06:46 +00009382 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9383 if (!VT.isVector() || !TLI.isTypeLegal(VT))
Bob Wilson2e076c42009-06-22 23:27:02 +00009384 return SDValue();
9385
9386 assert(ST->hasNEON() && "unexpected vector shift");
9387 int64_t Cnt;
9388
9389 switch (N->getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00009390 default: llvm_unreachable("unexpected shift opcode");
Bob Wilson2e076c42009-06-22 23:27:02 +00009391
9392 case ISD::SHL:
9393 if (isVShiftLImm(N->getOperand(1), VT, false, Cnt))
Andrew Trickef9de2a2013-05-25 02:42:55 +00009394 return DAG.getNode(ARMISD::VSHL, SDLoc(N), VT, N->getOperand(0),
Owen Anderson9f944592009-08-11 20:47:22 +00009395 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00009396 break;
9397
9398 case ISD::SRA:
9399 case ISD::SRL:
9400 if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
9401 unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
9402 ARMISD::VSHRs : ARMISD::VSHRu);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009403 return DAG.getNode(VShiftOpc, SDLoc(N), VT, N->getOperand(0),
Owen Anderson9f944592009-08-11 20:47:22 +00009404 DAG.getConstant(Cnt, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00009405 }
9406 }
9407 return SDValue();
9408}
9409
9410/// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
9411/// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
9412static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
9413 const ARMSubtarget *ST) {
9414 SDValue N0 = N->getOperand(0);
9415
9416 // Check for sign- and zero-extensions of vector extract operations of 8-
9417 // and 16-bit vector elements. NEON supports these directly. They are
9418 // handled during DAG combining because type legalization will promote them
9419 // to 32-bit types and it is messy to recognize the operations after that.
9420 if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
9421 SDValue Vec = N0.getOperand(0);
9422 SDValue Lane = N0.getOperand(1);
Owen Anderson53aa7a92009-08-10 22:56:29 +00009423 EVT VT = N->getValueType(0);
9424 EVT EltVT = N0.getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +00009425 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9426
Owen Anderson9f944592009-08-11 20:47:22 +00009427 if (VT == MVT::i32 &&
9428 (EltVT == MVT::i8 || EltVT == MVT::i16) &&
Bob Wilsonceb49292010-11-03 16:24:50 +00009429 TLI.isTypeLegal(Vec.getValueType()) &&
9430 isa<ConstantSDNode>(Lane)) {
Bob Wilson2e076c42009-06-22 23:27:02 +00009431
9432 unsigned Opc = 0;
9433 switch (N->getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00009434 default: llvm_unreachable("unexpected opcode");
Bob Wilson2e076c42009-06-22 23:27:02 +00009435 case ISD::SIGN_EXTEND:
9436 Opc = ARMISD::VGETLANEs;
9437 break;
9438 case ISD::ZERO_EXTEND:
9439 case ISD::ANY_EXTEND:
9440 Opc = ARMISD::VGETLANEu;
9441 break;
9442 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00009443 return DAG.getNode(Opc, SDLoc(N), VT, Vec, Lane);
Bob Wilson2e076c42009-06-22 23:27:02 +00009444 }
9445 }
9446
9447 return SDValue();
9448}
9449
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009450/// PerformSELECT_CCCombine - Target-specific DAG combining for ISD::SELECT_CC
9451/// to match f32 max/min patterns to use NEON vmax/vmin instructions.
9452static SDValue PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG,
9453 const ARMSubtarget *ST) {
9454 // If the target supports NEON, try to use vmax/vmin instructions for f32
Evan Cheng55f0c6b2010-07-15 22:07:12 +00009455 // selects like "x < y ? x : y". Unless the NoNaNsFPMath option is set,
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009456 // be careful about NaNs: NEON's vmax/vmin return NaN if either operand is
9457 // a NaN; only do the transformation when it matches that behavior.
9458
9459 // For now only do this when using NEON for FP operations; if using VFP, it
9460 // is not obvious that the benefit outweighs the cost of switching to the
9461 // NEON pipeline.
9462 if (!ST->hasNEON() || !ST->useNEONForSinglePrecisionFP() ||
9463 N->getValueType(0) != MVT::f32)
9464 return SDValue();
9465
9466 SDValue CondLHS = N->getOperand(0);
9467 SDValue CondRHS = N->getOperand(1);
9468 SDValue LHS = N->getOperand(2);
9469 SDValue RHS = N->getOperand(3);
9470 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
9471
9472 unsigned Opcode = 0;
9473 bool IsReversed;
Bob Wilsonba8ac742010-02-24 22:15:53 +00009474 if (DAG.isEqualTo(LHS, CondLHS) && DAG.isEqualTo(RHS, CondRHS)) {
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009475 IsReversed = false; // x CC y ? x : y
Bob Wilsonba8ac742010-02-24 22:15:53 +00009476 } else if (DAG.isEqualTo(LHS, CondRHS) && DAG.isEqualTo(RHS, CondLHS)) {
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009477 IsReversed = true ; // x CC y ? y : x
9478 } else {
9479 return SDValue();
9480 }
9481
Bob Wilsonba8ac742010-02-24 22:15:53 +00009482 bool IsUnordered;
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009483 switch (CC) {
9484 default: break;
9485 case ISD::SETOLT:
9486 case ISD::SETOLE:
9487 case ISD::SETLT:
9488 case ISD::SETLE:
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009489 case ISD::SETULT:
9490 case ISD::SETULE:
Bob Wilsonba8ac742010-02-24 22:15:53 +00009491 // If LHS is NaN, an ordered comparison will be false and the result will
9492 // be the RHS, but vmin(NaN, RHS) = NaN. Avoid this by checking that LHS
9493 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN.
9494 IsUnordered = (CC == ISD::SETULT || CC == ISD::SETULE);
9495 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
9496 break;
9497 // For less-than-or-equal comparisons, "+0 <= -0" will be true but vmin
9498 // will return -0, so vmin can only be used for unsafe math or if one of
9499 // the operands is known to be nonzero.
9500 if ((CC == ISD::SETLE || CC == ISD::SETOLE || CC == ISD::SETULE) &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +00009501 !DAG.getTarget().Options.UnsafeFPMath &&
Bob Wilsonba8ac742010-02-24 22:15:53 +00009502 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9503 break;
9504 Opcode = IsReversed ? ARMISD::FMAX : ARMISD::FMIN;
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009505 break;
9506
9507 case ISD::SETOGT:
9508 case ISD::SETOGE:
9509 case ISD::SETGT:
9510 case ISD::SETGE:
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009511 case ISD::SETUGT:
9512 case ISD::SETUGE:
Bob Wilsonba8ac742010-02-24 22:15:53 +00009513 // If LHS is NaN, an ordered comparison will be false and the result will
9514 // be the RHS, but vmax(NaN, RHS) = NaN. Avoid this by checking that LHS
9515 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN.
9516 IsUnordered = (CC == ISD::SETUGT || CC == ISD::SETUGE);
9517 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
9518 break;
9519 // For greater-than-or-equal comparisons, "-0 >= +0" will be true but vmax
9520 // will return +0, so vmax can only be used for unsafe math or if one of
9521 // the operands is known to be nonzero.
9522 if ((CC == ISD::SETGE || CC == ISD::SETOGE || CC == ISD::SETUGE) &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +00009523 !DAG.getTarget().Options.UnsafeFPMath &&
Bob Wilsonba8ac742010-02-24 22:15:53 +00009524 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9525 break;
9526 Opcode = IsReversed ? ARMISD::FMIN : ARMISD::FMAX;
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009527 break;
9528 }
9529
9530 if (!Opcode)
9531 return SDValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00009532 return DAG.getNode(Opcode, SDLoc(N), N->getValueType(0), LHS, RHS);
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009533}
9534
Evan Chengf863e3f2011-07-13 00:42:17 +00009535/// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV.
9536SDValue
9537ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const {
9538 SDValue Cmp = N->getOperand(4);
9539 if (Cmp.getOpcode() != ARMISD::CMPZ)
9540 // Only looking at EQ and NE cases.
9541 return SDValue();
9542
9543 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009544 SDLoc dl(N);
Evan Chengf863e3f2011-07-13 00:42:17 +00009545 SDValue LHS = Cmp.getOperand(0);
9546 SDValue RHS = Cmp.getOperand(1);
9547 SDValue FalseVal = N->getOperand(0);
9548 SDValue TrueVal = N->getOperand(1);
9549 SDValue ARMcc = N->getOperand(2);
Jim Grosbache7e2aca2011-09-13 20:30:37 +00009550 ARMCC::CondCodes CC =
9551 (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue();
Evan Chengf863e3f2011-07-13 00:42:17 +00009552
9553 // Simplify
9554 // mov r1, r0
9555 // cmp r1, x
9556 // mov r0, y
9557 // moveq r0, x
9558 // to
9559 // cmp r0, x
9560 // movne r0, y
9561 //
9562 // mov r1, r0
9563 // cmp r1, x
9564 // mov r0, x
9565 // movne r0, y
9566 // to
9567 // cmp r0, x
9568 // movne r0, y
9569 /// FIXME: Turn this into a target neutral optimization?
9570 SDValue Res;
Evan Cheng81563762011-09-28 23:16:31 +00009571 if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) {
Evan Chengf863e3f2011-07-13 00:42:17 +00009572 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc,
9573 N->getOperand(3), Cmp);
9574 } else if (CC == ARMCC::EQ && TrueVal == RHS) {
9575 SDValue ARMcc;
9576 SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl);
9577 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc,
9578 N->getOperand(3), NewCmp);
9579 }
9580
9581 if (Res.getNode()) {
9582 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +00009583 DAG.computeKnownBits(SDValue(N,0), KnownZero, KnownOne);
Evan Chengf863e3f2011-07-13 00:42:17 +00009584 // Capture demanded bits information that would be otherwise lost.
9585 if (KnownZero == 0xfffffffe)
9586 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9587 DAG.getValueType(MVT::i1));
9588 else if (KnownZero == 0xffffff00)
9589 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9590 DAG.getValueType(MVT::i8));
9591 else if (KnownZero == 0xffff0000)
9592 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9593 DAG.getValueType(MVT::i16));
9594 }
9595
9596 return Res;
9597}
9598
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009599SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
Bob Wilson7117a912009-03-20 22:42:55 +00009600 DAGCombinerInfo &DCI) const {
Chris Lattnerf3f4ad92007-11-27 22:36:16 +00009601 switch (N->getOpcode()) {
9602 default: break;
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00009603 case ISD::ADDC: return PerformADDCCombine(N, DCI, Subtarget);
Tanya Lattnere9e67052011-06-14 23:48:48 +00009604 case ISD::ADD: return PerformADDCombine(N, DCI, Subtarget);
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009605 case ISD::SUB: return PerformSUBCombine(N, DCI);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00009606 case ISD::MUL: return PerformMULCombine(N, DCI, Subtarget);
Jim Grosbach11013ed2010-07-16 23:05:05 +00009607 case ISD::OR: return PerformORCombine(N, DCI, Subtarget);
Evan Chenge87681c2012-02-23 01:19:06 +00009608 case ISD::XOR: return PerformXORCombine(N, DCI, Subtarget);
9609 case ISD::AND: return PerformANDCombine(N, DCI, Subtarget);
Evan Chengc1778132010-12-14 03:22:07 +00009610 case ARMISD::BFI: return PerformBFICombine(N, DCI);
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00009611 case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI);
Bob Wilson22806742010-09-22 22:09:21 +00009612 case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009613 case ISD::STORE: return PerformSTORECombine(N, DCI);
9614 case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI);
9615 case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI);
Bob Wilsonc7334a12010-10-27 20:38:28 +00009616 case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG);
Bob Wilson2d790df2010-11-28 06:51:26 +00009617 case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI);
Chad Rosierfa8d8932011-06-24 19:23:04 +00009618 case ISD::FP_TO_SINT:
9619 case ISD::FP_TO_UINT: return PerformVCVTCombine(N, DCI, Subtarget);
9620 case ISD::FDIV: return PerformVDIVCombine(N, DCI, Subtarget);
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009621 case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG);
Bob Wilson2e076c42009-06-22 23:27:02 +00009622 case ISD::SHL:
9623 case ISD::SRA:
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009624 case ISD::SRL: return PerformShiftCombine(N, DCI.DAG, Subtarget);
Bob Wilson2e076c42009-06-22 23:27:02 +00009625 case ISD::SIGN_EXTEND:
9626 case ISD::ZERO_EXTEND:
Bob Wilsonc6c13a32010-02-18 06:05:53 +00009627 case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget);
9628 case ISD::SELECT_CC: return PerformSELECT_CCCombine(N, DCI.DAG, Subtarget);
Evan Chengf863e3f2011-07-13 00:42:17 +00009629 case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG);
Bob Wilson06fce872011-02-07 17:43:21 +00009630 case ARMISD::VLD2DUP:
9631 case ARMISD::VLD3DUP:
9632 case ARMISD::VLD4DUP:
9633 return CombineBaseUpdate(N, DCI);
Quentin Colombet04b3a0f2013-07-03 21:42:57 +00009634 case ARMISD::BUILD_VECTOR:
9635 return PerformARMBUILD_VECTORCombine(N, DCI);
Bob Wilson06fce872011-02-07 17:43:21 +00009636 case ISD::INTRINSIC_VOID:
9637 case ISD::INTRINSIC_W_CHAIN:
9638 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9639 case Intrinsic::arm_neon_vld1:
9640 case Intrinsic::arm_neon_vld2:
9641 case Intrinsic::arm_neon_vld3:
9642 case Intrinsic::arm_neon_vld4:
9643 case Intrinsic::arm_neon_vld2lane:
9644 case Intrinsic::arm_neon_vld3lane:
9645 case Intrinsic::arm_neon_vld4lane:
9646 case Intrinsic::arm_neon_vst1:
9647 case Intrinsic::arm_neon_vst2:
9648 case Intrinsic::arm_neon_vst3:
9649 case Intrinsic::arm_neon_vst4:
9650 case Intrinsic::arm_neon_vst2lane:
9651 case Intrinsic::arm_neon_vst3lane:
9652 case Intrinsic::arm_neon_vst4lane:
9653 return CombineBaseUpdate(N, DCI);
9654 default: break;
9655 }
9656 break;
Chris Lattnerf3f4ad92007-11-27 22:36:16 +00009657 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00009658 return SDValue();
Chris Lattnerf3f4ad92007-11-27 22:36:16 +00009659}
9660
Evan Chengd42641c2011-02-02 01:06:55 +00009661bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc,
9662 EVT VT) const {
9663 return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE);
9664}
9665
Matt Arsenault25793a32014-02-05 23:15:53 +00009666bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT, unsigned,
9667 bool *Fast) const {
Evan Cheng90ae8f82012-09-18 01:42:45 +00009668 // The AllowsUnaliged flag models the SCTLR.A setting in ARM cpus
Chad Rosier66bb1782012-11-09 18:25:27 +00009669 bool AllowsUnaligned = Subtarget->allowsUnalignedMem();
Bill Wendlingbae6b2c2009-08-15 21:21:19 +00009670
9671 switch (VT.getSimpleVT().SimpleTy) {
9672 default:
9673 return false;
9674 case MVT::i8:
9675 case MVT::i16:
Evan Cheng79e2ca92012-12-10 23:21:26 +00009676 case MVT::i32: {
Evan Cheng90ae8f82012-09-18 01:42:45 +00009677 // Unaligned access can use (for example) LRDB, LRDH, LDR
Evan Cheng79e2ca92012-12-10 23:21:26 +00009678 if (AllowsUnaligned) {
9679 if (Fast)
9680 *Fast = Subtarget->hasV7Ops();
9681 return true;
9682 }
9683 return false;
9684 }
Evan Chengeec6bc62012-08-15 17:44:53 +00009685 case MVT::f64:
Evan Cheng79e2ca92012-12-10 23:21:26 +00009686 case MVT::v2f64: {
Evan Cheng90ae8f82012-09-18 01:42:45 +00009687 // For any little-endian targets with neon, we can support unaligned ld/st
9688 // of D and Q (e.g. {D0,D1}) registers by using vld1.i8/vst1.i8.
Alp Tokercb402912014-01-24 17:20:08 +00009689 // A big-endian target may also explicitly support unaligned accesses
Evan Cheng79e2ca92012-12-10 23:21:26 +00009690 if (Subtarget->hasNEON() && (AllowsUnaligned || isLittleEndian())) {
9691 if (Fast)
9692 *Fast = true;
9693 return true;
9694 }
9695 return false;
9696 }
Bill Wendlingbae6b2c2009-08-15 21:21:19 +00009697 }
9698}
9699
Lang Hames9929c422011-11-02 22:52:45 +00009700static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
9701 unsigned AlignCheck) {
9702 return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
9703 (DstAlign == 0 || DstAlign % AlignCheck == 0));
9704}
9705
9706EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size,
9707 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +00009708 bool IsMemset, bool ZeroMemset,
Lang Hames9929c422011-11-02 22:52:45 +00009709 bool MemcpyStrSrc,
9710 MachineFunction &MF) const {
9711 const Function *F = MF.getFunction();
9712
9713 // See if we can use NEON instructions for this...
Evan Cheng962711e2012-12-12 02:34:41 +00009714 if ((!IsMemset || ZeroMemset) &&
Evan Cheng79e2ca92012-12-10 23:21:26 +00009715 Subtarget->hasNEON() &&
Bill Wendling698e84f2012-12-30 10:32:01 +00009716 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
9717 Attribute::NoImplicitFloat)) {
Evan Cheng79e2ca92012-12-10 23:21:26 +00009718 bool Fast;
Evan Chengc2bd6202012-12-11 02:31:57 +00009719 if (Size >= 16 &&
9720 (memOpAlign(SrcAlign, DstAlign, 16) ||
Matt Arsenault25793a32014-02-05 23:15:53 +00009721 (allowsUnalignedMemoryAccesses(MVT::v2f64, 0, &Fast) && Fast))) {
Evan Cheng79e2ca92012-12-10 23:21:26 +00009722 return MVT::v2f64;
Evan Chengc2bd6202012-12-11 02:31:57 +00009723 } else if (Size >= 8 &&
9724 (memOpAlign(SrcAlign, DstAlign, 8) ||
Matt Arsenault25793a32014-02-05 23:15:53 +00009725 (allowsUnalignedMemoryAccesses(MVT::f64, 0, &Fast) && Fast))) {
Evan Cheng79e2ca92012-12-10 23:21:26 +00009726 return MVT::f64;
Lang Hames9929c422011-11-02 22:52:45 +00009727 }
9728 }
9729
Lang Hamesb85fcd02011-11-08 18:56:23 +00009730 // Lowering to i32/i16 if the size permits.
Evan Chengc2bd6202012-12-11 02:31:57 +00009731 if (Size >= 4)
Lang Hamesb85fcd02011-11-08 18:56:23 +00009732 return MVT::i32;
Evan Chengc2bd6202012-12-11 02:31:57 +00009733 else if (Size >= 2)
Lang Hamesb85fcd02011-11-08 18:56:23 +00009734 return MVT::i16;
Lang Hamesb85fcd02011-11-08 18:56:23 +00009735
Lang Hames9929c422011-11-02 22:52:45 +00009736 // Let the target-independent logic figure it out.
9737 return MVT::Other;
9738}
9739
Evan Cheng9ec512d2012-12-06 19:13:27 +00009740bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
9741 if (Val.getOpcode() != ISD::LOAD)
9742 return false;
9743
9744 EVT VT1 = Val.getValueType();
9745 if (!VT1.isSimple() || !VT1.isInteger() ||
9746 !VT2.isSimple() || !VT2.isInteger())
9747 return false;
9748
9749 switch (VT1.getSimpleVT().SimpleTy) {
9750 default: break;
9751 case MVT::i1:
9752 case MVT::i8:
9753 case MVT::i16:
9754 // 8-bit and 16-bit loads implicitly zero-extend to 32-bits.
9755 return true;
9756 }
9757
9758 return false;
9759}
9760
Tim Northovercc2e9032013-08-06 13:58:03 +00009761bool ARMTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
9762 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
9763 return false;
9764
9765 if (!isTypeLegal(EVT::getEVT(Ty1)))
9766 return false;
9767
9768 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
9769
9770 // Assuming the caller doesn't have a zeroext or signext return parameter,
9771 // truncation all the way down to i1 is valid.
9772 return true;
9773}
9774
9775
Evan Chengdc49a8d2009-08-14 20:09:37 +00009776static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
9777 if (V < 0)
9778 return false;
9779
9780 unsigned Scale = 1;
9781 switch (VT.getSimpleVT().SimpleTy) {
9782 default: return false;
9783 case MVT::i1:
9784 case MVT::i8:
9785 // Scale == 1;
9786 break;
9787 case MVT::i16:
9788 // Scale == 2;
9789 Scale = 2;
9790 break;
9791 case MVT::i32:
9792 // Scale == 4;
9793 Scale = 4;
9794 break;
9795 }
9796
9797 if ((V & (Scale - 1)) != 0)
9798 return false;
9799 V /= Scale;
9800 return V == (V & ((1LL << 5) - 1));
9801}
9802
9803static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
9804 const ARMSubtarget *Subtarget) {
9805 bool isNeg = false;
9806 if (V < 0) {
9807 isNeg = true;
9808 V = - V;
9809 }
9810
9811 switch (VT.getSimpleVT().SimpleTy) {
9812 default: return false;
9813 case MVT::i1:
9814 case MVT::i8:
9815 case MVT::i16:
9816 case MVT::i32:
9817 // + imm12 or - imm8
9818 if (isNeg)
9819 return V == (V & ((1LL << 8) - 1));
9820 return V == (V & ((1LL << 12) - 1));
9821 case MVT::f32:
9822 case MVT::f64:
9823 // Same as ARM mode. FIXME: NEON?
9824 if (!Subtarget->hasVFP2())
9825 return false;
9826 if ((V & 3) != 0)
9827 return false;
9828 V >>= 2;
9829 return V == (V & ((1LL << 8) - 1));
9830 }
9831}
9832
Evan Cheng2150b922007-03-12 23:30:29 +00009833/// isLegalAddressImmediate - Return true if the integer value can be used
9834/// as the offset of the target addressing mode for load / store of the
9835/// given type.
Owen Anderson53aa7a92009-08-10 22:56:29 +00009836static bool isLegalAddressImmediate(int64_t V, EVT VT,
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009837 const ARMSubtarget *Subtarget) {
Evan Cheng507eefa2007-03-13 20:37:59 +00009838 if (V == 0)
9839 return true;
9840
Evan Chengce5dfb62009-03-09 19:15:00 +00009841 if (!VT.isSimple())
9842 return false;
9843
Evan Chengdc49a8d2009-08-14 20:09:37 +00009844 if (Subtarget->isThumb1Only())
9845 return isLegalT1AddressImmediate(V, VT);
9846 else if (Subtarget->isThumb2())
9847 return isLegalT2AddressImmediate(V, VT, Subtarget);
Evan Cheng2150b922007-03-12 23:30:29 +00009848
Evan Chengdc49a8d2009-08-14 20:09:37 +00009849 // ARM mode.
Evan Cheng2150b922007-03-12 23:30:29 +00009850 if (V < 0)
9851 V = - V;
Owen Anderson9f944592009-08-11 20:47:22 +00009852 switch (VT.getSimpleVT().SimpleTy) {
Evan Cheng2150b922007-03-12 23:30:29 +00009853 default: return false;
Owen Anderson9f944592009-08-11 20:47:22 +00009854 case MVT::i1:
9855 case MVT::i8:
9856 case MVT::i32:
Evan Cheng2150b922007-03-12 23:30:29 +00009857 // +- imm12
Anton Korobeynikov40d67c52008-02-20 11:22:39 +00009858 return V == (V & ((1LL << 12) - 1));
Owen Anderson9f944592009-08-11 20:47:22 +00009859 case MVT::i16:
Evan Cheng2150b922007-03-12 23:30:29 +00009860 // +- imm8
Anton Korobeynikov40d67c52008-02-20 11:22:39 +00009861 return V == (V & ((1LL << 8) - 1));
Owen Anderson9f944592009-08-11 20:47:22 +00009862 case MVT::f32:
9863 case MVT::f64:
Evan Chengdc49a8d2009-08-14 20:09:37 +00009864 if (!Subtarget->hasVFP2()) // FIXME: NEON?
Evan Cheng2150b922007-03-12 23:30:29 +00009865 return false;
Evan Chengbef131de2007-05-03 02:00:18 +00009866 if ((V & 3) != 0)
Evan Cheng2150b922007-03-12 23:30:29 +00009867 return false;
9868 V >>= 2;
Anton Korobeynikov40d67c52008-02-20 11:22:39 +00009869 return V == (V & ((1LL << 8) - 1));
Evan Cheng2150b922007-03-12 23:30:29 +00009870 }
Evan Cheng10043e22007-01-19 07:51:42 +00009871}
9872
Evan Chengdc49a8d2009-08-14 20:09:37 +00009873bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
9874 EVT VT) const {
9875 int Scale = AM.Scale;
9876 if (Scale < 0)
9877 return false;
9878
9879 switch (VT.getSimpleVT().SimpleTy) {
9880 default: return false;
9881 case MVT::i1:
9882 case MVT::i8:
9883 case MVT::i16:
9884 case MVT::i32:
9885 if (Scale == 1)
9886 return true;
9887 // r + r << imm
9888 Scale = Scale & ~1;
9889 return Scale == 2 || Scale == 4 || Scale == 8;
9890 case MVT::i64:
9891 // r + r
9892 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
9893 return true;
9894 return false;
9895 case MVT::isVoid:
9896 // Note, we allow "void" uses (basically, uses that aren't loads or
9897 // stores), because arm allows folding a scale into many arithmetic
9898 // operations. This should be made more precise and revisited later.
9899
9900 // Allow r << imm, but the imm has to be a multiple of two.
9901 if (Scale & 1) return false;
9902 return isPowerOf2_32(Scale);
9903 }
9904}
9905
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009906/// isLegalAddressingMode - Return true if the addressing mode represented
9907/// by AM is legal for this target, for a load/store of the specified type.
Bob Wilson7117a912009-03-20 22:42:55 +00009908bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattner229907c2011-07-18 04:54:35 +00009909 Type *Ty) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00009910 EVT VT = getValueType(Ty, true);
Bob Wilson866c1742009-04-08 17:55:28 +00009911 if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
Evan Cheng2150b922007-03-12 23:30:29 +00009912 return false;
Bob Wilson7117a912009-03-20 22:42:55 +00009913
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009914 // Can never fold addr of global into load/store.
Bob Wilson7117a912009-03-20 22:42:55 +00009915 if (AM.BaseGV)
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009916 return false;
Bob Wilson7117a912009-03-20 22:42:55 +00009917
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009918 switch (AM.Scale) {
9919 case 0: // no scale reg, must be "r+i" or "r", or "i".
9920 break;
9921 case 1:
Evan Chengdc49a8d2009-08-14 20:09:37 +00009922 if (Subtarget->isThumb1Only())
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009923 return false;
Chris Lattner502c3f42007-04-13 06:50:55 +00009924 // FALL THROUGH.
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009925 default:
Chris Lattner502c3f42007-04-13 06:50:55 +00009926 // ARM doesn't support any R+R*scale+imm addr modes.
9927 if (AM.BaseOffs)
9928 return false;
Bob Wilson7117a912009-03-20 22:42:55 +00009929
Bob Wilson866c1742009-04-08 17:55:28 +00009930 if (!VT.isSimple())
9931 return false;
9932
Evan Chengdc49a8d2009-08-14 20:09:37 +00009933 if (Subtarget->isThumb2())
9934 return isLegalT2ScaledAddressingMode(AM, VT);
9935
Chris Lattner9b6d69e2007-04-10 03:48:29 +00009936 int Scale = AM.Scale;
Owen Anderson9f944592009-08-11 20:47:22 +00009937 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009938 default: return false;
Owen Anderson9f944592009-08-11 20:47:22 +00009939 case MVT::i1:
9940 case MVT::i8:
9941 case MVT::i32:
Chris Lattner9b6d69e2007-04-10 03:48:29 +00009942 if (Scale < 0) Scale = -Scale;
9943 if (Scale == 1)
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009944 return true;
9945 // r + r << imm
Chris Lattnerfe926e22007-04-11 16:17:12 +00009946 return isPowerOf2_32(Scale & ~1);
Owen Anderson9f944592009-08-11 20:47:22 +00009947 case MVT::i16:
Evan Chengdc49a8d2009-08-14 20:09:37 +00009948 case MVT::i64:
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009949 // r + r
Chris Lattner9b6d69e2007-04-10 03:48:29 +00009950 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009951 return true;
Chris Lattnerfe926e22007-04-11 16:17:12 +00009952 return false;
Bob Wilson7117a912009-03-20 22:42:55 +00009953
Owen Anderson9f944592009-08-11 20:47:22 +00009954 case MVT::isVoid:
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009955 // Note, we allow "void" uses (basically, uses that aren't loads or
9956 // stores), because arm allows folding a scale into many arithmetic
9957 // operations. This should be made more precise and revisited later.
Bob Wilson7117a912009-03-20 22:42:55 +00009958
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009959 // Allow r << imm, but the imm has to be a multiple of two.
Evan Chengdc49a8d2009-08-14 20:09:37 +00009960 if (Scale & 1) return false;
9961 return isPowerOf2_32(Scale);
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009962 }
Evan Cheng2150b922007-03-12 23:30:29 +00009963 }
Chris Lattnerd44e24c2007-04-09 23:33:39 +00009964 return true;
Evan Cheng2150b922007-03-12 23:30:29 +00009965}
9966
Evan Cheng3d3c24a2009-11-11 19:05:52 +00009967/// isLegalICmpImmediate - Return true if the specified immediate is legal
9968/// icmp immediate, that is the target has icmp instructions which can compare
9969/// a register against the immediate without having to materialize the
9970/// immediate into a register.
Evan Cheng15b80e42009-11-12 07:13:11 +00009971bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakob Stoklund Olesen967b86a2012-04-06 17:45:04 +00009972 // Thumb2 and ARM modes can use cmn for negative immediates.
Evan Cheng3d3c24a2009-11-11 19:05:52 +00009973 if (!Subtarget->isThumb())
Chandler Carruth8a102c22012-04-06 20:10:52 +00009974 return ARM_AM::getSOImmVal(llvm::abs64(Imm)) != -1;
Evan Cheng3d3c24a2009-11-11 19:05:52 +00009975 if (Subtarget->isThumb2())
Chandler Carruth8a102c22012-04-06 20:10:52 +00009976 return ARM_AM::getT2SOImmVal(llvm::abs64(Imm)) != -1;
Jakob Stoklund Olesen967b86a2012-04-06 17:45:04 +00009977 // Thumb1 doesn't have cmn, and only 8-bit immediates.
Evan Cheng15b80e42009-11-12 07:13:11 +00009978 return Imm >= 0 && Imm <= 255;
Evan Cheng3d3c24a2009-11-11 19:05:52 +00009979}
9980
Andrew Tricka22cdb72012-07-18 18:34:27 +00009981/// isLegalAddImmediate - Return true if the specified immediate is a legal add
9982/// *or sub* immediate, that is the target has add or sub instructions which can
9983/// add a register with the immediate without having to materialize the
Dan Gohman6136e942011-05-03 00:46:49 +00009984/// immediate into a register.
9985bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const {
Andrew Tricka22cdb72012-07-18 18:34:27 +00009986 // Same encoding for add/sub, just flip the sign.
9987 int64_t AbsImm = llvm::abs64(Imm);
9988 if (!Subtarget->isThumb())
9989 return ARM_AM::getSOImmVal(AbsImm) != -1;
9990 if (Subtarget->isThumb2())
9991 return ARM_AM::getT2SOImmVal(AbsImm) != -1;
9992 // Thumb1 only has 8-bit unsigned immediate.
9993 return AbsImm >= 0 && AbsImm <= 255;
Dan Gohman6136e942011-05-03 00:46:49 +00009994}
9995
Owen Anderson53aa7a92009-08-10 22:56:29 +00009996static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
Evan Cheng84c6cda2009-07-02 07:28:31 +00009997 bool isSEXTLoad, SDValue &Base,
9998 SDValue &Offset, bool &isInc,
9999 SelectionDAG &DAG) {
Evan Cheng10043e22007-01-19 07:51:42 +000010000 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
10001 return false;
10002
Owen Anderson9f944592009-08-11 20:47:22 +000010003 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
Evan Cheng10043e22007-01-19 07:51:42 +000010004 // AddressingMode 3
10005 Base = Ptr->getOperand(0);
10006 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +000010007 int RHSC = (int)RHS->getZExtValue();
Evan Cheng10043e22007-01-19 07:51:42 +000010008 if (RHSC < 0 && RHSC > -256) {
Evan Cheng84c6cda2009-07-02 07:28:31 +000010009 assert(Ptr->getOpcode() == ISD::ADD);
Evan Cheng10043e22007-01-19 07:51:42 +000010010 isInc = false;
10011 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10012 return true;
10013 }
10014 }
10015 isInc = (Ptr->getOpcode() == ISD::ADD);
10016 Offset = Ptr->getOperand(1);
10017 return true;
Owen Anderson9f944592009-08-11 20:47:22 +000010018 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
Evan Cheng10043e22007-01-19 07:51:42 +000010019 // AddressingMode 2
10020 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +000010021 int RHSC = (int)RHS->getZExtValue();
Evan Cheng10043e22007-01-19 07:51:42 +000010022 if (RHSC < 0 && RHSC > -0x1000) {
Evan Cheng84c6cda2009-07-02 07:28:31 +000010023 assert(Ptr->getOpcode() == ISD::ADD);
Evan Cheng10043e22007-01-19 07:51:42 +000010024 isInc = false;
10025 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10026 Base = Ptr->getOperand(0);
10027 return true;
10028 }
10029 }
10030
10031 if (Ptr->getOpcode() == ISD::ADD) {
10032 isInc = true;
Evan Chenga20cde32011-07-20 23:34:39 +000010033 ARM_AM::ShiftOpc ShOpcVal=
10034 ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode());
Evan Cheng10043e22007-01-19 07:51:42 +000010035 if (ShOpcVal != ARM_AM::no_shift) {
10036 Base = Ptr->getOperand(1);
10037 Offset = Ptr->getOperand(0);
10038 } else {
10039 Base = Ptr->getOperand(0);
10040 Offset = Ptr->getOperand(1);
10041 }
10042 return true;
10043 }
10044
10045 isInc = (Ptr->getOpcode() == ISD::ADD);
10046 Base = Ptr->getOperand(0);
10047 Offset = Ptr->getOperand(1);
10048 return true;
10049 }
10050
Jim Grosbachd7cf55c2009-11-09 00:11:35 +000010051 // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
Evan Cheng10043e22007-01-19 07:51:42 +000010052 return false;
10053}
10054
Owen Anderson53aa7a92009-08-10 22:56:29 +000010055static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
Evan Cheng84c6cda2009-07-02 07:28:31 +000010056 bool isSEXTLoad, SDValue &Base,
10057 SDValue &Offset, bool &isInc,
10058 SelectionDAG &DAG) {
10059 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
10060 return false;
10061
10062 Base = Ptr->getOperand(0);
10063 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10064 int RHSC = (int)RHS->getZExtValue();
10065 if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
10066 assert(Ptr->getOpcode() == ISD::ADD);
10067 isInc = false;
10068 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10069 return true;
10070 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
10071 isInc = Ptr->getOpcode() == ISD::ADD;
10072 Offset = DAG.getConstant(RHSC, RHS->getValueType(0));
10073 return true;
10074 }
10075 }
10076
10077 return false;
10078}
10079
Evan Cheng10043e22007-01-19 07:51:42 +000010080/// getPreIndexedAddressParts - returns true by value, base pointer and
10081/// offset pointer and addressing mode by reference if the node's address
10082/// can be legally represented as pre-indexed load / store address.
10083bool
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010084ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
10085 SDValue &Offset,
Evan Cheng10043e22007-01-19 07:51:42 +000010086 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +000010087 SelectionDAG &DAG) const {
Evan Cheng84c6cda2009-07-02 07:28:31 +000010088 if (Subtarget->isThumb1Only())
Evan Cheng10043e22007-01-19 07:51:42 +000010089 return false;
10090
Owen Anderson53aa7a92009-08-10 22:56:29 +000010091 EVT VT;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010092 SDValue Ptr;
Evan Cheng10043e22007-01-19 07:51:42 +000010093 bool isSEXTLoad = false;
10094 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10095 Ptr = LD->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +000010096 VT = LD->getMemoryVT();
Evan Cheng10043e22007-01-19 07:51:42 +000010097 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
10098 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10099 Ptr = ST->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +000010100 VT = ST->getMemoryVT();
Evan Cheng10043e22007-01-19 07:51:42 +000010101 } else
10102 return false;
10103
10104 bool isInc;
Evan Cheng84c6cda2009-07-02 07:28:31 +000010105 bool isLegal = false;
Evan Chengdc49a8d2009-08-14 20:09:37 +000010106 if (Subtarget->isThumb2())
Evan Cheng84c6cda2009-07-02 07:28:31 +000010107 isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
10108 Offset, isInc, DAG);
Jim Grosbachf24f9d92009-08-11 15:33:49 +000010109 else
Evan Cheng84c6cda2009-07-02 07:28:31 +000010110 isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
Evan Cheng844f0b42009-07-02 06:44:30 +000010111 Offset, isInc, DAG);
Evan Cheng84c6cda2009-07-02 07:28:31 +000010112 if (!isLegal)
10113 return false;
10114
10115 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
10116 return true;
Evan Cheng10043e22007-01-19 07:51:42 +000010117}
10118
10119/// getPostIndexedAddressParts - returns true by value, base pointer and
10120/// offset pointer and addressing mode by reference if this node can be
10121/// combined with a load / store to form a post-indexed load / store.
10122bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010123 SDValue &Base,
10124 SDValue &Offset,
Evan Cheng10043e22007-01-19 07:51:42 +000010125 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +000010126 SelectionDAG &DAG) const {
Evan Cheng84c6cda2009-07-02 07:28:31 +000010127 if (Subtarget->isThumb1Only())
Evan Cheng10043e22007-01-19 07:51:42 +000010128 return false;
10129
Owen Anderson53aa7a92009-08-10 22:56:29 +000010130 EVT VT;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010131 SDValue Ptr;
Evan Cheng10043e22007-01-19 07:51:42 +000010132 bool isSEXTLoad = false;
10133 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Dan Gohman47a7d6f2008-01-30 00:15:11 +000010134 VT = LD->getMemoryVT();
Evan Chengf19384d2010-05-18 21:31:17 +000010135 Ptr = LD->getBasePtr();
Evan Cheng10043e22007-01-19 07:51:42 +000010136 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
10137 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Dan Gohman47a7d6f2008-01-30 00:15:11 +000010138 VT = ST->getMemoryVT();
Evan Chengf19384d2010-05-18 21:31:17 +000010139 Ptr = ST->getBasePtr();
Evan Cheng10043e22007-01-19 07:51:42 +000010140 } else
10141 return false;
10142
10143 bool isInc;
Evan Cheng84c6cda2009-07-02 07:28:31 +000010144 bool isLegal = false;
Evan Chengdc49a8d2009-08-14 20:09:37 +000010145 if (Subtarget->isThumb2())
Evan Cheng84c6cda2009-07-02 07:28:31 +000010146 isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
Evan Chengf19384d2010-05-18 21:31:17 +000010147 isInc, DAG);
Jim Grosbachf24f9d92009-08-11 15:33:49 +000010148 else
Evan Cheng84c6cda2009-07-02 07:28:31 +000010149 isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
10150 isInc, DAG);
10151 if (!isLegal)
10152 return false;
10153
Evan Chengf19384d2010-05-18 21:31:17 +000010154 if (Ptr != Base) {
10155 // Swap base ptr and offset to catch more post-index load / store when
10156 // it's legal. In Thumb2 mode, offset must be an immediate.
10157 if (Ptr == Offset && Op->getOpcode() == ISD::ADD &&
10158 !Subtarget->isThumb2())
10159 std::swap(Base, Offset);
10160
10161 // Post-indexed load / store update the base pointer.
10162 if (Ptr != Base)
10163 return false;
10164 }
10165
Evan Cheng84c6cda2009-07-02 07:28:31 +000010166 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
10167 return true;
Evan Cheng10043e22007-01-19 07:51:42 +000010168}
10169
Jay Foada0653a32014-05-14 21:14:37 +000010170void ARMTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
10171 APInt &KnownZero,
10172 APInt &KnownOne,
10173 const SelectionDAG &DAG,
10174 unsigned Depth) const {
Michael Gottesman696e44e2013-06-18 20:49:45 +000010175 unsigned BitWidth = KnownOne.getBitWidth();
10176 KnownZero = KnownOne = APInt(BitWidth, 0);
Evan Cheng10043e22007-01-19 07:51:42 +000010177 switch (Op.getOpcode()) {
10178 default: break;
Michael Gottesman696e44e2013-06-18 20:49:45 +000010179 case ARMISD::ADDC:
10180 case ARMISD::ADDE:
10181 case ARMISD::SUBC:
10182 case ARMISD::SUBE:
10183 // These nodes' second result is a boolean
10184 if (Op.getResNo() == 0)
10185 break;
10186 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
10187 break;
Evan Cheng10043e22007-01-19 07:51:42 +000010188 case ARMISD::CMOV: {
10189 // Bits are known zero/one if known on the LHS and RHS.
Jay Foada0653a32014-05-14 21:14:37 +000010190 DAG.computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Evan Cheng10043e22007-01-19 07:51:42 +000010191 if (KnownZero == 0 && KnownOne == 0) return;
10192
Dan Gohmanf990faf2008-02-13 00:35:47 +000010193 APInt KnownZeroRHS, KnownOneRHS;
Jay Foada0653a32014-05-14 21:14:37 +000010194 DAG.computeKnownBits(Op.getOperand(1), KnownZeroRHS, KnownOneRHS, Depth+1);
Evan Cheng10043e22007-01-19 07:51:42 +000010195 KnownZero &= KnownZeroRHS;
10196 KnownOne &= KnownOneRHS;
10197 return;
10198 }
Tim Northover01b4aa92014-04-03 15:10:35 +000010199 case ISD::INTRINSIC_W_CHAIN: {
10200 ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
10201 Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
10202 switch (IntID) {
10203 default: return;
10204 case Intrinsic::arm_ldaex:
10205 case Intrinsic::arm_ldrex: {
10206 EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
10207 unsigned MemBits = VT.getScalarType().getSizeInBits();
10208 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
10209 return;
10210 }
10211 }
10212 }
Evan Cheng10043e22007-01-19 07:51:42 +000010213 }
10214}
10215
10216//===----------------------------------------------------------------------===//
10217// ARM Inline Assembly Support
10218//===----------------------------------------------------------------------===//
10219
Evan Cheng078b0b02011-01-08 01:24:27 +000010220bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const {
10221 // Looking for "rev" which is V6+.
10222 if (!Subtarget->hasV6Ops())
10223 return false;
10224
10225 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
10226 std::string AsmStr = IA->getAsmString();
10227 SmallVector<StringRef, 4> AsmPieces;
10228 SplitString(AsmStr, AsmPieces, ";\n");
10229
10230 switch (AsmPieces.size()) {
10231 default: return false;
10232 case 1:
10233 AsmStr = AsmPieces[0];
10234 AsmPieces.clear();
10235 SplitString(AsmStr, AsmPieces, " \t,");
10236
10237 // rev $0, $1
10238 if (AsmPieces.size() == 3 &&
10239 AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" &&
10240 IA->getConstraintString().compare(0, 4, "=l,l") == 0) {
Chris Lattner229907c2011-07-18 04:54:35 +000010241 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng078b0b02011-01-08 01:24:27 +000010242 if (Ty && Ty->getBitWidth() == 32)
10243 return IntrinsicLowering::LowerToByteSwap(CI);
10244 }
10245 break;
10246 }
10247
10248 return false;
10249}
10250
Evan Cheng10043e22007-01-19 07:51:42 +000010251/// getConstraintType - Given a constraint letter, return the type of
10252/// constraint it is for this target.
10253ARMTargetLowering::ConstraintType
Chris Lattnerd6855142007-03-25 02:14:49 +000010254ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
10255 if (Constraint.size() == 1) {
10256 switch (Constraint[0]) {
10257 default: break;
10258 case 'l': return C_RegisterClass;
Chris Lattner6223e832007-04-02 17:24:08 +000010259 case 'w': return C_RegisterClass;
Eric Christopherf45daac2011-06-30 23:23:01 +000010260 case 'h': return C_RegisterClass;
Eric Christopherf1c74592011-07-01 00:14:47 +000010261 case 'x': return C_RegisterClass;
Eric Christopherc011d312011-07-01 00:30:46 +000010262 case 't': return C_RegisterClass;
Eric Christopher29f1db82011-07-01 01:00:07 +000010263 case 'j': return C_Other; // Constant for movw.
Eric Christopheraa503002011-07-29 21:18:58 +000010264 // An address with a single base register. Due to the way we
10265 // currently handle addresses it is the same as an 'r' memory constraint.
10266 case 'Q': return C_Memory;
Chris Lattnerd6855142007-03-25 02:14:49 +000010267 }
Eric Christophere256cd02011-06-21 22:10:57 +000010268 } else if (Constraint.size() == 2) {
10269 switch (Constraint[0]) {
10270 default: break;
10271 // All 'U+' constraints are addresses.
10272 case 'U': return C_Memory;
10273 }
Evan Cheng10043e22007-01-19 07:51:42 +000010274 }
Chris Lattnerd6855142007-03-25 02:14:49 +000010275 return TargetLowering::getConstraintType(Constraint);
Evan Cheng10043e22007-01-19 07:51:42 +000010276}
10277
John Thompsone8360b72010-10-29 17:29:13 +000010278/// Examine constraint type and operand type and determine a weight value.
10279/// This object must already have been set up with the operand type
10280/// and the current alternative constraint selected.
10281TargetLowering::ConstraintWeight
10282ARMTargetLowering::getSingleConstraintMatchWeight(
10283 AsmOperandInfo &info, const char *constraint) const {
10284 ConstraintWeight weight = CW_Invalid;
10285 Value *CallOperandVal = info.CallOperandVal;
10286 // If we don't have a value, we can't do a match,
10287 // but allow it at the lowest weight.
Craig Topper062a2ba2014-04-25 05:30:21 +000010288 if (!CallOperandVal)
John Thompsone8360b72010-10-29 17:29:13 +000010289 return CW_Default;
Chris Lattner229907c2011-07-18 04:54:35 +000010290 Type *type = CallOperandVal->getType();
John Thompsone8360b72010-10-29 17:29:13 +000010291 // Look at the constraint type.
10292 switch (*constraint) {
10293 default:
10294 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
10295 break;
10296 case 'l':
10297 if (type->isIntegerTy()) {
10298 if (Subtarget->isThumb())
10299 weight = CW_SpecificReg;
10300 else
10301 weight = CW_Register;
10302 }
10303 break;
10304 case 'w':
10305 if (type->isFloatingPointTy())
10306 weight = CW_Register;
10307 break;
10308 }
10309 return weight;
10310}
10311
Eric Christophercf2007c2011-06-30 23:50:52 +000010312typedef std::pair<unsigned, const TargetRegisterClass*> RCPair;
10313RCPair
Evan Cheng10043e22007-01-19 07:51:42 +000010314ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier295bd432013-06-22 18:37:38 +000010315 MVT VT) const {
Evan Cheng10043e22007-01-19 07:51:42 +000010316 if (Constraint.size() == 1) {
Jakob Stoklund Olesen0ca14e42010-01-14 18:19:56 +000010317 // GCC ARM Constraint Letters
Evan Cheng10043e22007-01-19 07:51:42 +000010318 switch (Constraint[0]) {
Eric Christopherf45daac2011-06-30 23:23:01 +000010319 case 'l': // Low regs or general regs.
Jakob Stoklund Olesen0ca14e42010-01-14 18:19:56 +000010320 if (Subtarget->isThumb())
Craig Topperc7242e02012-04-20 07:30:17 +000010321 return RCPair(0U, &ARM::tGPRRegClass);
10322 return RCPair(0U, &ARM::GPRRegClass);
Eric Christopherf45daac2011-06-30 23:23:01 +000010323 case 'h': // High regs or no regs.
10324 if (Subtarget->isThumb())
Craig Topperc7242e02012-04-20 07:30:17 +000010325 return RCPair(0U, &ARM::hGPRRegClass);
Eric Christopherf09b0f12011-07-01 00:19:27 +000010326 break;
Chris Lattner6223e832007-04-02 17:24:08 +000010327 case 'r':
Craig Topperc7242e02012-04-20 07:30:17 +000010328 return RCPair(0U, &ARM::GPRRegClass);
Chris Lattner6223e832007-04-02 17:24:08 +000010329 case 'w':
Tim Northover28adfbb2013-11-14 17:15:39 +000010330 if (VT == MVT::Other)
10331 break;
Owen Anderson9f944592009-08-11 20:47:22 +000010332 if (VT == MVT::f32)
Craig Topperc7242e02012-04-20 07:30:17 +000010333 return RCPair(0U, &ARM::SPRRegClass);
Bob Wilson3152b0472009-12-18 01:03:29 +000010334 if (VT.getSizeInBits() == 64)
Craig Topperc7242e02012-04-20 07:30:17 +000010335 return RCPair(0U, &ARM::DPRRegClass);
Evan Cheng0c2544f2009-12-08 23:06:22 +000010336 if (VT.getSizeInBits() == 128)
Craig Topperc7242e02012-04-20 07:30:17 +000010337 return RCPair(0U, &ARM::QPRRegClass);
Chris Lattner6223e832007-04-02 17:24:08 +000010338 break;
Eric Christopherf1c74592011-07-01 00:14:47 +000010339 case 'x':
Tim Northover28adfbb2013-11-14 17:15:39 +000010340 if (VT == MVT::Other)
10341 break;
Eric Christopherf1c74592011-07-01 00:14:47 +000010342 if (VT == MVT::f32)
Craig Topperc7242e02012-04-20 07:30:17 +000010343 return RCPair(0U, &ARM::SPR_8RegClass);
Eric Christopherf1c74592011-07-01 00:14:47 +000010344 if (VT.getSizeInBits() == 64)
Craig Topperc7242e02012-04-20 07:30:17 +000010345 return RCPair(0U, &ARM::DPR_8RegClass);
Eric Christopherf1c74592011-07-01 00:14:47 +000010346 if (VT.getSizeInBits() == 128)
Craig Topperc7242e02012-04-20 07:30:17 +000010347 return RCPair(0U, &ARM::QPR_8RegClass);
Eric Christopherf1c74592011-07-01 00:14:47 +000010348 break;
Eric Christopherc011d312011-07-01 00:30:46 +000010349 case 't':
10350 if (VT == MVT::f32)
Craig Topperc7242e02012-04-20 07:30:17 +000010351 return RCPair(0U, &ARM::SPRRegClass);
Eric Christopherc011d312011-07-01 00:30:46 +000010352 break;
Evan Cheng10043e22007-01-19 07:51:42 +000010353 }
10354 }
Bob Wilson3f2293b2010-03-15 23:09:18 +000010355 if (StringRef("{cc}").equals_lower(Constraint))
Craig Topperc7242e02012-04-20 07:30:17 +000010356 return std::make_pair(unsigned(ARM::CPSR), &ARM::CCRRegClass);
Bob Wilson3f2293b2010-03-15 23:09:18 +000010357
Evan Cheng10043e22007-01-19 07:51:42 +000010358 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
10359}
10360
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010361/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
10362/// vector. If it is invalid, don't add anything to Ops.
10363void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopherde9399b2011-06-02 23:16:42 +000010364 std::string &Constraint,
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010365 std::vector<SDValue>&Ops,
10366 SelectionDAG &DAG) const {
Craig Topper062a2ba2014-04-25 05:30:21 +000010367 SDValue Result;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010368
Eric Christopherde9399b2011-06-02 23:16:42 +000010369 // Currently only support length 1 constraints.
10370 if (Constraint.length() != 1) return;
Eric Christopher0713a9d2011-06-08 23:55:35 +000010371
Eric Christopherde9399b2011-06-02 23:16:42 +000010372 char ConstraintLetter = Constraint[0];
10373 switch (ConstraintLetter) {
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010374 default: break;
Eric Christopher29f1db82011-07-01 01:00:07 +000010375 case 'j':
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010376 case 'I': case 'J': case 'K': case 'L':
10377 case 'M': case 'N': case 'O':
10378 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
10379 if (!C)
10380 return;
10381
10382 int64_t CVal64 = C->getSExtValue();
10383 int CVal = (int) CVal64;
10384 // None of these constraints allow values larger than 32 bits. Check
10385 // that the value fits in an int.
10386 if (CVal != CVal64)
10387 return;
10388
Eric Christopherde9399b2011-06-02 23:16:42 +000010389 switch (ConstraintLetter) {
Eric Christopher29f1db82011-07-01 01:00:07 +000010390 case 'j':
Andrew Trick53df4b62011-09-20 03:06:13 +000010391 // Constant suitable for movw, must be between 0 and
10392 // 65535.
10393 if (Subtarget->hasV6T2Ops())
10394 if (CVal >= 0 && CVal <= 65535)
10395 break;
10396 return;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010397 case 'I':
David Goodwin22c2fba2009-07-08 23:10:31 +000010398 if (Subtarget->isThumb1Only()) {
10399 // This must be a constant between 0 and 255, for ADD
10400 // immediates.
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010401 if (CVal >= 0 && CVal <= 255)
10402 break;
David Goodwin22c2fba2009-07-08 23:10:31 +000010403 } else if (Subtarget->isThumb2()) {
10404 // A constant that can be used as an immediate value in a
10405 // data-processing instruction.
10406 if (ARM_AM::getT2SOImmVal(CVal) != -1)
10407 break;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010408 } else {
10409 // A constant that can be used as an immediate value in a
10410 // data-processing instruction.
10411 if (ARM_AM::getSOImmVal(CVal) != -1)
10412 break;
10413 }
10414 return;
10415
10416 case 'J':
David Goodwin22c2fba2009-07-08 23:10:31 +000010417 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010418 // This must be a constant between -255 and -1, for negated ADD
10419 // immediates. This can be used in GCC with an "n" modifier that
10420 // prints the negated value, for use with SUB instructions. It is
10421 // not useful otherwise but is implemented for compatibility.
10422 if (CVal >= -255 && CVal <= -1)
10423 break;
10424 } else {
10425 // This must be a constant between -4095 and 4095. It is not clear
10426 // what this constraint is intended for. Implemented for
10427 // compatibility with GCC.
10428 if (CVal >= -4095 && CVal <= 4095)
10429 break;
10430 }
10431 return;
10432
10433 case 'K':
David Goodwin22c2fba2009-07-08 23:10:31 +000010434 if (Subtarget->isThumb1Only()) {
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010435 // A 32-bit value where only one byte has a nonzero value. Exclude
10436 // zero to match GCC. This constraint is used by GCC internally for
10437 // constants that can be loaded with a move/shift combination.
10438 // It is not useful otherwise but is implemented for compatibility.
10439 if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
10440 break;
David Goodwin22c2fba2009-07-08 23:10:31 +000010441 } else if (Subtarget->isThumb2()) {
10442 // A constant whose bitwise inverse can be used as an immediate
10443 // value in a data-processing instruction. This can be used in GCC
10444 // with a "B" modifier that prints the inverted value, for use with
10445 // BIC and MVN instructions. It is not useful otherwise but is
10446 // implemented for compatibility.
10447 if (ARM_AM::getT2SOImmVal(~CVal) != -1)
10448 break;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010449 } else {
10450 // A constant whose bitwise inverse can be used as an immediate
10451 // value in a data-processing instruction. This can be used in GCC
10452 // with a "B" modifier that prints the inverted value, for use with
10453 // BIC and MVN instructions. It is not useful otherwise but is
10454 // implemented for compatibility.
10455 if (ARM_AM::getSOImmVal(~CVal) != -1)
10456 break;
10457 }
10458 return;
10459
10460 case 'L':
David Goodwin22c2fba2009-07-08 23:10:31 +000010461 if (Subtarget->isThumb1Only()) {
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010462 // This must be a constant between -7 and 7,
10463 // for 3-operand ADD/SUB immediate instructions.
10464 if (CVal >= -7 && CVal < 7)
10465 break;
David Goodwin22c2fba2009-07-08 23:10:31 +000010466 } else if (Subtarget->isThumb2()) {
10467 // A constant whose negation can be used as an immediate value in a
10468 // data-processing instruction. This can be used in GCC with an "n"
10469 // modifier that prints the negated value, for use with SUB
10470 // instructions. It is not useful otherwise but is implemented for
10471 // compatibility.
10472 if (ARM_AM::getT2SOImmVal(-CVal) != -1)
10473 break;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010474 } else {
10475 // A constant whose negation can be used as an immediate value in a
10476 // data-processing instruction. This can be used in GCC with an "n"
10477 // modifier that prints the negated value, for use with SUB
10478 // instructions. It is not useful otherwise but is implemented for
10479 // compatibility.
10480 if (ARM_AM::getSOImmVal(-CVal) != -1)
10481 break;
10482 }
10483 return;
10484
10485 case 'M':
David Goodwin22c2fba2009-07-08 23:10:31 +000010486 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010487 // This must be a multiple of 4 between 0 and 1020, for
10488 // ADD sp + immediate.
10489 if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
10490 break;
10491 } else {
10492 // A power of two or a constant between 0 and 32. This is used in
10493 // GCC for the shift amount on shifted register operands, but it is
10494 // useful in general for any shift amounts.
10495 if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
10496 break;
10497 }
10498 return;
10499
10500 case 'N':
David Goodwin22c2fba2009-07-08 23:10:31 +000010501 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010502 // This must be a constant between 0 and 31, for shift amounts.
10503 if (CVal >= 0 && CVal <= 31)
10504 break;
10505 }
10506 return;
10507
10508 case 'O':
David Goodwin22c2fba2009-07-08 23:10:31 +000010509 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010510 // This must be a multiple of 4 between -508 and 508, for
10511 // ADD/SUB sp = sp + immediate.
10512 if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
10513 break;
10514 }
10515 return;
10516 }
10517 Result = DAG.getTargetConstant(CVal, Op.getValueType());
10518 break;
10519 }
10520
10521 if (Result.getNode()) {
10522 Ops.push_back(Result);
10523 return;
10524 }
Dale Johannesence97d552010-06-25 21:55:36 +000010525 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000010526}
Anton Korobeynikov29a44df2009-09-23 19:04:09 +000010527
Renato Golin87610692013-07-16 09:32:17 +000010528SDValue ARMTargetLowering::LowerDivRem(SDValue Op, SelectionDAG &DAG) const {
10529 assert(Subtarget->isTargetAEABI() && "Register-based DivRem lowering only");
10530 unsigned Opcode = Op->getOpcode();
10531 assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) &&
10532 "Invalid opcode for Div/Rem lowering");
10533 bool isSigned = (Opcode == ISD::SDIVREM);
10534 EVT VT = Op->getValueType(0);
10535 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
10536
10537 RTLIB::Libcall LC;
10538 switch (VT.getSimpleVT().SimpleTy) {
10539 default: llvm_unreachable("Unexpected request for libcall!");
10540 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
10541 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
10542 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
10543 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
10544 }
10545
10546 SDValue InChain = DAG.getEntryNode();
10547
10548 TargetLowering::ArgListTy Args;
10549 TargetLowering::ArgListEntry Entry;
10550 for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
10551 EVT ArgVT = Op->getOperand(i).getValueType();
10552 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10553 Entry.Node = Op->getOperand(i);
10554 Entry.Ty = ArgTy;
10555 Entry.isSExt = isSigned;
10556 Entry.isZExt = !isSigned;
10557 Args.push_back(Entry);
10558 }
10559
10560 SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
10561 getPointerTy());
10562
10563 Type *RetTy = (Type*)StructType::get(Ty, Ty, NULL);
10564
10565 SDLoc dl(Op);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +000010566 TargetLowering::CallLoweringInfo CLI(DAG);
10567 CLI.setDebugLoc(dl).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +000010568 .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +000010569 .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
Renato Golin87610692013-07-16 09:32:17 +000010570
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +000010571 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
Renato Golin87610692013-07-16 09:32:17 +000010572 return CallInfo.first;
10573}
10574
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +000010575SDValue
10576ARMTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const {
10577 assert(Subtarget->isTargetWindows() && "unsupported target platform");
10578 SDLoc DL(Op);
10579
10580 // Get the inputs.
10581 SDValue Chain = Op.getOperand(0);
10582 SDValue Size = Op.getOperand(1);
10583
10584 SDValue Words = DAG.getNode(ISD::SRL, DL, MVT::i32, Size,
10585 DAG.getConstant(2, MVT::i32));
10586
10587 SDValue Flag;
10588 Chain = DAG.getCopyToReg(Chain, DL, ARM::R4, Words, Flag);
10589 Flag = Chain.getValue(1);
10590
10591 SDVTList NodeTys = DAG.getVTList(MVT::i32, MVT::Glue);
10592 Chain = DAG.getNode(ARMISD::WIN__CHKSTK, DL, NodeTys, Chain, Flag);
10593
10594 SDValue NewSP = DAG.getCopyFromReg(Chain, DL, ARM::SP, MVT::i32);
10595 Chain = NewSP.getValue(1);
10596
10597 SDValue Ops[2] = { NewSP, Chain };
10598 return DAG.getMergeValues(Ops, DL);
10599}
10600
Anton Korobeynikov29a44df2009-09-23 19:04:09 +000010601bool
10602ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
10603 // The ARM target isn't yet aware of offsets.
10604 return false;
10605}
Evan Cheng4a609f3c2009-10-28 01:44:26 +000010606
Jim Grosbach11013ed2010-07-16 23:05:05 +000010607bool ARM::isBitFieldInvertedMask(unsigned v) {
10608 if (v == 0xffffffff)
Benjamin Kramer8bad66e2013-05-19 22:01:57 +000010609 return false;
10610
Jim Grosbach11013ed2010-07-16 23:05:05 +000010611 // there can be 1's on either or both "outsides", all the "inside"
10612 // bits must be 0's
Benjamin Kramer8bad66e2013-05-19 22:01:57 +000010613 unsigned TO = CountTrailingOnes_32(v);
10614 unsigned LO = CountLeadingOnes_32(v);
10615 v = (v >> TO) << TO;
10616 v = (v << LO) >> LO;
10617 return v == 0;
Jim Grosbach11013ed2010-07-16 23:05:05 +000010618}
10619
Evan Cheng4a609f3c2009-10-28 01:44:26 +000010620/// isFPImmLegal - Returns true if the target can instruction select the
10621/// specified FP immediate natively. If false, the legalizer will
10622/// materialize the FP immediate as a load from a constant pool.
10623bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
10624 if (!Subtarget->hasVFP3())
10625 return false;
10626 if (VT == MVT::f32)
Jim Grosbachefc761a2011-09-30 00:50:06 +000010627 return ARM_AM::getFP32Imm(Imm) != -1;
Evan Cheng4a609f3c2009-10-28 01:44:26 +000010628 if (VT == MVT::f64)
Jim Grosbachefc761a2011-09-30 00:50:06 +000010629 return ARM_AM::getFP64Imm(Imm) != -1;
Evan Cheng4a609f3c2009-10-28 01:44:26 +000010630 return false;
10631}
Bob Wilson5549d492010-09-21 17:56:22 +000010632
Wesley Peck527da1b2010-11-23 03:31:01 +000010633/// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
Bob Wilson5549d492010-09-21 17:56:22 +000010634/// MemIntrinsicNodes. The associated MachineMemOperands record the alignment
10635/// specified in the intrinsic calls.
10636bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
10637 const CallInst &I,
10638 unsigned Intrinsic) const {
10639 switch (Intrinsic) {
10640 case Intrinsic::arm_neon_vld1:
10641 case Intrinsic::arm_neon_vld2:
10642 case Intrinsic::arm_neon_vld3:
10643 case Intrinsic::arm_neon_vld4:
10644 case Intrinsic::arm_neon_vld2lane:
10645 case Intrinsic::arm_neon_vld3lane:
10646 case Intrinsic::arm_neon_vld4lane: {
10647 Info.opc = ISD::INTRINSIC_W_CHAIN;
10648 // Conservatively set memVT to the entire set of vectors loaded.
Micah Villmowcdfe20b2012-10-08 16:38:25 +000010649 uint64_t NumElts = getDataLayout()->getTypeAllocSize(I.getType()) / 8;
Bob Wilson5549d492010-09-21 17:56:22 +000010650 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
10651 Info.ptrVal = I.getArgOperand(0);
10652 Info.offset = 0;
10653 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
10654 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
10655 Info.vol = false; // volatile loads with NEON intrinsics not supported
10656 Info.readMem = true;
10657 Info.writeMem = false;
10658 return true;
10659 }
10660 case Intrinsic::arm_neon_vst1:
10661 case Intrinsic::arm_neon_vst2:
10662 case Intrinsic::arm_neon_vst3:
10663 case Intrinsic::arm_neon_vst4:
10664 case Intrinsic::arm_neon_vst2lane:
10665 case Intrinsic::arm_neon_vst3lane:
10666 case Intrinsic::arm_neon_vst4lane: {
10667 Info.opc = ISD::INTRINSIC_VOID;
10668 // Conservatively set memVT to the entire set of vectors stored.
10669 unsigned NumElts = 0;
10670 for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
Chris Lattner229907c2011-07-18 04:54:35 +000010671 Type *ArgTy = I.getArgOperand(ArgI)->getType();
Bob Wilson5549d492010-09-21 17:56:22 +000010672 if (!ArgTy->isVectorTy())
10673 break;
Micah Villmowcdfe20b2012-10-08 16:38:25 +000010674 NumElts += getDataLayout()->getTypeAllocSize(ArgTy) / 8;
Bob Wilson5549d492010-09-21 17:56:22 +000010675 }
10676 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
10677 Info.ptrVal = I.getArgOperand(0);
10678 Info.offset = 0;
10679 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
10680 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
10681 Info.vol = false; // volatile stores with NEON intrinsics not supported
10682 Info.readMem = false;
10683 Info.writeMem = true;
10684 return true;
10685 }
Tim Northover1ff5f292014-03-26 14:39:31 +000010686 case Intrinsic::arm_ldaex:
Tim Northovera7ecd242013-07-16 09:46:55 +000010687 case Intrinsic::arm_ldrex: {
10688 PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
10689 Info.opc = ISD::INTRINSIC_W_CHAIN;
10690 Info.memVT = MVT::getVT(PtrTy->getElementType());
10691 Info.ptrVal = I.getArgOperand(0);
10692 Info.offset = 0;
10693 Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
10694 Info.vol = true;
10695 Info.readMem = true;
10696 Info.writeMem = false;
10697 return true;
10698 }
Tim Northover1ff5f292014-03-26 14:39:31 +000010699 case Intrinsic::arm_stlex:
Tim Northovera7ecd242013-07-16 09:46:55 +000010700 case Intrinsic::arm_strex: {
10701 PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
10702 Info.opc = ISD::INTRINSIC_W_CHAIN;
10703 Info.memVT = MVT::getVT(PtrTy->getElementType());
10704 Info.ptrVal = I.getArgOperand(1);
10705 Info.offset = 0;
10706 Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
10707 Info.vol = true;
10708 Info.readMem = false;
10709 Info.writeMem = true;
10710 return true;
10711 }
Tim Northover1ff5f292014-03-26 14:39:31 +000010712 case Intrinsic::arm_stlexd:
Bruno Cardoso Lopes325110f2011-05-28 04:07:29 +000010713 case Intrinsic::arm_strexd: {
10714 Info.opc = ISD::INTRINSIC_W_CHAIN;
10715 Info.memVT = MVT::i64;
10716 Info.ptrVal = I.getArgOperand(2);
10717 Info.offset = 0;
10718 Info.align = 8;
Bruno Cardoso Lopesd66ab9e2011-06-16 18:11:32 +000010719 Info.vol = true;
Bruno Cardoso Lopes325110f2011-05-28 04:07:29 +000010720 Info.readMem = false;
10721 Info.writeMem = true;
10722 return true;
10723 }
Tim Northover1ff5f292014-03-26 14:39:31 +000010724 case Intrinsic::arm_ldaexd:
Bruno Cardoso Lopes325110f2011-05-28 04:07:29 +000010725 case Intrinsic::arm_ldrexd: {
10726 Info.opc = ISD::INTRINSIC_W_CHAIN;
10727 Info.memVT = MVT::i64;
10728 Info.ptrVal = I.getArgOperand(0);
10729 Info.offset = 0;
10730 Info.align = 8;
Bruno Cardoso Lopesd66ab9e2011-06-16 18:11:32 +000010731 Info.vol = true;
Bruno Cardoso Lopes325110f2011-05-28 04:07:29 +000010732 Info.readMem = true;
10733 Info.writeMem = false;
10734 return true;
10735 }
Bob Wilson5549d492010-09-21 17:56:22 +000010736 default:
10737 break;
10738 }
10739
10740 return false;
10741}
Juergen Ributzka659ce002014-01-28 01:20:14 +000010742
10743/// \brief Returns true if it is beneficial to convert a load of a constant
10744/// to just the constant itself.
10745bool ARMTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
10746 Type *Ty) const {
10747 assert(Ty->isIntegerTy());
10748
10749 unsigned Bits = Ty->getPrimitiveSizeInBits();
10750 if (Bits == 0 || Bits > 32)
10751 return false;
10752 return true;
10753}
Tim Northover037f26f22014-04-17 18:22:47 +000010754
10755bool ARMTargetLowering::shouldExpandAtomicInIR(Instruction *Inst) const {
10756 // Loads and stores less than 64-bits are already atomic; ones above that
10757 // are doomed anyway, so defer to the default libcall and blame the OS when
Tim Northoverb45c3b72014-06-16 18:49:36 +000010758 // things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit
10759 // anything for those.
10760 bool IsMClass = Subtarget->isMClass();
10761 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
10762 unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits();
10763 return Size == 64 && !IsMClass;
10764 } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
10765 return LI->getType()->getPrimitiveSizeInBits() == 64 && !IsMClass;
10766 }
Tim Northover037f26f22014-04-17 18:22:47 +000010767
Tim Northoverb45c3b72014-06-16 18:49:36 +000010768 // For the real atomic operations, we have ldrex/strex up to 32 bits,
10769 // and up to 64 bits on the non-M profiles
10770 unsigned AtomicLimit = IsMClass ? 32 : 64;
10771 return Inst->getType()->getPrimitiveSizeInBits() <= AtomicLimit;
Tim Northover037f26f22014-04-17 18:22:47 +000010772}
10773
10774Value *ARMTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
10775 AtomicOrdering Ord) const {
10776 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10777 Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
10778 bool IsAcquire =
10779 Ord == Acquire || Ord == AcquireRelease || Ord == SequentiallyConsistent;
10780
10781 // Since i64 isn't legal and intrinsics don't get type-lowered, the ldrexd
10782 // intrinsic must return {i32, i32} and we have to recombine them into a
10783 // single i64 here.
10784 if (ValTy->getPrimitiveSizeInBits() == 64) {
10785 Intrinsic::ID Int =
10786 IsAcquire ? Intrinsic::arm_ldaexd : Intrinsic::arm_ldrexd;
10787 Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int);
10788
10789 Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10790 Value *LoHi = Builder.CreateCall(Ldrex, Addr, "lohi");
10791
10792 Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
10793 Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
Christian Pirkerb5728192014-05-08 14:06:24 +000010794 if (!Subtarget->isLittle())
10795 std::swap (Lo, Hi);
Tim Northover037f26f22014-04-17 18:22:47 +000010796 Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
10797 Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
10798 return Builder.CreateOr(
10799 Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 32)), "val64");
10800 }
10801
10802 Type *Tys[] = { Addr->getType() };
10803 Intrinsic::ID Int = IsAcquire ? Intrinsic::arm_ldaex : Intrinsic::arm_ldrex;
10804 Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int, Tys);
10805
10806 return Builder.CreateTruncOrBitCast(
10807 Builder.CreateCall(Ldrex, Addr),
10808 cast<PointerType>(Addr->getType())->getElementType());
10809}
10810
10811Value *ARMTargetLowering::emitStoreConditional(IRBuilder<> &Builder, Value *Val,
10812 Value *Addr,
10813 AtomicOrdering Ord) const {
10814 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10815 bool IsRelease =
10816 Ord == Release || Ord == AcquireRelease || Ord == SequentiallyConsistent;
10817
10818 // Since the intrinsics must have legal type, the i64 intrinsics take two
10819 // parameters: "i32, i32". We must marshal Val into the appropriate form
10820 // before the call.
10821 if (Val->getType()->getPrimitiveSizeInBits() == 64) {
10822 Intrinsic::ID Int =
10823 IsRelease ? Intrinsic::arm_stlexd : Intrinsic::arm_strexd;
10824 Function *Strex = Intrinsic::getDeclaration(M, Int);
10825 Type *Int32Ty = Type::getInt32Ty(M->getContext());
10826
10827 Value *Lo = Builder.CreateTrunc(Val, Int32Ty, "lo");
10828 Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 32), Int32Ty, "hi");
Christian Pirkerb5728192014-05-08 14:06:24 +000010829 if (!Subtarget->isLittle())
10830 std::swap (Lo, Hi);
Tim Northover037f26f22014-04-17 18:22:47 +000010831 Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10832 return Builder.CreateCall3(Strex, Lo, Hi, Addr);
10833 }
10834
10835 Intrinsic::ID Int = IsRelease ? Intrinsic::arm_stlex : Intrinsic::arm_strex;
10836 Type *Tys[] = { Addr->getType() };
10837 Function *Strex = Intrinsic::getDeclaration(M, Int, Tys);
10838
10839 return Builder.CreateCall2(
10840 Strex, Builder.CreateZExtOrBitCast(
10841 Val, Strex->getFunctionType()->getParamType(0)),
10842 Addr);
10843}
Oliver Stannardc24f2172014-05-09 14:01:47 +000010844
10845enum HABaseType {
10846 HA_UNKNOWN = 0,
10847 HA_FLOAT,
10848 HA_DOUBLE,
10849 HA_VECT64,
10850 HA_VECT128
10851};
10852
10853static bool isHomogeneousAggregate(Type *Ty, HABaseType &Base,
10854 uint64_t &Members) {
10855 if (const StructType *ST = dyn_cast<StructType>(Ty)) {
10856 for (unsigned i = 0; i < ST->getNumElements(); ++i) {
10857 uint64_t SubMembers = 0;
10858 if (!isHomogeneousAggregate(ST->getElementType(i), Base, SubMembers))
10859 return false;
10860 Members += SubMembers;
10861 }
10862 } else if (const ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
10863 uint64_t SubMembers = 0;
10864 if (!isHomogeneousAggregate(AT->getElementType(), Base, SubMembers))
10865 return false;
10866 Members += SubMembers * AT->getNumElements();
10867 } else if (Ty->isFloatTy()) {
10868 if (Base != HA_UNKNOWN && Base != HA_FLOAT)
10869 return false;
10870 Members = 1;
10871 Base = HA_FLOAT;
10872 } else if (Ty->isDoubleTy()) {
10873 if (Base != HA_UNKNOWN && Base != HA_DOUBLE)
10874 return false;
10875 Members = 1;
10876 Base = HA_DOUBLE;
10877 } else if (const VectorType *VT = dyn_cast<VectorType>(Ty)) {
10878 Members = 1;
10879 switch (Base) {
10880 case HA_FLOAT:
10881 case HA_DOUBLE:
10882 return false;
10883 case HA_VECT64:
10884 return VT->getBitWidth() == 64;
10885 case HA_VECT128:
10886 return VT->getBitWidth() == 128;
10887 case HA_UNKNOWN:
10888 switch (VT->getBitWidth()) {
10889 case 64:
10890 Base = HA_VECT64;
10891 return true;
10892 case 128:
10893 Base = HA_VECT128;
10894 return true;
10895 default:
10896 return false;
10897 }
10898 }
10899 }
10900
10901 return (Members > 0 && Members <= 4);
10902}
10903
10904/// \brief Return true if a type is an AAPCS-VFP homogeneous aggregate.
10905bool ARMTargetLowering::functionArgumentNeedsConsecutiveRegisters(
10906 Type *Ty, CallingConv::ID CallConv, bool isVarArg) const {
Tim Northover4f1909f2014-05-27 10:43:38 +000010907 if (getEffectiveCallingConv(CallConv, isVarArg) !=
10908 CallingConv::ARM_AAPCS_VFP)
Oliver Stannardc24f2172014-05-09 14:01:47 +000010909 return false;
Tim Northover4f1909f2014-05-27 10:43:38 +000010910
10911 HABaseType Base = HA_UNKNOWN;
10912 uint64_t Members = 0;
10913 bool result = isHomogeneousAggregate(Ty, Base, Members);
10914 DEBUG(dbgs() << "isHA: " << result << " "; Ty->dump(); dbgs() << "\n");
10915 return result;
Oliver Stannardc24f2172014-05-09 14:01:47 +000010916}