blob: 7df5519d94f2c3bf920470e7b758228bfb2b0d81 [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"
Pete Cooperef21bd42015-03-04 01:24:11 +000026#include "llvm/ADT/StringSwitch.h"
Bob Wilsona4c22902009-04-17 19:07:39 +000027#include "llvm/CodeGen/CallingConvLower.h"
Evan Cheng078b0b02011-01-08 01:24:27 +000028#include "llvm/CodeGen/IntrinsicLowering.h"
Evan Cheng10043e22007-01-19 07:51:42 +000029#include "llvm/CodeGen/MachineBasicBlock.h"
30#include "llvm/CodeGen/MachineFrameInfo.h"
31#include "llvm/CodeGen/MachineFunction.h"
32#include "llvm/CodeGen/MachineInstrBuilder.h"
Eric Christopher79cc1e32014-09-02 22:28:02 +000033#include "llvm/CodeGen/MachineJumpTableInfo.h"
Bill Wendling202803e2011-10-05 00:02:33 +000034#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000035#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng10043e22007-01-19 07:51:42 +000036#include "llvm/CodeGen/SelectionDAG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000037#include "llvm/IR/CallingConv.h"
38#include "llvm/IR/Constants.h"
39#include "llvm/IR/Function.h"
40#include "llvm/IR/GlobalValue.h"
Tim Northover037f26f22014-04-17 18:22:47 +000041#include "llvm/IR/IRBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000042#include "llvm/IR/Instruction.h"
43#include "llvm/IR/Instructions.h"
John Brawn0dbcd652015-03-18 12:01:59 +000044#include "llvm/IR/IntrinsicInst.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000045#include "llvm/IR/Intrinsics.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000046#include "llvm/IR/Type.h"
Bill Wendling46ffefc2010-03-09 02:46:12 +000047#include "llvm/MC/MCSectionMachO.h"
Jim Grosbach32bb3622010-04-14 22:28:31 +000048#include "llvm/Support/CommandLine.h"
Oliver Stannardc24f2172014-05-09 14:01:47 +000049#include "llvm/Support/Debug.h"
Torok Edwin6dd27302009-07-08 18:01:40 +000050#include "llvm/Support/ErrorHandling.h"
Evan Cheng2150b922007-03-12 23:30:29 +000051#include "llvm/Support/MathExtras.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000052#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000053#include "llvm/Target/TargetOptions.h"
David Peixottoc32e24a2013-10-17 19:49:22 +000054#include <utility>
Evan Cheng10043e22007-01-19 07:51:42 +000055using namespace llvm;
56
Chandler Carruth84e68b22014-04-22 02:41:26 +000057#define DEBUG_TYPE "arm-isel"
58
Dale Johannesend679ff72010-06-03 21:09:53 +000059STATISTIC(NumTailCalls, "Number of tail calls");
Evan Cheng68aec142011-01-19 02:16:49 +000060STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
Manman Ren9f911162012-06-01 02:44:42 +000061STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments");
Dale Johannesend679ff72010-06-03 21:09:53 +000062
Evan Chengf128bdc2010-06-16 07:35:02 +000063static cl::opt<bool>
64ARMInterworking("arm-interworking", cl::Hidden,
65 cl::desc("Enable / disable ARM interworking (for debugging only)"),
66 cl::init(true));
67
Benjamin Kramer7ba71be2011-11-26 23:01:57 +000068namespace {
Cameron Zwarich89019782011-06-10 20:59:24 +000069 class ARMCCState : public CCState {
70 public:
71 ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
Eric Christopherb5217502014-08-06 18:45:26 +000072 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C,
73 ParmContext PC)
74 : CCState(CC, isVarArg, MF, locs, C) {
Cameron Zwarich89019782011-06-10 20:59:24 +000075 assert(((PC == Call) || (PC == Prologue)) &&
76 "ARMCCState users must specify whether their context is call"
77 "or prologue generation.");
78 CallOrPrologue = PC;
79 }
80 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +000081}
Cameron Zwarich89019782011-06-10 20:59:24 +000082
Stuart Hastings45fe3c32011-04-20 16:47:52 +000083// The APCS parameter registers.
Craig Topper840beec2014-04-04 05:16:06 +000084static const MCPhysReg GPRArgRegs[] = {
Stuart Hastings45fe3c32011-04-20 16:47:52 +000085 ARM::R0, ARM::R1, ARM::R2, ARM::R3
86};
87
Craig Topper4fa625f2012-08-12 03:16:37 +000088void ARMTargetLowering::addTypeForNEON(MVT VT, MVT PromotedLdStVT,
89 MVT PromotedBitwiseVT) {
Bob Wilson2e076c42009-06-22 23:27:02 +000090 if (VT != PromotedLdStVT) {
Craig Topper4fa625f2012-08-12 03:16:37 +000091 setOperationAction(ISD::LOAD, VT, Promote);
92 AddPromotedToType (ISD::LOAD, VT, PromotedLdStVT);
Bob Wilson2e076c42009-06-22 23:27:02 +000093
Craig Topper4fa625f2012-08-12 03:16:37 +000094 setOperationAction(ISD::STORE, VT, Promote);
95 AddPromotedToType (ISD::STORE, VT, PromotedLdStVT);
Bob Wilson2e076c42009-06-22 23:27:02 +000096 }
97
Craig Topper4fa625f2012-08-12 03:16:37 +000098 MVT ElemTy = VT.getVectorElementType();
Owen Anderson9f944592009-08-11 20:47:22 +000099 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
Craig Topper4fa625f2012-08-12 03:16:37 +0000100 setOperationAction(ISD::SETCC, VT, Custom);
101 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
102 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Eli Friedman2d4055b2011-11-09 23:36:02 +0000103 if (ElemTy == MVT::i32) {
Craig Topper4fa625f2012-08-12 03:16:37 +0000104 setOperationAction(ISD::SINT_TO_FP, VT, Custom);
105 setOperationAction(ISD::UINT_TO_FP, VT, Custom);
106 setOperationAction(ISD::FP_TO_SINT, VT, Custom);
107 setOperationAction(ISD::FP_TO_UINT, VT, Custom);
Eli Friedman2d4055b2011-11-09 23:36:02 +0000108 } else {
Craig Topper4fa625f2012-08-12 03:16:37 +0000109 setOperationAction(ISD::SINT_TO_FP, VT, Expand);
110 setOperationAction(ISD::UINT_TO_FP, VT, Expand);
111 setOperationAction(ISD::FP_TO_SINT, VT, Expand);
112 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
Bob Wilson5d8cfb22009-09-16 20:20:44 +0000113 }
Craig Topper4fa625f2012-08-12 03:16:37 +0000114 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
115 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
116 setOperationAction(ISD::CONCAT_VECTORS, VT, Legal);
117 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
118 setOperationAction(ISD::SELECT, VT, Expand);
119 setOperationAction(ISD::SELECT_CC, VT, Expand);
Jim Grosbach30af4422012-10-12 22:59:21 +0000120 setOperationAction(ISD::VSELECT, VT, Expand);
Craig Topper4fa625f2012-08-12 03:16:37 +0000121 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
Bob Wilson2e076c42009-06-22 23:27:02 +0000122 if (VT.isInteger()) {
Craig Topper4fa625f2012-08-12 03:16:37 +0000123 setOperationAction(ISD::SHL, VT, Custom);
124 setOperationAction(ISD::SRA, VT, Custom);
125 setOperationAction(ISD::SRL, VT, Custom);
Bob Wilson2e076c42009-06-22 23:27:02 +0000126 }
127
128 // Promote all bit-wise operations.
129 if (VT.isInteger() && VT != PromotedBitwiseVT) {
Craig Topper4fa625f2012-08-12 03:16:37 +0000130 setOperationAction(ISD::AND, VT, Promote);
131 AddPromotedToType (ISD::AND, VT, PromotedBitwiseVT);
132 setOperationAction(ISD::OR, VT, Promote);
133 AddPromotedToType (ISD::OR, VT, PromotedBitwiseVT);
134 setOperationAction(ISD::XOR, VT, Promote);
135 AddPromotedToType (ISD::XOR, VT, PromotedBitwiseVT);
Bob Wilson2e076c42009-06-22 23:27:02 +0000136 }
Bob Wilson4ed397c2009-09-16 00:17:28 +0000137
138 // Neon does not support vector divide/remainder operations.
Craig Topper4fa625f2012-08-12 03:16:37 +0000139 setOperationAction(ISD::SDIV, VT, Expand);
140 setOperationAction(ISD::UDIV, VT, Expand);
141 setOperationAction(ISD::FDIV, VT, Expand);
142 setOperationAction(ISD::SREM, VT, Expand);
143 setOperationAction(ISD::UREM, VT, Expand);
144 setOperationAction(ISD::FREM, VT, Expand);
James Molloya6702e22015-07-17 17:10:55 +0000145
Silviu Barangaad1b19f2015-08-19 14:11:27 +0000146 if (!VT.isFloatingPoint() &&
147 VT != MVT::v2i64 && VT != MVT::v1i64)
148 for (unsigned Opcode : {ISD::SMIN, ISD::SMAX, ISD::UMIN, ISD::UMAX})
149 setOperationAction(Opcode, VT, Legal);
Bob Wilson2e076c42009-06-22 23:27:02 +0000150}
151
Craig Topper4fa625f2012-08-12 03:16:37 +0000152void ARMTargetLowering::addDRTypeForNEON(MVT VT) {
Craig Topperc7242e02012-04-20 07:30:17 +0000153 addRegisterClass(VT, &ARM::DPRRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +0000154 addTypeForNEON(VT, MVT::f64, MVT::v2i32);
Bob Wilson2e076c42009-06-22 23:27:02 +0000155}
156
Craig Topper4fa625f2012-08-12 03:16:37 +0000157void ARMTargetLowering::addQRTypeForNEON(MVT VT) {
Jakob Stoklund Olesen20912062014-01-14 06:18:34 +0000158 addRegisterClass(VT, &ARM::DPairRegClass);
Owen Anderson9f944592009-08-11 20:47:22 +0000159 addTypeForNEON(VT, MVT::v2f64, MVT::v4i32);
Bob Wilson2e076c42009-06-22 23:27:02 +0000160}
161
Eric Christopher1889fdc2015-01-29 00:19:39 +0000162ARMTargetLowering::ARMTargetLowering(const TargetMachine &TM,
163 const ARMSubtarget &STI)
164 : TargetLowering(TM), Subtarget(&STI) {
165 RegInfo = Subtarget->getRegisterInfo();
166 Itins = Subtarget->getInstrItineraryData();
Evan Cheng10043e22007-01-19 07:51:42 +0000167
Duncan Sandsf2641e12011-09-06 19:07:46 +0000168 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
169
Tim Northoverd6a729b2014-01-06 14:28:05 +0000170 if (Subtarget->isTargetMachO()) {
Evan Chengc9f22fd12007-04-27 08:15:43 +0000171 // Uses VFP for Thumb libfuncs if available.
Jim Grosbach1d1d6d42013-10-24 23:07:11 +0000172 if (Subtarget->isThumb() && Subtarget->hasVFP2() &&
Eric Christopher824f42f2015-05-12 01:26:05 +0000173 Subtarget->hasARMOps() && !Subtarget->useSoftFloat()) {
Saleem Abdulrasool67697a72015-08-04 03:57:52 +0000174 static const struct {
175 const RTLIB::Libcall Op;
176 const char * const Name;
177 const ISD::CondCode Cond;
178 } LibraryCalls[] = {
179 // Single-precision floating-point arithmetic.
180 { RTLIB::ADD_F32, "__addsf3vfp", ISD::SETCC_INVALID },
181 { RTLIB::SUB_F32, "__subsf3vfp", ISD::SETCC_INVALID },
182 { RTLIB::MUL_F32, "__mulsf3vfp", ISD::SETCC_INVALID },
183 { RTLIB::DIV_F32, "__divsf3vfp", ISD::SETCC_INVALID },
Evan Cheng10043e22007-01-19 07:51:42 +0000184
Saleem Abdulrasool67697a72015-08-04 03:57:52 +0000185 // Double-precision floating-point arithmetic.
186 { RTLIB::ADD_F64, "__adddf3vfp", ISD::SETCC_INVALID },
187 { RTLIB::SUB_F64, "__subdf3vfp", ISD::SETCC_INVALID },
188 { RTLIB::MUL_F64, "__muldf3vfp", ISD::SETCC_INVALID },
189 { RTLIB::DIV_F64, "__divdf3vfp", ISD::SETCC_INVALID },
Evan Cheng143576d2007-01-31 09:30:58 +0000190
Saleem Abdulrasool67697a72015-08-04 03:57:52 +0000191 // Single-precision comparisons.
192 { RTLIB::OEQ_F32, "__eqsf2vfp", ISD::SETNE },
193 { RTLIB::UNE_F32, "__nesf2vfp", ISD::SETNE },
194 { RTLIB::OLT_F32, "__ltsf2vfp", ISD::SETNE },
195 { RTLIB::OLE_F32, "__lesf2vfp", ISD::SETNE },
196 { RTLIB::OGE_F32, "__gesf2vfp", ISD::SETNE },
197 { RTLIB::OGT_F32, "__gtsf2vfp", ISD::SETNE },
198 { RTLIB::UO_F32, "__unordsf2vfp", ISD::SETNE },
199 { RTLIB::O_F32, "__unordsf2vfp", ISD::SETEQ },
Evan Cheng10043e22007-01-19 07:51:42 +0000200
Saleem Abdulrasool67697a72015-08-04 03:57:52 +0000201 // Double-precision comparisons.
202 { RTLIB::OEQ_F64, "__eqdf2vfp", ISD::SETNE },
203 { RTLIB::UNE_F64, "__nedf2vfp", ISD::SETNE },
204 { RTLIB::OLT_F64, "__ltdf2vfp", ISD::SETNE },
205 { RTLIB::OLE_F64, "__ledf2vfp", ISD::SETNE },
206 { RTLIB::OGE_F64, "__gedf2vfp", ISD::SETNE },
207 { RTLIB::OGT_F64, "__gtdf2vfp", ISD::SETNE },
208 { RTLIB::UO_F64, "__unorddf2vfp", ISD::SETNE },
209 { RTLIB::O_F64, "__unorddf2vfp", ISD::SETEQ },
Evan Cheng143576d2007-01-31 09:30:58 +0000210
Saleem Abdulrasool67697a72015-08-04 03:57:52 +0000211 // Floating-point to integer conversions.
212 // i64 conversions are done via library routines even when generating VFP
213 // instructions, so use the same ones.
214 { RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp", ISD::SETCC_INVALID },
215 { RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp", ISD::SETCC_INVALID },
216 { RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp", ISD::SETCC_INVALID },
217 { RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp", ISD::SETCC_INVALID },
Evan Cheng10043e22007-01-19 07:51:42 +0000218
Saleem Abdulrasool67697a72015-08-04 03:57:52 +0000219 // Conversions between floating types.
220 { RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp", ISD::SETCC_INVALID },
221 { RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp", ISD::SETCC_INVALID },
Evan Cheng10043e22007-01-19 07:51:42 +0000222
Saleem Abdulrasool67697a72015-08-04 03:57:52 +0000223 // Integer to floating-point conversions.
224 // i64 conversions are done via library routines even when generating VFP
225 // instructions, so use the same ones.
226 // FIXME: There appears to be some naming inconsistency in ARM libgcc:
227 // e.g., __floatunsidf vs. __floatunssidfvfp.
228 { RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp", ISD::SETCC_INVALID },
229 { RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp", ISD::SETCC_INVALID },
230 { RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp", ISD::SETCC_INVALID },
231 { RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp", ISD::SETCC_INVALID },
232 };
Evan Cheng10043e22007-01-19 07:51:42 +0000233
Saleem Abdulrasool67697a72015-08-04 03:57:52 +0000234 for (const auto &LC : LibraryCalls) {
235 setLibcallName(LC.Op, LC.Name);
236 if (LC.Cond != ISD::SETCC_INVALID)
237 setCmpLibcallCC(LC.Op, LC.Cond);
238 }
Evan Chengc9f22fd12007-04-27 08:15:43 +0000239 }
Tim Northover8b403662015-10-28 22:51:16 +0000240
241 // Set the correct calling convention for ARMv7k WatchOS. It's just
242 // AAPCS_VFP for functions as simple as libcalls.
Tim Northover042a6c12016-01-27 19:32:29 +0000243 if (Subtarget->isTargetWatchABI()) {
Tim Northover8b403662015-10-28 22:51:16 +0000244 for (int i = 0; i < RTLIB::UNKNOWN_LIBCALL; ++i)
245 setLibcallCallingConv((RTLIB::Libcall)i, CallingConv::ARM_AAPCS_VFP);
246 }
Evan Cheng10043e22007-01-19 07:51:42 +0000247 }
248
Bob Wilsonccbc17b2009-05-22 17:38:41 +0000249 // These libcalls are not available in 32-bit.
Craig Topper062a2ba2014-04-25 05:30:21 +0000250 setLibcallName(RTLIB::SHL_I128, nullptr);
251 setLibcallName(RTLIB::SRL_I128, nullptr);
252 setLibcallName(RTLIB::SRA_I128, nullptr);
Bob Wilsonccbc17b2009-05-22 17:38:41 +0000253
Renato Golin6d435f12015-11-09 12:40:30 +0000254 // RTLIB
255 if (Subtarget->isAAPCS_ABI() &&
256 (Subtarget->isTargetAEABI() || Subtarget->isTargetGNUAEABI() ||
257 Subtarget->isTargetAndroid())) {
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000258 static const struct {
259 const RTLIB::Libcall Op;
260 const char * const Name;
261 const CallingConv::ID CC;
262 const ISD::CondCode Cond;
263 } LibraryCalls[] = {
264 // Double-precision floating-point arithmetic helper functions
265 // RTABI chapter 4.1.2, Table 2
266 { RTLIB::ADD_F64, "__aeabi_dadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
267 { RTLIB::DIV_F64, "__aeabi_ddiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
268 { RTLIB::MUL_F64, "__aeabi_dmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
269 { RTLIB::SUB_F64, "__aeabi_dsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000270
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000271 // Double-precision floating-point comparison helper functions
272 // RTABI chapter 4.1.2, Table 3
273 { RTLIB::OEQ_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
274 { RTLIB::UNE_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
275 { RTLIB::OLT_F64, "__aeabi_dcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
276 { RTLIB::OLE_F64, "__aeabi_dcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
277 { RTLIB::OGE_F64, "__aeabi_dcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
278 { RTLIB::OGT_F64, "__aeabi_dcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
279 { RTLIB::UO_F64, "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
280 { RTLIB::O_F64, "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000281
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000282 // Single-precision floating-point arithmetic helper functions
283 // RTABI chapter 4.1.2, Table 4
284 { RTLIB::ADD_F32, "__aeabi_fadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
285 { RTLIB::DIV_F32, "__aeabi_fdiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
286 { RTLIB::MUL_F32, "__aeabi_fmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
287 { RTLIB::SUB_F32, "__aeabi_fsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000288
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000289 // Single-precision floating-point comparison helper functions
290 // RTABI chapter 4.1.2, Table 5
291 { RTLIB::OEQ_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
292 { RTLIB::UNE_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
293 { RTLIB::OLT_F32, "__aeabi_fcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
294 { RTLIB::OLE_F32, "__aeabi_fcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
295 { RTLIB::OGE_F32, "__aeabi_fcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
296 { RTLIB::OGT_F32, "__aeabi_fcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
297 { RTLIB::UO_F32, "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
298 { RTLIB::O_F32, "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000299
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000300 // Floating-point to integer conversions.
301 // RTABI chapter 4.1.2, Table 6
302 { RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
303 { RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
304 { RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
305 { RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
306 { RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
307 { RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
308 { RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
309 { RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Anton Korobeynikov81bdc932010-09-28 21:39:26 +0000310
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000311 // Conversions between floating types.
312 // RTABI chapter 4.1.2, Table 7
313 { RTLIB::FPROUND_F64_F32, "__aeabi_d2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Saleem Abdulrasool017bd572014-08-17 22:51:02 +0000314 { RTLIB::FPROUND_F64_F16, "__aeabi_d2h", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
Chad Rosierad7c9102014-08-23 18:29:43 +0000315 { 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
Chad Rosierad7c9102014-08-23 18:29:43 +0000330 { 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
Chad Rosierad7c9102014-08-23 18:29:43 +0000337 { 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 },
Saleem Abdulrasool8bfb1922014-05-18 16:39:11 +0000345 };
346
347 for (const auto &LC : LibraryCalls) {
348 setLibcallName(LC.Op, LC.Name);
349 setLibcallCallingConv(LC.Op, LC.CC);
350 if (LC.Cond != ISD::SETCC_INVALID)
351 setCmpLibcallCC(LC.Op, LC.Cond);
352 }
Renato Golin6d435f12015-11-09 12:40:30 +0000353
354 // EABI dependent RTLIB
355 if (TM.Options.EABIVersion == EABI::EABI4 ||
356 TM.Options.EABIVersion == EABI::EABI5) {
357 static const struct {
358 const RTLIB::Libcall Op;
359 const char *const Name;
360 const CallingConv::ID CC;
361 const ISD::CondCode Cond;
362 } MemOpsLibraryCalls[] = {
363 // Memory operations
364 // RTABI chapter 4.3.4
365 { RTLIB::MEMCPY, "__aeabi_memcpy", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
366 { RTLIB::MEMMOVE, "__aeabi_memmove", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
367 { RTLIB::MEMSET, "__aeabi_memset", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
368 };
369
370 for (const auto &LC : MemOpsLibraryCalls) {
371 setLibcallName(LC.Op, LC.Name);
372 setLibcallCallingConv(LC.Op, LC.CC);
373 if (LC.Cond != ISD::SETCC_INVALID)
374 setCmpLibcallCC(LC.Op, LC.Cond);
375 }
376 }
Anton Korobeynikova6b3ce22009-08-14 20:10:52 +0000377 }
378
Saleem Abdulrasool056fc3d2014-05-16 05:41:33 +0000379 if (Subtarget->isTargetWindows()) {
380 static const struct {
381 const RTLIB::Libcall Op;
382 const char * const Name;
383 const CallingConv::ID CC;
384 } LibraryCalls[] = {
385 { RTLIB::FPTOSINT_F32_I64, "__stoi64", CallingConv::ARM_AAPCS_VFP },
386 { RTLIB::FPTOSINT_F64_I64, "__dtoi64", CallingConv::ARM_AAPCS_VFP },
387 { RTLIB::FPTOUINT_F32_I64, "__stou64", CallingConv::ARM_AAPCS_VFP },
388 { RTLIB::FPTOUINT_F64_I64, "__dtou64", CallingConv::ARM_AAPCS_VFP },
389 { RTLIB::SINTTOFP_I64_F32, "__i64tos", CallingConv::ARM_AAPCS_VFP },
390 { RTLIB::SINTTOFP_I64_F64, "__i64tod", CallingConv::ARM_AAPCS_VFP },
391 { RTLIB::UINTTOFP_I64_F32, "__u64tos", CallingConv::ARM_AAPCS_VFP },
392 { RTLIB::UINTTOFP_I64_F64, "__u64tod", CallingConv::ARM_AAPCS_VFP },
Martell Malonea6b867e2015-11-23 13:11:39 +0000393 { RTLIB::SDIV_I32, "__rt_sdiv", CallingConv::ARM_AAPCS_VFP },
Martell Maloned1229242015-11-26 15:34:03 +0000394 { RTLIB::UDIV_I32, "__rt_udiv", CallingConv::ARM_AAPCS_VFP },
Martell Malonea6b867e2015-11-23 13:11:39 +0000395 { RTLIB::SDIV_I64, "__rt_sdiv64", CallingConv::ARM_AAPCS_VFP },
Martell Maloned1229242015-11-26 15:34:03 +0000396 { RTLIB::UDIV_I64, "__rt_udiv64", CallingConv::ARM_AAPCS_VFP },
Saleem Abdulrasool056fc3d2014-05-16 05:41:33 +0000397 };
398
399 for (const auto &LC : LibraryCalls) {
400 setLibcallName(LC.Op, LC.Name);
401 setLibcallCallingConv(LC.Op, LC.CC);
402 }
403 }
404
Bob Wilsonbc158992011-10-07 16:59:21 +0000405 // Use divmod compiler-rt calls for iOS 5.0 and later.
Tim Northover8b403662015-10-28 22:51:16 +0000406 if (Subtarget->isTargetWatchOS() ||
407 (Subtarget->isTargetIOS() &&
408 !Subtarget->getTargetTriple().isOSVersionLT(5, 0))) {
Bob Wilsonbc158992011-10-07 16:59:21 +0000409 setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4");
410 setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4");
411 }
412
Oliver Stannard11790b22014-08-11 09:12:32 +0000413 // The half <-> float conversion functions are always soft-float, but are
414 // needed for some targets which use a hard-float calling convention by
415 // default.
416 if (Subtarget->isAAPCS_ABI()) {
417 setLibcallCallingConv(RTLIB::FPROUND_F32_F16, CallingConv::ARM_AAPCS);
418 setLibcallCallingConv(RTLIB::FPROUND_F64_F16, CallingConv::ARM_AAPCS);
419 setLibcallCallingConv(RTLIB::FPEXT_F16_F32, CallingConv::ARM_AAPCS);
420 } else {
421 setLibcallCallingConv(RTLIB::FPROUND_F32_F16, CallingConv::ARM_APCS);
422 setLibcallCallingConv(RTLIB::FPROUND_F64_F16, CallingConv::ARM_APCS);
423 setLibcallCallingConv(RTLIB::FPEXT_F16_F32, CallingConv::ARM_APCS);
424 }
425
Oliver Stannardd3d114b2015-10-07 16:58:49 +0000426 // In EABI, these functions have an __aeabi_ prefix, but in GNUEABI they have
427 // a __gnu_ prefix (which is the default).
428 if (Subtarget->isTargetAEABI()) {
429 setLibcallName(RTLIB::FPROUND_F32_F16, "__aeabi_f2h");
430 setLibcallName(RTLIB::FPROUND_F64_F16, "__aeabi_d2h");
431 setLibcallName(RTLIB::FPEXT_F16_F32, "__aeabi_h2f");
432 }
433
David Goodwin22c2fba2009-07-08 23:10:31 +0000434 if (Subtarget->isThumb1Only())
Craig Topperc7242e02012-04-20 07:30:17 +0000435 addRegisterClass(MVT::i32, &ARM::tGPRRegClass);
Jim Grosbachfde21102009-04-07 20:34:09 +0000436 else
Craig Topperc7242e02012-04-20 07:30:17 +0000437 addRegisterClass(MVT::i32, &ARM::GPRRegClass);
Eric Christopher824f42f2015-05-12 01:26:05 +0000438 if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000439 !Subtarget->isThumb1Only()) {
Craig Topperc7242e02012-04-20 07:30:17 +0000440 addRegisterClass(MVT::f32, &ARM::SPRRegClass);
Oliver Stannard51b1d462014-08-21 12:50:31 +0000441 addRegisterClass(MVT::f64, &ARM::DPRRegClass);
Evan Cheng10043e22007-01-19 07:51:42 +0000442 }
Bob Wilson2e076c42009-06-22 23:27:02 +0000443
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000444 for (MVT VT : MVT::vector_valuetypes()) {
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000445 for (MVT InnerVT : MVT::vector_valuetypes()) {
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000446 setTruncStoreAction(VT, InnerVT, Expand);
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000447 setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
448 setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
449 setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
450 }
Benjamin Kramer4dae5982014-04-26 12:06:28 +0000451
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000452 setOperationAction(ISD::MULHS, VT, Expand);
453 setOperationAction(ISD::SMUL_LOHI, VT, Expand);
454 setOperationAction(ISD::MULHU, VT, Expand);
455 setOperationAction(ISD::UMUL_LOHI, VT, Expand);
Benjamin Kramerf3ad2352014-05-19 13:12:38 +0000456
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +0000457 setOperationAction(ISD::BSWAP, VT, Expand);
Eli Friedman6f84fed2011-11-08 01:43:53 +0000458 }
459
Lang Hamesc35ee8b2012-03-15 18:49:02 +0000460 setOperationAction(ISD::ConstantFP, MVT::f32, Custom);
Tim Northoverf79c3a52013-08-20 08:57:11 +0000461 setOperationAction(ISD::ConstantFP, MVT::f64, Custom);
Lang Hamesc35ee8b2012-03-15 18:49:02 +0000462
Luke Cheeseman85fd06d2015-06-01 12:02:47 +0000463 setOperationAction(ISD::READ_REGISTER, MVT::i64, Custom);
464 setOperationAction(ISD::WRITE_REGISTER, MVT::i64, Custom);
465
Bob Wilson2e076c42009-06-22 23:27:02 +0000466 if (Subtarget->hasNEON()) {
Owen Anderson9f944592009-08-11 20:47:22 +0000467 addDRTypeForNEON(MVT::v2f32);
468 addDRTypeForNEON(MVT::v8i8);
469 addDRTypeForNEON(MVT::v4i16);
470 addDRTypeForNEON(MVT::v2i32);
471 addDRTypeForNEON(MVT::v1i64);
Bob Wilson2e076c42009-06-22 23:27:02 +0000472
Owen Anderson9f944592009-08-11 20:47:22 +0000473 addQRTypeForNEON(MVT::v4f32);
474 addQRTypeForNEON(MVT::v2f64);
475 addQRTypeForNEON(MVT::v16i8);
476 addQRTypeForNEON(MVT::v8i16);
477 addQRTypeForNEON(MVT::v4i32);
478 addQRTypeForNEON(MVT::v2i64);
Bob Wilson2e076c42009-06-22 23:27:02 +0000479
Bob Wilson194a2512009-09-15 23:55:57 +0000480 // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
481 // neither Neon nor VFP support any arithmetic operations on it.
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000482 // The same with v4f32. But keep in mind that vadd, vsub, vmul are natively
483 // supported for v4f32.
Bob Wilson194a2512009-09-15 23:55:57 +0000484 setOperationAction(ISD::FADD, MVT::v2f64, Expand);
485 setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
486 setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000487 // FIXME: Code duplication: FDIV and FREM are expanded always, see
488 // ARMTargetLowering::addTypeForNEON method for details.
Bob Wilson194a2512009-09-15 23:55:57 +0000489 setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
490 setOperationAction(ISD::FREM, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000491 // FIXME: Create unittest.
492 // In another words, find a way when "copysign" appears in DAG with vector
493 // operands.
Bob Wilson194a2512009-09-15 23:55:57 +0000494 setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000495 // FIXME: Code duplication: SETCC has custom operation action, see
496 // ARMTargetLowering::addTypeForNEON method for details.
Duncan Sandsf2641e12011-09-06 19:07:46 +0000497 setOperationAction(ISD::SETCC, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000498 // FIXME: Create unittest for FNEG and for FABS.
Bob Wilson194a2512009-09-15 23:55:57 +0000499 setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
500 setOperationAction(ISD::FABS, MVT::v2f64, Expand);
501 setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
502 setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
503 setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
504 setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
505 setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
506 setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
507 setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
508 setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
509 setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
510 setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000511 // FIXME: Create unittest for FCEIL, FTRUNC, FRINT, FNEARBYINT, FFLOOR.
Bob Wilson194a2512009-09-15 23:55:57 +0000512 setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
513 setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
514 setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
515 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
516 setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
Arnold Schwaighofer99cba962013-03-02 19:38:33 +0000517 setOperationAction(ISD::FMA, MVT::v2f64, Expand);
Lang Hames591cdaf2012-03-29 21:56:11 +0000518
Stepan Dyatkovskiy46837402011-12-11 14:35:48 +0000519 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
520 setOperationAction(ISD::FSIN, MVT::v4f32, Expand);
521 setOperationAction(ISD::FCOS, MVT::v4f32, Expand);
522 setOperationAction(ISD::FPOWI, MVT::v4f32, Expand);
523 setOperationAction(ISD::FPOW, MVT::v4f32, Expand);
524 setOperationAction(ISD::FLOG, MVT::v4f32, Expand);
525 setOperationAction(ISD::FLOG2, MVT::v4f32, Expand);
526 setOperationAction(ISD::FLOG10, MVT::v4f32, Expand);
527 setOperationAction(ISD::FEXP, MVT::v4f32, Expand);
528 setOperationAction(ISD::FEXP2, MVT::v4f32, Expand);
Craig Topper61d04572012-11-15 06:51:10 +0000529 setOperationAction(ISD::FCEIL, MVT::v4f32, Expand);
530 setOperationAction(ISD::FTRUNC, MVT::v4f32, Expand);
531 setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
532 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
Craig Topper3e41a5b2012-09-08 04:58:43 +0000533 setOperationAction(ISD::FFLOOR, MVT::v4f32, Expand);
Bob Wilson194a2512009-09-15 23:55:57 +0000534
Arnold Schwaighofer99cba962013-03-02 19:38:33 +0000535 // Mark v2f32 intrinsics.
536 setOperationAction(ISD::FSQRT, MVT::v2f32, Expand);
537 setOperationAction(ISD::FSIN, MVT::v2f32, Expand);
538 setOperationAction(ISD::FCOS, MVT::v2f32, Expand);
539 setOperationAction(ISD::FPOWI, MVT::v2f32, Expand);
540 setOperationAction(ISD::FPOW, MVT::v2f32, Expand);
541 setOperationAction(ISD::FLOG, MVT::v2f32, Expand);
542 setOperationAction(ISD::FLOG2, MVT::v2f32, Expand);
543 setOperationAction(ISD::FLOG10, MVT::v2f32, Expand);
544 setOperationAction(ISD::FEXP, MVT::v2f32, Expand);
545 setOperationAction(ISD::FEXP2, MVT::v2f32, Expand);
546 setOperationAction(ISD::FCEIL, MVT::v2f32, Expand);
547 setOperationAction(ISD::FTRUNC, MVT::v2f32, Expand);
548 setOperationAction(ISD::FRINT, MVT::v2f32, Expand);
549 setOperationAction(ISD::FNEARBYINT, MVT::v2f32, Expand);
550 setOperationAction(ISD::FFLOOR, MVT::v2f32, Expand);
551
Bob Wilson6cc46572009-09-16 00:32:15 +0000552 // Neon does not support some operations on v1i64 and v2i64 types.
553 setOperationAction(ISD::MUL, MVT::v1i64, Expand);
Bob Wilson38ab35a2010-09-01 23:50:19 +0000554 // Custom handling for some quad-vector types to detect VMULL.
555 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
556 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
557 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Nate Begemanfa62d502011-02-11 20:53:29 +0000558 // Custom handling for some vector types to avoid expensive expansions
559 setOperationAction(ISD::SDIV, MVT::v4i16, Custom);
560 setOperationAction(ISD::SDIV, MVT::v8i8, Custom);
561 setOperationAction(ISD::UDIV, MVT::v4i16, Custom);
562 setOperationAction(ISD::UDIV, MVT::v8i8, Custom);
Duncan Sandsf2641e12011-09-06 19:07:46 +0000563 setOperationAction(ISD::SETCC, MVT::v1i64, Expand);
564 setOperationAction(ISD::SETCC, MVT::v2i64, Expand);
Cameron Zwarich143f9ae2011-03-29 21:41:55 +0000565 // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with
James Molloy547d4c02012-02-20 09:24:05 +0000566 // a destination type that is wider than the source, and nor does
567 // it have a FP_TO_[SU]INT instruction with a narrower destination than
568 // source.
Cameron Zwarich143f9ae2011-03-29 21:41:55 +0000569 setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom);
570 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
James Molloy547d4c02012-02-20 09:24:05 +0000571 setOperationAction(ISD::FP_TO_UINT, MVT::v4i16, Custom);
572 setOperationAction(ISD::FP_TO_SINT, MVT::v4i16, Custom);
Bob Wilson6cc46572009-09-16 00:32:15 +0000573
Eli Friedmane6385e62012-11-15 22:44:27 +0000574 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Expand);
Eli Friedman30834942012-11-17 01:52:46 +0000575 setOperationAction(ISD::FP_EXTEND, MVT::v2f64, Expand);
Eli Friedmane6385e62012-11-15 22:44:27 +0000576
Evan Chengb4eae132012-12-04 22:41:50 +0000577 // NEON does not have single instruction CTPOP for vectors with element
578 // types wider than 8-bits. However, custom lowering can leverage the
579 // v8i8/v16i8 vcnt instruction.
580 setOperationAction(ISD::CTPOP, MVT::v2i32, Custom);
581 setOperationAction(ISD::CTPOP, MVT::v4i32, Custom);
582 setOperationAction(ISD::CTPOP, MVT::v4i16, Custom);
583 setOperationAction(ISD::CTPOP, MVT::v8i16, Custom);
584
Logan Chien0a43abc2015-07-13 15:37:30 +0000585 // NEON does not have single instruction CTTZ for vectors.
586 setOperationAction(ISD::CTTZ, MVT::v8i8, Custom);
587 setOperationAction(ISD::CTTZ, MVT::v4i16, Custom);
588 setOperationAction(ISD::CTTZ, MVT::v2i32, Custom);
589 setOperationAction(ISD::CTTZ, MVT::v1i64, Custom);
590
591 setOperationAction(ISD::CTTZ, MVT::v16i8, Custom);
592 setOperationAction(ISD::CTTZ, MVT::v8i16, Custom);
593 setOperationAction(ISD::CTTZ, MVT::v4i32, Custom);
594 setOperationAction(ISD::CTTZ, MVT::v2i64, Custom);
595
596 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v8i8, Custom);
597 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v4i16, Custom);
598 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v2i32, Custom);
599 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v1i64, Custom);
600
601 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v16i8, Custom);
602 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v8i16, Custom);
603 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v4i32, Custom);
604 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v2i64, Custom);
605
Jim Grosbach5f215872013-02-27 21:31:12 +0000606 // NEON only has FMA instructions as of VFP4.
607 if (!Subtarget->hasVFP4()) {
608 setOperationAction(ISD::FMA, MVT::v2f32, Expand);
609 setOperationAction(ISD::FMA, MVT::v4f32, Expand);
610 }
611
Bob Wilson06fce872011-02-07 17:43:21 +0000612 setTargetDAGCombine(ISD::INTRINSIC_VOID);
613 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
Bob Wilson2e076c42009-06-22 23:27:02 +0000614 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
615 setTargetDAGCombine(ISD::SHL);
616 setTargetDAGCombine(ISD::SRL);
617 setTargetDAGCombine(ISD::SRA);
618 setTargetDAGCombine(ISD::SIGN_EXTEND);
619 setTargetDAGCombine(ISD::ZERO_EXTEND);
620 setTargetDAGCombine(ISD::ANY_EXTEND);
Bob Wilsoncb6db982010-09-17 22:59:05 +0000621 setTargetDAGCombine(ISD::BUILD_VECTOR);
Bob Wilsonc7334a12010-10-27 20:38:28 +0000622 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Bob Wilson1a20c2a2010-12-21 06:43:19 +0000623 setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
624 setTargetDAGCombine(ISD::STORE);
Chad Rosierfa8d8932011-06-24 19:23:04 +0000625 setTargetDAGCombine(ISD::FP_TO_SINT);
626 setTargetDAGCombine(ISD::FP_TO_UINT);
627 setTargetDAGCombine(ISD::FDIV);
Ahmed Bougachadb141ac2015-02-19 23:52:41 +0000628 setTargetDAGCombine(ISD::LOAD);
Nadav Rotem097106b2011-10-15 20:03:12 +0000629
James Molloy547d4c02012-02-20 09:24:05 +0000630 // It is legal to extload from v4i8 to v4i16 or v4i32.
Benjamin Kramer867bfc52015-03-07 17:41:00 +0000631 for (MVT Ty : {MVT::v8i8, MVT::v4i8, MVT::v2i8, MVT::v4i16, MVT::v2i16,
632 MVT::v2i32}) {
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000633 for (MVT VT : MVT::integer_vector_valuetypes()) {
Benjamin Kramer867bfc52015-03-07 17:41:00 +0000634 setLoadExtAction(ISD::EXTLOAD, VT, Ty, Legal);
635 setLoadExtAction(ISD::ZEXTLOAD, VT, Ty, Legal);
636 setLoadExtAction(ISD::SEXTLOAD, VT, Ty, Legal);
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000637 }
James Molloy547d4c02012-02-20 09:24:05 +0000638 }
Bob Wilson2e076c42009-06-22 23:27:02 +0000639 }
640
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +0000641 // ARM and Thumb2 support UMLAL/SMLAL.
642 if (!Subtarget->isThumb1Only())
643 setTargetDAGCombine(ISD::ADDC);
644
Oliver Stannard51b1d462014-08-21 12:50:31 +0000645 if (Subtarget->isFPOnlySP()) {
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000646 // When targeting a floating-point unit with only single-precision
Oliver Stannard51b1d462014-08-21 12:50:31 +0000647 // operations, f64 is legal for the few double-precision instructions which
648 // are present However, no double-precision operations other than moves,
649 // loads and stores are provided by the hardware.
650 setOperationAction(ISD::FADD, MVT::f64, Expand);
651 setOperationAction(ISD::FSUB, MVT::f64, Expand);
652 setOperationAction(ISD::FMUL, MVT::f64, Expand);
653 setOperationAction(ISD::FMA, MVT::f64, Expand);
654 setOperationAction(ISD::FDIV, MVT::f64, Expand);
655 setOperationAction(ISD::FREM, MVT::f64, Expand);
656 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
657 setOperationAction(ISD::FGETSIGN, MVT::f64, Expand);
658 setOperationAction(ISD::FNEG, MVT::f64, Expand);
659 setOperationAction(ISD::FABS, MVT::f64, Expand);
660 setOperationAction(ISD::FSQRT, MVT::f64, Expand);
661 setOperationAction(ISD::FSIN, MVT::f64, Expand);
662 setOperationAction(ISD::FCOS, MVT::f64, Expand);
663 setOperationAction(ISD::FPOWI, MVT::f64, Expand);
664 setOperationAction(ISD::FPOW, MVT::f64, Expand);
665 setOperationAction(ISD::FLOG, MVT::f64, Expand);
666 setOperationAction(ISD::FLOG2, MVT::f64, Expand);
667 setOperationAction(ISD::FLOG10, MVT::f64, Expand);
668 setOperationAction(ISD::FEXP, MVT::f64, Expand);
669 setOperationAction(ISD::FEXP2, MVT::f64, Expand);
670 setOperationAction(ISD::FCEIL, MVT::f64, Expand);
671 setOperationAction(ISD::FTRUNC, MVT::f64, Expand);
672 setOperationAction(ISD::FRINT, MVT::f64, Expand);
673 setOperationAction(ISD::FNEARBYINT, MVT::f64, Expand);
674 setOperationAction(ISD::FFLOOR, MVT::f64, Expand);
James Molloyfa041152015-03-23 16:15:16 +0000675 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
676 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
677 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
678 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
679 setOperationAction(ISD::FP_TO_SINT, MVT::f64, Custom);
680 setOperationAction(ISD::FP_TO_UINT, MVT::f64, Custom);
Oliver Stannard51b1d462014-08-21 12:50:31 +0000681 setOperationAction(ISD::FP_ROUND, MVT::f32, Custom);
682 setOperationAction(ISD::FP_EXTEND, MVT::f64, Custom);
683 }
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +0000684
Eric Christopher23a3a7c2015-02-26 00:00:24 +0000685 computeRegisterProperties(Subtarget->getRegisterInfo());
Evan Cheng10043e22007-01-19 07:51:42 +0000686
Tim Northover4e80b582014-07-18 13:01:19 +0000687 // ARM does not have floating-point extending loads.
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000688 for (MVT VT : MVT::fp_valuetypes()) {
689 setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
690 setLoadExtAction(ISD::EXTLOAD, VT, MVT::f16, Expand);
691 }
Tim Northover4e80b582014-07-18 13:01:19 +0000692
693 // ... or truncating stores
694 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
695 setTruncStoreAction(MVT::f32, MVT::f16, Expand);
696 setTruncStoreAction(MVT::f64, MVT::f16, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000697
Duncan Sands95d46ef2008-01-23 20:39:46 +0000698 // ARM does not have i1 sign extending load.
Ahmed Bougacha2b6917b2015-01-08 00:51:32 +0000699 for (MVT VT : MVT::integer_valuetypes())
700 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
Duncan Sands95d46ef2008-01-23 20:39:46 +0000701
Evan Cheng10043e22007-01-19 07:51:42 +0000702 // ARM supports all 4 flavors of integer indexed load / store.
Evan Cheng84c6cda2009-07-02 07:28:31 +0000703 if (!Subtarget->isThumb1Only()) {
704 for (unsigned im = (unsigned)ISD::PRE_INC;
705 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
Owen Anderson9f944592009-08-11 20:47:22 +0000706 setIndexedLoadAction(im, MVT::i1, Legal);
707 setIndexedLoadAction(im, MVT::i8, Legal);
708 setIndexedLoadAction(im, MVT::i16, Legal);
709 setIndexedLoadAction(im, MVT::i32, Legal);
710 setIndexedStoreAction(im, MVT::i1, Legal);
711 setIndexedStoreAction(im, MVT::i8, Legal);
712 setIndexedStoreAction(im, MVT::i16, Legal);
713 setIndexedStoreAction(im, MVT::i32, Legal);
Evan Cheng84c6cda2009-07-02 07:28:31 +0000714 }
Evan Cheng10043e22007-01-19 07:51:42 +0000715 }
716
Louis Gerbarg3342bf12014-05-09 17:02:49 +0000717 setOperationAction(ISD::SADDO, MVT::i32, Custom);
718 setOperationAction(ISD::UADDO, MVT::i32, Custom);
719 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
720 setOperationAction(ISD::USUBO, MVT::i32, Custom);
721
Evan Cheng10043e22007-01-19 07:51:42 +0000722 // i64 operation support.
Eric Christopherc721b0db2011-04-19 18:49:19 +0000723 setOperationAction(ISD::MUL, MVT::i64, Expand);
724 setOperationAction(ISD::MULHU, MVT::i32, Expand);
Evan Chengb24e51e2009-07-07 01:17:28 +0000725 if (Subtarget->isThumb1Only()) {
Owen Anderson9f944592009-08-11 20:47:22 +0000726 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
727 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000728 }
Jim Grosbachcf1464d2011-07-01 21:12:19 +0000729 if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops()
Artyom Skrobovcf296442015-09-24 17:31:16 +0000730 || (Subtarget->isThumb2() && !Subtarget->hasDSP()))
Eric Christopherc721b0db2011-04-19 18:49:19 +0000731 setOperationAction(ISD::MULHS, MVT::i32, Expand);
732
Jim Grosbach5d994042009-10-31 19:38:01 +0000733 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
Jim Grosbach624fcb22009-10-31 21:00:56 +0000734 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
Jim Grosbach8fe6fd72009-10-31 21:42:19 +0000735 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000736 setOperationAction(ISD::SRL, MVT::i64, Custom);
737 setOperationAction(ISD::SRA, MVT::i64, Custom);
Evan Cheng10043e22007-01-19 07:51:42 +0000738
Evan Chenge8916542011-08-30 01:34:54 +0000739 if (!Subtarget->isThumb1Only()) {
740 // FIXME: We should do this for Thumb1 as well.
741 setOperationAction(ISD::ADDC, MVT::i32, Custom);
742 setOperationAction(ISD::ADDE, MVT::i32, Custom);
743 setOperationAction(ISD::SUBC, MVT::i32, Custom);
744 setOperationAction(ISD::SUBE, MVT::i32, Custom);
745 }
746
Weiming Zhao4b3b13d2016-01-08 18:43:41 +0000747 if (!Subtarget->isThumb1Only() && Subtarget->hasV6T2Ops())
James Molloyb5640982015-11-13 16:05:22 +0000748 setOperationAction(ISD::BITREVERSE, MVT::i32, Legal);
749
Evan Cheng10043e22007-01-19 07:51:42 +0000750 // ARM does not have ROTL.
Charlie Turner458e79b2015-10-27 10:25:20 +0000751 setOperationAction(ISD::ROTL, MVT::i32, Expand);
752 for (MVT VT : MVT::vector_valuetypes()) {
753 setOperationAction(ISD::ROTL, VT, Expand);
754 setOperationAction(ISD::ROTR, VT, Expand);
755 }
Jim Grosbach8546ec92010-01-18 19:58:49 +0000756 setOperationAction(ISD::CTTZ, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000757 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
David Goodwinaa294c52009-06-26 20:47:43 +0000758 if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
Owen Anderson9f944592009-08-11 20:47:22 +0000759 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000760
Chandler Carruth637cc6a2011-12-13 01:56:10 +0000761 // These just redirect to CTTZ and CTLZ on ARM.
762 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i32 , Expand);
763 setOperationAction(ISD::CTLZ_ZERO_UNDEF , MVT::i32 , Expand);
764
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +0000765 // @llvm.readcyclecounter requires the Performance Monitors extension.
766 // Default to the 0 expansion on unsupported platforms.
767 // FIXME: Technically there are older ARM CPUs that have
768 // implementation-specific ways of obtaining this information.
769 if (Subtarget->hasPerfMon())
770 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom);
Tim Northoverbc933082013-05-23 19:11:20 +0000771
Lauro Ramos Venancio25d40522007-03-16 22:54:16 +0000772 // Only ARMv6 has BSWAP.
773 if (!Subtarget->hasV6Ops())
Owen Anderson9f944592009-08-11 20:47:22 +0000774 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
Lauro Ramos Venancio25d40522007-03-16 22:54:16 +0000775
Bradley Smith519563e2016-01-15 10:25:35 +0000776 bool hasDivide = Subtarget->isThumb() ? Subtarget->hasDivide()
777 : Subtarget->hasDivideInARMMode();
778 if (!hasDivide) {
Bob Wilsone8a549c2012-09-29 21:43:49 +0000779 // These are expanded into libcalls if the cpu doesn't have HW divider.
Artyom Skrobov7fd67e22015-10-20 13:14:52 +0000780 setOperationAction(ISD::SDIV, MVT::i32, LibCall);
781 setOperationAction(ISD::UDIV, MVT::i32, LibCall);
Jim Grosbach92d999002010-05-05 20:44:35 +0000782 }
Renato Golin87610692013-07-16 09:32:17 +0000783
Chad Rosierad7c9102014-08-23 18:29:43 +0000784 setOperationAction(ISD::SREM, MVT::i32, Expand);
785 setOperationAction(ISD::UREM, MVT::i32, Expand);
786 // Register based DivRem for AEABI (RTABI 4.2)
Renato Golin6027dd38e2016-02-03 16:10:54 +0000787 if (Subtarget->isTargetAEABI() || Subtarget->isTargetAndroid() ||
788 Subtarget->isTargetGNUAEABI()) {
Scott Douglassbdef6042015-08-24 09:17:18 +0000789 setOperationAction(ISD::SREM, MVT::i64, Custom);
790 setOperationAction(ISD::UREM, MVT::i64, Custom);
791
Chad Rosierad7c9102014-08-23 18:29:43 +0000792 setLibcallName(RTLIB::SDIVREM_I8, "__aeabi_idivmod");
793 setLibcallName(RTLIB::SDIVREM_I16, "__aeabi_idivmod");
794 setLibcallName(RTLIB::SDIVREM_I32, "__aeabi_idivmod");
795 setLibcallName(RTLIB::SDIVREM_I64, "__aeabi_ldivmod");
796 setLibcallName(RTLIB::UDIVREM_I8, "__aeabi_uidivmod");
797 setLibcallName(RTLIB::UDIVREM_I16, "__aeabi_uidivmod");
798 setLibcallName(RTLIB::UDIVREM_I32, "__aeabi_uidivmod");
799 setLibcallName(RTLIB::UDIVREM_I64, "__aeabi_uldivmod");
800
801 setLibcallCallingConv(RTLIB::SDIVREM_I8, CallingConv::ARM_AAPCS);
802 setLibcallCallingConv(RTLIB::SDIVREM_I16, CallingConv::ARM_AAPCS);
803 setLibcallCallingConv(RTLIB::SDIVREM_I32, CallingConv::ARM_AAPCS);
804 setLibcallCallingConv(RTLIB::SDIVREM_I64, CallingConv::ARM_AAPCS);
805 setLibcallCallingConv(RTLIB::UDIVREM_I8, CallingConv::ARM_AAPCS);
806 setLibcallCallingConv(RTLIB::UDIVREM_I16, CallingConv::ARM_AAPCS);
807 setLibcallCallingConv(RTLIB::UDIVREM_I32, CallingConv::ARM_AAPCS);
808 setLibcallCallingConv(RTLIB::UDIVREM_I64, CallingConv::ARM_AAPCS);
809
810 setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
811 setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
Renato Golin175c6d62016-03-04 19:19:36 +0000812 setOperationAction(ISD::SDIVREM, MVT::i64, Custom);
813 setOperationAction(ISD::UDIVREM, MVT::i64, Custom);
Chad Rosierad7c9102014-08-23 18:29:43 +0000814 } else {
Renato Golin87610692013-07-16 09:32:17 +0000815 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
816 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
817 }
Bob Wilson7117a912009-03-20 22:42:55 +0000818
Owen Anderson9f944592009-08-11 20:47:22 +0000819 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
820 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000821 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
Bob Wilson1cf0b032009-10-30 05:45:42 +0000822 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
Evan Cheng10043e22007-01-19 07:51:42 +0000823
Evan Cheng74d92c12011-04-08 21:37:21 +0000824 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Evan Cheng2fa5a7e2010-05-11 07:26:32 +0000825
Evan Cheng10043e22007-01-19 07:51:42 +0000826 // Use the default implementation.
Owen Anderson9f944592009-08-11 20:47:22 +0000827 setOperationAction(ISD::VASTART, MVT::Other, Custom);
828 setOperationAction(ISD::VAARG, MVT::Other, Expand);
829 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
830 setOperationAction(ISD::VAEND, MVT::Other, Expand);
831 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
832 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Bill Wendling05d6f2f2012-02-13 23:47:16 +0000833
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +0000834 if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
835 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
836 else
837 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
838
Evan Cheng6e809de2010-08-11 06:22:01 +0000839 // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use
Jonathan Roelofs5e98ff92014-08-21 14:35:47 +0000840 // the default expansion. If we are targeting a single threaded system,
841 // then set them all for expand so we can lower them later into their
842 // non-atomic form.
843 if (TM.Options.ThreadModel == ThreadModel::Single)
844 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Expand);
Bradley Smith433c22e2016-01-15 10:26:51 +0000845 else if (Subtarget->hasAnyDataBarrier() && (!Subtarget->isThumb() ||
846 Subtarget->hasV8MBaselineOps())) {
Tim Northoverc882eb02014-04-03 11:44:58 +0000847 // ATOMIC_FENCE needs custom lowering; the others should have been expanded
848 // to ldrex/strex loops already.
Tim Northoverc7ea8042013-10-25 09:30:24 +0000849 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
Tim Northoverc882eb02014-04-03 11:44:58 +0000850
Amara Emersonb4ad2f32013-09-26 12:22:36 +0000851 // On v8, we have particularly efficient implementations of atomic fences
852 // if they can be combined with nearby atomic loads and stores.
853 if (!Subtarget->hasV8Ops()) {
Robin Morissetd18cda62014-08-15 22:17:28 +0000854 // Automatically insert fences (dmb ish) around ATOMIC_SWAP etc.
Amara Emersonb4ad2f32013-09-26 12:22:36 +0000855 setInsertFencesForAtomic(true);
856 }
Jim Grosbach6860bb72010-06-18 22:35:32 +0000857 } else {
Tim Northoverc7ea8042013-10-25 09:30:24 +0000858 // If there's anything we can use as a barrier, go through custom lowering
859 // for ATOMIC_FENCE.
860 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other,
861 Subtarget->hasAnyDataBarrier() ? Custom : Expand);
862
Jim Grosbach6860bb72010-06-18 22:35:32 +0000863 // Set them all for expansion, which will force libcalls.
Jim Grosbach6860bb72010-06-18 22:35:32 +0000864 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Expand);
Jim Grosbacha57c2882010-06-18 23:03:10 +0000865 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000866 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000867 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000868 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000869 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000870 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i32, Expand);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000871 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand);
Jim Grosbachd4b733e2011-04-26 19:44:18 +0000872 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand);
Jim Grosbachd4b733e2011-04-26 19:44:18 +0000873 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand);
Jim Grosbachd4b733e2011-04-26 19:44:18 +0000874 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand);
Jim Grosbachd4b733e2011-04-26 19:44:18 +0000875 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand);
Eli Friedmanba912e02011-09-15 22:18:49 +0000876 // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the
877 // Unordered/Monotonic case.
878 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom);
879 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom);
Jim Grosbach6860bb72010-06-18 22:35:32 +0000880 }
Evan Cheng10043e22007-01-19 07:51:42 +0000881
Evan Cheng21acf9f2010-11-04 05:19:35 +0000882 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
Evan Cheng6f360422010-11-03 05:14:24 +0000883
Eli Friedman8cfa7712010-06-26 04:36:50 +0000884 // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes.
885 if (!Subtarget->hasV6Ops()) {
Owen Anderson9f944592009-08-11 20:47:22 +0000886 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
887 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000888 }
Owen Anderson9f944592009-08-11 20:47:22 +0000889 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Evan Cheng10043e22007-01-19 07:51:42 +0000890
Eric Christopher824f42f2015-05-12 01:26:05 +0000891 if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000892 !Subtarget->isThumb1Only()) {
Bob Wilson6a4491b2010-01-19 22:56:26 +0000893 // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +0000894 // iff target supports vfp2.
Wesley Peck527da1b2010-11-23 03:31:01 +0000895 setOperationAction(ISD::BITCAST, MVT::i64, Custom);
Nate Begemanb69b1822010-08-03 21:31:55 +0000896 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
897 }
Lauro Ramos Venanciof6a67bf2007-11-08 17:20:05 +0000898
899 // We want to custom lower some of our intrinsics.
Owen Anderson9f944592009-08-11 20:47:22 +0000900 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Matthias Braun3cd00c12015-07-16 22:34:16 +0000901 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
902 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
903 setOperationAction(ISD::EH_SJLJ_SETUP_DISPATCH, MVT::Other, Custom);
Tim Northoverf8e47e42015-10-28 22:56:36 +0000904 if (Subtarget->useSjLjEH())
John McCall7d84ece2011-05-29 19:50:32 +0000905 setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume");
Lauro Ramos Venanciof6a67bf2007-11-08 17:20:05 +0000906
Owen Anderson9f944592009-08-11 20:47:22 +0000907 setOperationAction(ISD::SETCC, MVT::i32, Expand);
908 setOperationAction(ISD::SETCC, MVT::f32, Expand);
909 setOperationAction(ISD::SETCC, MVT::f64, Expand);
Bill Wendling6a981312010-08-11 08:43:16 +0000910 setOperationAction(ISD::SELECT, MVT::i32, Custom);
911 setOperationAction(ISD::SELECT, MVT::f32, Custom);
912 setOperationAction(ISD::SELECT, MVT::f64, Custom);
Owen Anderson9f944592009-08-11 20:47:22 +0000913 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
914 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
915 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
Evan Cheng10043e22007-01-19 07:51:42 +0000916
Owen Anderson9f944592009-08-11 20:47:22 +0000917 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
918 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
919 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
920 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
921 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
Evan Cheng10043e22007-01-19 07:51:42 +0000922
Dan Gohman482732a2007-10-11 23:21:31 +0000923 // We don't support sin/cos/fmod/copysign/pow
Owen Anderson9f944592009-08-11 20:47:22 +0000924 setOperationAction(ISD::FSIN, MVT::f64, Expand);
925 setOperationAction(ISD::FSIN, MVT::f32, Expand);
926 setOperationAction(ISD::FCOS, MVT::f32, Expand);
927 setOperationAction(ISD::FCOS, MVT::f64, Expand);
Evan Cheng0e88c7d2013-01-29 02:32:37 +0000928 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
929 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
Owen Anderson9f944592009-08-11 20:47:22 +0000930 setOperationAction(ISD::FREM, MVT::f64, Expand);
931 setOperationAction(ISD::FREM, MVT::f32, Expand);
Eric Christopher824f42f2015-05-12 01:26:05 +0000932 if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000933 !Subtarget->isThumb1Only()) {
Owen Anderson9f944592009-08-11 20:47:22 +0000934 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
935 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng86e476b2008-04-01 01:50:16 +0000936 }
Owen Anderson9f944592009-08-11 20:47:22 +0000937 setOperationAction(ISD::FPOW, MVT::f64, Expand);
938 setOperationAction(ISD::FPOW, MVT::f32, Expand);
Bob Wilson7117a912009-03-20 22:42:55 +0000939
Evan Chengd0007f32012-04-10 21:40:28 +0000940 if (!Subtarget->hasVFP4()) {
941 setOperationAction(ISD::FMA, MVT::f64, Expand);
942 setOperationAction(ISD::FMA, MVT::f32, Expand);
943 }
Cameron Zwarichf03fa182011-07-08 21:39:21 +0000944
Anton Korobeynikovd7fece32010-03-14 18:42:31 +0000945 // Various VFP goodness
Eric Christopher824f42f2015-05-12 01:26:05 +0000946 if (!Subtarget->useSoftFloat() && !Subtarget->isThumb1Only()) {
Oliver Stannardd4e0a4f2014-10-01 13:13:18 +0000947 // FP-ARMv8 adds f64 <-> f16 conversion. Before that it should be expanded.
948 if (!Subtarget->hasFPARMv8() || Subtarget->isFPOnlySP()) {
Tim Northover53f3bcf2014-07-17 11:27:04 +0000949 setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
950 setOperationAction(ISD::FP_TO_FP16, MVT::f64, Expand);
951 }
952
953 // fp16 is a special v7 extension that adds f16 <-> f32 conversions.
Anton Korobeynikov64578d52010-03-18 22:35:37 +0000954 if (!Subtarget->hasFP16()) {
Tim Northoverfd7e4242014-07-17 10:51:23 +0000955 setOperationAction(ISD::FP16_TO_FP, MVT::f32, Expand);
956 setOperationAction(ISD::FP_TO_FP16, MVT::f32, Expand);
Anton Korobeynikovd7fece32010-03-14 18:42:31 +0000957 }
Evan Cheng86e476b2008-04-01 01:50:16 +0000958 }
Jim Grosbach1a597112014-04-03 23:43:18 +0000959
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000960 // Combine sin / cos into one node or libcall if possible.
961 if (Subtarget->hasSinCos()) {
962 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
963 setLibcallName(RTLIB::SINCOS_F64, "sincos");
Tim Northover042a6c12016-01-27 19:32:29 +0000964 if (Subtarget->isTargetWatchABI()) {
Tim Northover8b403662015-10-28 22:51:16 +0000965 setLibcallCallingConv(RTLIB::SINCOS_F32, CallingConv::ARM_AAPCS_VFP);
966 setLibcallCallingConv(RTLIB::SINCOS_F64, CallingConv::ARM_AAPCS_VFP);
967 }
968 if (Subtarget->isTargetIOS() || Subtarget->isTargetWatchOS()) {
Bob Wilsone7dde0c2013-11-03 06:14:38 +0000969 // For iOS, we don't want to the normal expansion of a libcall to
970 // sincos. We want to issue a libcall to __sincos_stret.
971 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
972 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
973 }
974 }
Evan Cheng10043e22007-01-19 07:51:42 +0000975
Oliver Stannardd4e0a4f2014-10-01 13:13:18 +0000976 // FP-ARMv8 implements a lot of rounding-like FP operations.
977 if (Subtarget->hasFPARMv8()) {
978 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
979 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
980 setOperationAction(ISD::FROUND, MVT::f32, Legal);
981 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
982 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
983 setOperationAction(ISD::FRINT, MVT::f32, Legal);
James Molloyea3a6872015-08-11 12:06:22 +0000984 setOperationAction(ISD::FMINNUM, MVT::f32, Legal);
985 setOperationAction(ISD::FMAXNUM, MVT::f32, Legal);
James Molloyee868b22015-08-11 12:06:25 +0000986 setOperationAction(ISD::FMINNUM, MVT::v2f32, Legal);
987 setOperationAction(ISD::FMAXNUM, MVT::v2f32, Legal);
988 setOperationAction(ISD::FMINNUM, MVT::v4f32, Legal);
989 setOperationAction(ISD::FMAXNUM, MVT::v4f32, Legal);
990
Oliver Stannardd4e0a4f2014-10-01 13:13:18 +0000991 if (!Subtarget->isFPOnlySP()) {
992 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
993 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
994 setOperationAction(ISD::FROUND, MVT::f64, Legal);
995 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
996 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
997 setOperationAction(ISD::FRINT, MVT::f64, Legal);
James Molloyea3a6872015-08-11 12:06:22 +0000998 setOperationAction(ISD::FMINNUM, MVT::f64, Legal);
999 setOperationAction(ISD::FMAXNUM, MVT::f64, Legal);
Chad Rosierb1bbf6f2014-08-15 21:38:16 +00001000 }
1001 }
James Molloydb8ee4b2015-08-11 12:06:15 +00001002
James Molloy974838f2015-08-17 19:37:12 +00001003 if (Subtarget->hasNEON()) {
1004 // vmin and vmax aren't available in a scalar form, so we use
1005 // a NEON instruction with an undef lane instead.
James Molloydb8ee4b2015-08-11 12:06:15 +00001006 setOperationAction(ISD::FMINNAN, MVT::f32, Legal);
1007 setOperationAction(ISD::FMAXNAN, MVT::f32, Legal);
James Molloyd616c642015-08-11 12:06:28 +00001008 setOperationAction(ISD::FMINNAN, MVT::v2f32, Legal);
1009 setOperationAction(ISD::FMAXNAN, MVT::v2f32, Legal);
1010 setOperationAction(ISD::FMINNAN, MVT::v4f32, Legal);
1011 setOperationAction(ISD::FMAXNAN, MVT::v4f32, Legal);
1012 }
James Molloydb8ee4b2015-08-11 12:06:15 +00001013
Chris Lattnerf3f4ad92007-11-27 22:36:16 +00001014 // We have target-specific dag combine patterns for the following nodes:
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00001015 // ARMISD::VMOVRRD - No need to call setTargetDAGCombine
Chris Lattner4147f082009-03-12 06:52:53 +00001016 setTargetDAGCombine(ISD::ADD);
1017 setTargetDAGCombine(ISD::SUB);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00001018 setTargetDAGCombine(ISD::MUL);
Jakob Stoklund Olesene45e22b2012-09-07 17:34:15 +00001019 setTargetDAGCombine(ISD::AND);
1020 setTargetDAGCombine(ISD::OR);
1021 setTargetDAGCombine(ISD::XOR);
Jim Grosbach11013ed2010-07-16 23:05:05 +00001022
Evan Chengf258a152012-02-23 02:58:19 +00001023 if (Subtarget->hasV6Ops())
1024 setTargetDAGCombine(ISD::SRL);
1025
Evan Cheng10043e22007-01-19 07:51:42 +00001026 setStackPointerRegisterToSaveRestore(ARM::SP);
Evan Cheng4401f882010-05-20 23:26:43 +00001027
Eric Christopher824f42f2015-05-12 01:26:05 +00001028 if (Subtarget->useSoftFloat() || Subtarget->isThumb1Only() ||
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001029 !Subtarget->hasVFP2())
Evan Cheng34c26042010-05-21 00:43:17 +00001030 setSchedulingPreference(Sched::RegPressure);
1031 else
1032 setSchedulingPreference(Sched::Hybrid);
Dale Johannesen58698d22007-05-17 21:31:21 +00001033
Evan Cheng3ae2b792011-01-06 06:52:41 +00001034 //// temporary - rewrite interface to use type
Jim Grosbach341ad3e2013-02-20 21:13:59 +00001035 MaxStoresPerMemset = 8;
Sanjay Patel1166f2f2015-07-30 21:41:50 +00001036 MaxStoresPerMemsetOptSize = 4;
Jim Grosbach341ad3e2013-02-20 21:13:59 +00001037 MaxStoresPerMemcpy = 4; // For @llvm.memcpy -> sequence of stores
Sanjay Patel1166f2f2015-07-30 21:41:50 +00001038 MaxStoresPerMemcpyOptSize = 2;
Jim Grosbach341ad3e2013-02-20 21:13:59 +00001039 MaxStoresPerMemmove = 4; // For @llvm.memmove -> sequence of stores
Sanjay Patel1166f2f2015-07-30 21:41:50 +00001040 MaxStoresPerMemmoveOptSize = 2;
Evan Chengb71233f2010-06-26 01:52:05 +00001041
Rafael Espindolaa76eccf2010-07-11 04:01:49 +00001042 // On ARM arguments smaller than 4 bytes are extended, so all arguments
1043 // are at least 4 bytes aligned.
1044 setMinStackArgumentAlignment(4);
1045
Benjamin Kramere31f31e2012-05-05 12:49:14 +00001046 // Prefer likely predicted branches to selects on out-of-order cores.
Junmo Park453f4aa2016-02-23 09:56:58 +00001047 PredictableSelectIsExpensive = Subtarget->getSchedModel().isOutOfOrder();
Benjamin Kramere31f31e2012-05-05 12:49:14 +00001048
Eli Friedman2518f832011-05-06 20:34:06 +00001049 setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2);
Evan Cheng10043e22007-01-19 07:51:42 +00001050}
1051
Eric Christopher824f42f2015-05-12 01:26:05 +00001052bool ARMTargetLowering::useSoftFloat() const {
1053 return Subtarget->useSoftFloat();
1054}
1055
Andrew Trick43f25632011-01-19 02:35:27 +00001056// FIXME: It might make sense to define the representative register class as the
1057// nearest super-register that has a non-null superset. For example, DPR_VFP2 is
1058// a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently,
1059// SPR's representative would be DPR_VFP2. This should work well if register
1060// pressure tracking were modified such that a register use would increment the
1061// pressure of the register class's representative and all of it's super
1062// classes' representatives transitively. We have not implemented this because
1063// of the difficulty prior to coalescing of modeling operand register classes
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001064// due to the common occurrence of cross class copies and subregister insertions
Andrew Trick43f25632011-01-19 02:35:27 +00001065// and extractions.
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001066std::pair<const TargetRegisterClass *, uint8_t>
1067ARMTargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
1068 MVT VT) const {
Craig Topper062a2ba2014-04-25 05:30:21 +00001069 const TargetRegisterClass *RRC = nullptr;
Evan Chenga77f3d32010-07-21 06:09:07 +00001070 uint8_t Cost = 1;
Patrik Hagglundf9eb1682012-12-19 11:30:36 +00001071 switch (VT.SimpleTy) {
Evan Cheng10f99a32010-07-19 22:15:08 +00001072 default:
Eric Christopher23a3a7c2015-02-26 00:00:24 +00001073 return TargetLowering::findRepresentativeClass(TRI, VT);
Evan Cheng28590382010-07-21 23:53:58 +00001074 // Use DPR as representative register class for all floating point
1075 // and vector types. Since there are 32 SPR registers and 32 DPR registers so
1076 // the cost is 1 for both f32 and f64.
1077 case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16:
Evan Chenga77f3d32010-07-21 06:09:07 +00001078 case MVT::v2i32: case MVT::v1i64: case MVT::v2f32:
Craig Topperc7242e02012-04-20 07:30:17 +00001079 RRC = &ARM::DPRRegClass;
Andrew Trick43f25632011-01-19 02:35:27 +00001080 // When NEON is used for SP, only half of the register file is available
1081 // because operations that define both SP and DP results will be constrained
1082 // to the VFP2 class (D0-D15). We currently model this constraint prior to
1083 // coalescing by double-counting the SP regs. See the FIXME above.
1084 if (Subtarget->useNEONForSinglePrecisionFP())
1085 Cost = 2;
Evan Chenga77f3d32010-07-21 06:09:07 +00001086 break;
1087 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1088 case MVT::v4f32: case MVT::v2f64:
Craig Topperc7242e02012-04-20 07:30:17 +00001089 RRC = &ARM::DPRRegClass;
Evan Cheng28590382010-07-21 23:53:58 +00001090 Cost = 2;
Evan Chenga77f3d32010-07-21 06:09:07 +00001091 break;
1092 case MVT::v4i64:
Craig Topperc7242e02012-04-20 07:30:17 +00001093 RRC = &ARM::DPRRegClass;
Evan Cheng28590382010-07-21 23:53:58 +00001094 Cost = 4;
Evan Chenga77f3d32010-07-21 06:09:07 +00001095 break;
1096 case MVT::v8i64:
Craig Topperc7242e02012-04-20 07:30:17 +00001097 RRC = &ARM::DPRRegClass;
Evan Cheng28590382010-07-21 23:53:58 +00001098 Cost = 8;
Evan Chenga77f3d32010-07-21 06:09:07 +00001099 break;
Evan Cheng10f99a32010-07-19 22:15:08 +00001100 }
Evan Chenga77f3d32010-07-21 06:09:07 +00001101 return std::make_pair(RRC, Cost);
Evan Cheng10f99a32010-07-19 22:15:08 +00001102}
1103
Evan Cheng10043e22007-01-19 07:51:42 +00001104const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
Matthias Braund04893f2015-05-07 21:33:59 +00001105 switch ((ARMISD::NodeType)Opcode) {
1106 case ARMISD::FIRST_NUMBER: break;
Evan Cheng10043e22007-01-19 07:51:42 +00001107 case ARMISD::Wrapper: return "ARMISD::Wrapper";
Evan Chengdfce83c2011-01-17 08:03:18 +00001108 case ARMISD::WrapperPIC: return "ARMISD::WrapperPIC";
Evan Cheng10043e22007-01-19 07:51:42 +00001109 case ARMISD::WrapperJT: return "ARMISD::WrapperJT";
Matthias Braunf45afee2015-05-07 22:16:10 +00001110 case ARMISD::COPY_STRUCT_BYVAL: return "ARMISD::COPY_STRUCT_BYVAL";
Evan Cheng10043e22007-01-19 07:51:42 +00001111 case ARMISD::CALL: return "ARMISD::CALL";
Evan Chengc3c949b42007-06-19 21:05:09 +00001112 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED";
Evan Cheng10043e22007-01-19 07:51:42 +00001113 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK";
1114 case ARMISD::tCALL: return "ARMISD::tCALL";
1115 case ARMISD::BRCOND: return "ARMISD::BRCOND";
1116 case ARMISD::BR_JT: return "ARMISD::BR_JT";
Evan Chengc6d70ae2009-07-29 02:18:14 +00001117 case ARMISD::BR2_JT: return "ARMISD::BR2_JT";
Evan Cheng10043e22007-01-19 07:51:42 +00001118 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG";
Tim Northoverd8407452013-10-01 14:33:28 +00001119 case ARMISD::INTRET_FLAG: return "ARMISD::INTRET_FLAG";
Evan Cheng10043e22007-01-19 07:51:42 +00001120 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD";
1121 case ARMISD::CMP: return "ARMISD::CMP";
Bill Wendling4b796472012-06-11 08:07:26 +00001122 case ARMISD::CMN: return "ARMISD::CMN";
David Goodwindbf11ba2009-06-29 15:33:01 +00001123 case ARMISD::CMPZ: return "ARMISD::CMPZ";
Evan Cheng10043e22007-01-19 07:51:42 +00001124 case ARMISD::CMPFP: return "ARMISD::CMPFP";
1125 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0";
Evan Cheng0cc4ad92010-07-13 19:27:42 +00001126 case ARMISD::BCC_i64: return "ARMISD::BCC_i64";
Evan Cheng10043e22007-01-19 07:51:42 +00001127 case ARMISD::FMSTAT: return "ARMISD::FMSTAT";
Evan Chenge87681c2012-02-23 01:19:06 +00001128
Evan Cheng10043e22007-01-19 07:51:42 +00001129 case ARMISD::CMOV: return "ARMISD::CMOV";
Bob Wilson7117a912009-03-20 22:42:55 +00001130
Evan Cheng10043e22007-01-19 07:51:42 +00001131 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG";
1132 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG";
1133 case ARMISD::RRX: return "ARMISD::RRX";
Bob Wilson7117a912009-03-20 22:42:55 +00001134
Evan Chenge8916542011-08-30 01:34:54 +00001135 case ARMISD::ADDC: return "ARMISD::ADDC";
1136 case ARMISD::ADDE: return "ARMISD::ADDE";
1137 case ARMISD::SUBC: return "ARMISD::SUBC";
1138 case ARMISD::SUBE: return "ARMISD::SUBE";
1139
Bob Wilson22806742010-09-22 22:09:21 +00001140 case ARMISD::VMOVRRD: return "ARMISD::VMOVRRD";
1141 case ARMISD::VMOVDRR: return "ARMISD::VMOVDRR";
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00001142
Evan Chengec6d7c92009-10-28 06:55:03 +00001143 case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
Matthias Braun3cd00c12015-07-16 22:34:16 +00001144 case ARMISD::EH_SJLJ_LONGJMP: return "ARMISD::EH_SJLJ_LONGJMP";
1145 case ARMISD::EH_SJLJ_SETUP_DISPATCH: return "ARMISD::EH_SJLJ_SETUP_DISPATCH";
Evan Chengec6d7c92009-10-28 06:55:03 +00001146
Dale Johannesend679ff72010-06-03 21:09:53 +00001147 case ARMISD::TC_RETURN: return "ARMISD::TC_RETURN";
Jim Grosbach535d3b42010-09-08 03:54:02 +00001148
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00001149 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
Bob Wilson2e076c42009-06-22 23:27:02 +00001150
Evan Chengb972e562009-08-07 00:34:42 +00001151 case ARMISD::DYN_ALLOC: return "ARMISD::DYN_ALLOC";
1152
Bob Wilson7ed59712010-10-30 00:54:37 +00001153 case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR";
Jim Grosbach53e88542009-12-10 00:11:09 +00001154
Evan Cheng8740ee32010-11-03 06:34:55 +00001155 case ARMISD::PRELOAD: return "ARMISD::PRELOAD";
1156
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00001157 case ARMISD::WIN__CHKSTK: return "ARMISD:::WIN__CHKSTK";
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00001158 case ARMISD::WIN__DBZCHK: return "ARMISD::WIN__DBZCHK";
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00001159
Bob Wilson2e076c42009-06-22 23:27:02 +00001160 case ARMISD::VCEQ: return "ARMISD::VCEQ";
Bob Wilsonf268d032010-12-18 00:04:26 +00001161 case ARMISD::VCEQZ: return "ARMISD::VCEQZ";
Bob Wilson2e076c42009-06-22 23:27:02 +00001162 case ARMISD::VCGE: return "ARMISD::VCGE";
Bob Wilsonf268d032010-12-18 00:04:26 +00001163 case ARMISD::VCGEZ: return "ARMISD::VCGEZ";
1164 case ARMISD::VCLEZ: return "ARMISD::VCLEZ";
Bob Wilson2e076c42009-06-22 23:27:02 +00001165 case ARMISD::VCGEU: return "ARMISD::VCGEU";
1166 case ARMISD::VCGT: return "ARMISD::VCGT";
Bob Wilsonf268d032010-12-18 00:04:26 +00001167 case ARMISD::VCGTZ: return "ARMISD::VCGTZ";
1168 case ARMISD::VCLTZ: return "ARMISD::VCLTZ";
Bob Wilson2e076c42009-06-22 23:27:02 +00001169 case ARMISD::VCGTU: return "ARMISD::VCGTU";
1170 case ARMISD::VTST: return "ARMISD::VTST";
1171
1172 case ARMISD::VSHL: return "ARMISD::VSHL";
1173 case ARMISD::VSHRs: return "ARMISD::VSHRs";
1174 case ARMISD::VSHRu: return "ARMISD::VSHRu";
Bob Wilson2e076c42009-06-22 23:27:02 +00001175 case ARMISD::VRSHRs: return "ARMISD::VRSHRs";
1176 case ARMISD::VRSHRu: return "ARMISD::VRSHRu";
1177 case ARMISD::VRSHRN: return "ARMISD::VRSHRN";
1178 case ARMISD::VQSHLs: return "ARMISD::VQSHLs";
1179 case ARMISD::VQSHLu: return "ARMISD::VQSHLu";
1180 case ARMISD::VQSHLsu: return "ARMISD::VQSHLsu";
1181 case ARMISD::VQSHRNs: return "ARMISD::VQSHRNs";
1182 case ARMISD::VQSHRNu: return "ARMISD::VQSHRNu";
1183 case ARMISD::VQSHRNsu: return "ARMISD::VQSHRNsu";
1184 case ARMISD::VQRSHRNs: return "ARMISD::VQRSHRNs";
1185 case ARMISD::VQRSHRNu: return "ARMISD::VQRSHRNu";
1186 case ARMISD::VQRSHRNsu: return "ARMISD::VQRSHRNsu";
Matthias Braund04893f2015-05-07 21:33:59 +00001187 case ARMISD::VSLI: return "ARMISD::VSLI";
1188 case ARMISD::VSRI: return "ARMISD::VSRI";
Bob Wilson2e076c42009-06-22 23:27:02 +00001189 case ARMISD::VGETLANEu: return "ARMISD::VGETLANEu";
1190 case ARMISD::VGETLANEs: return "ARMISD::VGETLANEs";
Bob Wilsona3f19012010-07-13 21:16:48 +00001191 case ARMISD::VMOVIMM: return "ARMISD::VMOVIMM";
Bob Wilsonbad47f62010-07-14 06:31:50 +00001192 case ARMISD::VMVNIMM: return "ARMISD::VMVNIMM";
Evan Cheng7ca4b6e2011-11-15 02:12:34 +00001193 case ARMISD::VMOVFPIMM: return "ARMISD::VMOVFPIMM";
Bob Wilsoneb54d512009-08-14 05:13:08 +00001194 case ARMISD::VDUP: return "ARMISD::VDUP";
Bob Wilsoncce31f62009-08-14 05:08:32 +00001195 case ARMISD::VDUPLANE: return "ARMISD::VDUPLANE";
Bob Wilson32cd8552009-08-19 17:03:43 +00001196 case ARMISD::VEXT: return "ARMISD::VEXT";
Bob Wilsonea3a4022009-08-12 22:31:50 +00001197 case ARMISD::VREV64: return "ARMISD::VREV64";
1198 case ARMISD::VREV32: return "ARMISD::VREV32";
1199 case ARMISD::VREV16: return "ARMISD::VREV16";
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00001200 case ARMISD::VZIP: return "ARMISD::VZIP";
1201 case ARMISD::VUZP: return "ARMISD::VUZP";
1202 case ARMISD::VTRN: return "ARMISD::VTRN";
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00001203 case ARMISD::VTBL1: return "ARMISD::VTBL1";
1204 case ARMISD::VTBL2: return "ARMISD::VTBL2";
Bob Wilson38ab35a2010-09-01 23:50:19 +00001205 case ARMISD::VMULLs: return "ARMISD::VMULLs";
1206 case ARMISD::VMULLu: return "ARMISD::VMULLu";
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00001207 case ARMISD::UMLAL: return "ARMISD::UMLAL";
1208 case ARMISD::SMLAL: return "ARMISD::SMLAL";
Bob Wilsond8a9a042010-06-04 00:04:02 +00001209 case ARMISD::BUILD_VECTOR: return "ARMISD::BUILD_VECTOR";
Jim Grosbach6e3b5fa2010-07-17 01:50:57 +00001210 case ARMISD::BFI: return "ARMISD::BFI";
Bob Wilson62a6f7e2010-11-28 06:51:11 +00001211 case ARMISD::VORRIMM: return "ARMISD::VORRIMM";
1212 case ARMISD::VBICIMM: return "ARMISD::VBICIMM";
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00001213 case ARMISD::VBSL: return "ARMISD::VBSL";
Scott Douglass953f9082015-10-05 14:49:54 +00001214 case ARMISD::MEMCPY: return "ARMISD::MEMCPY";
Bob Wilson2d790df2010-11-28 06:51:26 +00001215 case ARMISD::VLD2DUP: return "ARMISD::VLD2DUP";
1216 case ARMISD::VLD3DUP: return "ARMISD::VLD3DUP";
1217 case ARMISD::VLD4DUP: return "ARMISD::VLD4DUP";
Bob Wilson06fce872011-02-07 17:43:21 +00001218 case ARMISD::VLD1_UPD: return "ARMISD::VLD1_UPD";
1219 case ARMISD::VLD2_UPD: return "ARMISD::VLD2_UPD";
1220 case ARMISD::VLD3_UPD: return "ARMISD::VLD3_UPD";
1221 case ARMISD::VLD4_UPD: return "ARMISD::VLD4_UPD";
1222 case ARMISD::VLD2LN_UPD: return "ARMISD::VLD2LN_UPD";
1223 case ARMISD::VLD3LN_UPD: return "ARMISD::VLD3LN_UPD";
1224 case ARMISD::VLD4LN_UPD: return "ARMISD::VLD4LN_UPD";
1225 case ARMISD::VLD2DUP_UPD: return "ARMISD::VLD2DUP_UPD";
1226 case ARMISD::VLD3DUP_UPD: return "ARMISD::VLD3DUP_UPD";
1227 case ARMISD::VLD4DUP_UPD: return "ARMISD::VLD4DUP_UPD";
1228 case ARMISD::VST1_UPD: return "ARMISD::VST1_UPD";
1229 case ARMISD::VST2_UPD: return "ARMISD::VST2_UPD";
1230 case ARMISD::VST3_UPD: return "ARMISD::VST3_UPD";
1231 case ARMISD::VST4_UPD: return "ARMISD::VST4_UPD";
1232 case ARMISD::VST2LN_UPD: return "ARMISD::VST2LN_UPD";
1233 case ARMISD::VST3LN_UPD: return "ARMISD::VST3LN_UPD";
1234 case ARMISD::VST4LN_UPD: return "ARMISD::VST4LN_UPD";
Evan Cheng10043e22007-01-19 07:51:42 +00001235 }
Matthias Braund04893f2015-05-07 21:33:59 +00001236 return nullptr;
Evan Cheng10043e22007-01-19 07:51:42 +00001237}
1238
Mehdi Amini44ede332015-07-09 02:09:04 +00001239EVT ARMTargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1240 EVT VT) const {
1241 if (!VT.isVector())
1242 return getPointerTy(DL);
Duncan Sandsf2641e12011-09-06 19:07:46 +00001243 return VT.changeVectorElementTypeToInteger();
1244}
1245
Evan Cheng4cad68e2010-05-15 02:18:07 +00001246/// getRegClassFor - Return the register class that should be used for the
1247/// specified value type.
Patrik Hagglund5e6c3612012-12-13 06:34:11 +00001248const TargetRegisterClass *ARMTargetLowering::getRegClassFor(MVT VT) const {
Evan Cheng4cad68e2010-05-15 02:18:07 +00001249 // Map v4i64 to QQ registers but do not make the type legal. Similarly map
1250 // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to
1251 // load / store 4 to 8 consecutive D registers.
Evan Cheng3d214cd2010-05-15 02:20:21 +00001252 if (Subtarget->hasNEON()) {
1253 if (VT == MVT::v4i64)
Craig Topperc7242e02012-04-20 07:30:17 +00001254 return &ARM::QQPRRegClass;
1255 if (VT == MVT::v8i64)
1256 return &ARM::QQQQPRRegClass;
Evan Cheng3d214cd2010-05-15 02:20:21 +00001257 }
Evan Cheng4cad68e2010-05-15 02:18:07 +00001258 return TargetLowering::getRegClassFor(VT);
1259}
1260
John Brawn0dbcd652015-03-18 12:01:59 +00001261// memcpy, and other memory intrinsics, typically tries to use LDM/STM if the
1262// source/dest is aligned and the copy size is large enough. We therefore want
1263// to align such objects passed to memory intrinsics.
1264bool ARMTargetLowering::shouldAlignPointerArgs(CallInst *CI, unsigned &MinSize,
1265 unsigned &PrefAlign) const {
1266 if (!isa<MemIntrinsic>(CI))
1267 return false;
1268 MinSize = 8;
1269 // On ARM11 onwards (excluding M class) 8-byte aligned LDM is typically 1
1270 // cycle faster than 4-byte aligned LDM.
1271 PrefAlign = (Subtarget->hasV6Ops() && !Subtarget->isMClass() ? 8 : 4);
1272 return true;
1273}
1274
Eric Christopher84bdfd82010-07-21 22:26:11 +00001275// Create a fast isel object.
1276FastISel *
Bob Wilson3e6fa462012-08-03 04:06:28 +00001277ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
1278 const TargetLibraryInfo *libInfo) const {
1279 return ARM::createFastISel(funcInfo, libInfo);
Eric Christopher84bdfd82010-07-21 22:26:11 +00001280}
1281
Evan Cheng4401f882010-05-20 23:26:43 +00001282Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
Evan Chengbf914992010-05-28 23:25:23 +00001283 unsigned NumVals = N->getNumValues();
1284 if (!NumVals)
1285 return Sched::RegPressure;
1286
1287 for (unsigned i = 0; i != NumVals; ++i) {
Evan Cheng4401f882010-05-20 23:26:43 +00001288 EVT VT = N->getValueType(i);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00001289 if (VT == MVT::Glue || VT == MVT::Other)
Evan Cheng0c4c5ca2010-10-29 18:07:31 +00001290 continue;
Evan Cheng4401f882010-05-20 23:26:43 +00001291 if (VT.isFloatingPoint() || VT.isVector())
Dan Gohman4ed1afa2011-10-24 17:55:11 +00001292 return Sched::ILP;
Evan Cheng4401f882010-05-20 23:26:43 +00001293 }
Evan Chengbf914992010-05-28 23:25:23 +00001294
1295 if (!N->isMachineOpcode())
1296 return Sched::RegPressure;
1297
1298 // Load are scheduled for latency even if there instruction itinerary
1299 // is not available.
Eric Christopher1889fdc2015-01-29 00:19:39 +00001300 const TargetInstrInfo *TII = Subtarget->getInstrInfo();
Evan Cheng6cc775f2011-06-28 19:10:37 +00001301 const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
Evan Cheng0c4c5ca2010-10-29 18:07:31 +00001302
Evan Cheng6cc775f2011-06-28 19:10:37 +00001303 if (MCID.getNumDefs() == 0)
Evan Cheng0c4c5ca2010-10-29 18:07:31 +00001304 return Sched::RegPressure;
1305 if (!Itins->isEmpty() &&
Evan Cheng6cc775f2011-06-28 19:10:37 +00001306 Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2)
Dan Gohman4ed1afa2011-10-24 17:55:11 +00001307 return Sched::ILP;
Evan Chengbf914992010-05-28 23:25:23 +00001308
Evan Cheng4401f882010-05-20 23:26:43 +00001309 return Sched::RegPressure;
1310}
1311
Evan Cheng10043e22007-01-19 07:51:42 +00001312//===----------------------------------------------------------------------===//
1313// Lowering Code
1314//===----------------------------------------------------------------------===//
1315
Evan Cheng10043e22007-01-19 07:51:42 +00001316/// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
1317static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
1318 switch (CC) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001319 default: llvm_unreachable("Unknown condition code!");
Evan Cheng10043e22007-01-19 07:51:42 +00001320 case ISD::SETNE: return ARMCC::NE;
1321 case ISD::SETEQ: return ARMCC::EQ;
1322 case ISD::SETGT: return ARMCC::GT;
1323 case ISD::SETGE: return ARMCC::GE;
1324 case ISD::SETLT: return ARMCC::LT;
1325 case ISD::SETLE: return ARMCC::LE;
1326 case ISD::SETUGT: return ARMCC::HI;
1327 case ISD::SETUGE: return ARMCC::HS;
1328 case ISD::SETULT: return ARMCC::LO;
1329 case ISD::SETULE: return ARMCC::LS;
1330 }
1331}
1332
Bob Wilsona2e83332009-09-09 23:14:54 +00001333/// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
1334static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
Evan Cheng10043e22007-01-19 07:51:42 +00001335 ARMCC::CondCodes &CondCode2) {
Evan Cheng10043e22007-01-19 07:51:42 +00001336 CondCode2 = ARMCC::AL;
1337 switch (CC) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001338 default: llvm_unreachable("Unknown FP condition!");
Evan Cheng10043e22007-01-19 07:51:42 +00001339 case ISD::SETEQ:
1340 case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
1341 case ISD::SETGT:
1342 case ISD::SETOGT: CondCode = ARMCC::GT; break;
1343 case ISD::SETGE:
1344 case ISD::SETOGE: CondCode = ARMCC::GE; break;
1345 case ISD::SETOLT: CondCode = ARMCC::MI; break;
Bob Wilsona2e83332009-09-09 23:14:54 +00001346 case ISD::SETOLE: CondCode = ARMCC::LS; break;
Evan Cheng10043e22007-01-19 07:51:42 +00001347 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
1348 case ISD::SETO: CondCode = ARMCC::VC; break;
1349 case ISD::SETUO: CondCode = ARMCC::VS; break;
1350 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
1351 case ISD::SETUGT: CondCode = ARMCC::HI; break;
1352 case ISD::SETUGE: CondCode = ARMCC::PL; break;
1353 case ISD::SETLT:
1354 case ISD::SETULT: CondCode = ARMCC::LT; break;
1355 case ISD::SETLE:
1356 case ISD::SETULE: CondCode = ARMCC::LE; break;
1357 case ISD::SETNE:
1358 case ISD::SETUNE: CondCode = ARMCC::NE; break;
1359 }
Evan Cheng10043e22007-01-19 07:51:42 +00001360}
1361
Bob Wilsona4c22902009-04-17 19:07:39 +00001362//===----------------------------------------------------------------------===//
1363// Calling Convention Implementation
Bob Wilsona4c22902009-04-17 19:07:39 +00001364//===----------------------------------------------------------------------===//
1365
1366#include "ARMGenCallingConv.inc"
1367
Oliver Stannardc24f2172014-05-09 14:01:47 +00001368/// getEffectiveCallingConv - Get the effective calling convention, taking into
1369/// account presence of floating point hardware and calling convention
1370/// limitations, such as support for variadic functions.
1371CallingConv::ID
1372ARMTargetLowering::getEffectiveCallingConv(CallingConv::ID CC,
1373 bool isVarArg) const {
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001374 switch (CC) {
1375 default:
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00001376 llvm_unreachable("Unsupported calling convention");
Oliver Stannardc24f2172014-05-09 14:01:47 +00001377 case CallingConv::ARM_AAPCS:
1378 case CallingConv::ARM_APCS:
1379 case CallingConv::GHC:
1380 return CC;
Roman Levenstein2792b3f2016-03-10 04:35:09 +00001381 case CallingConv::PreserveMost:
1382 return CallingConv::PreserveMost;
Oliver Stannardc24f2172014-05-09 14:01:47 +00001383 case CallingConv::ARM_AAPCS_VFP:
1384 return isVarArg ? CallingConv::ARM_AAPCS : CallingConv::ARM_AAPCS_VFP;
1385 case CallingConv::C:
Evan Cheng08dd8c82010-10-22 18:23:05 +00001386 if (!Subtarget->isAAPCS_ABI())
Oliver Stannardc24f2172014-05-09 14:01:47 +00001387 return CallingConv::ARM_APCS;
Oliver Stannardb5e596f2014-06-13 08:33:03 +00001388 else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() &&
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001389 getTargetMachine().Options.FloatABIType == FloatABI::Hard &&
1390 !isVarArg)
Oliver Stannardc24f2172014-05-09 14:01:47 +00001391 return CallingConv::ARM_AAPCS_VFP;
1392 else
1393 return CallingConv::ARM_AAPCS;
1394 case CallingConv::Fast:
Manman Ren16026052016-01-11 23:50:43 +00001395 case CallingConv::CXX_FAST_TLS:
Oliver Stannardc24f2172014-05-09 14:01:47 +00001396 if (!Subtarget->isAAPCS_ABI()) {
Oliver Stannardb5e596f2014-06-13 08:33:03 +00001397 if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
Oliver Stannardc24f2172014-05-09 14:01:47 +00001398 return CallingConv::Fast;
1399 return CallingConv::ARM_APCS;
Oliver Stannardb5e596f2014-06-13 08:33:03 +00001400 } else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
Oliver Stannardc24f2172014-05-09 14:01:47 +00001401 return CallingConv::ARM_AAPCS_VFP;
1402 else
1403 return CallingConv::ARM_AAPCS;
Evan Cheng08dd8c82010-10-22 18:23:05 +00001404 }
Oliver Stannardc24f2172014-05-09 14:01:47 +00001405}
1406
1407/// CCAssignFnForNode - Selects the correct CCAssignFn for the given
1408/// CallingConvention.
1409CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
1410 bool Return,
1411 bool isVarArg) const {
1412 switch (getEffectiveCallingConv(CC, isVarArg)) {
1413 default:
1414 llvm_unreachable("Unsupported calling convention");
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001415 case CallingConv::ARM_APCS:
Evan Cheng08dd8c82010-10-22 18:23:05 +00001416 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
Oliver Stannardc24f2172014-05-09 14:01:47 +00001417 case CallingConv::ARM_AAPCS:
1418 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
1419 case CallingConv::ARM_AAPCS_VFP:
1420 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1421 case CallingConv::Fast:
1422 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
Eric Christopherb3322362012-08-03 00:05:53 +00001423 case CallingConv::GHC:
1424 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS_GHC);
Roman Levenstein2792b3f2016-03-10 04:35:09 +00001425 case CallingConv::PreserveMost:
1426 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001427 }
1428}
1429
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001430/// LowerCallResult - Lower the result values of a call into the
1431/// appropriate copies out of appropriate physical registers.
1432SDValue
1433ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel68c5f472009-09-02 08:44:58 +00001434 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001435 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001436 SDLoc dl, SelectionDAG &DAG,
Stephen Linb8bd2322013-04-20 05:14:40 +00001437 SmallVectorImpl<SDValue> &InVals,
1438 bool isThisReturn, SDValue ThisVal) const {
Bob Wilsona4c22902009-04-17 19:07:39 +00001439
Bob Wilsona4c22902009-04-17 19:07:39 +00001440 // Assign locations to each value returned by this call.
1441 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001442 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
1443 *DAG.getContext(), Call);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001444 CCInfo.AnalyzeCallResult(Ins,
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00001445 CCAssignFnForNode(CallConv, /* Return*/ true,
1446 isVarArg));
Bob Wilsona4c22902009-04-17 19:07:39 +00001447
1448 // Copy all of the result registers out of their specified physreg.
1449 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1450 CCValAssign VA = RVLocs[i];
1451
Stephen Linb8bd2322013-04-20 05:14:40 +00001452 // Pass 'this' value directly from the argument to return value, to avoid
1453 // reg unit interference
1454 if (i == 0 && isThisReturn) {
Stephen Lin8118e0b2013-04-23 19:42:25 +00001455 assert(!VA.needsCustom() && VA.getLocVT() == MVT::i32 &&
1456 "unexpected return calling convention register assignment");
Stephen Linb8bd2322013-04-20 05:14:40 +00001457 InVals.push_back(ThisVal);
1458 continue;
1459 }
1460
Bob Wilson0041bd32009-04-25 00:33:20 +00001461 SDValue Val;
Bob Wilsona4c22902009-04-17 19:07:39 +00001462 if (VA.needsCustom()) {
Bob Wilson2e076c42009-06-22 23:27:02 +00001463 // Handle f64 or half of a v2f64.
Owen Anderson9f944592009-08-11 20:47:22 +00001464 SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
Bob Wilsona4c22902009-04-17 19:07:39 +00001465 InFlag);
Bob Wilsonf134b2d2009-04-24 17:00:36 +00001466 Chain = Lo.getValue(1);
1467 InFlag = Lo.getValue(2);
Bob Wilsona4c22902009-04-17 19:07:39 +00001468 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson9f944592009-08-11 20:47:22 +00001469 SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
Bob Wilsonf134b2d2009-04-24 17:00:36 +00001470 InFlag);
1471 Chain = Hi.getValue(1);
1472 InFlag = Hi.getValue(2);
Christian Pirkerb5728192014-05-08 14:06:24 +00001473 if (!Subtarget->isLittle())
1474 std::swap (Lo, Hi);
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00001475 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Bob Wilson2e076c42009-06-22 23:27:02 +00001476
Owen Anderson9f944592009-08-11 20:47:22 +00001477 if (VA.getLocVT() == MVT::v2f64) {
1478 SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1479 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001480 DAG.getConstant(0, dl, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00001481
1482 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson9f944592009-08-11 20:47:22 +00001483 Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
Bob Wilson2e076c42009-06-22 23:27:02 +00001484 Chain = Lo.getValue(1);
1485 InFlag = Lo.getValue(2);
1486 VA = RVLocs[++i]; // skip ahead to next loc
Owen Anderson9f944592009-08-11 20:47:22 +00001487 Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
Bob Wilson2e076c42009-06-22 23:27:02 +00001488 Chain = Hi.getValue(1);
1489 InFlag = Hi.getValue(2);
Christian Pirkerb5728192014-05-08 14:06:24 +00001490 if (!Subtarget->isLittle())
1491 std::swap (Lo, Hi);
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00001492 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Owen Anderson9f944592009-08-11 20:47:22 +00001493 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001494 DAG.getConstant(1, dl, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00001495 }
Bob Wilsona4c22902009-04-17 19:07:39 +00001496 } else {
Bob Wilson0041bd32009-04-25 00:33:20 +00001497 Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1498 InFlag);
Bob Wilsonf134b2d2009-04-24 17:00:36 +00001499 Chain = Val.getValue(1);
1500 InFlag = Val.getValue(2);
Bob Wilsona4c22902009-04-17 19:07:39 +00001501 }
Bob Wilson0041bd32009-04-25 00:33:20 +00001502
1503 switch (VA.getLocInfo()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001504 default: llvm_unreachable("Unknown loc info!");
Bob Wilson0041bd32009-04-25 00:33:20 +00001505 case CCValAssign::Full: break;
1506 case CCValAssign::BCvt:
Wesley Peck527da1b2010-11-23 03:31:01 +00001507 Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val);
Bob Wilson0041bd32009-04-25 00:33:20 +00001508 break;
1509 }
1510
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001511 InVals.push_back(Val);
Bob Wilsona4c22902009-04-17 19:07:39 +00001512 }
1513
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001514 return Chain;
Bob Wilsona4c22902009-04-17 19:07:39 +00001515}
1516
Bob Wilsonea09d4a2009-04-17 20:35:10 +00001517/// LowerMemOpCallTo - Store the argument to the stack.
Bob Wilsona4c22902009-04-17 19:07:39 +00001518SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001519ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
1520 SDValue StackPtr, SDValue Arg,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001521 SDLoc dl, SelectionDAG &DAG,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001522 const CCValAssign &VA,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001523 ISD::ArgFlagsTy Flags) const {
Bob Wilsona4c22902009-04-17 19:07:39 +00001524 unsigned LocMemOffset = VA.getLocMemOffset();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001525 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
Mehdi Amini44ede332015-07-09 02:09:04 +00001526 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()),
1527 StackPtr, PtrOff);
Alex Lorenze40c8a22015-08-11 23:09:45 +00001528 return DAG.getStore(
1529 Chain, dl, Arg, PtrOff,
1530 MachinePointerInfo::getStack(DAG.getMachineFunction(), LocMemOffset),
1531 false, false, 0);
Evan Cheng10043e22007-01-19 07:51:42 +00001532}
1533
Andrew Trickef9de2a2013-05-25 02:42:55 +00001534void ARMTargetLowering::PassF64ArgInRegs(SDLoc dl, SelectionDAG &DAG,
Bob Wilson2e076c42009-06-22 23:27:02 +00001535 SDValue Chain, SDValue &Arg,
1536 RegsToPassVector &RegsToPass,
1537 CCValAssign &VA, CCValAssign &NextVA,
1538 SDValue &StackPtr,
Craig Topperb94011f2013-07-14 04:42:23 +00001539 SmallVectorImpl<SDValue> &MemOpChains,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001540 ISD::ArgFlagsTy Flags) const {
Bob Wilson2e076c42009-06-22 23:27:02 +00001541
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00001542 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00001543 DAG.getVTList(MVT::i32, MVT::i32), Arg);
Christian Pirkerb5728192014-05-08 14:06:24 +00001544 unsigned id = Subtarget->isLittle() ? 0 : 1;
1545 RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd.getValue(id)));
Bob Wilson2e076c42009-06-22 23:27:02 +00001546
1547 if (NextVA.isRegLoc())
Christian Pirkerb5728192014-05-08 14:06:24 +00001548 RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1-id)));
Bob Wilson2e076c42009-06-22 23:27:02 +00001549 else {
1550 assert(NextVA.isMemLoc());
Craig Topper062a2ba2014-04-25 05:30:21 +00001551 if (!StackPtr.getNode())
Mehdi Amini44ede332015-07-09 02:09:04 +00001552 StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP,
1553 getPointerTy(DAG.getDataLayout()));
Bob Wilson2e076c42009-06-22 23:27:02 +00001554
Christian Pirkerb5728192014-05-08 14:06:24 +00001555 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1-id),
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001556 dl, DAG, NextVA,
1557 Flags));
Bob Wilson2e076c42009-06-22 23:27:02 +00001558 }
1559}
1560
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001561/// LowerCall - Lowering a call into a callseq_start <-
Evan Cheng4b6c8f72007-02-03 08:53:01 +00001562/// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
1563/// nodes.
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001564SDValue
Justin Holewinskiaa583972012-05-25 16:35:28 +00001565ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohman21cea8a2010-04-17 15:26:15 +00001566 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskiaa583972012-05-25 16:35:28 +00001567 SelectionDAG &DAG = CLI.DAG;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001568 SDLoc &dl = CLI.DL;
Craig Topperb94011f2013-07-14 04:42:23 +00001569 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
1570 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
1571 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskiaa583972012-05-25 16:35:28 +00001572 SDValue Chain = CLI.Chain;
1573 SDValue Callee = CLI.Callee;
1574 bool &isTailCall = CLI.IsTailCall;
1575 CallingConv::ID CallConv = CLI.CallConv;
1576 bool doesNotRet = CLI.DoesNotReturn;
1577 bool isVarArg = CLI.IsVarArg;
1578
Dale Johannesend679ff72010-06-03 21:09:53 +00001579 MachineFunction &MF = DAG.getMachineFunction();
Stephen Lin4eedb292013-04-23 19:30:12 +00001580 bool isStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
1581 bool isThisReturn = false;
1582 bool isSibCall = false;
Akira Hatanakad9699bc2015-06-09 19:07:19 +00001583 auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
Saleem Abdulrasool0d96f3d2014-03-11 15:09:54 +00001584
Bob Wilson8decdc42011-10-07 17:17:49 +00001585 // Disable tail calls if they're not supported.
Akira Hatanakad9699bc2015-06-09 19:07:19 +00001586 if (!Subtarget->supportsTailCall() || Attr.getValueAsString() == "true")
Bob Wilson3c9ed762010-08-13 22:43:33 +00001587 isTailCall = false;
Saleem Abdulrasool0d96f3d2014-03-11 15:09:54 +00001588
Dale Johannesend679ff72010-06-03 21:09:53 +00001589 if (isTailCall) {
1590 // Check if it's really possible to do a tail call.
1591 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Stephen Lin4eedb292013-04-23 19:30:12 +00001592 isVarArg, isStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanfe7532a2010-07-07 15:54:55 +00001593 Outs, OutVals, Ins, DAG);
Reid Kleckner5772b772014-04-24 20:14:34 +00001594 if (!isTailCall && CLI.CS && CLI.CS->isMustTailCall())
1595 report_fatal_error("failed to perform tail call elimination on a call "
1596 "site marked musttail");
Dale Johannesend679ff72010-06-03 21:09:53 +00001597 // We don't support GuaranteedTailCallOpt for ARM, only automatically
1598 // detected sibcalls.
1599 if (isTailCall) {
1600 ++NumTailCalls;
Stephen Lin4eedb292013-04-23 19:30:12 +00001601 isSibCall = true;
Dale Johannesend679ff72010-06-03 21:09:53 +00001602 }
1603 }
Evan Cheng10043e22007-01-19 07:51:42 +00001604
Bob Wilsona4c22902009-04-17 19:07:39 +00001605 // Analyze operands of the call, assigning locations to each operand.
1606 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00001607 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
1608 *DAG.getContext(), Call);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001609 CCInfo.AnalyzeCallOperands(Outs,
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00001610 CCAssignFnForNode(CallConv, /* Return*/ false,
1611 isVarArg));
Evan Cheng10043e22007-01-19 07:51:42 +00001612
Bob Wilsona4c22902009-04-17 19:07:39 +00001613 // Get a count of how many bytes are to be pushed on the stack.
1614 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Cheng10043e22007-01-19 07:51:42 +00001615
Dale Johannesend679ff72010-06-03 21:09:53 +00001616 // For tail calls, memory operands are available in our caller's stack.
Stephen Lin4eedb292013-04-23 19:30:12 +00001617 if (isSibCall)
Dale Johannesend679ff72010-06-03 21:09:53 +00001618 NumBytes = 0;
1619
Evan Cheng10043e22007-01-19 07:51:42 +00001620 // Adjust the stack pointer for the new arguments...
1621 // These operations are automatically eliminated by the prolog/epilog pass
Stephen Lin4eedb292013-04-23 19:30:12 +00001622 if (!isSibCall)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001623 Chain = DAG.getCALLSEQ_START(Chain,
1624 DAG.getIntPtrConstant(NumBytes, dl, true), dl);
Evan Cheng10043e22007-01-19 07:51:42 +00001625
Mehdi Amini44ede332015-07-09 02:09:04 +00001626 SDValue StackPtr =
1627 DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy(DAG.getDataLayout()));
Evan Cheng10043e22007-01-19 07:51:42 +00001628
Bob Wilson2e076c42009-06-22 23:27:02 +00001629 RegsToPassVector RegsToPass;
Bob Wilsona4c22902009-04-17 19:07:39 +00001630 SmallVector<SDValue, 8> MemOpChains;
Evan Cheng10043e22007-01-19 07:51:42 +00001631
Bob Wilsona4c22902009-04-17 19:07:39 +00001632 // Walk the register/memloc assignments, inserting copies/loads. In the case
Bob Wilsonea09d4a2009-04-17 20:35:10 +00001633 // of tail call optimization, arguments are handled later.
Bob Wilsona4c22902009-04-17 19:07:39 +00001634 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1635 i != e;
1636 ++i, ++realArgIdx) {
1637 CCValAssign &VA = ArgLocs[i];
Dan Gohmanfe7532a2010-07-07 15:54:55 +00001638 SDValue Arg = OutVals[realArgIdx];
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001639 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00001640 bool isByVal = Flags.isByVal();
Evan Cheng10043e22007-01-19 07:51:42 +00001641
Bob Wilsona4c22902009-04-17 19:07:39 +00001642 // Promote the value if needed.
1643 switch (VA.getLocInfo()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001644 default: llvm_unreachable("Unknown loc info!");
Bob Wilsona4c22902009-04-17 19:07:39 +00001645 case CCValAssign::Full: break;
1646 case CCValAssign::SExt:
1647 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1648 break;
1649 case CCValAssign::ZExt:
1650 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1651 break;
1652 case CCValAssign::AExt:
1653 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1654 break;
1655 case CCValAssign::BCvt:
Wesley Peck527da1b2010-11-23 03:31:01 +00001656 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
Bob Wilsona4c22902009-04-17 19:07:39 +00001657 break;
Evan Cheng10043e22007-01-19 07:51:42 +00001658 }
1659
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00001660 // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
Bob Wilsona4c22902009-04-17 19:07:39 +00001661 if (VA.needsCustom()) {
Owen Anderson9f944592009-08-11 20:47:22 +00001662 if (VA.getLocVT() == MVT::v2f64) {
1663 SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001664 DAG.getConstant(0, dl, MVT::i32));
Owen Anderson9f944592009-08-11 20:47:22 +00001665 SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001666 DAG.getConstant(1, dl, MVT::i32));
Bob Wilsona4c22902009-04-17 19:07:39 +00001667
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001668 PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
Bob Wilson2e076c42009-06-22 23:27:02 +00001669 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1670
1671 VA = ArgLocs[++i]; // skip ahead to next loc
1672 if (VA.isRegLoc()) {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001673 PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
Bob Wilson2e076c42009-06-22 23:27:02 +00001674 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1675 } else {
1676 assert(VA.isMemLoc());
Bob Wilson2e076c42009-06-22 23:27:02 +00001677
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001678 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
1679 dl, DAG, VA, Flags));
Bob Wilson2e076c42009-06-22 23:27:02 +00001680 }
1681 } else {
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001682 PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
Bob Wilson2e076c42009-06-22 23:27:02 +00001683 StackPtr, MemOpChains, Flags);
Bob Wilsona4c22902009-04-17 19:07:39 +00001684 }
1685 } else if (VA.isRegLoc()) {
Stephen Lin8118e0b2013-04-23 19:42:25 +00001686 if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i32) {
1687 assert(VA.getLocVT() == MVT::i32 &&
1688 "unexpected calling convention register assignment");
1689 assert(!Ins.empty() && Ins[0].VT == MVT::i32 &&
Stephen Linb8bd2322013-04-20 05:14:40 +00001690 "unexpected use of 'returned'");
Stephen Lin4eedb292013-04-23 19:30:12 +00001691 isThisReturn = true;
Stephen Linb8bd2322013-04-20 05:14:40 +00001692 }
Bob Wilsona4c22902009-04-17 19:07:39 +00001693 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001694 } else if (isByVal) {
1695 assert(VA.isMemLoc());
1696 unsigned offset = 0;
1697
1698 // True if this byval aggregate will be split between registers
1699 // and memory.
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001700 unsigned ByValArgsCount = CCInfo.getInRegsParamsCount();
Daniel Sanders8104b752014-11-01 19:32:23 +00001701 unsigned CurByValIdx = CCInfo.getInRegsParamsProcessed();
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001702
1703 if (CurByValIdx < ByValArgsCount) {
1704
1705 unsigned RegBegin, RegEnd;
1706 CCInfo.getInRegsParamInfo(CurByValIdx, RegBegin, RegEnd);
1707
Mehdi Amini44ede332015-07-09 02:09:04 +00001708 EVT PtrVT =
1709 DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001710 unsigned int i, j;
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001711 for (i = 0, j = RegBegin; j < RegEnd; i++, j++) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001712 SDValue Const = DAG.getConstant(4*i, dl, MVT::i32);
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001713 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
1714 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
1715 MachinePointerInfo(),
Manman Ren5a787552013-10-07 19:47:53 +00001716 false, false, false,
1717 DAG.InferPtrAlignment(AddArg));
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001718 MemOpChains.push_back(Load.getValue(1));
1719 RegsToPass.push_back(std::make_pair(j, Load));
1720 }
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001721
1722 // If parameter size outsides register area, "offset" value
1723 // helps us to calculate stack slot for remained part properly.
1724 offset = RegEnd - RegBegin;
1725
1726 CCInfo.nextInRegsParam();
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001727 }
1728
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001729 if (Flags.getByValSize() > 4*offset) {
Mehdi Amini44ede332015-07-09 02:09:04 +00001730 auto PtrVT = getPointerTy(DAG.getDataLayout());
Manman Ren9f911162012-06-01 02:44:42 +00001731 unsigned LocMemOffset = VA.getLocMemOffset();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001732 SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
Mehdi Amini44ede332015-07-09 02:09:04 +00001733 SDValue Dst = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, StkPtrOff);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001734 SDValue SrcOffset = DAG.getIntPtrConstant(4*offset, dl);
Mehdi Amini44ede332015-07-09 02:09:04 +00001735 SDValue Src = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, SrcOffset);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001736 SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset, dl,
Manman Ren9f911162012-06-01 02:44:42 +00001737 MVT::i32);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001738 SDValue AlignNode = DAG.getConstant(Flags.getByValAlign(), dl,
1739 MVT::i32);
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001740
Manman Ren9f911162012-06-01 02:44:42 +00001741 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
Manman Rene8735522012-06-01 19:33:18 +00001742 SDValue Ops[] = { Chain, Dst, Src, SizeNode, AlignNode};
Manman Ren9f911162012-06-01 02:44:42 +00001743 MemOpChains.push_back(DAG.getNode(ARMISD::COPY_STRUCT_BYVAL, dl, VTs,
Craig Topper48d114b2014-04-26 18:35:24 +00001744 Ops));
Manman Ren9f911162012-06-01 02:44:42 +00001745 }
Stephen Lin4eedb292013-04-23 19:30:12 +00001746 } else if (!isSibCall) {
Bob Wilsona4c22902009-04-17 19:07:39 +00001747 assert(VA.isMemLoc());
Bob Wilsona4c22902009-04-17 19:07:39 +00001748
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001749 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1750 dl, DAG, VA, Flags));
Bob Wilsona4c22902009-04-17 19:07:39 +00001751 }
Evan Cheng10043e22007-01-19 07:51:42 +00001752 }
1753
1754 if (!MemOpChains.empty())
Craig Topper48d114b2014-04-26 18:35:24 +00001755 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
Evan Cheng10043e22007-01-19 07:51:42 +00001756
1757 // Build a sequence of copy-to-reg nodes chained together with token chain
1758 // and flag operands which copy the outgoing args into the appropriate regs.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001759 SDValue InFlag;
Dale Johannesen44f9dfc2010-06-15 22:08:33 +00001760 // Tail call byval lowering might overwrite argument registers so in case of
1761 // tail call optimization the copies to registers are lowered later.
1762 if (!isTailCall)
1763 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1764 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1765 RegsToPass[i].second, InFlag);
1766 InFlag = Chain.getValue(1);
1767 }
Evan Cheng10043e22007-01-19 07:51:42 +00001768
Dale Johannesend679ff72010-06-03 21:09:53 +00001769 // For tail calls lower the arguments to the 'real' stack slot.
1770 if (isTailCall) {
1771 // Force all the incoming stack arguments to be loaded from the stack
1772 // before any new outgoing arguments are stored to the stack, because the
1773 // outgoing stack slots may alias the incoming argument stack slots, and
1774 // the alias isn't otherwise explicit. This is slightly more conservative
1775 // than necessary, because it means that each store effectively depends
1776 // on every argument instead of just those arguments it would clobber.
1777
Chris Lattner0ab5e2c2011-04-15 05:18:47 +00001778 // Do not flag preceding copytoreg stuff together with the following stuff.
Dale Johannesend679ff72010-06-03 21:09:53 +00001779 InFlag = SDValue();
1780 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1781 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1782 RegsToPass[i].second, InFlag);
1783 InFlag = Chain.getValue(1);
1784 }
Stephen Lind36fd2c2013-04-20 00:47:48 +00001785 InFlag = SDValue();
Dale Johannesend679ff72010-06-03 21:09:53 +00001786 }
1787
Bill Wendling24c79f22008-09-16 21:48:12 +00001788 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1789 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1790 // node so that legalize doesn't hack it.
Evan Cheng10043e22007-01-19 07:51:42 +00001791 bool isDirect = false;
1792 bool isARMFunc = false;
Evan Chengc3c949b42007-06-19 21:05:09 +00001793 bool isLocalARMFunc = false;
Evan Cheng408aa562009-11-06 22:24:13 +00001794 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Mehdi Amini44ede332015-07-09 02:09:04 +00001795 auto PtrVt = getPointerTy(DAG.getDataLayout());
Jim Grosbach32bb3622010-04-14 22:28:31 +00001796
Akira Hatanaka1bc8af72015-07-07 06:54:42 +00001797 if (Subtarget->genLongCalls()) {
Saleem Abdulrasool90386ad2014-06-07 20:29:27 +00001798 assert((Subtarget->isTargetWindows() ||
1799 getTargetMachine().getRelocationModel() == Reloc::Static) &&
1800 "long-calls with non-static relocation model!");
Jim Grosbach32bb3622010-04-14 22:28:31 +00001801 // Handle a global address or an external symbol. If it's not one of
1802 // those, the target's already in a register, so we don't need to do
1803 // anything extra.
1804 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anders Carlsson47bccf72010-04-15 03:11:28 +00001805 const GlobalValue *GV = G->getGlobal();
Jim Grosbach32bb3622010-04-14 22:28:31 +00001806 // Create a constant pool entry for the callee address
Evan Chengdfce83c2011-01-17 08:03:18 +00001807 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendling7753d662011-10-01 08:00:54 +00001808 ARMConstantPoolValue *CPV =
1809 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0);
1810
Jim Grosbach32bb3622010-04-14 22:28:31 +00001811 // Get the address of the callee into a register
Mehdi Amini44ede332015-07-09 02:09:04 +00001812 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4);
Jim Grosbach32bb3622010-04-14 22:28:31 +00001813 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Alex Lorenze40c8a22015-08-11 23:09:45 +00001814 Callee = DAG.getLoad(
1815 PtrVt, dl, DAG.getEntryNode(), CPAddr,
1816 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
1817 false, false, 0);
Jim Grosbach32bb3622010-04-14 22:28:31 +00001818 } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) {
1819 const char *Sym = S->getSymbol();
1820
1821 // Create a constant pool entry for the callee address
Evan Chengdfce83c2011-01-17 08:03:18 +00001822 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendlingc214cb02011-10-01 08:58:29 +00001823 ARMConstantPoolValue *CPV =
1824 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1825 ARMPCLabelIndex, 0);
Jim Grosbach32bb3622010-04-14 22:28:31 +00001826 // Get the address of the callee into a register
Mehdi Amini44ede332015-07-09 02:09:04 +00001827 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4);
Jim Grosbach32bb3622010-04-14 22:28:31 +00001828 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Alex Lorenze40c8a22015-08-11 23:09:45 +00001829 Callee = DAG.getLoad(
1830 PtrVt, dl, DAG.getEntryNode(), CPAddr,
1831 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
1832 false, false, 0);
Jim Grosbach32bb3622010-04-14 22:28:31 +00001833 }
1834 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Dan Gohmanbcaf6812010-04-15 01:51:59 +00001835 const GlobalValue *GV = G->getGlobal();
Evan Cheng10043e22007-01-19 07:51:42 +00001836 isDirect = true;
Peter Collingbourne6a9d1772015-07-05 20:52:35 +00001837 bool isDef = GV->isStrongDefinitionForLinker();
1838 bool isStub = (!isDef && Subtarget->isTargetMachO()) &&
Evan Cheng10043e22007-01-19 07:51:42 +00001839 getTargetMachine().getRelocationModel() != Reloc::Static;
Tim Northover2a417b92014-08-06 11:13:14 +00001840 isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass());
Evan Chengc3c949b42007-06-19 21:05:09 +00001841 // ARM call to a local ARM function is predicable.
Peter Collingbourne6a9d1772015-07-05 20:52:35 +00001842 isLocalARMFunc = !Subtarget->isThumb() && (isDef || !ARMInterworking);
Evan Cheng83f35172007-01-30 20:37:08 +00001843 // tBX takes a register source operand.
Tim Northover72360d22013-12-02 10:35:41 +00001844 if (isStub && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
Tim Northoverd6a729b2014-01-06 14:28:05 +00001845 assert(Subtarget->isTargetMachO() && "WrapperPIC use on non-MachO?");
Mehdi Amini44ede332015-07-09 02:09:04 +00001846 Callee = DAG.getNode(
1847 ARMISD::WrapperPIC, dl, PtrVt,
1848 DAG.getTargetGlobalAddress(GV, dl, PtrVt, 0, ARMII::MO_NONLAZY));
1849 Callee = DAG.getLoad(PtrVt, dl, DAG.getEntryNode(), Callee,
Alex Lorenze40c8a22015-08-11 23:09:45 +00001850 MachinePointerInfo::getGOT(DAG.getMachineFunction()),
1851 false, false, true, 0);
Saleem Abdulrasool763f9a52014-07-07 05:18:35 +00001852 } else if (Subtarget->isTargetCOFF()) {
1853 assert(Subtarget->isTargetWindows() &&
1854 "Windows is the only supported COFF target");
Reid Klecknerc35e7f52015-06-11 01:31:48 +00001855 unsigned TargetFlags = GV->hasDLLImportStorageClass()
1856 ? ARMII::MO_DLLIMPORT
1857 : ARMII::MO_NO_FLAG;
Mehdi Amini44ede332015-07-09 02:09:04 +00001858 Callee =
1859 DAG.getTargetGlobalAddress(GV, dl, PtrVt, /*Offset=*/0, TargetFlags);
Saleem Abdulrasool763f9a52014-07-07 05:18:35 +00001860 if (GV->hasDLLImportStorageClass())
Mehdi Amini44ede332015-07-09 02:09:04 +00001861 Callee =
1862 DAG.getLoad(PtrVt, dl, DAG.getEntryNode(),
1863 DAG.getNode(ARMISD::Wrapper, dl, PtrVt, Callee),
Alex Lorenze40c8a22015-08-11 23:09:45 +00001864 MachinePointerInfo::getGOT(DAG.getMachineFunction()),
1865 false, false, false, 0);
Jim Grosbach85dcd3d2010-09-22 23:27:36 +00001866 } else {
1867 // On ELF targets for PIC code, direct calls should go through the PLT
1868 unsigned OpFlags = 0;
1869 if (Subtarget->isTargetELF() &&
Chad Rosier537ff502013-02-28 19:16:42 +00001870 getTargetMachine().getRelocationModel() == Reloc::PIC_)
Jim Grosbach85dcd3d2010-09-22 23:27:36 +00001871 OpFlags = ARMII::MO_PLT;
Mehdi Amini44ede332015-07-09 02:09:04 +00001872 Callee = DAG.getTargetGlobalAddress(GV, dl, PtrVt, 0, OpFlags);
Jim Grosbach85dcd3d2010-09-22 23:27:36 +00001873 }
Bill Wendling24c79f22008-09-16 21:48:12 +00001874 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Evan Cheng10043e22007-01-19 07:51:42 +00001875 isDirect = true;
Tim Northoverd6a729b2014-01-06 14:28:05 +00001876 bool isStub = Subtarget->isTargetMachO() &&
Evan Cheng10043e22007-01-19 07:51:42 +00001877 getTargetMachine().getRelocationModel() != Reloc::Static;
Tim Northover2a417b92014-08-06 11:13:14 +00001878 isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass());
Evan Cheng83f35172007-01-30 20:37:08 +00001879 // tBX takes a register source operand.
1880 const char *Sym = S->getSymbol();
David Goodwin22c2fba2009-07-08 23:10:31 +00001881 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
Evan Chengdfce83c2011-01-17 08:03:18 +00001882 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendlingc214cb02011-10-01 08:58:29 +00001883 ARMConstantPoolValue *CPV =
1884 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1885 ARMPCLabelIndex, 4);
Mehdi Amini44ede332015-07-09 02:09:04 +00001886 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00001887 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Alex Lorenze40c8a22015-08-11 23:09:45 +00001888 Callee = DAG.getLoad(
1889 PtrVt, dl, DAG.getEntryNode(), CPAddr,
1890 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
1891 false, false, 0);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001892 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
Mehdi Amini44ede332015-07-09 02:09:04 +00001893 Callee = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVt, Callee, PICLabel);
Jim Grosbach85dcd3d2010-09-22 23:27:36 +00001894 } else {
1895 unsigned OpFlags = 0;
1896 // On ELF targets for PIC code, direct calls should go through the PLT
1897 if (Subtarget->isTargetELF() &&
1898 getTargetMachine().getRelocationModel() == Reloc::PIC_)
1899 OpFlags = ARMII::MO_PLT;
Mehdi Amini44ede332015-07-09 02:09:04 +00001900 Callee = DAG.getTargetExternalSymbol(Sym, PtrVt, OpFlags);
Jim Grosbach85dcd3d2010-09-22 23:27:36 +00001901 }
Evan Cheng10043e22007-01-19 07:51:42 +00001902 }
1903
Lauro Ramos Venancioa88c4a72007-03-20 17:57:23 +00001904 // FIXME: handle tail calls differently.
1905 unsigned CallOpc;
Evan Cheng6ab54fd2009-08-01 00:16:10 +00001906 if (Subtarget->isThumb()) {
1907 if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
Lauro Ramos Venancioa88c4a72007-03-20 17:57:23 +00001908 CallOpc = ARMISD::CALL_NOLINK;
1909 else
1910 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1911 } else {
Evan Cheng21b03482012-11-10 02:09:05 +00001912 if (!isDirect && !Subtarget->hasV5TOps())
Evan Cheng65f9d192012-02-28 18:51:51 +00001913 CallOpc = ARMISD::CALL_NOLINK;
Evan Cheng21b03482012-11-10 02:09:05 +00001914 else if (doesNotRet && isDirect && Subtarget->hasRAS() &&
Sanjay Patel924879a2015-08-04 15:49:57 +00001915 // Emit regular call when code size is the priority
1916 !MF.getFunction()->optForMinSize())
Evan Cheng65f9d192012-02-28 18:51:51 +00001917 // "mov lr, pc; b _foo" to avoid confusing the RSP
1918 CallOpc = ARMISD::CALL_NOLINK;
1919 else
1920 CallOpc = isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL;
Lauro Ramos Venancioa88c4a72007-03-20 17:57:23 +00001921 }
Lauro Ramos Venancioa88c4a72007-03-20 17:57:23 +00001922
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001923 std::vector<SDValue> Ops;
Evan Cheng10043e22007-01-19 07:51:42 +00001924 Ops.push_back(Chain);
1925 Ops.push_back(Callee);
1926
1927 // Add argument registers to the end of the list so that they are known live
1928 // into the call.
1929 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1930 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1931 RegsToPass[i].second.getValueType()));
1932
Jakob Stoklund Olesenfa7a5372012-02-24 01:19:29 +00001933 // Add a register mask operand representing the call-preserved registers.
Matthias Braunc22630e2013-10-04 16:52:54 +00001934 if (!isTailCall) {
1935 const uint32_t *Mask;
Eric Christopher1889fdc2015-01-29 00:19:39 +00001936 const ARMBaseRegisterInfo *ARI = Subtarget->getRegisterInfo();
Matthias Braunc22630e2013-10-04 16:52:54 +00001937 if (isThisReturn) {
1938 // For 'this' returns, use the R0-preserving mask if applicable
Eric Christopher9deb75d2015-03-11 22:42:13 +00001939 Mask = ARI->getThisReturnPreservedMask(MF, CallConv);
Matthias Braunc22630e2013-10-04 16:52:54 +00001940 if (!Mask) {
1941 // Set isThisReturn to false if the calling convention is not one that
1942 // allows 'returned' to be modeled in this way, so LowerCallResult does
1943 // not try to pass 'this' straight through
1944 isThisReturn = false;
Eric Christopher9deb75d2015-03-11 22:42:13 +00001945 Mask = ARI->getCallPreservedMask(MF, CallConv);
Matthias Braunc22630e2013-10-04 16:52:54 +00001946 }
1947 } else
Eric Christopher9deb75d2015-03-11 22:42:13 +00001948 Mask = ARI->getCallPreservedMask(MF, CallConv);
Stephen Linb8bd2322013-04-20 05:14:40 +00001949
Matthias Braunc22630e2013-10-04 16:52:54 +00001950 assert(Mask && "Missing call preserved mask for calling convention");
1951 Ops.push_back(DAG.getRegisterMask(Mask));
1952 }
Jakob Stoklund Olesenfa7a5372012-02-24 01:19:29 +00001953
Gabor Greiff304a7a2008-08-28 21:40:38 +00001954 if (InFlag.getNode())
Evan Cheng10043e22007-01-19 07:51:42 +00001955 Ops.push_back(InFlag);
Dale Johannesend679ff72010-06-03 21:09:53 +00001956
Chris Lattner3e5fbd72010-12-21 02:38:05 +00001957 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +00001958 if (isTailCall) {
1959 MF.getFrameInfo()->setHasTailCall();
Craig Topper48d114b2014-04-26 18:35:24 +00001960 return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, Ops);
Arnold Schwaighoferf54b73d2015-05-08 23:52:00 +00001961 }
Dale Johannesend679ff72010-06-03 21:09:53 +00001962
Duncan Sands739a0542008-07-02 17:40:58 +00001963 // Returns a chain and a flag for retval copy to use.
Craig Topper48d114b2014-04-26 18:35:24 +00001964 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
Evan Cheng10043e22007-01-19 07:51:42 +00001965 InFlag = Chain.getValue(1);
1966
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00001967 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
1968 DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00001969 if (!Ins.empty())
Evan Cheng10043e22007-01-19 07:51:42 +00001970 InFlag = Chain.getValue(1);
1971
Bob Wilsona4c22902009-04-17 19:07:39 +00001972 // Handle result values, copying them out of physregs into vregs that we
1973 // return.
Stephen Linb8bd2322013-04-20 05:14:40 +00001974 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG,
Stephen Lin4eedb292013-04-23 19:30:12 +00001975 InVals, isThisReturn,
1976 isThisReturn ? OutVals[0] : SDValue());
Evan Cheng10043e22007-01-19 07:51:42 +00001977}
1978
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00001979/// HandleByVal - Every parameter *after* a byval parameter is passed
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001980/// on the stack. Remember the next parameter register to allocate,
1981/// and then confiscate the rest of the parameter registers to insure
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00001982/// this.
Tim Northover8cda34f2015-03-11 18:54:22 +00001983void ARMTargetLowering::HandleByVal(CCState *State, unsigned &Size,
1984 unsigned Align) const {
Stuart Hastings45fe3c32011-04-20 16:47:52 +00001985 assert((State->getCallOrPrologue() == Prologue ||
1986 State->getCallOrPrologue() == Call) &&
1987 "unhandled ParmContext");
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001988
Tim Northover8cda34f2015-03-11 18:54:22 +00001989 // Byval (as with any stack) slots are always at least 4 byte aligned.
1990 Align = std::max(Align, 4U);
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001991
Tim Northover8cda34f2015-03-11 18:54:22 +00001992 unsigned Reg = State->AllocateReg(GPRArgRegs);
1993 if (!Reg)
1994 return;
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00001995
Tim Northover8cda34f2015-03-11 18:54:22 +00001996 unsigned AlignInRegs = Align / 4;
1997 unsigned Waste = (ARM::R4 - Reg) % AlignInRegs;
1998 for (unsigned i = 0; i < Waste; ++i)
1999 Reg = State->AllocateReg(GPRArgRegs);
2000
2001 if (!Reg)
2002 return;
2003
2004 unsigned Excess = 4 * (ARM::R4 - Reg);
2005
2006 // Special case when NSAA != SP and parameter size greater than size of
2007 // all remained GPR regs. In that case we can't split parameter, we must
2008 // send it to stack. We also must set NCRN to R4, so waste all
2009 // remained registers.
2010 const unsigned NSAAOffset = State->getNextStackOffset();
2011 if (NSAAOffset != 0 && Size > Excess) {
2012 while (State->AllocateReg(GPRArgRegs))
2013 ;
2014 return;
Stuart Hastings45fe3c32011-04-20 16:47:52 +00002015 }
Tim Northover8cda34f2015-03-11 18:54:22 +00002016
2017 // First register for byval parameter is the first register that wasn't
2018 // allocated before this method call, so it would be "reg".
2019 // If parameter is small enough to be saved in range [reg, r4), then
2020 // the end (first after last) register would be reg + param-size-in-regs,
2021 // else parameter would be splitted between registers and stack,
2022 // end register would be r4 in this case.
2023 unsigned ByValRegBegin = Reg;
2024 unsigned ByValRegEnd = std::min<unsigned>(Reg + Size / 4, ARM::R4);
2025 State->addInRegsParamInfo(ByValRegBegin, ByValRegEnd);
2026 // Note, first register is allocated in the beginning of function already,
2027 // allocate remained amount of registers we need.
2028 for (unsigned i = Reg + 1; i != ByValRegEnd; ++i)
2029 State->AllocateReg(GPRArgRegs);
2030 // A byval parameter that is split between registers and memory needs its
2031 // size truncated here.
2032 // In the case where the entire structure fits in registers, we set the
2033 // size in memory to zero.
2034 Size = std::max<int>(Size - Excess, 0);
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00002035}
2036
Dale Johannesend679ff72010-06-03 21:09:53 +00002037/// MatchingStackOffset - Return true if the given stack call argument is
2038/// already available in the same position (relatively) of the caller's
2039/// incoming argument stack.
2040static
2041bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2042 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
Craig Topper07720d82012-03-25 23:49:58 +00002043 const TargetInstrInfo *TII) {
Dale Johannesend679ff72010-06-03 21:09:53 +00002044 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2045 int FI = INT_MAX;
2046 if (Arg.getOpcode() == ISD::CopyFromReg) {
2047 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesen2fb5b312011-01-10 02:58:51 +00002048 if (!TargetRegisterInfo::isVirtualRegister(VR))
Dale Johannesend679ff72010-06-03 21:09:53 +00002049 return false;
2050 MachineInstr *Def = MRI->getVRegDef(VR);
2051 if (!Def)
2052 return false;
2053 if (!Flags.isByVal()) {
2054 if (!TII->isLoadFromStackSlot(Def, FI))
2055 return false;
2056 } else {
Dale Johannesene2289282010-07-08 01:18:23 +00002057 return false;
Dale Johannesend679ff72010-06-03 21:09:53 +00002058 }
2059 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2060 if (Flags.isByVal())
2061 // ByVal argument is passed in as a pointer but it's now being
2062 // dereferenced. e.g.
2063 // define @foo(%struct.X* %A) {
2064 // tail call @bar(%struct.X* byval %A)
2065 // }
2066 return false;
2067 SDValue Ptr = Ld->getBasePtr();
2068 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2069 if (!FINode)
2070 return false;
2071 FI = FINode->getIndex();
2072 } else
2073 return false;
2074
2075 assert(FI != INT_MAX);
2076 if (!MFI->isFixedObjectIndex(FI))
2077 return false;
2078 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
2079}
2080
2081/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2082/// for tail call optimization. Targets which want to do tail call
2083/// optimization should implement this function.
2084bool
2085ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
2086 CallingConv::ID CalleeCC,
2087 bool isVarArg,
2088 bool isCalleeStructRet,
2089 bool isCallerStructRet,
2090 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002091 const SmallVectorImpl<SDValue> &OutVals,
Dale Johannesend679ff72010-06-03 21:09:53 +00002092 const SmallVectorImpl<ISD::InputArg> &Ins,
2093 SelectionDAG& DAG) const {
Dale Johannesend679ff72010-06-03 21:09:53 +00002094 const Function *CallerF = DAG.getMachineFunction().getFunction();
2095 CallingConv::ID CallerCC = CallerF->getCallingConv();
2096 bool CCMatch = CallerCC == CalleeCC;
2097
Artyom Skrobovad8a0632015-09-28 09:44:11 +00002098 assert(Subtarget->supportsTailCall());
2099
Dale Johannesend679ff72010-06-03 21:09:53 +00002100 // Look for obvious safe cases to perform tail call optimization that do not
2101 // require ABI changes. This is what gcc calls sibcall.
2102
Jim Grosbache3864cc2010-06-16 23:45:49 +00002103 // Do not sibcall optimize vararg calls unless the call site is not passing
2104 // any arguments.
Dale Johannesend679ff72010-06-03 21:09:53 +00002105 if (isVarArg && !Outs.empty())
2106 return false;
2107
Tim Northoverd8407452013-10-01 14:33:28 +00002108 // Exception-handling functions need a special set of instructions to indicate
2109 // a return to the hardware. Tail-calling another function would probably
2110 // break this.
2111 if (CallerF->hasFnAttribute("interrupt"))
2112 return false;
2113
Dale Johannesend679ff72010-06-03 21:09:53 +00002114 // Also avoid sibcall optimization if either caller or callee uses struct
2115 // return semantics.
2116 if (isCalleeStructRet || isCallerStructRet)
2117 return false;
2118
Oliver Stannard12993dd2014-08-18 12:42:15 +00002119 // Externally-defined functions with weak linkage should not be
2120 // tail-called on ARM when the OS does not support dynamic
2121 // pre-emption of symbols, as the AAELF spec requires normal calls
2122 // to undefined weak functions to be replaced with a NOP or jump to the
2123 // next instruction. The behaviour of branch instructions in this
2124 // situation (as used for tail calls) is implementation-defined, so we
2125 // cannot rely on the linker replacing the tail call with a return.
2126 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2127 const GlobalValue *GV = G->getGlobal();
Daniel Sandersc81f4502015-06-16 15:44:21 +00002128 const Triple &TT = getTargetMachine().getTargetTriple();
Saleem Abdulrasool67f72992015-01-03 21:35:00 +00002129 if (GV->hasExternalWeakLinkage() &&
2130 (!TT.isOSWindows() || TT.isOSBinFormatELF() || TT.isOSBinFormatMachO()))
Oliver Stannard12993dd2014-08-18 12:42:15 +00002131 return false;
2132 }
2133
Dale Johannesend679ff72010-06-03 21:09:53 +00002134 // If the calling conventions do not match, then we'd better make sure the
2135 // results are returned in the same way as what the caller expects.
2136 if (!CCMatch) {
2137 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopherb5217502014-08-06 18:45:26 +00002138 ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), RVLocs1,
2139 *DAG.getContext(), Call);
Dale Johannesend679ff72010-06-03 21:09:53 +00002140 CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg));
2141
2142 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopherb5217502014-08-06 18:45:26 +00002143 ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), RVLocs2,
2144 *DAG.getContext(), Call);
Dale Johannesend679ff72010-06-03 21:09:53 +00002145 CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg));
2146
2147 if (RVLocs1.size() != RVLocs2.size())
2148 return false;
2149 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2150 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2151 return false;
2152 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2153 return false;
2154 if (RVLocs1[i].isRegLoc()) {
2155 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2156 return false;
2157 } else {
2158 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2159 return false;
2160 }
2161 }
2162 }
2163
Manman Ren7e48b252012-10-12 23:39:43 +00002164 // If Caller's vararg or byval argument has been split between registers and
2165 // stack, do not perform tail call, since part of the argument is in caller's
2166 // local frame.
2167 const ARMFunctionInfo *AFI_Caller = DAG.getMachineFunction().
2168 getInfo<ARMFunctionInfo>();
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00002169 if (AFI_Caller->getArgRegsSaveSize())
Manman Ren7e48b252012-10-12 23:39:43 +00002170 return false;
2171
Dale Johannesend679ff72010-06-03 21:09:53 +00002172 // If the callee takes no arguments then go on to check the results of the
2173 // call.
2174 if (!Outs.empty()) {
2175 // Check if stack adjustment is needed. For now, do not do this if any
2176 // argument is passed on the stack.
2177 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002178 ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
2179 *DAG.getContext(), Call);
Dale Johannesend679ff72010-06-03 21:09:53 +00002180 CCInfo.AnalyzeCallOperands(Outs,
2181 CCAssignFnForNode(CalleeCC, false, isVarArg));
2182 if (CCInfo.getNextStackOffset()) {
2183 MachineFunction &MF = DAG.getMachineFunction();
2184
2185 // Check if the arguments are already laid out in the right way as
2186 // the caller's fixed stack objects.
2187 MachineFrameInfo *MFI = MF.getFrameInfo();
2188 const MachineRegisterInfo *MRI = &MF.getRegInfo();
Eric Christopher1889fdc2015-01-29 00:19:39 +00002189 const TargetInstrInfo *TII = Subtarget->getInstrInfo();
Dale Johannesen81ef35b2010-06-05 00:51:39 +00002190 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
2191 i != e;
2192 ++i, ++realArgIdx) {
Dale Johannesend679ff72010-06-03 21:09:53 +00002193 CCValAssign &VA = ArgLocs[i];
2194 EVT RegVT = VA.getLocVT();
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002195 SDValue Arg = OutVals[realArgIdx];
Dale Johannesen81ef35b2010-06-05 00:51:39 +00002196 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
Dale Johannesend679ff72010-06-03 21:09:53 +00002197 if (VA.getLocInfo() == CCValAssign::Indirect)
2198 return false;
Dale Johannesen81ef35b2010-06-05 00:51:39 +00002199 if (VA.needsCustom()) {
2200 // f64 and vector types are split into multiple registers or
2201 // register/stack-slot combinations. The types will not match
2202 // the registers; give up on memory f64 refs until we figure
2203 // out what to do about this.
2204 if (!VA.isRegLoc())
2205 return false;
2206 if (!ArgLocs[++i].isRegLoc())
Jim Grosbach535d3b42010-09-08 03:54:02 +00002207 return false;
Dale Johannesen81ef35b2010-06-05 00:51:39 +00002208 if (RegVT == MVT::v2f64) {
2209 if (!ArgLocs[++i].isRegLoc())
2210 return false;
2211 if (!ArgLocs[++i].isRegLoc())
2212 return false;
2213 }
2214 } else if (!VA.isRegLoc()) {
Dale Johannesend679ff72010-06-03 21:09:53 +00002215 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2216 MFI, MRI, TII))
2217 return false;
2218 }
2219 }
2220 }
2221 }
2222
2223 return true;
2224}
2225
Benjamin Kramerb1996da2012-11-28 20:55:10 +00002226bool
2227ARMTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
2228 MachineFunction &MF, bool isVarArg,
2229 const SmallVectorImpl<ISD::OutputArg> &Outs,
2230 LLVMContext &Context) const {
2231 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00002232 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
Benjamin Kramerb1996da2012-11-28 20:55:10 +00002233 return CCInfo.CheckReturn(Outs, CCAssignFnForNode(CallConv, /*Return=*/true,
2234 isVarArg));
2235}
2236
Tim Northoverd8407452013-10-01 14:33:28 +00002237static SDValue LowerInterruptReturn(SmallVectorImpl<SDValue> &RetOps,
2238 SDLoc DL, SelectionDAG &DAG) {
2239 const MachineFunction &MF = DAG.getMachineFunction();
2240 const Function *F = MF.getFunction();
2241
2242 StringRef IntKind = F->getFnAttribute("interrupt").getValueAsString();
2243
2244 // See ARM ARM v7 B1.8.3. On exception entry LR is set to a possibly offset
2245 // version of the "preferred return address". These offsets affect the return
2246 // instruction if this is a return from PL1 without hypervisor extensions.
2247 // IRQ/FIQ: +4 "subs pc, lr, #4"
2248 // SWI: 0 "subs pc, lr, #0"
2249 // ABORT: +4 "subs pc, lr, #4"
2250 // UNDEF: +4/+2 "subs pc, lr, #0"
2251 // UNDEF varies depending on where the exception came from ARM or Thumb
2252 // mode. Alongside GCC, we throw our hands up in disgust and pretend it's 0.
2253
2254 int64_t LROffset;
2255 if (IntKind == "" || IntKind == "IRQ" || IntKind == "FIQ" ||
2256 IntKind == "ABORT")
2257 LROffset = 4;
2258 else if (IntKind == "SWI" || IntKind == "UNDEF")
2259 LROffset = 0;
2260 else
2261 report_fatal_error("Unsupported interrupt attribute. If present, value "
2262 "must be one of: IRQ, FIQ, SWI, ABORT or UNDEF");
2263
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002264 RetOps.insert(RetOps.begin() + 1,
2265 DAG.getConstant(LROffset, DL, MVT::i32, false));
Tim Northoverd8407452013-10-01 14:33:28 +00002266
Craig Topper48d114b2014-04-26 18:35:24 +00002267 return DAG.getNode(ARMISD::INTRET_FLAG, DL, MVT::Other, RetOps);
Tim Northoverd8407452013-10-01 14:33:28 +00002268}
2269
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002270SDValue
2271ARMTargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00002272 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002273 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002274 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002275 SDLoc dl, SelectionDAG &DAG) const {
Bob Wilson7117a912009-03-20 22:42:55 +00002276
Bob Wilsonea09d4a2009-04-17 20:35:10 +00002277 // CCValAssign - represent the assignment of the return value to a location.
Bob Wilsona4c22902009-04-17 19:07:39 +00002278 SmallVector<CCValAssign, 16> RVLocs;
Bob Wilsona4c22902009-04-17 19:07:39 +00002279
Bob Wilsonea09d4a2009-04-17 20:35:10 +00002280 // CCState - Info about the registers and stack slots.
Eric Christopherb5217502014-08-06 18:45:26 +00002281 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
2282 *DAG.getContext(), Call);
Bob Wilsona4c22902009-04-17 19:07:39 +00002283
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00002284 // Analyze outgoing return values.
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00002285 CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
2286 isVarArg));
Bob Wilsona4c22902009-04-17 19:07:39 +00002287
Bob Wilsona4c22902009-04-17 19:07:39 +00002288 SDValue Flag;
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002289 SmallVector<SDValue, 4> RetOps;
2290 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
Christian Pirkerb5728192014-05-08 14:06:24 +00002291 bool isLittleEndian = Subtarget->isLittle();
Bob Wilsona4c22902009-04-17 19:07:39 +00002292
Jonathan Roelofsef84bda2014-08-05 21:32:21 +00002293 MachineFunction &MF = DAG.getMachineFunction();
2294 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2295 AFI->setReturnRegsCount(RVLocs.size());
2296
Bob Wilsona4c22902009-04-17 19:07:39 +00002297 // Copy the result values into the output registers.
2298 for (unsigned i = 0, realRVLocIdx = 0;
2299 i != RVLocs.size();
2300 ++i, ++realRVLocIdx) {
2301 CCValAssign &VA = RVLocs[i];
2302 assert(VA.isRegLoc() && "Can only return in registers!");
2303
Dan Gohmanfe7532a2010-07-07 15:54:55 +00002304 SDValue Arg = OutVals[realRVLocIdx];
Bob Wilsona4c22902009-04-17 19:07:39 +00002305
2306 switch (VA.getLocInfo()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00002307 default: llvm_unreachable("Unknown loc info!");
Bob Wilsona4c22902009-04-17 19:07:39 +00002308 case CCValAssign::Full: break;
2309 case CCValAssign::BCvt:
Wesley Peck527da1b2010-11-23 03:31:01 +00002310 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
Bob Wilsona4c22902009-04-17 19:07:39 +00002311 break;
2312 }
2313
Bob Wilsona4c22902009-04-17 19:07:39 +00002314 if (VA.needsCustom()) {
Owen Anderson9f944592009-08-11 20:47:22 +00002315 if (VA.getLocVT() == MVT::v2f64) {
Bob Wilson2e076c42009-06-22 23:27:02 +00002316 // Extract the first half and return it in two registers.
Owen Anderson9f944592009-08-11 20:47:22 +00002317 SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002318 DAG.getConstant(0, dl, MVT::i32));
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00002319 SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
Owen Anderson9f944592009-08-11 20:47:22 +00002320 DAG.getVTList(MVT::i32, MVT::i32), Half);
Bob Wilson2e076c42009-06-22 23:27:02 +00002321
Christian Pirkerb5728192014-05-08 14:06:24 +00002322 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2323 HalfGPRs.getValue(isLittleEndian ? 0 : 1),
2324 Flag);
Bob Wilson2e076c42009-06-22 23:27:02 +00002325 Flag = Chain.getValue(1);
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002326 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Bob Wilson2e076c42009-06-22 23:27:02 +00002327 VA = RVLocs[++i]; // skip ahead to next loc
2328 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
Christian Pirkerb5728192014-05-08 14:06:24 +00002329 HalfGPRs.getValue(isLittleEndian ? 1 : 0),
2330 Flag);
Bob Wilson2e076c42009-06-22 23:27:02 +00002331 Flag = Chain.getValue(1);
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002332 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Bob Wilson2e076c42009-06-22 23:27:02 +00002333 VA = RVLocs[++i]; // skip ahead to next loc
2334
2335 // Extract the 2nd half and fall through to handle it as an f64 value.
Owen Anderson9f944592009-08-11 20:47:22 +00002336 Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002337 DAG.getConstant(1, dl, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +00002338 }
2339 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is
2340 // available.
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00002341 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
Craig Topper48d114b2014-04-26 18:35:24 +00002342 DAG.getVTList(MVT::i32, MVT::i32), Arg);
Christian Pirkerb5728192014-05-08 14:06:24 +00002343 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2344 fmrrd.getValue(isLittleEndian ? 0 : 1),
2345 Flag);
Bob Wilsonf134b2d2009-04-24 17:00:36 +00002346 Flag = Chain.getValue(1);
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002347 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Bob Wilsona4c22902009-04-17 19:07:39 +00002348 VA = RVLocs[++i]; // skip ahead to next loc
Christian Pirkerb5728192014-05-08 14:06:24 +00002349 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2350 fmrrd.getValue(isLittleEndian ? 1 : 0),
Bob Wilsona4c22902009-04-17 19:07:39 +00002351 Flag);
2352 } else
2353 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
2354
Bob Wilsonea09d4a2009-04-17 20:35:10 +00002355 // Guarantee that all emitted copies are
2356 // stuck together, avoiding something bad.
Bob Wilsona4c22902009-04-17 19:07:39 +00002357 Flag = Chain.getValue(1);
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002358 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Bob Wilsona4c22902009-04-17 19:07:39 +00002359 }
Manman Ren5e9e65e2016-01-12 00:47:18 +00002360 const ARMBaseRegisterInfo *TRI = Subtarget->getRegisterInfo();
2361 const MCPhysReg *I =
2362 TRI->getCalleeSavedRegsViaCopy(&DAG.getMachineFunction());
2363 if (I) {
2364 for (; *I; ++I) {
2365 if (ARM::GPRRegClass.contains(*I))
2366 RetOps.push_back(DAG.getRegister(*I, MVT::i32));
2367 else if (ARM::DPRRegClass.contains(*I))
2368 RetOps.push_back(DAG.getRegister(*I, MVT::getFloatingPointVT(64)));
2369 else
2370 llvm_unreachable("Unexpected register class in CSRsViaCopy!");
2371 }
2372 }
Bob Wilsona4c22902009-04-17 19:07:39 +00002373
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002374 // Update chain and glue.
2375 RetOps[0] = Chain;
Bob Wilsona4c22902009-04-17 19:07:39 +00002376 if (Flag.getNode())
Jakob Stoklund Olesenf90fb6e2013-02-05 18:08:40 +00002377 RetOps.push_back(Flag);
Bob Wilsona4c22902009-04-17 19:07:39 +00002378
Tim Northoverd8407452013-10-01 14:33:28 +00002379 // CPUs which aren't M-class use a special sequence to return from
2380 // exceptions (roughly, any instruction setting pc and cpsr simultaneously,
2381 // though we use "subs pc, lr, #N").
2382 //
2383 // M-class CPUs actually use a normal return sequence with a special
2384 // (hardware-provided) value in LR, so the normal code path works.
2385 if (DAG.getMachineFunction().getFunction()->hasFnAttribute("interrupt") &&
2386 !Subtarget->isMClass()) {
2387 if (Subtarget->isThumb1Only())
2388 report_fatal_error("interrupt attribute is not supported in Thumb1");
2389 return LowerInterruptReturn(RetOps, dl, DAG);
2390 }
2391
Craig Topper48d114b2014-04-26 18:35:24 +00002392 return DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, RetOps);
Evan Cheng10043e22007-01-19 07:51:42 +00002393}
2394
Evan Chengf8bad082012-04-10 01:51:00 +00002395bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Chengd4b08732010-11-30 23:55:39 +00002396 if (N->getNumValues() != 1)
2397 return false;
2398 if (!N->hasNUsesOfValue(1, 0))
2399 return false;
2400
Evan Chengf8bad082012-04-10 01:51:00 +00002401 SDValue TCChain = Chain;
2402 SDNode *Copy = *N->use_begin();
2403 if (Copy->getOpcode() == ISD::CopyToReg) {
2404 // If the copy has a glue operand, we conservatively assume it isn't safe to
2405 // perform a tail call.
2406 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2407 return false;
2408 TCChain = Copy->getOperand(0);
2409 } else if (Copy->getOpcode() == ARMISD::VMOVRRD) {
2410 SDNode *VMov = Copy;
Evan Chengd4b08732010-11-30 23:55:39 +00002411 // f64 returned in a pair of GPRs.
Evan Chengf8bad082012-04-10 01:51:00 +00002412 SmallPtrSet<SDNode*, 2> Copies;
2413 for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
Evan Chengd4b08732010-11-30 23:55:39 +00002414 UI != UE; ++UI) {
2415 if (UI->getOpcode() != ISD::CopyToReg)
2416 return false;
Evan Chengf8bad082012-04-10 01:51:00 +00002417 Copies.insert(*UI);
Evan Chengd4b08732010-11-30 23:55:39 +00002418 }
Evan Chengf8bad082012-04-10 01:51:00 +00002419 if (Copies.size() > 2)
2420 return false;
2421
2422 for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2423 UI != UE; ++UI) {
2424 SDValue UseChain = UI->getOperand(0);
2425 if (Copies.count(UseChain.getNode()))
2426 // Second CopyToReg
2427 Copy = *UI;
Quentin Colombet17799fe2014-09-18 21:17:50 +00002428 else {
2429 // We are at the top of this chain.
2430 // If the copy has a glue operand, we conservatively assume it
2431 // isn't safe to perform a tail call.
2432 if (UI->getOperand(UI->getNumOperands()-1).getValueType() == MVT::Glue)
2433 return false;
Evan Chengf8bad082012-04-10 01:51:00 +00002434 // First CopyToReg
2435 TCChain = UseChain;
Quentin Colombet17799fe2014-09-18 21:17:50 +00002436 }
Evan Chengf8bad082012-04-10 01:51:00 +00002437 }
2438 } else if (Copy->getOpcode() == ISD::BITCAST) {
Evan Chengd4b08732010-11-30 23:55:39 +00002439 // f32 returned in a single GPR.
Evan Chengf8bad082012-04-10 01:51:00 +00002440 if (!Copy->hasOneUse())
Evan Chengd4b08732010-11-30 23:55:39 +00002441 return false;
Evan Chengf8bad082012-04-10 01:51:00 +00002442 Copy = *Copy->use_begin();
2443 if (Copy->getOpcode() != ISD::CopyToReg || !Copy->hasNUsesOfValue(1, 0))
Evan Chengd4b08732010-11-30 23:55:39 +00002444 return false;
Quentin Colombet17799fe2014-09-18 21:17:50 +00002445 // If the copy has a glue operand, we conservatively assume it isn't safe to
2446 // perform a tail call.
2447 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2448 return false;
Lang Hames67c09b32013-05-13 10:21:19 +00002449 TCChain = Copy->getOperand(0);
Evan Chengd4b08732010-11-30 23:55:39 +00002450 } else {
2451 return false;
2452 }
2453
Evan Cheng419ea282010-12-01 22:59:46 +00002454 bool HasRet = false;
Evan Chengf8bad082012-04-10 01:51:00 +00002455 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2456 UI != UE; ++UI) {
Tim Northoverd8407452013-10-01 14:33:28 +00002457 if (UI->getOpcode() != ARMISD::RET_FLAG &&
2458 UI->getOpcode() != ARMISD::INTRET_FLAG)
Evan Chengf8bad082012-04-10 01:51:00 +00002459 return false;
2460 HasRet = true;
Evan Chengd4b08732010-11-30 23:55:39 +00002461 }
2462
Evan Chengf8bad082012-04-10 01:51:00 +00002463 if (!HasRet)
2464 return false;
2465
2466 Chain = TCChain;
2467 return true;
Evan Chengd4b08732010-11-30 23:55:39 +00002468}
2469
Evan Cheng0663f232011-03-21 01:19:09 +00002470bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Saleem Abdulrasoolb720a6b2014-03-11 15:09:49 +00002471 if (!Subtarget->supportsTailCall())
Evan Cheng0663f232011-03-21 01:19:09 +00002472 return false;
2473
Akira Hatanakad9699bc2015-06-09 19:07:19 +00002474 auto Attr =
2475 CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
2476 if (!CI->isTailCall() || Attr.getValueAsString() == "true")
Evan Cheng0663f232011-03-21 01:19:09 +00002477 return false;
2478
Artyom Skrobovad8a0632015-09-28 09:44:11 +00002479 return true;
Evan Cheng0663f232011-03-21 01:19:09 +00002480}
2481
Luke Cheeseman85fd06d2015-06-01 12:02:47 +00002482// Trying to write a 64 bit value so need to split into two 32 bit values first,
2483// and pass the lower and high parts through.
2484static SDValue LowerWRITE_REGISTER(SDValue Op, SelectionDAG &DAG) {
2485 SDLoc DL(Op);
2486 SDValue WriteValue = Op->getOperand(2);
2487
2488 // This function is only supposed to be called for i64 type argument.
2489 assert(WriteValue.getValueType() == MVT::i64
2490 && "LowerWRITE_REGISTER called for non-i64 type argument.");
2491
2492 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, WriteValue,
2493 DAG.getConstant(0, DL, MVT::i32));
2494 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, WriteValue,
2495 DAG.getConstant(1, DL, MVT::i32));
2496 SDValue Ops[] = { Op->getOperand(0), Op->getOperand(1), Lo, Hi };
2497 return DAG.getNode(ISD::WRITE_REGISTER, DL, MVT::Other, Ops);
2498}
2499
Bob Wilsonb389f2a2009-11-03 00:02:05 +00002500// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
2501// their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
2502// one of the above mentioned nodes. It has to be wrapped because otherwise
2503// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
2504// be used to form addressing mode. These wrapped nodes will be selected
2505// into MOVi.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002506static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002507 EVT PtrVT = Op.getValueType();
Dale Johannesen62fd95d2009-02-07 00:55:49 +00002508 // FIXME there is no actual debug info here
Andrew Trickef9de2a2013-05-25 02:42:55 +00002509 SDLoc dl(Op);
Evan Cheng10043e22007-01-19 07:51:42 +00002510 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002511 SDValue Res;
Evan Cheng10043e22007-01-19 07:51:42 +00002512 if (CP->isMachineConstantPoolEntry())
2513 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
2514 CP->getAlignment());
2515 else
2516 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
2517 CP->getAlignment());
Owen Anderson9f944592009-08-11 20:47:22 +00002518 return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
Evan Cheng10043e22007-01-19 07:51:42 +00002519}
2520
Jim Grosbach8d3ba732010-07-19 17:20:38 +00002521unsigned ARMTargetLowering::getJumpTableEncoding() const {
2522 return MachineJumpTableInfo::EK_Inline;
2523}
2524
Dan Gohman21cea8a2010-04-17 15:26:15 +00002525SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op,
2526 SelectionDAG &DAG) const {
Evan Cheng408aa562009-11-06 22:24:13 +00002527 MachineFunction &MF = DAG.getMachineFunction();
2528 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2529 unsigned ARMPCLabelIndex = 0;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002530 SDLoc DL(Op);
Mehdi Amini44ede332015-07-09 02:09:04 +00002531 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002532 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002533 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2534 SDValue CPAddr;
2535 if (RelocM == Reloc::Static) {
2536 CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
2537 } else {
2538 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
Evan Chengdfce83c2011-01-17 08:03:18 +00002539 ARMPCLabelIndex = AFI->createPICLabelUId();
Bill Wendling7753d662011-10-01 08:00:54 +00002540 ARMConstantPoolValue *CPV =
2541 ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex,
2542 ARMCP::CPBlockAddress, PCAdj);
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002543 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2544 }
2545 CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
Alex Lorenze40c8a22015-08-11 23:09:45 +00002546 SDValue Result =
2547 DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
2548 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
2549 false, false, false, 0);
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002550 if (RelocM == Reloc::Static)
2551 return Result;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002552 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, DL, MVT::i32);
Bob Wilson1c66e8a2009-11-02 20:59:23 +00002553 return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
Bob Wilson1cf0b032009-10-30 05:45:42 +00002554}
2555
Tim Northoverbd41cf82016-01-07 09:03:03 +00002556/// \brief Convert a TLS address reference into the correct sequence of loads
2557/// and calls to compute the variable's address for Darwin, and return an
2558/// SDValue containing the final node.
2559
2560/// Darwin only has one TLS scheme which must be capable of dealing with the
2561/// fully general situation, in the worst case. This means:
2562/// + "extern __thread" declaration.
2563/// + Defined in a possibly unknown dynamic library.
2564///
2565/// The general system is that each __thread variable has a [3 x i32] descriptor
2566/// which contains information used by the runtime to calculate the address. The
2567/// only part of this the compiler needs to know about is the first word, which
2568/// contains a function pointer that must be called with the address of the
2569/// entire descriptor in "r0".
2570///
2571/// Since this descriptor may be in a different unit, in general access must
2572/// proceed along the usual ARM rules. A common sequence to produce is:
2573///
2574/// movw rT1, :lower16:_var$non_lazy_ptr
2575/// movt rT1, :upper16:_var$non_lazy_ptr
2576/// ldr r0, [rT1]
2577/// ldr rT2, [r0]
2578/// blx rT2
2579/// [...address now in r0...]
2580SDValue
2581ARMTargetLowering::LowerGlobalTLSAddressDarwin(SDValue Op,
2582 SelectionDAG &DAG) const {
2583 assert(Subtarget->isTargetDarwin() && "TLS only supported on Darwin");
2584 SDLoc DL(Op);
2585
2586 // First step is to get the address of the actua global symbol. This is where
2587 // the TLS descriptor lives.
2588 SDValue DescAddr = LowerGlobalAddressDarwin(Op, DAG);
2589
2590 // The first entry in the descriptor is a function pointer that we must call
2591 // to obtain the address of the variable.
2592 SDValue Chain = DAG.getEntryNode();
2593 SDValue FuncTLVGet =
2594 DAG.getLoad(MVT::i32, DL, Chain, DescAddr,
2595 MachinePointerInfo::getGOT(DAG.getMachineFunction()),
2596 false, true, true, 4);
2597 Chain = FuncTLVGet.getValue(1);
2598
2599 MachineFunction &F = DAG.getMachineFunction();
2600 MachineFrameInfo *MFI = F.getFrameInfo();
2601 MFI->setAdjustsStack(true);
2602
2603 // TLS calls preserve all registers except those that absolutely must be
2604 // trashed: R0 (it takes an argument), LR (it's a call) and CPSR (let's not be
2605 // silly).
2606 auto TRI =
2607 getTargetMachine().getSubtargetImpl(*F.getFunction())->getRegisterInfo();
2608 auto ARI = static_cast<const ARMRegisterInfo *>(TRI);
2609 const uint32_t *Mask = ARI->getTLSCallPreservedMask(DAG.getMachineFunction());
2610
2611 // Finally, we can make the call. This is just a degenerate version of a
2612 // normal AArch64 call node: r0 takes the address of the descriptor, and
2613 // returns the address of the variable in this thread.
2614 Chain = DAG.getCopyToReg(Chain, DL, ARM::R0, DescAddr, SDValue());
2615 Chain =
2616 DAG.getNode(ARMISD::CALL, DL, DAG.getVTList(MVT::Other, MVT::Glue),
2617 Chain, FuncTLVGet, DAG.getRegister(ARM::R0, MVT::i32),
2618 DAG.getRegisterMask(Mask), Chain.getValue(1));
2619 return DAG.getCopyFromReg(Chain, DL, ARM::R0, MVT::i32, Chain.getValue(1));
2620}
2621
Saleem Abdulrasoolf36005a2016-02-03 18:21:59 +00002622SDValue
2623ARMTargetLowering::LowerGlobalTLSAddressWindows(SDValue Op,
2624 SelectionDAG &DAG) const {
2625 assert(Subtarget->isTargetWindows() && "Windows specific TLS lowering");
2626 SDValue Chain = DAG.getEntryNode();
2627 EVT PtrVT = getPointerTy(DAG.getDataLayout());
2628 SDLoc DL(Op);
2629
2630 // Load the current TEB (thread environment block)
2631 SDValue Ops[] = {Chain,
2632 DAG.getConstant(Intrinsic::arm_mrc, DL, MVT::i32),
2633 DAG.getConstant(15, DL, MVT::i32),
2634 DAG.getConstant(0, DL, MVT::i32),
2635 DAG.getConstant(13, DL, MVT::i32),
2636 DAG.getConstant(0, DL, MVT::i32),
2637 DAG.getConstant(2, DL, MVT::i32)};
2638 SDValue CurrentTEB = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DL,
2639 DAG.getVTList(MVT::i32, MVT::Other), Ops);
2640
2641 SDValue TEB = CurrentTEB.getValue(0);
2642 Chain = CurrentTEB.getValue(1);
2643
2644 // Load the ThreadLocalStoragePointer from the TEB
2645 // A pointer to the TLS array is located at offset 0x2c from the TEB.
2646 SDValue TLSArray =
2647 DAG.getNode(ISD::ADD, DL, PtrVT, TEB, DAG.getIntPtrConstant(0x2c, DL));
2648 TLSArray = DAG.getLoad(PtrVT, DL, Chain, TLSArray, MachinePointerInfo(),
2649 false, false, false, 0);
2650
2651 // The pointer to the thread's TLS data area is at the TLS Index scaled by 4
2652 // offset into the TLSArray.
2653
2654 // Load the TLS index from the C runtime
2655 SDValue TLSIndex =
2656 DAG.getTargetExternalSymbol("_tls_index", PtrVT, ARMII::MO_NO_FLAG);
2657 TLSIndex = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, TLSIndex);
2658 TLSIndex = DAG.getLoad(PtrVT, DL, Chain, TLSIndex, MachinePointerInfo(),
2659 false, false, false, 0);
2660
2661 SDValue Slot = DAG.getNode(ISD::SHL, DL, PtrVT, TLSIndex,
2662 DAG.getConstant(2, DL, MVT::i32));
2663 SDValue TLS = DAG.getLoad(PtrVT, DL, Chain,
2664 DAG.getNode(ISD::ADD, DL, PtrVT, TLSArray, Slot),
2665 MachinePointerInfo(), false, false, false, 0);
2666
2667 return DAG.getNode(ISD::ADD, DL, PtrVT, TLS,
2668 LowerGlobalAddressWindows(Op, DAG));
2669}
2670
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002671// Lower ISD::GlobalTLSAddress using the "general dynamic" model
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002672SDValue
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002673ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002674 SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002675 SDLoc dl(GA);
Mehdi Amini44ede332015-07-09 02:09:04 +00002676 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002677 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
Evan Cheng408aa562009-11-06 22:24:13 +00002678 MachineFunction &MF = DAG.getMachineFunction();
2679 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Chengdfce83c2011-01-17 08:03:18 +00002680 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002681 ARMConstantPoolValue *CPV =
Bill Wendling7753d662011-10-01 08:00:54 +00002682 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2683 ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002684 SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002685 Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
Alex Lorenze40c8a22015-08-11 23:09:45 +00002686 Argument =
2687 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
2688 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
2689 false, false, false, 0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002690 SDValue Chain = Argument.getValue(1);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002691
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002692 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00002693 Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002694
2695 // call __tls_get_addr.
2696 ArgListTy Args;
2697 ArgListEntry Entry;
2698 Entry.Node = Argument;
Chris Lattner229907c2011-07-18 04:54:35 +00002699 Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext());
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002700 Args.push_back(Entry);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002701
Dale Johannesen555a3752009-01-30 23:10:59 +00002702 // FIXME: is there useful debug info available here?
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002703 TargetLowering::CallLoweringInfo CLI(DAG);
2704 CLI.setDebugLoc(dl).setChain(Chain)
2705 .setCallee(CallingConv::C, Type::getInt32Ty(*DAG.getContext()),
Juergen Ributzka3bd03c72014-07-01 22:01:54 +00002706 DAG.getExternalSymbol("__tls_get_addr", PtrVT), std::move(Args),
2707 0);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00002708
Justin Holewinskiaa583972012-05-25 16:35:28 +00002709 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002710 return CallResult.first;
2711}
2712
2713// Lower ISD::GlobalTLSAddress using the "initial exec" or
2714// "local exec" model.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002715SDValue
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002716ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
Hans Wennborgaea41202012-05-04 09:40:39 +00002717 SelectionDAG &DAG,
2718 TLSModel::Model model) const {
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002719 const GlobalValue *GV = GA->getGlobal();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002720 SDLoc dl(GA);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002721 SDValue Offset;
2722 SDValue Chain = DAG.getEntryNode();
Mehdi Amini44ede332015-07-09 02:09:04 +00002723 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002724 // Get the Thread Pointer
Dale Johannesen021052a2009-02-04 20:06:27 +00002725 SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002726
Hans Wennborgaea41202012-05-04 09:40:39 +00002727 if (model == TLSModel::InitialExec) {
Evan Cheng408aa562009-11-06 22:24:13 +00002728 MachineFunction &MF = DAG.getMachineFunction();
2729 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Chengdfce83c2011-01-17 08:03:18 +00002730 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Evan Cheng408aa562009-11-06 22:24:13 +00002731 // Initial exec model.
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002732 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2733 ARMConstantPoolValue *CPV =
Bill Wendling7753d662011-10-01 08:00:54 +00002734 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2735 ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF,
2736 true);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002737 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002738 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
Alex Lorenze40c8a22015-08-11 23:09:45 +00002739 Offset = DAG.getLoad(
2740 PtrVT, dl, Chain, Offset,
2741 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
2742 false, false, 0);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002743 Chain = Offset.getValue(1);
2744
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002745 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
Dale Johannesen021052a2009-02-04 20:06:27 +00002746 Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002747
Alex Lorenze40c8a22015-08-11 23:09:45 +00002748 Offset = DAG.getLoad(
2749 PtrVT, dl, Chain, Offset,
2750 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
2751 false, false, 0);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002752 } else {
2753 // local exec model
Hans Wennborgaea41202012-05-04 09:40:39 +00002754 assert(model == TLSModel::LocalExec);
Bill Wendling7753d662011-10-01 08:00:54 +00002755 ARMConstantPoolValue *CPV =
2756 ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002757 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002758 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
Alex Lorenze40c8a22015-08-11 23:09:45 +00002759 Offset = DAG.getLoad(
2760 PtrVT, dl, Chain, Offset,
2761 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
2762 false, false, 0);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002763 }
2764
2765 // The address of the thread local variable is the add of the thread
2766 // pointer with the offset of the variable.
Dale Johannesen021052a2009-02-04 20:06:27 +00002767 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002768}
2769
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002770SDValue
Dan Gohman21cea8a2010-04-17 15:26:15 +00002771ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Tim Northoverbd41cf82016-01-07 09:03:03 +00002772 if (Subtarget->isTargetDarwin())
2773 return LowerGlobalTLSAddressDarwin(Op, DAG);
2774
Saleem Abdulrasoolf36005a2016-02-03 18:21:59 +00002775 if (Subtarget->isTargetWindows())
2776 return LowerGlobalTLSAddressWindows(Op, DAG);
2777
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002778 // TODO: implement the "local dynamic" model
Tim Northoverbd41cf82016-01-07 09:03:03 +00002779 assert(Subtarget->isTargetELF() && "Only ELF implemented here");
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002780 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chih-Hung Hsieh1e859582015-07-28 16:24:05 +00002781 if (DAG.getTarget().Options.EmulatedTLS)
2782 return LowerToTLSEmulatedModel(GA, DAG);
Hans Wennborgaea41202012-05-04 09:40:39 +00002783
2784 TLSModel::Model model = getTargetMachine().getTLSModel(GA->getGlobal());
2785
2786 switch (model) {
2787 case TLSModel::GeneralDynamic:
2788 case TLSModel::LocalDynamic:
2789 return LowerToTLSGeneralDynamicModel(GA, DAG);
2790 case TLSModel::InitialExec:
2791 case TLSModel::LocalExec:
2792 return LowerToTLSExecModels(GA, DAG, model);
2793 }
Matt Beaumont-Gaye82ab6b2012-05-04 18:34:27 +00002794 llvm_unreachable("bogus TLS model");
Lauro Ramos Venancioc39c12a2007-04-27 13:54:47 +00002795}
2796
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002797SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002798 SelectionDAG &DAG) const {
Mehdi Amini44ede332015-07-09 02:09:04 +00002799 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002800 SDLoc dl(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002801 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Chad Rosier537ff502013-02-28 19:16:42 +00002802 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Peter Collingbourne97aae402015-10-26 18:23:16 +00002803 bool UseGOT_PREL =
Peter Collingbourne99fac802015-10-26 20:46:44 +00002804 !(GV->hasHiddenVisibility() || GV->hasLocalLinkage());
Peter Collingbourne97aae402015-10-26 18:23:16 +00002805
2806 MachineFunction &MF = DAG.getMachineFunction();
2807 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2808 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2809 EVT PtrVT = getPointerTy(DAG.getDataLayout());
2810 SDLoc dl(Op);
2811 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2812 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(
2813 GV, ARMPCLabelIndex, ARMCP::CPValue, PCAdj,
2814 UseGOT_PREL ? ARMCP::GOT_PREL : ARMCP::no_modifier,
2815 /*AddCurrentAddress=*/UseGOT_PREL);
Evan Cheng1fb8aed2009-03-13 07:51:59 +00002816 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002817 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Alex Lorenze40c8a22015-08-11 23:09:45 +00002818 SDValue Result = DAG.getLoad(
2819 PtrVT, dl, DAG.getEntryNode(), CPAddr,
2820 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
2821 false, false, 0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002822 SDValue Chain = Result.getValue(1);
Peter Collingbourne97aae402015-10-26 18:23:16 +00002823 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2824 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2825 if (UseGOT_PREL)
Anton Korobeynikov75b59fb2009-10-07 00:06:35 +00002826 Result = DAG.getLoad(PtrVT, dl, Chain, Result,
Alex Lorenze40c8a22015-08-11 23:09:45 +00002827 MachinePointerInfo::getGOT(DAG.getMachineFunction()),
Pete Cooper82cd9e82011-11-08 18:42:53 +00002828 false, false, false, 0);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002829 return Result;
Evan Chengdfce83c2011-01-17 08:03:18 +00002830 }
2831
2832 // If we have T2 ops, we can materialize the address directly via movt/movw
James Molloydd9137a2011-10-26 08:53:19 +00002833 // pair. This is always cheaper.
Eric Christopherc1058df2014-07-04 01:55:26 +00002834 if (Subtarget->useMovt(DAG.getMachineFunction())) {
Evan Cheng68aec142011-01-19 02:16:49 +00002835 ++NumMovwMovt;
Evan Chengdfce83c2011-01-17 08:03:18 +00002836 // FIXME: Once remat is capable of dealing with instructions with register
2837 // operands, expand this into two nodes.
2838 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
2839 DAG.getTargetGlobalAddress(GV, dl, PtrVT));
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002840 } else {
Evan Chengdfce83c2011-01-17 08:03:18 +00002841 SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
2842 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Alex Lorenze40c8a22015-08-11 23:09:45 +00002843 return DAG.getLoad(
2844 PtrVT, dl, DAG.getEntryNode(), CPAddr,
2845 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
2846 false, false, 0);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00002847 }
2848}
2849
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002850SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
Dan Gohman21cea8a2010-04-17 15:26:15 +00002851 SelectionDAG &DAG) const {
Mehdi Amini44ede332015-07-09 02:09:04 +00002852 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Andrew Trickef9de2a2013-05-25 02:42:55 +00002853 SDLoc dl(Op);
Dan Gohmanbcaf6812010-04-15 01:51:59 +00002854 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Evan Cheng10043e22007-01-19 07:51:42 +00002855 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
Evan Chengdfce83c2011-01-17 08:03:18 +00002856
Eric Christopherc1058df2014-07-04 01:55:26 +00002857 if (Subtarget->useMovt(DAG.getMachineFunction()))
Evan Cheng68aec142011-01-19 02:16:49 +00002858 ++NumMovwMovt;
Evan Chengdfce83c2011-01-17 08:03:18 +00002859
Tim Northover72360d22013-12-02 10:35:41 +00002860 // FIXME: Once remat is capable of dealing with instructions with register
2861 // operands, expand this into multiple nodes
2862 unsigned Wrapper =
2863 RelocM == Reloc::PIC_ ? ARMISD::WrapperPIC : ARMISD::Wrapper;
Tim Northoverdb962e2c2013-11-25 16:24:52 +00002864
Tim Northover72360d22013-12-02 10:35:41 +00002865 SDValue G = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, ARMII::MO_NONLAZY);
2866 SDValue Result = DAG.getNode(Wrapper, dl, PtrVT, G);
Evan Cheng43b9ca62009-08-28 23:18:09 +00002867
Evan Cheng1b389522009-09-03 07:04:02 +00002868 if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
Tim Northover72360d22013-12-02 10:35:41 +00002869 Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
Alex Lorenze40c8a22015-08-11 23:09:45 +00002870 MachinePointerInfo::getGOT(DAG.getMachineFunction()),
2871 false, false, false, 0);
Evan Cheng10043e22007-01-19 07:51:42 +00002872 return Result;
2873}
2874
Saleem Abdulrasool40bca0a2014-05-09 00:58:32 +00002875SDValue ARMTargetLowering::LowerGlobalAddressWindows(SDValue Op,
2876 SelectionDAG &DAG) const {
2877 assert(Subtarget->isTargetWindows() && "non-Windows COFF is not supported");
Eric Christopherc1058df2014-07-04 01:55:26 +00002878 assert(Subtarget->useMovt(DAG.getMachineFunction()) &&
2879 "Windows on ARM expects to use movw/movt");
Saleem Abdulrasool40bca0a2014-05-09 00:58:32 +00002880
2881 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Reid Klecknerc35e7f52015-06-11 01:31:48 +00002882 const ARMII::TOF TargetFlags =
2883 (GV->hasDLLImportStorageClass() ? ARMII::MO_DLLIMPORT : ARMII::MO_NO_FLAG);
Mehdi Amini44ede332015-07-09 02:09:04 +00002884 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Saleem Abdulrasool763f9a52014-07-07 05:18:35 +00002885 SDValue Result;
Saleem Abdulrasool40bca0a2014-05-09 00:58:32 +00002886 SDLoc DL(Op);
2887
2888 ++NumMovwMovt;
2889
2890 // FIXME: Once remat is capable of dealing with instructions with register
2891 // operands, expand this into two nodes.
Saleem Abdulrasool763f9a52014-07-07 05:18:35 +00002892 Result = DAG.getNode(ARMISD::Wrapper, DL, PtrVT,
2893 DAG.getTargetGlobalAddress(GV, DL, PtrVT, /*Offset=*/0,
Reid Klecknerc35e7f52015-06-11 01:31:48 +00002894 TargetFlags));
Saleem Abdulrasool763f9a52014-07-07 05:18:35 +00002895 if (GV->hasDLLImportStorageClass())
2896 Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
Alex Lorenze40c8a22015-08-11 23:09:45 +00002897 MachinePointerInfo::getGOT(DAG.getMachineFunction()),
2898 false, false, false, 0);
Saleem Abdulrasool763f9a52014-07-07 05:18:35 +00002899 return Result;
Saleem Abdulrasool40bca0a2014-05-09 00:58:32 +00002900}
2901
Jim Grosbachaeca45d2009-05-12 23:59:14 +00002902SDValue
Jim Grosbachc98892f2010-05-26 20:22:18 +00002903ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002904 SDLoc dl(Op);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002905 SDValue Val = DAG.getConstant(0, dl, MVT::i32);
Bill Wendling7ecfbd92011-10-07 21:25:38 +00002906 return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl,
2907 DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0),
Jim Grosbachc98892f2010-05-26 20:22:18 +00002908 Op.getOperand(1), Val);
2909}
2910
2911SDValue
Jim Grosbachbd9485d2010-05-22 01:06:18 +00002912ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickef9de2a2013-05-25 02:42:55 +00002913 SDLoc dl(Op);
Jim Grosbachbd9485d2010-05-22 01:06:18 +00002914 return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002915 Op.getOperand(1), DAG.getConstant(0, dl, MVT::i32));
Jim Grosbachbd9485d2010-05-22 01:06:18 +00002916}
2917
Matthias Braun3cd00c12015-07-16 22:34:16 +00002918SDValue ARMTargetLowering::LowerEH_SJLJ_SETUP_DISPATCH(SDValue Op,
2919 SelectionDAG &DAG) const {
2920 SDLoc dl(Op);
2921 return DAG.getNode(ARMISD::EH_SJLJ_SETUP_DISPATCH, dl, MVT::Other,
2922 Op.getOperand(0));
2923}
2924
Jim Grosbachbd9485d2010-05-22 01:06:18 +00002925SDValue
Jim Grosbacha570d052010-02-08 23:22:00 +00002926ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
Jim Grosbache3864cc2010-06-16 23:45:49 +00002927 const ARMSubtarget *Subtarget) const {
Dan Gohmaneffb8942008-09-12 16:56:44 +00002928 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002929 SDLoc dl(Op);
Lauro Ramos Venanciof6a67bf2007-11-08 17:20:05 +00002930 switch (IntNo) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002931 default: return SDValue(); // Don't custom lower most intrinsics.
Jim Grosbach07393ba2014-06-16 21:55:30 +00002932 case Intrinsic::arm_rbit: {
Yi Kongc655f0c2014-08-20 10:40:20 +00002933 assert(Op.getOperand(1).getValueType() == MVT::i32 &&
Jim Grosbach07393ba2014-06-16 21:55:30 +00002934 "RBIT intrinsic must have i32 type!");
James Molloyb5640982015-11-13 16:05:22 +00002935 return DAG.getNode(ISD::BITREVERSE, dl, MVT::i32, Op.getOperand(1));
Jim Grosbach07393ba2014-06-16 21:55:30 +00002936 }
Bob Wilson17f88782009-08-04 00:25:01 +00002937 case Intrinsic::arm_thread_pointer: {
Mehdi Amini44ede332015-07-09 02:09:04 +00002938 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Bob Wilson17f88782009-08-04 00:25:01 +00002939 return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2940 }
Jim Grosbach693e36a2009-08-11 00:09:57 +00002941 case Intrinsic::eh_sjlj_lsda: {
Jim Grosbach693e36a2009-08-11 00:09:57 +00002942 MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng408aa562009-11-06 22:24:13 +00002943 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Evan Chengdfce83c2011-01-17 08:03:18 +00002944 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
Mehdi Amini44ede332015-07-09 02:09:04 +00002945 EVT PtrVT = getPointerTy(DAG.getDataLayout());
Jim Grosbach693e36a2009-08-11 00:09:57 +00002946 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2947 SDValue CPAddr;
2948 unsigned PCAdj = (RelocM != Reloc::PIC_)
2949 ? 0 : (Subtarget->isThumb() ? 4 : 8);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002950 ARMConstantPoolValue *CPV =
Bill Wendling7753d662011-10-01 08:00:54 +00002951 ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex,
2952 ARMCP::CPLSDA, PCAdj);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002953 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
Owen Anderson9f944592009-08-11 20:47:22 +00002954 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
Alex Lorenze40c8a22015-08-11 23:09:45 +00002955 SDValue Result = DAG.getLoad(
2956 PtrVT, dl, DAG.getEntryNode(), CPAddr,
2957 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false,
2958 false, false, 0);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002959
2960 if (RelocM == Reloc::PIC_) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00002961 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
Jim Grosbach693e36a2009-08-11 00:09:57 +00002962 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2963 }
2964 return Result;
2965 }
Evan Cheng18381b42011-03-29 23:06:19 +00002966 case Intrinsic::arm_neon_vmulls:
2967 case Intrinsic::arm_neon_vmullu: {
2968 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls)
2969 ? ARMISD::VMULLs : ARMISD::VMULLu;
Andrew Trickef9de2a2013-05-25 02:42:55 +00002970 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
Evan Cheng18381b42011-03-29 23:06:19 +00002971 Op.getOperand(1), Op.getOperand(2));
2972 }
James Molloyee868b22015-08-11 12:06:25 +00002973 case Intrinsic::arm_neon_vminnm:
2974 case Intrinsic::arm_neon_vmaxnm: {
2975 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vminnm)
2976 ? ISD::FMINNUM : ISD::FMAXNUM;
2977 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
2978 Op.getOperand(1), Op.getOperand(2));
2979 }
Silviu Barangaad1b19f2015-08-19 14:11:27 +00002980 case Intrinsic::arm_neon_vminu:
2981 case Intrinsic::arm_neon_vmaxu: {
2982 if (Op.getValueType().isFloatingPoint())
2983 return SDValue();
2984 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vminu)
2985 ? ISD::UMIN : ISD::UMAX;
2986 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
2987 Op.getOperand(1), Op.getOperand(2));
2988 }
James Molloyd616c642015-08-11 12:06:28 +00002989 case Intrinsic::arm_neon_vmins:
2990 case Intrinsic::arm_neon_vmaxs: {
2991 // v{min,max}s is overloaded between signed integers and floats.
Silviu Barangaad1b19f2015-08-19 14:11:27 +00002992 if (!Op.getValueType().isFloatingPoint()) {
2993 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmins)
2994 ? ISD::SMIN : ISD::SMAX;
2995 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
2996 Op.getOperand(1), Op.getOperand(2));
2997 }
James Molloyd616c642015-08-11 12:06:28 +00002998 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmins)
2999 ? ISD::FMINNAN : ISD::FMAXNAN;
3000 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
3001 Op.getOperand(1), Op.getOperand(2));
3002 }
Lauro Ramos Venanciof6a67bf2007-11-08 17:20:05 +00003003 }
3004}
3005
Eli Friedman30a49e92011-08-03 21:06:02 +00003006static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG,
3007 const ARMSubtarget *Subtarget) {
3008 // FIXME: handle "fence singlethread" more efficiently.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003009 SDLoc dl(Op);
Eli Friedman26a48482011-07-27 22:21:52 +00003010 if (!Subtarget->hasDataBarrier()) {
3011 // Some ARMv6 cpus can support data barriers with an mcr instruction.
3012 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
3013 // here.
3014 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() &&
Tim Northoverc7ea8042013-10-25 09:30:24 +00003015 "Unexpected ISD::ATOMIC_FENCE encountered. Should be libcall!");
Eli Friedman30a49e92011-08-03 21:06:02 +00003016 return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003017 DAG.getConstant(0, dl, MVT::i32));
Eli Friedman26a48482011-07-27 22:21:52 +00003018 }
3019
Tim Northover36b24172013-07-03 09:20:36 +00003020 ConstantSDNode *OrdN = cast<ConstantSDNode>(Op.getOperand(1));
3021 AtomicOrdering Ord = static_cast<AtomicOrdering>(OrdN->getZExtValue());
Robin Morisseta47cb412014-09-03 21:01:03 +00003022 ARM_MB::MemBOpt Domain = ARM_MB::ISH;
Tim Northoverf5769882013-08-28 14:39:19 +00003023 if (Subtarget->isMClass()) {
3024 // Only a full system barrier exists in the M-class architectures.
3025 Domain = ARM_MB::SY;
3026 } else if (Subtarget->isSwift() && Ord == Release) {
Tim Northover36b24172013-07-03 09:20:36 +00003027 // Swift happens to implement ISHST barriers in a way that's compatible with
3028 // Release semantics but weaker than ISH so we'd be fools not to use
3029 // it. Beware: other processors probably don't!
3030 Domain = ARM_MB::ISHST;
3031 }
3032
Joey Gouly926d3f52013-09-05 15:35:24 +00003033 return DAG.getNode(ISD::INTRINSIC_VOID, dl, MVT::Other, Op.getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003034 DAG.getConstant(Intrinsic::arm_dmb, dl, MVT::i32),
3035 DAG.getConstant(Domain, dl, MVT::i32));
Eli Friedman26a48482011-07-27 22:21:52 +00003036}
3037
Evan Cheng8740ee32010-11-03 06:34:55 +00003038static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG,
3039 const ARMSubtarget *Subtarget) {
3040 // ARM pre v5TE and Thumb1 does not have preload instructions.
3041 if (!(Subtarget->isThumb2() ||
3042 (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps())))
3043 // Just preserve the chain.
3044 return Op.getOperand(0);
3045
Andrew Trickef9de2a2013-05-25 02:42:55 +00003046 SDLoc dl(Op);
Evan Cheng21acf9f2010-11-04 05:19:35 +00003047 unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1;
3048 if (!isRead &&
3049 (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension()))
3050 // ARMv7 with MP extension has PLDW.
3051 return Op.getOperand(0);
Evan Cheng8740ee32010-11-03 06:34:55 +00003052
Bruno Cardoso Lopesdc9ff3a2011-06-14 04:58:37 +00003053 unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
3054 if (Subtarget->isThumb()) {
Evan Cheng8740ee32010-11-03 06:34:55 +00003055 // Invert the bits.
Evan Cheng21acf9f2010-11-04 05:19:35 +00003056 isRead = ~isRead & 1;
Bruno Cardoso Lopesdc9ff3a2011-06-14 04:58:37 +00003057 isData = ~isData & 1;
3058 }
Evan Cheng8740ee32010-11-03 06:34:55 +00003059
3060 return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003061 Op.getOperand(1), DAG.getConstant(isRead, dl, MVT::i32),
3062 DAG.getConstant(isData, dl, MVT::i32));
Evan Cheng8740ee32010-11-03 06:34:55 +00003063}
3064
Dan Gohman31ae5862010-04-17 14:41:14 +00003065static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) {
3066 MachineFunction &MF = DAG.getMachineFunction();
3067 ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>();
3068
Evan Cheng10043e22007-01-19 07:51:42 +00003069 // vastart just stores the address of the VarArgsFrameIndex slot into the
3070 // memory location argument.
Andrew Trickef9de2a2013-05-25 02:42:55 +00003071 SDLoc dl(Op);
Mehdi Amini44ede332015-07-09 02:09:04 +00003072 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
Dan Gohman31ae5862010-04-17 14:41:14 +00003073 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
Dan Gohman2d489b52008-02-06 22:27:42 +00003074 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner886250c2010-09-21 18:51:21 +00003075 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
3076 MachinePointerInfo(SV), false, false, 0);
Evan Cheng10043e22007-01-19 07:51:42 +00003077}
3078
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003079SDValue
Bob Wilson2e076c42009-06-22 23:27:02 +00003080ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
3081 SDValue &Root, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003082 SDLoc dl) const {
Bob Wilson2e076c42009-06-22 23:27:02 +00003083 MachineFunction &MF = DAG.getMachineFunction();
3084 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
3085
Craig Topper760b1342012-02-22 05:59:10 +00003086 const TargetRegisterClass *RC;
David Goodwin22c2fba2009-07-08 23:10:31 +00003087 if (AFI->isThumb1OnlyFunction())
Craig Topperc7242e02012-04-20 07:30:17 +00003088 RC = &ARM::tGPRRegClass;
Bob Wilson2e076c42009-06-22 23:27:02 +00003089 else
Craig Topperc7242e02012-04-20 07:30:17 +00003090 RC = &ARM::GPRRegClass;
Bob Wilson2e076c42009-06-22 23:27:02 +00003091
3092 // Transform the arguments stored in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00003093 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Owen Anderson9f944592009-08-11 20:47:22 +00003094 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
Bob Wilson2e076c42009-06-22 23:27:02 +00003095
3096 SDValue ArgValue2;
3097 if (NextVA.isMemLoc()) {
Bob Wilson2e076c42009-06-22 23:27:02 +00003098 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng0664a672010-07-03 00:40:23 +00003099 int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true);
Bob Wilson2e076c42009-06-22 23:27:02 +00003100
3101 // Create load node to retrieve arguments from the stack.
Mehdi Amini44ede332015-07-09 02:09:04 +00003102 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
Alex Lorenze40c8a22015-08-11 23:09:45 +00003103 ArgValue2 = DAG.getLoad(
3104 MVT::i32, dl, Root, FIN,
3105 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), false,
3106 false, false, 0);
Bob Wilson2e076c42009-06-22 23:27:02 +00003107 } else {
Devang Patelf3292b22011-02-21 23:21:26 +00003108 Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
Owen Anderson9f944592009-08-11 20:47:22 +00003109 ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
Bob Wilson2e076c42009-06-22 23:27:02 +00003110 }
Christian Pirkerb5728192014-05-08 14:06:24 +00003111 if (!Subtarget->isLittle())
3112 std::swap (ArgValue, ArgValue2);
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00003113 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
Bob Wilson2e076c42009-06-22 23:27:02 +00003114}
3115
Stuart Hastings45fe3c32011-04-20 16:47:52 +00003116// The remaining GPRs hold either the beginning of variable-argument
David Peixotto4299cf82013-02-13 00:36:35 +00003117// data, or the beginning of an aggregate passed by value (usually
Stuart Hastings45fe3c32011-04-20 16:47:52 +00003118// byval). Either way, we allocate stack slots adjacent to the data
3119// provided by our caller, and store the unallocated registers there.
3120// If this is a variadic function, the va_list pointer will begin with
3121// these values; otherwise, this reassembles a (byval) structure that
3122// was split between registers and memory.
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003123// Return: The frame index registers were stored into.
3124int
3125ARMTargetLowering::StoreByValRegs(CCState &CCInfo, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003126 SDLoc dl, SDValue &Chain,
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003127 const Value *OrigArg,
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00003128 unsigned InRegsParamRecordIdx,
Tim Northover8cda34f2015-03-11 18:54:22 +00003129 int ArgOffset,
3130 unsigned ArgSize) const {
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003131 // Currently, two use-cases possible:
Alp Tokerf907b892013-12-05 05:44:44 +00003132 // Case #1. Non-var-args function, and we meet first byval parameter.
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003133 // Setup first unallocated register as first byval register;
3134 // eat all remained registers
3135 // (these two actions are performed by HandleByVal method).
3136 // Then, here, we initialize stack frame with
3137 // "store-reg" instructions.
3138 // Case #2. Var-args function, that doesn't contain byval parameters.
3139 // The same: eat all remained unallocated registers,
3140 // initialize stack frame.
3141
Stuart Hastings45fe3c32011-04-20 16:47:52 +00003142 MachineFunction &MF = DAG.getMachineFunction();
3143 MachineFrameInfo *MFI = MF.getFrameInfo();
3144 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00003145 unsigned RBegin, REnd;
3146 if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
3147 CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00003148 } else {
Tim Northover8cda34f2015-03-11 18:54:22 +00003149 unsigned RBeginIdx = CCInfo.getFirstUnallocated(GPRArgRegs);
Aaron Ballmanc579d662015-03-12 13:24:06 +00003150 RBegin = RBeginIdx == 4 ? (unsigned)ARM::R4 : GPRArgRegs[RBeginIdx];
Tim Northover8cda34f2015-03-11 18:54:22 +00003151 REnd = ARM::R4;
Stuart Hastings45fe3c32011-04-20 16:47:52 +00003152 }
3153
Tim Northover8cda34f2015-03-11 18:54:22 +00003154 if (REnd != RBegin)
3155 ArgOffset = -4 * (ARM::R4 - RBegin);
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003156
Mehdi Amini44ede332015-07-09 02:09:04 +00003157 auto PtrVT = getPointerTy(DAG.getDataLayout());
Tim Northover8cda34f2015-03-11 18:54:22 +00003158 int FrameIndex = MFI->CreateFixedObject(ArgSize, ArgOffset, false);
Mehdi Amini44ede332015-07-09 02:09:04 +00003159 SDValue FIN = DAG.getFrameIndex(FrameIndex, PtrVT);
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00003160
Tim Northover8cda34f2015-03-11 18:54:22 +00003161 SmallVector<SDValue, 4> MemOps;
3162 const TargetRegisterClass *RC =
3163 AFI->isThumb1OnlyFunction() ? &ARM::tGPRRegClass : &ARM::GPRRegClass;
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00003164
Tim Northover8cda34f2015-03-11 18:54:22 +00003165 for (unsigned Reg = RBegin, i = 0; Reg < REnd; ++Reg, ++i) {
3166 unsigned VReg = MF.addLiveIn(Reg, RC);
3167 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
3168 SDValue Store =
Stuart Hastings45fe3c32011-04-20 16:47:52 +00003169 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Tim Northover8cda34f2015-03-11 18:54:22 +00003170 MachinePointerInfo(OrigArg, 4 * i), false, false, 0);
3171 MemOps.push_back(Store);
Mehdi Amini44ede332015-07-09 02:09:04 +00003172 FIN = DAG.getNode(ISD::ADD, dl, PtrVT, FIN, DAG.getConstant(4, dl, PtrVT));
Oliver Stannardd55e1152014-03-05 15:25:27 +00003173 }
Tim Northover8cda34f2015-03-11 18:54:22 +00003174
3175 if (!MemOps.empty())
3176 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
3177 return FrameIndex;
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003178}
3179
3180// Setup stack frame, the va_list pointer will start from.
3181void
3182ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003183 SDLoc dl, SDValue &Chain,
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003184 unsigned ArgOffset,
Oliver Stannardd55e1152014-03-05 15:25:27 +00003185 unsigned TotalArgRegsSaveSize,
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003186 bool ForceMutable) const {
3187 MachineFunction &MF = DAG.getMachineFunction();
3188 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
3189
3190 // Try to store any remaining integer argument regs
3191 // to their spots on the stack so that they may be loaded by deferencing
3192 // the result of va_next.
3193 // If there is no regs to be stored, just point address after last
3194 // argument passed via stack.
Tim Northover8cda34f2015-03-11 18:54:22 +00003195 int FrameIndex = StoreByValRegs(CCInfo, DAG, dl, Chain, nullptr,
3196 CCInfo.getInRegsParamsCount(),
3197 CCInfo.getNextStackOffset(), 4);
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003198 AFI->setVarArgsFrameIndex(FrameIndex);
Stuart Hastings45fe3c32011-04-20 16:47:52 +00003199}
3200
Bob Wilson2e076c42009-06-22 23:27:02 +00003201SDValue
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003202ARMTargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel68c5f472009-09-02 08:44:58 +00003203 CallingConv::ID CallConv, bool isVarArg,
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003204 const SmallVectorImpl<ISD::InputArg>
3205 &Ins,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003206 SDLoc dl, SelectionDAG &DAG,
Dan Gohman21cea8a2010-04-17 15:26:15 +00003207 SmallVectorImpl<SDValue> &InVals)
3208 const {
Bob Wilsona4c22902009-04-17 19:07:39 +00003209 MachineFunction &MF = DAG.getMachineFunction();
3210 MachineFrameInfo *MFI = MF.getFrameInfo();
3211
Bob Wilsona4c22902009-04-17 19:07:39 +00003212 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
3213
3214 // Assign locations to all of the incoming arguments.
3215 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopherb5217502014-08-06 18:45:26 +00003216 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
3217 *DAG.getContext(), Prologue);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003218 CCInfo.AnalyzeFormalArguments(Ins,
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00003219 CCAssignFnForNode(CallConv, /* Return*/ false,
3220 isVarArg));
Jim Grosbach54efea02013-03-02 20:16:15 +00003221
Bob Wilsona4c22902009-04-17 19:07:39 +00003222 SmallVector<SDValue, 16> ArgValues;
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003223 SDValue ArgValue;
Stepan Dyatkovskiyf13dbb82012-10-10 11:37:36 +00003224 Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
3225 unsigned CurArgIdx = 0;
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00003226
3227 // Initially ArgRegsSaveSize is zero.
3228 // Then we increase this value each time we meet byval parameter.
3229 // We also increase this value in case of varargs function.
3230 AFI->setArgRegsSaveSize(0);
3231
Oliver Stannardd55e1152014-03-05 15:25:27 +00003232 // Calculate the amount of stack space that we need to allocate to store
3233 // byval and variadic arguments that are passed in registers.
3234 // We need to know this before we allocate the first byval or variadic
3235 // argument, as they will be allocated a stack slot below the CFA (Canonical
3236 // Frame Address, the stack pointer at entry to the function).
Tim Northover8cda34f2015-03-11 18:54:22 +00003237 unsigned ArgRegBegin = ARM::R4;
Oliver Stannardd55e1152014-03-05 15:25:27 +00003238 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
Tim Northover8cda34f2015-03-11 18:54:22 +00003239 if (CCInfo.getInRegsParamsProcessed() >= CCInfo.getInRegsParamsCount())
3240 break;
Oliver Stannardd55e1152014-03-05 15:25:27 +00003241
Tim Northover8cda34f2015-03-11 18:54:22 +00003242 CCValAssign &VA = ArgLocs[i];
3243 unsigned Index = VA.getValNo();
3244 ISD::ArgFlagsTy Flags = Ins[Index].Flags;
3245 if (!Flags.isByVal())
3246 continue;
3247
3248 assert(VA.isMemLoc() && "unexpected byval pointer in reg");
3249 unsigned RBegin, REnd;
3250 CCInfo.getInRegsParamInfo(CCInfo.getInRegsParamsProcessed(), RBegin, REnd);
3251 ArgRegBegin = std::min(ArgRegBegin, RBegin);
3252
3253 CCInfo.nextInRegsParam();
Oliver Stannardd55e1152014-03-05 15:25:27 +00003254 }
3255 CCInfo.rewindByValRegsInfo();
Tim Northover8cda34f2015-03-11 18:54:22 +00003256
3257 int lastInsIndex = -1;
Reid Kleckner2d9bb652014-08-22 21:59:26 +00003258 if (isVarArg && MFI->hasVAStart()) {
Tim Northover8cda34f2015-03-11 18:54:22 +00003259 unsigned RegIdx = CCInfo.getFirstUnallocated(GPRArgRegs);
3260 if (RegIdx != array_lengthof(GPRArgRegs))
3261 ArgRegBegin = std::min(ArgRegBegin, (unsigned)GPRArgRegs[RegIdx]);
Oliver Stannardd55e1152014-03-05 15:25:27 +00003262 }
Tim Northover8cda34f2015-03-11 18:54:22 +00003263
3264 unsigned TotalArgRegsSaveSize = 4 * (ARM::R4 - ArgRegBegin);
3265 AFI->setArgRegsSaveSize(TotalArgRegsSaveSize);
Mehdi Amini44ede332015-07-09 02:09:04 +00003266 auto PtrVT = getPointerTy(DAG.getDataLayout());
Oliver Stannardd55e1152014-03-05 15:25:27 +00003267
Bob Wilsona4c22902009-04-17 19:07:39 +00003268 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3269 CCValAssign &VA = ArgLocs[i];
Andrew Trick05938a52015-02-16 18:10:47 +00003270 if (Ins[VA.getValNo()].isOrigArg()) {
3271 std::advance(CurOrigArg,
3272 Ins[VA.getValNo()].getOrigArgIndex() - CurArgIdx);
3273 CurArgIdx = Ins[VA.getValNo()].getOrigArgIndex();
3274 }
Bob Wilsonea09d4a2009-04-17 20:35:10 +00003275 // Arguments stored in registers.
Bob Wilsona4c22902009-04-17 19:07:39 +00003276 if (VA.isRegLoc()) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003277 EVT RegVT = VA.getLocVT();
Bob Wilsona4c22902009-04-17 19:07:39 +00003278
Bob Wilsona4c22902009-04-17 19:07:39 +00003279 if (VA.needsCustom()) {
Bob Wilson2e076c42009-06-22 23:27:02 +00003280 // f64 and vector types are split up into multiple registers or
3281 // combinations of registers and stack slots.
Owen Anderson9f944592009-08-11 20:47:22 +00003282 if (VA.getLocVT() == MVT::v2f64) {
Bob Wilson2e076c42009-06-22 23:27:02 +00003283 SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003284 Chain, DAG, dl);
Bob Wilson2e076c42009-06-22 23:27:02 +00003285 VA = ArgLocs[++i]; // skip ahead to next loc
Bob Wilson699bdf72010-04-13 22:03:22 +00003286 SDValue ArgValue2;
3287 if (VA.isMemLoc()) {
Evan Cheng0664a672010-07-03 00:40:23 +00003288 int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true);
Mehdi Amini44ede332015-07-09 02:09:04 +00003289 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Alex Lorenze40c8a22015-08-11 23:09:45 +00003290 ArgValue2 = DAG.getLoad(
3291 MVT::f64, dl, Chain, FIN,
3292 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI),
3293 false, false, false, 0);
Bob Wilson699bdf72010-04-13 22:03:22 +00003294 } else {
3295 ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
3296 Chain, DAG, dl);
3297 }
Owen Anderson9f944592009-08-11 20:47:22 +00003298 ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
3299 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003300 ArgValue, ArgValue1,
3301 DAG.getIntPtrConstant(0, dl));
Owen Anderson9f944592009-08-11 20:47:22 +00003302 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003303 ArgValue, ArgValue2,
3304 DAG.getIntPtrConstant(1, dl));
Bob Wilson2e076c42009-06-22 23:27:02 +00003305 } else
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003306 ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
Bob Wilsona4c22902009-04-17 19:07:39 +00003307
Bob Wilson2e076c42009-06-22 23:27:02 +00003308 } else {
Craig Topper760b1342012-02-22 05:59:10 +00003309 const TargetRegisterClass *RC;
Anton Korobeynikov22ef7512009-08-05 19:04:42 +00003310
Owen Anderson9f944592009-08-11 20:47:22 +00003311 if (RegVT == MVT::f32)
Craig Topperc7242e02012-04-20 07:30:17 +00003312 RC = &ARM::SPRRegClass;
Owen Anderson9f944592009-08-11 20:47:22 +00003313 else if (RegVT == MVT::f64)
Craig Topperc7242e02012-04-20 07:30:17 +00003314 RC = &ARM::DPRRegClass;
Owen Anderson9f944592009-08-11 20:47:22 +00003315 else if (RegVT == MVT::v2f64)
Craig Topperc7242e02012-04-20 07:30:17 +00003316 RC = &ARM::QPRRegClass;
Owen Anderson9f944592009-08-11 20:47:22 +00003317 else if (RegVT == MVT::i32)
Craig Topper61e88f42014-11-21 05:58:21 +00003318 RC = AFI->isThumb1OnlyFunction() ? &ARM::tGPRRegClass
3319 : &ARM::GPRRegClass;
Bob Wilson2e076c42009-06-22 23:27:02 +00003320 else
Anton Korobeynikovef98dbe2009-08-05 20:15:19 +00003321 llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
Bob Wilson2e076c42009-06-22 23:27:02 +00003322
3323 // Transform the arguments in physical registers into virtual ones.
Devang Patelf3292b22011-02-21 23:21:26 +00003324 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003325 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Bob Wilsona4c22902009-04-17 19:07:39 +00003326 }
3327
3328 // If this is an 8 or 16-bit value, it is really passed promoted
3329 // to 32 bits. Insert an assert[sz]ext to capture this, then
3330 // truncate to the right size.
3331 switch (VA.getLocInfo()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00003332 default: llvm_unreachable("Unknown loc info!");
Bob Wilsona4c22902009-04-17 19:07:39 +00003333 case CCValAssign::Full: break;
3334 case CCValAssign::BCvt:
Wesley Peck527da1b2010-11-23 03:31:01 +00003335 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Bob Wilsona4c22902009-04-17 19:07:39 +00003336 break;
3337 case CCValAssign::SExt:
3338 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
3339 DAG.getValueType(VA.getValVT()));
3340 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3341 break;
3342 case CCValAssign::ZExt:
3343 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
3344 DAG.getValueType(VA.getValVT()));
3345 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3346 break;
3347 }
3348
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003349 InVals.push_back(ArgValue);
Bob Wilsona4c22902009-04-17 19:07:39 +00003350
3351 } else { // VA.isRegLoc()
3352
3353 // sanity check
3354 assert(VA.isMemLoc());
Owen Anderson9f944592009-08-11 20:47:22 +00003355 assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
Bob Wilsona4c22902009-04-17 19:07:39 +00003356
Andrew Trick05938a52015-02-16 18:10:47 +00003357 int index = VA.getValNo();
Owen Anderson77aa2662011-04-05 21:48:57 +00003358
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003359 // Some Ins[] entries become multiple ArgLoc[] entries.
3360 // Process them only once.
3361 if (index != lastInsIndex)
3362 {
3363 ISD::ArgFlagsTy Flags = Ins[index].Flags;
Eric Christopher0713a9d2011-06-08 23:55:35 +00003364 // FIXME: For now, all byval parameter objects are marked mutable.
Eric Christophere02e07c2011-04-29 23:12:01 +00003365 // This can be changed with more analysis.
3366 // In case of tail call optimization mark all arguments mutable.
3367 // Since they could be overwritten by lowering of arguments in case of
3368 // a tail call.
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003369 if (Flags.isByVal()) {
Andrew Trick05938a52015-02-16 18:10:47 +00003370 assert(Ins[index].isOrigArg() &&
3371 "Byval arguments cannot be implicit");
Daniel Sanders8104b752014-11-01 19:32:23 +00003372 unsigned CurByValIndex = CCInfo.getInRegsParamsProcessed();
Oliver Stannardd55e1152014-03-05 15:25:27 +00003373
Duncan P. N. Exon Smith9f9559e2015-10-19 23:25:57 +00003374 int FrameIndex = StoreByValRegs(
3375 CCInfo, DAG, dl, Chain, &*CurOrigArg, CurByValIndex,
3376 VA.getLocMemOffset(), Flags.getByValSize());
Mehdi Amini44ede332015-07-09 02:09:04 +00003377 InVals.push_back(DAG.getFrameIndex(FrameIndex, PtrVT));
Stepan Dyatkovskiy8c02c982013-05-05 07:48:36 +00003378 CCInfo.nextInRegsParam();
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003379 } else {
Oliver Stannardd55e1152014-03-05 15:25:27 +00003380 unsigned FIOffset = VA.getLocMemOffset();
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003381 int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
Stepan Dyatkovskiyd0e34a22013-05-20 08:01:34 +00003382 FIOffset, true);
Bob Wilsona4c22902009-04-17 19:07:39 +00003383
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003384 // Create load nodes to retrieve arguments from the stack.
Mehdi Amini44ede332015-07-09 02:09:04 +00003385 SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
Alex Lorenze40c8a22015-08-11 23:09:45 +00003386 InVals.push_back(DAG.getLoad(
3387 VA.getValVT(), dl, Chain, FIN,
3388 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI),
3389 false, false, false, 0));
Stuart Hastings67c5c3e2011-02-28 17:17:53 +00003390 }
3391 lastInsIndex = index;
3392 }
Bob Wilsona4c22902009-04-17 19:07:39 +00003393 }
3394 }
3395
3396 // varargs
Reid Kleckner2d9bb652014-08-22 21:59:26 +00003397 if (isVarArg && MFI->hasVAStart())
Stepan Dyatkovskiyf5aa83d2013-04-30 07:19:58 +00003398 VarArgStyleRegisters(CCInfo, DAG, dl, Chain,
Oliver Stannardd55e1152014-03-05 15:25:27 +00003399 CCInfo.getNextStackOffset(),
3400 TotalArgRegsSaveSize);
Evan Cheng10043e22007-01-19 07:51:42 +00003401
Oliver Stannardb14c6252014-04-02 16:10:33 +00003402 AFI->setArgumentStackSize(CCInfo.getNextStackOffset());
3403
Dan Gohmanf9bbcd12009-08-05 01:29:28 +00003404 return Chain;
Evan Cheng10043e22007-01-19 07:51:42 +00003405}
3406
3407/// isFloatingPointZero - Return true if this is +0.0.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003408static bool isFloatingPointZero(SDValue Op) {
Evan Cheng10043e22007-01-19 07:51:42 +00003409 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
Dale Johannesen3cf889f2007-08-31 04:03:46 +00003410 return CFP->getValueAPF().isPosZero();
Gabor Greiff304a7a2008-08-28 21:40:38 +00003411 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
Evan Cheng10043e22007-01-19 07:51:42 +00003412 // Maybe this has already been legalized into the constant pool?
3413 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003414 SDValue WrapperOp = Op.getOperand(1).getOperand(0);
Evan Cheng10043e22007-01-19 07:51:42 +00003415 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
Dan Gohmanbcaf6812010-04-15 01:51:59 +00003416 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
Dale Johannesen3cf889f2007-08-31 04:03:46 +00003417 return CFP->getValueAPF().isPosZero();
Evan Cheng10043e22007-01-19 07:51:42 +00003418 }
Renato Golin6fb9c2e2014-10-23 15:31:50 +00003419 } else if (Op->getOpcode() == ISD::BITCAST &&
3420 Op->getValueType(0) == MVT::f64) {
3421 // Handle (ISD::BITCAST (ARMISD::VMOVIMM (ISD::TargetConstant 0)) MVT::f64)
3422 // created by LowerConstantFP().
3423 SDValue BitcastOp = Op->getOperand(0);
Artyom Skrobov314ee042015-11-25 19:41:11 +00003424 if (BitcastOp->getOpcode() == ARMISD::VMOVIMM &&
3425 isNullConstant(BitcastOp->getOperand(0)))
3426 return true;
Evan Cheng10043e22007-01-19 07:51:42 +00003427 }
3428 return false;
3429}
3430
Evan Cheng10043e22007-01-19 07:51:42 +00003431/// Returns appropriate ARM CMP (cmp) and corresponding condition code for
3432/// the given operands.
Evan Cheng15b80e42009-11-12 07:13:11 +00003433SDValue
3434ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003435 SDValue &ARMcc, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003436 SDLoc dl) const {
Gabor Greiff304a7a2008-08-28 21:40:38 +00003437 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00003438 unsigned C = RHSC->getZExtValue();
Evan Cheng15b80e42009-11-12 07:13:11 +00003439 if (!isLegalICmpImmediate(C)) {
Evan Cheng10043e22007-01-19 07:51:42 +00003440 // Constant does not fit, try adjusting it by one?
3441 switch (CC) {
3442 default: break;
3443 case ISD::SETLT:
Evan Cheng10043e22007-01-19 07:51:42 +00003444 case ISD::SETGE:
Daniel Dunbara54a1b02010-08-25 16:58:05 +00003445 if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
Evan Cheng48b094d2007-02-02 01:53:26 +00003446 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003447 RHS = DAG.getConstant(C - 1, dl, MVT::i32);
Evan Cheng48b094d2007-02-02 01:53:26 +00003448 }
3449 break;
3450 case ISD::SETULT:
3451 case ISD::SETUGE:
Daniel Dunbara54a1b02010-08-25 16:58:05 +00003452 if (C != 0 && isLegalICmpImmediate(C-1)) {
Evan Cheng48b094d2007-02-02 01:53:26 +00003453 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003454 RHS = DAG.getConstant(C - 1, dl, MVT::i32);
Evan Cheng10043e22007-01-19 07:51:42 +00003455 }
3456 break;
3457 case ISD::SETLE:
Evan Cheng10043e22007-01-19 07:51:42 +00003458 case ISD::SETGT:
Daniel Dunbara54a1b02010-08-25 16:58:05 +00003459 if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
Evan Cheng48b094d2007-02-02 01:53:26 +00003460 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003461 RHS = DAG.getConstant(C + 1, dl, MVT::i32);
Evan Cheng48b094d2007-02-02 01:53:26 +00003462 }
3463 break;
3464 case ISD::SETULE:
3465 case ISD::SETUGT:
Daniel Dunbara54a1b02010-08-25 16:58:05 +00003466 if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
Evan Cheng48b094d2007-02-02 01:53:26 +00003467 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003468 RHS = DAG.getConstant(C + 1, dl, MVT::i32);
Evan Cheng10043e22007-01-19 07:51:42 +00003469 }
3470 break;
3471 }
3472 }
3473 }
3474
3475 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
Lauro Ramos Venancio6be85332007-04-02 01:30:03 +00003476 ARMISD::NodeType CompareType;
3477 switch (CondCode) {
3478 default:
3479 CompareType = ARMISD::CMP;
3480 break;
3481 case ARMCC::EQ:
3482 case ARMCC::NE:
David Goodwindbf11ba2009-06-29 15:33:01 +00003483 // Uses only Z Flag
3484 CompareType = ARMISD::CMPZ;
Lauro Ramos Venancio6be85332007-04-02 01:30:03 +00003485 break;
3486 }
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003487 ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003488 return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS);
Evan Cheng10043e22007-01-19 07:51:42 +00003489}
3490
3491/// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
Evan Cheng25f93642010-07-08 02:08:50 +00003492SDValue
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003493ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00003494 SDLoc dl) const {
Oliver Stannard51b1d462014-08-21 12:50:31 +00003495 assert(!Subtarget->isFPOnlySP() || RHS.getValueType() != MVT::f64);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003496 SDValue Cmp;
Evan Cheng10043e22007-01-19 07:51:42 +00003497 if (!isFloatingPointZero(RHS))
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003498 Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS);
Evan Cheng10043e22007-01-19 07:51:42 +00003499 else
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003500 Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS);
3501 return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp);
Evan Cheng10043e22007-01-19 07:51:42 +00003502}
3503
Bob Wilson45acbd02011-03-08 01:17:20 +00003504/// duplicateCmp - Glue values can have only one use, so this function
3505/// duplicates a comparison node.
3506SDValue
3507ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const {
3508 unsigned Opc = Cmp.getOpcode();
Andrew Trickef9de2a2013-05-25 02:42:55 +00003509 SDLoc DL(Cmp);
Bob Wilson45acbd02011-03-08 01:17:20 +00003510 if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ)
3511 return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3512
3513 assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation");
3514 Cmp = Cmp.getOperand(0);
3515 Opc = Cmp.getOpcode();
3516 if (Opc == ARMISD::CMPFP)
3517 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3518 else {
3519 assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT");
3520 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0));
3521 }
3522 return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp);
3523}
3524
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003525std::pair<SDValue, SDValue>
3526ARMTargetLowering::getARMXALUOOp(SDValue Op, SelectionDAG &DAG,
3527 SDValue &ARMcc) const {
3528 assert(Op.getValueType() == MVT::i32 && "Unsupported value type");
3529
3530 SDValue Value, OverflowCmp;
3531 SDValue LHS = Op.getOperand(0);
3532 SDValue RHS = Op.getOperand(1);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003533 SDLoc dl(Op);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003534
3535 // FIXME: We are currently always generating CMPs because we don't support
3536 // generating CMN through the backend. This is not as good as the natural
3537 // CMP case because it causes a register dependency and cannot be folded
3538 // later.
3539
3540 switch (Op.getOpcode()) {
3541 default:
3542 llvm_unreachable("Unknown overflow instruction!");
3543 case ISD::SADDO:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003544 ARMcc = DAG.getConstant(ARMCC::VC, dl, MVT::i32);
3545 Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS);
3546 OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003547 break;
3548 case ISD::UADDO:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003549 ARMcc = DAG.getConstant(ARMCC::HS, dl, MVT::i32);
3550 Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS);
3551 OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003552 break;
3553 case ISD::SSUBO:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003554 ARMcc = DAG.getConstant(ARMCC::VC, dl, MVT::i32);
3555 Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS);
3556 OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, LHS, RHS);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003557 break;
3558 case ISD::USUBO:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003559 ARMcc = DAG.getConstant(ARMCC::HS, dl, MVT::i32);
3560 Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS);
3561 OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, LHS, RHS);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003562 break;
3563 } // switch (...)
3564
3565 return std::make_pair(Value, OverflowCmp);
3566}
3567
3568
3569SDValue
3570ARMTargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
3571 // Let legalize expand this if it isn't a legal type yet.
3572 if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
3573 return SDValue();
3574
3575 SDValue Value, OverflowCmp;
3576 SDValue ARMcc;
3577 std::tie(Value, OverflowCmp) = getARMXALUOOp(Op, DAG, ARMcc);
3578 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003579 SDLoc dl(Op);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003580 // We use 0 and 1 as false and true values.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003581 SDValue TVal = DAG.getConstant(1, dl, MVT::i32);
3582 SDValue FVal = DAG.getConstant(0, dl, MVT::i32);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003583 EVT VT = Op.getValueType();
3584
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003585 SDValue Overflow = DAG.getNode(ARMISD::CMOV, dl, VT, TVal, FVal,
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003586 ARMcc, CCR, OverflowCmp);
3587
3588 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003589 return DAG.getNode(ISD::MERGE_VALUES, dl, VTs, Value, Overflow);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003590}
3591
3592
Bill Wendling6a981312010-08-11 08:43:16 +00003593SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
3594 SDValue Cond = Op.getOperand(0);
3595 SDValue SelectTrue = Op.getOperand(1);
3596 SDValue SelectFalse = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003597 SDLoc dl(Op);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003598 unsigned Opc = Cond.getOpcode();
3599
3600 if (Cond.getResNo() == 1 &&
3601 (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
3602 Opc == ISD::USUBO)) {
3603 if (!DAG.getTargetLoweringInfo().isTypeLegal(Cond->getValueType(0)))
3604 return SDValue();
3605
3606 SDValue Value, OverflowCmp;
3607 SDValue ARMcc;
3608 std::tie(Value, OverflowCmp) = getARMXALUOOp(Cond, DAG, ARMcc);
3609 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3610 EVT VT = Op.getValueType();
3611
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003612 return getCMOV(dl, VT, SelectTrue, SelectFalse, ARMcc, CCR,
Oliver Stannard51b1d462014-08-21 12:50:31 +00003613 OverflowCmp, DAG);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00003614 }
Bill Wendling6a981312010-08-11 08:43:16 +00003615
3616 // Convert:
3617 //
3618 // (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond)
3619 // (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond)
3620 //
3621 if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) {
3622 const ConstantSDNode *CMOVTrue =
3623 dyn_cast<ConstantSDNode>(Cond.getOperand(0));
3624 const ConstantSDNode *CMOVFalse =
3625 dyn_cast<ConstantSDNode>(Cond.getOperand(1));
3626
3627 if (CMOVTrue && CMOVFalse) {
3628 unsigned CMOVTrueVal = CMOVTrue->getZExtValue();
3629 unsigned CMOVFalseVal = CMOVFalse->getZExtValue();
3630
3631 SDValue True;
3632 SDValue False;
3633 if (CMOVTrueVal == 1 && CMOVFalseVal == 0) {
3634 True = SelectTrue;
3635 False = SelectFalse;
3636 } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) {
3637 True = SelectFalse;
3638 False = SelectTrue;
3639 }
3640
3641 if (True.getNode() && False.getNode()) {
Evan Cheng522fbfe2011-05-18 18:59:17 +00003642 EVT VT = Op.getValueType();
Bill Wendling6a981312010-08-11 08:43:16 +00003643 SDValue ARMcc = Cond.getOperand(2);
3644 SDValue CCR = Cond.getOperand(3);
Bob Wilson45acbd02011-03-08 01:17:20 +00003645 SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG);
Evan Cheng522fbfe2011-05-18 18:59:17 +00003646 assert(True.getValueType() == VT);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003647 return getCMOV(dl, VT, True, False, ARMcc, CCR, Cmp, DAG);
Bill Wendling6a981312010-08-11 08:43:16 +00003648 }
3649 }
3650 }
3651
Dan Gohmand4a77c42012-02-24 00:09:36 +00003652 // ARM's BooleanContents value is UndefinedBooleanContent. Mask out the
3653 // undefined bits before doing a full-word comparison with zero.
3654 Cond = DAG.getNode(ISD::AND, dl, Cond.getValueType(), Cond,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003655 DAG.getConstant(1, dl, Cond.getValueType()));
Dan Gohmand4a77c42012-02-24 00:09:36 +00003656
Bill Wendling6a981312010-08-11 08:43:16 +00003657 return DAG.getSelectCC(dl, Cond,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003658 DAG.getConstant(0, dl, Cond.getValueType()),
Bill Wendling6a981312010-08-11 08:43:16 +00003659 SelectTrue, SelectFalse, ISD::SETNE);
3660}
3661
Joey Gouly881eab52013-08-22 15:29:11 +00003662static void checkVSELConstraints(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
3663 bool &swpCmpOps, bool &swpVselOps) {
3664 // Start by selecting the GE condition code for opcodes that return true for
3665 // 'equality'
3666 if (CC == ISD::SETUGE || CC == ISD::SETOGE || CC == ISD::SETOLE ||
3667 CC == ISD::SETULE)
3668 CondCode = ARMCC::GE;
3669
3670 // and GT for opcodes that return false for 'equality'.
3671 else if (CC == ISD::SETUGT || CC == ISD::SETOGT || CC == ISD::SETOLT ||
3672 CC == ISD::SETULT)
3673 CondCode = ARMCC::GT;
3674
3675 // Since we are constrained to GE/GT, if the opcode contains 'less', we need
3676 // to swap the compare operands.
3677 if (CC == ISD::SETOLE || CC == ISD::SETULE || CC == ISD::SETOLT ||
3678 CC == ISD::SETULT)
3679 swpCmpOps = true;
3680
3681 // Both GT and GE are ordered comparisons, and return false for 'unordered'.
3682 // If we have an unordered opcode, we need to swap the operands to the VSEL
3683 // instruction (effectively negating the condition).
3684 //
3685 // This also has the effect of swapping which one of 'less' or 'greater'
3686 // returns true, so we also swap the compare operands. It also switches
3687 // whether we return true for 'equality', so we compensate by picking the
3688 // opposite condition code to our original choice.
3689 if (CC == ISD::SETULE || CC == ISD::SETULT || CC == ISD::SETUGE ||
3690 CC == ISD::SETUGT) {
3691 swpCmpOps = !swpCmpOps;
3692 swpVselOps = !swpVselOps;
3693 CondCode = CondCode == ARMCC::GT ? ARMCC::GE : ARMCC::GT;
3694 }
3695
3696 // 'ordered' is 'anything but unordered', so use the VS condition code and
3697 // swap the VSEL operands.
3698 if (CC == ISD::SETO) {
3699 CondCode = ARMCC::VS;
3700 swpVselOps = true;
3701 }
3702
3703 // 'unordered or not equal' is 'anything but equal', so use the EQ condition
3704 // code and swap the VSEL operands.
3705 if (CC == ISD::SETUNE) {
3706 CondCode = ARMCC::EQ;
3707 swpVselOps = true;
3708 }
3709}
3710
Oliver Stannard51b1d462014-08-21 12:50:31 +00003711SDValue ARMTargetLowering::getCMOV(SDLoc dl, EVT VT, SDValue FalseVal,
3712 SDValue TrueVal, SDValue ARMcc, SDValue CCR,
3713 SDValue Cmp, SelectionDAG &DAG) const {
3714 if (Subtarget->isFPOnlySP() && VT == MVT::f64) {
3715 FalseVal = DAG.getNode(ARMISD::VMOVRRD, dl,
3716 DAG.getVTList(MVT::i32, MVT::i32), FalseVal);
3717 TrueVal = DAG.getNode(ARMISD::VMOVRRD, dl,
3718 DAG.getVTList(MVT::i32, MVT::i32), TrueVal);
3719
3720 SDValue TrueLow = TrueVal.getValue(0);
3721 SDValue TrueHigh = TrueVal.getValue(1);
3722 SDValue FalseLow = FalseVal.getValue(0);
3723 SDValue FalseHigh = FalseVal.getValue(1);
3724
3725 SDValue Low = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseLow, TrueLow,
3726 ARMcc, CCR, Cmp);
3727 SDValue High = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseHigh, TrueHigh,
3728 ARMcc, CCR, duplicateCmp(Cmp, DAG));
3729
3730 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Low, High);
3731 } else {
3732 return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,
3733 Cmp);
3734 }
3735}
3736
Dan Gohman21cea8a2010-04-17 15:26:15 +00003737SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
Owen Anderson53aa7a92009-08-10 22:56:29 +00003738 EVT VT = Op.getValueType();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003739 SDValue LHS = Op.getOperand(0);
3740 SDValue RHS = Op.getOperand(1);
Evan Cheng10043e22007-01-19 07:51:42 +00003741 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003742 SDValue TrueVal = Op.getOperand(2);
3743 SDValue FalseVal = Op.getOperand(3);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003744 SDLoc dl(Op);
Evan Cheng10043e22007-01-19 07:51:42 +00003745
Oliver Stannard51b1d462014-08-21 12:50:31 +00003746 if (Subtarget->isFPOnlySP() && LHS.getValueType() == MVT::f64) {
3747 DAG.getTargetLoweringInfo().softenSetCCOperands(DAG, MVT::f64, LHS, RHS, CC,
3748 dl);
3749
3750 // If softenSetCCOperands only returned one value, we should compare it to
3751 // zero.
3752 if (!RHS.getNode()) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003753 RHS = DAG.getConstant(0, dl, LHS.getValueType());
Oliver Stannard51b1d462014-08-21 12:50:31 +00003754 CC = ISD::SETNE;
3755 }
3756 }
3757
Owen Anderson9f944592009-08-11 20:47:22 +00003758 if (LHS.getValueType() == MVT::i32) {
Joey Gouly881eab52013-08-22 15:29:11 +00003759 // Try to generate VSEL on ARMv8.
3760 // The VSEL instruction can't use all the usual ARM condition
3761 // codes: it only has two bits to select the condition code, so it's
3762 // constrained to use only GE, GT, VS and EQ.
3763 //
3764 // To implement all the various ISD::SETXXX opcodes, we sometimes need to
3765 // swap the operands of the previous compare instruction (effectively
3766 // inverting the compare condition, swapping 'less' and 'greater') and
3767 // sometimes need to swap the operands to the VSEL (which inverts the
3768 // condition in the sense of firing whenever the previous condition didn't)
Eric Christopher1889fdc2015-01-29 00:19:39 +00003769 if (Subtarget->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3770 TrueVal.getValueType() == MVT::f64)) {
Joey Gouly881eab52013-08-22 15:29:11 +00003771 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3772 if (CondCode == ARMCC::LT || CondCode == ARMCC::LE ||
3773 CondCode == ARMCC::VC || CondCode == ARMCC::NE) {
Artyom Skrobov3f8eae92015-05-06 11:44:10 +00003774 CC = ISD::getSetCCInverse(CC, true);
Joey Gouly881eab52013-08-22 15:29:11 +00003775 std::swap(TrueVal, FalseVal);
3776 }
3777 }
3778
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003779 SDValue ARMcc;
Owen Anderson9f944592009-08-11 20:47:22 +00003780 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003781 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003782 return getCMOV(dl, VT, FalseVal, TrueVal, ARMcc, CCR, Cmp, DAG);
Evan Cheng10043e22007-01-19 07:51:42 +00003783 }
3784
3785 ARMCC::CondCodes CondCode, CondCode2;
Bob Wilsona2e83332009-09-09 23:14:54 +00003786 FPCCToARMCC(CC, CondCode, CondCode2);
Evan Cheng10043e22007-01-19 07:51:42 +00003787
Scott Douglass7ad77922015-04-08 17:18:28 +00003788 // Try to generate VMAXNM/VMINNM on ARMv8.
Eric Christopher1889fdc2015-01-29 00:19:39 +00003789 if (Subtarget->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3790 TrueVal.getValueType() == MVT::f64)) {
Joey Gouly881eab52013-08-22 15:29:11 +00003791 bool swpCmpOps = false;
3792 bool swpVselOps = false;
3793 checkVSELConstraints(CC, CondCode, swpCmpOps, swpVselOps);
3794
3795 if (CondCode == ARMCC::GT || CondCode == ARMCC::GE ||
3796 CondCode == ARMCC::VS || CondCode == ARMCC::EQ) {
3797 if (swpCmpOps)
3798 std::swap(LHS, RHS);
3799 if (swpVselOps)
3800 std::swap(TrueVal, FalseVal);
3801 }
3802 }
3803
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003804 SDValue ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003805 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00003806 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003807 SDValue Result = getCMOV(dl, VT, FalseVal, TrueVal, ARMcc, CCR, Cmp, DAG);
Evan Cheng10043e22007-01-19 07:51:42 +00003808 if (CondCode2 != ARMCC::AL) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003809 SDValue ARMcc2 = DAG.getConstant(CondCode2, dl, MVT::i32);
Evan Cheng10043e22007-01-19 07:51:42 +00003810 // FIXME: Needs another CMP because flag can have but one use.
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003811 SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
Oliver Stannard51b1d462014-08-21 12:50:31 +00003812 Result = getCMOV(dl, VT, Result, TrueVal, ARMcc2, CCR, Cmp2, DAG);
Evan Cheng10043e22007-01-19 07:51:42 +00003813 }
3814 return Result;
3815}
3816
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003817/// canChangeToInt - Given the fp compare operand, return true if it is suitable
3818/// to morph to an integer compare sequence.
3819static bool canChangeToInt(SDValue Op, bool &SeenZero,
3820 const ARMSubtarget *Subtarget) {
3821 SDNode *N = Op.getNode();
3822 if (!N->hasOneUse())
3823 // Otherwise it requires moving the value from fp to integer registers.
3824 return false;
3825 if (!N->getNumValues())
3826 return false;
3827 EVT VT = Op.getValueType();
3828 if (VT != MVT::f32 && !Subtarget->isFPBrccSlow())
3829 // f32 case is generally profitable. f64 case only makes sense when vcmpe +
3830 // vmrs are very slow, e.g. cortex-a8.
3831 return false;
3832
3833 if (isFloatingPointZero(Op)) {
3834 SeenZero = true;
3835 return true;
3836 }
3837 return ISD::isNormalLoad(N);
3838}
3839
3840static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) {
3841 if (isFloatingPointZero(Op))
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003842 return DAG.getConstant(0, SDLoc(Op), MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003843
3844 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op))
Andrew Trickef9de2a2013-05-25 02:42:55 +00003845 return DAG.getLoad(MVT::i32, SDLoc(Op),
Chris Lattner7727d052010-09-21 06:44:06 +00003846 Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003847 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003848 Ld->isInvariant(), Ld->getAlignment());
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003849
3850 llvm_unreachable("Unknown VFP cmp argument!");
3851}
3852
3853static void expandf64Toi32(SDValue Op, SelectionDAG &DAG,
3854 SDValue &RetVal1, SDValue &RetVal2) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003855 SDLoc dl(Op);
3856
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003857 if (isFloatingPointZero(Op)) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003858 RetVal1 = DAG.getConstant(0, dl, MVT::i32);
3859 RetVal2 = DAG.getConstant(0, dl, MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003860 return;
3861 }
3862
3863 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) {
3864 SDValue Ptr = Ld->getBasePtr();
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003865 RetVal1 = DAG.getLoad(MVT::i32, dl,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003866 Ld->getChain(), Ptr,
Chris Lattner7727d052010-09-21 06:44:06 +00003867 Ld->getPointerInfo(),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003868 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003869 Ld->isInvariant(), Ld->getAlignment());
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003870
3871 EVT PtrType = Ptr.getValueType();
3872 unsigned NewAlign = MinAlign(Ld->getAlignment(), 4);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003873 SDValue NewPtr = DAG.getNode(ISD::ADD, dl,
3874 PtrType, Ptr, DAG.getConstant(4, dl, PtrType));
3875 RetVal2 = DAG.getLoad(MVT::i32, dl,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003876 Ld->getChain(), NewPtr,
Chris Lattner7727d052010-09-21 06:44:06 +00003877 Ld->getPointerInfo().getWithOffset(4),
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003878 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00003879 Ld->isInvariant(), NewAlign);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003880 return;
3881 }
3882
3883 llvm_unreachable("Unknown VFP cmp argument!");
3884}
3885
3886/// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some
3887/// f32 and even f64 comparisons to integer ones.
3888SDValue
3889ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
3890 SDValue Chain = Op.getOperand(0);
Evan Cheng10043e22007-01-19 07:51:42 +00003891 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003892 SDValue LHS = Op.getOperand(2);
3893 SDValue RHS = Op.getOperand(3);
3894 SDValue Dest = Op.getOperand(4);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003895 SDLoc dl(Op);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003896
Evan Chengd12af5d2012-03-01 23:27:13 +00003897 bool LHSSeenZero = false;
3898 bool LHSOk = canChangeToInt(LHS, LHSSeenZero, Subtarget);
3899 bool RHSSeenZero = false;
3900 bool RHSOk = canChangeToInt(RHS, RHSSeenZero, Subtarget);
3901 if (LHSOk && RHSOk && (LHSSeenZero || RHSSeenZero)) {
Bob Wilson70bd3632011-03-08 01:17:16 +00003902 // If unsafe fp math optimization is enabled and there are no other uses of
3903 // the CMP operands, and the condition code is EQ or NE, we can optimize it
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003904 // to an integer comparison.
3905 if (CC == ISD::SETOEQ)
3906 CC = ISD::SETEQ;
3907 else if (CC == ISD::SETUNE)
3908 CC = ISD::SETNE;
3909
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003910 SDValue Mask = DAG.getConstant(0x7fffffff, dl, MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003911 SDValue ARMcc;
3912 if (LHS.getValueType() == MVT::f32) {
Evan Chengd12af5d2012-03-01 23:27:13 +00003913 LHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3914 bitcastf32Toi32(LHS, DAG), Mask);
3915 RHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3916 bitcastf32Toi32(RHS, DAG), Mask);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003917 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3918 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3919 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3920 Chain, Dest, ARMcc, CCR, Cmp);
3921 }
3922
3923 SDValue LHS1, LHS2;
3924 SDValue RHS1, RHS2;
3925 expandf64Toi32(LHS, DAG, LHS1, LHS2);
3926 expandf64Toi32(RHS, DAG, RHS1, RHS2);
Evan Chengd12af5d2012-03-01 23:27:13 +00003927 LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask);
3928 RHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, RHS2, Mask);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003929 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003930 ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003931 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003932 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest };
Craig Topper48d114b2014-04-26 18:35:24 +00003933 return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003934 }
3935
3936 return SDValue();
3937}
3938
3939SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3940 SDValue Chain = Op.getOperand(0);
3941 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3942 SDValue LHS = Op.getOperand(2);
3943 SDValue RHS = Op.getOperand(3);
3944 SDValue Dest = Op.getOperand(4);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003945 SDLoc dl(Op);
Evan Cheng10043e22007-01-19 07:51:42 +00003946
Oliver Stannard51b1d462014-08-21 12:50:31 +00003947 if (Subtarget->isFPOnlySP() && LHS.getValueType() == MVT::f64) {
3948 DAG.getTargetLoweringInfo().softenSetCCOperands(DAG, MVT::f64, LHS, RHS, CC,
3949 dl);
3950
3951 // If softenSetCCOperands only returned one value, we should compare it to
3952 // zero.
3953 if (!RHS.getNode()) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003954 RHS = DAG.getConstant(0, dl, LHS.getValueType());
Oliver Stannard51b1d462014-08-21 12:50:31 +00003955 CC = ISD::SETNE;
3956 }
3957 }
3958
Owen Anderson9f944592009-08-11 20:47:22 +00003959 if (LHS.getValueType() == MVT::i32) {
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003960 SDValue ARMcc;
3961 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00003962 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Owen Anderson9f944592009-08-11 20:47:22 +00003963 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003964 Chain, Dest, ARMcc, CCR, Cmp);
Evan Cheng10043e22007-01-19 07:51:42 +00003965 }
3966
Owen Anderson9f944592009-08-11 20:47:22 +00003967 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003968
Nick Lewycky50f02cb2011-12-02 22:16:29 +00003969 if (getTargetMachine().Options.UnsafeFPMath &&
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003970 (CC == ISD::SETEQ || CC == ISD::SETOEQ ||
3971 CC == ISD::SETNE || CC == ISD::SETUNE)) {
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00003972 if (SDValue Result = OptimizeVFPBrcond(Op, DAG))
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003973 return Result;
3974 }
3975
Evan Cheng10043e22007-01-19 07:51:42 +00003976 ARMCC::CondCodes CondCode, CondCode2;
Bob Wilsona2e83332009-09-09 23:14:54 +00003977 FPCCToARMCC(CC, CondCode, CondCode2);
Bob Wilson7117a912009-03-20 22:42:55 +00003978
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003979 SDValue ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003980 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
Owen Anderson9f944592009-08-11 20:47:22 +00003981 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Chris Lattner3e5fbd72010-12-21 02:38:05 +00003982 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003983 SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp };
Craig Topper48d114b2014-04-26 18:35:24 +00003984 SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
Evan Cheng10043e22007-01-19 07:51:42 +00003985 if (CondCode2 != ARMCC::AL) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00003986 ARMcc = DAG.getConstant(CondCode2, dl, MVT::i32);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00003987 SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) };
Craig Topper48d114b2014-04-26 18:35:24 +00003988 Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
Evan Cheng10043e22007-01-19 07:51:42 +00003989 }
3990 return Res;
3991}
3992
Dan Gohman21cea8a2010-04-17 15:26:15 +00003993SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00003994 SDValue Chain = Op.getOperand(0);
3995 SDValue Table = Op.getOperand(1);
3996 SDValue Index = Op.getOperand(2);
Andrew Trickef9de2a2013-05-25 02:42:55 +00003997 SDLoc dl(Op);
Evan Cheng10043e22007-01-19 07:51:42 +00003998
Mehdi Amini44ede332015-07-09 02:09:04 +00003999 EVT PTy = getPointerTy(DAG.getDataLayout());
Evan Cheng10043e22007-01-19 07:51:42 +00004000 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004001 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
Tim Northover4998a472015-05-13 20:28:38 +00004002 Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004003 Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, dl, PTy));
Evan Chengc8bed032009-07-28 20:53:24 +00004004 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Evan Chengf3a1fce2009-07-25 00:33:29 +00004005 if (Subtarget->isThumb2()) {
4006 // Thumb2 uses a two-level jump. That is, it jumps into the jump table
4007 // which does another jump to the destination. This also makes it easier
4008 // to translate it to TBB / TBH later.
4009 // FIXME: This might not work if the function is extremely large.
Owen Anderson9f944592009-08-11 20:47:22 +00004010 return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
Tim Northover4998a472015-05-13 20:28:38 +00004011 Addr, Op.getOperand(2), JTI);
Evan Chengf3a1fce2009-07-25 00:33:29 +00004012 }
Evan Chengf3a1fce2009-07-25 00:33:29 +00004013 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Alex Lorenze40c8a22015-08-11 23:09:45 +00004014 Addr =
4015 DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
4016 MachinePointerInfo::getJumpTable(DAG.getMachineFunction()),
4017 false, false, false, 0);
Evan Chengf3a1fce2009-07-25 00:33:29 +00004018 Chain = Addr.getValue(1);
Dale Johannesen021052a2009-02-04 20:06:27 +00004019 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
Tim Northover4998a472015-05-13 20:28:38 +00004020 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI);
Evan Chengf3a1fce2009-07-25 00:33:29 +00004021 } else {
Alex Lorenze40c8a22015-08-11 23:09:45 +00004022 Addr =
4023 DAG.getLoad(PTy, dl, Chain, Addr,
4024 MachinePointerInfo::getJumpTable(DAG.getMachineFunction()),
4025 false, false, false, 0);
Evan Chengf3a1fce2009-07-25 00:33:29 +00004026 Chain = Addr.getValue(1);
Tim Northover4998a472015-05-13 20:28:38 +00004027 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI);
Evan Chengf3a1fce2009-07-25 00:33:29 +00004028 }
Evan Cheng10043e22007-01-19 07:51:42 +00004029}
4030
Eli Friedman2d4055b2011-11-09 23:36:02 +00004031static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
James Molloy547d4c02012-02-20 09:24:05 +00004032 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004033 SDLoc dl(Op);
Eli Friedman2d4055b2011-11-09 23:36:02 +00004034
James Molloy547d4c02012-02-20 09:24:05 +00004035 if (Op.getValueType().getVectorElementType() == MVT::i32) {
4036 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::f32)
4037 return Op;
4038 return DAG.UnrollVectorOp(Op.getNode());
4039 }
4040
4041 assert(Op.getOperand(0).getValueType() == MVT::v4f32 &&
4042 "Invalid type for custom lowering!");
4043 if (VT != MVT::v4i16)
4044 return DAG.UnrollVectorOp(Op.getNode());
4045
4046 Op = DAG.getNode(Op.getOpcode(), dl, MVT::v4i32, Op.getOperand(0));
4047 return DAG.getNode(ISD::TRUNCATE, dl, VT, Op);
Eli Friedman2d4055b2011-11-09 23:36:02 +00004048}
4049
Oliver Stannard51b1d462014-08-21 12:50:31 +00004050SDValue ARMTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) const {
Eli Friedman2d4055b2011-11-09 23:36:02 +00004051 EVT VT = Op.getValueType();
4052 if (VT.isVector())
4053 return LowerVectorFP_TO_INT(Op, DAG);
Oliver Stannard51b1d462014-08-21 12:50:31 +00004054 if (Subtarget->isFPOnlySP() && Op.getOperand(0).getValueType() == MVT::f64) {
4055 RTLIB::Libcall LC;
4056 if (Op.getOpcode() == ISD::FP_TO_SINT)
4057 LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(),
4058 Op.getValueType());
4059 else
4060 LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(),
4061 Op.getValueType());
Craig Topper8fe40e02015-10-22 17:05:00 +00004062 return makeLibCall(DAG, LC, Op.getValueType(), Op.getOperand(0),
Oliver Stannard51b1d462014-08-21 12:50:31 +00004063 /*isSigned*/ false, SDLoc(Op)).first;
4064 }
4065
James Molloyfa041152015-03-23 16:15:16 +00004066 return Op;
Bob Wilsone4191e72010-03-19 22:51:32 +00004067}
4068
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00004069static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
4070 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004071 SDLoc dl(Op);
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00004072
Eli Friedman2d4055b2011-11-09 23:36:02 +00004073 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::i32) {
4074 if (VT.getVectorElementType() == MVT::f32)
4075 return Op;
4076 return DAG.UnrollVectorOp(Op.getNode());
4077 }
4078
Duncan Sandsa41634e2011-08-12 14:54:45 +00004079 assert(Op.getOperand(0).getValueType() == MVT::v4i16 &&
4080 "Invalid type for custom lowering!");
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00004081 if (VT != MVT::v4f32)
4082 return DAG.UnrollVectorOp(Op.getNode());
4083
4084 unsigned CastOpc;
4085 unsigned Opc;
4086 switch (Op.getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00004087 default: llvm_unreachable("Invalid opcode!");
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00004088 case ISD::SINT_TO_FP:
4089 CastOpc = ISD::SIGN_EXTEND;
4090 Opc = ISD::SINT_TO_FP;
4091 break;
4092 case ISD::UINT_TO_FP:
4093 CastOpc = ISD::ZERO_EXTEND;
4094 Opc = ISD::UINT_TO_FP;
4095 break;
4096 }
4097
4098 Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0));
4099 return DAG.getNode(Opc, dl, VT, Op);
4100}
4101
Oliver Stannard51b1d462014-08-21 12:50:31 +00004102SDValue ARMTargetLowering::LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) const {
Bob Wilsone4191e72010-03-19 22:51:32 +00004103 EVT VT = Op.getValueType();
Cameron Zwarich143f9ae2011-03-29 21:41:55 +00004104 if (VT.isVector())
4105 return LowerVectorINT_TO_FP(Op, DAG);
Oliver Stannard51b1d462014-08-21 12:50:31 +00004106 if (Subtarget->isFPOnlySP() && Op.getValueType() == MVT::f64) {
4107 RTLIB::Libcall LC;
4108 if (Op.getOpcode() == ISD::SINT_TO_FP)
4109 LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(),
4110 Op.getValueType());
4111 else
4112 LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(),
4113 Op.getValueType());
Craig Topper8fe40e02015-10-22 17:05:00 +00004114 return makeLibCall(DAG, LC, Op.getValueType(), Op.getOperand(0),
Oliver Stannard51b1d462014-08-21 12:50:31 +00004115 /*isSigned*/ false, SDLoc(Op)).first;
4116 }
4117
James Molloyfa041152015-03-23 16:15:16 +00004118 return Op;
Bob Wilsone4191e72010-03-19 22:51:32 +00004119}
4120
Evan Cheng25f93642010-07-08 02:08:50 +00004121SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng10043e22007-01-19 07:51:42 +00004122 // Implement fcopysign with a fabs and a conditional fneg.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004123 SDValue Tmp0 = Op.getOperand(0);
4124 SDValue Tmp1 = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004125 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00004126 EVT VT = Op.getValueType();
4127 EVT SrcVT = Tmp1.getValueType();
Evan Chengd6b641e2011-02-23 02:24:55 +00004128 bool InGPR = Tmp0.getOpcode() == ISD::BITCAST ||
4129 Tmp0.getOpcode() == ARMISD::VMOVDRR;
4130 bool UseNEON = !InGPR && Subtarget->hasNEON();
4131
4132 if (UseNEON) {
4133 // Use VBSL to copy the sign bit.
4134 unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80);
4135 SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004136 DAG.getTargetConstant(EncodedVal, dl, MVT::i32));
Evan Chengd6b641e2011-02-23 02:24:55 +00004137 EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64;
4138 if (VT == MVT::f64)
4139 Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT,
4140 DAG.getNode(ISD::BITCAST, dl, OpVT, Mask),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004141 DAG.getConstant(32, dl, MVT::i32));
Evan Chengd6b641e2011-02-23 02:24:55 +00004142 else /*if (VT == MVT::f32)*/
4143 Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0);
4144 if (SrcVT == MVT::f32) {
4145 Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1);
4146 if (VT == MVT::f64)
4147 Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT,
4148 DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004149 DAG.getConstant(32, dl, MVT::i32));
Evan Cheng12bb05b2011-04-15 01:31:00 +00004150 } else if (VT == MVT::f32)
4151 Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64,
4152 DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004153 DAG.getConstant(32, dl, MVT::i32));
Evan Chengd6b641e2011-02-23 02:24:55 +00004154 Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0);
4155 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1);
4156
4157 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004158 dl, MVT::i32);
Evan Chengd6b641e2011-02-23 02:24:55 +00004159 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes);
4160 SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask,
4161 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes));
Owen Anderson77aa2662011-04-05 21:48:57 +00004162
Evan Chengd6b641e2011-02-23 02:24:55 +00004163 SDValue Res = DAG.getNode(ISD::OR, dl, OpVT,
4164 DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask),
4165 DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot));
Evan Cheng6e3d4432011-02-28 18:45:27 +00004166 if (VT == MVT::f32) {
Evan Chengd6b641e2011-02-23 02:24:55 +00004167 Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res);
4168 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004169 DAG.getConstant(0, dl, MVT::i32));
Evan Chengd6b641e2011-02-23 02:24:55 +00004170 } else {
4171 Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res);
4172 }
4173
4174 return Res;
4175 }
Evan Cheng2da1c952011-02-11 02:28:55 +00004176
4177 // Bitcast operand 1 to i32.
4178 if (SrcVT == MVT::f64)
4179 Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
Craig Topper48d114b2014-04-26 18:35:24 +00004180 Tmp1).getValue(1);
Evan Cheng2da1c952011-02-11 02:28:55 +00004181 Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1);
4182
Evan Chengd6b641e2011-02-23 02:24:55 +00004183 // Or in the signbit with integer operations.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004184 SDValue Mask1 = DAG.getConstant(0x80000000, dl, MVT::i32);
4185 SDValue Mask2 = DAG.getConstant(0x7fffffff, dl, MVT::i32);
Evan Chengd6b641e2011-02-23 02:24:55 +00004186 Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1);
4187 if (VT == MVT::f32) {
4188 Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32,
4189 DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2);
4190 return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
4191 DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1));
Evan Cheng2da1c952011-02-11 02:28:55 +00004192 }
4193
Evan Chengd6b641e2011-02-23 02:24:55 +00004194 // f64: Or the high part with signbit and then combine two parts.
4195 Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
Craig Topper48d114b2014-04-26 18:35:24 +00004196 Tmp0);
Evan Chengd6b641e2011-02-23 02:24:55 +00004197 SDValue Lo = Tmp0.getValue(0);
4198 SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2);
4199 Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1);
4200 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
Evan Cheng10043e22007-01-19 07:51:42 +00004201}
4202
Evan Cheng168ced92010-05-22 01:47:14 +00004203SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{
4204 MachineFunction &MF = DAG.getMachineFunction();
4205 MachineFrameInfo *MFI = MF.getFrameInfo();
4206 MFI->setReturnAddressIsTaken(true);
4207
Bill Wendling908bf812014-01-06 00:43:20 +00004208 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
Bill Wendlingdf7dd282014-01-05 01:47:20 +00004209 return SDValue();
Bill Wendlingdf7dd282014-01-05 01:47:20 +00004210
Evan Cheng168ced92010-05-22 01:47:14 +00004211 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004212 SDLoc dl(Op);
Evan Cheng168ced92010-05-22 01:47:14 +00004213 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4214 if (Depth) {
4215 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004216 SDValue Offset = DAG.getConstant(4, dl, MVT::i32);
Evan Cheng168ced92010-05-22 01:47:14 +00004217 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
4218 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004219 MachinePointerInfo(), false, false, false, 0);
Evan Cheng168ced92010-05-22 01:47:14 +00004220 }
4221
4222 // Return LR, which contains the return address. Mark it an implicit live-in.
Devang Patelf3292b22011-02-21 23:21:26 +00004223 unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32));
Evan Cheng168ced92010-05-22 01:47:14 +00004224 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
4225}
4226
Dan Gohman21cea8a2010-04-17 15:26:15 +00004227SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Saleem Abdulrasoolf11f4b42014-05-18 03:18:09 +00004228 const ARMBaseRegisterInfo &ARI =
4229 *static_cast<const ARMBaseRegisterInfo*>(RegInfo);
4230 MachineFunction &MF = DAG.getMachineFunction();
4231 MachineFrameInfo *MFI = MF.getFrameInfo();
Jim Grosbachaeca45d2009-05-12 23:59:14 +00004232 MFI->setFrameAddressIsTaken(true);
Evan Cheng168ced92010-05-22 01:47:14 +00004233
Owen Anderson53aa7a92009-08-10 22:56:29 +00004234 EVT VT = Op.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004235 SDLoc dl(Op); // FIXME probably not meaningful
Jim Grosbachaeca45d2009-05-12 23:59:14 +00004236 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Saleem Abdulrasoolf11f4b42014-05-18 03:18:09 +00004237 unsigned FrameReg = ARI.getFrameRegister(MF);
Jim Grosbachaeca45d2009-05-12 23:59:14 +00004238 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
4239 while (Depth--)
Chris Lattner7727d052010-09-21 06:44:06 +00004240 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
4241 MachinePointerInfo(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00004242 false, false, false, 0);
Jim Grosbachaeca45d2009-05-12 23:59:14 +00004243 return FrameAddr;
4244}
4245
Renato Golinc7aea402014-05-06 16:51:25 +00004246// FIXME? Maybe this could be a TableGen attribute on some registers and
4247// this table could be generated automatically from RegInfo.
Pat Gavlina717f252015-07-09 17:40:29 +00004248unsigned ARMTargetLowering::getRegisterByName(const char* RegName, EVT VT,
4249 SelectionDAG &DAG) const {
Renato Golinc7aea402014-05-06 16:51:25 +00004250 unsigned Reg = StringSwitch<unsigned>(RegName)
4251 .Case("sp", ARM::SP)
4252 .Default(0);
4253 if (Reg)
4254 return Reg;
Luke Cheeseman85fd06d2015-06-01 12:02:47 +00004255 report_fatal_error(Twine("Invalid register name \""
4256 + StringRef(RegName) + "\"."));
4257}
4258
4259// Result is 64 bit value so split into two 32 bit values and return as a
4260// pair of values.
4261static void ExpandREAD_REGISTER(SDNode *N, SmallVectorImpl<SDValue> &Results,
4262 SelectionDAG &DAG) {
4263 SDLoc DL(N);
4264
4265 // This function is only supposed to be called for i64 type destination.
4266 assert(N->getValueType(0) == MVT::i64
4267 && "ExpandREAD_REGISTER called for non-i64 type result.");
4268
4269 SDValue Read = DAG.getNode(ISD::READ_REGISTER, DL,
4270 DAG.getVTList(MVT::i32, MVT::i32, MVT::Other),
4271 N->getOperand(0),
4272 N->getOperand(1));
4273
4274 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Read.getValue(0),
4275 Read.getValue(1)));
4276 Results.push_back(Read.getOperand(0));
Renato Golinc7aea402014-05-06 16:51:25 +00004277}
4278
Quentin Colombet901f0362015-12-04 01:53:14 +00004279/// \p BC is a bitcast that is about to be turned into a VMOVDRR.
4280/// When \p DstVT, the destination type of \p BC, is on the vector
4281/// register bank and the source of bitcast, \p Op, operates on the same bank,
4282/// it might be possible to combine them, such that everything stays on the
4283/// vector register bank.
4284/// \p return The node that would replace \p BT, if the combine
4285/// is possible.
4286static SDValue CombineVMOVDRRCandidateWithVecOp(const SDNode *BC,
4287 SelectionDAG &DAG) {
4288 SDValue Op = BC->getOperand(0);
4289 EVT DstVT = BC->getValueType(0);
4290
4291 // The only vector instruction that can produce a scalar (remember,
4292 // since the bitcast was about to be turned into VMOVDRR, the source
4293 // type is i64) from a vector is EXTRACT_VECTOR_ELT.
4294 // Moreover, we can do this combine only if there is one use.
4295 // Finally, if the destination type is not a vector, there is not
4296 // much point on forcing everything on the vector bank.
4297 if (!DstVT.isVector() || Op.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
4298 !Op.hasOneUse())
4299 return SDValue();
4300
4301 // If the index is not constant, we will introduce an additional
4302 // multiply that will stick.
4303 // Give up in that case.
4304 ConstantSDNode *Index = dyn_cast<ConstantSDNode>(Op.getOperand(1));
4305 if (!Index)
4306 return SDValue();
4307 unsigned DstNumElt = DstVT.getVectorNumElements();
4308
4309 // Compute the new index.
4310 const APInt &APIntIndex = Index->getAPIntValue();
4311 APInt NewIndex(APIntIndex.getBitWidth(), DstNumElt);
4312 NewIndex *= APIntIndex;
4313 // Check if the new constant index fits into i32.
4314 if (NewIndex.getBitWidth() > 32)
4315 return SDValue();
4316
4317 // vMTy bitcast(i64 extractelt vNi64 src, i32 index) ->
4318 // vMTy extractsubvector vNxMTy (bitcast vNi64 src), i32 index*M)
4319 SDLoc dl(Op);
4320 SDValue ExtractSrc = Op.getOperand(0);
4321 EVT VecVT = EVT::getVectorVT(
4322 *DAG.getContext(), DstVT.getScalarType(),
4323 ExtractSrc.getValueType().getVectorNumElements() * DstNumElt);
4324 SDValue BitCast = DAG.getNode(ISD::BITCAST, dl, VecVT, ExtractSrc);
4325 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DstVT, BitCast,
4326 DAG.getConstant(NewIndex.getZExtValue(), dl, MVT::i32));
4327}
4328
Wesley Peck527da1b2010-11-23 03:31:01 +00004329/// ExpandBITCAST - If the target supports VFP, this function is called to
Bob Wilson59b70ea2010-04-17 05:30:19 +00004330/// expand a bit convert where either the source or destination type is i64 to
4331/// use a VMOVDRR or VMOVRRD node. This should not be done when the non-i64
4332/// operand type is illegal (e.g., v2f32 for a target that doesn't support
4333/// vectors), since the legalizer won't know what to do with that.
Wesley Peck527da1b2010-11-23 03:31:01 +00004334static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) {
Bob Wilson59b70ea2010-04-17 05:30:19 +00004335 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004336 SDLoc dl(N);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00004337 SDValue Op = N->getOperand(0);
Bob Wilsonc05b8872010-04-14 20:45:23 +00004338
Bob Wilson59b70ea2010-04-17 05:30:19 +00004339 // This function is only supposed to be called for i64 types, either as the
4340 // source or destination of the bit convert.
4341 EVT SrcVT = Op.getValueType();
4342 EVT DstVT = N->getValueType(0);
4343 assert((SrcVT == MVT::i64 || DstVT == MVT::i64) &&
Wesley Peck527da1b2010-11-23 03:31:01 +00004344 "ExpandBITCAST called for non-i64 type");
Bob Wilsonc05b8872010-04-14 20:45:23 +00004345
Bob Wilson59b70ea2010-04-17 05:30:19 +00004346 // Turn i64->f64 into VMOVDRR.
4347 if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) {
Quentin Colombet901f0362015-12-04 01:53:14 +00004348 // Do not force values to GPRs (this is what VMOVDRR does for the inputs)
4349 // if we can combine the bitcast with its source.
4350 if (SDValue Val = CombineVMOVDRRCandidateWithVecOp(N, DAG))
4351 return Val;
4352
Owen Anderson9f944592009-08-11 20:47:22 +00004353 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004354 DAG.getConstant(0, dl, MVT::i32));
Owen Anderson9f944592009-08-11 20:47:22 +00004355 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004356 DAG.getConstant(1, dl, MVT::i32));
Wesley Peck527da1b2010-11-23 03:31:01 +00004357 return DAG.getNode(ISD::BITCAST, dl, DstVT,
Bob Wilsonf07d33d2010-06-11 22:45:25 +00004358 DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi));
Evan Cheng297b32a2008-11-04 19:57:48 +00004359 }
Bob Wilson7117a912009-03-20 22:42:55 +00004360
Jim Grosbachd7cf55c2009-11-09 00:11:35 +00004361 // Turn f64->i64 into VMOVRRD.
Bob Wilson59b70ea2010-04-17 05:30:19 +00004362 if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) {
Christian Pirker238c7c12014-05-12 11:19:20 +00004363 SDValue Cvt;
Mehdi Aminiffc14022015-07-08 01:00:38 +00004364 if (DAG.getDataLayout().isBigEndian() && SrcVT.isVector() &&
Christian Pirker6692e7c2014-05-14 16:59:44 +00004365 SrcVT.getVectorNumElements() > 1)
Christian Pirker238c7c12014-05-12 11:19:20 +00004366 Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
4367 DAG.getVTList(MVT::i32, MVT::i32),
4368 DAG.getNode(ARMISD::VREV64, dl, SrcVT, Op));
4369 else
4370 Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
4371 DAG.getVTList(MVT::i32, MVT::i32), Op);
Bob Wilson59b70ea2010-04-17 05:30:19 +00004372 // Merge the pieces into a single i64 value.
4373 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
4374 }
Bob Wilson7117a912009-03-20 22:42:55 +00004375
Bob Wilson59b70ea2010-04-17 05:30:19 +00004376 return SDValue();
Chris Lattnerf81d5882007-11-24 07:07:01 +00004377}
4378
Bob Wilson2e076c42009-06-22 23:27:02 +00004379/// getZeroVector - Returns a vector of specified type with all zero elements.
Bob Wilsona3f19012010-07-13 21:16:48 +00004380/// Zero vectors are used to represent vector negation and in those cases
4381/// will be implemented with the NEON VNEG instruction. However, VNEG does
4382/// not support i64 elements, so sometimes the zero vectors will need to be
4383/// explicitly constructed. Regardless, use a canonical VMOV to create the
4384/// zero vector.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004385static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, SDLoc dl) {
Bob Wilson2e076c42009-06-22 23:27:02 +00004386 assert(VT.isVector() && "Expected a vector type");
Bob Wilsona3f19012010-07-13 21:16:48 +00004387 // The canonical modified immediate encoding of a zero vector is....0!
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004388 SDValue EncodedVal = DAG.getTargetConstant(0, dl, MVT::i32);
Bob Wilsona3f19012010-07-13 21:16:48 +00004389 EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
4390 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal);
Wesley Peck527da1b2010-11-23 03:31:01 +00004391 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilson2e076c42009-06-22 23:27:02 +00004392}
4393
Jim Grosbach624fcb22009-10-31 21:00:56 +00004394/// LowerShiftRightParts - Lower SRA_PARTS, which returns two
4395/// i32 values and take a 2 x i32 value to shift plus a shift amount.
Dan Gohman21cea8a2010-04-17 15:26:15 +00004396SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op,
4397 SelectionDAG &DAG) const {
Jim Grosbach624fcb22009-10-31 21:00:56 +00004398 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4399 EVT VT = Op.getValueType();
4400 unsigned VTBits = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004401 SDLoc dl(Op);
Jim Grosbach624fcb22009-10-31 21:00:56 +00004402 SDValue ShOpLo = Op.getOperand(0);
4403 SDValue ShOpHi = Op.getOperand(1);
4404 SDValue ShAmt = Op.getOperand(2);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004405 SDValue ARMcc;
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00004406 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
Jim Grosbach624fcb22009-10-31 21:00:56 +00004407
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00004408 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
4409
Jim Grosbach624fcb22009-10-31 21:00:56 +00004410 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004411 DAG.getConstant(VTBits, dl, MVT::i32), ShAmt);
Jim Grosbach624fcb22009-10-31 21:00:56 +00004412 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
4413 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004414 DAG.getConstant(VTBits, dl, MVT::i32));
Jim Grosbach624fcb22009-10-31 21:00:56 +00004415 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
4416 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00004417 SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
Jim Grosbach624fcb22009-10-31 21:00:56 +00004418
4419 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004420 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, dl, MVT::i32),
4421 ISD::SETGE, ARMcc, DAG, dl);
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00004422 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004423 SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc,
Jim Grosbach624fcb22009-10-31 21:00:56 +00004424 CCR, Cmp);
4425
4426 SDValue Ops[2] = { Lo, Hi };
Craig Topper64941d92014-04-27 19:20:57 +00004427 return DAG.getMergeValues(Ops, dl);
Jim Grosbach624fcb22009-10-31 21:00:56 +00004428}
4429
Jim Grosbach5d994042009-10-31 19:38:01 +00004430/// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
4431/// i32 values and take a 2 x i32 value to shift plus a shift amount.
Dan Gohman21cea8a2010-04-17 15:26:15 +00004432SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op,
4433 SelectionDAG &DAG) const {
Jim Grosbach5d994042009-10-31 19:38:01 +00004434 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4435 EVT VT = Op.getValueType();
4436 unsigned VTBits = VT.getSizeInBits();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004437 SDLoc dl(Op);
Jim Grosbach5d994042009-10-31 19:38:01 +00004438 SDValue ShOpLo = Op.getOperand(0);
4439 SDValue ShOpHi = Op.getOperand(1);
4440 SDValue ShAmt = Op.getOperand(2);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004441 SDValue ARMcc;
Jim Grosbach5d994042009-10-31 19:38:01 +00004442
4443 assert(Op.getOpcode() == ISD::SHL_PARTS);
4444 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004445 DAG.getConstant(VTBits, dl, MVT::i32), ShAmt);
Jim Grosbach5d994042009-10-31 19:38:01 +00004446 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
4447 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004448 DAG.getConstant(VTBits, dl, MVT::i32));
Jim Grosbach5d994042009-10-31 19:38:01 +00004449 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
4450 SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
4451
4452 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4453 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004454 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, dl, MVT::i32),
4455 ISD::SETGE, ARMcc, DAG, dl);
Jim Grosbach5d994042009-10-31 19:38:01 +00004456 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00004457 SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc,
Jim Grosbach5d994042009-10-31 19:38:01 +00004458 CCR, Cmp);
4459
4460 SDValue Ops[2] = { Lo, Hi };
Craig Topper64941d92014-04-27 19:20:57 +00004461 return DAG.getMergeValues(Ops, dl);
Jim Grosbach5d994042009-10-31 19:38:01 +00004462}
4463
Jim Grosbach535d3b42010-09-08 03:54:02 +00004464SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
Nate Begemanb69b1822010-08-03 21:31:55 +00004465 SelectionDAG &DAG) const {
4466 // The rounding mode is in bits 23:22 of the FPSCR.
4467 // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0
4468 // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3)
4469 // so that the shift + and get folded into a bitfield extract.
Andrew Trickef9de2a2013-05-25 02:42:55 +00004470 SDLoc dl(Op);
Nate Begemanb69b1822010-08-03 21:31:55 +00004471 SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004472 DAG.getConstant(Intrinsic::arm_get_fpscr, dl,
Nate Begemanb69b1822010-08-03 21:31:55 +00004473 MVT::i32));
Jim Grosbach535d3b42010-09-08 03:54:02 +00004474 SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004475 DAG.getConstant(1U << 22, dl, MVT::i32));
Nate Begemanb69b1822010-08-03 21:31:55 +00004476 SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004477 DAG.getConstant(22, dl, MVT::i32));
Jim Grosbach535d3b42010-09-08 03:54:02 +00004478 return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004479 DAG.getConstant(3, dl, MVT::i32));
Nate Begemanb69b1822010-08-03 21:31:55 +00004480}
4481
Jim Grosbach8546ec92010-01-18 19:58:49 +00004482static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG,
4483 const ARMSubtarget *ST) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00004484 SDLoc dl(N);
Logan Chien0a43abc2015-07-13 15:37:30 +00004485 EVT VT = N->getValueType(0);
4486 if (VT.isVector()) {
4487 assert(ST->hasNEON());
4488
4489 // Compute the least significant set bit: LSB = X & -X
4490 SDValue X = N->getOperand(0);
4491 SDValue NX = DAG.getNode(ISD::SUB, dl, VT, getZeroVector(VT, DAG, dl), X);
4492 SDValue LSB = DAG.getNode(ISD::AND, dl, VT, X, NX);
4493
4494 EVT ElemTy = VT.getVectorElementType();
4495
4496 if (ElemTy == MVT::i8) {
4497 // Compute with: cttz(x) = ctpop(lsb - 1)
4498 SDValue One = DAG.getNode(ARMISD::VMOVIMM, dl, VT,
4499 DAG.getTargetConstant(1, dl, ElemTy));
4500 SDValue Bits = DAG.getNode(ISD::SUB, dl, VT, LSB, One);
4501 return DAG.getNode(ISD::CTPOP, dl, VT, Bits);
4502 }
4503
4504 if ((ElemTy == MVT::i16 || ElemTy == MVT::i32) &&
4505 (N->getOpcode() == ISD::CTTZ_ZERO_UNDEF)) {
4506 // Compute with: cttz(x) = (width - 1) - ctlz(lsb), if x != 0
4507 unsigned NumBits = ElemTy.getSizeInBits();
4508 SDValue WidthMinus1 =
4509 DAG.getNode(ARMISD::VMOVIMM, dl, VT,
4510 DAG.getTargetConstant(NumBits - 1, dl, ElemTy));
4511 SDValue CTLZ = DAG.getNode(ISD::CTLZ, dl, VT, LSB);
4512 return DAG.getNode(ISD::SUB, dl, VT, WidthMinus1, CTLZ);
4513 }
4514
4515 // Compute with: cttz(x) = ctpop(lsb - 1)
4516
4517 // Since we can only compute the number of bits in a byte with vcnt.8, we
4518 // have to gather the result with pairwise addition (vpaddl) for i16, i32,
4519 // and i64.
4520
4521 // Compute LSB - 1.
4522 SDValue Bits;
4523 if (ElemTy == MVT::i64) {
4524 // Load constant 0xffff'ffff'ffff'ffff to register.
4525 SDValue FF = DAG.getNode(ARMISD::VMOVIMM, dl, VT,
4526 DAG.getTargetConstant(0x1eff, dl, MVT::i32));
4527 Bits = DAG.getNode(ISD::ADD, dl, VT, LSB, FF);
4528 } else {
4529 SDValue One = DAG.getNode(ARMISD::VMOVIMM, dl, VT,
4530 DAG.getTargetConstant(1, dl, ElemTy));
4531 Bits = DAG.getNode(ISD::SUB, dl, VT, LSB, One);
4532 }
4533
4534 // Count #bits with vcnt.8.
4535 EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8;
4536 SDValue BitsVT8 = DAG.getNode(ISD::BITCAST, dl, VT8Bit, Bits);
4537 SDValue Cnt8 = DAG.getNode(ISD::CTPOP, dl, VT8Bit, BitsVT8);
4538
4539 // Gather the #bits with vpaddl (pairwise add.)
4540 EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16;
4541 SDValue Cnt16 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT16Bit,
4542 DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32),
4543 Cnt8);
4544 if (ElemTy == MVT::i16)
4545 return Cnt16;
4546
4547 EVT VT32Bit = VT.is64BitVector() ? MVT::v2i32 : MVT::v4i32;
4548 SDValue Cnt32 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT32Bit,
4549 DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32),
4550 Cnt16);
4551 if (ElemTy == MVT::i32)
4552 return Cnt32;
4553
4554 assert(ElemTy == MVT::i64);
4555 SDValue Cnt64 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4556 DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32),
4557 Cnt32);
4558 return Cnt64;
4559 }
Jim Grosbach8546ec92010-01-18 19:58:49 +00004560
4561 if (!ST->hasV6T2Ops())
4562 return SDValue();
4563
James Molloyb5640982015-11-13 16:05:22 +00004564 SDValue rbit = DAG.getNode(ISD::BITREVERSE, dl, VT, N->getOperand(0));
Jim Grosbach8546ec92010-01-18 19:58:49 +00004565 return DAG.getNode(ISD::CTLZ, dl, VT, rbit);
4566}
4567
Evan Chengb4eae132012-12-04 22:41:50 +00004568/// getCTPOP16BitCounts - Returns a v8i8/v16i8 vector containing the bit-count
4569/// for each 16-bit element from operand, repeated. The basic idea is to
4570/// leverage vcnt to get the 8-bit counts, gather and add the results.
4571///
4572/// Trace for v4i16:
4573/// input = [v0 v1 v2 v3 ] (vi 16-bit element)
4574/// cast: N0 = [w0 w1 w2 w3 w4 w5 w6 w7] (v0 = [w0 w1], wi 8-bit element)
4575/// 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 +00004576/// vrev: N2 = [b1 b0 b3 b2 b5 b4 b7 b6]
Evan Chengb4eae132012-12-04 22:41:50 +00004577/// [b0 b1 b2 b3 b4 b5 b6 b7]
4578/// +[b1 b0 b3 b2 b5 b4 b7 b6]
4579/// N3=N1+N2 = [k0 k0 k1 k1 k2 k2 k3 k3] (k0 = b0+b1 = bit-count of 16-bit v0,
4580/// vuzp: = [k0 k1 k2 k3 k0 k1 k2 k3] each ki is 8-bits)
4581static SDValue getCTPOP16BitCounts(SDNode *N, SelectionDAG &DAG) {
4582 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004583 SDLoc DL(N);
Evan Chengb4eae132012-12-04 22:41:50 +00004584
4585 EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8;
4586 SDValue N0 = DAG.getNode(ISD::BITCAST, DL, VT8Bit, N->getOperand(0));
4587 SDValue N1 = DAG.getNode(ISD::CTPOP, DL, VT8Bit, N0);
4588 SDValue N2 = DAG.getNode(ARMISD::VREV16, DL, VT8Bit, N1);
4589 SDValue N3 = DAG.getNode(ISD::ADD, DL, VT8Bit, N1, N2);
4590 return DAG.getNode(ARMISD::VUZP, DL, VT8Bit, N3, N3);
4591}
4592
4593/// lowerCTPOP16BitElements - Returns a v4i16/v8i16 vector containing the
4594/// bit-count for each 16-bit element from the operand. We need slightly
4595/// different sequencing for v4i16 and v8i16 to stay within NEON's available
4596/// 64/128-bit registers.
Jim Grosbach54efea02013-03-02 20:16:15 +00004597///
Evan Chengb4eae132012-12-04 22:41:50 +00004598/// Trace for v4i16:
4599/// input = [v0 v1 v2 v3 ] (vi 16-bit element)
4600/// v8i8: BitCounts = [k0 k1 k2 k3 k0 k1 k2 k3 ] (ki is the bit-count of vi)
4601/// v8i16:Extended = [k0 k1 k2 k3 k0 k1 k2 k3 ]
4602/// v4i16:Extracted = [k0 k1 k2 k3 ]
4603static SDValue lowerCTPOP16BitElements(SDNode *N, SelectionDAG &DAG) {
4604 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004605 SDLoc DL(N);
Evan Chengb4eae132012-12-04 22:41:50 +00004606
4607 SDValue BitCounts = getCTPOP16BitCounts(N, DAG);
4608 if (VT.is64BitVector()) {
4609 SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, BitCounts);
4610 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, Extended,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004611 DAG.getIntPtrConstant(0, DL));
Evan Chengb4eae132012-12-04 22:41:50 +00004612 } else {
4613 SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v8i8,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004614 BitCounts, DAG.getIntPtrConstant(0, DL));
Evan Chengb4eae132012-12-04 22:41:50 +00004615 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, Extracted);
4616 }
4617}
4618
4619/// lowerCTPOP32BitElements - Returns a v2i32/v4i32 vector containing the
4620/// bit-count for each 32-bit element from the operand. The idea here is
4621/// to split the vector into 16-bit elements, leverage the 16-bit count
4622/// routine, and then combine the results.
4623///
4624/// Trace for v2i32 (v4i32 similar with Extracted/Extended exchanged):
4625/// input = [v0 v1 ] (vi: 32-bit elements)
4626/// Bitcast = [w0 w1 w2 w3 ] (wi: 16-bit elements, v0 = [w0 w1])
4627/// Counts16 = [k0 k1 k2 k3 ] (ki: 16-bit elements, bit-count of wi)
Jim Grosbach54efea02013-03-02 20:16:15 +00004628/// vrev: N0 = [k1 k0 k3 k2 ]
Evan Chengb4eae132012-12-04 22:41:50 +00004629/// [k0 k1 k2 k3 ]
4630/// N1 =+[k1 k0 k3 k2 ]
4631/// [k0 k2 k1 k3 ]
4632/// N2 =+[k1 k3 k0 k2 ]
4633/// [k0 k2 k1 k3 ]
4634/// Extended =+[k1 k3 k0 k2 ]
4635/// [k0 k2 ]
4636/// Extracted=+[k1 k3 ]
4637///
4638static SDValue lowerCTPOP32BitElements(SDNode *N, SelectionDAG &DAG) {
4639 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004640 SDLoc DL(N);
Evan Chengb4eae132012-12-04 22:41:50 +00004641
4642 EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16;
4643
4644 SDValue Bitcast = DAG.getNode(ISD::BITCAST, DL, VT16Bit, N->getOperand(0));
4645 SDValue Counts16 = lowerCTPOP16BitElements(Bitcast.getNode(), DAG);
4646 SDValue N0 = DAG.getNode(ARMISD::VREV32, DL, VT16Bit, Counts16);
4647 SDValue N1 = DAG.getNode(ISD::ADD, DL, VT16Bit, Counts16, N0);
4648 SDValue N2 = DAG.getNode(ARMISD::VUZP, DL, VT16Bit, N1, N1);
4649
4650 if (VT.is64BitVector()) {
4651 SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, N2);
4652 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i32, Extended,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004653 DAG.getIntPtrConstant(0, DL));
Evan Chengb4eae132012-12-04 22:41:50 +00004654 } else {
4655 SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, N2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004656 DAG.getIntPtrConstant(0, DL));
Evan Chengb4eae132012-12-04 22:41:50 +00004657 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, Extracted);
4658 }
4659}
4660
4661static SDValue LowerCTPOP(SDNode *N, SelectionDAG &DAG,
4662 const ARMSubtarget *ST) {
4663 EVT VT = N->getValueType(0);
4664
4665 assert(ST->hasNEON() && "Custom ctpop lowering requires NEON.");
Matt Beaumont-Gay50f61b62012-12-04 23:54:02 +00004666 assert((VT == MVT::v2i32 || VT == MVT::v4i32 ||
4667 VT == MVT::v4i16 || VT == MVT::v8i16) &&
Evan Chengb4eae132012-12-04 22:41:50 +00004668 "Unexpected type for custom ctpop lowering");
4669
4670 if (VT.getVectorElementType() == MVT::i32)
4671 return lowerCTPOP32BitElements(N, DAG);
4672 else
4673 return lowerCTPOP16BitElements(N, DAG);
4674}
4675
Bob Wilson2e076c42009-06-22 23:27:02 +00004676static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
4677 const ARMSubtarget *ST) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00004678 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004679 SDLoc dl(N);
Bob Wilson2e076c42009-06-22 23:27:02 +00004680
Bob Wilson7d471332010-11-18 21:16:28 +00004681 if (!VT.isVector())
4682 return SDValue();
4683
Bob Wilson2e076c42009-06-22 23:27:02 +00004684 // Lower vector shifts on NEON to use VSHL.
Bob Wilson7d471332010-11-18 21:16:28 +00004685 assert(ST->hasNEON() && "unexpected vector shift");
Bob Wilson2e076c42009-06-22 23:27:02 +00004686
Bob Wilson7d471332010-11-18 21:16:28 +00004687 // Left shifts translate directly to the vshiftu intrinsic.
4688 if (N->getOpcode() == ISD::SHL)
Bob Wilson2e076c42009-06-22 23:27:02 +00004689 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004690 DAG.getConstant(Intrinsic::arm_neon_vshiftu, dl,
4691 MVT::i32),
Bob Wilson7d471332010-11-18 21:16:28 +00004692 N->getOperand(0), N->getOperand(1));
4693
4694 assert((N->getOpcode() == ISD::SRA ||
4695 N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
4696
4697 // NEON uses the same intrinsics for both left and right shifts. For
4698 // right shifts, the shift amounts are negative, so negate the vector of
4699 // shift amounts.
4700 EVT ShiftVT = N->getOperand(1).getValueType();
4701 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
4702 getZeroVector(ShiftVT, DAG, dl),
4703 N->getOperand(1));
4704 Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
4705 Intrinsic::arm_neon_vshifts :
4706 Intrinsic::arm_neon_vshiftu);
4707 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004708 DAG.getConstant(vshiftInt, dl, MVT::i32),
Bob Wilson7d471332010-11-18 21:16:28 +00004709 N->getOperand(0), NegatedCount);
4710}
4711
4712static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG,
4713 const ARMSubtarget *ST) {
4714 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00004715 SDLoc dl(N);
Bob Wilson2e076c42009-06-22 23:27:02 +00004716
Eli Friedman682d8c12009-08-22 03:13:10 +00004717 // We can get here for a node like i32 = ISD::SHL i32, i64
4718 if (VT != MVT::i64)
4719 return SDValue();
4720
4721 assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
Chris Lattnerf81d5882007-11-24 07:07:01 +00004722 "Unknown shift to lower!");
Duncan Sands6ed40142008-12-01 11:39:25 +00004723
Chris Lattnerf81d5882007-11-24 07:07:01 +00004724 // We only lower SRA, SRL of 1 here, all others use generic lowering.
Artyom Skrobov314ee042015-11-25 19:41:11 +00004725 if (!isOneConstant(N->getOperand(1)))
Duncan Sands6ed40142008-12-01 11:39:25 +00004726 return SDValue();
Bob Wilson7117a912009-03-20 22:42:55 +00004727
Chris Lattnerf81d5882007-11-24 07:07:01 +00004728 // If we are in thumb mode, we don't have RRX.
David Goodwin22c2fba2009-07-08 23:10:31 +00004729 if (ST->isThumb1Only()) return SDValue();
Bob Wilson7117a912009-03-20 22:42:55 +00004730
Chris Lattnerf81d5882007-11-24 07:07:01 +00004731 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr.
Owen Anderson9f944592009-08-11 20:47:22 +00004732 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004733 DAG.getConstant(0, dl, MVT::i32));
Owen Anderson9f944592009-08-11 20:47:22 +00004734 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004735 DAG.getConstant(1, dl, MVT::i32));
Bob Wilson7117a912009-03-20 22:42:55 +00004736
Chris Lattnerf81d5882007-11-24 07:07:01 +00004737 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
4738 // captures the result into a carry flag.
4739 unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
Craig Topper48d114b2014-04-26 18:35:24 +00004740 Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), Hi);
Bob Wilson7117a912009-03-20 22:42:55 +00004741
Chris Lattnerf81d5882007-11-24 07:07:01 +00004742 // The low part is an ARMISD::RRX operand, which shifts the carry in.
Owen Anderson9f944592009-08-11 20:47:22 +00004743 Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
Bob Wilson7117a912009-03-20 22:42:55 +00004744
Chris Lattnerf81d5882007-11-24 07:07:01 +00004745 // Merge the pieces into a single i64 value.
Owen Anderson9f944592009-08-11 20:47:22 +00004746 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
Chris Lattnerf81d5882007-11-24 07:07:01 +00004747}
4748
Bob Wilson2e076c42009-06-22 23:27:02 +00004749static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
4750 SDValue TmpOp0, TmpOp1;
4751 bool Invert = false;
4752 bool Swap = false;
4753 unsigned Opc = 0;
4754
4755 SDValue Op0 = Op.getOperand(0);
4756 SDValue Op1 = Op.getOperand(1);
4757 SDValue CC = Op.getOperand(2);
Tim Northover45aa89c2015-02-08 00:50:47 +00004758 EVT CmpVT = Op0.getValueType().changeVectorElementTypeToInteger();
Owen Anderson53aa7a92009-08-10 22:56:29 +00004759 EVT VT = Op.getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +00004760 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Andrew Trickef9de2a2013-05-25 02:42:55 +00004761 SDLoc dl(Op);
Bob Wilson2e076c42009-06-22 23:27:02 +00004762
James Molloybf170092015-08-20 16:33:44 +00004763 if (CmpVT.getVectorElementType() == MVT::i64)
4764 // 64-bit comparisons are not legal. We've marked SETCC as non-Custom,
4765 // but it's possible that our operands are 64-bit but our result is 32-bit.
4766 // Bail in this case.
4767 return SDValue();
4768
Oliver Stannard51b1d462014-08-21 12:50:31 +00004769 if (Op1.getValueType().isFloatingPoint()) {
Bob Wilson2e076c42009-06-22 23:27:02 +00004770 switch (SetCCOpcode) {
David Blaikie46a9f012012-01-20 21:51:11 +00004771 default: llvm_unreachable("Illegal FP comparison");
Bob Wilson2e076c42009-06-22 23:27:02 +00004772 case ISD::SETUNE:
4773 case ISD::SETNE: Invert = true; // Fallthrough
4774 case ISD::SETOEQ:
4775 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
4776 case ISD::SETOLT:
4777 case ISD::SETLT: Swap = true; // Fallthrough
4778 case ISD::SETOGT:
4779 case ISD::SETGT: Opc = ARMISD::VCGT; break;
4780 case ISD::SETOLE:
4781 case ISD::SETLE: Swap = true; // Fallthrough
4782 case ISD::SETOGE:
4783 case ISD::SETGE: Opc = ARMISD::VCGE; break;
4784 case ISD::SETUGE: Swap = true; // Fallthrough
4785 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
4786 case ISD::SETUGT: Swap = true; // Fallthrough
4787 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
4788 case ISD::SETUEQ: Invert = true; // Fallthrough
4789 case ISD::SETONE:
4790 // Expand this to (OLT | OGT).
4791 TmpOp0 = Op0;
4792 TmpOp1 = Op1;
4793 Opc = ISD::OR;
Tim Northover45aa89c2015-02-08 00:50:47 +00004794 Op0 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp1, TmpOp0);
4795 Op1 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp0, TmpOp1);
Bob Wilson2e076c42009-06-22 23:27:02 +00004796 break;
4797 case ISD::SETUO: Invert = true; // Fallthrough
4798 case ISD::SETO:
4799 // Expand this to (OLT | OGE).
4800 TmpOp0 = Op0;
4801 TmpOp1 = Op1;
4802 Opc = ISD::OR;
Tim Northover45aa89c2015-02-08 00:50:47 +00004803 Op0 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp1, TmpOp0);
4804 Op1 = DAG.getNode(ARMISD::VCGE, dl, CmpVT, TmpOp0, TmpOp1);
Bob Wilson2e076c42009-06-22 23:27:02 +00004805 break;
4806 }
4807 } else {
4808 // Integer comparisons.
4809 switch (SetCCOpcode) {
David Blaikie46a9f012012-01-20 21:51:11 +00004810 default: llvm_unreachable("Illegal integer comparison");
Bob Wilson2e076c42009-06-22 23:27:02 +00004811 case ISD::SETNE: Invert = true;
4812 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
4813 case ISD::SETLT: Swap = true;
4814 case ISD::SETGT: Opc = ARMISD::VCGT; break;
4815 case ISD::SETLE: Swap = true;
4816 case ISD::SETGE: Opc = ARMISD::VCGE; break;
4817 case ISD::SETULT: Swap = true;
4818 case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
4819 case ISD::SETULE: Swap = true;
4820 case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
4821 }
4822
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004823 // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
Bob Wilson2e076c42009-06-22 23:27:02 +00004824 if (Opc == ARMISD::VCEQ) {
4825
4826 SDValue AndOp;
4827 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4828 AndOp = Op0;
4829 else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
4830 AndOp = Op1;
4831
4832 // Ignore bitconvert.
Wesley Peck527da1b2010-11-23 03:31:01 +00004833 if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST)
Bob Wilson2e076c42009-06-22 23:27:02 +00004834 AndOp = AndOp.getOperand(0);
4835
4836 if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
4837 Opc = ARMISD::VTST;
Tim Northover45aa89c2015-02-08 00:50:47 +00004838 Op0 = DAG.getNode(ISD::BITCAST, dl, CmpVT, AndOp.getOperand(0));
4839 Op1 = DAG.getNode(ISD::BITCAST, dl, CmpVT, AndOp.getOperand(1));
Bob Wilson2e076c42009-06-22 23:27:02 +00004840 Invert = !Invert;
4841 }
4842 }
4843 }
4844
4845 if (Swap)
4846 std::swap(Op0, Op1);
4847
Owen Andersonc7baee32010-11-08 23:21:22 +00004848 // If one of the operands is a constant vector zero, attempt to fold the
4849 // comparison to a specialized compare-against-zero form.
4850 SDValue SingleOp;
4851 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4852 SingleOp = Op0;
4853 else if (ISD::isBuildVectorAllZeros(Op0.getNode())) {
4854 if (Opc == ARMISD::VCGE)
4855 Opc = ARMISD::VCLEZ;
4856 else if (Opc == ARMISD::VCGT)
4857 Opc = ARMISD::VCLTZ;
4858 SingleOp = Op1;
4859 }
Wesley Peck527da1b2010-11-23 03:31:01 +00004860
Owen Andersonc7baee32010-11-08 23:21:22 +00004861 SDValue Result;
4862 if (SingleOp.getNode()) {
4863 switch (Opc) {
4864 case ARMISD::VCEQ:
Tim Northover45aa89c2015-02-08 00:50:47 +00004865 Result = DAG.getNode(ARMISD::VCEQZ, dl, CmpVT, SingleOp); break;
Owen Andersonc7baee32010-11-08 23:21:22 +00004866 case ARMISD::VCGE:
Tim Northover45aa89c2015-02-08 00:50:47 +00004867 Result = DAG.getNode(ARMISD::VCGEZ, dl, CmpVT, SingleOp); break;
Owen Andersonc7baee32010-11-08 23:21:22 +00004868 case ARMISD::VCLEZ:
Tim Northover45aa89c2015-02-08 00:50:47 +00004869 Result = DAG.getNode(ARMISD::VCLEZ, dl, CmpVT, SingleOp); break;
Owen Andersonc7baee32010-11-08 23:21:22 +00004870 case ARMISD::VCGT:
Tim Northover45aa89c2015-02-08 00:50:47 +00004871 Result = DAG.getNode(ARMISD::VCGTZ, dl, CmpVT, SingleOp); break;
Owen Andersonc7baee32010-11-08 23:21:22 +00004872 case ARMISD::VCLTZ:
Tim Northover45aa89c2015-02-08 00:50:47 +00004873 Result = DAG.getNode(ARMISD::VCLTZ, dl, CmpVT, SingleOp); break;
Owen Andersonc7baee32010-11-08 23:21:22 +00004874 default:
Tim Northover45aa89c2015-02-08 00:50:47 +00004875 Result = DAG.getNode(Opc, dl, CmpVT, Op0, Op1);
Owen Andersonc7baee32010-11-08 23:21:22 +00004876 }
4877 } else {
Tim Northover45aa89c2015-02-08 00:50:47 +00004878 Result = DAG.getNode(Opc, dl, CmpVT, Op0, Op1);
Owen Andersonc7baee32010-11-08 23:21:22 +00004879 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004880
Tim Northover45aa89c2015-02-08 00:50:47 +00004881 Result = DAG.getSExtOrTrunc(Result, dl, VT);
4882
Bob Wilson2e076c42009-06-22 23:27:02 +00004883 if (Invert)
4884 Result = DAG.getNOT(dl, Result, VT);
4885
4886 return Result;
4887}
4888
Bob Wilson5b2b5042010-06-14 22:19:57 +00004889/// isNEONModifiedImm - Check if the specified splat value corresponds to a
4890/// valid vector constant for a NEON instruction with a "modified immediate"
Bob Wilsona3f19012010-07-13 21:16:48 +00004891/// operand (e.g., VMOV). If so, return the encoded value.
Bob Wilson5b2b5042010-06-14 22:19:57 +00004892static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
4893 unsigned SplatBitSize, SelectionDAG &DAG,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00004894 SDLoc dl, EVT &VT, bool is128Bits,
4895 NEONModImmType type) {
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004896 unsigned OpCmode, Imm;
Bob Wilson6eae5202010-06-11 21:34:50 +00004897
Bob Wilsonf3f7a772010-06-15 19:05:35 +00004898 // SplatBitSize is set to the smallest size that splats the vector, so a
4899 // zero vector will always have SplatBitSize == 8. However, NEON modified
4900 // immediate instructions others than VMOV do not support the 8-bit encoding
4901 // of a zero vector, and the default encoding of zero is supposed to be the
4902 // 32-bit version.
4903 if (SplatBits == 0)
4904 SplatBitSize = 32;
4905
Bob Wilson2e076c42009-06-22 23:27:02 +00004906 switch (SplatBitSize) {
4907 case 8:
Owen Andersona4076922010-11-05 21:57:54 +00004908 if (type != VMOVModImm)
Bob Wilsonbad47f62010-07-14 06:31:50 +00004909 return SDValue();
Bob Wilson6eae5202010-06-11 21:34:50 +00004910 // Any 1-byte value is OK. Op=0, Cmode=1110.
Bob Wilson2e076c42009-06-22 23:27:02 +00004911 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004912 OpCmode = 0xe;
Bob Wilson6eae5202010-06-11 21:34:50 +00004913 Imm = SplatBits;
Bob Wilsona3f19012010-07-13 21:16:48 +00004914 VT = is128Bits ? MVT::v16i8 : MVT::v8i8;
Bob Wilson6eae5202010-06-11 21:34:50 +00004915 break;
Bob Wilson2e076c42009-06-22 23:27:02 +00004916
4917 case 16:
4918 // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
Bob Wilsona3f19012010-07-13 21:16:48 +00004919 VT = is128Bits ? MVT::v8i16 : MVT::v4i16;
Bob Wilson6eae5202010-06-11 21:34:50 +00004920 if ((SplatBits & ~0xff) == 0) {
4921 // Value = 0x00nn: Op=x, Cmode=100x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004922 OpCmode = 0x8;
Bob Wilson6eae5202010-06-11 21:34:50 +00004923 Imm = SplatBits;
4924 break;
4925 }
4926 if ((SplatBits & ~0xff00) == 0) {
4927 // Value = 0xnn00: Op=x, Cmode=101x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004928 OpCmode = 0xa;
Bob Wilson6eae5202010-06-11 21:34:50 +00004929 Imm = SplatBits >> 8;
4930 break;
4931 }
4932 return SDValue();
Bob Wilson2e076c42009-06-22 23:27:02 +00004933
4934 case 32:
4935 // NEON's 32-bit VMOV supports splat values where:
4936 // * only one byte is nonzero, or
4937 // * the least significant byte is 0xff and the second byte is nonzero, or
4938 // * the least significant 2 bytes are 0xff and the third is nonzero.
Bob Wilsona3f19012010-07-13 21:16:48 +00004939 VT = is128Bits ? MVT::v4i32 : MVT::v2i32;
Bob Wilson6eae5202010-06-11 21:34:50 +00004940 if ((SplatBits & ~0xff) == 0) {
4941 // Value = 0x000000nn: Op=x, Cmode=000x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004942 OpCmode = 0;
Bob Wilson6eae5202010-06-11 21:34:50 +00004943 Imm = SplatBits;
4944 break;
4945 }
4946 if ((SplatBits & ~0xff00) == 0) {
4947 // Value = 0x0000nn00: Op=x, Cmode=001x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004948 OpCmode = 0x2;
Bob Wilson6eae5202010-06-11 21:34:50 +00004949 Imm = SplatBits >> 8;
4950 break;
4951 }
4952 if ((SplatBits & ~0xff0000) == 0) {
4953 // Value = 0x00nn0000: Op=x, Cmode=010x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004954 OpCmode = 0x4;
Bob Wilson6eae5202010-06-11 21:34:50 +00004955 Imm = SplatBits >> 16;
4956 break;
4957 }
4958 if ((SplatBits & ~0xff000000) == 0) {
4959 // Value = 0xnn000000: Op=x, Cmode=011x.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004960 OpCmode = 0x6;
Bob Wilson6eae5202010-06-11 21:34:50 +00004961 Imm = SplatBits >> 24;
4962 break;
4963 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004964
Owen Andersona4076922010-11-05 21:57:54 +00004965 // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC
4966 if (type == OtherModImm) return SDValue();
4967
Bob Wilson2e076c42009-06-22 23:27:02 +00004968 if ((SplatBits & ~0xffff) == 0 &&
Bob Wilson6eae5202010-06-11 21:34:50 +00004969 ((SplatBits | SplatUndef) & 0xff) == 0xff) {
4970 // Value = 0x0000nnff: Op=x, Cmode=1100.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004971 OpCmode = 0xc;
Bob Wilson6eae5202010-06-11 21:34:50 +00004972 Imm = SplatBits >> 8;
Bob Wilson6eae5202010-06-11 21:34:50 +00004973 break;
4974 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004975
4976 if ((SplatBits & ~0xffffff) == 0 &&
Bob Wilson6eae5202010-06-11 21:34:50 +00004977 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
4978 // Value = 0x00nnffff: Op=x, Cmode=1101.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00004979 OpCmode = 0xd;
Bob Wilson6eae5202010-06-11 21:34:50 +00004980 Imm = SplatBits >> 16;
Bob Wilson6eae5202010-06-11 21:34:50 +00004981 break;
4982 }
Bob Wilson2e076c42009-06-22 23:27:02 +00004983
4984 // Note: there are a few 32-bit splat values (specifically: 00ffff00,
4985 // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
4986 // VMOV.I32. A (very) minor optimization would be to replicate the value
4987 // and fall through here to test for a valid 64-bit splat. But, then the
4988 // caller would also need to check and handle the change in size.
Bob Wilson6eae5202010-06-11 21:34:50 +00004989 return SDValue();
Bob Wilson2e076c42009-06-22 23:27:02 +00004990
4991 case 64: {
Owen Andersona4076922010-11-05 21:57:54 +00004992 if (type != VMOVModImm)
Bob Wilsonf3f7a772010-06-15 19:05:35 +00004993 return SDValue();
Bob Wilsonbad47f62010-07-14 06:31:50 +00004994 // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
Bob Wilson2e076c42009-06-22 23:27:02 +00004995 uint64_t BitMask = 0xff;
4996 uint64_t Val = 0;
Bob Wilson6eae5202010-06-11 21:34:50 +00004997 unsigned ImmMask = 1;
4998 Imm = 0;
Bob Wilson2e076c42009-06-22 23:27:02 +00004999 for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
Bob Wilson6eae5202010-06-11 21:34:50 +00005000 if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
Bob Wilson2e076c42009-06-22 23:27:02 +00005001 Val |= BitMask;
Bob Wilson6eae5202010-06-11 21:34:50 +00005002 Imm |= ImmMask;
5003 } else if ((SplatBits & BitMask) != 0) {
Bob Wilson2e076c42009-06-22 23:27:02 +00005004 return SDValue();
Bob Wilson6eae5202010-06-11 21:34:50 +00005005 }
Bob Wilson2e076c42009-06-22 23:27:02 +00005006 BitMask <<= 8;
Bob Wilson6eae5202010-06-11 21:34:50 +00005007 ImmMask <<= 1;
Bob Wilson2e076c42009-06-22 23:27:02 +00005008 }
Christian Pirker6f81e752014-06-23 18:05:53 +00005009
Mehdi Aminiffc14022015-07-08 01:00:38 +00005010 if (DAG.getDataLayout().isBigEndian())
Christian Pirker6f81e752014-06-23 18:05:53 +00005011 // swap higher and lower 32 bit word
5012 Imm = ((Imm & 0xf) << 4) | ((Imm & 0xf0) >> 4);
5013
Bob Wilson6eae5202010-06-11 21:34:50 +00005014 // Op=1, Cmode=1110.
Bob Wilsonc1c6f472010-07-13 04:44:34 +00005015 OpCmode = 0x1e;
Bob Wilsona3f19012010-07-13 21:16:48 +00005016 VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
Bob Wilson2e076c42009-06-22 23:27:02 +00005017 break;
5018 }
5019
Bob Wilson6eae5202010-06-11 21:34:50 +00005020 default:
Bob Wilson0ae08932010-06-19 05:32:09 +00005021 llvm_unreachable("unexpected size for isNEONModifiedImm");
Bob Wilson6eae5202010-06-11 21:34:50 +00005022 }
5023
Bob Wilsona3f19012010-07-13 21:16:48 +00005024 unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005025 return DAG.getTargetConstant(EncodedVal, dl, MVT::i32);
Bob Wilson2e076c42009-06-22 23:27:02 +00005026}
5027
Lang Hames591cdaf2012-03-29 21:56:11 +00005028SDValue ARMTargetLowering::LowerConstantFP(SDValue Op, SelectionDAG &DAG,
5029 const ARMSubtarget *ST) const {
Tim Northoverf79c3a52013-08-20 08:57:11 +00005030 if (!ST->hasVFP3())
Lang Hames591cdaf2012-03-29 21:56:11 +00005031 return SDValue();
5032
Tim Northoverf79c3a52013-08-20 08:57:11 +00005033 bool IsDouble = Op.getValueType() == MVT::f64;
Lang Hames591cdaf2012-03-29 21:56:11 +00005034 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Op);
Lang Hames591cdaf2012-03-29 21:56:11 +00005035
Oliver Stannard51b1d462014-08-21 12:50:31 +00005036 // Use the default (constant pool) lowering for double constants when we have
5037 // an SP-only FPU
5038 if (IsDouble && Subtarget->isFPOnlySP())
5039 return SDValue();
5040
Lang Hames591cdaf2012-03-29 21:56:11 +00005041 // Try splatting with a VMOV.f32...
5042 APFloat FPVal = CFP->getValueAPF();
Tim Northoverf79c3a52013-08-20 08:57:11 +00005043 int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal);
5044
Lang Hames591cdaf2012-03-29 21:56:11 +00005045 if (ImmVal != -1) {
Tim Northoverf79c3a52013-08-20 08:57:11 +00005046 if (IsDouble || !ST->useNEONForSinglePrecisionFP()) {
5047 // We have code in place to select a valid ConstantFP already, no need to
5048 // do any mangling.
5049 return Op;
5050 }
5051
5052 // It's a float and we are trying to use NEON operations where
5053 // possible. Lower it to a splat followed by an extract.
Andrew Trickef9de2a2013-05-25 02:42:55 +00005054 SDLoc DL(Op);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005055 SDValue NewVal = DAG.getTargetConstant(ImmVal, DL, MVT::i32);
Lang Hames591cdaf2012-03-29 21:56:11 +00005056 SDValue VecConstant = DAG.getNode(ARMISD::VMOVFPIMM, DL, MVT::v2f32,
5057 NewVal);
5058 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecConstant,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005059 DAG.getConstant(0, DL, MVT::i32));
Lang Hames591cdaf2012-03-29 21:56:11 +00005060 }
5061
Tim Northoverf79c3a52013-08-20 08:57:11 +00005062 // The rest of our options are NEON only, make sure that's allowed before
5063 // proceeding..
5064 if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP()))
5065 return SDValue();
5066
Lang Hames591cdaf2012-03-29 21:56:11 +00005067 EVT VMovVT;
Tim Northoverf79c3a52013-08-20 08:57:11 +00005068 uint64_t iVal = FPVal.bitcastToAPInt().getZExtValue();
5069
5070 // It wouldn't really be worth bothering for doubles except for one very
5071 // important value, which does happen to match: 0.0. So make sure we don't do
5072 // anything stupid.
5073 if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32))
5074 return SDValue();
5075
5076 // Try a VMOV.i32 (FIXME: i8, i16, or i64 could work too).
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005077 SDValue NewVal = isNEONModifiedImm(iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op),
5078 VMovVT, false, VMOVModImm);
Lang Hames591cdaf2012-03-29 21:56:11 +00005079 if (NewVal != SDValue()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005080 SDLoc DL(Op);
Lang Hames591cdaf2012-03-29 21:56:11 +00005081 SDValue VecConstant = DAG.getNode(ARMISD::VMOVIMM, DL, VMovVT,
5082 NewVal);
Tim Northoverf79c3a52013-08-20 08:57:11 +00005083 if (IsDouble)
5084 return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
5085
5086 // It's a float: cast and extract a vector element.
Lang Hames591cdaf2012-03-29 21:56:11 +00005087 SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
5088 VecConstant);
5089 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005090 DAG.getConstant(0, DL, MVT::i32));
Lang Hames591cdaf2012-03-29 21:56:11 +00005091 }
5092
5093 // Finally, try a VMVN.i32
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005094 NewVal = isNEONModifiedImm(~iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op), VMovVT,
Tim Northoverf79c3a52013-08-20 08:57:11 +00005095 false, VMVNModImm);
Lang Hames591cdaf2012-03-29 21:56:11 +00005096 if (NewVal != SDValue()) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00005097 SDLoc DL(Op);
Lang Hames591cdaf2012-03-29 21:56:11 +00005098 SDValue VecConstant = DAG.getNode(ARMISD::VMVNIMM, DL, VMovVT, NewVal);
Tim Northoverf79c3a52013-08-20 08:57:11 +00005099
5100 if (IsDouble)
5101 return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
5102
5103 // It's a float: cast and extract a vector element.
Lang Hames591cdaf2012-03-29 21:56:11 +00005104 SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
5105 VecConstant);
5106 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005107 DAG.getConstant(0, DL, MVT::i32));
Lang Hames591cdaf2012-03-29 21:56:11 +00005108 }
5109
5110 return SDValue();
5111}
5112
Quentin Colombet8e1fe842012-11-02 21:32:17 +00005113// check if an VEXT instruction can handle the shuffle mask when the
5114// vector sources of the shuffle are the same.
5115static bool isSingletonVEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
5116 unsigned NumElts = VT.getVectorNumElements();
5117
5118 // Assume that the first shuffle index is not UNDEF. Fail if it is.
5119 if (M[0] < 0)
5120 return false;
5121
5122 Imm = M[0];
5123
5124 // If this is a VEXT shuffle, the immediate value is the index of the first
5125 // element. The other shuffle indices must be the successive elements after
5126 // the first one.
5127 unsigned ExpectedElt = Imm;
5128 for (unsigned i = 1; i < NumElts; ++i) {
5129 // Increment the expected index. If it wraps around, just follow it
5130 // back to index zero and keep going.
5131 ++ExpectedElt;
5132 if (ExpectedElt == NumElts)
5133 ExpectedElt = 0;
5134
5135 if (M[i] < 0) continue; // ignore UNDEF indices
5136 if (ExpectedElt != static_cast<unsigned>(M[i]))
5137 return false;
5138 }
5139
5140 return true;
5141}
5142
Lang Hames591cdaf2012-03-29 21:56:11 +00005143
Benjamin Kramer339ced42012-01-15 13:16:05 +00005144static bool isVEXTMask(ArrayRef<int> M, EVT VT,
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005145 bool &ReverseVEXT, unsigned &Imm) {
Bob Wilson32cd8552009-08-19 17:03:43 +00005146 unsigned NumElts = VT.getVectorNumElements();
5147 ReverseVEXT = false;
Bob Wilson411dfad2010-08-17 05:54:34 +00005148
5149 // Assume that the first shuffle index is not UNDEF. Fail if it is.
5150 if (M[0] < 0)
5151 return false;
5152
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005153 Imm = M[0];
Bob Wilson32cd8552009-08-19 17:03:43 +00005154
5155 // If this is a VEXT shuffle, the immediate value is the index of the first
5156 // element. The other shuffle indices must be the successive elements after
5157 // the first one.
5158 unsigned ExpectedElt = Imm;
5159 for (unsigned i = 1; i < NumElts; ++i) {
Bob Wilson32cd8552009-08-19 17:03:43 +00005160 // Increment the expected index. If it wraps around, it may still be
5161 // a VEXT but the source vectors must be swapped.
5162 ExpectedElt += 1;
5163 if (ExpectedElt == NumElts * 2) {
5164 ExpectedElt = 0;
5165 ReverseVEXT = true;
5166 }
5167
Bob Wilson411dfad2010-08-17 05:54:34 +00005168 if (M[i] < 0) continue; // ignore UNDEF indices
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005169 if (ExpectedElt != static_cast<unsigned>(M[i]))
Bob Wilson32cd8552009-08-19 17:03:43 +00005170 return false;
5171 }
5172
5173 // Adjust the index value if the source operands will be swapped.
5174 if (ReverseVEXT)
5175 Imm -= NumElts;
5176
Bob Wilson32cd8552009-08-19 17:03:43 +00005177 return true;
5178}
5179
Bob Wilson8a37bbe2009-07-26 00:39:34 +00005180/// isVREVMask - Check if a vector shuffle corresponds to a VREV
5181/// instruction with the specified blocksize. (The order of the elements
5182/// within each block of the vector is reversed.)
Benjamin Kramer339ced42012-01-15 13:16:05 +00005183static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
Bob Wilson8a37bbe2009-07-26 00:39:34 +00005184 assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
5185 "Only possible block sizes for VREV are: 16, 32, 64");
5186
Bob Wilson8a37bbe2009-07-26 00:39:34 +00005187 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
Bob Wilson854530a2009-10-21 21:36:27 +00005188 if (EltSz == 64)
5189 return false;
5190
5191 unsigned NumElts = VT.getVectorNumElements();
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005192 unsigned BlockElts = M[0] + 1;
Bob Wilson411dfad2010-08-17 05:54:34 +00005193 // If the first shuffle index is UNDEF, be optimistic.
5194 if (M[0] < 0)
5195 BlockElts = BlockSize / EltSz;
Bob Wilson8a37bbe2009-07-26 00:39:34 +00005196
5197 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
5198 return false;
5199
5200 for (unsigned i = 0; i < NumElts; ++i) {
Bob Wilson411dfad2010-08-17 05:54:34 +00005201 if (M[i] < 0) continue; // ignore UNDEF indices
5202 if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
Bob Wilson8a37bbe2009-07-26 00:39:34 +00005203 return false;
5204 }
5205
5206 return true;
5207}
5208
Benjamin Kramer339ced42012-01-15 13:16:05 +00005209static bool isVTBLMask(ArrayRef<int> M, EVT VT) {
Bill Wendling865f8b52011-03-15 21:15:20 +00005210 // We can handle <8 x i8> vector shuffles. If the index in the mask is out of
5211 // range, then 0 is placed into the resulting vector. So pretty much any mask
5212 // of 8 elements can work here.
5213 return VT == MVT::v8i8 && M.size() == 8;
5214}
5215
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005216// Checks whether the shuffle mask represents a vector transpose (VTRN) by
5217// checking that pairs of elements in the shuffle mask represent the same index
5218// in each vector, incrementing the expected index by 2 at each step.
5219// e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 4, 2, 6]
5220// v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,e,c,g}
5221// v2={e,f,g,h}
5222// WhichResult gives the offset for each element in the mask based on which
5223// of the two results it belongs to.
5224//
5225// The transpose can be represented either as:
5226// result1 = shufflevector v1, v2, result1_shuffle_mask
5227// result2 = shufflevector v1, v2, result2_shuffle_mask
5228// where v1/v2 and the shuffle masks have the same number of elements
5229// (here WhichResult (see below) indicates which result is being checked)
5230//
5231// or as:
5232// results = shufflevector v1, v2, shuffle_mask
5233// where both results are returned in one vector and the shuffle mask has twice
5234// as many elements as v1/v2 (here WhichResult will always be 0 if true) here we
5235// want to check the low half and high half of the shuffle mask as if it were
5236// the other case
Benjamin Kramer339ced42012-01-15 13:16:05 +00005237static bool isVTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson854530a2009-10-21 21:36:27 +00005238 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5239 if (EltSz == 64)
5240 return false;
5241
Bob Wilsona7062312009-08-21 20:54:19 +00005242 unsigned NumElts = VT.getVectorNumElements();
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005243 if (M.size() != NumElts && M.size() != NumElts*2)
5244 return false;
5245
James Molloy8c995a92015-09-10 08:42:28 +00005246 // If the mask is twice as long as the input vector then we need to check the
5247 // upper and lower parts of the mask with a matching value for WhichResult
5248 // FIXME: A mask with only even values will be rejected in case the first
5249 // element is undefined, e.g. [-1, 4, 2, 6] will be rejected, because only
5250 // M[0] is used to determine WhichResult
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005251 for (unsigned i = 0; i < M.size(); i += NumElts) {
James Molloy8c995a92015-09-10 08:42:28 +00005252 if (M.size() == NumElts * 2)
5253 WhichResult = i / NumElts;
5254 else
5255 WhichResult = M[i] == 0 ? 0 : 1;
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005256 for (unsigned j = 0; j < NumElts; j += 2) {
5257 if ((M[i+j] >= 0 && (unsigned) M[i+j] != j + WhichResult) ||
5258 (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != j + NumElts + WhichResult))
5259 return false;
5260 }
Bob Wilsona7062312009-08-21 20:54:19 +00005261 }
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005262
5263 if (M.size() == NumElts*2)
5264 WhichResult = 0;
5265
Bob Wilsona7062312009-08-21 20:54:19 +00005266 return true;
5267}
5268
Bob Wilson0bbd3072009-12-03 06:40:55 +00005269/// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
5270/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5271/// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
Benjamin Kramer339ced42012-01-15 13:16:05 +00005272static bool isVTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson0bbd3072009-12-03 06:40:55 +00005273 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5274 if (EltSz == 64)
5275 return false;
5276
5277 unsigned NumElts = VT.getVectorNumElements();
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005278 if (M.size() != NumElts && M.size() != NumElts*2)
5279 return false;
5280
5281 for (unsigned i = 0; i < M.size(); i += NumElts) {
James Molloy8c995a92015-09-10 08:42:28 +00005282 if (M.size() == NumElts * 2)
5283 WhichResult = i / NumElts;
5284 else
5285 WhichResult = M[i] == 0 ? 0 : 1;
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005286 for (unsigned j = 0; j < NumElts; j += 2) {
5287 if ((M[i+j] >= 0 && (unsigned) M[i+j] != j + WhichResult) ||
5288 (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != j + WhichResult))
5289 return false;
5290 }
Bob Wilson0bbd3072009-12-03 06:40:55 +00005291 }
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005292
5293 if (M.size() == NumElts*2)
5294 WhichResult = 0;
5295
Bob Wilson0bbd3072009-12-03 06:40:55 +00005296 return true;
5297}
5298
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005299// Checks whether the shuffle mask represents a vector unzip (VUZP) by checking
5300// that the mask elements are either all even and in steps of size 2 or all odd
5301// and in steps of size 2.
5302// e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 2, 4, 6]
5303// v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,c,e,g}
5304// v2={e,f,g,h}
5305// Requires similar checks to that of isVTRNMask with
5306// respect the how results are returned.
Benjamin Kramer339ced42012-01-15 13:16:05 +00005307static bool isVUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson854530a2009-10-21 21:36:27 +00005308 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5309 if (EltSz == 64)
5310 return false;
5311
Bob Wilsona7062312009-08-21 20:54:19 +00005312 unsigned NumElts = VT.getVectorNumElements();
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005313 if (M.size() != NumElts && M.size() != NumElts*2)
5314 return false;
5315
5316 for (unsigned i = 0; i < M.size(); i += NumElts) {
5317 WhichResult = M[i] == 0 ? 0 : 1;
5318 for (unsigned j = 0; j < NumElts; ++j) {
5319 if (M[i+j] >= 0 && (unsigned) M[i+j] != 2 * j + WhichResult)
5320 return false;
5321 }
Bob Wilsona7062312009-08-21 20:54:19 +00005322 }
5323
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005324 if (M.size() == NumElts*2)
5325 WhichResult = 0;
5326
Bob Wilsona7062312009-08-21 20:54:19 +00005327 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
Bob Wilson854530a2009-10-21 21:36:27 +00005328 if (VT.is64BitVector() && EltSz == 32)
Bob Wilsona7062312009-08-21 20:54:19 +00005329 return false;
5330
5331 return true;
5332}
5333
Bob Wilson0bbd3072009-12-03 06:40:55 +00005334/// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
5335/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5336/// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
Benjamin Kramer339ced42012-01-15 13:16:05 +00005337static bool isVUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson0bbd3072009-12-03 06:40:55 +00005338 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5339 if (EltSz == 64)
5340 return false;
5341
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005342 unsigned NumElts = VT.getVectorNumElements();
5343 if (M.size() != NumElts && M.size() != NumElts*2)
5344 return false;
5345
5346 unsigned Half = NumElts / 2;
5347 for (unsigned i = 0; i < M.size(); i += NumElts) {
5348 WhichResult = M[i] == 0 ? 0 : 1;
5349 for (unsigned j = 0; j < NumElts; j += Half) {
5350 unsigned Idx = WhichResult;
5351 for (unsigned k = 0; k < Half; ++k) {
5352 int MIdx = M[i + j + k];
5353 if (MIdx >= 0 && (unsigned) MIdx != Idx)
5354 return false;
5355 Idx += 2;
5356 }
Bob Wilson0bbd3072009-12-03 06:40:55 +00005357 }
5358 }
5359
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005360 if (M.size() == NumElts*2)
5361 WhichResult = 0;
5362
Bob Wilson0bbd3072009-12-03 06:40:55 +00005363 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5364 if (VT.is64BitVector() && EltSz == 32)
5365 return false;
5366
5367 return true;
5368}
5369
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005370// Checks whether the shuffle mask represents a vector zip (VZIP) by checking
5371// that pairs of elements of the shufflemask represent the same index in each
5372// vector incrementing sequentially through the vectors.
5373// e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 4, 1, 5]
5374// v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,e,b,f}
5375// v2={e,f,g,h}
5376// Requires similar checks to that of isVTRNMask with respect the how results
5377// are returned.
Benjamin Kramer339ced42012-01-15 13:16:05 +00005378static bool isVZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
Bob Wilson854530a2009-10-21 21:36:27 +00005379 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5380 if (EltSz == 64)
5381 return false;
5382
Bob Wilsona7062312009-08-21 20:54:19 +00005383 unsigned NumElts = VT.getVectorNumElements();
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005384 if (M.size() != NumElts && M.size() != NumElts*2)
5385 return false;
5386
5387 for (unsigned i = 0; i < M.size(); i += NumElts) {
5388 WhichResult = M[i] == 0 ? 0 : 1;
5389 unsigned Idx = WhichResult * NumElts / 2;
5390 for (unsigned j = 0; j < NumElts; j += 2) {
5391 if ((M[i+j] >= 0 && (unsigned) M[i+j] != Idx) ||
5392 (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != Idx + NumElts))
5393 return false;
5394 Idx += 1;
5395 }
Bob Wilsona7062312009-08-21 20:54:19 +00005396 }
5397
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005398 if (M.size() == NumElts*2)
5399 WhichResult = 0;
5400
Bob Wilsona7062312009-08-21 20:54:19 +00005401 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
Bob Wilson854530a2009-10-21 21:36:27 +00005402 if (VT.is64BitVector() && EltSz == 32)
Bob Wilsona7062312009-08-21 20:54:19 +00005403 return false;
5404
5405 return true;
5406}
5407
Bob Wilson0bbd3072009-12-03 06:40:55 +00005408/// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
5409/// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5410/// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
Benjamin Kramer339ced42012-01-15 13:16:05 +00005411static bool isVZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
Bob Wilson0bbd3072009-12-03 06:40:55 +00005412 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5413 if (EltSz == 64)
5414 return false;
5415
5416 unsigned NumElts = VT.getVectorNumElements();
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005417 if (M.size() != NumElts && M.size() != NumElts*2)
5418 return false;
5419
5420 for (unsigned i = 0; i < M.size(); i += NumElts) {
5421 WhichResult = M[i] == 0 ? 0 : 1;
5422 unsigned Idx = WhichResult * NumElts / 2;
5423 for (unsigned j = 0; j < NumElts; j += 2) {
5424 if ((M[i+j] >= 0 && (unsigned) M[i+j] != Idx) ||
5425 (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != Idx))
5426 return false;
5427 Idx += 1;
5428 }
Bob Wilson0bbd3072009-12-03 06:40:55 +00005429 }
5430
Luke Cheeseman4d45ff22015-07-24 09:57:05 +00005431 if (M.size() == NumElts*2)
5432 WhichResult = 0;
5433
Bob Wilson0bbd3072009-12-03 06:40:55 +00005434 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5435 if (VT.is64BitVector() && EltSz == 32)
5436 return false;
5437
5438 return true;
5439}
5440
Ahmed Bougacha2ffa91f2015-06-19 02:25:01 +00005441/// Check if \p ShuffleMask is a NEON two-result shuffle (VZIP, VUZP, VTRN),
5442/// and return the corresponding ARMISD opcode if it is, or 0 if it isn't.
5443static unsigned isNEONTwoResultShuffleMask(ArrayRef<int> ShuffleMask, EVT VT,
5444 unsigned &WhichResult,
5445 bool &isV_UNDEF) {
5446 isV_UNDEF = false;
5447 if (isVTRNMask(ShuffleMask, VT, WhichResult))
5448 return ARMISD::VTRN;
5449 if (isVUZPMask(ShuffleMask, VT, WhichResult))
5450 return ARMISD::VUZP;
5451 if (isVZIPMask(ShuffleMask, VT, WhichResult))
5452 return ARMISD::VZIP;
5453
5454 isV_UNDEF = true;
5455 if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
5456 return ARMISD::VTRN;
5457 if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5458 return ARMISD::VUZP;
5459 if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5460 return ARMISD::VZIP;
5461
5462 return 0;
5463}
5464
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00005465/// \return true if this is a reverse operation on an vector.
5466static bool isReverseMask(ArrayRef<int> M, EVT VT) {
5467 unsigned NumElts = VT.getVectorNumElements();
5468 // Make sure the mask has the right size.
5469 if (NumElts != M.size())
5470 return false;
5471
5472 // Look for <15, ..., 3, -1, 1, 0>.
5473 for (unsigned i = 0; i != NumElts; ++i)
5474 if (M[i] >= 0 && M[i] != (int) (NumElts - 1 - i))
5475 return false;
5476
5477 return true;
5478}
5479
Dale Johannesen2bff5052010-07-29 20:10:08 +00005480// If N is an integer constant that can be moved into a register in one
5481// instruction, return an SDValue of such a constant (will become a MOV
5482// instruction). Otherwise return null.
5483static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005484 const ARMSubtarget *ST, SDLoc dl) {
Dale Johannesen2bff5052010-07-29 20:10:08 +00005485 uint64_t Val;
5486 if (!isa<ConstantSDNode>(N))
5487 return SDValue();
5488 Val = cast<ConstantSDNode>(N)->getZExtValue();
5489
5490 if (ST->isThumb1Only()) {
5491 if (Val <= 255 || ~Val <= 255)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005492 return DAG.getConstant(Val, dl, MVT::i32);
Dale Johannesen2bff5052010-07-29 20:10:08 +00005493 } else {
5494 if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005495 return DAG.getConstant(Val, dl, MVT::i32);
Dale Johannesen2bff5052010-07-29 20:10:08 +00005496 }
5497 return SDValue();
5498}
5499
Bob Wilson2e076c42009-06-22 23:27:02 +00005500// If this is a case we can't handle, return null and let the default
5501// expansion code take care of it.
Bob Wilson6f2b8962011-01-07 21:37:30 +00005502SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
5503 const ARMSubtarget *ST) const {
Bob Wilsonfcd63612009-08-13 01:57:47 +00005504 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
Andrew Trickef9de2a2013-05-25 02:42:55 +00005505 SDLoc dl(Op);
Owen Anderson53aa7a92009-08-10 22:56:29 +00005506 EVT VT = Op.getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +00005507
5508 APInt SplatBits, SplatUndef;
5509 unsigned SplatBitSize;
5510 bool HasAnyUndefs;
5511 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
Anton Korobeynikovece642a2009-08-29 00:08:18 +00005512 if (SplatBitSize <= 64) {
Bob Wilson5b2b5042010-06-14 22:19:57 +00005513 // Check if an immediate VMOV works.
Bob Wilsona3f19012010-07-13 21:16:48 +00005514 EVT VmovVT;
Bob Wilson5b2b5042010-06-14 22:19:57 +00005515 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
Bob Wilsona3f19012010-07-13 21:16:48 +00005516 SplatUndef.getZExtValue(), SplatBitSize,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005517 DAG, dl, VmovVT, VT.is128BitVector(),
Owen Andersona4076922010-11-05 21:57:54 +00005518 VMOVModImm);
Bob Wilsona3f19012010-07-13 21:16:48 +00005519 if (Val.getNode()) {
5520 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val);
Wesley Peck527da1b2010-11-23 03:31:01 +00005521 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilsona3f19012010-07-13 21:16:48 +00005522 }
Bob Wilsonbad47f62010-07-14 06:31:50 +00005523
5524 // Try an immediate VMVN.
Eli Friedmanaa6ec392011-10-13 22:40:23 +00005525 uint64_t NegatedImm = (~SplatBits).getZExtValue();
Bob Wilsonbad47f62010-07-14 06:31:50 +00005526 Val = isNEONModifiedImm(NegatedImm,
5527 SplatUndef.getZExtValue(), SplatBitSize,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005528 DAG, dl, VmovVT, VT.is128BitVector(),
Owen Andersona4076922010-11-05 21:57:54 +00005529 VMVNModImm);
Bob Wilsonbad47f62010-07-14 06:31:50 +00005530 if (Val.getNode()) {
5531 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val);
Wesley Peck527da1b2010-11-23 03:31:01 +00005532 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
Bob Wilsonbad47f62010-07-14 06:31:50 +00005533 }
Evan Cheng7ca4b6e2011-11-15 02:12:34 +00005534
5535 // Use vmov.f32 to materialize other v2f32 and v4f32 splats.
Eli Friedmanc9bf1b12011-12-15 22:56:53 +00005536 if ((VT == MVT::v2f32 || VT == MVT::v4f32) && SplatBitSize == 32) {
Eli Friedman4e36a932011-12-09 23:54:42 +00005537 int ImmVal = ARM_AM::getFP32Imm(SplatBits);
Evan Cheng7ca4b6e2011-11-15 02:12:34 +00005538 if (ImmVal != -1) {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005539 SDValue Val = DAG.getTargetConstant(ImmVal, dl, MVT::i32);
Evan Cheng7ca4b6e2011-11-15 02:12:34 +00005540 return DAG.getNode(ARMISD::VMOVFPIMM, dl, VT, Val);
5541 }
5542 }
Anton Korobeynikovece642a2009-08-29 00:08:18 +00005543 }
Bob Wilson0dbdec82009-07-30 00:31:25 +00005544 }
5545
Bob Wilson91fdf682010-05-22 00:23:12 +00005546 // Scan through the operands to see if only one value is used.
James Molloy49bdbce2012-09-06 09:55:02 +00005547 //
5548 // As an optimisation, even if more than one value is used it may be more
5549 // profitable to splat with one value then change some lanes.
5550 //
5551 // Heuristically we decide to do this if the vector has a "dominant" value,
5552 // defined as splatted to more than half of the lanes.
Bob Wilson91fdf682010-05-22 00:23:12 +00005553 unsigned NumElts = VT.getVectorNumElements();
5554 bool isOnlyLowElement = true;
5555 bool usesOnlyOneValue = true;
James Molloy49bdbce2012-09-06 09:55:02 +00005556 bool hasDominantValue = false;
Bob Wilson91fdf682010-05-22 00:23:12 +00005557 bool isConstant = true;
James Molloy49bdbce2012-09-06 09:55:02 +00005558
5559 // Map of the number of times a particular SDValue appears in the
5560 // element list.
James Molloy9d30dc22012-09-06 10:32:08 +00005561 DenseMap<SDValue, unsigned> ValueCounts;
Bob Wilson91fdf682010-05-22 00:23:12 +00005562 SDValue Value;
5563 for (unsigned i = 0; i < NumElts; ++i) {
5564 SDValue V = Op.getOperand(i);
Sanjay Patel57195842016-03-14 17:28:46 +00005565 if (V.isUndef())
Bob Wilson91fdf682010-05-22 00:23:12 +00005566 continue;
5567 if (i > 0)
5568 isOnlyLowElement = false;
5569 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
5570 isConstant = false;
5571
James Molloy49bdbce2012-09-06 09:55:02 +00005572 ValueCounts.insert(std::make_pair(V, 0));
James Molloy9d30dc22012-09-06 10:32:08 +00005573 unsigned &Count = ValueCounts[V];
Jim Grosbach54efea02013-03-02 20:16:15 +00005574
James Molloy49bdbce2012-09-06 09:55:02 +00005575 // Is this value dominant? (takes up more than half of the lanes)
5576 if (++Count > (NumElts / 2)) {
5577 hasDominantValue = true;
Bob Wilson91fdf682010-05-22 00:23:12 +00005578 Value = V;
James Molloy49bdbce2012-09-06 09:55:02 +00005579 }
Bob Wilson91fdf682010-05-22 00:23:12 +00005580 }
James Molloy49bdbce2012-09-06 09:55:02 +00005581 if (ValueCounts.size() != 1)
5582 usesOnlyOneValue = false;
5583 if (!Value.getNode() && ValueCounts.size() > 0)
5584 Value = ValueCounts.begin()->first;
Bob Wilson91fdf682010-05-22 00:23:12 +00005585
James Molloy49bdbce2012-09-06 09:55:02 +00005586 if (ValueCounts.size() == 0)
Bob Wilson91fdf682010-05-22 00:23:12 +00005587 return DAG.getUNDEF(VT);
5588
Quentin Colombet0f2fe742013-07-23 22:34:47 +00005589 // Loads are better lowered with insert_vector_elt/ARMISD::BUILD_VECTOR.
5590 // Keep going if we are hitting this case.
5591 if (isOnlyLowElement && !ISD::isNormalLoad(Value.getNode()))
Bob Wilson91fdf682010-05-22 00:23:12 +00005592 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
5593
Dale Johannesen2bff5052010-07-29 20:10:08 +00005594 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5595
Dale Johannesen710a2d92010-10-19 20:00:17 +00005596 // Use VDUP for non-constant splats. For f32 constant splats, reduce to
5597 // i32 and try again.
James Molloy49bdbce2012-09-06 09:55:02 +00005598 if (hasDominantValue && EltSize <= 32) {
5599 if (!isConstant) {
5600 SDValue N;
5601
5602 // If we are VDUPing a value that comes directly from a vector, that will
5603 // cause an unnecessary move to and from a GPR, where instead we could
Jim Grosbacha3c5c762013-03-02 20:16:24 +00005604 // just use VDUPLANE. We can only do this if the lane being extracted
5605 // is at a constant index, as the VDUP from lane instructions only have
5606 // constant-index forms.
Artyom Skrobov314ee042015-11-25 19:41:11 +00005607 ConstantSDNode *constIndex;
Jim Grosbacha3c5c762013-03-02 20:16:24 +00005608 if (Value->getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
Artyom Skrobov314ee042015-11-25 19:41:11 +00005609 (constIndex = dyn_cast<ConstantSDNode>(Value->getOperand(1)))) {
Silviu Barangab1409702012-10-15 09:41:32 +00005610 // We need to create a new undef vector to use for the VDUPLANE if the
5611 // size of the vector from which we get the value is different than the
5612 // size of the vector that we need to create. We will insert the element
5613 // such that the register coalescer will remove unnecessary copies.
5614 if (VT != Value->getOperand(0).getValueType()) {
Silviu Barangab1409702012-10-15 09:41:32 +00005615 unsigned index = constIndex->getAPIntValue().getLimitedValue() %
5616 VT.getVectorNumElements();
5617 N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5618 DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DAG.getUNDEF(VT),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005619 Value, DAG.getConstant(index, dl, MVT::i32)),
5620 DAG.getConstant(index, dl, MVT::i32));
Jim Grosbachc6f19142013-03-02 20:16:19 +00005621 } else
Silviu Barangab1409702012-10-15 09:41:32 +00005622 N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
James Molloy49bdbce2012-09-06 09:55:02 +00005623 Value->getOperand(0), Value->getOperand(1));
Jim Grosbachc6f19142013-03-02 20:16:19 +00005624 } else
James Molloy49bdbce2012-09-06 09:55:02 +00005625 N = DAG.getNode(ARMISD::VDUP, dl, VT, Value);
5626
5627 if (!usesOnlyOneValue) {
5628 // The dominant value was splatted as 'N', but we now have to insert
5629 // all differing elements.
5630 for (unsigned I = 0; I < NumElts; ++I) {
5631 if (Op.getOperand(I) == Value)
5632 continue;
5633 SmallVector<SDValue, 3> Ops;
5634 Ops.push_back(N);
5635 Ops.push_back(Op.getOperand(I));
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005636 Ops.push_back(DAG.getConstant(I, dl, MVT::i32));
Craig Topper48d114b2014-04-26 18:35:24 +00005637 N = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Ops);
James Molloy49bdbce2012-09-06 09:55:02 +00005638 }
5639 }
5640 return N;
5641 }
Dale Johannesen710a2d92010-10-19 20:00:17 +00005642 if (VT.getVectorElementType().isFloatingPoint()) {
5643 SmallVector<SDValue, 8> Ops;
5644 for (unsigned i = 0; i < NumElts; ++i)
Wesley Peck527da1b2010-11-23 03:31:01 +00005645 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32,
Dale Johannesen710a2d92010-10-19 20:00:17 +00005646 Op.getOperand(i)));
Nate Begemanca524112010-11-10 21:35:41 +00005647 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
Craig Topper48d114b2014-04-26 18:35:24 +00005648 SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops);
Dale Johannesenff376752010-10-20 22:03:37 +00005649 Val = LowerBUILD_VECTOR(Val, DAG, ST);
5650 if (Val.getNode())
Wesley Peck527da1b2010-11-23 03:31:01 +00005651 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Dale Johannesen2bff5052010-07-29 20:10:08 +00005652 }
James Molloy49bdbce2012-09-06 09:55:02 +00005653 if (usesOnlyOneValue) {
5654 SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl);
5655 if (isConstant && Val.getNode())
Jim Grosbach54efea02013-03-02 20:16:15 +00005656 return DAG.getNode(ARMISD::VDUP, dl, VT, Val);
James Molloy49bdbce2012-09-06 09:55:02 +00005657 }
Dale Johannesen2bff5052010-07-29 20:10:08 +00005658 }
5659
5660 // If all elements are constants and the case above didn't get hit, fall back
5661 // to the default expansion, which will generate a load from the constant
5662 // pool.
Bob Wilson91fdf682010-05-22 00:23:12 +00005663 if (isConstant)
5664 return SDValue();
5665
Bob Wilson6f2b8962011-01-07 21:37:30 +00005666 // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
5667 if (NumElts >= 4) {
5668 SDValue shuffle = ReconstructShuffle(Op, DAG);
5669 if (shuffle != SDValue())
5670 return shuffle;
5671 }
5672
Bob Wilson91fdf682010-05-22 00:23:12 +00005673 // Vectors with 32- or 64-bit elements can be built by directly assigning
Bob Wilsond8a9a042010-06-04 00:04:02 +00005674 // the subregisters. Lower it to an ARMISD::BUILD_VECTOR so the operands
5675 // will be legalized.
Bob Wilson91fdf682010-05-22 00:23:12 +00005676 if (EltSize >= 32) {
5677 // Do the expansion with floating-point types, since that is what the VFP
5678 // registers are defined to use, and since i64 is not legal.
5679 EVT EltVT = EVT::getFloatingPointVT(EltSize);
5680 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
Bob Wilsond8a9a042010-06-04 00:04:02 +00005681 SmallVector<SDValue, 8> Ops;
5682 for (unsigned i = 0; i < NumElts; ++i)
Wesley Peck527da1b2010-11-23 03:31:01 +00005683 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i)));
Craig Topper48d114b2014-04-26 18:35:24 +00005684 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00005685 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Bob Wilson2e076c42009-06-22 23:27:02 +00005686 }
5687
Jim Grosbach24e102a2013-07-08 18:18:52 +00005688 // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
5689 // know the default expansion would otherwise fall back on something even
5690 // worse. For a vector with one or two non-undef values, that's
5691 // scalar_to_vector for the elements followed by a shuffle (provided the
5692 // shuffle is valid for the target) and materialization element by element
5693 // on the stack followed by a load for everything else.
5694 if (!isConstant && !usesOnlyOneValue) {
5695 SDValue Vec = DAG.getUNDEF(VT);
5696 for (unsigned i = 0 ; i < NumElts; ++i) {
5697 SDValue V = Op.getOperand(i);
Sanjay Patel57195842016-03-14 17:28:46 +00005698 if (V.isUndef())
Jim Grosbach24e102a2013-07-08 18:18:52 +00005699 continue;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00005700 SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i32);
Jim Grosbach24e102a2013-07-08 18:18:52 +00005701 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
5702 }
5703 return Vec;
5704 }
5705
Bob Wilson2e076c42009-06-22 23:27:02 +00005706 return SDValue();
5707}
5708
Bob Wilson6f2b8962011-01-07 21:37:30 +00005709// Gather data to see if the operation can be modelled as a
Andrew Trick5eb0a302011-01-19 02:26:13 +00005710// shuffle in combination with VEXTs.
Eric Christopher2af95512011-01-14 23:50:53 +00005711SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op,
5712 SelectionDAG &DAG) const {
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005713 assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
Andrew Trickef9de2a2013-05-25 02:42:55 +00005714 SDLoc dl(Op);
Bob Wilson6f2b8962011-01-07 21:37:30 +00005715 EVT VT = Op.getValueType();
5716 unsigned NumElts = VT.getVectorNumElements();
5717
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005718 struct ShuffleSourceInfo {
5719 SDValue Vec;
5720 unsigned MinElt;
5721 unsigned MaxElt;
Andrew Trick5eb0a302011-01-19 02:26:13 +00005722
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005723 // We may insert some combination of BITCASTs and VEXT nodes to force Vec to
5724 // be compatible with the shuffle we intend to construct. As a result
5725 // ShuffleVec will be some sliding window into the original Vec.
5726 SDValue ShuffleVec;
5727
5728 // Code should guarantee that element i in Vec starts at element "WindowBase
5729 // + i * WindowScale in ShuffleVec".
5730 int WindowBase;
5731 int WindowScale;
5732
5733 bool operator ==(SDValue OtherVec) { return Vec == OtherVec; }
5734 ShuffleSourceInfo(SDValue Vec)
5735 : Vec(Vec), MinElt(UINT_MAX), MaxElt(0), ShuffleVec(Vec), WindowBase(0),
5736 WindowScale(1) {}
5737 };
5738
5739 // First gather all vectors used as an immediate source for this BUILD_VECTOR
5740 // node.
5741 SmallVector<ShuffleSourceInfo, 2> Sources;
Bob Wilson6f2b8962011-01-07 21:37:30 +00005742 for (unsigned i = 0; i < NumElts; ++i) {
5743 SDValue V = Op.getOperand(i);
Sanjay Patel57195842016-03-14 17:28:46 +00005744 if (V.isUndef())
Bob Wilson6f2b8962011-01-07 21:37:30 +00005745 continue;
5746 else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
5747 // A shuffle can only come from building a vector from various
5748 // elements of other vectors.
5749 return SDValue();
Ahmed Bougacha699a9dd2015-09-01 21:56:00 +00005750 } else if (!isa<ConstantSDNode>(V.getOperand(1))) {
5751 // Furthermore, shuffles require a constant mask, whereas extractelts
5752 // accept variable indices.
5753 return SDValue();
Bob Wilson6f2b8962011-01-07 21:37:30 +00005754 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005755
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005756 // Add this element source to the list if it's not already there.
Bob Wilson6f2b8962011-01-07 21:37:30 +00005757 SDValue SourceVec = V.getOperand(0);
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005758 auto Source = std::find(Sources.begin(), Sources.end(), SourceVec);
5759 if (Source == Sources.end())
5760 Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec));
Andrew Trick5eb0a302011-01-19 02:26:13 +00005761
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005762 // Update the minimum and maximum lane number seen.
5763 unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
5764 Source->MinElt = std::min(Source->MinElt, EltNo);
5765 Source->MaxElt = std::max(Source->MaxElt, EltNo);
Bob Wilson6f2b8962011-01-07 21:37:30 +00005766 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005767
Bob Wilson6f2b8962011-01-07 21:37:30 +00005768 // Currently only do something sane when at most two source vectors
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005769 // are involved.
5770 if (Sources.size() > 2)
Bob Wilson6f2b8962011-01-07 21:37:30 +00005771 return SDValue();
5772
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005773 // Find out the smallest element size among result and two sources, and use
5774 // it as element size to build the shuffle_vector.
5775 EVT SmallestEltTy = VT.getVectorElementType();
5776 for (auto &Source : Sources) {
5777 EVT SrcEltTy = Source.Vec.getValueType().getVectorElementType();
5778 if (SrcEltTy.bitsLT(SmallestEltTy))
5779 SmallestEltTy = SrcEltTy;
5780 }
5781 unsigned ResMultiplier =
5782 VT.getVectorElementType().getSizeInBits() / SmallestEltTy.getSizeInBits();
5783 NumElts = VT.getSizeInBits() / SmallestEltTy.getSizeInBits();
5784 EVT ShuffleVT = EVT::getVectorVT(*DAG.getContext(), SmallestEltTy, NumElts);
Andrew Trick5eb0a302011-01-19 02:26:13 +00005785
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005786 // If the source vector is too wide or too narrow, we may nevertheless be able
5787 // to construct a compatible shuffle either by concatenating it with UNDEF or
5788 // extracting a suitable range of elements.
5789 for (auto &Src : Sources) {
5790 EVT SrcVT = Src.ShuffleVec.getValueType();
5791
5792 if (SrcVT.getSizeInBits() == VT.getSizeInBits())
Bob Wilson6f2b8962011-01-07 21:37:30 +00005793 continue;
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005794
5795 // This stage of the search produces a source with the same element type as
5796 // the original, but with a total width matching the BUILD_VECTOR output.
5797 EVT EltVT = SrcVT.getVectorElementType();
5798 unsigned NumSrcElts = VT.getSizeInBits() / EltVT.getSizeInBits();
5799 EVT DestVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumSrcElts);
5800
5801 if (SrcVT.getSizeInBits() < VT.getSizeInBits()) {
5802 if (2 * SrcVT.getSizeInBits() != VT.getSizeInBits())
5803 return SDValue();
5804 // We can pad out the smaller vector for free, so if it's part of a
5805 // shuffle...
5806 Src.ShuffleVec =
5807 DAG.getNode(ISD::CONCAT_VECTORS, dl, DestVT, Src.ShuffleVec,
5808 DAG.getUNDEF(Src.ShuffleVec.getValueType()));
5809 continue;
Bob Wilson6f2b8962011-01-07 21:37:30 +00005810 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005811
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005812 if (SrcVT.getSizeInBits() != 2 * VT.getSizeInBits())
5813 return SDValue();
Andrew Trick5eb0a302011-01-19 02:26:13 +00005814
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005815 if (Src.MaxElt - Src.MinElt >= NumSrcElts) {
Bob Wilson6f2b8962011-01-07 21:37:30 +00005816 // Span too large for a VEXT to cope
5817 return SDValue();
Andrew Trick5eb0a302011-01-19 02:26:13 +00005818 }
5819
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005820 if (Src.MinElt >= NumSrcElts) {
Bob Wilson6f2b8962011-01-07 21:37:30 +00005821 // The extraction can just take the second half
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005822 Src.ShuffleVec =
5823 DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5824 DAG.getConstant(NumSrcElts, dl, MVT::i32));
5825 Src.WindowBase = -NumSrcElts;
5826 } else if (Src.MaxElt < NumSrcElts) {
Bob Wilson6f2b8962011-01-07 21:37:30 +00005827 // The extraction can just take the first half
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005828 Src.ShuffleVec =
5829 DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5830 DAG.getConstant(0, dl, MVT::i32));
Bob Wilson6f2b8962011-01-07 21:37:30 +00005831 } else {
5832 // An actual VEXT is needed
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005833 SDValue VEXTSrc1 =
5834 DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5835 DAG.getConstant(0, dl, MVT::i32));
5836 SDValue VEXTSrc2 =
5837 DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5838 DAG.getConstant(NumSrcElts, dl, MVT::i32));
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005839
5840 Src.ShuffleVec = DAG.getNode(ARMISD::VEXT, dl, DestVT, VEXTSrc1,
5841 VEXTSrc2,
Jeroen Ketema41681a52015-09-21 20:28:04 +00005842 DAG.getConstant(Src.MinElt, dl, MVT::i32));
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005843 Src.WindowBase = -Src.MinElt;
Bob Wilson6f2b8962011-01-07 21:37:30 +00005844 }
5845 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005846
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005847 // Another possible incompatibility occurs from the vector element types. We
5848 // can fix this by bitcasting the source vectors to the same type we intend
5849 // for the shuffle.
5850 for (auto &Src : Sources) {
5851 EVT SrcEltTy = Src.ShuffleVec.getValueType().getVectorElementType();
5852 if (SrcEltTy == SmallestEltTy)
Bob Wilson6f2b8962011-01-07 21:37:30 +00005853 continue;
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005854 assert(ShuffleVT.getVectorElementType() == SmallestEltTy);
5855 Src.ShuffleVec = DAG.getNode(ISD::BITCAST, dl, ShuffleVT, Src.ShuffleVec);
5856 Src.WindowScale = SrcEltTy.getSizeInBits() / SmallestEltTy.getSizeInBits();
5857 Src.WindowBase *= Src.WindowScale;
5858 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005859
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005860 // Final sanity check before we try to actually produce a shuffle.
Silviu Barangaa07090f2015-08-07 12:05:46 +00005861 DEBUG(
5862 for (auto Src : Sources)
5863 assert(Src.ShuffleVec.getValueType() == ShuffleVT);
5864 );
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005865
5866 // The stars all align, our next step is to produce the mask for the shuffle.
5867 SmallVector<int, 8> Mask(ShuffleVT.getVectorNumElements(), -1);
5868 int BitsPerShuffleLane = ShuffleVT.getVectorElementType().getSizeInBits();
5869 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
5870 SDValue Entry = Op.getOperand(i);
Sanjay Patel57195842016-03-14 17:28:46 +00005871 if (Entry.isUndef())
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005872 continue;
5873
5874 auto Src = std::find(Sources.begin(), Sources.end(), Entry.getOperand(0));
5875 int EltNo = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue();
5876
5877 // EXTRACT_VECTOR_ELT performs an implicit any_ext; BUILD_VECTOR an implicit
5878 // trunc. So only std::min(SrcBits, DestBits) actually get defined in this
5879 // segment.
5880 EVT OrigEltTy = Entry.getOperand(0).getValueType().getVectorElementType();
5881 int BitsDefined = std::min(OrigEltTy.getSizeInBits(),
5882 VT.getVectorElementType().getSizeInBits());
5883 int LanesDefined = BitsDefined / BitsPerShuffleLane;
5884
5885 // This source is expected to fill ResMultiplier lanes of the final shuffle,
5886 // starting at the appropriate offset.
5887 int *LaneMask = &Mask[i * ResMultiplier];
5888
5889 int ExtractBase = EltNo * Src->WindowScale + Src->WindowBase;
5890 ExtractBase += NumElts * (Src - Sources.begin());
5891 for (int j = 0; j < LanesDefined; ++j)
5892 LaneMask[j] = ExtractBase + j;
Bob Wilson6f2b8962011-01-07 21:37:30 +00005893 }
Andrew Trick5eb0a302011-01-19 02:26:13 +00005894
Bob Wilson6f2b8962011-01-07 21:37:30 +00005895 // Final check before we try to produce nonsense...
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005896 if (!isShuffleMaskLegal(Mask, ShuffleVT))
5897 return SDValue();
Andrew Trick5eb0a302011-01-19 02:26:13 +00005898
Silviu Baranga3e8e51c2015-08-07 11:40:46 +00005899 // We can't handle more than two sources. This should have already
5900 // been checked before this point.
5901 assert(Sources.size() <= 2 && "Too many sources!");
5902
5903 SDValue ShuffleOps[] = { DAG.getUNDEF(ShuffleVT), DAG.getUNDEF(ShuffleVT) };
5904 for (unsigned i = 0; i < Sources.size(); ++i)
5905 ShuffleOps[i] = Sources[i].ShuffleVec;
5906
5907 SDValue Shuffle = DAG.getVectorShuffle(ShuffleVT, dl, ShuffleOps[0],
5908 ShuffleOps[1], &Mask[0]);
5909 return DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
Bob Wilson6f2b8962011-01-07 21:37:30 +00005910}
5911
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005912/// isShuffleMaskLegal - Targets can use this to indicate that they only
5913/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
5914/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
5915/// are assumed to be legal.
5916bool
5917ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
5918 EVT VT) const {
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005919 if (VT.getVectorNumElements() == 4 &&
5920 (VT.is128BitVector() || VT.is64BitVector())) {
5921 unsigned PFIndexes[4];
5922 for (unsigned i = 0; i != 4; ++i) {
5923 if (M[i] < 0)
5924 PFIndexes[i] = 8;
5925 else
5926 PFIndexes[i] = M[i];
5927 }
5928
5929 // Compute the index in the perfect shuffle table.
5930 unsigned PFTableIndex =
5931 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5932 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5933 unsigned Cost = (PFEntry >> 30);
5934
5935 if (Cost <= 4)
5936 return true;
5937 }
5938
Ahmed Bougacha2ffa91f2015-06-19 02:25:01 +00005939 bool ReverseVEXT, isV_UNDEF;
Bob Wilsona7062312009-08-21 20:54:19 +00005940 unsigned Imm, WhichResult;
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005941
Bob Wilson846bd792010-06-07 23:53:38 +00005942 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5943 return (EltSize >= 32 ||
5944 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005945 isVREVMask(M, VT, 64) ||
5946 isVREVMask(M, VT, 32) ||
5947 isVREVMask(M, VT, 16) ||
Bob Wilsona7062312009-08-21 20:54:19 +00005948 isVEXTMask(M, VT, ReverseVEXT, Imm) ||
Bill Wendling865f8b52011-03-15 21:15:20 +00005949 isVTBLMask(M, VT) ||
Ahmed Bougacha2ffa91f2015-06-19 02:25:01 +00005950 isNEONTwoResultShuffleMask(M, VT, WhichResult, isV_UNDEF) ||
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00005951 ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(M, VT)));
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00005952}
5953
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005954/// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5955/// the specified operations to build the shuffle.
5956static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5957 SDValue RHS, SelectionDAG &DAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00005958 SDLoc dl) {
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00005959 unsigned OpNum = (PFEntry >> 26) & 0x0F;
5960 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
5961 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
5962
5963 enum {
5964 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5965 OP_VREV,
5966 OP_VDUP0,
5967 OP_VDUP1,
5968 OP_VDUP2,
5969 OP_VDUP3,
5970 OP_VEXT1,
5971 OP_VEXT2,
5972 OP_VEXT3,
5973 OP_VUZPL, // VUZP, left result
5974 OP_VUZPR, // VUZP, right result
5975 OP_VZIPL, // VZIP, left result
5976 OP_VZIPR, // VZIP, right result
5977 OP_VTRNL, // VTRN, left result
5978 OP_VTRNR // VTRN, right result
5979 };
5980
5981 if (OpNum == OP_COPY) {
5982 if (LHSID == (1*9+2)*9+3) return LHS;
5983 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5984 return RHS;
5985 }
5986
5987 SDValue OpLHS, OpRHS;
5988 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5989 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5990 EVT VT = OpLHS.getValueType();
5991
5992 switch (OpNum) {
5993 default: llvm_unreachable("Unknown shuffle opcode!");
5994 case OP_VREV:
Tanya Lattner48b182c2011-05-18 06:42:21 +00005995 // VREV divides the vector in half and swaps within the half.
Tanya Lattner1d117202011-05-18 21:44:54 +00005996 if (VT.getVectorElementType() == MVT::i32 ||
5997 VT.getVectorElementType() == MVT::f32)
Tanya Lattner48b182c2011-05-18 06:42:21 +00005998 return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
5999 // vrev <4 x i16> -> VREV32
6000 if (VT.getVectorElementType() == MVT::i16)
6001 return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS);
6002 // vrev <4 x i8> -> VREV16
6003 assert(VT.getVectorElementType() == MVT::i8);
6004 return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS);
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006005 case OP_VDUP0:
6006 case OP_VDUP1:
6007 case OP_VDUP2:
6008 case OP_VDUP3:
6009 return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006010 OpLHS, DAG.getConstant(OpNum-OP_VDUP0, dl, MVT::i32));
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006011 case OP_VEXT1:
6012 case OP_VEXT2:
6013 case OP_VEXT3:
6014 return DAG.getNode(ARMISD::VEXT, dl, VT,
6015 OpLHS, OpRHS,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006016 DAG.getConstant(OpNum - OP_VEXT1 + 1, dl, MVT::i32));
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006017 case OP_VUZPL:
6018 case OP_VUZPR:
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00006019 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006020 OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
6021 case OP_VZIPL:
6022 case OP_VZIPR:
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00006023 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006024 OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
6025 case OP_VTRNL:
6026 case OP_VTRNR:
Anton Korobeynikov232b19c2009-08-21 12:41:42 +00006027 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
6028 OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006029 }
6030}
6031
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006032static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op,
Benjamin Kramer339ced42012-01-15 13:16:05 +00006033 ArrayRef<int> ShuffleMask,
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006034 SelectionDAG &DAG) {
6035 // Check to see if we can use the VTBL instruction.
6036 SDValue V1 = Op.getOperand(0);
6037 SDValue V2 = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00006038 SDLoc DL(Op);
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006039
6040 SmallVector<SDValue, 8> VTBLMask;
Benjamin Kramer339ced42012-01-15 13:16:05 +00006041 for (ArrayRef<int>::iterator
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006042 I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006043 VTBLMask.push_back(DAG.getConstant(*I, DL, MVT::i32));
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006044
Sanjay Patel57195842016-03-14 17:28:46 +00006045 if (V2.getNode()->isUndef())
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006046 return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1,
Craig Topper48d114b2014-04-26 18:35:24 +00006047 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
Bill Wendlingebecb332011-03-15 20:47:26 +00006048
Owen Anderson77aa2662011-04-05 21:48:57 +00006049 return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2,
Craig Topper48d114b2014-04-26 18:35:24 +00006050 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006051}
6052
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00006053static SDValue LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(SDValue Op,
6054 SelectionDAG &DAG) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006055 SDLoc DL(Op);
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00006056 SDValue OpLHS = Op.getOperand(0);
6057 EVT VT = OpLHS.getValueType();
6058
6059 assert((VT == MVT::v8i16 || VT == MVT::v16i8) &&
6060 "Expect an v8i16/v16i8 type");
6061 OpLHS = DAG.getNode(ARMISD::VREV64, DL, VT, OpLHS);
6062 // For a v16i8 type: After the VREV, we have got <8, ...15, 8, ..., 0>. Now,
6063 // extract the first 8 bytes into the top double word and the last 8 bytes
6064 // into the bottom double word. The v8i16 case is similar.
6065 unsigned ExtractNum = (VT == MVT::v16i8) ? 8 : 4;
6066 return DAG.getNode(ARMISD::VEXT, DL, VT, OpLHS, OpLHS,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006067 DAG.getConstant(ExtractNum, DL, MVT::i32));
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00006068}
6069
Bob Wilson2e076c42009-06-22 23:27:02 +00006070static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006071 SDValue V1 = Op.getOperand(0);
6072 SDValue V2 = Op.getOperand(1);
Andrew Trickef9de2a2013-05-25 02:42:55 +00006073 SDLoc dl(Op);
Bob Wilsonea3a4022009-08-12 22:31:50 +00006074 EVT VT = Op.getValueType();
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006075 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
Bob Wilsonea3a4022009-08-12 22:31:50 +00006076
Bob Wilsonc6800b52009-08-13 02:13:04 +00006077 // Convert shuffles that are directly supported on NEON to target-specific
6078 // DAG nodes, instead of keeping them as shuffles and matching them again
6079 // during code selection. This is more efficient and avoids the possibility
6080 // of inconsistencies between legalization and selection.
Bob Wilson3e4c0122009-08-13 06:01:30 +00006081 // FIXME: floating-point vectors should be canonicalized to integer vectors
6082 // of the same time so that they get CSEd properly.
Benjamin Kramer339ced42012-01-15 13:16:05 +00006083 ArrayRef<int> ShuffleMask = SVN->getMask();
Anton Korobeynikovc32e99e2009-08-21 12:40:07 +00006084
Bob Wilson846bd792010-06-07 23:53:38 +00006085 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
6086 if (EltSize <= 32) {
6087 if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
6088 int Lane = SVN->getSplatIndex();
6089 // If this is undef splat, generate it via "just" vdup, if possible.
6090 if (Lane == -1) Lane = 0;
Anton Korobeynikov4d237542009-11-02 00:12:06 +00006091
Dan Gohman198b7ff2011-11-03 21:49:52 +00006092 // Test if V1 is a SCALAR_TO_VECTOR.
Bob Wilson846bd792010-06-07 23:53:38 +00006093 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
6094 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
6095 }
Dan Gohman198b7ff2011-11-03 21:49:52 +00006096 // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
6097 // (and probably will turn into a SCALAR_TO_VECTOR once legalization
6098 // reaches it).
6099 if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
6100 !isa<ConstantSDNode>(V1.getOperand(0))) {
6101 bool IsScalarToVector = true;
6102 for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i)
Sanjay Patel75068522016-03-14 18:09:43 +00006103 if (!V1.getOperand(i).isUndef()) {
Dan Gohman198b7ff2011-11-03 21:49:52 +00006104 IsScalarToVector = false;
6105 break;
6106 }
6107 if (IsScalarToVector)
6108 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
6109 }
Bob Wilson846bd792010-06-07 23:53:38 +00006110 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006111 DAG.getConstant(Lane, dl, MVT::i32));
Bob Wilsoneb54d512009-08-14 05:13:08 +00006112 }
Bob Wilson846bd792010-06-07 23:53:38 +00006113
6114 bool ReverseVEXT;
6115 unsigned Imm;
6116 if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
6117 if (ReverseVEXT)
6118 std::swap(V1, V2);
6119 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006120 DAG.getConstant(Imm, dl, MVT::i32));
Bob Wilson846bd792010-06-07 23:53:38 +00006121 }
6122
6123 if (isVREVMask(ShuffleMask, VT, 64))
6124 return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
6125 if (isVREVMask(ShuffleMask, VT, 32))
6126 return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
6127 if (isVREVMask(ShuffleMask, VT, 16))
6128 return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
6129
Sanjay Patel57195842016-03-14 17:28:46 +00006130 if (V2->isUndef() && isSingletonVEXTMask(ShuffleMask, VT, Imm)) {
Quentin Colombet8e1fe842012-11-02 21:32:17 +00006131 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006132 DAG.getConstant(Imm, dl, MVT::i32));
Quentin Colombet8e1fe842012-11-02 21:32:17 +00006133 }
6134
Bob Wilson846bd792010-06-07 23:53:38 +00006135 // Check for Neon shuffles that modify both input vectors in place.
6136 // If both results are used, i.e., if there are two shuffles with the same
6137 // source operands and with masks corresponding to both results of one of
6138 // these operations, DAG memoization will ensure that a single node is
6139 // used for both shuffles.
6140 unsigned WhichResult;
Ahmed Bougacha2ffa91f2015-06-19 02:25:01 +00006141 bool isV_UNDEF;
6142 if (unsigned ShuffleOpc = isNEONTwoResultShuffleMask(
6143 ShuffleMask, VT, WhichResult, isV_UNDEF)) {
6144 if (isV_UNDEF)
6145 V2 = V1;
6146 return DAG.getNode(ShuffleOpc, dl, DAG.getVTList(VT, VT), V1, V2)
6147 .getValue(WhichResult);
6148 }
Bob Wilson846bd792010-06-07 23:53:38 +00006149
Ahmed Bougacha9a909422015-06-19 02:32:35 +00006150 // Also check for these shuffles through CONCAT_VECTORS: we canonicalize
6151 // shuffles that produce a result larger than their operands with:
6152 // shuffle(concat(v1, undef), concat(v2, undef))
6153 // ->
6154 // shuffle(concat(v1, v2), undef)
6155 // because we can access quad vectors (see PerformVECTOR_SHUFFLECombine).
6156 //
6157 // This is useful in the general case, but there are special cases where
6158 // native shuffles produce larger results: the two-result ops.
6159 //
6160 // Look through the concat when lowering them:
6161 // shuffle(concat(v1, v2), undef)
6162 // ->
6163 // concat(VZIP(v1, v2):0, :1)
6164 //
Sanjay Patel57195842016-03-14 17:28:46 +00006165 if (V1->getOpcode() == ISD::CONCAT_VECTORS && V2->isUndef()) {
Ahmed Bougacha9a909422015-06-19 02:32:35 +00006166 SDValue SubV1 = V1->getOperand(0);
6167 SDValue SubV2 = V1->getOperand(1);
6168 EVT SubVT = SubV1.getValueType();
6169
6170 // We expect these to have been canonicalized to -1.
6171 assert(std::all_of(ShuffleMask.begin(), ShuffleMask.end(), [&](int i) {
6172 return i < (int)VT.getVectorNumElements();
6173 }) && "Unexpected shuffle index into UNDEF operand!");
6174
6175 if (unsigned ShuffleOpc = isNEONTwoResultShuffleMask(
6176 ShuffleMask, SubVT, WhichResult, isV_UNDEF)) {
6177 if (isV_UNDEF)
6178 SubV2 = SubV1;
6179 assert((WhichResult == 0) &&
6180 "In-place shuffle of concat can only have one result!");
6181 SDValue Res = DAG.getNode(ShuffleOpc, dl, DAG.getVTList(SubVT, SubVT),
6182 SubV1, SubV2);
6183 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Res.getValue(0),
6184 Res.getValue(1));
6185 }
6186 }
Bob Wilsoncce31f62009-08-14 05:08:32 +00006187 }
Bob Wilson32cd8552009-08-19 17:03:43 +00006188
Bob Wilsona7062312009-08-21 20:54:19 +00006189 // If the shuffle is not directly supported and it has 4 elements, use
6190 // the PerfectShuffle-generated table to synthesize it from other shuffles.
Bob Wilson91fdf682010-05-22 00:23:12 +00006191 unsigned NumElts = VT.getVectorNumElements();
6192 if (NumElts == 4) {
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006193 unsigned PFIndexes[4];
6194 for (unsigned i = 0; i != 4; ++i) {
6195 if (ShuffleMask[i] < 0)
6196 PFIndexes[i] = 8;
6197 else
6198 PFIndexes[i] = ShuffleMask[i];
6199 }
6200
6201 // Compute the index in the perfect shuffle table.
6202 unsigned PFTableIndex =
6203 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
Anton Korobeynikov9a232f42009-08-21 12:41:24 +00006204 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6205 unsigned Cost = (PFEntry >> 30);
6206
6207 if (Cost <= 4)
6208 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
6209 }
Bob Wilsonea3a4022009-08-12 22:31:50 +00006210
Bob Wilsond8a9a042010-06-04 00:04:02 +00006211 // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs.
Bob Wilson91fdf682010-05-22 00:23:12 +00006212 if (EltSize >= 32) {
6213 // Do the expansion with floating-point types, since that is what the VFP
6214 // registers are defined to use, and since i64 is not legal.
6215 EVT EltVT = EVT::getFloatingPointVT(EltSize);
6216 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
Wesley Peck527da1b2010-11-23 03:31:01 +00006217 V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1);
6218 V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2);
Bob Wilsond8a9a042010-06-04 00:04:02 +00006219 SmallVector<SDValue, 8> Ops;
Bob Wilson91fdf682010-05-22 00:23:12 +00006220 for (unsigned i = 0; i < NumElts; ++i) {
Bob Wilson59549942010-05-20 18:39:53 +00006221 if (ShuffleMask[i] < 0)
Bob Wilsond8a9a042010-06-04 00:04:02 +00006222 Ops.push_back(DAG.getUNDEF(EltVT));
6223 else
6224 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6225 ShuffleMask[i] < (int)NumElts ? V1 : V2,
6226 DAG.getConstant(ShuffleMask[i] & (NumElts-1),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006227 dl, MVT::i32)));
Bob Wilson59549942010-05-20 18:39:53 +00006228 }
Craig Topper48d114b2014-04-26 18:35:24 +00006229 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
Wesley Peck527da1b2010-11-23 03:31:01 +00006230 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
Bob Wilson59549942010-05-20 18:39:53 +00006231 }
6232
Arnold Schwaighofer1f3d3ca2013-02-12 01:58:32 +00006233 if ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(ShuffleMask, VT))
6234 return LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(Op, DAG);
6235
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00006236 if (VT == MVT::v8i8)
6237 if (SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG))
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006238 return NewOp;
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006239
Bob Wilson6f34e272009-08-14 05:16:33 +00006240 return SDValue();
Bob Wilson2e076c42009-06-22 23:27:02 +00006241}
6242
Eli Friedmana5e244c2011-10-24 23:08:52 +00006243static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
6244 // INSERT_VECTOR_ELT is legal only for immediate indexes.
6245 SDValue Lane = Op.getOperand(2);
6246 if (!isa<ConstantSDNode>(Lane))
6247 return SDValue();
6248
6249 return Op;
6250}
6251
Bob Wilson2e076c42009-06-22 23:27:02 +00006252static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Bob Wilsonceb49292010-11-03 16:24:50 +00006253 // EXTRACT_VECTOR_ELT is legal only for immediate indexes.
Bob Wilson2e076c42009-06-22 23:27:02 +00006254 SDValue Lane = Op.getOperand(1);
Bob Wilsonceb49292010-11-03 16:24:50 +00006255 if (!isa<ConstantSDNode>(Lane))
6256 return SDValue();
6257
6258 SDValue Vec = Op.getOperand(0);
6259 if (Op.getValueType() == MVT::i32 &&
6260 Vec.getValueType().getVectorElementType().getSizeInBits() < 32) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006261 SDLoc dl(Op);
Bob Wilsonceb49292010-11-03 16:24:50 +00006262 return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
6263 }
6264
6265 return Op;
Bob Wilson2e076c42009-06-22 23:27:02 +00006266}
6267
Bob Wilsonf307e0b2009-08-03 20:36:38 +00006268static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6269 // The only time a CONCAT_VECTORS operation can have legal types is when
6270 // two 64-bit vectors are concatenated to a 128-bit vector.
6271 assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
6272 "unexpected CONCAT_VECTORS");
Andrew Trickef9de2a2013-05-25 02:42:55 +00006273 SDLoc dl(Op);
Owen Anderson9f944592009-08-11 20:47:22 +00006274 SDValue Val = DAG.getUNDEF(MVT::v2f64);
Bob Wilsonf307e0b2009-08-03 20:36:38 +00006275 SDValue Op0 = Op.getOperand(0);
6276 SDValue Op1 = Op.getOperand(1);
Sanjay Patel75068522016-03-14 18:09:43 +00006277 if (!Op0.isUndef())
Owen Anderson9f944592009-08-11 20:47:22 +00006278 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
Wesley Peck527da1b2010-11-23 03:31:01 +00006279 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006280 DAG.getIntPtrConstant(0, dl));
Sanjay Patel75068522016-03-14 18:09:43 +00006281 if (!Op1.isUndef())
Owen Anderson9f944592009-08-11 20:47:22 +00006282 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
Wesley Peck527da1b2010-11-23 03:31:01 +00006283 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006284 DAG.getIntPtrConstant(1, dl));
Wesley Peck527da1b2010-11-23 03:31:01 +00006285 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val);
Bob Wilson2e076c42009-06-22 23:27:02 +00006286}
6287
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006288/// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each
6289/// element has been zero/sign-extended, depending on the isSigned parameter,
6290/// from an integer type half its size.
6291static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
6292 bool isSigned) {
6293 // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32.
6294 EVT VT = N->getValueType(0);
6295 if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) {
6296 SDNode *BVN = N->getOperand(0).getNode();
6297 if (BVN->getValueType(0) != MVT::v4i32 ||
6298 BVN->getOpcode() != ISD::BUILD_VECTOR)
6299 return false;
Mehdi Aminiffc14022015-07-08 01:00:38 +00006300 unsigned LoElt = DAG.getDataLayout().isBigEndian() ? 1 : 0;
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006301 unsigned HiElt = 1 - LoElt;
6302 ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt));
6303 ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt));
6304 ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2));
6305 ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2));
6306 if (!Lo0 || !Hi0 || !Lo1 || !Hi1)
6307 return false;
6308 if (isSigned) {
6309 if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 &&
6310 Hi1->getSExtValue() == Lo1->getSExtValue() >> 32)
6311 return true;
6312 } else {
6313 if (Hi0->isNullValue() && Hi1->isNullValue())
6314 return true;
6315 }
6316 return false;
6317 }
6318
6319 if (N->getOpcode() != ISD::BUILD_VECTOR)
6320 return false;
6321
6322 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
6323 SDNode *Elt = N->getOperand(i).getNode();
6324 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
6325 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
6326 unsigned HalfSize = EltSize / 2;
6327 if (isSigned) {
Bob Wilson93b0f7b2011-10-18 18:46:49 +00006328 if (!isIntN(HalfSize, C->getSExtValue()))
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006329 return false;
6330 } else {
Bob Wilson93b0f7b2011-10-18 18:46:49 +00006331 if (!isUIntN(HalfSize, C->getZExtValue()))
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006332 return false;
6333 }
6334 continue;
6335 }
6336 return false;
6337 }
6338
6339 return true;
6340}
6341
6342/// isSignExtended - Check if a node is a vector value that is sign-extended
6343/// or a constant BUILD_VECTOR with sign-extended elements.
6344static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
6345 if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N))
6346 return true;
6347 if (isExtendedBUILD_VECTOR(N, DAG, true))
6348 return true;
6349 return false;
6350}
6351
6352/// isZeroExtended - Check if a node is a vector value that is zero-extended
6353/// or a constant BUILD_VECTOR with zero-extended elements.
6354static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
6355 if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N))
6356 return true;
6357 if (isExtendedBUILD_VECTOR(N, DAG, false))
6358 return true;
6359 return false;
6360}
6361
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00006362static EVT getExtensionTo64Bits(const EVT &OrigVT) {
6363 if (OrigVT.getSizeInBits() >= 64)
6364 return OrigVT;
6365
6366 assert(OrigVT.isSimple() && "Expecting a simple value type");
6367
6368 MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
6369 switch (OrigSimpleTy) {
6370 default: llvm_unreachable("Unexpected Vector Type");
6371 case MVT::v2i8:
6372 case MVT::v2i16:
6373 return MVT::v2i32;
6374 case MVT::v4i8:
6375 return MVT::v4i16;
6376 }
6377}
6378
Sebastian Popa204f722012-11-30 19:08:04 +00006379/// AddRequiredExtensionForVMULL - Add a sign/zero extension to extend the total
6380/// value size to 64 bits. We need a 64-bit D register as an operand to VMULL.
6381/// We insert the required extension here to get the vector to fill a D register.
6382static SDValue AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG,
6383 const EVT &OrigTy,
6384 const EVT &ExtTy,
6385 unsigned ExtOpcode) {
6386 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
6387 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
6388 // 64-bits we need to insert a new extension so that it will be 64-bits.
6389 assert(ExtTy.is128BitVector() && "Unexpected extension size");
6390 if (OrigTy.getSizeInBits() >= 64)
6391 return N;
6392
6393 // Must extend size to at least 64 bits to be used as an operand for VMULL.
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00006394 EVT NewVT = getExtensionTo64Bits(OrigTy);
6395
Andrew Trickef9de2a2013-05-25 02:42:55 +00006396 return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N);
Sebastian Popa204f722012-11-30 19:08:04 +00006397}
6398
6399/// SkipLoadExtensionForVMULL - return a load of the original vector size that
6400/// does not do any sign/zero extension. If the original vector is less
6401/// than 64 bits, an appropriate extension will be added after the load to
6402/// reach a total size of 64 bits. We have to add the extension separately
6403/// because ARM does not have a sign/zero extending load for vectors.
6404static SDValue SkipLoadExtensionForVMULL(LoadSDNode *LD, SelectionDAG& DAG) {
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00006405 EVT ExtendedTy = getExtensionTo64Bits(LD->getMemoryVT());
6406
6407 // The load already has the right type.
6408 if (ExtendedTy == LD->getMemoryVT())
Andrew Trickef9de2a2013-05-25 02:42:55 +00006409 return DAG.getLoad(LD->getMemoryVT(), SDLoc(LD), LD->getChain(),
Sebastian Popa204f722012-11-30 19:08:04 +00006410 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(),
6411 LD->isNonTemporal(), LD->isInvariant(),
6412 LD->getAlignment());
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00006413
6414 // We need to create a zextload/sextload. We cannot just create a load
6415 // followed by a zext/zext node because LowerMUL is also run during normal
6416 // operation legalization where we can't create illegal types.
Andrew Trickef9de2a2013-05-25 02:42:55 +00006417 return DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), ExtendedTy,
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00006418 LD->getChain(), LD->getBasePtr(), LD->getPointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +00006419 LD->getMemoryVT(), LD->isVolatile(), LD->isInvariant(),
Arnold Schwaighoferaf85f602013-05-14 22:33:24 +00006420 LD->isNonTemporal(), LD->getAlignment());
Sebastian Popa204f722012-11-30 19:08:04 +00006421}
6422
6423/// SkipExtensionForVMULL - For a node that is a SIGN_EXTEND, ZERO_EXTEND,
6424/// extending load, or BUILD_VECTOR with extended elements, return the
6425/// unextended value. The unextended vector should be 64 bits so that it can
6426/// be used as an operand to a VMULL instruction. If the original vector size
6427/// before extension is less than 64 bits we add a an extension to resize
6428/// the vector to 64 bits.
6429static SDValue SkipExtensionForVMULL(SDNode *N, SelectionDAG &DAG) {
Bob Wilson38ab35a2010-09-01 23:50:19 +00006430 if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
Sebastian Popa204f722012-11-30 19:08:04 +00006431 return AddRequiredExtensionForVMULL(N->getOperand(0), DAG,
6432 N->getOperand(0)->getValueType(0),
6433 N->getValueType(0),
6434 N->getOpcode());
6435
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006436 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
Sebastian Popa204f722012-11-30 19:08:04 +00006437 return SkipLoadExtensionForVMULL(LD, DAG);
6438
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006439 // Otherwise, the value must be a BUILD_VECTOR. For v2i64, it will
6440 // have been legalized as a BITCAST from v4i32.
6441 if (N->getOpcode() == ISD::BITCAST) {
6442 SDNode *BVN = N->getOperand(0).getNode();
6443 assert(BVN->getOpcode() == ISD::BUILD_VECTOR &&
6444 BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR");
Mehdi Aminiffc14022015-07-08 01:00:38 +00006445 unsigned LowElt = DAG.getDataLayout().isBigEndian() ? 1 : 0;
Andrew Trickef9de2a2013-05-25 02:42:55 +00006446 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), MVT::v2i32,
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006447 BVN->getOperand(LowElt), BVN->getOperand(LowElt+2));
6448 }
6449 // Construct a new BUILD_VECTOR with elements truncated to half the size.
6450 assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
6451 EVT VT = N->getValueType(0);
6452 unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2;
6453 unsigned NumElts = VT.getVectorNumElements();
6454 MVT TruncVT = MVT::getIntegerVT(EltSize);
6455 SmallVector<SDValue, 8> Ops;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006456 SDLoc dl(N);
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006457 for (unsigned i = 0; i != NumElts; ++i) {
6458 ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
6459 const APInt &CInt = C->getAPIntValue();
Bob Wilson9245c932012-04-30 16:53:34 +00006460 // Element types smaller than 32 bits are not legal, so use i32 elements.
6461 // The values are implicitly truncated so sext vs. zext doesn't matter.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006462 Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32));
Bob Wilsond7d2cf72010-11-23 19:38:38 +00006463 }
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006464 return DAG.getNode(ISD::BUILD_VECTOR, dl,
Craig Topper48d114b2014-04-26 18:35:24 +00006465 MVT::getVectorVT(TruncVT, NumElts), Ops);
Bob Wilson38ab35a2010-09-01 23:50:19 +00006466}
6467
Evan Chenge2086e72011-03-29 01:56:09 +00006468static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
6469 unsigned Opcode = N->getOpcode();
6470 if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
6471 SDNode *N0 = N->getOperand(0).getNode();
6472 SDNode *N1 = N->getOperand(1).getNode();
6473 return N0->hasOneUse() && N1->hasOneUse() &&
6474 isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
6475 }
6476 return false;
6477}
6478
6479static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
6480 unsigned Opcode = N->getOpcode();
6481 if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
6482 SDNode *N0 = N->getOperand(0).getNode();
6483 SDNode *N1 = N->getOperand(1).getNode();
6484 return N0->hasOneUse() && N1->hasOneUse() &&
6485 isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
6486 }
6487 return false;
6488}
6489
Bob Wilson38ab35a2010-09-01 23:50:19 +00006490static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
6491 // Multiplications are only custom-lowered for 128-bit vectors so that
6492 // VMULL can be detected. Otherwise v2i64 multiplications are not legal.
6493 EVT VT = Op.getValueType();
Sebastian Popa204f722012-11-30 19:08:04 +00006494 assert(VT.is128BitVector() && VT.isInteger() &&
6495 "unexpected type for custom-lowering ISD::MUL");
Bob Wilson38ab35a2010-09-01 23:50:19 +00006496 SDNode *N0 = Op.getOperand(0).getNode();
6497 SDNode *N1 = Op.getOperand(1).getNode();
6498 unsigned NewOpc = 0;
Evan Chenge2086e72011-03-29 01:56:09 +00006499 bool isMLA = false;
6500 bool isN0SExt = isSignExtended(N0, DAG);
6501 bool isN1SExt = isSignExtended(N1, DAG);
6502 if (isN0SExt && isN1SExt)
Bob Wilson38ab35a2010-09-01 23:50:19 +00006503 NewOpc = ARMISD::VMULLs;
Evan Chenge2086e72011-03-29 01:56:09 +00006504 else {
6505 bool isN0ZExt = isZeroExtended(N0, DAG);
6506 bool isN1ZExt = isZeroExtended(N1, DAG);
6507 if (isN0ZExt && isN1ZExt)
6508 NewOpc = ARMISD::VMULLu;
6509 else if (isN1SExt || isN1ZExt) {
6510 // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
6511 // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
6512 if (isN1SExt && isAddSubSExt(N0, DAG)) {
6513 NewOpc = ARMISD::VMULLs;
6514 isMLA = true;
6515 } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
6516 NewOpc = ARMISD::VMULLu;
6517 isMLA = true;
6518 } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
6519 std::swap(N0, N1);
6520 NewOpc = ARMISD::VMULLu;
6521 isMLA = true;
6522 }
6523 }
6524
6525 if (!NewOpc) {
6526 if (VT == MVT::v2i64)
6527 // Fall through to expand this. It is not legal.
6528 return SDValue();
6529 else
6530 // Other vector multiplications are legal.
6531 return Op;
6532 }
6533 }
Bob Wilson38ab35a2010-09-01 23:50:19 +00006534
6535 // Legalize to a VMULL instruction.
Andrew Trickef9de2a2013-05-25 02:42:55 +00006536 SDLoc DL(Op);
Evan Chenge2086e72011-03-29 01:56:09 +00006537 SDValue Op0;
Sebastian Popa204f722012-11-30 19:08:04 +00006538 SDValue Op1 = SkipExtensionForVMULL(N1, DAG);
Evan Chenge2086e72011-03-29 01:56:09 +00006539 if (!isMLA) {
Sebastian Popa204f722012-11-30 19:08:04 +00006540 Op0 = SkipExtensionForVMULL(N0, DAG);
Evan Chenge2086e72011-03-29 01:56:09 +00006541 assert(Op0.getValueType().is64BitVector() &&
6542 Op1.getValueType().is64BitVector() &&
6543 "unexpected types for extended operands to VMULL");
6544 return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
6545 }
Bob Wilson38ab35a2010-09-01 23:50:19 +00006546
Evan Chenge2086e72011-03-29 01:56:09 +00006547 // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during
6548 // isel lowering to take advantage of no-stall back to back vmul + vmla.
6549 // vmull q0, d4, d6
6550 // vmlal q0, d5, d6
6551 // is faster than
6552 // vaddl q0, d4, d5
6553 // vmovl q1, d6
6554 // vmul q0, q0, q1
Sebastian Popa204f722012-11-30 19:08:04 +00006555 SDValue N00 = SkipExtensionForVMULL(N0->getOperand(0).getNode(), DAG);
6556 SDValue N01 = SkipExtensionForVMULL(N0->getOperand(1).getNode(), DAG);
Evan Chenge2086e72011-03-29 01:56:09 +00006557 EVT Op1VT = Op1.getValueType();
6558 return DAG.getNode(N0->getOpcode(), DL, VT,
6559 DAG.getNode(NewOpc, DL, VT,
6560 DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
6561 DAG.getNode(NewOpc, DL, VT,
6562 DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
Bob Wilson38ab35a2010-09-01 23:50:19 +00006563}
6564
Owen Anderson77aa2662011-04-05 21:48:57 +00006565static SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00006566LowerSDIV_v4i8(SDValue X, SDValue Y, SDLoc dl, SelectionDAG &DAG) {
Sanjay Patela2607012015-09-16 16:31:21 +00006567 // TODO: Should this propagate fast-math-flags?
6568
Nate Begemanfa62d502011-02-11 20:53:29 +00006569 // Convert to float
6570 // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo));
6571 // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo));
6572 X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X);
6573 Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y);
6574 X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X);
6575 Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y);
6576 // Get reciprocal estimate.
6577 // float4 recip = vrecpeq_f32(yf);
Owen Anderson77aa2662011-04-05 21:48:57 +00006578 Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006579 DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6580 Y);
Nate Begemanfa62d502011-02-11 20:53:29 +00006581 // Because char has a smaller range than uchar, we can actually get away
6582 // without any newton steps. This requires that we use a weird bias
6583 // of 0xb000, however (again, this has been exhaustively tested).
6584 // float4 result = as_float4(as_int4(xf*recip) + 0xb000);
6585 X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y);
6586 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X);
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00006587 Y = DAG.getConstant(0xb000, dl, MVT::v4i32);
Nate Begemanfa62d502011-02-11 20:53:29 +00006588 X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y);
6589 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X);
6590 // Convert back to short.
6591 X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X);
6592 X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X);
6593 return X;
6594}
6595
Owen Anderson77aa2662011-04-05 21:48:57 +00006596static SDValue
Andrew Trickef9de2a2013-05-25 02:42:55 +00006597LowerSDIV_v4i16(SDValue N0, SDValue N1, SDLoc dl, SelectionDAG &DAG) {
Sanjay Patela2607012015-09-16 16:31:21 +00006598 // TODO: Should this propagate fast-math-flags?
6599
Nate Begemanfa62d502011-02-11 20:53:29 +00006600 SDValue N2;
6601 // Convert to float.
6602 // float4 yf = vcvt_f32_s32(vmovl_s16(y));
6603 // float4 xf = vcvt_f32_s32(vmovl_s16(x));
6604 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0);
6605 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1);
6606 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
6607 N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
Owen Anderson77aa2662011-04-05 21:48:57 +00006608
Nate Begemanfa62d502011-02-11 20:53:29 +00006609 // Use reciprocal estimate and one refinement step.
6610 // float4 recip = vrecpeq_f32(yf);
6611 // recip *= vrecpsq_f32(yf, recip);
Owen Anderson77aa2662011-04-05 21:48:57 +00006612 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006613 DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6614 N1);
Owen Anderson77aa2662011-04-05 21:48:57 +00006615 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006616 DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
Nate Begemanfa62d502011-02-11 20:53:29 +00006617 N1, N2);
6618 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6619 // Because short has a smaller range than ushort, we can actually get away
6620 // with only a single newton step. This requires that we use a weird bias
6621 // of 89, however (again, this has been exhaustively tested).
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006622 // float4 result = as_float4(as_int4(xf*recip) + 0x89);
Nate Begemanfa62d502011-02-11 20:53:29 +00006623 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
6624 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00006625 N1 = DAG.getConstant(0x89, dl, MVT::v4i32);
Nate Begemanfa62d502011-02-11 20:53:29 +00006626 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
6627 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
6628 // Convert back to integer and return.
6629 // return vmovn_s32(vcvt_s32_f32(result));
6630 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
6631 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
6632 return N0;
6633}
6634
6635static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
6636 EVT VT = Op.getValueType();
6637 assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
6638 "unexpected type for custom-lowering ISD::SDIV");
6639
Andrew Trickef9de2a2013-05-25 02:42:55 +00006640 SDLoc dl(Op);
Nate Begemanfa62d502011-02-11 20:53:29 +00006641 SDValue N0 = Op.getOperand(0);
6642 SDValue N1 = Op.getOperand(1);
6643 SDValue N2, N3;
Owen Anderson77aa2662011-04-05 21:48:57 +00006644
Nate Begemanfa62d502011-02-11 20:53:29 +00006645 if (VT == MVT::v8i8) {
6646 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0);
6647 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1);
Owen Anderson77aa2662011-04-05 21:48:57 +00006648
Nate Begemanfa62d502011-02-11 20:53:29 +00006649 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006650 DAG.getIntPtrConstant(4, dl));
Nate Begemanfa62d502011-02-11 20:53:29 +00006651 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006652 DAG.getIntPtrConstant(4, dl));
Nate Begemanfa62d502011-02-11 20:53:29 +00006653 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006654 DAG.getIntPtrConstant(0, dl));
Nate Begemanfa62d502011-02-11 20:53:29 +00006655 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006656 DAG.getIntPtrConstant(0, dl));
Nate Begemanfa62d502011-02-11 20:53:29 +00006657
6658 N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16
6659 N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16
6660
6661 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
6662 N0 = LowerCONCAT_VECTORS(N0, DAG);
Owen Anderson77aa2662011-04-05 21:48:57 +00006663
Nate Begemanfa62d502011-02-11 20:53:29 +00006664 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0);
6665 return N0;
6666 }
6667 return LowerSDIV_v4i16(N0, N1, dl, DAG);
6668}
6669
6670static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) {
Sanjay Patela2607012015-09-16 16:31:21 +00006671 // TODO: Should this propagate fast-math-flags?
Nate Begemanfa62d502011-02-11 20:53:29 +00006672 EVT VT = Op.getValueType();
6673 assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
6674 "unexpected type for custom-lowering ISD::UDIV");
6675
Andrew Trickef9de2a2013-05-25 02:42:55 +00006676 SDLoc dl(Op);
Nate Begemanfa62d502011-02-11 20:53:29 +00006677 SDValue N0 = Op.getOperand(0);
6678 SDValue N1 = Op.getOperand(1);
6679 SDValue N2, N3;
Owen Anderson77aa2662011-04-05 21:48:57 +00006680
Nate Begemanfa62d502011-02-11 20:53:29 +00006681 if (VT == MVT::v8i8) {
6682 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0);
6683 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1);
Owen Anderson77aa2662011-04-05 21:48:57 +00006684
Nate Begemanfa62d502011-02-11 20:53:29 +00006685 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006686 DAG.getIntPtrConstant(4, dl));
Nate Begemanfa62d502011-02-11 20:53:29 +00006687 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006688 DAG.getIntPtrConstant(4, dl));
Nate Begemanfa62d502011-02-11 20:53:29 +00006689 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006690 DAG.getIntPtrConstant(0, dl));
Nate Begemanfa62d502011-02-11 20:53:29 +00006691 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006692 DAG.getIntPtrConstant(0, dl));
Owen Anderson77aa2662011-04-05 21:48:57 +00006693
Nate Begemanfa62d502011-02-11 20:53:29 +00006694 N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16
6695 N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16
Owen Anderson77aa2662011-04-05 21:48:57 +00006696
Nate Begemanfa62d502011-02-11 20:53:29 +00006697 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
6698 N0 = LowerCONCAT_VECTORS(N0, DAG);
Owen Anderson77aa2662011-04-05 21:48:57 +00006699
6700 N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006701 DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, dl,
6702 MVT::i32),
Nate Begemanfa62d502011-02-11 20:53:29 +00006703 N0);
6704 return N0;
6705 }
Owen Anderson77aa2662011-04-05 21:48:57 +00006706
Nate Begemanfa62d502011-02-11 20:53:29 +00006707 // v4i16 sdiv ... Convert to float.
6708 // float4 yf = vcvt_f32_s32(vmovl_u16(y));
6709 // float4 xf = vcvt_f32_s32(vmovl_u16(x));
6710 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0);
6711 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1);
6712 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006713 SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
Nate Begemanfa62d502011-02-11 20:53:29 +00006714
6715 // Use reciprocal estimate and two refinement steps.
6716 // float4 recip = vrecpeq_f32(yf);
6717 // recip *= vrecpsq_f32(yf, recip);
6718 // recip *= vrecpsq_f32(yf, recip);
Owen Anderson77aa2662011-04-05 21:48:57 +00006719 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006720 DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6721 BN1);
Owen Anderson77aa2662011-04-05 21:48:57 +00006722 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006723 DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006724 BN1, N2);
Nate Begemanfa62d502011-02-11 20:53:29 +00006725 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
Owen Anderson77aa2662011-04-05 21:48:57 +00006726 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006727 DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006728 BN1, N2);
Nate Begemanfa62d502011-02-11 20:53:29 +00006729 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6730 // Simply multiplying by the reciprocal estimate can leave us a few ulps
6731 // too low, so we add 2 ulps (exhaustive testing shows that this is enough,
6732 // and that it will never cause us to return an answer too large).
Mon P Wang6d9e1c72011-05-19 04:15:07 +00006733 // float4 result = as_float4(as_int4(xf*recip) + 2);
Nate Begemanfa62d502011-02-11 20:53:29 +00006734 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
6735 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
Ahmed Bougacha93cff7f2016-02-15 18:07:29 +00006736 N1 = DAG.getConstant(2, dl, MVT::v4i32);
Nate Begemanfa62d502011-02-11 20:53:29 +00006737 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
6738 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
6739 // Convert back to integer and return.
6740 // return vmovn_u32(vcvt_s32_f32(result));
6741 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
6742 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
6743 return N0;
6744}
6745
Evan Chenge8916542011-08-30 01:34:54 +00006746static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
6747 EVT VT = Op.getNode()->getValueType(0);
6748 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
6749
6750 unsigned Opc;
6751 bool ExtraOp = false;
6752 switch (Op.getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00006753 default: llvm_unreachable("Invalid code");
Evan Chenge8916542011-08-30 01:34:54 +00006754 case ISD::ADDC: Opc = ARMISD::ADDC; break;
6755 case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break;
6756 case ISD::SUBC: Opc = ARMISD::SUBC; break;
6757 case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break;
6758 }
6759
6760 if (!ExtraOp)
Andrew Trickef9de2a2013-05-25 02:42:55 +00006761 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Evan Chenge8916542011-08-30 01:34:54 +00006762 Op.getOperand(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00006763 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Evan Chenge8916542011-08-30 01:34:54 +00006764 Op.getOperand(1), Op.getOperand(2));
6765}
6766
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006767SDValue ARMTargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const {
6768 assert(Subtarget->isTargetDarwin());
6769
6770 // For iOS, we want to call an alternative entry point: __sincos_stret,
6771 // return values are passed via sret.
6772 SDLoc dl(Op);
6773 SDValue Arg = Op.getOperand(0);
6774 EVT ArgVT = Arg.getValueType();
6775 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Mehdi Amini44ede332015-07-09 02:09:04 +00006776 auto PtrVT = getPointerTy(DAG.getDataLayout());
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006777
6778 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
Tim Northover8b403662015-10-28 22:51:16 +00006779 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006780
6781 // Pair of floats / doubles used to pass the result.
Tim Northover8b403662015-10-28 22:51:16 +00006782 Type *RetTy = StructType::get(ArgTy, ArgTy, nullptr);
Mehdi Amini44ede332015-07-09 02:09:04 +00006783 auto &DL = DAG.getDataLayout();
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006784
6785 ArgListTy Args;
Tim Northover8b403662015-10-28 22:51:16 +00006786 bool ShouldUseSRet = Subtarget->isAPCS_ABI();
6787 SDValue SRet;
6788 if (ShouldUseSRet) {
6789 // Create stack object for sret.
6790 const uint64_t ByteSize = DL.getTypeAllocSize(RetTy);
6791 const unsigned StackAlign = DL.getPrefTypeAlignment(RetTy);
6792 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
6793 SRet = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy(DL));
6794
6795 ArgListEntry Entry;
6796 Entry.Node = SRet;
6797 Entry.Ty = RetTy->getPointerTo();
6798 Entry.isSExt = false;
6799 Entry.isZExt = false;
6800 Entry.isSRet = true;
6801 Args.push_back(Entry);
6802 RetTy = Type::getVoidTy(*DAG.getContext());
6803 }
6804
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006805 ArgListEntry Entry;
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006806 Entry.Node = Arg;
6807 Entry.Ty = ArgTy;
6808 Entry.isSExt = false;
6809 Entry.isZExt = false;
6810 Args.push_back(Entry);
6811
Saleem Abdulrasool4966f582015-09-20 03:19:09 +00006812 const char *LibcallName =
6813 (ArgVT == MVT::f64) ? "__sincos_stret" : "__sincosf_stret";
Tim Northover8b403662015-10-28 22:51:16 +00006814 RTLIB::Libcall LC =
6815 (ArgVT == MVT::f64) ? RTLIB::SINCOS_F64 : RTLIB::SINCOS_F32;
6816 CallingConv::ID CC = getLibcallCallingConv(LC);
Mehdi Amini44ede332015-07-09 02:09:04 +00006817 SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy(DL));
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006818
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +00006819 TargetLowering::CallLoweringInfo CLI(DAG);
Tim Northover8b403662015-10-28 22:51:16 +00006820 CLI.setDebugLoc(dl)
6821 .setChain(DAG.getEntryNode())
6822 .setCallee(CC, RetTy, Callee, std::move(Args), 0)
6823 .setDiscardResult(ShouldUseSRet);
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006824 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
6825
Tim Northover8b403662015-10-28 22:51:16 +00006826 if (!ShouldUseSRet)
6827 return CallResult.first;
6828
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006829 SDValue LoadSin = DAG.getLoad(ArgVT, dl, CallResult.second, SRet,
6830 MachinePointerInfo(), false, false, false, 0);
6831
6832 // Address of cos field.
Mehdi Amini44ede332015-07-09 02:09:04 +00006833 SDValue Add = DAG.getNode(ISD::ADD, dl, PtrVT, SRet,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00006834 DAG.getIntPtrConstant(ArgVT.getStoreSize(), dl));
Bob Wilsone7dde0c2013-11-03 06:14:38 +00006835 SDValue LoadCos = DAG.getLoad(ArgVT, dl, LoadSin.getValue(1), Add,
6836 MachinePointerInfo(), false, false, false, 0);
6837
6838 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
6839 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys,
6840 LoadSin.getValue(0), LoadCos.getValue(0));
6841}
6842
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00006843SDValue ARMTargetLowering::LowerWindowsDIVLibCall(SDValue Op, SelectionDAG &DAG,
Martell Maloned1229242015-11-26 15:34:03 +00006844 bool Signed,
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00006845 SDValue &Chain) const {
6846 EVT VT = Op.getValueType();
6847 assert((VT == MVT::i32 || VT == MVT::i64) &&
6848 "unexpected type for custom lowering DIV");
6849 SDLoc dl(Op);
6850
6851 const auto &DL = DAG.getDataLayout();
6852 const auto &TLI = DAG.getTargetLoweringInfo();
6853
6854 const char *Name = nullptr;
Martell Maloned1229242015-11-26 15:34:03 +00006855 if (Signed)
6856 Name = (VT == MVT::i32) ? "__rt_sdiv" : "__rt_sdiv64";
6857 else
6858 Name = (VT == MVT::i32) ? "__rt_udiv" : "__rt_udiv64";
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00006859
6860 SDValue ES = DAG.getExternalSymbol(Name, TLI.getPointerTy(DL));
6861
6862 ARMTargetLowering::ArgListTy Args;
6863
6864 for (auto AI : {1, 0}) {
6865 ArgListEntry Arg;
6866 Arg.Node = Op.getOperand(AI);
6867 Arg.Ty = Arg.Node.getValueType().getTypeForEVT(*DAG.getContext());
6868 Args.push_back(Arg);
6869 }
6870
6871 CallLoweringInfo CLI(DAG);
6872 CLI.setDebugLoc(dl)
6873 .setChain(Chain)
6874 .setCallee(CallingConv::ARM_AAPCS_VFP, VT.getTypeForEVT(*DAG.getContext()),
6875 ES, std::move(Args), 0);
6876
6877 return LowerCallTo(CLI).first;
6878}
6879
Martell Maloned1229242015-11-26 15:34:03 +00006880SDValue ARMTargetLowering::LowerDIV_Windows(SDValue Op, SelectionDAG &DAG,
6881 bool Signed) const {
Saleem Abdulrasool8e99f502015-09-25 05:41:02 +00006882 assert(Op.getValueType() == MVT::i32 &&
6883 "unexpected type for custom lowering DIV");
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00006884 SDLoc dl(Op);
6885
6886 SDValue DBZCHK = DAG.getNode(ARMISD::WIN__DBZCHK, dl, MVT::Other,
6887 DAG.getEntryNode(), Op.getOperand(1));
6888
Martell Maloned1229242015-11-26 15:34:03 +00006889 return LowerWindowsDIVLibCall(Op, DAG, Signed, DBZCHK);
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00006890}
6891
6892void ARMTargetLowering::ExpandDIV_Windows(
Martell Maloned1229242015-11-26 15:34:03 +00006893 SDValue Op, SelectionDAG &DAG, bool Signed,
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00006894 SmallVectorImpl<SDValue> &Results) const {
6895 const auto &DL = DAG.getDataLayout();
6896 const auto &TLI = DAG.getTargetLoweringInfo();
6897
Saleem Abdulrasool8e99f502015-09-25 05:41:02 +00006898 assert(Op.getValueType() == MVT::i64 &&
6899 "unexpected type for custom lowering DIV");
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00006900 SDLoc dl(Op);
6901
6902 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op.getOperand(1),
6903 DAG.getConstant(0, dl, MVT::i32));
6904 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op.getOperand(1),
6905 DAG.getConstant(1, dl, MVT::i32));
6906 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i32, Lo, Hi);
6907
6908 SDValue DBZCHK =
6909 DAG.getNode(ARMISD::WIN__DBZCHK, dl, MVT::Other, DAG.getEntryNode(), Or);
6910
Martell Maloned1229242015-11-26 15:34:03 +00006911 SDValue Result = LowerWindowsDIVLibCall(Op, DAG, Signed, DBZCHK);
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00006912
6913 SDValue Lower = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Result);
6914 SDValue Upper = DAG.getNode(ISD::SRL, dl, MVT::i64, Result,
6915 DAG.getConstant(32, dl, TLI.getPointerTy(DL)));
6916 Upper = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Upper);
6917
6918 Results.push_back(Lower);
6919 Results.push_back(Upper);
6920}
6921
Eli Friedman10f9ce22011-09-15 22:26:18 +00006922static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) {
Eli Friedmanba912e02011-09-15 22:18:49 +00006923 // Monotonic load/store is legal for all targets
6924 if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic)
6925 return Op;
6926
Alp Tokercb402912014-01-24 17:20:08 +00006927 // Acquire/Release load/store is not legal for targets without a
Eli Friedmanba912e02011-09-15 22:18:49 +00006928 // dmb or equivalent available.
6929 return SDValue();
6930}
6931
Tim Northoverbc933082013-05-23 19:11:20 +00006932static void ReplaceREADCYCLECOUNTER(SDNode *N,
6933 SmallVectorImpl<SDValue> &Results,
6934 SelectionDAG &DAG,
6935 const ARMSubtarget *Subtarget) {
Andrew Trickef9de2a2013-05-25 02:42:55 +00006936 SDLoc DL(N);
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +00006937 // Under Power Management extensions, the cycle-count is:
6938 // mrc p15, #0, <Rt>, c9, c13, #0
6939 SDValue Ops[] = { N->getOperand(0), // Chain
6940 DAG.getConstant(Intrinsic::arm_mrc, DL, MVT::i32),
6941 DAG.getConstant(15, DL, MVT::i32),
6942 DAG.getConstant(0, DL, MVT::i32),
6943 DAG.getConstant(9, DL, MVT::i32),
6944 DAG.getConstant(13, DL, MVT::i32),
6945 DAG.getConstant(0, DL, MVT::i32)
6946 };
Tim Northoverbc933082013-05-23 19:11:20 +00006947
Ahmed Bougachaf9c19da2015-08-28 01:49:59 +00006948 SDValue Cycles32 = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DL,
6949 DAG.getVTList(MVT::i32, MVT::Other), Ops);
6950 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Cycles32,
6951 DAG.getConstant(0, DL, MVT::i32)));
6952 Results.push_back(Cycles32.getValue(1));
Tim Northoverbc933082013-05-23 19:11:20 +00006953}
6954
Dan Gohman21cea8a2010-04-17 15:26:15 +00006955SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng10043e22007-01-19 07:51:42 +00006956 switch (Op.getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00006957 default: llvm_unreachable("Don't know how to custom lower this!");
Luke Cheeseman85fd06d2015-06-01 12:02:47 +00006958 case ISD::WRITE_REGISTER: return LowerWRITE_REGISTER(Op, DAG);
Evan Cheng10043e22007-01-19 07:51:42 +00006959 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bob Wilson1cf0b032009-10-30 05:45:42 +00006960 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Lauro Ramos Venancioee2d1642007-04-22 00:04:12 +00006961 case ISD::GlobalAddress:
Saleem Abdulrasool40bca0a2014-05-09 00:58:32 +00006962 switch (Subtarget->getTargetTriple().getObjectFormat()) {
6963 default: llvm_unreachable("unknown object format");
6964 case Triple::COFF:
6965 return LowerGlobalAddressWindows(Op, DAG);
6966 case Triple::ELF:
6967 return LowerGlobalAddressELF(Op, DAG);
6968 case Triple::MachO:
6969 return LowerGlobalAddressDarwin(Op, DAG);
6970 }
Bill Wendlinge1fd78f2011-03-14 23:02:38 +00006971 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling6a981312010-08-11 08:43:16 +00006972 case ISD::SELECT: return LowerSELECT(Op, DAG);
Evan Cheng15b80e42009-11-12 07:13:11 +00006973 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
6974 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
Evan Cheng10043e22007-01-19 07:51:42 +00006975 case ISD::BR_JT: return LowerBR_JT(Op, DAG);
Dan Gohman31ae5862010-04-17 14:41:14 +00006976 case ISD::VASTART: return LowerVASTART(Op, DAG);
Eli Friedman26a48482011-07-27 22:21:52 +00006977 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG, Subtarget);
Evan Cheng8740ee32010-11-03 06:34:55 +00006978 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG, Subtarget);
Bob Wilsone4191e72010-03-19 22:51:32 +00006979 case ISD::SINT_TO_FP:
6980 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
6981 case ISD::FP_TO_SINT:
6982 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG);
Evan Cheng10043e22007-01-19 07:51:42 +00006983 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng168ced92010-05-22 01:47:14 +00006984 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
Jim Grosbachaeca45d2009-05-12 23:59:14 +00006985 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Jim Grosbachc98892f2010-05-26 20:22:18 +00006986 case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG);
Jim Grosbachbd9485d2010-05-22 01:06:18 +00006987 case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG);
Matthias Braun3cd00c12015-07-16 22:34:16 +00006988 case ISD::EH_SJLJ_SETUP_DISPATCH: return LowerEH_SJLJ_SETUP_DISPATCH(Op, DAG);
Jim Grosbacha570d052010-02-08 23:22:00 +00006989 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG,
6990 Subtarget);
Evan Cheng383ecd82011-03-14 18:02:30 +00006991 case ISD::BITCAST: return ExpandBITCAST(Op.getNode(), DAG);
Bob Wilson2e076c42009-06-22 23:27:02 +00006992 case ISD::SHL:
Chris Lattnerf81d5882007-11-24 07:07:01 +00006993 case ISD::SRL:
Bob Wilson2e076c42009-06-22 23:27:02 +00006994 case ISD::SRA: return LowerShift(Op.getNode(), DAG, Subtarget);
Scott Douglassbdef6042015-08-24 09:17:18 +00006995 case ISD::SREM: return LowerREM(Op.getNode(), DAG);
6996 case ISD::UREM: return LowerREM(Op.getNode(), DAG);
Evan Cheng15b80e42009-11-12 07:13:11 +00006997 case ISD::SHL_PARTS: return LowerShiftLeftParts(Op, DAG);
Jim Grosbach8fe6fd72009-10-31 21:42:19 +00006998 case ISD::SRL_PARTS:
Evan Cheng15b80e42009-11-12 07:13:11 +00006999 case ISD::SRA_PARTS: return LowerShiftRightParts(Op, DAG);
Logan Chien0a43abc2015-07-13 15:37:30 +00007000 case ISD::CTTZ:
7001 case ISD::CTTZ_ZERO_UNDEF: return LowerCTTZ(Op.getNode(), DAG, Subtarget);
Evan Chengb4eae132012-12-04 22:41:50 +00007002 case ISD::CTPOP: return LowerCTPOP(Op.getNode(), DAG, Subtarget);
Duncan Sandsf2641e12011-09-06 19:07:46 +00007003 case ISD::SETCC: return LowerVSETCC(Op, DAG);
Lang Hamesc35ee8b2012-03-15 18:49:02 +00007004 case ISD::ConstantFP: return LowerConstantFP(Op, DAG, Subtarget);
Dale Johannesen2bff5052010-07-29 20:10:08 +00007005 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG, Subtarget);
Bob Wilson2e076c42009-06-22 23:27:02 +00007006 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
Eli Friedmana5e244c2011-10-24 23:08:52 +00007007 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Bob Wilson2e076c42009-06-22 23:27:02 +00007008 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
Bob Wilsonf307e0b2009-08-03 20:36:38 +00007009 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Bob Wilson9a511c02010-08-20 04:54:02 +00007010 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Bob Wilson38ab35a2010-09-01 23:50:19 +00007011 case ISD::MUL: return LowerMUL(Op, DAG);
Martell Malonea6b867e2015-11-23 13:11:39 +00007012 case ISD::SDIV: return LowerSDIV(Op, DAG);
Martell Maloned1229242015-11-26 15:34:03 +00007013 case ISD::UDIV: return LowerUDIV(Op, DAG);
Evan Chenge8916542011-08-30 01:34:54 +00007014 case ISD::ADDC:
7015 case ISD::ADDE:
7016 case ISD::SUBC:
7017 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Louis Gerbarg3342bf12014-05-09 17:02:49 +00007018 case ISD::SADDO:
7019 case ISD::UADDO:
7020 case ISD::SSUBO:
7021 case ISD::USUBO:
7022 return LowerXALUO(Op, DAG);
Eli Friedmanba912e02011-09-15 22:18:49 +00007023 case ISD::ATOMIC_LOAD:
Eli Friedman10f9ce22011-09-15 22:26:18 +00007024 case ISD::ATOMIC_STORE: return LowerAtomicLoadStore(Op, DAG);
Bob Wilsone7dde0c2013-11-03 06:14:38 +00007025 case ISD::FSINCOS: return LowerFSINCOS(Op, DAG);
Renato Golin87610692013-07-16 09:32:17 +00007026 case ISD::SDIVREM:
7027 case ISD::UDIVREM: return LowerDivRem(Op, DAG);
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00007028 case ISD::DYNAMIC_STACKALLOC:
7029 if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
7030 return LowerDYNAMIC_STACKALLOC(Op, DAG);
7031 llvm_unreachable("Don't know how to custom lower this!");
Oliver Stannard51b1d462014-08-21 12:50:31 +00007032 case ISD::FP_ROUND: return LowerFP_ROUND(Op, DAG);
7033 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00007034 case ARMISD::WIN__DBZCHK: return SDValue();
Evan Cheng10043e22007-01-19 07:51:42 +00007035 }
Evan Cheng10043e22007-01-19 07:51:42 +00007036}
7037
Duncan Sands6ed40142008-12-01 11:39:25 +00007038/// ReplaceNodeResults - Replace the results of node with an illegal result
7039/// type with new values built out of custom code.
Duncan Sands6ed40142008-12-01 11:39:25 +00007040void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00007041 SmallVectorImpl<SDValue> &Results,
Dan Gohman21cea8a2010-04-17 15:26:15 +00007042 SelectionDAG &DAG) const {
Bob Wilsonc05b8872010-04-14 20:45:23 +00007043 SDValue Res;
Chris Lattnerf81d5882007-11-24 07:07:01 +00007044 switch (N->getOpcode()) {
Duncan Sands6ed40142008-12-01 11:39:25 +00007045 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +00007046 llvm_unreachable("Don't know how to custom expand this!");
Luke Cheeseman85fd06d2015-06-01 12:02:47 +00007047 case ISD::READ_REGISTER:
7048 ExpandREAD_REGISTER(N, Results, DAG);
7049 break;
Wesley Peck527da1b2010-11-23 03:31:01 +00007050 case ISD::BITCAST:
7051 Res = ExpandBITCAST(N, DAG);
Bob Wilsonc05b8872010-04-14 20:45:23 +00007052 break;
Chris Lattnerf81d5882007-11-24 07:07:01 +00007053 case ISD::SRL:
Bob Wilsonc05b8872010-04-14 20:45:23 +00007054 case ISD::SRA:
Bob Wilson7d471332010-11-18 21:16:28 +00007055 Res = Expand64BitShift(N, DAG, Subtarget);
Bob Wilsonc05b8872010-04-14 20:45:23 +00007056 break;
Scott Douglassbdef6042015-08-24 09:17:18 +00007057 case ISD::SREM:
7058 case ISD::UREM:
7059 Res = LowerREM(N, DAG);
7060 break;
Renato Golin175c6d62016-03-04 19:19:36 +00007061 case ISD::SDIVREM:
7062 case ISD::UDIVREM:
7063 Res = LowerDivRem(SDValue(N, 0), DAG);
7064 assert(Res.getNumOperands() == 2 && "DivRem needs two values");
7065 Results.push_back(Res.getValue(0));
7066 Results.push_back(Res.getValue(1));
7067 return;
Tim Northoverbc933082013-05-23 19:11:20 +00007068 case ISD::READCYCLECOUNTER:
7069 ReplaceREADCYCLECOUNTER(N, Results, DAG, Subtarget);
7070 return;
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00007071 case ISD::UDIV:
Martell Maloned1229242015-11-26 15:34:03 +00007072 case ISD::SDIV:
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00007073 assert(Subtarget->isTargetWindows() && "can only expand DIV on Windows");
Martell Maloned1229242015-11-26 15:34:03 +00007074 return ExpandDIV_Windows(SDValue(N, 0), DAG, N->getOpcode() == ISD::SDIV,
7075 Results);
Duncan Sands6ed40142008-12-01 11:39:25 +00007076 }
Bob Wilsonc05b8872010-04-14 20:45:23 +00007077 if (Res.getNode())
7078 Results.push_back(Res);
Chris Lattnerf81d5882007-11-24 07:07:01 +00007079}
Chris Lattnerf81d5882007-11-24 07:07:01 +00007080
Evan Cheng10043e22007-01-19 07:51:42 +00007081//===----------------------------------------------------------------------===//
7082// ARM Scheduler Hooks
7083//===----------------------------------------------------------------------===//
7084
Bill Wendling030b58e2011-10-06 22:18:16 +00007085/// SetupEntryBlockForSjLj - Insert code into the entry block that creates and
7086/// registers the function context.
7087void ARMTargetLowering::
7088SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB,
7089 MachineBasicBlock *DispatchBB, int FI) const {
Eric Christopher1889fdc2015-01-29 00:19:39 +00007090 const TargetInstrInfo *TII = Subtarget->getInstrInfo();
Bill Wendling374ee192011-10-03 21:25:38 +00007091 DebugLoc dl = MI->getDebugLoc();
7092 MachineFunction *MF = MBB->getParent();
7093 MachineRegisterInfo *MRI = &MF->getRegInfo();
7094 MachineConstantPool *MCP = MF->getConstantPool();
7095 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
7096 const Function *F = MF->getFunction();
Bill Wendling374ee192011-10-03 21:25:38 +00007097
Bill Wendling374ee192011-10-03 21:25:38 +00007098 bool isThumb = Subtarget->isThumb();
Bill Wendling1eab54f2011-10-03 22:44:15 +00007099 bool isThumb2 = Subtarget->isThumb2();
Bill Wendling030b58e2011-10-06 22:18:16 +00007100
Bill Wendling374ee192011-10-03 21:25:38 +00007101 unsigned PCLabelId = AFI->createPICLabelUId();
Bill Wendling1eab54f2011-10-03 22:44:15 +00007102 unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8;
Bill Wendling374ee192011-10-03 21:25:38 +00007103 ARMConstantPoolValue *CPV =
7104 ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj);
7105 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
7106
Craig Topper61e88f42014-11-21 05:58:21 +00007107 const TargetRegisterClass *TRC = isThumb ? &ARM::tGPRRegClass
7108 : &ARM::GPRRegClass;
Bill Wendling374ee192011-10-03 21:25:38 +00007109
Bill Wendling030b58e2011-10-06 22:18:16 +00007110 // Grab constant pool and fixed stack memory operands.
7111 MachineMemOperand *CPMMO =
Alex Lorenze40c8a22015-08-11 23:09:45 +00007112 MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(*MF),
7113 MachineMemOperand::MOLoad, 4, 4);
Bill Wendling030b58e2011-10-06 22:18:16 +00007114
7115 MachineMemOperand *FIMMOSt =
Alex Lorenze40c8a22015-08-11 23:09:45 +00007116 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(*MF, FI),
7117 MachineMemOperand::MOStore, 4, 4);
Bill Wendling030b58e2011-10-06 22:18:16 +00007118
7119 // Load the address of the dispatch MBB into the jump buffer.
7120 if (isThumb2) {
7121 // Incoming value: jbuf
7122 // ldr.n r5, LCPI1_1
7123 // orr r5, r5, #1
7124 // add r5, pc
7125 // str r5, [$jbuf, #+4] ; &jbuf[1]
7126 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7127 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1)
7128 .addConstantPoolIndex(CPI)
7129 .addMemOperand(CPMMO));
7130 // Set the low bit because of thumb mode.
7131 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
7132 AddDefaultCC(
7133 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2)
7134 .addReg(NewVReg1, RegState::Kill)
7135 .addImm(0x01)));
7136 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
7137 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3)
7138 .addReg(NewVReg2, RegState::Kill)
7139 .addImm(PCLabelId);
7140 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12))
7141 .addReg(NewVReg3, RegState::Kill)
7142 .addFrameIndex(FI)
7143 .addImm(36) // &jbuf[1] :: pc
7144 .addMemOperand(FIMMOSt));
7145 } else if (isThumb) {
7146 // Incoming value: jbuf
7147 // ldr.n r1, LCPI1_4
7148 // add r1, pc
7149 // mov r2, #1
7150 // orrs r1, r2
7151 // add r2, $jbuf, #+4 ; &jbuf[1]
7152 // str r1, [r2]
7153 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7154 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1)
7155 .addConstantPoolIndex(CPI)
7156 .addMemOperand(CPMMO));
7157 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
7158 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2)
7159 .addReg(NewVReg1, RegState::Kill)
7160 .addImm(PCLabelId);
7161 // Set the low bit because of thumb mode.
7162 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
7163 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3)
7164 .addReg(ARM::CPSR, RegState::Define)
7165 .addImm(1));
7166 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
7167 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4)
7168 .addReg(ARM::CPSR, RegState::Define)
7169 .addReg(NewVReg2, RegState::Kill)
7170 .addReg(NewVReg3, RegState::Kill));
7171 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
Tim Northover23075cc2014-10-20 21:28:41 +00007172 BuildMI(*MBB, MI, dl, TII->get(ARM::tADDframe), NewVReg5)
7173 .addFrameIndex(FI)
7174 .addImm(36); // &jbuf[1] :: pc
Bill Wendling030b58e2011-10-06 22:18:16 +00007175 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi))
7176 .addReg(NewVReg4, RegState::Kill)
7177 .addReg(NewVReg5, RegState::Kill)
7178 .addImm(0)
7179 .addMemOperand(FIMMOSt));
7180 } else {
7181 // Incoming value: jbuf
7182 // ldr r1, LCPI1_1
7183 // add r1, pc, r1
7184 // str r1, [$jbuf, #+4] ; &jbuf[1]
7185 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7186 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12), NewVReg1)
7187 .addConstantPoolIndex(CPI)
7188 .addImm(0)
7189 .addMemOperand(CPMMO));
7190 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
7191 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2)
7192 .addReg(NewVReg1, RegState::Kill)
7193 .addImm(PCLabelId));
7194 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12))
7195 .addReg(NewVReg2, RegState::Kill)
7196 .addFrameIndex(FI)
7197 .addImm(36) // &jbuf[1] :: pc
7198 .addMemOperand(FIMMOSt));
7199 }
7200}
7201
Matthias Brauneec4efc2015-04-28 00:37:05 +00007202void ARMTargetLowering::EmitSjLjDispatchBlock(MachineInstr *MI,
7203 MachineBasicBlock *MBB) const {
Eric Christopher1889fdc2015-01-29 00:19:39 +00007204 const TargetInstrInfo *TII = Subtarget->getInstrInfo();
Bill Wendling030b58e2011-10-06 22:18:16 +00007205 DebugLoc dl = MI->getDebugLoc();
7206 MachineFunction *MF = MBB->getParent();
7207 MachineRegisterInfo *MRI = &MF->getRegInfo();
Bill Wendling030b58e2011-10-06 22:18:16 +00007208 MachineFrameInfo *MFI = MF->getFrameInfo();
7209 int FI = MFI->getFunctionContextIndex();
7210
Craig Topper61e88f42014-11-21 05:58:21 +00007211 const TargetRegisterClass *TRC = Subtarget->isThumb() ? &ARM::tGPRRegClass
7212 : &ARM::GPRnopcRegClass;
Bill Wendling030b58e2011-10-06 22:18:16 +00007213
Bill Wendling362c1b02011-10-06 21:29:56 +00007214 // Get a mapping of the call site numbers to all of the landing pads they're
7215 // associated with.
Bill Wendling202803e2011-10-05 00:02:33 +00007216 DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad;
7217 unsigned MaxCSNum = 0;
7218 MachineModuleInfo &MMI = MF->getMMI();
Jim Grosbach0c509fa2012-04-06 23:43:50 +00007219 for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E;
7220 ++BB) {
Reid Kleckner0e288232015-08-27 23:27:47 +00007221 if (!BB->isEHPad()) continue;
Bill Wendling202803e2011-10-05 00:02:33 +00007222
7223 // FIXME: We should assert that the EH_LABEL is the first MI in the landing
7224 // pad.
7225 for (MachineBasicBlock::iterator
7226 II = BB->begin(), IE = BB->end(); II != IE; ++II) {
7227 if (!II->isEHLabel()) continue;
7228
7229 MCSymbol *Sym = II->getOperand(0).getMCSymbol();
Bill Wendlingf793e7e2011-10-05 23:28:57 +00007230 if (!MMI.hasCallSiteLandingPad(Sym)) continue;
Bill Wendling202803e2011-10-05 00:02:33 +00007231
Bill Wendlingf793e7e2011-10-05 23:28:57 +00007232 SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym);
7233 for (SmallVectorImpl<unsigned>::iterator
7234 CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end();
7235 CSI != CSE; ++CSI) {
Duncan P. N. Exon Smith9f9559e2015-10-19 23:25:57 +00007236 CallSiteNumToLPad[*CSI].push_back(&*BB);
Bill Wendlingf793e7e2011-10-05 23:28:57 +00007237 MaxCSNum = std::max(MaxCSNum, *CSI);
7238 }
Bill Wendling202803e2011-10-05 00:02:33 +00007239 break;
7240 }
7241 }
7242
7243 // Get an ordered list of the machine basic blocks for the jump table.
7244 std::vector<MachineBasicBlock*> LPadList;
Matthias Braunb30f2f512016-01-30 01:24:31 +00007245 SmallPtrSet<MachineBasicBlock*, 32> InvokeBBs;
Bill Wendling202803e2011-10-05 00:02:33 +00007246 LPadList.reserve(CallSiteNumToLPad.size());
7247 for (unsigned I = 1; I <= MaxCSNum; ++I) {
7248 SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I];
7249 for (SmallVectorImpl<MachineBasicBlock*>::iterator
Bill Wendling883ec972011-10-07 23:18:02 +00007250 II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) {
Bill Wendling202803e2011-10-05 00:02:33 +00007251 LPadList.push_back(*II);
Bill Wendling883ec972011-10-07 23:18:02 +00007252 InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end());
7253 }
Bill Wendling202803e2011-10-05 00:02:33 +00007254 }
7255
Bill Wendlingf793e7e2011-10-05 23:28:57 +00007256 assert(!LPadList.empty() &&
7257 "No landing pad destinations for the dispatch jump table!");
7258
Bill Wendling362c1b02011-10-06 21:29:56 +00007259 // Create the jump table and associated information.
Bill Wendling202803e2011-10-05 00:02:33 +00007260 MachineJumpTableInfo *JTI =
7261 MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline);
7262 unsigned MJTI = JTI->createJumpTableIndex(LPadList);
Chad Rosier96603432013-03-01 18:30:38 +00007263 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
Bill Wendling202803e2011-10-05 00:02:33 +00007264
Bill Wendling362c1b02011-10-06 21:29:56 +00007265 // Create the MBBs for the dispatch code.
Bill Wendling030b58e2011-10-06 22:18:16 +00007266
7267 // Shove the dispatch's address into the return slot in the function context.
7268 MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock();
Reid Kleckner0e288232015-08-27 23:27:47 +00007269 DispatchBB->setIsEHPad();
Bill Wendling030b58e2011-10-06 22:18:16 +00007270
Bill Wendling324be982011-10-05 00:39:32 +00007271 MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock();
Eli Bendersky2e2ce492013-01-30 16:30:19 +00007272 unsigned trap_opcode;
Chad Rosier11a98282013-02-28 18:54:27 +00007273 if (Subtarget->isThumb())
Eli Bendersky2e2ce492013-01-30 16:30:19 +00007274 trap_opcode = ARM::tTRAP;
Chad Rosier11a98282013-02-28 18:54:27 +00007275 else
7276 trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP;
7277
Eli Bendersky2e2ce492013-01-30 16:30:19 +00007278 BuildMI(TrapBB, dl, TII->get(trap_opcode));
Bill Wendling324be982011-10-05 00:39:32 +00007279 DispatchBB->addSuccessor(TrapBB);
7280
7281 MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock();
7282 DispatchBB->addSuccessor(DispContBB);
Bill Wendling202803e2011-10-05 00:02:33 +00007283
Bill Wendling510fbcd2011-10-17 21:32:56 +00007284 // Insert and MBBs.
Bill Wendling61346552011-10-06 00:53:33 +00007285 MF->insert(MF->end(), DispatchBB);
7286 MF->insert(MF->end(), DispContBB);
7287 MF->insert(MF->end(), TrapBB);
Bill Wendling61346552011-10-06 00:53:33 +00007288
Bill Wendling030b58e2011-10-06 22:18:16 +00007289 // Insert code into the entry block that creates and registers the function
7290 // context.
7291 SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI);
7292
Alex Lorenze40c8a22015-08-11 23:09:45 +00007293 MachineMemOperand *FIMMOLd = MF->getMachineMemOperand(
7294 MachinePointerInfo::getFixedStack(*MF, FI),
7295 MachineMemOperand::MOLoad | MachineMemOperand::MOVolatile, 4, 4);
Bill Wendling61346552011-10-06 00:53:33 +00007296
Chad Rosier1ec8e402012-11-06 23:05:24 +00007297 MachineInstrBuilder MIB;
7298 MIB = BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup));
7299
7300 const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII);
7301 const ARMBaseRegisterInfo &RI = AII->getRegisterInfo();
7302
7303 // Add a register mask with no preserved registers. This results in all
7304 // registers being marked as clobbered.
7305 MIB.addRegMask(RI.getNoPreservedMask());
Bob Wilsonf6d17282011-11-16 07:11:57 +00007306
Bill Wendling85833f72011-10-18 22:49:07 +00007307 unsigned NumLPads = LPadList.size();
Bill Wendling5626c662011-10-06 22:53:00 +00007308 if (Subtarget->isThumb2()) {
7309 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7310 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1)
7311 .addFrameIndex(FI)
7312 .addImm(4)
7313 .addMemOperand(FIMMOLd));
Bill Wendlingb2a703d2011-10-18 21:55:58 +00007314
Bill Wendling85833f72011-10-18 22:49:07 +00007315 if (NumLPads < 256) {
7316 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri))
7317 .addReg(NewVReg1)
7318 .addImm(LPadList.size()));
7319 } else {
7320 unsigned VReg1 = MRI->createVirtualRegister(TRC);
7321 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVi16), VReg1)
Bill Wendling94f60012011-10-18 23:19:55 +00007322 .addImm(NumLPads & 0xFFFF));
7323
7324 unsigned VReg2 = VReg1;
7325 if ((NumLPads & 0xFFFF0000) != 0) {
7326 VReg2 = MRI->createVirtualRegister(TRC);
7327 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVTi16), VReg2)
7328 .addReg(VReg1)
7329 .addImm(NumLPads >> 16));
7330 }
7331
Bill Wendling85833f72011-10-18 22:49:07 +00007332 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPrr))
7333 .addReg(NewVReg1)
7334 .addReg(VReg2));
7335 }
Bill Wendlingb2a703d2011-10-18 21:55:58 +00007336
Bill Wendling5626c662011-10-06 22:53:00 +00007337 BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc))
7338 .addMBB(TrapBB)
7339 .addImm(ARMCC::HI)
7340 .addReg(ARM::CPSR);
Bill Wendling324be982011-10-05 00:39:32 +00007341
Bill Wendlingb2a703d2011-10-18 21:55:58 +00007342 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
7343 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg3)
Tim Northover4998a472015-05-13 20:28:38 +00007344 .addJumpTableIndex(MJTI));
Bill Wendling202803e2011-10-05 00:02:33 +00007345
Bill Wendlingb2a703d2011-10-18 21:55:58 +00007346 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
Bill Wendling5626c662011-10-06 22:53:00 +00007347 AddDefaultCC(
7348 AddDefaultPred(
Bill Wendlingb2a703d2011-10-18 21:55:58 +00007349 BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg4)
7350 .addReg(NewVReg3, RegState::Kill)
Bill Wendling5626c662011-10-06 22:53:00 +00007351 .addReg(NewVReg1)
7352 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
7353
7354 BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT))
Bill Wendlingb2a703d2011-10-18 21:55:58 +00007355 .addReg(NewVReg4, RegState::Kill)
Bill Wendling202803e2011-10-05 00:02:33 +00007356 .addReg(NewVReg1)
Tim Northover4998a472015-05-13 20:28:38 +00007357 .addJumpTableIndex(MJTI);
Bill Wendling5626c662011-10-06 22:53:00 +00007358 } else if (Subtarget->isThumb()) {
Bill Wendlingb3d46782011-10-06 23:37:36 +00007359 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7360 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1)
7361 .addFrameIndex(FI)
7362 .addImm(1)
7363 .addMemOperand(FIMMOLd));
Bill Wendlingf9f5e452011-10-07 22:08:37 +00007364
Bill Wendling64e6bfc2011-10-18 23:11:05 +00007365 if (NumLPads < 256) {
7366 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8))
7367 .addReg(NewVReg1)
7368 .addImm(NumLPads));
7369 } else {
7370 MachineConstantPool *ConstantPool = MF->getConstantPool();
Bill Wendling2977a152011-10-19 09:24:02 +00007371 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7372 const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
7373
7374 // MachineConstantPool wants an explicit alignment.
Mehdi Aminia749f2a2015-07-09 02:09:52 +00007375 unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty);
Bill Wendling2977a152011-10-19 09:24:02 +00007376 if (Align == 0)
Mehdi Aminia749f2a2015-07-09 02:09:52 +00007377 Align = MF->getDataLayout().getTypeAllocSize(C->getType());
Bill Wendling2977a152011-10-19 09:24:02 +00007378 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
Bill Wendling64e6bfc2011-10-18 23:11:05 +00007379
7380 unsigned VReg1 = MRI->createVirtualRegister(TRC);
7381 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRpci))
7382 .addReg(VReg1, RegState::Define)
7383 .addConstantPoolIndex(Idx));
7384 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPr))
7385 .addReg(NewVReg1)
7386 .addReg(VReg1));
7387 }
7388
Bill Wendlingb3d46782011-10-06 23:37:36 +00007389 BuildMI(DispatchBB, dl, TII->get(ARM::tBcc))
7390 .addMBB(TrapBB)
7391 .addImm(ARMCC::HI)
7392 .addReg(ARM::CPSR);
7393
7394 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
7395 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2)
7396 .addReg(ARM::CPSR, RegState::Define)
7397 .addReg(NewVReg1)
7398 .addImm(2));
7399
7400 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
Bill Wendling8d50ea02011-10-06 23:41:14 +00007401 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3)
Tim Northover4998a472015-05-13 20:28:38 +00007402 .addJumpTableIndex(MJTI));
Bill Wendlingb3d46782011-10-06 23:37:36 +00007403
7404 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
7405 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4)
7406 .addReg(ARM::CPSR, RegState::Define)
7407 .addReg(NewVReg2, RegState::Kill)
7408 .addReg(NewVReg3));
7409
Alex Lorenze40c8a22015-08-11 23:09:45 +00007410 MachineMemOperand *JTMMOLd = MF->getMachineMemOperand(
7411 MachinePointerInfo::getJumpTable(*MF), MachineMemOperand::MOLoad, 4, 4);
Bill Wendlingb3d46782011-10-06 23:37:36 +00007412
7413 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
7414 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5)
7415 .addReg(NewVReg4, RegState::Kill)
7416 .addImm(0)
7417 .addMemOperand(JTMMOLd));
7418
Chad Rosier96603432013-03-01 18:30:38 +00007419 unsigned NewVReg6 = NewVReg5;
7420 if (RelocM == Reloc::PIC_) {
7421 NewVReg6 = MRI->createVirtualRegister(TRC);
7422 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6)
7423 .addReg(ARM::CPSR, RegState::Define)
7424 .addReg(NewVReg5, RegState::Kill)
7425 .addReg(NewVReg3));
7426 }
Bill Wendlingb3d46782011-10-06 23:37:36 +00007427
7428 BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr))
7429 .addReg(NewVReg6, RegState::Kill)
Tim Northover4998a472015-05-13 20:28:38 +00007430 .addJumpTableIndex(MJTI);
Bill Wendling5626c662011-10-06 22:53:00 +00007431 } else {
7432 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7433 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1)
7434 .addFrameIndex(FI)
7435 .addImm(4)
7436 .addMemOperand(FIMMOLd));
Bill Wendling973c8172011-10-18 22:11:18 +00007437
Bill Wendling4969dcd2011-10-18 22:52:20 +00007438 if (NumLPads < 256) {
7439 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri))
7440 .addReg(NewVReg1)
7441 .addImm(NumLPads));
Bill Wendling2977a152011-10-19 09:24:02 +00007442 } else if (Subtarget->hasV6T2Ops() && isUInt<16>(NumLPads)) {
Bill Wendling4969dcd2011-10-18 22:52:20 +00007443 unsigned VReg1 = MRI->createVirtualRegister(TRC);
7444 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVi16), VReg1)
Bill Wendling94f60012011-10-18 23:19:55 +00007445 .addImm(NumLPads & 0xFFFF));
7446
7447 unsigned VReg2 = VReg1;
7448 if ((NumLPads & 0xFFFF0000) != 0) {
7449 VReg2 = MRI->createVirtualRegister(TRC);
7450 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVTi16), VReg2)
7451 .addReg(VReg1)
7452 .addImm(NumLPads >> 16));
7453 }
7454
Bill Wendling4969dcd2011-10-18 22:52:20 +00007455 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
7456 .addReg(NewVReg1)
7457 .addReg(VReg2));
Bill Wendling2977a152011-10-19 09:24:02 +00007458 } else {
7459 MachineConstantPool *ConstantPool = MF->getConstantPool();
7460 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7461 const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
7462
7463 // MachineConstantPool wants an explicit alignment.
Mehdi Aminia749f2a2015-07-09 02:09:52 +00007464 unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty);
Bill Wendling2977a152011-10-19 09:24:02 +00007465 if (Align == 0)
Mehdi Aminia749f2a2015-07-09 02:09:52 +00007466 Align = MF->getDataLayout().getTypeAllocSize(C->getType());
Bill Wendling2977a152011-10-19 09:24:02 +00007467 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7468
7469 unsigned VReg1 = MRI->createVirtualRegister(TRC);
7470 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRcp))
7471 .addReg(VReg1, RegState::Define)
Bill Wendlingcf7bdf42011-10-20 20:37:11 +00007472 .addConstantPoolIndex(Idx)
7473 .addImm(0));
Bill Wendling2977a152011-10-19 09:24:02 +00007474 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
7475 .addReg(NewVReg1)
7476 .addReg(VReg1, RegState::Kill));
Bill Wendling4969dcd2011-10-18 22:52:20 +00007477 }
7478
Bill Wendling5626c662011-10-06 22:53:00 +00007479 BuildMI(DispatchBB, dl, TII->get(ARM::Bcc))
7480 .addMBB(TrapBB)
7481 .addImm(ARMCC::HI)
7482 .addReg(ARM::CPSR);
Bill Wendling202803e2011-10-05 00:02:33 +00007483
Bill Wendling973c8172011-10-18 22:11:18 +00007484 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
Bill Wendling5626c662011-10-06 22:53:00 +00007485 AddDefaultCC(
Bill Wendling973c8172011-10-18 22:11:18 +00007486 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg3)
Bill Wendling5626c662011-10-06 22:53:00 +00007487 .addReg(NewVReg1)
7488 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
Bill Wendling973c8172011-10-18 22:11:18 +00007489 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
7490 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg4)
Tim Northover4998a472015-05-13 20:28:38 +00007491 .addJumpTableIndex(MJTI));
Bill Wendling5626c662011-10-06 22:53:00 +00007492
Alex Lorenze40c8a22015-08-11 23:09:45 +00007493 MachineMemOperand *JTMMOLd = MF->getMachineMemOperand(
7494 MachinePointerInfo::getJumpTable(*MF), MachineMemOperand::MOLoad, 4, 4);
Bill Wendling973c8172011-10-18 22:11:18 +00007495 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
Bill Wendling5626c662011-10-06 22:53:00 +00007496 AddDefaultPred(
Bill Wendling973c8172011-10-18 22:11:18 +00007497 BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg5)
7498 .addReg(NewVReg3, RegState::Kill)
7499 .addReg(NewVReg4)
Bill Wendling5626c662011-10-06 22:53:00 +00007500 .addImm(0)
7501 .addMemOperand(JTMMOLd));
7502
Chad Rosier96603432013-03-01 18:30:38 +00007503 if (RelocM == Reloc::PIC_) {
7504 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd))
7505 .addReg(NewVReg5, RegState::Kill)
7506 .addReg(NewVReg4)
Tim Northover4998a472015-05-13 20:28:38 +00007507 .addJumpTableIndex(MJTI);
Chad Rosier96603432013-03-01 18:30:38 +00007508 } else {
7509 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTr))
7510 .addReg(NewVReg5, RegState::Kill)
Tim Northover4998a472015-05-13 20:28:38 +00007511 .addJumpTableIndex(MJTI);
Chad Rosier96603432013-03-01 18:30:38 +00007512 }
Bill Wendling5626c662011-10-06 22:53:00 +00007513 }
Bill Wendling202803e2011-10-05 00:02:33 +00007514
Bill Wendling324be982011-10-05 00:39:32 +00007515 // Add the jump table entries as successors to the MBB.
Jakob Stoklund Olesen710093e2012-08-20 20:52:03 +00007516 SmallPtrSet<MachineBasicBlock*, 8> SeenMBBs;
Bill Wendling324be982011-10-05 00:39:32 +00007517 for (std::vector<MachineBasicBlock*>::iterator
Bill Wendling883ec972011-10-07 23:18:02 +00007518 I = LPadList.begin(), E = LPadList.end(); I != E; ++I) {
7519 MachineBasicBlock *CurMBB = *I;
David Blaikie70573dc2014-11-19 07:49:26 +00007520 if (SeenMBBs.insert(CurMBB).second)
Bill Wendling883ec972011-10-07 23:18:02 +00007521 DispContBB->addSuccessor(CurMBB);
Bill Wendling883ec972011-10-07 23:18:02 +00007522 }
7523
Bill Wendling26d27802011-10-17 05:25:09 +00007524 // N.B. the order the invoke BBs are processed in doesn't matter here.
Craig Topper840beec2014-04-04 05:16:06 +00007525 const MCPhysReg *SavedRegs = RI.getCalleeSavedRegs(MF);
Bill Wendling617075f2011-10-18 18:30:49 +00007526 SmallVector<MachineBasicBlock*, 64> MBBLPads;
Craig Topper46276792014-08-24 23:23:06 +00007527 for (MachineBasicBlock *BB : InvokeBBs) {
Bill Wendling6f3f9a32011-10-14 23:34:37 +00007528
7529 // Remove the landing pad successor from the invoke block and replace it
7530 // with the new dispatch block.
Bill Wendling1414bc52011-10-26 07:16:18 +00007531 SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(),
7532 BB->succ_end());
7533 while (!Successors.empty()) {
7534 MachineBasicBlock *SMBB = Successors.pop_back_val();
Reid Kleckner0e288232015-08-27 23:27:47 +00007535 if (SMBB->isEHPad()) {
Bill Wendling883ec972011-10-07 23:18:02 +00007536 BB->removeSuccessor(SMBB);
Bill Wendling617075f2011-10-18 18:30:49 +00007537 MBBLPads.push_back(SMBB);
Bill Wendling883ec972011-10-07 23:18:02 +00007538 }
7539 }
7540
Cong Houd97c1002015-12-01 05:29:22 +00007541 BB->addSuccessor(DispatchBB, BranchProbability::getZero());
Cong Houc1069892015-12-13 09:26:17 +00007542 BB->normalizeSuccProbs();
Bill Wendling6f3f9a32011-10-14 23:34:37 +00007543
7544 // Find the invoke call and mark all of the callee-saved registers as
7545 // 'implicit defined' so that they're spilled. This prevents code from
7546 // moving instructions to before the EH block, where they will never be
7547 // executed.
7548 for (MachineBasicBlock::reverse_iterator
7549 II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) {
Evan Cheng7f8e5632011-12-07 07:15:52 +00007550 if (!II->isCall()) continue;
Bill Wendling6f3f9a32011-10-14 23:34:37 +00007551
7552 DenseMap<unsigned, bool> DefRegs;
7553 for (MachineInstr::mop_iterator
7554 OI = II->operands_begin(), OE = II->operands_end();
7555 OI != OE; ++OI) {
7556 if (!OI->isReg()) continue;
7557 DefRegs[OI->getReg()] = true;
7558 }
7559
Jakob Stoklund Olesenb159b5f2012-12-19 21:31:56 +00007560 MachineInstrBuilder MIB(*MF, &*II);
Bill Wendling6f3f9a32011-10-14 23:34:37 +00007561
Bill Wendling9e0cd1e2011-10-14 23:55:44 +00007562 for (unsigned i = 0; SavedRegs[i] != 0; ++i) {
Bill Wendling94e66432011-10-22 00:29:28 +00007563 unsigned Reg = SavedRegs[i];
7564 if (Subtarget->isThumb2() &&
Craig Topperc7242e02012-04-20 07:30:17 +00007565 !ARM::tGPRRegClass.contains(Reg) &&
7566 !ARM::hGPRRegClass.contains(Reg))
Bill Wendling94e66432011-10-22 00:29:28 +00007567 continue;
Craig Topperc7242e02012-04-20 07:30:17 +00007568 if (Subtarget->isThumb1Only() && !ARM::tGPRRegClass.contains(Reg))
Bill Wendling94e66432011-10-22 00:29:28 +00007569 continue;
Craig Topperc7242e02012-04-20 07:30:17 +00007570 if (!Subtarget->isThumb() && !ARM::GPRRegClass.contains(Reg))
Bill Wendling94e66432011-10-22 00:29:28 +00007571 continue;
7572 if (!DefRegs[Reg])
7573 MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);
Bill Wendling9e0cd1e2011-10-14 23:55:44 +00007574 }
Bill Wendling6f3f9a32011-10-14 23:34:37 +00007575
7576 break;
7577 }
Bill Wendling883ec972011-10-07 23:18:02 +00007578 }
Bill Wendling324be982011-10-05 00:39:32 +00007579
Bill Wendling617075f2011-10-18 18:30:49 +00007580 // Mark all former landing pads as non-landing pads. The dispatch is the only
7581 // landing pad now.
7582 for (SmallVectorImpl<MachineBasicBlock*>::iterator
7583 I = MBBLPads.begin(), E = MBBLPads.end(); I != E; ++I)
Reid Kleckner0e288232015-08-27 23:27:47 +00007584 (*I)->setIsEHPad(false);
Bill Wendling617075f2011-10-18 18:30:49 +00007585
Bill Wendling324be982011-10-05 00:39:32 +00007586 // The instruction is gone now.
7587 MI->eraseFromParent();
Bill Wendling374ee192011-10-03 21:25:38 +00007588}
7589
Evan Cheng0cc4ad92010-07-13 19:27:42 +00007590static
7591MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) {
7592 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
7593 E = MBB->succ_end(); I != E; ++I)
7594 if (*I != Succ)
7595 return *I;
7596 llvm_unreachable("Expecting a BB with two successors!");
7597}
7598
Manman Renb504f492013-10-29 22:27:32 +00007599/// Return the load opcode for a given load size. If load size >= 8,
7600/// neon opcode will be returned.
7601static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) {
7602 if (LdSize >= 8)
7603 return LdSize == 16 ? ARM::VLD1q32wb_fixed
7604 : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0;
7605 if (IsThumb1)
7606 return LdSize == 4 ? ARM::tLDRi
7607 : LdSize == 2 ? ARM::tLDRHi
7608 : LdSize == 1 ? ARM::tLDRBi : 0;
7609 if (IsThumb2)
7610 return LdSize == 4 ? ARM::t2LDR_POST
7611 : LdSize == 2 ? ARM::t2LDRH_POST
7612 : LdSize == 1 ? ARM::t2LDRB_POST : 0;
7613 return LdSize == 4 ? ARM::LDR_POST_IMM
7614 : LdSize == 2 ? ARM::LDRH_POST
7615 : LdSize == 1 ? ARM::LDRB_POST_IMM : 0;
7616}
7617
7618/// Return the store opcode for a given store size. If store size >= 8,
7619/// neon opcode will be returned.
7620static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) {
7621 if (StSize >= 8)
7622 return StSize == 16 ? ARM::VST1q32wb_fixed
7623 : StSize == 8 ? ARM::VST1d32wb_fixed : 0;
7624 if (IsThumb1)
7625 return StSize == 4 ? ARM::tSTRi
7626 : StSize == 2 ? ARM::tSTRHi
7627 : StSize == 1 ? ARM::tSTRBi : 0;
7628 if (IsThumb2)
7629 return StSize == 4 ? ARM::t2STR_POST
7630 : StSize == 2 ? ARM::t2STRH_POST
7631 : StSize == 1 ? ARM::t2STRB_POST : 0;
7632 return StSize == 4 ? ARM::STR_POST_IMM
7633 : StSize == 2 ? ARM::STRH_POST
7634 : StSize == 1 ? ARM::STRB_POST_IMM : 0;
7635}
7636
7637/// Emit a post-increment load operation with given size. The instructions
7638/// will be added to BB at Pos.
7639static void emitPostLd(MachineBasicBlock *BB, MachineInstr *Pos,
7640 const TargetInstrInfo *TII, DebugLoc dl,
7641 unsigned LdSize, unsigned Data, unsigned AddrIn,
7642 unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
7643 unsigned LdOpc = getLdOpcode(LdSize, IsThumb1, IsThumb2);
7644 assert(LdOpc != 0 && "Should have a load opcode");
7645 if (LdSize >= 8) {
7646 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7647 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7648 .addImm(0));
7649 } else if (IsThumb1) {
7650 // load + update AddrIn
7651 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7652 .addReg(AddrIn).addImm(0));
7653 MachineInstrBuilder MIB =
7654 BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
7655 MIB = AddDefaultT1CC(MIB);
7656 MIB.addReg(AddrIn).addImm(LdSize);
7657 AddDefaultPred(MIB);
7658 } else if (IsThumb2) {
7659 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7660 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7661 .addImm(LdSize));
7662 } else { // arm
7663 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7664 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7665 .addReg(0).addImm(LdSize));
7666 }
7667}
7668
7669/// Emit a post-increment store operation with given size. The instructions
7670/// will be added to BB at Pos.
7671static void emitPostSt(MachineBasicBlock *BB, MachineInstr *Pos,
7672 const TargetInstrInfo *TII, DebugLoc dl,
7673 unsigned StSize, unsigned Data, unsigned AddrIn,
7674 unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
7675 unsigned StOpc = getStOpcode(StSize, IsThumb1, IsThumb2);
7676 assert(StOpc != 0 && "Should have a store opcode");
7677 if (StSize >= 8) {
7678 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7679 .addReg(AddrIn).addImm(0).addReg(Data));
7680 } else if (IsThumb1) {
7681 // store + update AddrIn
7682 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc)).addReg(Data)
7683 .addReg(AddrIn).addImm(0));
7684 MachineInstrBuilder MIB =
7685 BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
7686 MIB = AddDefaultT1CC(MIB);
7687 MIB.addReg(AddrIn).addImm(StSize);
7688 AddDefaultPred(MIB);
7689 } else if (IsThumb2) {
7690 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7691 .addReg(Data).addReg(AddrIn).addImm(StSize));
7692 } else { // arm
7693 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7694 .addReg(Data).addReg(AddrIn).addReg(0)
7695 .addImm(StSize));
7696 }
7697}
7698
David Peixottoc32e24a2013-10-17 19:49:22 +00007699MachineBasicBlock *
7700ARMTargetLowering::EmitStructByval(MachineInstr *MI,
7701 MachineBasicBlock *BB) const {
Manman Rene8735522012-06-01 19:33:18 +00007702 // This pseudo instruction has 3 operands: dst, src, size
7703 // We expand it to a loop if size > Subtarget->getMaxInlineSizeThreshold().
7704 // Otherwise, we will generate unrolled scalar copies.
Eric Christopher1889fdc2015-01-29 00:19:39 +00007705 const TargetInstrInfo *TII = Subtarget->getInstrInfo();
Manman Rene8735522012-06-01 19:33:18 +00007706 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Duncan P. N. Exon Smith9f9559e2015-10-19 23:25:57 +00007707 MachineFunction::iterator It = ++BB->getIterator();
Manman Rene8735522012-06-01 19:33:18 +00007708
7709 unsigned dest = MI->getOperand(0).getReg();
7710 unsigned src = MI->getOperand(1).getReg();
7711 unsigned SizeVal = MI->getOperand(2).getImm();
7712 unsigned Align = MI->getOperand(3).getImm();
7713 DebugLoc dl = MI->getDebugLoc();
7714
Manman Rene8735522012-06-01 19:33:18 +00007715 MachineFunction *MF = BB->getParent();
7716 MachineRegisterInfo &MRI = MF->getRegInfo();
David Peixottoc32e24a2013-10-17 19:49:22 +00007717 unsigned UnitSize = 0;
Craig Topper062a2ba2014-04-25 05:30:21 +00007718 const TargetRegisterClass *TRC = nullptr;
7719 const TargetRegisterClass *VecTRC = nullptr;
David Peixottob0653e532013-10-24 16:39:36 +00007720
7721 bool IsThumb1 = Subtarget->isThumb1Only();
7722 bool IsThumb2 = Subtarget->isThumb2();
Manman Rene8735522012-06-01 19:33:18 +00007723
7724 if (Align & 1) {
Manman Rene8735522012-06-01 19:33:18 +00007725 UnitSize = 1;
7726 } else if (Align & 2) {
Manman Rene8735522012-06-01 19:33:18 +00007727 UnitSize = 2;
7728 } else {
Manman Ren6e1fd462012-06-18 22:23:48 +00007729 // Check whether we can use NEON instructions.
Duncan P. N. Exon Smith2cff9e12015-02-14 02:24:44 +00007730 if (!MF->getFunction()->hasFnAttribute(Attribute::NoImplicitFloat) &&
Manman Ren6e1fd462012-06-18 22:23:48 +00007731 Subtarget->hasNEON()) {
David Peixottoc32e24a2013-10-17 19:49:22 +00007732 if ((Align % 16 == 0) && SizeVal >= 16)
Manman Ren6e1fd462012-06-18 22:23:48 +00007733 UnitSize = 16;
David Peixottoc32e24a2013-10-17 19:49:22 +00007734 else if ((Align % 8 == 0) && SizeVal >= 8)
Manman Ren6e1fd462012-06-18 22:23:48 +00007735 UnitSize = 8;
Manman Ren6e1fd462012-06-18 22:23:48 +00007736 }
7737 // Can't use NEON instructions.
David Peixottoc32e24a2013-10-17 19:49:22 +00007738 if (UnitSize == 0)
Manman Ren6e1fd462012-06-18 22:23:48 +00007739 UnitSize = 4;
Manman Rene8735522012-06-01 19:33:18 +00007740 }
Manman Ren6e1fd462012-06-18 22:23:48 +00007741
David Peixottob0653e532013-10-24 16:39:36 +00007742 // Select the correct opcode and register class for unit size load/store
7743 bool IsNeon = UnitSize >= 8;
Craig Topper61e88f42014-11-21 05:58:21 +00007744 TRC = (IsThumb1 || IsThumb2) ? &ARM::tGPRRegClass : &ARM::GPRRegClass;
Manman Renb504f492013-10-29 22:27:32 +00007745 if (IsNeon)
Craig Topper61e88f42014-11-21 05:58:21 +00007746 VecTRC = UnitSize == 16 ? &ARM::DPairRegClass
7747 : UnitSize == 8 ? &ARM::DPRRegClass
7748 : nullptr;
David Peixottob0653e532013-10-24 16:39:36 +00007749
Manman Rene8735522012-06-01 19:33:18 +00007750 unsigned BytesLeft = SizeVal % UnitSize;
7751 unsigned LoopSize = SizeVal - BytesLeft;
7752
7753 if (SizeVal <= Subtarget->getMaxInlineSizeThreshold()) {
7754 // Use LDR and STR to copy.
7755 // [scratch, srcOut] = LDR_POST(srcIn, UnitSize)
7756 // [destOut] = STR_POST(scratch, destIn, UnitSize)
7757 unsigned srcIn = src;
7758 unsigned destIn = dest;
7759 for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
David Peixottob0653e532013-10-24 16:39:36 +00007760 unsigned srcOut = MRI.createVirtualRegister(TRC);
7761 unsigned destOut = MRI.createVirtualRegister(TRC);
7762 unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
Manman Renb504f492013-10-29 22:27:32 +00007763 emitPostLd(BB, MI, TII, dl, UnitSize, scratch, srcIn, srcOut,
7764 IsThumb1, IsThumb2);
7765 emitPostSt(BB, MI, TII, dl, UnitSize, scratch, destIn, destOut,
7766 IsThumb1, IsThumb2);
David Peixottob0653e532013-10-24 16:39:36 +00007767 srcIn = srcOut;
7768 destIn = destOut;
Manman Rene8735522012-06-01 19:33:18 +00007769 }
7770
7771 // Handle the leftover bytes with LDRB and STRB.
7772 // [scratch, srcOut] = LDRB_POST(srcIn, 1)
7773 // [destOut] = STRB_POST(scratch, destIn, 1)
Manman Rene8735522012-06-01 19:33:18 +00007774 for (unsigned i = 0; i < BytesLeft; i++) {
David Peixottob0653e532013-10-24 16:39:36 +00007775 unsigned srcOut = MRI.createVirtualRegister(TRC);
7776 unsigned destOut = MRI.createVirtualRegister(TRC);
7777 unsigned scratch = MRI.createVirtualRegister(TRC);
Manman Renb504f492013-10-29 22:27:32 +00007778 emitPostLd(BB, MI, TII, dl, 1, scratch, srcIn, srcOut,
7779 IsThumb1, IsThumb2);
7780 emitPostSt(BB, MI, TII, dl, 1, scratch, destIn, destOut,
7781 IsThumb1, IsThumb2);
David Peixottob0653e532013-10-24 16:39:36 +00007782 srcIn = srcOut;
7783 destIn = destOut;
Manman Rene8735522012-06-01 19:33:18 +00007784 }
7785 MI->eraseFromParent(); // The instruction is gone now.
7786 return BB;
7787 }
7788
7789 // Expand the pseudo op to a loop.
7790 // thisMBB:
7791 // ...
7792 // movw varEnd, # --> with thumb2
7793 // movt varEnd, #
7794 // ldrcp varEnd, idx --> without thumb2
7795 // fallthrough --> loopMBB
7796 // loopMBB:
7797 // PHI varPhi, varEnd, varLoop
7798 // PHI srcPhi, src, srcLoop
7799 // PHI destPhi, dst, destLoop
7800 // [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7801 // [destLoop] = STR_POST(scratch, destPhi, UnitSize)
7802 // subs varLoop, varPhi, #UnitSize
7803 // bne loopMBB
7804 // fallthrough --> exitMBB
7805 // exitMBB:
7806 // epilogue to handle left-over bytes
7807 // [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7808 // [destOut] = STRB_POST(scratch, destLoop, 1)
7809 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7810 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7811 MF->insert(It, loopMBB);
7812 MF->insert(It, exitMBB);
7813
7814 // Transfer the remainder of BB and its successor edges to exitMBB.
7815 exitMBB->splice(exitMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00007816 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Manman Rene8735522012-06-01 19:33:18 +00007817 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
7818
7819 // Load an immediate to varEnd.
David Peixottob0653e532013-10-24 16:39:36 +00007820 unsigned varEnd = MRI.createVirtualRegister(TRC);
Derek Schuffb0513892015-03-26 22:11:00 +00007821 if (Subtarget->useMovt(*MF)) {
David Peixottob0653e532013-10-24 16:39:36 +00007822 unsigned Vtmp = varEnd;
7823 if ((LoopSize & 0xFFFF0000) != 0)
7824 Vtmp = MRI.createVirtualRegister(TRC);
Derek Schuffb0513892015-03-26 22:11:00 +00007825 AddDefaultPred(BuildMI(BB, dl,
7826 TII->get(IsThumb2 ? ARM::t2MOVi16 : ARM::MOVi16),
7827 Vtmp).addImm(LoopSize & 0xFFFF));
David Peixottob0653e532013-10-24 16:39:36 +00007828
7829 if ((LoopSize & 0xFFFF0000) != 0)
Derek Schuffb0513892015-03-26 22:11:00 +00007830 AddDefaultPred(BuildMI(BB, dl,
7831 TII->get(IsThumb2 ? ARM::t2MOVTi16 : ARM::MOVTi16),
7832 varEnd)
7833 .addReg(Vtmp)
7834 .addImm(LoopSize >> 16));
David Peixottob0653e532013-10-24 16:39:36 +00007835 } else {
7836 MachineConstantPool *ConstantPool = MF->getConstantPool();
7837 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7838 const Constant *C = ConstantInt::get(Int32Ty, LoopSize);
7839
7840 // MachineConstantPool wants an explicit alignment.
Mehdi Aminia749f2a2015-07-09 02:09:52 +00007841 unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty);
David Peixottob0653e532013-10-24 16:39:36 +00007842 if (Align == 0)
Mehdi Aminia749f2a2015-07-09 02:09:52 +00007843 Align = MF->getDataLayout().getTypeAllocSize(C->getType());
David Peixottob0653e532013-10-24 16:39:36 +00007844 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7845
7846 if (IsThumb1)
7847 AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::tLDRpci)).addReg(
7848 varEnd, RegState::Define).addConstantPoolIndex(Idx));
7849 else
7850 AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::LDRcp)).addReg(
7851 varEnd, RegState::Define).addConstantPoolIndex(Idx).addImm(0));
7852 }
Manman Rene8735522012-06-01 19:33:18 +00007853 BB->addSuccessor(loopMBB);
7854
7855 // Generate the loop body:
7856 // varPhi = PHI(varLoop, varEnd)
7857 // srcPhi = PHI(srcLoop, src)
7858 // destPhi = PHI(destLoop, dst)
7859 MachineBasicBlock *entryBB = BB;
7860 BB = loopMBB;
David Peixottob0653e532013-10-24 16:39:36 +00007861 unsigned varLoop = MRI.createVirtualRegister(TRC);
7862 unsigned varPhi = MRI.createVirtualRegister(TRC);
7863 unsigned srcLoop = MRI.createVirtualRegister(TRC);
7864 unsigned srcPhi = MRI.createVirtualRegister(TRC);
7865 unsigned destLoop = MRI.createVirtualRegister(TRC);
7866 unsigned destPhi = MRI.createVirtualRegister(TRC);
Manman Rene8735522012-06-01 19:33:18 +00007867
7868 BuildMI(*BB, BB->begin(), dl, TII->get(ARM::PHI), varPhi)
7869 .addReg(varLoop).addMBB(loopMBB)
7870 .addReg(varEnd).addMBB(entryBB);
7871 BuildMI(BB, dl, TII->get(ARM::PHI), srcPhi)
7872 .addReg(srcLoop).addMBB(loopMBB)
7873 .addReg(src).addMBB(entryBB);
7874 BuildMI(BB, dl, TII->get(ARM::PHI), destPhi)
7875 .addReg(destLoop).addMBB(loopMBB)
7876 .addReg(dest).addMBB(entryBB);
7877
7878 // [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7879 // [destLoop] = STR_POST(scratch, destPhi, UnitSiz)
David Peixottob0653e532013-10-24 16:39:36 +00007880 unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
Manman Renb504f492013-10-29 22:27:32 +00007881 emitPostLd(BB, BB->end(), TII, dl, UnitSize, scratch, srcPhi, srcLoop,
7882 IsThumb1, IsThumb2);
7883 emitPostSt(BB, BB->end(), TII, dl, UnitSize, scratch, destPhi, destLoop,
7884 IsThumb1, IsThumb2);
Manman Rene8735522012-06-01 19:33:18 +00007885
7886 // Decrement loop variable by UnitSize.
David Peixottob0653e532013-10-24 16:39:36 +00007887 if (IsThumb1) {
7888 MachineInstrBuilder MIB =
7889 BuildMI(*BB, BB->end(), dl, TII->get(ARM::tSUBi8), varLoop);
7890 MIB = AddDefaultT1CC(MIB);
7891 MIB.addReg(varPhi).addImm(UnitSize);
7892 AddDefaultPred(MIB);
7893 } else {
7894 MachineInstrBuilder MIB =
7895 BuildMI(*BB, BB->end(), dl,
7896 TII->get(IsThumb2 ? ARM::t2SUBri : ARM::SUBri), varLoop);
7897 AddDefaultCC(AddDefaultPred(MIB.addReg(varPhi).addImm(UnitSize)));
7898 MIB->getOperand(5).setReg(ARM::CPSR);
7899 MIB->getOperand(5).setIsDef(true);
7900 }
7901 BuildMI(*BB, BB->end(), dl,
7902 TII->get(IsThumb1 ? ARM::tBcc : IsThumb2 ? ARM::t2Bcc : ARM::Bcc))
7903 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
Manman Rene8735522012-06-01 19:33:18 +00007904
7905 // loopMBB can loop back to loopMBB or fall through to exitMBB.
7906 BB->addSuccessor(loopMBB);
7907 BB->addSuccessor(exitMBB);
7908
7909 // Add epilogue to handle BytesLeft.
7910 BB = exitMBB;
7911 MachineInstr *StartOfExit = exitMBB->begin();
Manman Rene8735522012-06-01 19:33:18 +00007912
7913 // [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7914 // [destOut] = STRB_POST(scratch, destLoop, 1)
7915 unsigned srcIn = srcLoop;
7916 unsigned destIn = destLoop;
7917 for (unsigned i = 0; i < BytesLeft; i++) {
David Peixottob0653e532013-10-24 16:39:36 +00007918 unsigned srcOut = MRI.createVirtualRegister(TRC);
7919 unsigned destOut = MRI.createVirtualRegister(TRC);
7920 unsigned scratch = MRI.createVirtualRegister(TRC);
Manman Renb504f492013-10-29 22:27:32 +00007921 emitPostLd(BB, StartOfExit, TII, dl, 1, scratch, srcIn, srcOut,
7922 IsThumb1, IsThumb2);
7923 emitPostSt(BB, StartOfExit, TII, dl, 1, scratch, destIn, destOut,
7924 IsThumb1, IsThumb2);
David Peixottob0653e532013-10-24 16:39:36 +00007925 srcIn = srcOut;
7926 destIn = destOut;
Manman Rene8735522012-06-01 19:33:18 +00007927 }
7928
7929 MI->eraseFromParent(); // The instruction is gone now.
7930 return BB;
7931}
7932
Jim Grosbach8f9a3ac2009-12-12 01:40:06 +00007933MachineBasicBlock *
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00007934ARMTargetLowering::EmitLowered__chkstk(MachineInstr *MI,
7935 MachineBasicBlock *MBB) const {
7936 const TargetMachine &TM = getTargetMachine();
Eric Christopher1889fdc2015-01-29 00:19:39 +00007937 const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00007938 DebugLoc DL = MI->getDebugLoc();
7939
7940 assert(Subtarget->isTargetWindows() &&
7941 "__chkstk is only supported on Windows");
7942 assert(Subtarget->isThumb2() && "Windows on ARM requires Thumb-2 mode");
7943
7944 // __chkstk takes the number of words to allocate on the stack in R4, and
7945 // returns the stack adjustment in number of bytes in R4. This will not
7946 // clober any other registers (other than the obvious lr).
7947 //
7948 // Although, technically, IP should be considered a register which may be
7949 // clobbered, the call itself will not touch it. Windows on ARM is a pure
7950 // thumb-2 environment, so there is no interworking required. As a result, we
7951 // do not expect a veneer to be emitted by the linker, clobbering IP.
7952 //
Alp Toker1d099d92014-06-19 19:41:26 +00007953 // Each module receives its own copy of __chkstk, so no import thunk is
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00007954 // required, again, ensuring that IP is not clobbered.
7955 //
7956 // Finally, although some linkers may theoretically provide a trampoline for
7957 // out of range calls (which is quite common due to a 32M range limitation of
7958 // branches for Thumb), we can generate the long-call version via
7959 // -mcmodel=large, alleviating the need for the trampoline which may clobber
7960 // IP.
7961
7962 switch (TM.getCodeModel()) {
7963 case CodeModel::Small:
7964 case CodeModel::Medium:
7965 case CodeModel::Default:
7966 case CodeModel::Kernel:
7967 BuildMI(*MBB, MI, DL, TII.get(ARM::tBL))
7968 .addImm((unsigned)ARMCC::AL).addReg(0)
7969 .addExternalSymbol("__chkstk")
7970 .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7971 .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7972 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7973 break;
7974 case CodeModel::Large:
7975 case CodeModel::JITDefault: {
7976 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
7977 unsigned Reg = MRI.createVirtualRegister(&ARM::rGPRRegClass);
7978
7979 BuildMI(*MBB, MI, DL, TII.get(ARM::t2MOVi32imm), Reg)
7980 .addExternalSymbol("__chkstk");
7981 BuildMI(*MBB, MI, DL, TII.get(ARM::tBLXr))
7982 .addImm((unsigned)ARMCC::AL).addReg(0)
7983 .addReg(Reg, RegState::Kill)
7984 .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7985 .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7986 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7987 break;
7988 }
7989 }
7990
7991 AddDefaultCC(AddDefaultPred(BuildMI(*MBB, MI, DL, TII.get(ARM::t2SUBrr),
7992 ARM::SP)
Saleem Abdulrasoolc4e00282014-07-19 01:29:51 +00007993 .addReg(ARM::SP).addReg(ARM::R4)));
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00007994
7995 MI->eraseFromParent();
7996 return MBB;
7997}
7998
7999MachineBasicBlock *
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00008000ARMTargetLowering::EmitLowered__dbzchk(MachineInstr *MI,
8001 MachineBasicBlock *MBB) const {
8002 DebugLoc DL = MI->getDebugLoc();
8003 MachineFunction *MF = MBB->getParent();
8004 const TargetInstrInfo *TII = Subtarget->getInstrInfo();
8005
8006 MachineBasicBlock *ContBB = MF->CreateMachineBasicBlock();
8007 MF->push_back(ContBB);
8008 ContBB->splice(ContBB->begin(), MBB,
8009 std::next(MachineBasicBlock::iterator(MI)), MBB->end());
8010 MBB->addSuccessor(ContBB);
8011
8012 MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock();
8013 MF->push_back(TrapBB);
8014 BuildMI(TrapBB, DL, TII->get(ARM::t2UDF)).addImm(249);
8015 MBB->addSuccessor(TrapBB);
8016
8017 BuildMI(*MBB, MI, DL, TII->get(ARM::tCBZ))
8018 .addReg(MI->getOperand(0).getReg())
8019 .addMBB(TrapBB);
8020
8021 MI->eraseFromParent();
8022 return ContBB;
8023}
8024
8025MachineBasicBlock *
Evan Cheng29cfb672008-01-30 18:18:23 +00008026ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman25c16532010-05-01 00:01:06 +00008027 MachineBasicBlock *BB) const {
Eric Christopher1889fdc2015-01-29 00:19:39 +00008028 const TargetInstrInfo *TII = Subtarget->getInstrInfo();
Dale Johannesen7647da62009-02-13 02:25:56 +00008029 DebugLoc dl = MI->getDebugLoc();
Jim Grosbach57ccc192009-12-14 20:14:59 +00008030 bool isThumb2 = Subtarget->isThumb2();
Evan Cheng10043e22007-01-19 07:51:42 +00008031 switch (MI->getOpcode()) {
Andrew Trick0ed57782011-04-23 03:55:32 +00008032 default: {
Jim Grosbach5c4e99f2009-12-11 01:42:04 +00008033 MI->dump();
Evan Chengb972e562009-08-07 00:34:42 +00008034 llvm_unreachable("Unexpected instr type to insert");
Andrew Trick0ed57782011-04-23 03:55:32 +00008035 }
Jim Grosbach9c0b86a2011-09-16 21:55:56 +00008036 // The Thumb2 pre-indexed stores have the same MI operands, they just
8037 // define them differently in the .td files from the isel patterns, so
8038 // they need pseudos.
8039 case ARM::t2STR_preidx:
8040 MI->setDesc(TII->get(ARM::t2STR_PRE));
8041 return BB;
8042 case ARM::t2STRB_preidx:
8043 MI->setDesc(TII->get(ARM::t2STRB_PRE));
8044 return BB;
8045 case ARM::t2STRH_preidx:
8046 MI->setDesc(TII->get(ARM::t2STRH_PRE));
8047 return BB;
8048
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00008049 case ARM::STRi_preidx:
8050 case ARM::STRBi_preidx: {
Jim Grosbach5e80abb2011-08-09 21:22:41 +00008051 unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ?
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00008052 ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM;
8053 // Decode the offset.
8054 unsigned Offset = MI->getOperand(4).getImm();
8055 bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub;
8056 Offset = ARM_AM::getAM2Offset(Offset);
8057 if (isSub)
8058 Offset = -Offset;
8059
Jim Grosbachf402f692011-08-12 21:02:34 +00008060 MachineMemOperand *MMO = *MI->memoperands_begin();
Benjamin Kramer61a1ff52011-08-27 17:36:14 +00008061 BuildMI(*BB, MI, dl, TII->get(NewOpc))
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00008062 .addOperand(MI->getOperand(0)) // Rn_wb
8063 .addOperand(MI->getOperand(1)) // Rt
8064 .addOperand(MI->getOperand(2)) // Rn
8065 .addImm(Offset) // offset (skip GPR==zero_reg)
8066 .addOperand(MI->getOperand(5)) // pred
Jim Grosbachf402f692011-08-12 21:02:34 +00008067 .addOperand(MI->getOperand(6))
8068 .addMemOperand(MMO);
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00008069 MI->eraseFromParent();
8070 return BB;
8071 }
8072 case ARM::STRr_preidx:
Jim Grosbachd886f8c2011-08-11 21:17:22 +00008073 case ARM::STRBr_preidx:
8074 case ARM::STRH_preidx: {
8075 unsigned NewOpc;
8076 switch (MI->getOpcode()) {
8077 default: llvm_unreachable("unexpected opcode!");
8078 case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break;
8079 case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break;
8080 case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break;
8081 }
Jim Grosbachf0c95ca2011-08-05 20:35:44 +00008082 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc));
8083 for (unsigned i = 0; i < MI->getNumOperands(); ++i)
8084 MIB.addOperand(MI->getOperand(i));
8085 MI->eraseFromParent();
8086 return BB;
8087 }
Eli Friedmanc3f9c4a2011-08-31 00:31:29 +00008088
Evan Chengbb2af352009-08-12 05:17:19 +00008089 case ARM::tMOVCCr_pseudo: {
Evan Cheng10043e22007-01-19 07:51:42 +00008090 // To "insert" a SELECT_CC instruction, we actually have to insert the
8091 // diamond control-flow pattern. The incoming instruction knows the
8092 // destination vreg to set, the condition code register to branch on, the
8093 // true/false values to select between, and a branch opcode to use.
8094 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Duncan P. N. Exon Smith9f9559e2015-10-19 23:25:57 +00008095 MachineFunction::iterator It = ++BB->getIterator();
Evan Cheng10043e22007-01-19 07:51:42 +00008096
8097 // thisMBB:
8098 // ...
8099 // TrueVal = ...
8100 // cmpTY ccX, r1, r2
8101 // bCC copy1MBB
8102 // fallthrough --> copy0MBB
8103 MachineBasicBlock *thisMBB = BB;
Dan Gohman3b460302008-07-07 23:14:23 +00008104 MachineFunction *F = BB->getParent();
8105 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
8106 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Dan Gohmanf4f04102010-07-06 15:49:48 +00008107 F->insert(It, copy0MBB);
8108 F->insert(It, sinkMBB);
Dan Gohman34396292010-07-06 20:24:04 +00008109
8110 // Transfer the remainder of BB and its successor edges to sinkMBB.
8111 sinkMBB->splice(sinkMBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00008112 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Dan Gohman34396292010-07-06 20:24:04 +00008113 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
8114
Dan Gohmanf4f04102010-07-06 15:49:48 +00008115 BB->addSuccessor(copy0MBB);
8116 BB->addSuccessor(sinkMBB);
Dan Gohman12205642010-07-06 15:18:19 +00008117
Dan Gohman34396292010-07-06 20:24:04 +00008118 BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
8119 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
8120
Evan Cheng10043e22007-01-19 07:51:42 +00008121 // copy0MBB:
8122 // %FalseValue = ...
8123 // # fallthrough to sinkMBB
8124 BB = copy0MBB;
8125
8126 // Update machine-CFG edges
8127 BB->addSuccessor(sinkMBB);
8128
8129 // sinkMBB:
8130 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
8131 // ...
8132 BB = sinkMBB;
Dan Gohman34396292010-07-06 20:24:04 +00008133 BuildMI(*BB, BB->begin(), dl,
8134 TII->get(ARM::PHI), MI->getOperand(0).getReg())
Evan Cheng10043e22007-01-19 07:51:42 +00008135 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
8136 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
8137
Dan Gohman34396292010-07-06 20:24:04 +00008138 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng10043e22007-01-19 07:51:42 +00008139 return BB;
8140 }
Evan Chengb972e562009-08-07 00:34:42 +00008141
Evan Cheng0cc4ad92010-07-13 19:27:42 +00008142 case ARM::BCCi64:
8143 case ARM::BCCZi64: {
Bob Wilson36be00c2010-12-23 22:45:49 +00008144 // If there is an unconditional branch to the other successor, remove it.
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00008145 BB->erase(std::next(MachineBasicBlock::iterator(MI)), BB->end());
Andrew Trick5eb0a302011-01-19 02:26:13 +00008146
Evan Cheng0cc4ad92010-07-13 19:27:42 +00008147 // Compare both parts that make up the double comparison separately for
8148 // equality.
8149 bool RHSisZero = MI->getOpcode() == ARM::BCCZi64;
8150
8151 unsigned LHS1 = MI->getOperand(1).getReg();
8152 unsigned LHS2 = MI->getOperand(2).getReg();
8153 if (RHSisZero) {
8154 AddDefaultPred(BuildMI(BB, dl,
8155 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
8156 .addReg(LHS1).addImm(0));
8157 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
8158 .addReg(LHS2).addImm(0)
8159 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
8160 } else {
8161 unsigned RHS1 = MI->getOperand(3).getReg();
8162 unsigned RHS2 = MI->getOperand(4).getReg();
8163 AddDefaultPred(BuildMI(BB, dl,
8164 TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
8165 .addReg(LHS1).addReg(RHS1));
8166 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
8167 .addReg(LHS2).addReg(RHS2)
8168 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
8169 }
8170
8171 MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB();
8172 MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
8173 if (MI->getOperand(0).getImm() == ARMCC::NE)
8174 std::swap(destMBB, exitMBB);
8175
8176 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
8177 .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR);
Owen Anderson29cfe6c2011-09-09 21:48:23 +00008178 if (isThumb2)
8179 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB));
8180 else
8181 BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB);
Evan Cheng0cc4ad92010-07-13 19:27:42 +00008182
8183 MI->eraseFromParent(); // The pseudo instruction is gone now.
8184 return BB;
8185 }
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008186
Bill Wendlingf7f223f2011-10-17 20:37:20 +00008187 case ARM::Int_eh_sjlj_setjmp:
8188 case ARM::Int_eh_sjlj_setjmp_nofp:
8189 case ARM::tInt_eh_sjlj_setjmp:
8190 case ARM::t2Int_eh_sjlj_setjmp:
8191 case ARM::t2Int_eh_sjlj_setjmp_nofp:
Matthias Braun3cd00c12015-07-16 22:34:16 +00008192 return BB;
8193
8194 case ARM::Int_eh_sjlj_setup_dispatch:
Bill Wendlingf7f223f2011-10-17 20:37:20 +00008195 EmitSjLjDispatchBlock(MI, BB);
8196 return BB;
8197
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008198 case ARM::ABS:
8199 case ARM::t2ABS: {
8200 // To insert an ABS instruction, we have to insert the
8201 // diamond control-flow pattern. The incoming instruction knows the
8202 // source vreg to test against 0, the destination vreg to set,
8203 // the condition code register to branch on, the
Andrew Trick3f07c422011-10-18 18:40:53 +00008204 // true/false values to select between, and a branch opcode to use.
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008205 // It transforms
8206 // V1 = ABS V0
8207 // into
8208 // V2 = MOVS V0
8209 // BCC (branch to SinkBB if V0 >= 0)
8210 // RSBBB: V3 = RSBri V2, 0 (compute ABS if V2 < 0)
Andrew Trick3f07c422011-10-18 18:40:53 +00008211 // SinkBB: V1 = PHI(V2, V3)
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008212 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Duncan P. N. Exon Smith9f9559e2015-10-19 23:25:57 +00008213 MachineFunction::iterator BBI = ++BB->getIterator();
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008214 MachineFunction *Fn = BB->getParent();
8215 MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB);
8216 MachineBasicBlock *SinkBB = Fn->CreateMachineBasicBlock(LLVM_BB);
8217 Fn->insert(BBI, RSBBB);
8218 Fn->insert(BBI, SinkBB);
8219
8220 unsigned int ABSSrcReg = MI->getOperand(1).getReg();
8221 unsigned int ABSDstReg = MI->getOperand(0).getReg();
Pete Cooper51118812015-04-30 22:15:59 +00008222 bool ABSSrcKIll = MI->getOperand(1).isKill();
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008223 bool isThumb2 = Subtarget->isThumb2();
8224 MachineRegisterInfo &MRI = Fn->getRegInfo();
8225 // In Thumb mode S must not be specified if source register is the SP or
8226 // PC and if destination register is the SP, so restrict register class
Craig Topper61e88f42014-11-21 05:58:21 +00008227 unsigned NewRsbDstReg =
8228 MRI.createVirtualRegister(isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRRegClass);
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008229
8230 // Transfer the remainder of BB and its successor edges to sinkMBB.
8231 SinkBB->splice(SinkBB->begin(), BB,
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00008232 std::next(MachineBasicBlock::iterator(MI)), BB->end());
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008233 SinkBB->transferSuccessorsAndUpdatePHIs(BB);
8234
8235 BB->addSuccessor(RSBBB);
8236 BB->addSuccessor(SinkBB);
8237
8238 // fall through to SinkMBB
8239 RSBBB->addSuccessor(SinkBB);
8240
Manman Rene0763c72012-06-15 21:32:12 +00008241 // insert a cmp at the end of BB
Andrew Trickbc325162012-07-18 18:34:24 +00008242 AddDefaultPred(BuildMI(BB, dl,
Manman Rene0763c72012-06-15 21:32:12 +00008243 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
8244 .addReg(ABSSrcReg).addImm(0));
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008245
8246 // insert a bcc with opposite CC to ARMCC::MI at the end of BB
Andrew Trick3f07c422011-10-18 18:40:53 +00008247 BuildMI(BB, dl,
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008248 TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB)
8249 .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR);
8250
8251 // insert rsbri in RSBBB
8252 // Note: BCC and rsbri will be converted into predicated rsbmi
8253 // by if-conversion pass
Andrew Trick3f07c422011-10-18 18:40:53 +00008254 BuildMI(*RSBBB, RSBBB->begin(), dl,
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008255 TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg)
Pete Cooper51118812015-04-30 22:15:59 +00008256 .addReg(ABSSrcReg, ABSSrcKIll ? RegState::Kill : 0)
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008257 .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
8258
Andrew Trick3f07c422011-10-18 18:40:53 +00008259 // insert PHI in SinkBB,
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008260 // reuse ABSDstReg to not change uses of ABS instruction
8261 BuildMI(*SinkBB, SinkBB->begin(), dl,
8262 TII->get(ARM::PHI), ABSDstReg)
8263 .addReg(NewRsbDstReg).addMBB(RSBBB)
Manman Rene0763c72012-06-15 21:32:12 +00008264 .addReg(ABSSrcReg).addMBB(BB);
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008265
8266 // remove ABS instruction
Andrew Trick3f07c422011-10-18 18:40:53 +00008267 MI->eraseFromParent();
Bill Wendlinga7d697e2011-10-10 22:59:55 +00008268
8269 // return last added BB
8270 return SinkBB;
8271 }
Manman Rene8735522012-06-01 19:33:18 +00008272 case ARM::COPY_STRUCT_BYVAL_I32:
Manman Ren9f911162012-06-01 02:44:42 +00008273 ++NumLoopByVals;
Manman Rene8735522012-06-01 19:33:18 +00008274 return EmitStructByval(MI, BB);
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +00008275 case ARM::WIN__CHKSTK:
8276 return EmitLowered__chkstk(MI, BB);
Saleem Abdulrasoolfe83b502015-09-25 05:15:46 +00008277 case ARM::WIN__DBZCHK:
8278 return EmitLowered__dbzchk(MI, BB);
Evan Cheng10043e22007-01-19 07:51:42 +00008279 }
8280}
8281
Scott Douglass953f9082015-10-05 14:49:54 +00008282/// \brief Attaches vregs to MEMCPY that it will use as scratch registers
8283/// when it is expanded into LDM/STM. This is done as a post-isel lowering
8284/// instead of as a custom inserter because we need the use list from the SDNode.
8285static void attachMEMCPYScratchRegs(const ARMSubtarget *Subtarget,
8286 MachineInstr *MI, const SDNode *Node) {
8287 bool isThumb1 = Subtarget->isThumb1Only();
8288
8289 DebugLoc DL = MI->getDebugLoc();
8290 MachineFunction *MF = MI->getParent()->getParent();
8291 MachineRegisterInfo &MRI = MF->getRegInfo();
8292 MachineInstrBuilder MIB(*MF, MI);
8293
8294 // If the new dst/src is unused mark it as dead.
8295 if (!Node->hasAnyUseOfValue(0)) {
8296 MI->getOperand(0).setIsDead(true);
8297 }
8298 if (!Node->hasAnyUseOfValue(1)) {
8299 MI->getOperand(1).setIsDead(true);
8300 }
8301
8302 // The MEMCPY both defines and kills the scratch registers.
8303 for (unsigned I = 0; I != MI->getOperand(4).getImm(); ++I) {
8304 unsigned TmpReg = MRI.createVirtualRegister(isThumb1 ? &ARM::tGPRRegClass
8305 : &ARM::GPRRegClass);
8306 MIB.addReg(TmpReg, RegState::Define|RegState::Dead);
8307 }
8308}
8309
Evan Chenge6fba772011-08-30 19:09:48 +00008310void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI,
8311 SDNode *Node) const {
Scott Douglass953f9082015-10-05 14:49:54 +00008312 if (MI->getOpcode() == ARM::MEMCPY) {
8313 attachMEMCPYScratchRegs(Subtarget, MI, Node);
8314 return;
8315 }
8316
Evan Cheng7f8e5632011-12-07 07:15:52 +00008317 const MCInstrDesc *MCID = &MI->getDesc();
Andrew Trick8586e622011-09-20 03:17:40 +00008318 // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB,
8319 // RSC. Coming out of isel, they have an implicit CPSR def, but the optional
8320 // operand is still set to noreg. If needed, set the optional operand's
8321 // register to CPSR, and remove the redundant implicit def.
Andrew Trick924123a2011-09-21 02:20:46 +00008322 //
Andrew Trick88b24502011-10-18 19:18:52 +00008323 // e.g. ADCS (..., CPSR<imp-def>) -> ADC (... opt:CPSR<def>).
Andrew Trick8586e622011-09-20 03:17:40 +00008324
Andrew Trick924123a2011-09-21 02:20:46 +00008325 // Rename pseudo opcodes.
8326 unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode());
8327 if (NewOpc) {
Eric Christopher1889fdc2015-01-29 00:19:39 +00008328 const ARMBaseInstrInfo *TII = Subtarget->getInstrInfo();
Andrew Trick88b24502011-10-18 19:18:52 +00008329 MCID = &TII->get(NewOpc);
8330
8331 assert(MCID->getNumOperands() == MI->getDesc().getNumOperands() + 1 &&
8332 "converted opcode should be the same except for cc_out");
8333
8334 MI->setDesc(*MCID);
8335
8336 // Add the optional cc_out operand
8337 MI->addOperand(MachineOperand::CreateReg(0, /*isDef=*/true));
Andrew Trick924123a2011-09-21 02:20:46 +00008338 }
Andrew Trick88b24502011-10-18 19:18:52 +00008339 unsigned ccOutIdx = MCID->getNumOperands() - 1;
Andrew Trick8586e622011-09-20 03:17:40 +00008340
8341 // Any ARM instruction that sets the 's' bit should specify an optional
8342 // "cc_out" operand in the last operand position.
Evan Cheng7f8e5632011-12-07 07:15:52 +00008343 if (!MI->hasOptionalDef() || !MCID->OpInfo[ccOutIdx].isOptionalDef()) {
Andrew Trick924123a2011-09-21 02:20:46 +00008344 assert(!NewOpc && "Optional cc_out operand required");
Andrew Trick8586e622011-09-20 03:17:40 +00008345 return;
8346 }
Andrew Trick924123a2011-09-21 02:20:46 +00008347 // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it
8348 // since we already have an optional CPSR def.
Andrew Trick8586e622011-09-20 03:17:40 +00008349 bool definesCPSR = false;
8350 bool deadCPSR = false;
Andrew Trick88b24502011-10-18 19:18:52 +00008351 for (unsigned i = MCID->getNumOperands(), e = MI->getNumOperands();
Andrew Trick8586e622011-09-20 03:17:40 +00008352 i != e; ++i) {
8353 const MachineOperand &MO = MI->getOperand(i);
8354 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) {
8355 definesCPSR = true;
8356 if (MO.isDead())
8357 deadCPSR = true;
8358 MI->RemoveOperand(i);
8359 break;
Evan Chenge6fba772011-08-30 19:09:48 +00008360 }
8361 }
Andrew Trick8586e622011-09-20 03:17:40 +00008362 if (!definesCPSR) {
Andrew Trick924123a2011-09-21 02:20:46 +00008363 assert(!NewOpc && "Optional cc_out operand required");
Andrew Trick8586e622011-09-20 03:17:40 +00008364 return;
8365 }
8366 assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag");
Andrew Trick924123a2011-09-21 02:20:46 +00008367 if (deadCPSR) {
8368 assert(!MI->getOperand(ccOutIdx).getReg() &&
8369 "expect uninitialized optional cc_out operand");
Andrew Trick8586e622011-09-20 03:17:40 +00008370 return;
Andrew Trick924123a2011-09-21 02:20:46 +00008371 }
Andrew Trick8586e622011-09-20 03:17:40 +00008372
Andrew Trick924123a2011-09-21 02:20:46 +00008373 // If this instruction was defined with an optional CPSR def and its dag node
8374 // had a live implicit CPSR def, then activate the optional CPSR def.
Andrew Trick8586e622011-09-20 03:17:40 +00008375 MachineOperand &MO = MI->getOperand(ccOutIdx);
8376 MO.setReg(ARM::CPSR);
8377 MO.setIsDef(true);
Evan Chenge6fba772011-08-30 19:09:48 +00008378}
8379
Evan Cheng10043e22007-01-19 07:51:42 +00008380//===----------------------------------------------------------------------===//
8381// ARM Optimization Hooks
8382//===----------------------------------------------------------------------===//
8383
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00008384// Helper function that checks if N is a null or all ones constant.
8385static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) {
Artyom Skrobov314ee042015-11-25 19:41:11 +00008386 return AllOnes ? isAllOnesConstant(N) : isNullConstant(N);
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00008387}
8388
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008389// Return true if N is conditionally 0 or all ones.
8390// Detects these expressions where cc is an i1 value:
8391//
8392// (select cc 0, y) [AllOnes=0]
8393// (select cc y, 0) [AllOnes=0]
8394// (zext cc) [AllOnes=0]
8395// (sext cc) [AllOnes=0/1]
8396// (select cc -1, y) [AllOnes=1]
8397// (select cc y, -1) [AllOnes=1]
8398//
8399// Invert is set when N is the null/all ones constant when CC is false.
8400// OtherOp is set to the alternative value of N.
8401static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes,
8402 SDValue &CC, bool &Invert,
8403 SDValue &OtherOp,
8404 SelectionDAG &DAG) {
8405 switch (N->getOpcode()) {
8406 default: return false;
8407 case ISD::SELECT: {
8408 CC = N->getOperand(0);
8409 SDValue N1 = N->getOperand(1);
8410 SDValue N2 = N->getOperand(2);
8411 if (isZeroOrAllOnes(N1, AllOnes)) {
8412 Invert = false;
8413 OtherOp = N2;
8414 return true;
8415 }
8416 if (isZeroOrAllOnes(N2, AllOnes)) {
8417 Invert = true;
8418 OtherOp = N1;
8419 return true;
8420 }
8421 return false;
8422 }
8423 case ISD::ZERO_EXTEND:
8424 // (zext cc) can never be the all ones value.
8425 if (AllOnes)
8426 return false;
8427 // Fall through.
8428 case ISD::SIGN_EXTEND: {
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008429 SDLoc dl(N);
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008430 EVT VT = N->getValueType(0);
8431 CC = N->getOperand(0);
8432 if (CC.getValueType() != MVT::i1)
8433 return false;
8434 Invert = !AllOnes;
8435 if (AllOnes)
8436 // When looking for an AllOnes constant, N is an sext, and the 'other'
8437 // value is 0.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008438 OtherOp = DAG.getConstant(0, dl, VT);
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008439 else if (N->getOpcode() == ISD::ZERO_EXTEND)
8440 // When looking for a 0 constant, N can be zext or sext.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008441 OtherOp = DAG.getConstant(1, dl, VT);
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008442 else
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008443 OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl,
8444 VT);
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008445 return true;
8446 }
8447 }
8448}
8449
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00008450// Combine a constant select operand into its use:
8451//
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008452// (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
8453// (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
8454// (and (select cc, -1, c), x) -> (select cc, x, (and, x, c)) [AllOnes=1]
8455// (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
8456// (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00008457//
8458// The transform is rejected if the select doesn't have a constant operand that
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008459// is null, or all ones when AllOnes is set.
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00008460//
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008461// Also recognize sext/zext from i1:
8462//
8463// (add (zext cc), x) -> (select cc (add x, 1), x)
8464// (add (sext cc), x) -> (select cc (add x, -1), x)
8465//
8466// These transformations eventually create predicated instructions.
8467//
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00008468// @param N The node to transform.
8469// @param Slct The N operand that is a select.
8470// @param OtherOp The other N operand (x above).
8471// @param DCI Context.
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008472// @param AllOnes Require the select constant to be all ones instead of null.
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00008473// @returns The new node, or SDValue() on failure.
Chris Lattner4147f082009-03-12 06:52:53 +00008474static
8475SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008476 TargetLowering::DAGCombinerInfo &DCI,
8477 bool AllOnes = false) {
Chris Lattner4147f082009-03-12 06:52:53 +00008478 SelectionDAG &DAG = DCI.DAG;
Owen Anderson53aa7a92009-08-10 22:56:29 +00008479 EVT VT = N->getValueType(0);
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008480 SDValue NonConstantVal;
8481 SDValue CCOp;
8482 bool SwapSelectOps;
8483 if (!isConditionalZeroOrAllOnes(Slct.getNode(), AllOnes, CCOp, SwapSelectOps,
8484 NonConstantVal, DAG))
Jakob Stoklund Olesenc1dee482012-08-17 16:59:09 +00008485 return SDValue();
8486
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008487 // Slct is now know to be the desired identity constant when CC is true.
8488 SDValue TrueVal = OtherOp;
Andrew Trickef9de2a2013-05-25 02:42:55 +00008489 SDValue FalseVal = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008490 OtherOp, NonConstantVal);
8491 // Unless SwapSelectOps says CC should be false.
8492 if (SwapSelectOps)
8493 std::swap(TrueVal, FalseVal);
8494
Andrew Trickef9de2a2013-05-25 02:42:55 +00008495 return DAG.getNode(ISD::SELECT, SDLoc(N), VT,
Jakob Stoklund Olesendded0612012-08-18 21:25:22 +00008496 CCOp, TrueVal, FalseVal);
Chris Lattner4147f082009-03-12 06:52:53 +00008497}
8498
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008499// Attempt combineSelectAndUse on each operand of a commutative operator N.
8500static
8501SDValue combineSelectAndUseCommutative(SDNode *N, bool AllOnes,
8502 TargetLowering::DAGCombinerInfo &DCI) {
8503 SDValue N0 = N->getOperand(0);
8504 SDValue N1 = N->getOperand(1);
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00008505 if (N0.getNode()->hasOneUse())
8506 if (SDValue Result = combineSelectAndUse(N, N0, N1, DCI, AllOnes))
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008507 return Result;
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00008508 if (N1.getNode()->hasOneUse())
8509 if (SDValue Result = combineSelectAndUse(N, N1, N0, DCI, AllOnes))
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008510 return Result;
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008511 return SDValue();
8512}
8513
Eric Christopher1b8b94192011-06-29 21:10:36 +00008514// AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction
Tanya Lattnere9e67052011-06-14 23:48:48 +00008515// (only after legalization).
8516static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1,
8517 TargetLowering::DAGCombinerInfo &DCI,
8518 const ARMSubtarget *Subtarget) {
8519
8520 // Only perform optimization if after legalize, and if NEON is available. We
8521 // also expected both operands to be BUILD_VECTORs.
8522 if (DCI.isBeforeLegalize() || !Subtarget->hasNEON()
8523 || N0.getOpcode() != ISD::BUILD_VECTOR
8524 || N1.getOpcode() != ISD::BUILD_VECTOR)
8525 return SDValue();
8526
8527 // Check output type since VPADDL operand elements can only be 8, 16, or 32.
8528 EVT VT = N->getValueType(0);
8529 if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64)
8530 return SDValue();
8531
8532 // Check that the vector operands are of the right form.
8533 // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR
8534 // operands, where N is the size of the formed vector.
8535 // Each EXTRACT_VECTOR should have the same input vector and odd or even
8536 // index such that we have a pair wise add pattern.
Tanya Lattnere9e67052011-06-14 23:48:48 +00008537
8538 // Grab the vector that all EXTRACT_VECTOR nodes should be referencing.
Bob Wilson4b12a112011-06-15 06:04:34 +00008539 if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
Tanya Lattnere9e67052011-06-14 23:48:48 +00008540 return SDValue();
Bob Wilson4b12a112011-06-15 06:04:34 +00008541 SDValue Vec = N0->getOperand(0)->getOperand(0);
8542 SDNode *V = Vec.getNode();
8543 unsigned nextIndex = 0;
Tanya Lattnere9e67052011-06-14 23:48:48 +00008544
Eric Christopher1b8b94192011-06-29 21:10:36 +00008545 // For each operands to the ADD which are BUILD_VECTORs,
Tanya Lattnere9e67052011-06-14 23:48:48 +00008546 // check to see if each of their operands are an EXTRACT_VECTOR with
8547 // the same vector and appropriate index.
8548 for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) {
8549 if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT
8550 && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
Eric Christopher1b8b94192011-06-29 21:10:36 +00008551
Tanya Lattnere9e67052011-06-14 23:48:48 +00008552 SDValue ExtVec0 = N0->getOperand(i);
8553 SDValue ExtVec1 = N1->getOperand(i);
Eric Christopher1b8b94192011-06-29 21:10:36 +00008554
Tanya Lattnere9e67052011-06-14 23:48:48 +00008555 // First operand is the vector, verify its the same.
8556 if (V != ExtVec0->getOperand(0).getNode() ||
8557 V != ExtVec1->getOperand(0).getNode())
8558 return SDValue();
Eric Christopher1b8b94192011-06-29 21:10:36 +00008559
Tanya Lattnere9e67052011-06-14 23:48:48 +00008560 // Second is the constant, verify its correct.
8561 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1));
8562 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1));
Eric Christopher1b8b94192011-06-29 21:10:36 +00008563
Tanya Lattnere9e67052011-06-14 23:48:48 +00008564 // For the constant, we want to see all the even or all the odd.
8565 if (!C0 || !C1 || C0->getZExtValue() != nextIndex
8566 || C1->getZExtValue() != nextIndex+1)
8567 return SDValue();
8568
8569 // Increment index.
8570 nextIndex+=2;
Eric Christopher1b8b94192011-06-29 21:10:36 +00008571 } else
Tanya Lattnere9e67052011-06-14 23:48:48 +00008572 return SDValue();
8573 }
8574
8575 // Create VPADDL node.
8576 SelectionDAG &DAG = DCI.DAG;
8577 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Tanya Lattnere9e67052011-06-14 23:48:48 +00008578
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008579 SDLoc dl(N);
8580
Tanya Lattnere9e67052011-06-14 23:48:48 +00008581 // Build operand list.
8582 SmallVector<SDValue, 8> Ops;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008583 Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls, dl,
Mehdi Amini44ede332015-07-09 02:09:04 +00008584 TLI.getPointerTy(DAG.getDataLayout())));
Tanya Lattnere9e67052011-06-14 23:48:48 +00008585
8586 // Input is the vector.
8587 Ops.push_back(Vec);
Eric Christopher1b8b94192011-06-29 21:10:36 +00008588
Tanya Lattnere9e67052011-06-14 23:48:48 +00008589 // Get widened type and narrowed type.
8590 MVT widenType;
8591 unsigned numElem = VT.getVectorNumElements();
Junmo Park1108ab02016-02-19 01:46:04 +00008592
Silviu Barangaa3106e62014-04-03 10:44:27 +00008593 EVT inputLaneType = Vec.getValueType().getVectorElementType();
8594 switch (inputLaneType.getSimpleVT().SimpleTy) {
Tanya Lattnere9e67052011-06-14 23:48:48 +00008595 case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break;
8596 case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break;
8597 case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break;
8598 default:
Craig Toppere55c5562012-02-07 02:50:20 +00008599 llvm_unreachable("Invalid vector element type for padd optimization.");
Tanya Lattnere9e67052011-06-14 23:48:48 +00008600 }
8601
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008602 SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, widenType, Ops);
Silviu Barangaa3106e62014-04-03 10:44:27 +00008603 unsigned ExtOp = VT.bitsGT(tmp.getValueType()) ? ISD::ANY_EXTEND : ISD::TRUNCATE;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008604 return DAG.getNode(ExtOp, dl, VT, tmp);
Tanya Lattnere9e67052011-06-14 23:48:48 +00008605}
8606
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008607static SDValue findMUL_LOHI(SDValue V) {
8608 if (V->getOpcode() == ISD::UMUL_LOHI ||
8609 V->getOpcode() == ISD::SMUL_LOHI)
8610 return V;
8611 return SDValue();
8612}
8613
8614static SDValue AddCombineTo64bitMLAL(SDNode *AddcNode,
8615 TargetLowering::DAGCombinerInfo &DCI,
8616 const ARMSubtarget *Subtarget) {
8617
8618 if (Subtarget->isThumb1Only()) return SDValue();
8619
8620 // Only perform the checks after legalize when the pattern is available.
8621 if (DCI.isBeforeLegalize()) return SDValue();
8622
8623 // Look for multiply add opportunities.
8624 // The pattern is a ISD::UMUL_LOHI followed by two add nodes, where
8625 // each add nodes consumes a value from ISD::UMUL_LOHI and there is
8626 // a glue link from the first add to the second add.
8627 // If we find this pattern, we can replace the U/SMUL_LOHI, ADDC, and ADDE by
8628 // a S/UMLAL instruction.
Matthias Braun60912082015-05-20 18:40:06 +00008629 // UMUL_LOHI
8630 // / :lo \ :hi
8631 // / \ [no multiline comment]
8632 // loAdd -> ADDE |
8633 // \ :glue /
8634 // \ /
8635 // ADDC <- hiAdd
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008636 //
8637 assert(AddcNode->getOpcode() == ISD::ADDC && "Expect an ADDC");
8638 SDValue AddcOp0 = AddcNode->getOperand(0);
8639 SDValue AddcOp1 = AddcNode->getOperand(1);
8640
8641 // Check if the two operands are from the same mul_lohi node.
8642 if (AddcOp0.getNode() == AddcOp1.getNode())
8643 return SDValue();
8644
8645 assert(AddcNode->getNumValues() == 2 &&
8646 AddcNode->getValueType(0) == MVT::i32 &&
Michael Gottesmanb2a70562013-06-18 20:49:40 +00008647 "Expect ADDC with two result values. First: i32");
8648
8649 // Check that we have a glued ADDC node.
8650 if (AddcNode->getValueType(1) != MVT::Glue)
8651 return SDValue();
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008652
8653 // Check that the ADDC adds the low result of the S/UMUL_LOHI.
8654 if (AddcOp0->getOpcode() != ISD::UMUL_LOHI &&
8655 AddcOp0->getOpcode() != ISD::SMUL_LOHI &&
8656 AddcOp1->getOpcode() != ISD::UMUL_LOHI &&
8657 AddcOp1->getOpcode() != ISD::SMUL_LOHI)
8658 return SDValue();
8659
8660 // Look for the glued ADDE.
8661 SDNode* AddeNode = AddcNode->getGluedUser();
Craig Topper062a2ba2014-04-25 05:30:21 +00008662 if (!AddeNode)
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008663 return SDValue();
8664
8665 // Make sure it is really an ADDE.
8666 if (AddeNode->getOpcode() != ISD::ADDE)
8667 return SDValue();
8668
8669 assert(AddeNode->getNumOperands() == 3 &&
8670 AddeNode->getOperand(2).getValueType() == MVT::Glue &&
8671 "ADDE node has the wrong inputs");
8672
8673 // Check for the triangle shape.
8674 SDValue AddeOp0 = AddeNode->getOperand(0);
8675 SDValue AddeOp1 = AddeNode->getOperand(1);
8676
8677 // Make sure that the ADDE operands are not coming from the same node.
8678 if (AddeOp0.getNode() == AddeOp1.getNode())
8679 return SDValue();
8680
8681 // Find the MUL_LOHI node walking up ADDE's operands.
8682 bool IsLeftOperandMUL = false;
8683 SDValue MULOp = findMUL_LOHI(AddeOp0);
8684 if (MULOp == SDValue())
8685 MULOp = findMUL_LOHI(AddeOp1);
8686 else
8687 IsLeftOperandMUL = true;
8688 if (MULOp == SDValue())
Jyoti Allurf1d70502015-01-23 09:10:03 +00008689 return SDValue();
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008690
8691 // Figure out the right opcode.
8692 unsigned Opc = MULOp->getOpcode();
8693 unsigned FinalOpc = (Opc == ISD::SMUL_LOHI) ? ARMISD::SMLAL : ARMISD::UMLAL;
8694
8695 // Figure out the high and low input values to the MLAL node.
Craig Topper062a2ba2014-04-25 05:30:21 +00008696 SDValue* HiAdd = nullptr;
8697 SDValue* LoMul = nullptr;
8698 SDValue* LowAdd = nullptr;
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008699
Jyoti Allurf1d70502015-01-23 09:10:03 +00008700 // Ensure that ADDE is from high result of ISD::SMUL_LOHI.
8701 if ((AddeOp0 != MULOp.getValue(1)) && (AddeOp1 != MULOp.getValue(1)))
8702 return SDValue();
8703
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008704 if (IsLeftOperandMUL)
8705 HiAdd = &AddeOp1;
8706 else
8707 HiAdd = &AddeOp0;
8708
8709
Jyoti Allurf1d70502015-01-23 09:10:03 +00008710 // Ensure that LoMul and LowAdd are taken from correct ISD::SMUL_LOHI node
8711 // whose low result is fed to the ADDC we are checking.
8712
8713 if (AddcOp0 == MULOp.getValue(0)) {
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008714 LoMul = &AddcOp0;
8715 LowAdd = &AddcOp1;
8716 }
Jyoti Allurf1d70502015-01-23 09:10:03 +00008717 if (AddcOp1 == MULOp.getValue(0)) {
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008718 LoMul = &AddcOp1;
8719 LowAdd = &AddcOp0;
8720 }
8721
Craig Topper062a2ba2014-04-25 05:30:21 +00008722 if (!LoMul)
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008723 return SDValue();
8724
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008725 // Create the merged node.
8726 SelectionDAG &DAG = DCI.DAG;
8727
8728 // Build operand list.
8729 SmallVector<SDValue, 8> Ops;
8730 Ops.push_back(LoMul->getOperand(0));
8731 Ops.push_back(LoMul->getOperand(1));
8732 Ops.push_back(*LowAdd);
8733 Ops.push_back(*HiAdd);
8734
Andrew Trickef9de2a2013-05-25 02:42:55 +00008735 SDValue MLALNode = DAG.getNode(FinalOpc, SDLoc(AddcNode),
Craig Topper48d114b2014-04-26 18:35:24 +00008736 DAG.getVTList(MVT::i32, MVT::i32), Ops);
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +00008737
8738 // Replace the ADDs' nodes uses by the MLA node's values.
8739 SDValue HiMLALResult(MLALNode.getNode(), 1);
8740 DAG.ReplaceAllUsesOfValueWith(SDValue(AddeNode, 0), HiMLALResult);
8741
8742 SDValue LoMLALResult(MLALNode.getNode(), 0);
8743 DAG.ReplaceAllUsesOfValueWith(SDValue(AddcNode, 0), LoMLALResult);
8744
8745 // Return original node to notify the driver to stop replacing.
8746 SDValue resNode(AddcNode, 0);
8747 return resNode;
8748}
8749
8750/// PerformADDCCombine - Target-specific dag combine transform from
8751/// ISD::ADDC, ISD::ADDE, and ISD::MUL_LOHI to MLAL.
8752static SDValue PerformADDCCombine(SDNode *N,
8753 TargetLowering::DAGCombinerInfo &DCI,
8754 const ARMSubtarget *Subtarget) {
8755
8756 return AddCombineTo64bitMLAL(N, DCI, Subtarget);
8757
8758}
8759
Bob Wilson728eb292010-07-29 20:34:14 +00008760/// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
8761/// operands N0 and N1. This is a helper for PerformADDCombine that is
8762/// called with the default operands, and if that fails, with commuted
8763/// operands.
8764static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1,
Tanya Lattnere9e67052011-06-14 23:48:48 +00008765 TargetLowering::DAGCombinerInfo &DCI,
8766 const ARMSubtarget *Subtarget){
8767
8768 // Attempt to create vpaddl for this add.
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00008769 if (SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget))
Tanya Lattnere9e67052011-06-14 23:48:48 +00008770 return Result;
Eric Christopher1b8b94192011-06-29 21:10:36 +00008771
Chris Lattner4147f082009-03-12 06:52:53 +00008772 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00008773 if (N0.getNode()->hasOneUse())
8774 if (SDValue Result = combineSelectAndUse(N, N0, N1, DCI))
8775 return Result;
Chris Lattner4147f082009-03-12 06:52:53 +00008776 return SDValue();
8777}
8778
Bob Wilson728eb292010-07-29 20:34:14 +00008779/// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
8780///
8781static SDValue PerformADDCombine(SDNode *N,
Tanya Lattnere9e67052011-06-14 23:48:48 +00008782 TargetLowering::DAGCombinerInfo &DCI,
8783 const ARMSubtarget *Subtarget) {
Bob Wilson728eb292010-07-29 20:34:14 +00008784 SDValue N0 = N->getOperand(0);
8785 SDValue N1 = N->getOperand(1);
8786
8787 // First try with the default operand order.
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00008788 if (SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget))
Bob Wilson728eb292010-07-29 20:34:14 +00008789 return Result;
8790
8791 // If that didn't work, try again with the operands commuted.
Tanya Lattnere9e67052011-06-14 23:48:48 +00008792 return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget);
Bob Wilson728eb292010-07-29 20:34:14 +00008793}
8794
Chris Lattner4147f082009-03-12 06:52:53 +00008795/// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
Bob Wilson728eb292010-07-29 20:34:14 +00008796///
Chris Lattner4147f082009-03-12 06:52:53 +00008797static SDValue PerformSUBCombine(SDNode *N,
8798 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson728eb292010-07-29 20:34:14 +00008799 SDValue N0 = N->getOperand(0);
8800 SDValue N1 = N->getOperand(1);
Bob Wilson7117a912009-03-20 22:42:55 +00008801
Chris Lattner4147f082009-03-12 06:52:53 +00008802 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00008803 if (N1.getNode()->hasOneUse())
8804 if (SDValue Result = combineSelectAndUse(N, N1, N0, DCI))
8805 return Result;
Bob Wilson7117a912009-03-20 22:42:55 +00008806
Chris Lattner4147f082009-03-12 06:52:53 +00008807 return SDValue();
8808}
8809
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008810/// PerformVMULCombine
8811/// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the
8812/// special multiplier accumulator forwarding.
8813/// vmul d3, d0, d2
8814/// vmla d3, d1, d2
8815/// is faster than
8816/// vadd d3, d0, d1
8817/// vmul d3, d3, d2
Weiming Zhao2052f482013-09-25 23:12:06 +00008818// However, for (A + B) * (A + B),
8819// vadd d2, d0, d1
8820// vmul d3, d0, d2
8821// vmla d3, d1, d2
8822// is slower than
8823// vadd d2, d0, d1
8824// vmul d3, d2, d2
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008825static SDValue PerformVMULCombine(SDNode *N,
8826 TargetLowering::DAGCombinerInfo &DCI,
8827 const ARMSubtarget *Subtarget) {
8828 if (!Subtarget->hasVMLxForwarding())
8829 return SDValue();
8830
8831 SelectionDAG &DAG = DCI.DAG;
8832 SDValue N0 = N->getOperand(0);
8833 SDValue N1 = N->getOperand(1);
8834 unsigned Opcode = N0.getOpcode();
8835 if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
8836 Opcode != ISD::FADD && Opcode != ISD::FSUB) {
Chad Rosier27301622011-06-16 01:21:54 +00008837 Opcode = N1.getOpcode();
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008838 if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
8839 Opcode != ISD::FADD && Opcode != ISD::FSUB)
8840 return SDValue();
8841 std::swap(N0, N1);
8842 }
8843
Weiming Zhao2052f482013-09-25 23:12:06 +00008844 if (N0 == N1)
8845 return SDValue();
8846
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008847 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00008848 SDLoc DL(N);
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008849 SDValue N00 = N0->getOperand(0);
8850 SDValue N01 = N0->getOperand(1);
8851 return DAG.getNode(Opcode, DL, VT,
8852 DAG.getNode(ISD::MUL, DL, VT, N00, N1),
8853 DAG.getNode(ISD::MUL, DL, VT, N01, N1));
8854}
8855
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008856static SDValue PerformMULCombine(SDNode *N,
8857 TargetLowering::DAGCombinerInfo &DCI,
8858 const ARMSubtarget *Subtarget) {
8859 SelectionDAG &DAG = DCI.DAG;
8860
8861 if (Subtarget->isThumb1Only())
8862 return SDValue();
8863
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008864 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8865 return SDValue();
8866
8867 EVT VT = N->getValueType(0);
Evan Cheng38bf5ad2011-03-31 19:38:48 +00008868 if (VT.is64BitVector() || VT.is128BitVector())
8869 return PerformVMULCombine(N, DCI, Subtarget);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008870 if (VT != MVT::i32)
8871 return SDValue();
8872
8873 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8874 if (!C)
8875 return SDValue();
8876
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008877 int64_t MulAmt = C->getSExtValue();
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00008878 unsigned ShiftAmt = countTrailingZeros<uint64_t>(MulAmt);
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008879
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008880 ShiftAmt = ShiftAmt & (32 - 1);
8881 SDValue V = N->getOperand(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +00008882 SDLoc DL(N);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008883
Anton Korobeynikov4c719c42010-05-16 08:54:20 +00008884 SDValue Res;
8885 MulAmt >>= ShiftAmt;
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008886
8887 if (MulAmt >= 0) {
8888 if (isPowerOf2_32(MulAmt - 1)) {
8889 // (mul x, 2^N + 1) => (add (shl x, N), x)
8890 Res = DAG.getNode(ISD::ADD, DL, VT,
8891 V,
8892 DAG.getNode(ISD::SHL, DL, VT,
8893 V,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008894 DAG.getConstant(Log2_32(MulAmt - 1), DL,
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008895 MVT::i32)));
8896 } else if (isPowerOf2_32(MulAmt + 1)) {
8897 // (mul x, 2^N - 1) => (sub (shl x, N), x)
8898 Res = DAG.getNode(ISD::SUB, DL, VT,
8899 DAG.getNode(ISD::SHL, DL, VT,
8900 V,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008901 DAG.getConstant(Log2_32(MulAmt + 1), DL,
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008902 MVT::i32)),
8903 V);
8904 } else
8905 return SDValue();
8906 } else {
8907 uint64_t MulAmtAbs = -MulAmt;
8908 if (isPowerOf2_32(MulAmtAbs + 1)) {
8909 // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
8910 Res = DAG.getNode(ISD::SUB, DL, VT,
8911 V,
8912 DAG.getNode(ISD::SHL, DL, VT,
8913 V,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008914 DAG.getConstant(Log2_32(MulAmtAbs + 1), DL,
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008915 MVT::i32)));
8916 } else if (isPowerOf2_32(MulAmtAbs - 1)) {
8917 // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
8918 Res = DAG.getNode(ISD::ADD, DL, VT,
8919 V,
8920 DAG.getNode(ISD::SHL, DL, VT,
8921 V,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008922 DAG.getConstant(Log2_32(MulAmtAbs - 1), DL,
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008923 MVT::i32)));
8924 Res = DAG.getNode(ISD::SUB, DL, VT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008925 DAG.getConstant(0, DL, MVT::i32), Res);
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008926
8927 } else
8928 return SDValue();
8929 }
Anton Korobeynikov4c719c42010-05-16 08:54:20 +00008930
8931 if (ShiftAmt != 0)
Anton Korobeynikov3edd854d2012-03-19 19:19:50 +00008932 Res = DAG.getNode(ISD::SHL, DL, VT,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008933 Res, DAG.getConstant(ShiftAmt, DL, MVT::i32));
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008934
8935 // Do not add new nodes to DAG combiner worklist.
Anton Korobeynikov4c719c42010-05-16 08:54:20 +00008936 DCI.CombineTo(N, Res, false);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +00008937 return SDValue();
8938}
8939
Owen Anderson30c48922010-11-05 19:27:46 +00008940static SDValue PerformANDCombine(SDNode *N,
Evan Chenge87681c2012-02-23 01:19:06 +00008941 TargetLowering::DAGCombinerInfo &DCI,
8942 const ARMSubtarget *Subtarget) {
Owen Anderson77aa2662011-04-05 21:48:57 +00008943
Owen Anderson30c48922010-11-05 19:27:46 +00008944 // Attempt to use immediate-form VBIC
8945 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00008946 SDLoc dl(N);
Owen Anderson30c48922010-11-05 19:27:46 +00008947 EVT VT = N->getValueType(0);
8948 SelectionDAG &DAG = DCI.DAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00008949
Tanya Lattner266792a2011-04-07 15:24:20 +00008950 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8951 return SDValue();
Andrew Trick0ed57782011-04-23 03:55:32 +00008952
Owen Anderson30c48922010-11-05 19:27:46 +00008953 APInt SplatBits, SplatUndef;
8954 unsigned SplatBitSize;
8955 bool HasAnyUndefs;
8956 if (BVN &&
8957 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8958 if (SplatBitSize <= 64) {
8959 EVT VbicVT;
8960 SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(),
8961 SplatUndef.getZExtValue(), SplatBitSize,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00008962 DAG, dl, VbicVT, VT.is128BitVector(),
Owen Andersona4076922010-11-05 21:57:54 +00008963 OtherModImm);
Owen Anderson30c48922010-11-05 19:27:46 +00008964 if (Val.getNode()) {
8965 SDValue Input =
Wesley Peck527da1b2010-11-23 03:31:01 +00008966 DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0));
Owen Anderson30c48922010-11-05 19:27:46 +00008967 SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val);
Wesley Peck527da1b2010-11-23 03:31:01 +00008968 return DAG.getNode(ISD::BITCAST, dl, VT, Vbic);
Owen Anderson30c48922010-11-05 19:27:46 +00008969 }
8970 }
8971 }
Wesley Peck527da1b2010-11-23 03:31:01 +00008972
Evan Chenge87681c2012-02-23 01:19:06 +00008973 if (!Subtarget->isThumb1Only()) {
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008974 // fold (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00008975 if (SDValue Result = combineSelectAndUseCommutative(N, true, DCI))
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00008976 return Result;
Evan Chenge87681c2012-02-23 01:19:06 +00008977 }
8978
Owen Anderson30c48922010-11-05 19:27:46 +00008979 return SDValue();
8980}
8981
Jim Grosbach11013ed2010-07-16 23:05:05 +00008982/// PerformORCombine - Target-specific dag combine xforms for ISD::OR
8983static SDValue PerformORCombine(SDNode *N,
8984 TargetLowering::DAGCombinerInfo &DCI,
8985 const ARMSubtarget *Subtarget) {
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008986 // Attempt to use immediate-form VORR
8987 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
Andrew Trickef9de2a2013-05-25 02:42:55 +00008988 SDLoc dl(N);
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008989 EVT VT = N->getValueType(0);
8990 SelectionDAG &DAG = DCI.DAG;
Wesley Peck527da1b2010-11-23 03:31:01 +00008991
Tanya Lattner266792a2011-04-07 15:24:20 +00008992 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8993 return SDValue();
Andrew Trick0ed57782011-04-23 03:55:32 +00008994
Owen Andersonbc9b31c2010-11-03 23:15:26 +00008995 APInt SplatBits, SplatUndef;
8996 unsigned SplatBitSize;
8997 bool HasAnyUndefs;
8998 if (BVN && Subtarget->hasNEON() &&
8999 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
9000 if (SplatBitSize <= 64) {
9001 EVT VorrVT;
9002 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
9003 SplatUndef.getZExtValue(), SplatBitSize,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009004 DAG, dl, VorrVT, VT.is128BitVector(),
Owen Andersona4076922010-11-05 21:57:54 +00009005 OtherModImm);
Owen Andersonbc9b31c2010-11-03 23:15:26 +00009006 if (Val.getNode()) {
9007 SDValue Input =
Wesley Peck527da1b2010-11-23 03:31:01 +00009008 DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0));
Owen Andersonbc9b31c2010-11-03 23:15:26 +00009009 SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val);
Wesley Peck527da1b2010-11-23 03:31:01 +00009010 return DAG.getNode(ISD::BITCAST, dl, VT, Vorr);
Owen Andersonbc9b31c2010-11-03 23:15:26 +00009011 }
9012 }
9013 }
9014
Evan Chenge87681c2012-02-23 01:19:06 +00009015 if (!Subtarget->isThumb1Only()) {
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00009016 // fold (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00009017 if (SDValue Result = combineSelectAndUseCommutative(N, false, DCI))
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00009018 return Result;
Evan Chenge87681c2012-02-23 01:19:06 +00009019 }
9020
Nadav Rotem3a94c542012-08-13 18:52:44 +00009021 // The code below optimizes (or (and X, Y), Z).
9022 // The AND operand needs to have a single user to make these optimizations
9023 // profitable.
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00009024 SDValue N0 = N->getOperand(0);
Nadav Rotem3a94c542012-08-13 18:52:44 +00009025 if (N0.getOpcode() != ISD::AND || !N0.hasOneUse())
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00009026 return SDValue();
9027 SDValue N1 = N->getOperand(1);
9028
9029 // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant.
9030 if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() &&
9031 DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
9032 APInt SplatUndef;
9033 unsigned SplatBitSize;
9034 bool HasAnyUndefs;
9035
Saleem Abdulrasool0c2ee5a2013-07-30 04:43:08 +00009036 APInt SplatBits0, SplatBits1;
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00009037 BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1));
Saleem Abdulrasool0c2ee5a2013-07-30 04:43:08 +00009038 BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1));
9039 // Ensure that the second operand of both ands are constants
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00009040 if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize,
Saleem Abdulrasool0c2ee5a2013-07-30 04:43:08 +00009041 HasAnyUndefs) && !HasAnyUndefs) {
9042 if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize,
9043 HasAnyUndefs) && !HasAnyUndefs) {
9044 // Ensure that the bit width of the constants are the same and that
9045 // the splat arguments are logical inverses as per the pattern we
9046 // are trying to simplify.
9047 if (SplatBits0.getBitWidth() == SplatBits1.getBitWidth() &&
9048 SplatBits0 == ~SplatBits1) {
9049 // Canonicalize the vector type to make instruction selection
9050 // simpler.
9051 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
9052 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT,
9053 N0->getOperand(1),
9054 N0->getOperand(0),
9055 N1->getOperand(0));
9056 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9057 }
9058 }
Cameron Zwarich53dd03d2011-03-30 23:01:21 +00009059 }
9060 }
9061
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009062 // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when
9063 // reasonable.
9064
Jim Grosbach11013ed2010-07-16 23:05:05 +00009065 // BFI is only available on V6T2+
9066 if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops())
9067 return SDValue();
9068
Andrew Trickef9de2a2013-05-25 02:42:55 +00009069 SDLoc DL(N);
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009070 // 1) or (and A, mask), val => ARMbfi A, val, mask
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00009071 // iff (val & mask) == val
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009072 //
9073 // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00009074 // 2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2)
Eric Christopherd5530962011-03-26 01:21:03 +00009075 // && mask == ~mask2
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00009076 // 2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2)
Eric Christopherd5530962011-03-26 01:21:03 +00009077 // && ~mask == mask2
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009078 // (i.e., copy a bitfield value into another bitfield of the same width)
Jim Grosbach11013ed2010-07-16 23:05:05 +00009079
Jim Grosbach11013ed2010-07-16 23:05:05 +00009080 if (VT != MVT::i32)
9081 return SDValue();
9082
Evan Cheng2e51bb42010-12-13 20:32:54 +00009083 SDValue N00 = N0.getOperand(0);
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009084
Jim Grosbach11013ed2010-07-16 23:05:05 +00009085 // The value and the mask need to be constants so we can verify this is
9086 // actually a bitfield set. If the mask is 0xffff, we can do better
9087 // via a movt instruction, so don't use BFI in that case.
Evan Cheng2e51bb42010-12-13 20:32:54 +00009088 SDValue MaskOp = N0.getOperand(1);
9089 ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp);
9090 if (!MaskC)
Jim Grosbach11013ed2010-07-16 23:05:05 +00009091 return SDValue();
Evan Cheng2e51bb42010-12-13 20:32:54 +00009092 unsigned Mask = MaskC->getZExtValue();
Jim Grosbach11013ed2010-07-16 23:05:05 +00009093 if (Mask == 0xffff)
9094 return SDValue();
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009095 SDValue Res;
9096 // Case (1): or (and A, mask), val => ARMbfi A, val, mask
Evan Cheng2e51bb42010-12-13 20:32:54 +00009097 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
9098 if (N1C) {
9099 unsigned Val = N1C->getZExtValue();
Evan Cheng34345752010-12-11 04:11:38 +00009100 if ((Val & ~Mask) != Val)
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009101 return SDValue();
Jim Grosbach11013ed2010-07-16 23:05:05 +00009102
Evan Cheng34345752010-12-11 04:11:38 +00009103 if (ARM::isBitFieldInvertedMask(Mask)) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00009104 Val >>= countTrailingZeros(~Mask);
Jim Grosbach11013ed2010-07-16 23:05:05 +00009105
Evan Cheng2e51bb42010-12-13 20:32:54 +00009106 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009107 DAG.getConstant(Val, DL, MVT::i32),
9108 DAG.getConstant(Mask, DL, MVT::i32));
Evan Cheng34345752010-12-11 04:11:38 +00009109
9110 // Do not add new nodes to DAG combiner worklist.
9111 DCI.CombineTo(N, Res, false);
Evan Cheng2e51bb42010-12-13 20:32:54 +00009112 return SDValue();
Evan Cheng34345752010-12-11 04:11:38 +00009113 }
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009114 } else if (N1.getOpcode() == ISD::AND) {
9115 // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
Evan Cheng2e51bb42010-12-13 20:32:54 +00009116 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
9117 if (!N11C)
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009118 return SDValue();
Evan Cheng2e51bb42010-12-13 20:32:54 +00009119 unsigned Mask2 = N11C->getZExtValue();
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009120
Eric Christopherd5530962011-03-26 01:21:03 +00009121 // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern
9122 // as is to match.
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009123 if (ARM::isBitFieldInvertedMask(Mask) &&
Eric Christopherd5530962011-03-26 01:21:03 +00009124 (Mask == ~Mask2)) {
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009125 // The pack halfword instruction works better for masks that fit it,
9126 // so use that when it's available.
9127 if (Subtarget->hasT2ExtractPack() &&
9128 (Mask == 0xffff || Mask == 0xffff0000))
9129 return SDValue();
9130 // 2a
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00009131 unsigned amt = countTrailingZeros(Mask2);
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009132 Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009133 DAG.getConstant(amt, DL, MVT::i32));
Evan Cheng2e51bb42010-12-13 20:32:54 +00009134 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009135 DAG.getConstant(Mask, DL, MVT::i32));
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009136 // Do not add new nodes to DAG combiner worklist.
9137 DCI.CombineTo(N, Res, false);
Evan Cheng2e51bb42010-12-13 20:32:54 +00009138 return SDValue();
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009139 } else if (ARM::isBitFieldInvertedMask(~Mask) &&
Eric Christopherd5530962011-03-26 01:21:03 +00009140 (~Mask == Mask2)) {
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009141 // The pack halfword instruction works better for masks that fit it,
9142 // so use that when it's available.
9143 if (Subtarget->hasT2ExtractPack() &&
9144 (Mask2 == 0xffff || Mask2 == 0xffff0000))
9145 return SDValue();
9146 // 2b
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00009147 unsigned lsb = countTrailingZeros(Mask);
Evan Cheng2e51bb42010-12-13 20:32:54 +00009148 Res = DAG.getNode(ISD::SRL, DL, VT, N00,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009149 DAG.getConstant(lsb, DL, MVT::i32));
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009150 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009151 DAG.getConstant(Mask2, DL, MVT::i32));
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009152 // Do not add new nodes to DAG combiner worklist.
9153 DCI.CombineTo(N, Res, false);
Evan Cheng2e51bb42010-12-13 20:32:54 +00009154 return SDValue();
Jim Grosbachb97e2bb2010-07-17 03:30:54 +00009155 }
9156 }
Wesley Peck527da1b2010-11-23 03:31:01 +00009157
Evan Cheng2e51bb42010-12-13 20:32:54 +00009158 if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) &&
9159 N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) &&
9160 ARM::isBitFieldInvertedMask(~Mask)) {
9161 // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask
9162 // where lsb(mask) == #shamt and masked bits of B are known zero.
9163 SDValue ShAmt = N00.getOperand(1);
9164 unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00009165 unsigned LSB = countTrailingZeros(Mask);
Evan Cheng2e51bb42010-12-13 20:32:54 +00009166 if (ShAmtC != LSB)
9167 return SDValue();
9168
9169 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009170 DAG.getConstant(~Mask, DL, MVT::i32));
Evan Cheng2e51bb42010-12-13 20:32:54 +00009171
9172 // Do not add new nodes to DAG combiner worklist.
9173 DCI.CombineTo(N, Res, false);
9174 }
9175
Jim Grosbach11013ed2010-07-16 23:05:05 +00009176 return SDValue();
9177}
9178
Evan Chenge87681c2012-02-23 01:19:06 +00009179static SDValue PerformXORCombine(SDNode *N,
9180 TargetLowering::DAGCombinerInfo &DCI,
9181 const ARMSubtarget *Subtarget) {
9182 EVT VT = N->getValueType(0);
9183 SelectionDAG &DAG = DCI.DAG;
9184
9185 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9186 return SDValue();
9187
9188 if (!Subtarget->isThumb1Only()) {
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00009189 // fold (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00009190 if (SDValue Result = combineSelectAndUseCommutative(N, false, DCI))
Jakob Stoklund Olesenaab43db2012-08-18 21:25:16 +00009191 return Result;
Evan Chenge87681c2012-02-23 01:19:06 +00009192 }
9193
9194 return SDValue();
9195}
9196
James Molloyce12c922015-11-11 15:40:40 +00009197// ParseBFI - given a BFI instruction in N, extract the "from" value (Rn) and return it,
9198// and fill in FromMask and ToMask with (consecutive) bits in "from" to be extracted and
9199// their position in "to" (Rd).
9200static SDValue ParseBFI(SDNode *N, APInt &ToMask, APInt &FromMask) {
9201 assert(N->getOpcode() == ARMISD::BFI);
Chad Rosier353d7192015-12-21 18:08:05 +00009202
James Molloyce12c922015-11-11 15:40:40 +00009203 SDValue From = N->getOperand(1);
9204 ToMask = ~cast<ConstantSDNode>(N->getOperand(2))->getAPIntValue();
9205 FromMask = APInt::getLowBitsSet(ToMask.getBitWidth(), ToMask.countPopulation());
9206
9207 // If the Base came from a SHR #C, we can deduce that it is really testing bit
9208 // #C in the base of the SHR.
9209 if (From->getOpcode() == ISD::SRL &&
9210 isa<ConstantSDNode>(From->getOperand(1))) {
9211 APInt Shift = cast<ConstantSDNode>(From->getOperand(1))->getAPIntValue();
9212 assert(Shift.getLimitedValue() < 32 && "Shift too large!");
9213 FromMask <<= Shift.getLimitedValue(31);
9214 From = From->getOperand(0);
9215 }
9216
9217 return From;
9218}
9219
9220// If A and B contain one contiguous set of bits, does A | B == A . B?
9221//
9222// Neither A nor B must be zero.
9223static bool BitsProperlyConcatenate(const APInt &A, const APInt &B) {
9224 unsigned LastActiveBitInA = A.countTrailingZeros();
9225 unsigned FirstActiveBitInB = B.getBitWidth() - B.countLeadingZeros() - 1;
9226 return LastActiveBitInA - 1 == FirstActiveBitInB;
9227}
9228
9229static SDValue FindBFIToCombineWith(SDNode *N) {
9230 // We have a BFI in N. Follow a possible chain of BFIs and find a BFI it can combine with,
9231 // if one exists.
9232 APInt ToMask, FromMask;
9233 SDValue From = ParseBFI(N, ToMask, FromMask);
9234 SDValue To = N->getOperand(0);
9235
9236 // Now check for a compatible BFI to merge with. We can pass through BFIs that
9237 // aren't compatible, but not if they set the same bit in their destination as
9238 // we do (or that of any BFI we're going to combine with).
9239 SDValue V = To;
9240 APInt CombinedToMask = ToMask;
9241 while (V.getOpcode() == ARMISD::BFI) {
9242 APInt NewToMask, NewFromMask;
9243 SDValue NewFrom = ParseBFI(V.getNode(), NewToMask, NewFromMask);
9244 if (NewFrom != From) {
9245 // This BFI has a different base. Keep going.
9246 CombinedToMask |= NewToMask;
9247 V = V.getOperand(0);
9248 continue;
9249 }
9250
9251 // Do the written bits conflict with any we've seen so far?
9252 if ((NewToMask & CombinedToMask).getBoolValue())
9253 // Conflicting bits - bail out because going further is unsafe.
9254 return SDValue();
9255
9256 // Are the new bits contiguous when combined with the old bits?
9257 if (BitsProperlyConcatenate(ToMask, NewToMask) &&
9258 BitsProperlyConcatenate(FromMask, NewFromMask))
9259 return V;
9260 if (BitsProperlyConcatenate(NewToMask, ToMask) &&
9261 BitsProperlyConcatenate(NewFromMask, FromMask))
9262 return V;
Chad Rosier353d7192015-12-21 18:08:05 +00009263
James Molloyce12c922015-11-11 15:40:40 +00009264 // We've seen a write to some bits, so track it.
9265 CombinedToMask |= NewToMask;
9266 // Keep going...
9267 V = V.getOperand(0);
9268 }
9269
9270 return SDValue();
9271}
9272
Evan Chengc1778132010-12-14 03:22:07 +00009273static SDValue PerformBFICombine(SDNode *N,
9274 TargetLowering::DAGCombinerInfo &DCI) {
9275 SDValue N1 = N->getOperand(1);
9276 if (N1.getOpcode() == ISD::AND) {
James Molloyce12c922015-11-11 15:40:40 +00009277 // (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff
9278 // the bits being cleared by the AND are not demanded by the BFI.
Evan Chengc1778132010-12-14 03:22:07 +00009279 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
9280 if (!N11C)
9281 return SDValue();
Evan Cheng6d02d902011-06-15 01:12:31 +00009282 unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +00009283 unsigned LSB = countTrailingZeros(~InvMask);
9284 unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB;
Aaron Ballman0d6a0102014-12-16 14:04:11 +00009285 assert(Width <
9286 static_cast<unsigned>(std::numeric_limits<unsigned>::digits) &&
Michael Ilsemanaddddc42014-12-15 18:48:43 +00009287 "undefined behavior");
9288 unsigned Mask = (1u << Width) - 1;
Evan Chengc1778132010-12-14 03:22:07 +00009289 unsigned Mask2 = N11C->getZExtValue();
Evan Cheng6d02d902011-06-15 01:12:31 +00009290 if ((Mask & (~Mask2)) == 0)
Andrew Trickef9de2a2013-05-25 02:42:55 +00009291 return DCI.DAG.getNode(ARMISD::BFI, SDLoc(N), N->getValueType(0),
Evan Chengc1778132010-12-14 03:22:07 +00009292 N->getOperand(0), N1.getOperand(0),
9293 N->getOperand(2));
James Molloyce12c922015-11-11 15:40:40 +00009294 } else if (N->getOperand(0).getOpcode() == ARMISD::BFI) {
9295 // We have a BFI of a BFI. Walk up the BFI chain to see how long it goes.
9296 // Keep track of any consecutive bits set that all come from the same base
9297 // value. We can combine these together into a single BFI.
9298 SDValue CombineBFI = FindBFIToCombineWith(N);
9299 if (CombineBFI == SDValue())
9300 return SDValue();
9301
9302 // We've found a BFI.
9303 APInt ToMask1, FromMask1;
9304 SDValue From1 = ParseBFI(N, ToMask1, FromMask1);
9305
9306 APInt ToMask2, FromMask2;
Diego Novillo0767ae52015-11-11 16:39:22 +00009307 SDValue From2 = ParseBFI(CombineBFI.getNode(), ToMask2, FromMask2);
9308 assert(From1 == From2);
9309 (void)From2;
Chad Rosier353d7192015-12-21 18:08:05 +00009310
James Molloyce12c922015-11-11 15:40:40 +00009311 // First, unlink CombineBFI.
9312 DCI.DAG.ReplaceAllUsesWith(CombineBFI, CombineBFI.getOperand(0));
9313 // Then create a new BFI, combining the two together.
9314 APInt NewFromMask = FromMask1 | FromMask2;
9315 APInt NewToMask = ToMask1 | ToMask2;
9316
9317 EVT VT = N->getValueType(0);
9318 SDLoc dl(N);
9319
9320 if (NewFromMask[0] == 0)
9321 From1 = DCI.DAG.getNode(
9322 ISD::SRL, dl, VT, From1,
9323 DCI.DAG.getConstant(NewFromMask.countTrailingZeros(), dl, VT));
9324 return DCI.DAG.getNode(ARMISD::BFI, dl, VT, N->getOperand(0), From1,
9325 DCI.DAG.getConstant(~NewToMask, dl, VT));
Evan Chengc1778132010-12-14 03:22:07 +00009326 }
9327 return SDValue();
9328}
9329
Bob Wilson22806742010-09-22 22:09:21 +00009330/// PerformVMOVRRDCombine - Target-specific dag combine xforms for
9331/// ARMISD::VMOVRRD.
9332static SDValue PerformVMOVRRDCombine(SDNode *N,
Oliver Stannard51b1d462014-08-21 12:50:31 +00009333 TargetLowering::DAGCombinerInfo &DCI,
9334 const ARMSubtarget *Subtarget) {
Bob Wilson22806742010-09-22 22:09:21 +00009335 // vmovrrd(vmovdrr x, y) -> x,y
9336 SDValue InDouble = N->getOperand(0);
Oliver Stannard51b1d462014-08-21 12:50:31 +00009337 if (InDouble.getOpcode() == ARMISD::VMOVDRR && !Subtarget->isFPOnlySP())
Bob Wilson22806742010-09-22 22:09:21 +00009338 return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00009339
9340 // vmovrrd(load f64) -> (load i32), (load i32)
9341 SDNode *InNode = InDouble.getNode();
9342 if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() &&
9343 InNode->getValueType(0) == MVT::f64 &&
9344 InNode->getOperand(1).getOpcode() == ISD::FrameIndex &&
9345 !cast<LoadSDNode>(InNode)->isVolatile()) {
9346 // TODO: Should this be done for non-FrameIndex operands?
9347 LoadSDNode *LD = cast<LoadSDNode>(InNode);
9348
9349 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00009350 SDLoc DL(LD);
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00009351 SDValue BasePtr = LD->getBasePtr();
9352 SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr,
9353 LD->getPointerInfo(), LD->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009354 LD->isNonTemporal(), LD->isInvariant(),
9355 LD->getAlignment());
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00009356
9357 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009358 DAG.getConstant(4, DL, MVT::i32));
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00009359 SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr,
9360 LD->getPointerInfo(), LD->isVolatile(),
Pete Cooper82cd9e82011-11-08 18:42:53 +00009361 LD->isNonTemporal(), LD->isInvariant(),
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00009362 std::min(4U, LD->getAlignment() / 2));
9363
9364 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1));
Mehdi Aminiffc14022015-07-08 01:00:38 +00009365 if (DCI.DAG.getDataLayout().isBigEndian())
Christian Pirker762b2c62014-06-01 09:30:52 +00009366 std::swap (NewLD1, NewLD2);
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00009367 SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2);
Cameron Zwarich6fe5c292011-04-02 02:40:43 +00009368 return Result;
9369 }
9370
Bob Wilson22806742010-09-22 22:09:21 +00009371 return SDValue();
9372}
9373
9374/// PerformVMOVDRRCombine - Target-specific dag combine xforms for
9375/// ARMISD::VMOVDRR. This is also used for BUILD_VECTORs with 2 operands.
9376static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) {
9377 // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X)
9378 SDValue Op0 = N->getOperand(0);
9379 SDValue Op1 = N->getOperand(1);
Wesley Peck527da1b2010-11-23 03:31:01 +00009380 if (Op0.getOpcode() == ISD::BITCAST)
Bob Wilson22806742010-09-22 22:09:21 +00009381 Op0 = Op0.getOperand(0);
Wesley Peck527da1b2010-11-23 03:31:01 +00009382 if (Op1.getOpcode() == ISD::BITCAST)
Bob Wilson22806742010-09-22 22:09:21 +00009383 Op1 = Op1.getOperand(0);
9384 if (Op0.getOpcode() == ARMISD::VMOVRRD &&
9385 Op0.getNode() == Op1.getNode() &&
9386 Op0.getResNo() == 0 && Op1.getResNo() == 1)
Andrew Trickef9de2a2013-05-25 02:42:55 +00009387 return DAG.getNode(ISD::BITCAST, SDLoc(N),
Bob Wilson22806742010-09-22 22:09:21 +00009388 N->getValueType(0), Op0.getOperand(0));
9389 return SDValue();
9390}
9391
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009392/// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node
9393/// are normal, non-volatile loads. If so, it is profitable to bitcast an
9394/// i64 vector to have f64 elements, since the value can then be loaded
9395/// directly into a VFP register.
9396static bool hasNormalLoadOperand(SDNode *N) {
9397 unsigned NumElts = N->getValueType(0).getVectorNumElements();
9398 for (unsigned i = 0; i < NumElts; ++i) {
9399 SDNode *Elt = N->getOperand(i).getNode();
9400 if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile())
9401 return true;
9402 }
9403 return false;
9404}
9405
Bob Wilsoncb6db982010-09-17 22:59:05 +00009406/// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for
9407/// ISD::BUILD_VECTOR.
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009408static SDValue PerformBUILD_VECTORCombine(SDNode *N,
Oliver Stannard51b1d462014-08-21 12:50:31 +00009409 TargetLowering::DAGCombinerInfo &DCI,
9410 const ARMSubtarget *Subtarget) {
Bob Wilsoncb6db982010-09-17 22:59:05 +00009411 // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X):
9412 // VMOVRRD is introduced when legalizing i64 types. It forces the i64 value
9413 // into a pair of GPRs, which is fine when the value is used as a scalar,
9414 // but if the i64 value is converted to a vector, we need to undo the VMOVRRD.
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009415 SelectionDAG &DAG = DCI.DAG;
Ahmed Bougachaf8dfb472016-02-09 22:54:12 +00009416 if (N->getNumOperands() == 2)
9417 if (SDValue RV = PerformVMOVDRRCombine(N, DAG))
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009418 return RV;
Bob Wilsoncb6db982010-09-17 22:59:05 +00009419
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009420 // Load i64 elements as f64 values so that type legalization does not split
9421 // them up into i32 values.
9422 EVT VT = N->getValueType(0);
9423 if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N))
9424 return SDValue();
Andrew Trickef9de2a2013-05-25 02:42:55 +00009425 SDLoc dl(N);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009426 SmallVector<SDValue, 8> Ops;
9427 unsigned NumElts = VT.getVectorNumElements();
9428 for (unsigned i = 0; i < NumElts; ++i) {
9429 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i));
9430 Ops.push_back(V);
9431 // Make the DAGCombiner fold the bitcast.
9432 DCI.AddToWorklist(V.getNode());
9433 }
9434 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts);
Craig Topper48d114b2014-04-26 18:35:24 +00009435 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009436 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
9437}
9438
Quentin Colombet04b3a0f2013-07-03 21:42:57 +00009439/// \brief Target-specific dag combine xforms for ARMISD::BUILD_VECTOR.
9440static SDValue
9441PerformARMBUILD_VECTORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
9442 // ARMISD::BUILD_VECTOR is introduced when legalizing ISD::BUILD_VECTOR.
9443 // At that time, we may have inserted bitcasts from integer to float.
9444 // If these bitcasts have survived DAGCombine, change the lowering of this
9445 // BUILD_VECTOR in something more vector friendly, i.e., that does not
9446 // force to use floating point types.
9447
9448 // Make sure we can change the type of the vector.
9449 // This is possible iff:
9450 // 1. The vector is only used in a bitcast to a integer type. I.e.,
9451 // 1.1. Vector is used only once.
9452 // 1.2. Use is a bit convert to an integer type.
9453 // 2. The size of its operands are 32-bits (64-bits are not legal).
9454 EVT VT = N->getValueType(0);
9455 EVT EltVT = VT.getVectorElementType();
9456
9457 // Check 1.1. and 2.
9458 if (EltVT.getSizeInBits() != 32 || !N->hasOneUse())
9459 return SDValue();
9460
9461 // By construction, the input type must be float.
9462 assert(EltVT == MVT::f32 && "Unexpected type!");
9463
9464 // Check 1.2.
9465 SDNode *Use = *N->use_begin();
9466 if (Use->getOpcode() != ISD::BITCAST ||
9467 Use->getValueType(0).isFloatingPoint())
9468 return SDValue();
9469
9470 // Check profitability.
9471 // Model is, if more than half of the relevant operands are bitcast from
9472 // i32, turn the build_vector into a sequence of insert_vector_elt.
9473 // Relevant operands are everything that is not statically
9474 // (i.e., at compile time) bitcasted.
9475 unsigned NumOfBitCastedElts = 0;
9476 unsigned NumElts = VT.getVectorNumElements();
9477 unsigned NumOfRelevantElts = NumElts;
9478 for (unsigned Idx = 0; Idx < NumElts; ++Idx) {
9479 SDValue Elt = N->getOperand(Idx);
9480 if (Elt->getOpcode() == ISD::BITCAST) {
9481 // Assume only bit cast to i32 will go away.
9482 if (Elt->getOperand(0).getValueType() == MVT::i32)
9483 ++NumOfBitCastedElts;
Sanjay Patel57195842016-03-14 17:28:46 +00009484 } else if (Elt.isUndef() || isa<ConstantSDNode>(Elt))
Quentin Colombet04b3a0f2013-07-03 21:42:57 +00009485 // Constants are statically casted, thus do not count them as
9486 // relevant operands.
9487 --NumOfRelevantElts;
9488 }
9489
9490 // Check if more than half of the elements require a non-free bitcast.
9491 if (NumOfBitCastedElts <= NumOfRelevantElts / 2)
9492 return SDValue();
9493
9494 SelectionDAG &DAG = DCI.DAG;
9495 // Create the new vector type.
9496 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
9497 // Check if the type is legal.
9498 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9499 if (!TLI.isTypeLegal(VecVT))
9500 return SDValue();
9501
9502 // Combine:
9503 // ARMISD::BUILD_VECTOR E1, E2, ..., EN.
9504 // => BITCAST INSERT_VECTOR_ELT
9505 // (INSERT_VECTOR_ELT (...), (BITCAST EN-1), N-1),
9506 // (BITCAST EN), N.
9507 SDValue Vec = DAG.getUNDEF(VecVT);
9508 SDLoc dl(N);
9509 for (unsigned Idx = 0 ; Idx < NumElts; ++Idx) {
9510 SDValue V = N->getOperand(Idx);
Sanjay Patel57195842016-03-14 17:28:46 +00009511 if (V.isUndef())
Quentin Colombet04b3a0f2013-07-03 21:42:57 +00009512 continue;
9513 if (V.getOpcode() == ISD::BITCAST &&
9514 V->getOperand(0).getValueType() == MVT::i32)
9515 // Fold obvious case.
9516 V = V.getOperand(0);
9517 else {
Jim Grosbach1a597112014-04-03 23:43:18 +00009518 V = DAG.getNode(ISD::BITCAST, SDLoc(V), MVT::i32, V);
Quentin Colombet04b3a0f2013-07-03 21:42:57 +00009519 // Make the DAGCombiner fold the bitcasts.
9520 DCI.AddToWorklist(V.getNode());
9521 }
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009522 SDValue LaneIdx = DAG.getConstant(Idx, dl, MVT::i32);
Quentin Colombet04b3a0f2013-07-03 21:42:57 +00009523 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecVT, Vec, V, LaneIdx);
9524 }
9525 Vec = DAG.getNode(ISD::BITCAST, dl, VT, Vec);
9526 // Make the DAGCombiner fold the bitcasts.
9527 DCI.AddToWorklist(Vec.getNode());
9528 return Vec;
9529}
9530
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009531/// PerformInsertEltCombine - Target-specific dag combine xforms for
9532/// ISD::INSERT_VECTOR_ELT.
9533static SDValue PerformInsertEltCombine(SDNode *N,
9534 TargetLowering::DAGCombinerInfo &DCI) {
9535 // Bitcast an i64 load inserted into a vector to f64.
9536 // Otherwise, the i64 value will be legalized to a pair of i32 values.
9537 EVT VT = N->getValueType(0);
9538 SDNode *Elt = N->getOperand(1).getNode();
9539 if (VT.getVectorElementType() != MVT::i64 ||
9540 !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile())
9541 return SDValue();
9542
9543 SelectionDAG &DAG = DCI.DAG;
Andrew Trickef9de2a2013-05-25 02:42:55 +00009544 SDLoc dl(N);
Bob Wilson1a20c2a2010-12-21 06:43:19 +00009545 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
9546 VT.getVectorNumElements());
9547 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0));
9548 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1));
9549 // Make the DAGCombiner fold the bitcasts.
9550 DCI.AddToWorklist(Vec.getNode());
9551 DCI.AddToWorklist(V.getNode());
9552 SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT,
9553 Vec, V, N->getOperand(2));
9554 return DAG.getNode(ISD::BITCAST, dl, VT, InsElt);
Bob Wilsoncb6db982010-09-17 22:59:05 +00009555}
9556
Bob Wilsonc7334a12010-10-27 20:38:28 +00009557/// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for
9558/// ISD::VECTOR_SHUFFLE.
9559static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) {
9560 // The LLVM shufflevector instruction does not require the shuffle mask
9561 // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does
9562 // have that requirement. When translating to ISD::VECTOR_SHUFFLE, if the
9563 // operands do not match the mask length, they are extended by concatenating
9564 // them with undef vectors. That is probably the right thing for other
9565 // targets, but for NEON it is better to concatenate two double-register
9566 // size vector operands into a single quad-register size vector. Do that
9567 // transformation here:
9568 // shuffle(concat(v1, undef), concat(v2, undef)) ->
9569 // shuffle(concat(v1, v2), undef)
9570 SDValue Op0 = N->getOperand(0);
9571 SDValue Op1 = N->getOperand(1);
9572 if (Op0.getOpcode() != ISD::CONCAT_VECTORS ||
9573 Op1.getOpcode() != ISD::CONCAT_VECTORS ||
9574 Op0.getNumOperands() != 2 ||
9575 Op1.getNumOperands() != 2)
9576 return SDValue();
9577 SDValue Concat0Op1 = Op0.getOperand(1);
9578 SDValue Concat1Op1 = Op1.getOperand(1);
Sanjay Patel75068522016-03-14 18:09:43 +00009579 if (!Concat0Op1.isUndef() || !Concat1Op1.isUndef())
Bob Wilsonc7334a12010-10-27 20:38:28 +00009580 return SDValue();
9581 // Skip the transformation if any of the types are illegal.
9582 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9583 EVT VT = N->getValueType(0);
9584 if (!TLI.isTypeLegal(VT) ||
9585 !TLI.isTypeLegal(Concat0Op1.getValueType()) ||
9586 !TLI.isTypeLegal(Concat1Op1.getValueType()))
9587 return SDValue();
9588
Andrew Trickef9de2a2013-05-25 02:42:55 +00009589 SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
Bob Wilsonc7334a12010-10-27 20:38:28 +00009590 Op0.getOperand(0), Op1.getOperand(0));
9591 // Translate the shuffle mask.
9592 SmallVector<int, 16> NewMask;
9593 unsigned NumElts = VT.getVectorNumElements();
9594 unsigned HalfElts = NumElts/2;
9595 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9596 for (unsigned n = 0; n < NumElts; ++n) {
9597 int MaskElt = SVN->getMaskElt(n);
9598 int NewElt = -1;
Bob Wilson6c550072010-10-27 23:49:00 +00009599 if (MaskElt < (int)HalfElts)
Bob Wilsonc7334a12010-10-27 20:38:28 +00009600 NewElt = MaskElt;
Bob Wilson6c550072010-10-27 23:49:00 +00009601 else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts))
Bob Wilsonc7334a12010-10-27 20:38:28 +00009602 NewElt = HalfElts + MaskElt - NumElts;
9603 NewMask.push_back(NewElt);
9604 }
Andrew Trickef9de2a2013-05-25 02:42:55 +00009605 return DAG.getVectorShuffle(VT, SDLoc(N), NewConcat,
Bob Wilsonc7334a12010-10-27 20:38:28 +00009606 DAG.getUNDEF(VT), NewMask.data());
9607}
9608
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009609/// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP,
9610/// NEON load/store intrinsics, and generic vector load/stores, to merge
9611/// base address updates.
9612/// For generic load/stores, the memory type is assumed to be a vector.
9613/// The caller is assumed to have checked legality.
Bob Wilson06fce872011-02-07 17:43:21 +00009614static SDValue CombineBaseUpdate(SDNode *N,
9615 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson06fce872011-02-07 17:43:21 +00009616 SelectionDAG &DAG = DCI.DAG;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009617 const bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID ||
9618 N->getOpcode() == ISD::INTRINSIC_W_CHAIN);
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009619 const bool isStore = N->getOpcode() == ISD::STORE;
9620 const unsigned AddrOpIdx = ((isIntrinsic || isStore) ? 2 : 1);
Bob Wilson06fce872011-02-07 17:43:21 +00009621 SDValue Addr = N->getOperand(AddrOpIdx);
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009622 MemSDNode *MemN = cast<MemSDNode>(N);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009623 SDLoc dl(N);
Bob Wilson06fce872011-02-07 17:43:21 +00009624
9625 // Search for a use of the address operand that is an increment.
9626 for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
9627 UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
9628 SDNode *User = *UI;
9629 if (User->getOpcode() != ISD::ADD ||
9630 UI.getUse().getResNo() != Addr.getResNo())
9631 continue;
9632
9633 // Check that the add is independent of the load/store. Otherwise, folding
9634 // it would create a cycle.
9635 if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
9636 continue;
9637
9638 // Find the new opcode for the updating load/store.
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009639 bool isLoadOp = true;
Bob Wilson06fce872011-02-07 17:43:21 +00009640 bool isLaneOp = false;
9641 unsigned NewOpc = 0;
9642 unsigned NumVecs = 0;
9643 if (isIntrinsic) {
9644 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9645 switch (IntNo) {
Craig Toppere55c5562012-02-07 02:50:20 +00009646 default: llvm_unreachable("unexpected intrinsic for Neon base update");
Bob Wilson06fce872011-02-07 17:43:21 +00009647 case Intrinsic::arm_neon_vld1: NewOpc = ARMISD::VLD1_UPD;
9648 NumVecs = 1; break;
9649 case Intrinsic::arm_neon_vld2: NewOpc = ARMISD::VLD2_UPD;
9650 NumVecs = 2; break;
9651 case Intrinsic::arm_neon_vld3: NewOpc = ARMISD::VLD3_UPD;
9652 NumVecs = 3; break;
9653 case Intrinsic::arm_neon_vld4: NewOpc = ARMISD::VLD4_UPD;
9654 NumVecs = 4; break;
9655 case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD;
9656 NumVecs = 2; isLaneOp = true; break;
9657 case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD;
9658 NumVecs = 3; isLaneOp = true; break;
9659 case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD;
9660 NumVecs = 4; isLaneOp = true; break;
9661 case Intrinsic::arm_neon_vst1: NewOpc = ARMISD::VST1_UPD;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009662 NumVecs = 1; isLoadOp = false; break;
Bob Wilson06fce872011-02-07 17:43:21 +00009663 case Intrinsic::arm_neon_vst2: NewOpc = ARMISD::VST2_UPD;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009664 NumVecs = 2; isLoadOp = false; break;
Bob Wilson06fce872011-02-07 17:43:21 +00009665 case Intrinsic::arm_neon_vst3: NewOpc = ARMISD::VST3_UPD;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009666 NumVecs = 3; isLoadOp = false; break;
Bob Wilson06fce872011-02-07 17:43:21 +00009667 case Intrinsic::arm_neon_vst4: NewOpc = ARMISD::VST4_UPD;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009668 NumVecs = 4; isLoadOp = false; break;
Bob Wilson06fce872011-02-07 17:43:21 +00009669 case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009670 NumVecs = 2; isLoadOp = false; isLaneOp = true; break;
Bob Wilson06fce872011-02-07 17:43:21 +00009671 case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009672 NumVecs = 3; isLoadOp = false; isLaneOp = true; break;
Bob Wilson06fce872011-02-07 17:43:21 +00009673 case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009674 NumVecs = 4; isLoadOp = false; isLaneOp = true; break;
Bob Wilson06fce872011-02-07 17:43:21 +00009675 }
9676 } else {
9677 isLaneOp = true;
9678 switch (N->getOpcode()) {
Craig Toppere55c5562012-02-07 02:50:20 +00009679 default: llvm_unreachable("unexpected opcode for Neon base update");
Bob Wilson06fce872011-02-07 17:43:21 +00009680 case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break;
9681 case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break;
9682 case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break;
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009683 case ISD::LOAD: NewOpc = ARMISD::VLD1_UPD;
9684 NumVecs = 1; isLaneOp = false; break;
9685 case ISD::STORE: NewOpc = ARMISD::VST1_UPD;
9686 NumVecs = 1; isLaneOp = false; isLoadOp = false; break;
Bob Wilson06fce872011-02-07 17:43:21 +00009687 }
9688 }
9689
9690 // Find the size of memory referenced by the load/store.
9691 EVT VecTy;
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009692 if (isLoadOp) {
Bob Wilson06fce872011-02-07 17:43:21 +00009693 VecTy = N->getValueType(0);
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009694 } else if (isIntrinsic) {
Renato Golin2a5c0a52015-02-04 10:11:59 +00009695 VecTy = N->getOperand(AddrOpIdx+1).getValueType();
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009696 } else {
9697 assert(isStore && "Node has to be a load, a store, or an intrinsic!");
9698 VecTy = N->getOperand(1).getValueType();
9699 }
9700
Bob Wilson06fce872011-02-07 17:43:21 +00009701 unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
9702 if (isLaneOp)
9703 NumBytes /= VecTy.getVectorNumElements();
9704
9705 // If the increment is a constant, it must match the memory ref size.
9706 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
9707 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
9708 uint64_t IncVal = CInc->getZExtValue();
9709 if (IncVal != NumBytes)
9710 continue;
9711 } else if (NumBytes >= 3 * 16) {
9712 // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two
9713 // separate instructions that make it harder to use a non-constant update.
9714 continue;
9715 }
9716
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009717 // OK, we found an ADD we can fold into the base update.
9718 // Now, create a _UPD node, taking care of not breaking alignment.
9719
9720 EVT AlignedVecTy = VecTy;
9721 unsigned Alignment = MemN->getAlignment();
9722
9723 // If this is a less-than-standard-aligned load/store, change the type to
9724 // match the standard alignment.
9725 // The alignment is overlooked when selecting _UPD variants; and it's
9726 // easier to introduce bitcasts here than fix that.
9727 // There are 3 ways to get to this base-update combine:
9728 // - intrinsics: they are assumed to be properly aligned (to the standard
9729 // alignment of the memory type), so we don't need to do anything.
9730 // - ARMISD::VLDx nodes: they are only generated from the aforementioned
9731 // intrinsics, so, likewise, there's nothing to do.
9732 // - generic load/store instructions: the alignment is specified as an
9733 // explicit operand, rather than implicitly as the standard alignment
9734 // of the memory type (like the intrisics). We need to change the
9735 // memory type to match the explicit alignment. That way, we don't
9736 // generate non-standard-aligned ARMISD::VLDx nodes.
9737 if (isa<LSBaseSDNode>(N)) {
9738 if (Alignment == 0)
9739 Alignment = 1;
9740 if (Alignment < VecTy.getScalarSizeInBits() / 8) {
9741 MVT EltTy = MVT::getIntegerVT(Alignment * 8);
9742 assert(NumVecs == 1 && "Unexpected multi-element generic load/store.");
9743 assert(!isLaneOp && "Unexpected generic load/store lane.");
9744 unsigned NumElts = NumBytes / (EltTy.getSizeInBits() / 8);
9745 AlignedVecTy = MVT::getVectorVT(EltTy, NumElts);
9746 }
9747 // Don't set an explicit alignment on regular load/stores that we want
9748 // to transform to VLD/VST 1_UPD nodes.
9749 // This matches the behavior of regular load/stores, which only get an
9750 // explicit alignment if the MMO alignment is larger than the standard
9751 // alignment of the memory type.
9752 // Intrinsics, however, always get an explicit alignment, set to the
9753 // alignment of the MMO.
9754 Alignment = 1;
9755 }
9756
Bob Wilson06fce872011-02-07 17:43:21 +00009757 // Create the new updating load/store node.
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009758 // First, create an SDVTList for the new updating node's results.
Bob Wilson06fce872011-02-07 17:43:21 +00009759 EVT Tys[6];
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009760 unsigned NumResultVecs = (isLoadOp ? NumVecs : 0);
Bob Wilson06fce872011-02-07 17:43:21 +00009761 unsigned n;
9762 for (n = 0; n < NumResultVecs; ++n)
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009763 Tys[n] = AlignedVecTy;
Bob Wilson06fce872011-02-07 17:43:21 +00009764 Tys[n++] = MVT::i32;
9765 Tys[n] = MVT::Other;
Craig Toppere1d12942014-08-27 05:25:25 +00009766 SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumResultVecs+2));
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009767
9768 // Then, gather the new node's operands.
Bob Wilson06fce872011-02-07 17:43:21 +00009769 SmallVector<SDValue, 8> Ops;
9770 Ops.push_back(N->getOperand(0)); // incoming chain
9771 Ops.push_back(N->getOperand(AddrOpIdx));
9772 Ops.push_back(Inc);
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009773
9774 if (StoreSDNode *StN = dyn_cast<StoreSDNode>(N)) {
9775 // Try to match the intrinsic's signature
9776 Ops.push_back(StN->getValue());
9777 } else {
9778 // Loads (and of course intrinsics) match the intrinsics' signature,
9779 // so just add all but the alignment operand.
9780 for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands() - 1; ++i)
9781 Ops.push_back(N->getOperand(i));
9782 }
9783
9784 // For all node types, the alignment operand is always the last one.
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009785 Ops.push_back(DAG.getConstant(Alignment, dl, MVT::i32));
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009786
9787 // If this is a non-standard-aligned STORE, the penultimate operand is the
9788 // stored value. Bitcast it to the aligned type.
9789 if (AlignedVecTy != VecTy && N->getOpcode() == ISD::STORE) {
9790 SDValue &StVal = Ops[Ops.size()-2];
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009791 StVal = DAG.getNode(ISD::BITCAST, dl, AlignedVecTy, StVal);
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009792 }
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009793
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009794 SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, dl, SDTys,
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009795 Ops, AlignedVecTy,
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009796 MemN->getMemOperand());
Bob Wilson06fce872011-02-07 17:43:21 +00009797
9798 // Update the uses.
Ahmed Bougacha4c2b0782015-02-19 23:13:10 +00009799 SmallVector<SDValue, 5> NewResults;
Ahmed Bougachadfdf54b2015-02-19 23:30:37 +00009800 for (unsigned i = 0; i < NumResultVecs; ++i)
Bob Wilson06fce872011-02-07 17:43:21 +00009801 NewResults.push_back(SDValue(UpdN.getNode(), i));
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009802
9803 // If this is an non-standard-aligned LOAD, the first result is the loaded
9804 // value. Bitcast it to the expected result type.
9805 if (AlignedVecTy != VecTy && N->getOpcode() == ISD::LOAD) {
9806 SDValue &LdVal = NewResults[0];
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +00009807 LdVal = DAG.getNode(ISD::BITCAST, dl, VecTy, LdVal);
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009808 }
9809
Bob Wilson06fce872011-02-07 17:43:21 +00009810 NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain
9811 DCI.CombineTo(N, NewResults);
9812 DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
9813
9814 break;
Owen Anderson77aa2662011-04-05 21:48:57 +00009815 }
Bob Wilson06fce872011-02-07 17:43:21 +00009816 return SDValue();
9817}
9818
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009819static SDValue PerformVLDCombine(SDNode *N,
9820 TargetLowering::DAGCombinerInfo &DCI) {
9821 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
9822 return SDValue();
9823
9824 return CombineBaseUpdate(N, DCI);
9825}
9826
Bob Wilson2d790df2010-11-28 06:51:26 +00009827/// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a
9828/// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic
9829/// are also VDUPLANEs. If so, combine them to a vldN-dup operation and
9830/// return true.
9831static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
9832 SelectionDAG &DAG = DCI.DAG;
9833 EVT VT = N->getValueType(0);
9834 // vldN-dup instructions only support 64-bit vectors for N > 1.
9835 if (!VT.is64BitVector())
9836 return false;
9837
9838 // Check if the VDUPLANE operand is a vldN-dup intrinsic.
9839 SDNode *VLD = N->getOperand(0).getNode();
9840 if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN)
9841 return false;
9842 unsigned NumVecs = 0;
9843 unsigned NewOpc = 0;
9844 unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue();
9845 if (IntNo == Intrinsic::arm_neon_vld2lane) {
9846 NumVecs = 2;
9847 NewOpc = ARMISD::VLD2DUP;
9848 } else if (IntNo == Intrinsic::arm_neon_vld3lane) {
9849 NumVecs = 3;
9850 NewOpc = ARMISD::VLD3DUP;
9851 } else if (IntNo == Intrinsic::arm_neon_vld4lane) {
9852 NumVecs = 4;
9853 NewOpc = ARMISD::VLD4DUP;
9854 } else {
9855 return false;
9856 }
9857
9858 // First check that all the vldN-lane uses are VDUPLANEs and that the lane
9859 // numbers match the load.
9860 unsigned VLDLaneNo =
9861 cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue();
9862 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
9863 UI != UE; ++UI) {
9864 // Ignore uses of the chain result.
9865 if (UI.getUse().getResNo() == NumVecs)
9866 continue;
9867 SDNode *User = *UI;
9868 if (User->getOpcode() != ARMISD::VDUPLANE ||
9869 VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue())
9870 return false;
9871 }
9872
9873 // Create the vldN-dup node.
9874 EVT Tys[5];
9875 unsigned n;
9876 for (n = 0; n < NumVecs; ++n)
9877 Tys[n] = VT;
9878 Tys[n] = MVT::Other;
Craig Toppere1d12942014-08-27 05:25:25 +00009879 SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumVecs+1));
Bob Wilson2d790df2010-11-28 06:51:26 +00009880 SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) };
9881 MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD);
Andrew Trickef9de2a2013-05-25 02:42:55 +00009882 SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, SDLoc(VLD), SDTys,
Craig Topper206fcd42014-04-26 19:29:41 +00009883 Ops, VLDMemInt->getMemoryVT(),
Bob Wilson2d790df2010-11-28 06:51:26 +00009884 VLDMemInt->getMemOperand());
9885
9886 // Update the uses.
9887 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
9888 UI != UE; ++UI) {
9889 unsigned ResNo = UI.getUse().getResNo();
9890 // Ignore uses of the chain result.
9891 if (ResNo == NumVecs)
9892 continue;
9893 SDNode *User = *UI;
9894 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));
9895 }
9896
9897 // Now the vldN-lane intrinsic is dead except for its chain result.
9898 // Update uses of the chain.
9899 std::vector<SDValue> VLDDupResults;
9900 for (unsigned n = 0; n < NumVecs; ++n)
9901 VLDDupResults.push_back(SDValue(VLDDup.getNode(), n));
9902 VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs));
9903 DCI.CombineTo(VLD, VLDDupResults);
9904
9905 return true;
9906}
9907
Bob Wilson103a0dc2010-07-14 01:22:12 +00009908/// PerformVDUPLANECombine - Target-specific dag combine xforms for
9909/// ARMISD::VDUPLANE.
Bob Wilson2d790df2010-11-28 06:51:26 +00009910static SDValue PerformVDUPLANECombine(SDNode *N,
9911 TargetLowering::DAGCombinerInfo &DCI) {
Bob Wilson103a0dc2010-07-14 01:22:12 +00009912 SDValue Op = N->getOperand(0);
Bob Wilson103a0dc2010-07-14 01:22:12 +00009913
Bob Wilson2d790df2010-11-28 06:51:26 +00009914 // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses
9915 // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation.
9916 if (CombineVLDDUP(N, DCI))
9917 return SDValue(N, 0);
9918
9919 // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is
9920 // redundant. Ignore bit_converts for now; element sizes are checked below.
Wesley Peck527da1b2010-11-23 03:31:01 +00009921 while (Op.getOpcode() == ISD::BITCAST)
Bob Wilson103a0dc2010-07-14 01:22:12 +00009922 Op = Op.getOperand(0);
Bob Wilsonbad47f62010-07-14 06:31:50 +00009923 if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM)
Bob Wilson103a0dc2010-07-14 01:22:12 +00009924 return SDValue();
9925
9926 // Make sure the VMOV element size is not bigger than the VDUPLANE elements.
9927 unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits();
9928 // The canonical VMOV for a zero vector uses a 32-bit element size.
9929 unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9930 unsigned EltBits;
9931 if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0)
9932 EltSize = 8;
Bob Wilson2d790df2010-11-28 06:51:26 +00009933 EVT VT = N->getValueType(0);
Bob Wilson103a0dc2010-07-14 01:22:12 +00009934 if (EltSize > VT.getVectorElementType().getSizeInBits())
9935 return SDValue();
9936
Andrew Trickef9de2a2013-05-25 02:42:55 +00009937 return DCI.DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Bob Wilson103a0dc2010-07-14 01:22:12 +00009938}
9939
Ahmed Bougachadb141ac2015-02-19 23:52:41 +00009940static SDValue PerformLOADCombine(SDNode *N,
9941 TargetLowering::DAGCombinerInfo &DCI) {
9942 EVT VT = N->getValueType(0);
9943
9944 // If this is a legal vector load, try to combine it into a VLD1_UPD.
9945 if (ISD::isNormalLoad(N) && VT.isVector() &&
9946 DCI.DAG.getTargetLoweringInfo().isTypeLegal(VT))
9947 return CombineBaseUpdate(N, DCI);
9948
9949 return SDValue();
9950}
9951
Ahmed Bougacha23167462014-12-09 21:26:53 +00009952/// PerformSTORECombine - Target-specific dag combine xforms for
9953/// ISD::STORE.
9954static SDValue PerformSTORECombine(SDNode *N,
9955 TargetLowering::DAGCombinerInfo &DCI) {
9956 StoreSDNode *St = cast<StoreSDNode>(N);
9957 if (St->isVolatile())
9958 return SDValue();
9959
9960 // Optimize trunc store (of multiple scalars) to shuffle and store. First,
9961 // pack all of the elements in one place. Next, store to memory in fewer
9962 // chunks.
9963 SDValue StVal = St->getValue();
9964 EVT VT = StVal.getValueType();
9965 if (St->isTruncatingStore() && VT.isVector()) {
9966 SelectionDAG &DAG = DCI.DAG;
9967 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9968 EVT StVT = St->getMemoryVT();
9969 unsigned NumElems = VT.getVectorNumElements();
9970 assert(StVT != VT && "Cannot truncate to the same type");
9971 unsigned FromEltSz = VT.getVectorElementType().getSizeInBits();
9972 unsigned ToEltSz = StVT.getVectorElementType().getSizeInBits();
9973
9974 // From, To sizes and ElemCount must be pow of two
9975 if (!isPowerOf2_32(NumElems * FromEltSz * ToEltSz)) return SDValue();
9976
9977 // We are going to use the original vector elt for storing.
9978 // Accumulated smaller vector elements must be a multiple of the store size.
9979 if (0 != (NumElems * FromEltSz) % ToEltSz) return SDValue();
9980
9981 unsigned SizeRatio = FromEltSz / ToEltSz;
9982 assert(SizeRatio * NumElems * ToEltSz == VT.getSizeInBits());
9983
9984 // Create a type on which we perform the shuffle.
9985 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(),
9986 NumElems*SizeRatio);
9987 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
9988
9989 SDLoc DL(St);
9990 SDValue WideVec = DAG.getNode(ISD::BITCAST, DL, WideVecVT, StVal);
9991 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
9992 for (unsigned i = 0; i < NumElems; ++i)
Mehdi Aminiffc14022015-07-08 01:00:38 +00009993 ShuffleVec[i] = DAG.getDataLayout().isBigEndian()
9994 ? (i + 1) * SizeRatio - 1
9995 : i * SizeRatio;
Ahmed Bougacha23167462014-12-09 21:26:53 +00009996
9997 // Can't shuffle using an illegal type.
9998 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
9999
10000 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, DL, WideVec,
10001 DAG.getUNDEF(WideVec.getValueType()),
10002 ShuffleVec.data());
10003 // At this point all of the data is stored at the bottom of the
10004 // register. We now need to save it to mem.
10005
10006 // Find the largest store unit
10007 MVT StoreType = MVT::i8;
Ahmed Bougacha67dd2d22015-01-07 21:27:10 +000010008 for (MVT Tp : MVT::integer_valuetypes()) {
Ahmed Bougacha23167462014-12-09 21:26:53 +000010009 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToEltSz)
10010 StoreType = Tp;
10011 }
10012 // Didn't find a legal store type.
10013 if (!TLI.isTypeLegal(StoreType))
10014 return SDValue();
10015
10016 // Bitcast the original vector into a vector of store-size units
10017 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
10018 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
10019 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
10020 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, DL, StoreVecVT, Shuff);
10021 SmallVector<SDValue, 8> Chains;
Mehdi Amini44ede332015-07-09 02:09:04 +000010022 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits() / 8, DL,
10023 TLI.getPointerTy(DAG.getDataLayout()));
Ahmed Bougacha23167462014-12-09 21:26:53 +000010024 SDValue BasePtr = St->getBasePtr();
10025
10026 // Perform one or more big stores into memory.
10027 unsigned E = (ToEltSz*NumElems)/StoreType.getSizeInBits();
10028 for (unsigned I = 0; I < E; I++) {
10029 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
10030 StoreType, ShuffWide,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010031 DAG.getIntPtrConstant(I, DL));
Ahmed Bougacha23167462014-12-09 21:26:53 +000010032 SDValue Ch = DAG.getStore(St->getChain(), DL, SubVec, BasePtr,
10033 St->getPointerInfo(), St->isVolatile(),
10034 St->isNonTemporal(), St->getAlignment());
10035 BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr,
10036 Increment);
10037 Chains.push_back(Ch);
10038 }
10039 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
10040 }
10041
10042 if (!ISD::isNormalStore(St))
10043 return SDValue();
10044
10045 // Split a store of a VMOVDRR into two integer stores to avoid mixing NEON and
10046 // ARM stores of arguments in the same cache line.
10047 if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR &&
10048 StVal.getNode()->hasOneUse()) {
10049 SelectionDAG &DAG = DCI.DAG;
Mehdi Aminiffc14022015-07-08 01:00:38 +000010050 bool isBigEndian = DAG.getDataLayout().isBigEndian();
Ahmed Bougacha23167462014-12-09 21:26:53 +000010051 SDLoc DL(St);
10052 SDValue BasePtr = St->getBasePtr();
10053 SDValue NewST1 = DAG.getStore(St->getChain(), DL,
10054 StVal.getNode()->getOperand(isBigEndian ? 1 : 0 ),
10055 BasePtr, St->getPointerInfo(), St->isVolatile(),
10056 St->isNonTemporal(), St->getAlignment());
10057
10058 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010059 DAG.getConstant(4, DL, MVT::i32));
Ahmed Bougacha23167462014-12-09 21:26:53 +000010060 return DAG.getStore(NewST1.getValue(0), DL,
10061 StVal.getNode()->getOperand(isBigEndian ? 0 : 1),
10062 OffsetPtr, St->getPointerInfo(), St->isVolatile(),
10063 St->isNonTemporal(),
10064 std::min(4U, St->getAlignment() / 2));
10065 }
10066
10067 if (StVal.getValueType() == MVT::i64 &&
10068 StVal.getNode()->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
10069
10070 // Bitcast an i64 store extracted from a vector to f64.
10071 // Otherwise, the i64 value will be legalized to a pair of i32 values.
10072 SelectionDAG &DAG = DCI.DAG;
10073 SDLoc dl(StVal);
10074 SDValue IntVec = StVal.getOperand(0);
10075 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
10076 IntVec.getValueType().getVectorNumElements());
10077 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec);
10078 SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
10079 Vec, StVal.getOperand(1));
10080 dl = SDLoc(N);
10081 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt);
10082 // Make the DAGCombiner fold the bitcasts.
10083 DCI.AddToWorklist(Vec.getNode());
10084 DCI.AddToWorklist(ExtElt.getNode());
10085 DCI.AddToWorklist(V.getNode());
10086 return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(),
10087 St->getPointerInfo(), St->isVolatile(),
10088 St->isNonTemporal(), St->getAlignment(),
10089 St->getAAInfo());
10090 }
10091
Ahmed Bougachadb141ac2015-02-19 23:52:41 +000010092 // If this is a legal vector store, try to combine it into a VST1_UPD.
10093 if (ISD::isNormalStore(N) && VT.isVector() &&
10094 DCI.DAG.getTargetLoweringInfo().isTypeLegal(VT))
10095 return CombineBaseUpdate(N, DCI);
10096
Ahmed Bougacha23167462014-12-09 21:26:53 +000010097 return SDValue();
10098}
10099
Chad Rosierfa8d8932011-06-24 19:23:04 +000010100/// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD)
10101/// can replace combinations of VMUL and VCVT (floating-point to integer)
10102/// when the VMUL has a constant operand that is a power of 2.
10103///
10104/// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
10105/// vmul.f32 d16, d17, d16
10106/// vcvt.s32.f32 d16, d16
10107/// becomes:
10108/// vcvt.s32.f32 d16, d16, #3
Chad Rosiera087fd22015-10-06 20:23:42 +000010109static SDValue PerformVCVTCombine(SDNode *N, SelectionDAG &DAG,
Chad Rosierfa8d8932011-06-24 19:23:04 +000010110 const ARMSubtarget *Subtarget) {
Chad Rosiera087fd22015-10-06 20:23:42 +000010111 if (!Subtarget->hasNEON())
10112 return SDValue();
Chad Rosierfa8d8932011-06-24 19:23:04 +000010113
Chad Rosiera087fd22015-10-06 20:23:42 +000010114 SDValue Op = N->getOperand(0);
10115 if (!Op.getValueType().isVector() || Op.getOpcode() != ISD::FMUL)
Chad Rosierfa8d8932011-06-24 19:23:04 +000010116 return SDValue();
10117
Chad Rosierfa8d8932011-06-24 19:23:04 +000010118 SDValue ConstVec = Op->getOperand(1);
Chad Rosieraed910b2015-10-06 20:51:26 +000010119 if (!isa<BuildVectorSDNode>(ConstVec))
10120 return SDValue();
Chad Rosierfa8d8932011-06-24 19:23:04 +000010121
Tim Northover7cbc2152013-06-28 15:29:25 +000010122 MVT FloatTy = Op.getSimpleValueType().getVectorElementType();
Chad Rosier9df4aff2015-10-06 20:45:45 +000010123 uint32_t FloatBits = FloatTy.getSizeInBits();
Tim Northover7cbc2152013-06-28 15:29:25 +000010124 MVT IntTy = N->getSimpleValueType(0).getVectorElementType();
Chad Rosier9df4aff2015-10-06 20:45:45 +000010125 uint32_t IntBits = IntTy.getSizeInBits();
Bradley Smithececb7f2014-12-16 10:59:27 +000010126 unsigned NumLanes = Op.getValueType().getVectorNumElements();
Chad Rosier9df4aff2015-10-06 20:45:45 +000010127 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) {
Tim Northover7cbc2152013-06-28 15:29:25 +000010128 // These instructions only exist converting from f32 to i32. We can handle
10129 // smaller integers by generating an extra truncate, but larger ones would
Bradley Smithececb7f2014-12-16 10:59:27 +000010130 // be lossy. We also can't handle more then 4 lanes, since these intructions
10131 // only support v2i32/v4i32 types.
Tim Northover7cbc2152013-06-28 15:29:25 +000010132 return SDValue();
10133 }
10134
Chad Rosier169865f2015-10-07 17:28:58 +000010135 BitVector UndefElements;
10136 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(ConstVec);
10137 int32_t C = BV->getConstantFPSplatPow2ToLog2Int(&UndefElements, 33);
10138 if (C == -1 || C == 0 || C > 32)
Chad Rosierdb71abf2015-10-07 13:40:44 +000010139 return SDValue();
10140
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010141 SDLoc dl(N);
Chad Rosier169865f2015-10-07 17:28:58 +000010142 bool isSigned = N->getOpcode() == ISD::FP_TO_SINT;
Chad Rosierfa8d8932011-06-24 19:23:04 +000010143 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs :
10144 Intrinsic::arm_neon_vcvtfp2fxu;
Chad Rosier9df4aff2015-10-06 20:45:45 +000010145 SDValue FixConv = DAG.getNode(
10146 ISD::INTRINSIC_WO_CHAIN, dl, NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
10147 DAG.getConstant(IntrinsicOpcode, dl, MVT::i32), Op->getOperand(0),
Chad Rosier169865f2015-10-07 17:28:58 +000010148 DAG.getConstant(C, dl, MVT::i32));
Tim Northover7cbc2152013-06-28 15:29:25 +000010149
Chad Rosier9df4aff2015-10-06 20:45:45 +000010150 if (IntBits < FloatBits)
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010151 FixConv = DAG.getNode(ISD::TRUNCATE, dl, N->getValueType(0), FixConv);
Tim Northover7cbc2152013-06-28 15:29:25 +000010152
10153 return FixConv;
Chad Rosierfa8d8932011-06-24 19:23:04 +000010154}
10155
10156/// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD)
10157/// can replace combinations of VCVT (integer to floating-point) and VDIV
10158/// when the VDIV has a constant operand that is a power of 2.
10159///
10160/// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
10161/// vcvt.f32.s32 d16, d16
10162/// vdiv.f32 d16, d17, d16
10163/// becomes:
10164/// vcvt.f32.s32 d16, d16, #3
Chad Rosiera087fd22015-10-06 20:23:42 +000010165static SDValue PerformVDIVCombine(SDNode *N, SelectionDAG &DAG,
Chad Rosierfa8d8932011-06-24 19:23:04 +000010166 const ARMSubtarget *Subtarget) {
Chad Rosiera087fd22015-10-06 20:23:42 +000010167 if (!Subtarget->hasNEON())
10168 return SDValue();
10169
Chad Rosierfa8d8932011-06-24 19:23:04 +000010170 SDValue Op = N->getOperand(0);
10171 unsigned OpOpcode = Op.getNode()->getOpcode();
Chad Rosiera087fd22015-10-06 20:23:42 +000010172 if (!N->getValueType(0).isVector() ||
Chad Rosierfa8d8932011-06-24 19:23:04 +000010173 (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP))
10174 return SDValue();
10175
Chad Rosierfa8d8932011-06-24 19:23:04 +000010176 SDValue ConstVec = N->getOperand(1);
Chad Rosieraed910b2015-10-06 20:51:26 +000010177 if (!isa<BuildVectorSDNode>(ConstVec))
10178 return SDValue();
Chad Rosierfa8d8932011-06-24 19:23:04 +000010179
Tim Northover7cbc2152013-06-28 15:29:25 +000010180 MVT FloatTy = N->getSimpleValueType(0).getVectorElementType();
Chad Rosierdca46b42015-10-06 20:58:42 +000010181 uint32_t FloatBits = FloatTy.getSizeInBits();
Tim Northover7cbc2152013-06-28 15:29:25 +000010182 MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType();
Chad Rosierdca46b42015-10-06 20:58:42 +000010183 uint32_t IntBits = IntTy.getSizeInBits();
Chad Rosier17436bf2015-10-07 16:15:40 +000010184 unsigned NumLanes = Op.getValueType().getVectorNumElements();
10185 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) {
Tim Northover7cbc2152013-06-28 15:29:25 +000010186 // These instructions only exist converting from i32 to f32. We can handle
10187 // smaller integers by generating an extra extend, but larger ones would
Chad Rosier17436bf2015-10-07 16:15:40 +000010188 // be lossy. We also can't handle more then 4 lanes, since these intructions
10189 // only support v2i32/v4i32 types.
Tim Northover7cbc2152013-06-28 15:29:25 +000010190 return SDValue();
10191 }
10192
Chad Rosier169865f2015-10-07 17:28:58 +000010193 BitVector UndefElements;
10194 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(ConstVec);
10195 int32_t C = BV->getConstantFPSplatPow2ToLog2Int(&UndefElements, 33);
10196 if (C == -1 || C == 0 || C > 32)
Chad Rosierdb71abf2015-10-07 13:40:44 +000010197 return SDValue();
10198
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010199 SDLoc dl(N);
Chad Rosier169865f2015-10-07 17:28:58 +000010200 bool isSigned = OpOpcode == ISD::SINT_TO_FP;
Tim Northover7cbc2152013-06-28 15:29:25 +000010201 SDValue ConvInput = Op.getOperand(0);
Chad Rosierdca46b42015-10-06 20:58:42 +000010202 if (IntBits < FloatBits)
Tim Northover7cbc2152013-06-28 15:29:25 +000010203 ConvInput = DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010204 dl, NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
Tim Northover7cbc2152013-06-28 15:29:25 +000010205 ConvInput);
10206
Eric Christopher1b8b94192011-06-29 21:10:36 +000010207 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp :
Chad Rosierfa8d8932011-06-24 19:23:04 +000010208 Intrinsic::arm_neon_vcvtfxu2fp;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010209 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl,
Chad Rosierfa8d8932011-06-24 19:23:04 +000010210 Op.getValueType(),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010211 DAG.getConstant(IntrinsicOpcode, dl, MVT::i32),
Chad Rosier169865f2015-10-07 17:28:58 +000010212 ConvInput, DAG.getConstant(C, dl, MVT::i32));
Chad Rosierfa8d8932011-06-24 19:23:04 +000010213}
10214
10215/// Getvshiftimm - Check if this is a valid build_vector for the immediate
Bob Wilson2e076c42009-06-22 23:27:02 +000010216/// operand of a vector shift operation, where all the elements of the
10217/// build_vector must have the same constant integer value.
10218static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
10219 // Ignore bit_converts.
Wesley Peck527da1b2010-11-23 03:31:01 +000010220 while (Op.getOpcode() == ISD::BITCAST)
Bob Wilson2e076c42009-06-22 23:27:02 +000010221 Op = Op.getOperand(0);
10222 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
10223 APInt SplatBits, SplatUndef;
10224 unsigned SplatBitSize;
10225 bool HasAnyUndefs;
10226 if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
10227 HasAnyUndefs, ElementBits) ||
10228 SplatBitSize > ElementBits)
10229 return false;
10230 Cnt = SplatBits.getSExtValue();
10231 return true;
10232}
10233
10234/// isVShiftLImm - Check if this is a valid build_vector for the immediate
10235/// operand of a vector shift left operation. That value must be in the range:
10236/// 0 <= Value < ElementBits for a left shift; or
10237/// 0 <= Value <= ElementBits for a long left shift.
Owen Anderson53aa7a92009-08-10 22:56:29 +000010238static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
Bob Wilson2e076c42009-06-22 23:27:02 +000010239 assert(VT.isVector() && "vector shift count is not a vector type");
Luke Cheesemanb5c627a2015-07-24 09:31:48 +000010240 int64_t ElementBits = VT.getVectorElementType().getSizeInBits();
Bob Wilson2e076c42009-06-22 23:27:02 +000010241 if (! getVShiftImm(Op, ElementBits, Cnt))
10242 return false;
10243 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
10244}
10245
10246/// isVShiftRImm - Check if this is a valid build_vector for the immediate
10247/// operand of a vector shift right operation. For a shift opcode, the value
10248/// is positive, but for an intrinsic the value count must be negative. The
10249/// absolute value must be in the range:
10250/// 1 <= |Value| <= ElementBits for a right shift; or
10251/// 1 <= |Value| <= ElementBits/2 for a narrow right shift.
Owen Anderson53aa7a92009-08-10 22:56:29 +000010252static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
Bob Wilson2e076c42009-06-22 23:27:02 +000010253 int64_t &Cnt) {
10254 assert(VT.isVector() && "vector shift count is not a vector type");
Luke Cheesemanb5c627a2015-07-24 09:31:48 +000010255 int64_t ElementBits = VT.getVectorElementType().getSizeInBits();
Bob Wilson2e076c42009-06-22 23:27:02 +000010256 if (! getVShiftImm(Op, ElementBits, Cnt))
10257 return false;
Luke Cheesemanb5c627a2015-07-24 09:31:48 +000010258 if (!isIntrinsic)
10259 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
10260 if (Cnt >= -(isNarrow ? ElementBits/2 : ElementBits) && Cnt <= -1) {
Bob Wilson2e076c42009-06-22 23:27:02 +000010261 Cnt = -Cnt;
Luke Cheesemanb5c627a2015-07-24 09:31:48 +000010262 return true;
10263 }
10264 return false;
Bob Wilson2e076c42009-06-22 23:27:02 +000010265}
10266
10267/// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
10268static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
10269 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
10270 switch (IntNo) {
10271 default:
10272 // Don't do anything for most intrinsics.
10273 break;
10274
10275 // Vector shifts: check for immediate versions and lower them.
10276 // Note: This is done during DAG combining instead of DAG legalizing because
10277 // the build_vectors for 64-bit vector element shift counts are generally
10278 // not legal, and it is hard to see their values after they get legalized to
10279 // loads from a constant pool.
10280 case Intrinsic::arm_neon_vshifts:
10281 case Intrinsic::arm_neon_vshiftu:
Bob Wilson2e076c42009-06-22 23:27:02 +000010282 case Intrinsic::arm_neon_vrshifts:
10283 case Intrinsic::arm_neon_vrshiftu:
10284 case Intrinsic::arm_neon_vrshiftn:
10285 case Intrinsic::arm_neon_vqshifts:
10286 case Intrinsic::arm_neon_vqshiftu:
10287 case Intrinsic::arm_neon_vqshiftsu:
10288 case Intrinsic::arm_neon_vqshiftns:
10289 case Intrinsic::arm_neon_vqshiftnu:
10290 case Intrinsic::arm_neon_vqshiftnsu:
10291 case Intrinsic::arm_neon_vqrshiftns:
10292 case Intrinsic::arm_neon_vqrshiftnu:
10293 case Intrinsic::arm_neon_vqrshiftnsu: {
Owen Anderson53aa7a92009-08-10 22:56:29 +000010294 EVT VT = N->getOperand(1).getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +000010295 int64_t Cnt;
10296 unsigned VShiftOpc = 0;
10297
10298 switch (IntNo) {
10299 case Intrinsic::arm_neon_vshifts:
10300 case Intrinsic::arm_neon_vshiftu:
10301 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
10302 VShiftOpc = ARMISD::VSHL;
10303 break;
10304 }
10305 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
10306 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
10307 ARMISD::VSHRs : ARMISD::VSHRu);
10308 break;
10309 }
10310 return SDValue();
10311
Bob Wilson2e076c42009-06-22 23:27:02 +000010312 case Intrinsic::arm_neon_vrshifts:
10313 case Intrinsic::arm_neon_vrshiftu:
10314 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
10315 break;
10316 return SDValue();
10317
10318 case Intrinsic::arm_neon_vqshifts:
10319 case Intrinsic::arm_neon_vqshiftu:
10320 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
10321 break;
10322 return SDValue();
10323
10324 case Intrinsic::arm_neon_vqshiftsu:
10325 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
10326 break;
Torok Edwinfbcc6632009-07-14 16:55:14 +000010327 llvm_unreachable("invalid shift count for vqshlu intrinsic");
Bob Wilson2e076c42009-06-22 23:27:02 +000010328
Bob Wilson2e076c42009-06-22 23:27:02 +000010329 case Intrinsic::arm_neon_vrshiftn:
10330 case Intrinsic::arm_neon_vqshiftns:
10331 case Intrinsic::arm_neon_vqshiftnu:
10332 case Intrinsic::arm_neon_vqshiftnsu:
10333 case Intrinsic::arm_neon_vqrshiftns:
10334 case Intrinsic::arm_neon_vqrshiftnu:
10335 case Intrinsic::arm_neon_vqrshiftnsu:
10336 // Narrowing shifts require an immediate right shift.
10337 if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
10338 break;
Jim Grosbach84511e12010-06-02 21:53:11 +000010339 llvm_unreachable("invalid shift count for narrowing vector shift "
10340 "intrinsic");
Bob Wilson2e076c42009-06-22 23:27:02 +000010341
10342 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +000010343 llvm_unreachable("unhandled vector shift");
Bob Wilson2e076c42009-06-22 23:27:02 +000010344 }
10345
10346 switch (IntNo) {
10347 case Intrinsic::arm_neon_vshifts:
10348 case Intrinsic::arm_neon_vshiftu:
10349 // Opcode already set above.
10350 break;
Bob Wilson2e076c42009-06-22 23:27:02 +000010351 case Intrinsic::arm_neon_vrshifts:
10352 VShiftOpc = ARMISD::VRSHRs; break;
10353 case Intrinsic::arm_neon_vrshiftu:
10354 VShiftOpc = ARMISD::VRSHRu; break;
10355 case Intrinsic::arm_neon_vrshiftn:
10356 VShiftOpc = ARMISD::VRSHRN; break;
10357 case Intrinsic::arm_neon_vqshifts:
10358 VShiftOpc = ARMISD::VQSHLs; break;
10359 case Intrinsic::arm_neon_vqshiftu:
10360 VShiftOpc = ARMISD::VQSHLu; break;
10361 case Intrinsic::arm_neon_vqshiftsu:
10362 VShiftOpc = ARMISD::VQSHLsu; break;
10363 case Intrinsic::arm_neon_vqshiftns:
10364 VShiftOpc = ARMISD::VQSHRNs; break;
10365 case Intrinsic::arm_neon_vqshiftnu:
10366 VShiftOpc = ARMISD::VQSHRNu; break;
10367 case Intrinsic::arm_neon_vqshiftnsu:
10368 VShiftOpc = ARMISD::VQSHRNsu; break;
10369 case Intrinsic::arm_neon_vqrshiftns:
10370 VShiftOpc = ARMISD::VQRSHRNs; break;
10371 case Intrinsic::arm_neon_vqrshiftnu:
10372 VShiftOpc = ARMISD::VQRSHRNu; break;
10373 case Intrinsic::arm_neon_vqrshiftnsu:
10374 VShiftOpc = ARMISD::VQRSHRNsu; break;
10375 }
10376
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010377 SDLoc dl(N);
10378 return DAG.getNode(VShiftOpc, dl, N->getValueType(0),
10379 N->getOperand(1), DAG.getConstant(Cnt, dl, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +000010380 }
10381
10382 case Intrinsic::arm_neon_vshiftins: {
Owen Anderson53aa7a92009-08-10 22:56:29 +000010383 EVT VT = N->getOperand(1).getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +000010384 int64_t Cnt;
10385 unsigned VShiftOpc = 0;
10386
10387 if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
10388 VShiftOpc = ARMISD::VSLI;
10389 else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
10390 VShiftOpc = ARMISD::VSRI;
10391 else {
Torok Edwinfbcc6632009-07-14 16:55:14 +000010392 llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
Bob Wilson2e076c42009-06-22 23:27:02 +000010393 }
10394
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010395 SDLoc dl(N);
10396 return DAG.getNode(VShiftOpc, dl, N->getValueType(0),
Bob Wilson2e076c42009-06-22 23:27:02 +000010397 N->getOperand(1), N->getOperand(2),
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010398 DAG.getConstant(Cnt, dl, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +000010399 }
10400
10401 case Intrinsic::arm_neon_vqrshifts:
10402 case Intrinsic::arm_neon_vqrshiftu:
10403 // No immediate versions of these to check for.
10404 break;
10405 }
10406
10407 return SDValue();
10408}
10409
10410/// PerformShiftCombine - Checks for immediate versions of vector shifts and
10411/// lowers them. As with the vector shift intrinsics, this is done during DAG
10412/// combining instead of DAG legalizing because the build_vectors for 64-bit
10413/// vector element shift counts are generally not legal, and it is hard to see
10414/// their values after they get legalized to loads from a constant pool.
10415static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
10416 const ARMSubtarget *ST) {
Owen Anderson53aa7a92009-08-10 22:56:29 +000010417 EVT VT = N->getValueType(0);
Evan Chengf258a152012-02-23 02:58:19 +000010418 if (N->getOpcode() == ISD::SRL && VT == MVT::i32 && ST->hasV6Ops()) {
10419 // Canonicalize (srl (bswap x), 16) to (rotr (bswap x), 16) if the high
10420 // 16-bits of x is zero. This optimizes rev + lsr 16 to rev16.
10421 SDValue N1 = N->getOperand(1);
10422 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
10423 SDValue N0 = N->getOperand(0);
10424 if (C->getZExtValue() == 16 && N0.getOpcode() == ISD::BSWAP &&
10425 DAG.MaskedValueIsZero(N0.getOperand(0),
10426 APInt::getHighBitsSet(32, 16)))
Andrew Trickef9de2a2013-05-25 02:42:55 +000010427 return DAG.getNode(ISD::ROTR, SDLoc(N), VT, N0, N1);
Evan Chengf258a152012-02-23 02:58:19 +000010428 }
10429 }
Bob Wilson2e076c42009-06-22 23:27:02 +000010430
10431 // Nothing to be done for scalar shifts.
Tanya Lattnercd680952010-11-18 22:06:46 +000010432 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10433 if (!VT.isVector() || !TLI.isTypeLegal(VT))
Bob Wilson2e076c42009-06-22 23:27:02 +000010434 return SDValue();
10435
10436 assert(ST->hasNEON() && "unexpected vector shift");
10437 int64_t Cnt;
10438
10439 switch (N->getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +000010440 default: llvm_unreachable("unexpected shift opcode");
Bob Wilson2e076c42009-06-22 23:27:02 +000010441
10442 case ISD::SHL:
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010443 if (isVShiftLImm(N->getOperand(1), VT, false, Cnt)) {
10444 SDLoc dl(N);
10445 return DAG.getNode(ARMISD::VSHL, dl, VT, N->getOperand(0),
10446 DAG.getConstant(Cnt, dl, MVT::i32));
10447 }
Bob Wilson2e076c42009-06-22 23:27:02 +000010448 break;
10449
10450 case ISD::SRA:
10451 case ISD::SRL:
10452 if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
10453 unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
10454 ARMISD::VSHRs : ARMISD::VSHRu);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000010455 SDLoc dl(N);
10456 return DAG.getNode(VShiftOpc, dl, VT, N->getOperand(0),
10457 DAG.getConstant(Cnt, dl, MVT::i32));
Bob Wilson2e076c42009-06-22 23:27:02 +000010458 }
10459 }
10460 return SDValue();
10461}
10462
10463/// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
10464/// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
10465static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
10466 const ARMSubtarget *ST) {
10467 SDValue N0 = N->getOperand(0);
10468
10469 // Check for sign- and zero-extensions of vector extract operations of 8-
10470 // and 16-bit vector elements. NEON supports these directly. They are
10471 // handled during DAG combining because type legalization will promote them
10472 // to 32-bit types and it is messy to recognize the operations after that.
10473 if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
10474 SDValue Vec = N0.getOperand(0);
10475 SDValue Lane = N0.getOperand(1);
Owen Anderson53aa7a92009-08-10 22:56:29 +000010476 EVT VT = N->getValueType(0);
10477 EVT EltVT = N0.getValueType();
Bob Wilson2e076c42009-06-22 23:27:02 +000010478 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10479
Owen Anderson9f944592009-08-11 20:47:22 +000010480 if (VT == MVT::i32 &&
10481 (EltVT == MVT::i8 || EltVT == MVT::i16) &&
Bob Wilsonceb49292010-11-03 16:24:50 +000010482 TLI.isTypeLegal(Vec.getValueType()) &&
10483 isa<ConstantSDNode>(Lane)) {
Bob Wilson2e076c42009-06-22 23:27:02 +000010484
10485 unsigned Opc = 0;
10486 switch (N->getOpcode()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +000010487 default: llvm_unreachable("unexpected opcode");
Bob Wilson2e076c42009-06-22 23:27:02 +000010488 case ISD::SIGN_EXTEND:
10489 Opc = ARMISD::VGETLANEs;
10490 break;
10491 case ISD::ZERO_EXTEND:
10492 case ISD::ANY_EXTEND:
10493 Opc = ARMISD::VGETLANEu;
10494 break;
10495 }
Andrew Trickef9de2a2013-05-25 02:42:55 +000010496 return DAG.getNode(Opc, SDLoc(N), VT, Vec, Lane);
Bob Wilson2e076c42009-06-22 23:27:02 +000010497 }
10498 }
10499
10500 return SDValue();
10501}
10502
James Molloy9d55f192015-11-10 14:22:05 +000010503static void computeKnownBits(SelectionDAG &DAG, SDValue Op, APInt &KnownZero,
10504 APInt &KnownOne) {
10505 if (Op.getOpcode() == ARMISD::BFI) {
10506 // Conservatively, we can recurse down the first operand
10507 // and just mask out all affected bits.
10508 computeKnownBits(DAG, Op.getOperand(0), KnownZero, KnownOne);
10509
10510 // The operand to BFI is already a mask suitable for removing the bits it
10511 // sets.
10512 ConstantSDNode *CI = cast<ConstantSDNode>(Op.getOperand(2));
10513 APInt Mask = CI->getAPIntValue();
10514 KnownZero &= Mask;
10515 KnownOne &= Mask;
10516 return;
10517 }
10518 if (Op.getOpcode() == ARMISD::CMOV) {
10519 APInt KZ2(KnownZero.getBitWidth(), 0);
10520 APInt KO2(KnownOne.getBitWidth(), 0);
10521 computeKnownBits(DAG, Op.getOperand(1), KnownZero, KnownOne);
10522 computeKnownBits(DAG, Op.getOperand(2), KZ2, KO2);
10523
10524 KnownZero &= KZ2;
10525 KnownOne &= KO2;
10526 return;
10527 }
10528 return DAG.computeKnownBits(Op, KnownZero, KnownOne);
10529}
10530
10531SDValue ARMTargetLowering::PerformCMOVToBFICombine(SDNode *CMOV, SelectionDAG &DAG) const {
10532 // If we have a CMOV, OR and AND combination such as:
10533 // if (x & CN)
10534 // y |= CM;
10535 //
10536 // And:
10537 // * CN is a single bit;
10538 // * All bits covered by CM are known zero in y
10539 //
10540 // Then we can convert this into a sequence of BFI instructions. This will
10541 // always be a win if CM is a single bit, will always be no worse than the
10542 // TST&OR sequence if CM is two bits, and for thumb will be no worse if CM is
10543 // three bits (due to the extra IT instruction).
10544
10545 SDValue Op0 = CMOV->getOperand(0);
10546 SDValue Op1 = CMOV->getOperand(1);
James Molloy8e99e972015-11-12 13:49:17 +000010547 auto CCNode = cast<ConstantSDNode>(CMOV->getOperand(2));
10548 auto CC = CCNode->getAPIntValue().getLimitedValue();
James Molloy9d55f192015-11-10 14:22:05 +000010549 SDValue CmpZ = CMOV->getOperand(4);
10550
James Molloy20180912015-11-16 10:49:25 +000010551 // The compare must be against zero.
Artyom Skrobov314ee042015-11-25 19:41:11 +000010552 if (!isNullConstant(CmpZ->getOperand(1)))
James Molloy20180912015-11-16 10:49:25 +000010553 return SDValue();
10554
James Molloy9d55f192015-11-10 14:22:05 +000010555 assert(CmpZ->getOpcode() == ARMISD::CMPZ);
10556 SDValue And = CmpZ->getOperand(0);
10557 if (And->getOpcode() != ISD::AND)
10558 return SDValue();
10559 ConstantSDNode *AndC = dyn_cast<ConstantSDNode>(And->getOperand(1));
10560 if (!AndC || !AndC->getAPIntValue().isPowerOf2())
10561 return SDValue();
10562 SDValue X = And->getOperand(0);
10563
James Molloy8e99e972015-11-12 13:49:17 +000010564 if (CC == ARMCC::EQ) {
10565 // We're performing an "equal to zero" compare. Swap the operands so we
10566 // canonicalize on a "not equal to zero" compare.
10567 std::swap(Op0, Op1);
10568 } else {
10569 assert(CC == ARMCC::NE && "How can a CMPZ node not be EQ or NE?");
10570 }
Junmo Park1108ab02016-02-19 01:46:04 +000010571
James Molloy9d55f192015-11-10 14:22:05 +000010572 if (Op1->getOpcode() != ISD::OR)
10573 return SDValue();
10574
10575 ConstantSDNode *OrC = dyn_cast<ConstantSDNode>(Op1->getOperand(1));
10576 if (!OrC)
10577 return SDValue();
10578 SDValue Y = Op1->getOperand(0);
10579
10580 if (Op0 != Y)
10581 return SDValue();
10582
10583 // Now, is it profitable to continue?
10584 APInt OrCI = OrC->getAPIntValue();
10585 unsigned Heuristic = Subtarget->isThumb() ? 3 : 2;
10586 if (OrCI.countPopulation() > Heuristic)
10587 return SDValue();
10588
10589 // Lastly, can we determine that the bits defined by OrCI
10590 // are zero in Y?
10591 APInt KnownZero, KnownOne;
10592 computeKnownBits(DAG, Y, KnownZero, KnownOne);
10593 if ((OrCI & KnownZero) != OrCI)
10594 return SDValue();
10595
10596 // OK, we can do the combine.
10597 SDValue V = Y;
10598 SDLoc dl(X);
10599 EVT VT = X.getValueType();
10600 unsigned BitInX = AndC->getAPIntValue().logBase2();
Junmo Park1108ab02016-02-19 01:46:04 +000010601
James Molloy9d55f192015-11-10 14:22:05 +000010602 if (BitInX != 0) {
10603 // We must shift X first.
10604 X = DAG.getNode(ISD::SRL, dl, VT, X,
10605 DAG.getConstant(BitInX, dl, VT));
10606 }
10607
10608 for (unsigned BitInY = 0, NumActiveBits = OrCI.getActiveBits();
10609 BitInY < NumActiveBits; ++BitInY) {
10610 if (OrCI[BitInY] == 0)
10611 continue;
10612 APInt Mask(VT.getSizeInBits(), 0);
10613 Mask.setBit(BitInY);
10614 V = DAG.getNode(ARMISD::BFI, dl, VT, V, X,
10615 // Confusingly, the operand is an *inverted* mask.
10616 DAG.getConstant(~Mask, dl, VT));
10617 }
10618
10619 return V;
10620}
10621
Evan Chengf863e3f2011-07-13 00:42:17 +000010622/// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV.
10623SDValue
10624ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const {
10625 SDValue Cmp = N->getOperand(4);
10626 if (Cmp.getOpcode() != ARMISD::CMPZ)
10627 // Only looking at EQ and NE cases.
10628 return SDValue();
10629
10630 EVT VT = N->getValueType(0);
Andrew Trickef9de2a2013-05-25 02:42:55 +000010631 SDLoc dl(N);
Evan Chengf863e3f2011-07-13 00:42:17 +000010632 SDValue LHS = Cmp.getOperand(0);
10633 SDValue RHS = Cmp.getOperand(1);
10634 SDValue FalseVal = N->getOperand(0);
10635 SDValue TrueVal = N->getOperand(1);
10636 SDValue ARMcc = N->getOperand(2);
Jim Grosbache7e2aca2011-09-13 20:30:37 +000010637 ARMCC::CondCodes CC =
10638 (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue();
Evan Chengf863e3f2011-07-13 00:42:17 +000010639
James Molloy9d55f192015-11-10 14:22:05 +000010640 // BFI is only available on V6T2+.
10641 if (!Subtarget->isThumb1Only() && Subtarget->hasV6T2Ops()) {
10642 SDValue R = PerformCMOVToBFICombine(N, DAG);
10643 if (R)
10644 return R;
10645 }
10646
Evan Chengf863e3f2011-07-13 00:42:17 +000010647 // Simplify
10648 // mov r1, r0
10649 // cmp r1, x
10650 // mov r0, y
10651 // moveq r0, x
10652 // to
10653 // cmp r0, x
10654 // movne r0, y
10655 //
10656 // mov r1, r0
10657 // cmp r1, x
10658 // mov r0, x
10659 // movne r0, y
10660 // to
10661 // cmp r0, x
10662 // movne r0, y
10663 /// FIXME: Turn this into a target neutral optimization?
10664 SDValue Res;
Evan Cheng81563762011-09-28 23:16:31 +000010665 if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) {
Evan Chengf863e3f2011-07-13 00:42:17 +000010666 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc,
10667 N->getOperand(3), Cmp);
10668 } else if (CC == ARMCC::EQ && TrueVal == RHS) {
10669 SDValue ARMcc;
10670 SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl);
10671 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc,
10672 N->getOperand(3), NewCmp);
10673 }
10674
10675 if (Res.getNode()) {
10676 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +000010677 DAG.computeKnownBits(SDValue(N,0), KnownZero, KnownOne);
Evan Chengf863e3f2011-07-13 00:42:17 +000010678 // Capture demanded bits information that would be otherwise lost.
10679 if (KnownZero == 0xfffffffe)
10680 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
10681 DAG.getValueType(MVT::i1));
10682 else if (KnownZero == 0xffffff00)
10683 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
10684 DAG.getValueType(MVT::i8));
10685 else if (KnownZero == 0xffff0000)
10686 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
10687 DAG.getValueType(MVT::i16));
10688 }
10689
10690 return Res;
10691}
10692
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010693SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
Bob Wilson7117a912009-03-20 22:42:55 +000010694 DAGCombinerInfo &DCI) const {
Chris Lattnerf3f4ad92007-11-27 22:36:16 +000010695 switch (N->getOpcode()) {
10696 default: break;
Arnold Schwaighoferf00fb1c2012-09-04 14:37:49 +000010697 case ISD::ADDC: return PerformADDCCombine(N, DCI, Subtarget);
Tanya Lattnere9e67052011-06-14 23:48:48 +000010698 case ISD::ADD: return PerformADDCombine(N, DCI, Subtarget);
Bob Wilsonc6c13a32010-02-18 06:05:53 +000010699 case ISD::SUB: return PerformSUBCombine(N, DCI);
Anton Korobeynikov1bf28a12010-05-15 18:16:59 +000010700 case ISD::MUL: return PerformMULCombine(N, DCI, Subtarget);
Jim Grosbach11013ed2010-07-16 23:05:05 +000010701 case ISD::OR: return PerformORCombine(N, DCI, Subtarget);
Evan Chenge87681c2012-02-23 01:19:06 +000010702 case ISD::XOR: return PerformXORCombine(N, DCI, Subtarget);
10703 case ISD::AND: return PerformANDCombine(N, DCI, Subtarget);
Evan Chengc1778132010-12-14 03:22:07 +000010704 case ARMISD::BFI: return PerformBFICombine(N, DCI);
Oliver Stannard51b1d462014-08-21 12:50:31 +000010705 case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI, Subtarget);
Bob Wilson22806742010-09-22 22:09:21 +000010706 case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG);
Bob Wilson1a20c2a2010-12-21 06:43:19 +000010707 case ISD::STORE: return PerformSTORECombine(N, DCI);
Oliver Stannard51b1d462014-08-21 12:50:31 +000010708 case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI, Subtarget);
Bob Wilson1a20c2a2010-12-21 06:43:19 +000010709 case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI);
Bob Wilsonc7334a12010-10-27 20:38:28 +000010710 case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG);
Bob Wilson2d790df2010-11-28 06:51:26 +000010711 case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI);
Chad Rosierfa8d8932011-06-24 19:23:04 +000010712 case ISD::FP_TO_SINT:
Chad Rosiera087fd22015-10-06 20:23:42 +000010713 case ISD::FP_TO_UINT:
10714 return PerformVCVTCombine(N, DCI.DAG, Subtarget);
10715 case ISD::FDIV:
10716 return PerformVDIVCombine(N, DCI.DAG, Subtarget);
Bob Wilsonc6c13a32010-02-18 06:05:53 +000010717 case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG);
Bob Wilson2e076c42009-06-22 23:27:02 +000010718 case ISD::SHL:
10719 case ISD::SRA:
Bob Wilsonc6c13a32010-02-18 06:05:53 +000010720 case ISD::SRL: return PerformShiftCombine(N, DCI.DAG, Subtarget);
Bob Wilson2e076c42009-06-22 23:27:02 +000010721 case ISD::SIGN_EXTEND:
10722 case ISD::ZERO_EXTEND:
Bob Wilsonc6c13a32010-02-18 06:05:53 +000010723 case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget);
Evan Chengf863e3f2011-07-13 00:42:17 +000010724 case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG);
Ahmed Bougachadb141ac2015-02-19 23:52:41 +000010725 case ISD::LOAD: return PerformLOADCombine(N, DCI);
Bob Wilson06fce872011-02-07 17:43:21 +000010726 case ARMISD::VLD2DUP:
10727 case ARMISD::VLD3DUP:
10728 case ARMISD::VLD4DUP:
Ahmed Bougachadb141ac2015-02-19 23:52:41 +000010729 return PerformVLDCombine(N, DCI);
Quentin Colombet04b3a0f2013-07-03 21:42:57 +000010730 case ARMISD::BUILD_VECTOR:
10731 return PerformARMBUILD_VECTORCombine(N, DCI);
Bob Wilson06fce872011-02-07 17:43:21 +000010732 case ISD::INTRINSIC_VOID:
10733 case ISD::INTRINSIC_W_CHAIN:
10734 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10735 case Intrinsic::arm_neon_vld1:
10736 case Intrinsic::arm_neon_vld2:
10737 case Intrinsic::arm_neon_vld3:
10738 case Intrinsic::arm_neon_vld4:
10739 case Intrinsic::arm_neon_vld2lane:
10740 case Intrinsic::arm_neon_vld3lane:
10741 case Intrinsic::arm_neon_vld4lane:
10742 case Intrinsic::arm_neon_vst1:
10743 case Intrinsic::arm_neon_vst2:
10744 case Intrinsic::arm_neon_vst3:
10745 case Intrinsic::arm_neon_vst4:
10746 case Intrinsic::arm_neon_vst2lane:
10747 case Intrinsic::arm_neon_vst3lane:
10748 case Intrinsic::arm_neon_vst4lane:
Ahmed Bougachadb141ac2015-02-19 23:52:41 +000010749 return PerformVLDCombine(N, DCI);
Bob Wilson06fce872011-02-07 17:43:21 +000010750 default: break;
10751 }
10752 break;
Chris Lattnerf3f4ad92007-11-27 22:36:16 +000010753 }
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000010754 return SDValue();
Chris Lattnerf3f4ad92007-11-27 22:36:16 +000010755}
10756
Evan Chengd42641c2011-02-02 01:06:55 +000010757bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc,
10758 EVT VT) const {
10759 return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE);
10760}
10761
Matt Arsenault6f2a5262014-07-27 17:46:40 +000010762bool ARMTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
10763 unsigned,
10764 unsigned,
10765 bool *Fast) const {
Evan Cheng90ae8f82012-09-18 01:42:45 +000010766 // The AllowsUnaliged flag models the SCTLR.A setting in ARM cpus
Chad Rosier66bb1782012-11-09 18:25:27 +000010767 bool AllowsUnaligned = Subtarget->allowsUnalignedMem();
Bill Wendlingbae6b2c2009-08-15 21:21:19 +000010768
10769 switch (VT.getSimpleVT().SimpleTy) {
10770 default:
10771 return false;
10772 case MVT::i8:
10773 case MVT::i16:
Evan Cheng79e2ca92012-12-10 23:21:26 +000010774 case MVT::i32: {
Evan Cheng90ae8f82012-09-18 01:42:45 +000010775 // Unaligned access can use (for example) LRDB, LRDH, LDR
Evan Cheng79e2ca92012-12-10 23:21:26 +000010776 if (AllowsUnaligned) {
10777 if (Fast)
10778 *Fast = Subtarget->hasV7Ops();
10779 return true;
10780 }
10781 return false;
10782 }
Evan Chengeec6bc62012-08-15 17:44:53 +000010783 case MVT::f64:
Evan Cheng79e2ca92012-12-10 23:21:26 +000010784 case MVT::v2f64: {
Evan Cheng90ae8f82012-09-18 01:42:45 +000010785 // For any little-endian targets with neon, we can support unaligned ld/st
10786 // of D and Q (e.g. {D0,D1}) registers by using vld1.i8/vst1.i8.
Alp Tokercb402912014-01-24 17:20:08 +000010787 // A big-endian target may also explicitly support unaligned accesses
Mehdi Aminiffc14022015-07-08 01:00:38 +000010788 if (Subtarget->hasNEON() && (AllowsUnaligned || Subtarget->isLittle())) {
Evan Cheng79e2ca92012-12-10 23:21:26 +000010789 if (Fast)
10790 *Fast = true;
10791 return true;
10792 }
10793 return false;
10794 }
Bill Wendlingbae6b2c2009-08-15 21:21:19 +000010795 }
10796}
10797
Lang Hames9929c422011-11-02 22:52:45 +000010798static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
10799 unsigned AlignCheck) {
10800 return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
10801 (DstAlign == 0 || DstAlign % AlignCheck == 0));
10802}
10803
10804EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size,
10805 unsigned DstAlign, unsigned SrcAlign,
Evan Cheng962711e2012-12-12 02:34:41 +000010806 bool IsMemset, bool ZeroMemset,
Lang Hames9929c422011-11-02 22:52:45 +000010807 bool MemcpyStrSrc,
10808 MachineFunction &MF) const {
10809 const Function *F = MF.getFunction();
10810
10811 // See if we can use NEON instructions for this...
Duncan P. N. Exon Smith2cff9e12015-02-14 02:24:44 +000010812 if ((!IsMemset || ZeroMemset) && Subtarget->hasNEON() &&
10813 !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
Evan Cheng79e2ca92012-12-10 23:21:26 +000010814 bool Fast;
Evan Chengc2bd6202012-12-11 02:31:57 +000010815 if (Size >= 16 &&
10816 (memOpAlign(SrcAlign, DstAlign, 16) ||
Matt Arsenault6f2a5262014-07-27 17:46:40 +000010817 (allowsMisalignedMemoryAccesses(MVT::v2f64, 0, 1, &Fast) && Fast))) {
Evan Cheng79e2ca92012-12-10 23:21:26 +000010818 return MVT::v2f64;
Evan Chengc2bd6202012-12-11 02:31:57 +000010819 } else if (Size >= 8 &&
10820 (memOpAlign(SrcAlign, DstAlign, 8) ||
Matt Arsenault6f2a5262014-07-27 17:46:40 +000010821 (allowsMisalignedMemoryAccesses(MVT::f64, 0, 1, &Fast) &&
10822 Fast))) {
Evan Cheng79e2ca92012-12-10 23:21:26 +000010823 return MVT::f64;
Lang Hames9929c422011-11-02 22:52:45 +000010824 }
10825 }
10826
Lang Hamesb85fcd02011-11-08 18:56:23 +000010827 // Lowering to i32/i16 if the size permits.
Evan Chengc2bd6202012-12-11 02:31:57 +000010828 if (Size >= 4)
Lang Hamesb85fcd02011-11-08 18:56:23 +000010829 return MVT::i32;
Evan Chengc2bd6202012-12-11 02:31:57 +000010830 else if (Size >= 2)
Lang Hamesb85fcd02011-11-08 18:56:23 +000010831 return MVT::i16;
Lang Hamesb85fcd02011-11-08 18:56:23 +000010832
Lang Hames9929c422011-11-02 22:52:45 +000010833 // Let the target-independent logic figure it out.
10834 return MVT::Other;
10835}
10836
Evan Cheng9ec512d2012-12-06 19:13:27 +000010837bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
10838 if (Val.getOpcode() != ISD::LOAD)
10839 return false;
10840
10841 EVT VT1 = Val.getValueType();
10842 if (!VT1.isSimple() || !VT1.isInteger() ||
10843 !VT2.isSimple() || !VT2.isInteger())
10844 return false;
10845
10846 switch (VT1.getSimpleVT().SimpleTy) {
10847 default: break;
10848 case MVT::i1:
10849 case MVT::i8:
10850 case MVT::i16:
10851 // 8-bit and 16-bit loads implicitly zero-extend to 32-bits.
10852 return true;
10853 }
10854
10855 return false;
10856}
10857
Ahmed Bougacha4200cc92015-03-05 19:37:53 +000010858bool ARMTargetLowering::isVectorLoadExtDesirable(SDValue ExtVal) const {
10859 EVT VT = ExtVal.getValueType();
10860
10861 if (!isTypeLegal(VT))
10862 return false;
10863
10864 // Don't create a loadext if we can fold the extension into a wide/long
10865 // instruction.
10866 // If there's more than one user instruction, the loadext is desirable no
10867 // matter what. There can be two uses by the same instruction.
10868 if (ExtVal->use_empty() ||
10869 !ExtVal->use_begin()->isOnlyUserOf(ExtVal.getNode()))
10870 return true;
10871
10872 SDNode *U = *ExtVal->use_begin();
10873 if ((U->getOpcode() == ISD::ADD || U->getOpcode() == ISD::SUB ||
10874 U->getOpcode() == ISD::SHL || U->getOpcode() == ARMISD::VSHL))
10875 return false;
10876
10877 return true;
10878}
10879
Tim Northovercc2e9032013-08-06 13:58:03 +000010880bool ARMTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
10881 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
10882 return false;
10883
10884 if (!isTypeLegal(EVT::getEVT(Ty1)))
10885 return false;
10886
10887 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
10888
10889 // Assuming the caller doesn't have a zeroext or signext return parameter,
10890 // truncation all the way down to i1 is valid.
10891 return true;
10892}
10893
10894
Evan Chengdc49a8d2009-08-14 20:09:37 +000010895static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
10896 if (V < 0)
10897 return false;
10898
10899 unsigned Scale = 1;
10900 switch (VT.getSimpleVT().SimpleTy) {
10901 default: return false;
10902 case MVT::i1:
10903 case MVT::i8:
10904 // Scale == 1;
10905 break;
10906 case MVT::i16:
10907 // Scale == 2;
10908 Scale = 2;
10909 break;
10910 case MVT::i32:
10911 // Scale == 4;
10912 Scale = 4;
10913 break;
10914 }
10915
10916 if ((V & (Scale - 1)) != 0)
10917 return false;
10918 V /= Scale;
10919 return V == (V & ((1LL << 5) - 1));
10920}
10921
10922static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
10923 const ARMSubtarget *Subtarget) {
10924 bool isNeg = false;
10925 if (V < 0) {
10926 isNeg = true;
10927 V = - V;
10928 }
10929
10930 switch (VT.getSimpleVT().SimpleTy) {
10931 default: return false;
10932 case MVT::i1:
10933 case MVT::i8:
10934 case MVT::i16:
10935 case MVT::i32:
10936 // + imm12 or - imm8
10937 if (isNeg)
10938 return V == (V & ((1LL << 8) - 1));
10939 return V == (V & ((1LL << 12) - 1));
10940 case MVT::f32:
10941 case MVT::f64:
10942 // Same as ARM mode. FIXME: NEON?
10943 if (!Subtarget->hasVFP2())
10944 return false;
10945 if ((V & 3) != 0)
10946 return false;
10947 V >>= 2;
10948 return V == (V & ((1LL << 8) - 1));
10949 }
10950}
10951
Evan Cheng2150b922007-03-12 23:30:29 +000010952/// isLegalAddressImmediate - Return true if the integer value can be used
10953/// as the offset of the target addressing mode for load / store of the
10954/// given type.
Owen Anderson53aa7a92009-08-10 22:56:29 +000010955static bool isLegalAddressImmediate(int64_t V, EVT VT,
Chris Lattnerd44e24c2007-04-09 23:33:39 +000010956 const ARMSubtarget *Subtarget) {
Evan Cheng507eefa2007-03-13 20:37:59 +000010957 if (V == 0)
10958 return true;
10959
Evan Chengce5dfb62009-03-09 19:15:00 +000010960 if (!VT.isSimple())
10961 return false;
10962
Evan Chengdc49a8d2009-08-14 20:09:37 +000010963 if (Subtarget->isThumb1Only())
10964 return isLegalT1AddressImmediate(V, VT);
10965 else if (Subtarget->isThumb2())
10966 return isLegalT2AddressImmediate(V, VT, Subtarget);
Evan Cheng2150b922007-03-12 23:30:29 +000010967
Evan Chengdc49a8d2009-08-14 20:09:37 +000010968 // ARM mode.
Evan Cheng2150b922007-03-12 23:30:29 +000010969 if (V < 0)
10970 V = - V;
Owen Anderson9f944592009-08-11 20:47:22 +000010971 switch (VT.getSimpleVT().SimpleTy) {
Evan Cheng2150b922007-03-12 23:30:29 +000010972 default: return false;
Owen Anderson9f944592009-08-11 20:47:22 +000010973 case MVT::i1:
10974 case MVT::i8:
10975 case MVT::i32:
Evan Cheng2150b922007-03-12 23:30:29 +000010976 // +- imm12
Anton Korobeynikov40d67c52008-02-20 11:22:39 +000010977 return V == (V & ((1LL << 12) - 1));
Owen Anderson9f944592009-08-11 20:47:22 +000010978 case MVT::i16:
Evan Cheng2150b922007-03-12 23:30:29 +000010979 // +- imm8
Anton Korobeynikov40d67c52008-02-20 11:22:39 +000010980 return V == (V & ((1LL << 8) - 1));
Owen Anderson9f944592009-08-11 20:47:22 +000010981 case MVT::f32:
10982 case MVT::f64:
Evan Chengdc49a8d2009-08-14 20:09:37 +000010983 if (!Subtarget->hasVFP2()) // FIXME: NEON?
Evan Cheng2150b922007-03-12 23:30:29 +000010984 return false;
Evan Chengbef131de2007-05-03 02:00:18 +000010985 if ((V & 3) != 0)
Evan Cheng2150b922007-03-12 23:30:29 +000010986 return false;
10987 V >>= 2;
Anton Korobeynikov40d67c52008-02-20 11:22:39 +000010988 return V == (V & ((1LL << 8) - 1));
Evan Cheng2150b922007-03-12 23:30:29 +000010989 }
Evan Cheng10043e22007-01-19 07:51:42 +000010990}
10991
Evan Chengdc49a8d2009-08-14 20:09:37 +000010992bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
10993 EVT VT) const {
10994 int Scale = AM.Scale;
10995 if (Scale < 0)
10996 return false;
10997
10998 switch (VT.getSimpleVT().SimpleTy) {
10999 default: return false;
11000 case MVT::i1:
11001 case MVT::i8:
11002 case MVT::i16:
11003 case MVT::i32:
11004 if (Scale == 1)
11005 return true;
11006 // r + r << imm
11007 Scale = Scale & ~1;
11008 return Scale == 2 || Scale == 4 || Scale == 8;
11009 case MVT::i64:
11010 // r + r
11011 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
11012 return true;
11013 return false;
11014 case MVT::isVoid:
11015 // Note, we allow "void" uses (basically, uses that aren't loads or
11016 // stores), because arm allows folding a scale into many arithmetic
11017 // operations. This should be made more precise and revisited later.
11018
11019 // Allow r << imm, but the imm has to be a multiple of two.
11020 if (Scale & 1) return false;
11021 return isPowerOf2_32(Scale);
11022 }
11023}
11024
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011025/// isLegalAddressingMode - Return true if the addressing mode represented
11026/// by AM is legal for this target, for a load/store of the specified type.
Mehdi Amini0cdec1e2015-07-09 02:09:40 +000011027bool ARMTargetLowering::isLegalAddressingMode(const DataLayout &DL,
11028 const AddrMode &AM, Type *Ty,
Matt Arsenaultbd7d80a2015-06-01 05:31:59 +000011029 unsigned AS) const {
Mehdi Amini0cdec1e2015-07-09 02:09:40 +000011030 EVT VT = getValueType(DL, Ty, true);
Bob Wilson866c1742009-04-08 17:55:28 +000011031 if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
Evan Cheng2150b922007-03-12 23:30:29 +000011032 return false;
Bob Wilson7117a912009-03-20 22:42:55 +000011033
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011034 // Can never fold addr of global into load/store.
Bob Wilson7117a912009-03-20 22:42:55 +000011035 if (AM.BaseGV)
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011036 return false;
Bob Wilson7117a912009-03-20 22:42:55 +000011037
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011038 switch (AM.Scale) {
11039 case 0: // no scale reg, must be "r+i" or "r", or "i".
11040 break;
11041 case 1:
Evan Chengdc49a8d2009-08-14 20:09:37 +000011042 if (Subtarget->isThumb1Only())
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011043 return false;
Chris Lattner502c3f42007-04-13 06:50:55 +000011044 // FALL THROUGH.
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011045 default:
Chris Lattner502c3f42007-04-13 06:50:55 +000011046 // ARM doesn't support any R+R*scale+imm addr modes.
11047 if (AM.BaseOffs)
11048 return false;
Bob Wilson7117a912009-03-20 22:42:55 +000011049
Bob Wilson866c1742009-04-08 17:55:28 +000011050 if (!VT.isSimple())
11051 return false;
11052
Evan Chengdc49a8d2009-08-14 20:09:37 +000011053 if (Subtarget->isThumb2())
11054 return isLegalT2ScaledAddressingMode(AM, VT);
11055
Chris Lattner9b6d69e2007-04-10 03:48:29 +000011056 int Scale = AM.Scale;
Owen Anderson9f944592009-08-11 20:47:22 +000011057 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011058 default: return false;
Owen Anderson9f944592009-08-11 20:47:22 +000011059 case MVT::i1:
11060 case MVT::i8:
11061 case MVT::i32:
Chris Lattner9b6d69e2007-04-10 03:48:29 +000011062 if (Scale < 0) Scale = -Scale;
11063 if (Scale == 1)
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011064 return true;
11065 // r + r << imm
Chris Lattnerfe926e22007-04-11 16:17:12 +000011066 return isPowerOf2_32(Scale & ~1);
Owen Anderson9f944592009-08-11 20:47:22 +000011067 case MVT::i16:
Evan Chengdc49a8d2009-08-14 20:09:37 +000011068 case MVT::i64:
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011069 // r + r
Chris Lattner9b6d69e2007-04-10 03:48:29 +000011070 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011071 return true;
Chris Lattnerfe926e22007-04-11 16:17:12 +000011072 return false;
Bob Wilson7117a912009-03-20 22:42:55 +000011073
Owen Anderson9f944592009-08-11 20:47:22 +000011074 case MVT::isVoid:
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011075 // Note, we allow "void" uses (basically, uses that aren't loads or
11076 // stores), because arm allows folding a scale into many arithmetic
11077 // operations. This should be made more precise and revisited later.
Bob Wilson7117a912009-03-20 22:42:55 +000011078
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011079 // Allow r << imm, but the imm has to be a multiple of two.
Evan Chengdc49a8d2009-08-14 20:09:37 +000011080 if (Scale & 1) return false;
11081 return isPowerOf2_32(Scale);
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011082 }
Evan Cheng2150b922007-03-12 23:30:29 +000011083 }
Chris Lattnerd44e24c2007-04-09 23:33:39 +000011084 return true;
Evan Cheng2150b922007-03-12 23:30:29 +000011085}
11086
Evan Cheng3d3c24a2009-11-11 19:05:52 +000011087/// isLegalICmpImmediate - Return true if the specified immediate is legal
11088/// icmp immediate, that is the target has icmp instructions which can compare
11089/// a register against the immediate without having to materialize the
11090/// immediate into a register.
Evan Cheng15b80e42009-11-12 07:13:11 +000011091bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakob Stoklund Olesen967b86a2012-04-06 17:45:04 +000011092 // Thumb2 and ARM modes can use cmn for negative immediates.
Evan Cheng3d3c24a2009-11-11 19:05:52 +000011093 if (!Subtarget->isThumb())
Benjamin Kramer7bd1f7c2015-03-09 20:20:16 +000011094 return ARM_AM::getSOImmVal(std::abs(Imm)) != -1;
Evan Cheng3d3c24a2009-11-11 19:05:52 +000011095 if (Subtarget->isThumb2())
Benjamin Kramer7bd1f7c2015-03-09 20:20:16 +000011096 return ARM_AM::getT2SOImmVal(std::abs(Imm)) != -1;
Jakob Stoklund Olesen967b86a2012-04-06 17:45:04 +000011097 // Thumb1 doesn't have cmn, and only 8-bit immediates.
Evan Cheng15b80e42009-11-12 07:13:11 +000011098 return Imm >= 0 && Imm <= 255;
Evan Cheng3d3c24a2009-11-11 19:05:52 +000011099}
11100
Andrew Tricka22cdb72012-07-18 18:34:27 +000011101/// isLegalAddImmediate - Return true if the specified immediate is a legal add
11102/// *or sub* immediate, that is the target has add or sub instructions which can
11103/// add a register with the immediate without having to materialize the
Dan Gohman6136e942011-05-03 00:46:49 +000011104/// immediate into a register.
11105bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const {
Andrew Tricka22cdb72012-07-18 18:34:27 +000011106 // Same encoding for add/sub, just flip the sign.
Benjamin Kramer7bd1f7c2015-03-09 20:20:16 +000011107 int64_t AbsImm = std::abs(Imm);
Andrew Tricka22cdb72012-07-18 18:34:27 +000011108 if (!Subtarget->isThumb())
11109 return ARM_AM::getSOImmVal(AbsImm) != -1;
11110 if (Subtarget->isThumb2())
11111 return ARM_AM::getT2SOImmVal(AbsImm) != -1;
11112 // Thumb1 only has 8-bit unsigned immediate.
11113 return AbsImm >= 0 && AbsImm <= 255;
Dan Gohman6136e942011-05-03 00:46:49 +000011114}
11115
Owen Anderson53aa7a92009-08-10 22:56:29 +000011116static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
Evan Cheng84c6cda2009-07-02 07:28:31 +000011117 bool isSEXTLoad, SDValue &Base,
11118 SDValue &Offset, bool &isInc,
11119 SelectionDAG &DAG) {
Evan Cheng10043e22007-01-19 07:51:42 +000011120 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
11121 return false;
11122
Owen Anderson9f944592009-08-11 20:47:22 +000011123 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
Evan Cheng10043e22007-01-19 07:51:42 +000011124 // AddressingMode 3
11125 Base = Ptr->getOperand(0);
11126 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +000011127 int RHSC = (int)RHS->getZExtValue();
Evan Cheng10043e22007-01-19 07:51:42 +000011128 if (RHSC < 0 && RHSC > -256) {
Evan Cheng84c6cda2009-07-02 07:28:31 +000011129 assert(Ptr->getOpcode() == ISD::ADD);
Evan Cheng10043e22007-01-19 07:51:42 +000011130 isInc = false;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011131 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
Evan Cheng10043e22007-01-19 07:51:42 +000011132 return true;
11133 }
11134 }
11135 isInc = (Ptr->getOpcode() == ISD::ADD);
11136 Offset = Ptr->getOperand(1);
11137 return true;
Owen Anderson9f944592009-08-11 20:47:22 +000011138 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
Evan Cheng10043e22007-01-19 07:51:42 +000011139 // AddressingMode 2
11140 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +000011141 int RHSC = (int)RHS->getZExtValue();
Evan Cheng10043e22007-01-19 07:51:42 +000011142 if (RHSC < 0 && RHSC > -0x1000) {
Evan Cheng84c6cda2009-07-02 07:28:31 +000011143 assert(Ptr->getOpcode() == ISD::ADD);
Evan Cheng10043e22007-01-19 07:51:42 +000011144 isInc = false;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011145 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
Evan Cheng10043e22007-01-19 07:51:42 +000011146 Base = Ptr->getOperand(0);
11147 return true;
11148 }
11149 }
11150
11151 if (Ptr->getOpcode() == ISD::ADD) {
11152 isInc = true;
Evan Chenga20cde32011-07-20 23:34:39 +000011153 ARM_AM::ShiftOpc ShOpcVal=
11154 ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode());
Evan Cheng10043e22007-01-19 07:51:42 +000011155 if (ShOpcVal != ARM_AM::no_shift) {
11156 Base = Ptr->getOperand(1);
11157 Offset = Ptr->getOperand(0);
11158 } else {
11159 Base = Ptr->getOperand(0);
11160 Offset = Ptr->getOperand(1);
11161 }
11162 return true;
11163 }
11164
11165 isInc = (Ptr->getOpcode() == ISD::ADD);
11166 Base = Ptr->getOperand(0);
11167 Offset = Ptr->getOperand(1);
11168 return true;
11169 }
11170
Jim Grosbachd7cf55c2009-11-09 00:11:35 +000011171 // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
Evan Cheng10043e22007-01-19 07:51:42 +000011172 return false;
11173}
11174
Owen Anderson53aa7a92009-08-10 22:56:29 +000011175static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
Evan Cheng84c6cda2009-07-02 07:28:31 +000011176 bool isSEXTLoad, SDValue &Base,
11177 SDValue &Offset, bool &isInc,
11178 SelectionDAG &DAG) {
11179 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
11180 return false;
11181
11182 Base = Ptr->getOperand(0);
11183 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
11184 int RHSC = (int)RHS->getZExtValue();
11185 if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
11186 assert(Ptr->getOpcode() == ISD::ADD);
11187 isInc = false;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011188 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
Evan Cheng84c6cda2009-07-02 07:28:31 +000011189 return true;
11190 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
11191 isInc = Ptr->getOpcode() == ISD::ADD;
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011192 Offset = DAG.getConstant(RHSC, SDLoc(Ptr), RHS->getValueType(0));
Evan Cheng84c6cda2009-07-02 07:28:31 +000011193 return true;
11194 }
11195 }
11196
11197 return false;
11198}
11199
Evan Cheng10043e22007-01-19 07:51:42 +000011200/// getPreIndexedAddressParts - returns true by value, base pointer and
11201/// offset pointer and addressing mode by reference if the node's address
11202/// can be legally represented as pre-indexed load / store address.
11203bool
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011204ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
11205 SDValue &Offset,
Evan Cheng10043e22007-01-19 07:51:42 +000011206 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +000011207 SelectionDAG &DAG) const {
Evan Cheng84c6cda2009-07-02 07:28:31 +000011208 if (Subtarget->isThumb1Only())
Evan Cheng10043e22007-01-19 07:51:42 +000011209 return false;
11210
Owen Anderson53aa7a92009-08-10 22:56:29 +000011211 EVT VT;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011212 SDValue Ptr;
Evan Cheng10043e22007-01-19 07:51:42 +000011213 bool isSEXTLoad = false;
11214 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
11215 Ptr = LD->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +000011216 VT = LD->getMemoryVT();
Evan Cheng10043e22007-01-19 07:51:42 +000011217 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
11218 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
11219 Ptr = ST->getBasePtr();
Dan Gohman47a7d6f2008-01-30 00:15:11 +000011220 VT = ST->getMemoryVT();
Evan Cheng10043e22007-01-19 07:51:42 +000011221 } else
11222 return false;
11223
11224 bool isInc;
Evan Cheng84c6cda2009-07-02 07:28:31 +000011225 bool isLegal = false;
Evan Chengdc49a8d2009-08-14 20:09:37 +000011226 if (Subtarget->isThumb2())
Evan Cheng84c6cda2009-07-02 07:28:31 +000011227 isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
11228 Offset, isInc, DAG);
Jim Grosbachf24f9d92009-08-11 15:33:49 +000011229 else
Evan Cheng84c6cda2009-07-02 07:28:31 +000011230 isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
Evan Cheng844f0b42009-07-02 06:44:30 +000011231 Offset, isInc, DAG);
Evan Cheng84c6cda2009-07-02 07:28:31 +000011232 if (!isLegal)
11233 return false;
11234
11235 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
11236 return true;
Evan Cheng10043e22007-01-19 07:51:42 +000011237}
11238
11239/// getPostIndexedAddressParts - returns true by value, base pointer and
11240/// offset pointer and addressing mode by reference if this node can be
11241/// combined with a load / store to form a post-indexed load / store.
11242bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011243 SDValue &Base,
11244 SDValue &Offset,
Evan Cheng10043e22007-01-19 07:51:42 +000011245 ISD::MemIndexedMode &AM,
Dan Gohman02b93132009-01-15 16:29:45 +000011246 SelectionDAG &DAG) const {
Evan Cheng84c6cda2009-07-02 07:28:31 +000011247 if (Subtarget->isThumb1Only())
Evan Cheng10043e22007-01-19 07:51:42 +000011248 return false;
11249
Owen Anderson53aa7a92009-08-10 22:56:29 +000011250 EVT VT;
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000011251 SDValue Ptr;
Evan Cheng10043e22007-01-19 07:51:42 +000011252 bool isSEXTLoad = false;
11253 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Dan Gohman47a7d6f2008-01-30 00:15:11 +000011254 VT = LD->getMemoryVT();
Evan Chengf19384d2010-05-18 21:31:17 +000011255 Ptr = LD->getBasePtr();
Evan Cheng10043e22007-01-19 07:51:42 +000011256 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
11257 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Dan Gohman47a7d6f2008-01-30 00:15:11 +000011258 VT = ST->getMemoryVT();
Evan Chengf19384d2010-05-18 21:31:17 +000011259 Ptr = ST->getBasePtr();
Evan Cheng10043e22007-01-19 07:51:42 +000011260 } else
11261 return false;
11262
11263 bool isInc;
Evan Cheng84c6cda2009-07-02 07:28:31 +000011264 bool isLegal = false;
Evan Chengdc49a8d2009-08-14 20:09:37 +000011265 if (Subtarget->isThumb2())
Evan Cheng84c6cda2009-07-02 07:28:31 +000011266 isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
Evan Chengf19384d2010-05-18 21:31:17 +000011267 isInc, DAG);
Jim Grosbachf24f9d92009-08-11 15:33:49 +000011268 else
Evan Cheng84c6cda2009-07-02 07:28:31 +000011269 isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
11270 isInc, DAG);
11271 if (!isLegal)
11272 return false;
11273
Evan Chengf19384d2010-05-18 21:31:17 +000011274 if (Ptr != Base) {
11275 // Swap base ptr and offset to catch more post-index load / store when
11276 // it's legal. In Thumb2 mode, offset must be an immediate.
11277 if (Ptr == Offset && Op->getOpcode() == ISD::ADD &&
11278 !Subtarget->isThumb2())
11279 std::swap(Base, Offset);
11280
11281 // Post-indexed load / store update the base pointer.
11282 if (Ptr != Base)
11283 return false;
11284 }
11285
Evan Cheng84c6cda2009-07-02 07:28:31 +000011286 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
11287 return true;
Evan Cheng10043e22007-01-19 07:51:42 +000011288}
11289
Jay Foada0653a32014-05-14 21:14:37 +000011290void ARMTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
11291 APInt &KnownZero,
11292 APInt &KnownOne,
11293 const SelectionDAG &DAG,
11294 unsigned Depth) const {
Michael Gottesman696e44e2013-06-18 20:49:45 +000011295 unsigned BitWidth = KnownOne.getBitWidth();
11296 KnownZero = KnownOne = APInt(BitWidth, 0);
Evan Cheng10043e22007-01-19 07:51:42 +000011297 switch (Op.getOpcode()) {
11298 default: break;
Michael Gottesman696e44e2013-06-18 20:49:45 +000011299 case ARMISD::ADDC:
11300 case ARMISD::ADDE:
11301 case ARMISD::SUBC:
11302 case ARMISD::SUBE:
11303 // These nodes' second result is a boolean
11304 if (Op.getResNo() == 0)
11305 break;
11306 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
11307 break;
Evan Cheng10043e22007-01-19 07:51:42 +000011308 case ARMISD::CMOV: {
11309 // Bits are known zero/one if known on the LHS and RHS.
Jay Foada0653a32014-05-14 21:14:37 +000011310 DAG.computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
Evan Cheng10043e22007-01-19 07:51:42 +000011311 if (KnownZero == 0 && KnownOne == 0) return;
11312
Dan Gohmanf990faf2008-02-13 00:35:47 +000011313 APInt KnownZeroRHS, KnownOneRHS;
Jay Foada0653a32014-05-14 21:14:37 +000011314 DAG.computeKnownBits(Op.getOperand(1), KnownZeroRHS, KnownOneRHS, Depth+1);
Evan Cheng10043e22007-01-19 07:51:42 +000011315 KnownZero &= KnownZeroRHS;
11316 KnownOne &= KnownOneRHS;
11317 return;
11318 }
Tim Northover01b4aa92014-04-03 15:10:35 +000011319 case ISD::INTRINSIC_W_CHAIN: {
11320 ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
11321 Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
11322 switch (IntID) {
11323 default: return;
11324 case Intrinsic::arm_ldaex:
11325 case Intrinsic::arm_ldrex: {
11326 EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
11327 unsigned MemBits = VT.getScalarType().getSizeInBits();
11328 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
11329 return;
11330 }
11331 }
11332 }
Evan Cheng10043e22007-01-19 07:51:42 +000011333 }
11334}
11335
11336//===----------------------------------------------------------------------===//
11337// ARM Inline Assembly Support
11338//===----------------------------------------------------------------------===//
11339
Evan Cheng078b0b02011-01-08 01:24:27 +000011340bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const {
11341 // Looking for "rev" which is V6+.
11342 if (!Subtarget->hasV6Ops())
11343 return false;
11344
11345 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
11346 std::string AsmStr = IA->getAsmString();
11347 SmallVector<StringRef, 4> AsmPieces;
11348 SplitString(AsmStr, AsmPieces, ";\n");
11349
11350 switch (AsmPieces.size()) {
11351 default: return false;
11352 case 1:
11353 AsmStr = AsmPieces[0];
11354 AsmPieces.clear();
11355 SplitString(AsmStr, AsmPieces, " \t,");
11356
11357 // rev $0, $1
11358 if (AsmPieces.size() == 3 &&
11359 AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" &&
11360 IA->getConstraintString().compare(0, 4, "=l,l") == 0) {
Chris Lattner229907c2011-07-18 04:54:35 +000011361 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng078b0b02011-01-08 01:24:27 +000011362 if (Ty && Ty->getBitWidth() == 32)
11363 return IntrinsicLowering::LowerToByteSwap(CI);
11364 }
11365 break;
11366 }
11367
11368 return false;
11369}
11370
Evan Cheng10043e22007-01-19 07:51:42 +000011371/// getConstraintType - Given a constraint letter, return the type of
11372/// constraint it is for this target.
11373ARMTargetLowering::ConstraintType
Benjamin Kramer9bfb6272015-07-05 19:29:18 +000011374ARMTargetLowering::getConstraintType(StringRef Constraint) const {
Chris Lattnerd6855142007-03-25 02:14:49 +000011375 if (Constraint.size() == 1) {
11376 switch (Constraint[0]) {
11377 default: break;
11378 case 'l': return C_RegisterClass;
Chris Lattner6223e832007-04-02 17:24:08 +000011379 case 'w': return C_RegisterClass;
Eric Christopherf45daac2011-06-30 23:23:01 +000011380 case 'h': return C_RegisterClass;
Eric Christopherf1c74592011-07-01 00:14:47 +000011381 case 'x': return C_RegisterClass;
Eric Christopherc011d312011-07-01 00:30:46 +000011382 case 't': return C_RegisterClass;
Eric Christopher29f1db82011-07-01 01:00:07 +000011383 case 'j': return C_Other; // Constant for movw.
Eric Christopheraa503002011-07-29 21:18:58 +000011384 // An address with a single base register. Due to the way we
11385 // currently handle addresses it is the same as an 'r' memory constraint.
11386 case 'Q': return C_Memory;
Chris Lattnerd6855142007-03-25 02:14:49 +000011387 }
Eric Christophere256cd02011-06-21 22:10:57 +000011388 } else if (Constraint.size() == 2) {
11389 switch (Constraint[0]) {
11390 default: break;
11391 // All 'U+' constraints are addresses.
11392 case 'U': return C_Memory;
11393 }
Evan Cheng10043e22007-01-19 07:51:42 +000011394 }
Chris Lattnerd6855142007-03-25 02:14:49 +000011395 return TargetLowering::getConstraintType(Constraint);
Evan Cheng10043e22007-01-19 07:51:42 +000011396}
11397
John Thompsone8360b72010-10-29 17:29:13 +000011398/// Examine constraint type and operand type and determine a weight value.
11399/// This object must already have been set up with the operand type
11400/// and the current alternative constraint selected.
11401TargetLowering::ConstraintWeight
11402ARMTargetLowering::getSingleConstraintMatchWeight(
11403 AsmOperandInfo &info, const char *constraint) const {
11404 ConstraintWeight weight = CW_Invalid;
11405 Value *CallOperandVal = info.CallOperandVal;
11406 // If we don't have a value, we can't do a match,
11407 // but allow it at the lowest weight.
Craig Topper062a2ba2014-04-25 05:30:21 +000011408 if (!CallOperandVal)
John Thompsone8360b72010-10-29 17:29:13 +000011409 return CW_Default;
Chris Lattner229907c2011-07-18 04:54:35 +000011410 Type *type = CallOperandVal->getType();
John Thompsone8360b72010-10-29 17:29:13 +000011411 // Look at the constraint type.
11412 switch (*constraint) {
11413 default:
11414 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11415 break;
11416 case 'l':
11417 if (type->isIntegerTy()) {
11418 if (Subtarget->isThumb())
11419 weight = CW_SpecificReg;
11420 else
11421 weight = CW_Register;
11422 }
11423 break;
11424 case 'w':
11425 if (type->isFloatingPointTy())
11426 weight = CW_Register;
11427 break;
11428 }
11429 return weight;
11430}
11431
Eric Christophercf2007c2011-06-30 23:50:52 +000011432typedef std::pair<unsigned, const TargetRegisterClass*> RCPair;
Benjamin Kramer9bfb6272015-07-05 19:29:18 +000011433RCPair ARMTargetLowering::getRegForInlineAsmConstraint(
11434 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
Evan Cheng10043e22007-01-19 07:51:42 +000011435 if (Constraint.size() == 1) {
Jakob Stoklund Olesen0ca14e42010-01-14 18:19:56 +000011436 // GCC ARM Constraint Letters
Evan Cheng10043e22007-01-19 07:51:42 +000011437 switch (Constraint[0]) {
Eric Christopherf45daac2011-06-30 23:23:01 +000011438 case 'l': // Low regs or general regs.
Jakob Stoklund Olesen0ca14e42010-01-14 18:19:56 +000011439 if (Subtarget->isThumb())
Craig Topperc7242e02012-04-20 07:30:17 +000011440 return RCPair(0U, &ARM::tGPRRegClass);
11441 return RCPair(0U, &ARM::GPRRegClass);
Eric Christopherf45daac2011-06-30 23:23:01 +000011442 case 'h': // High regs or no regs.
11443 if (Subtarget->isThumb())
Craig Topperc7242e02012-04-20 07:30:17 +000011444 return RCPair(0U, &ARM::hGPRRegClass);
Eric Christopherf09b0f12011-07-01 00:19:27 +000011445 break;
Chris Lattner6223e832007-04-02 17:24:08 +000011446 case 'r':
Akira Hatanakab9615342014-11-03 20:37:04 +000011447 if (Subtarget->isThumb1Only())
11448 return RCPair(0U, &ARM::tGPRRegClass);
Craig Topperc7242e02012-04-20 07:30:17 +000011449 return RCPair(0U, &ARM::GPRRegClass);
Chris Lattner6223e832007-04-02 17:24:08 +000011450 case 'w':
Tim Northover28adfbb2013-11-14 17:15:39 +000011451 if (VT == MVT::Other)
11452 break;
Owen Anderson9f944592009-08-11 20:47:22 +000011453 if (VT == MVT::f32)
Craig Topperc7242e02012-04-20 07:30:17 +000011454 return RCPair(0U, &ARM::SPRRegClass);
Bob Wilson3152b0472009-12-18 01:03:29 +000011455 if (VT.getSizeInBits() == 64)
Craig Topperc7242e02012-04-20 07:30:17 +000011456 return RCPair(0U, &ARM::DPRRegClass);
Evan Cheng0c2544f2009-12-08 23:06:22 +000011457 if (VT.getSizeInBits() == 128)
Craig Topperc7242e02012-04-20 07:30:17 +000011458 return RCPair(0U, &ARM::QPRRegClass);
Chris Lattner6223e832007-04-02 17:24:08 +000011459 break;
Eric Christopherf1c74592011-07-01 00:14:47 +000011460 case 'x':
Tim Northover28adfbb2013-11-14 17:15:39 +000011461 if (VT == MVT::Other)
11462 break;
Eric Christopherf1c74592011-07-01 00:14:47 +000011463 if (VT == MVT::f32)
Craig Topperc7242e02012-04-20 07:30:17 +000011464 return RCPair(0U, &ARM::SPR_8RegClass);
Eric Christopherf1c74592011-07-01 00:14:47 +000011465 if (VT.getSizeInBits() == 64)
Craig Topperc7242e02012-04-20 07:30:17 +000011466 return RCPair(0U, &ARM::DPR_8RegClass);
Eric Christopherf1c74592011-07-01 00:14:47 +000011467 if (VT.getSizeInBits() == 128)
Craig Topperc7242e02012-04-20 07:30:17 +000011468 return RCPair(0U, &ARM::QPR_8RegClass);
Eric Christopherf1c74592011-07-01 00:14:47 +000011469 break;
Eric Christopherc011d312011-07-01 00:30:46 +000011470 case 't':
11471 if (VT == MVT::f32)
Craig Topperc7242e02012-04-20 07:30:17 +000011472 return RCPair(0U, &ARM::SPRRegClass);
Eric Christopherc011d312011-07-01 00:30:46 +000011473 break;
Evan Cheng10043e22007-01-19 07:51:42 +000011474 }
11475 }
Bob Wilson3f2293b2010-03-15 23:09:18 +000011476 if (StringRef("{cc}").equals_lower(Constraint))
Craig Topperc7242e02012-04-20 07:30:17 +000011477 return std::make_pair(unsigned(ARM::CPSR), &ARM::CCRRegClass);
Bob Wilson3f2293b2010-03-15 23:09:18 +000011478
Eric Christopher11e4df72015-02-26 22:38:43 +000011479 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
Evan Cheng10043e22007-01-19 07:51:42 +000011480}
11481
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011482/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11483/// vector. If it is invalid, don't add anything to Ops.
11484void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopherde9399b2011-06-02 23:16:42 +000011485 std::string &Constraint,
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011486 std::vector<SDValue>&Ops,
11487 SelectionDAG &DAG) const {
Craig Topper062a2ba2014-04-25 05:30:21 +000011488 SDValue Result;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011489
Eric Christopherde9399b2011-06-02 23:16:42 +000011490 // Currently only support length 1 constraints.
11491 if (Constraint.length() != 1) return;
Eric Christopher0713a9d2011-06-08 23:55:35 +000011492
Eric Christopherde9399b2011-06-02 23:16:42 +000011493 char ConstraintLetter = Constraint[0];
11494 switch (ConstraintLetter) {
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011495 default: break;
Eric Christopher29f1db82011-07-01 01:00:07 +000011496 case 'j':
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011497 case 'I': case 'J': case 'K': case 'L':
11498 case 'M': case 'N': case 'O':
11499 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
11500 if (!C)
11501 return;
11502
11503 int64_t CVal64 = C->getSExtValue();
11504 int CVal = (int) CVal64;
11505 // None of these constraints allow values larger than 32 bits. Check
11506 // that the value fits in an int.
11507 if (CVal != CVal64)
11508 return;
11509
Eric Christopherde9399b2011-06-02 23:16:42 +000011510 switch (ConstraintLetter) {
Eric Christopher29f1db82011-07-01 01:00:07 +000011511 case 'j':
Andrew Trick53df4b62011-09-20 03:06:13 +000011512 // Constant suitable for movw, must be between 0 and
11513 // 65535.
11514 if (Subtarget->hasV6T2Ops())
11515 if (CVal >= 0 && CVal <= 65535)
11516 break;
11517 return;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011518 case 'I':
David Goodwin22c2fba2009-07-08 23:10:31 +000011519 if (Subtarget->isThumb1Only()) {
11520 // This must be a constant between 0 and 255, for ADD
11521 // immediates.
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011522 if (CVal >= 0 && CVal <= 255)
11523 break;
David Goodwin22c2fba2009-07-08 23:10:31 +000011524 } else if (Subtarget->isThumb2()) {
11525 // A constant that can be used as an immediate value in a
11526 // data-processing instruction.
11527 if (ARM_AM::getT2SOImmVal(CVal) != -1)
11528 break;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011529 } else {
11530 // A constant that can be used as an immediate value in a
11531 // data-processing instruction.
11532 if (ARM_AM::getSOImmVal(CVal) != -1)
11533 break;
11534 }
11535 return;
11536
11537 case 'J':
Eric Christopherb7932302016-01-08 00:34:44 +000011538 if (Subtarget->isThumb1Only()) {
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011539 // This must be a constant between -255 and -1, for negated ADD
11540 // immediates. This can be used in GCC with an "n" modifier that
11541 // prints the negated value, for use with SUB instructions. It is
11542 // not useful otherwise but is implemented for compatibility.
11543 if (CVal >= -255 && CVal <= -1)
11544 break;
11545 } else {
11546 // This must be a constant between -4095 and 4095. It is not clear
11547 // what this constraint is intended for. Implemented for
11548 // compatibility with GCC.
11549 if (CVal >= -4095 && CVal <= 4095)
11550 break;
11551 }
11552 return;
11553
11554 case 'K':
David Goodwin22c2fba2009-07-08 23:10:31 +000011555 if (Subtarget->isThumb1Only()) {
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011556 // A 32-bit value where only one byte has a nonzero value. Exclude
11557 // zero to match GCC. This constraint is used by GCC internally for
11558 // constants that can be loaded with a move/shift combination.
11559 // It is not useful otherwise but is implemented for compatibility.
11560 if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
11561 break;
David Goodwin22c2fba2009-07-08 23:10:31 +000011562 } else if (Subtarget->isThumb2()) {
11563 // A constant whose bitwise inverse can be used as an immediate
11564 // value in a data-processing instruction. This can be used in GCC
11565 // with a "B" modifier that prints the inverted value, for use with
11566 // BIC and MVN instructions. It is not useful otherwise but is
11567 // implemented for compatibility.
11568 if (ARM_AM::getT2SOImmVal(~CVal) != -1)
11569 break;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011570 } else {
11571 // A constant whose bitwise inverse can be used as an immediate
11572 // value in a data-processing instruction. This can be used in GCC
11573 // with a "B" modifier that prints the inverted value, for use with
11574 // BIC and MVN instructions. It is not useful otherwise but is
11575 // implemented for compatibility.
11576 if (ARM_AM::getSOImmVal(~CVal) != -1)
11577 break;
11578 }
11579 return;
11580
11581 case 'L':
David Goodwin22c2fba2009-07-08 23:10:31 +000011582 if (Subtarget->isThumb1Only()) {
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011583 // This must be a constant between -7 and 7,
11584 // for 3-operand ADD/SUB immediate instructions.
11585 if (CVal >= -7 && CVal < 7)
11586 break;
David Goodwin22c2fba2009-07-08 23:10:31 +000011587 } else if (Subtarget->isThumb2()) {
11588 // A constant whose negation can be used as an immediate value in a
11589 // data-processing instruction. This can be used in GCC with an "n"
11590 // modifier that prints the negated value, for use with SUB
11591 // instructions. It is not useful otherwise but is implemented for
11592 // compatibility.
11593 if (ARM_AM::getT2SOImmVal(-CVal) != -1)
11594 break;
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011595 } else {
11596 // A constant whose negation can be used as an immediate value in a
11597 // data-processing instruction. This can be used in GCC with an "n"
11598 // modifier that prints the negated value, for use with SUB
11599 // instructions. It is not useful otherwise but is implemented for
11600 // compatibility.
11601 if (ARM_AM::getSOImmVal(-CVal) != -1)
11602 break;
11603 }
11604 return;
11605
11606 case 'M':
Eric Christopherb7932302016-01-08 00:34:44 +000011607 if (Subtarget->isThumb1Only()) {
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011608 // This must be a multiple of 4 between 0 and 1020, for
11609 // ADD sp + immediate.
11610 if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
11611 break;
11612 } else {
11613 // A power of two or a constant between 0 and 32. This is used in
11614 // GCC for the shift amount on shifted register operands, but it is
11615 // useful in general for any shift amounts.
11616 if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
11617 break;
11618 }
11619 return;
11620
11621 case 'N':
David Goodwin22c2fba2009-07-08 23:10:31 +000011622 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011623 // This must be a constant between 0 and 31, for shift amounts.
11624 if (CVal >= 0 && CVal <= 31)
11625 break;
11626 }
11627 return;
11628
11629 case 'O':
David Goodwin22c2fba2009-07-08 23:10:31 +000011630 if (Subtarget->isThumb()) { // FIXME thumb2
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011631 // This must be a multiple of 4 between -508 and 508, for
11632 // ADD/SUB sp = sp + immediate.
11633 if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
11634 break;
11635 }
11636 return;
11637 }
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011638 Result = DAG.getTargetConstant(CVal, SDLoc(Op), Op.getValueType());
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011639 break;
11640 }
11641
11642 if (Result.getNode()) {
11643 Ops.push_back(Result);
11644 return;
11645 }
Dale Johannesence97d552010-06-25 21:55:36 +000011646 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Bob Wilsoncf1ec2c2009-04-01 17:58:54 +000011647}
Anton Korobeynikov29a44df2009-09-23 19:04:09 +000011648
Scott Douglassd2974a62015-08-24 09:17:11 +000011649static RTLIB::Libcall getDivRemLibcall(
11650 const SDNode *N, MVT::SimpleValueType SVT) {
Scott Douglassbdef6042015-08-24 09:17:18 +000011651 assert((N->getOpcode() == ISD::SDIVREM || N->getOpcode() == ISD::UDIVREM ||
11652 N->getOpcode() == ISD::SREM || N->getOpcode() == ISD::UREM) &&
Scott Douglassd2974a62015-08-24 09:17:11 +000011653 "Unhandled Opcode in getDivRemLibcall");
Scott Douglassbdef6042015-08-24 09:17:18 +000011654 bool isSigned = N->getOpcode() == ISD::SDIVREM ||
11655 N->getOpcode() == ISD::SREM;
Scott Douglassd2974a62015-08-24 09:17:11 +000011656 RTLIB::Libcall LC;
11657 switch (SVT) {
11658 default: llvm_unreachable("Unexpected request for libcall!");
11659 case MVT::i8: LC = isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
11660 case MVT::i16: LC = isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
11661 case MVT::i32: LC = isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
11662 case MVT::i64: LC = isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
11663 }
11664 return LC;
11665}
11666
11667static TargetLowering::ArgListTy getDivRemArgList(
11668 const SDNode *N, LLVMContext *Context) {
Scott Douglassbdef6042015-08-24 09:17:18 +000011669 assert((N->getOpcode() == ISD::SDIVREM || N->getOpcode() == ISD::UDIVREM ||
11670 N->getOpcode() == ISD::SREM || N->getOpcode() == ISD::UREM) &&
Scott Douglassd2974a62015-08-24 09:17:11 +000011671 "Unhandled Opcode in getDivRemArgList");
Scott Douglassbdef6042015-08-24 09:17:18 +000011672 bool isSigned = N->getOpcode() == ISD::SDIVREM ||
11673 N->getOpcode() == ISD::SREM;
Scott Douglassd2974a62015-08-24 09:17:11 +000011674 TargetLowering::ArgListTy Args;
11675 TargetLowering::ArgListEntry Entry;
11676 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
11677 EVT ArgVT = N->getOperand(i).getValueType();
11678 Type *ArgTy = ArgVT.getTypeForEVT(*Context);
11679 Entry.Node = N->getOperand(i);
11680 Entry.Ty = ArgTy;
11681 Entry.isSExt = isSigned;
11682 Entry.isZExt = !isSigned;
11683 Args.push_back(Entry);
11684 }
11685 return Args;
11686}
11687
Renato Golin87610692013-07-16 09:32:17 +000011688SDValue ARMTargetLowering::LowerDivRem(SDValue Op, SelectionDAG &DAG) const {
Renato Golin6027dd38e2016-02-03 16:10:54 +000011689 assert((Subtarget->isTargetAEABI() || Subtarget->isTargetAndroid() ||
11690 Subtarget->isTargetGNUAEABI()) &&
Sumanth Gundapaneni532a1362015-07-31 00:45:12 +000011691 "Register-based DivRem lowering only");
Renato Golin87610692013-07-16 09:32:17 +000011692 unsigned Opcode = Op->getOpcode();
11693 assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) &&
Saleem Abdulrasool740be892014-08-17 22:50:59 +000011694 "Invalid opcode for Div/Rem lowering");
Renato Golin87610692013-07-16 09:32:17 +000011695 bool isSigned = (Opcode == ISD::SDIVREM);
11696 EVT VT = Op->getValueType(0);
11697 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
11698
Scott Douglassd2974a62015-08-24 09:17:11 +000011699 RTLIB::Libcall LC = getDivRemLibcall(Op.getNode(),
11700 VT.getSimpleVT().SimpleTy);
Renato Golin87610692013-07-16 09:32:17 +000011701 SDValue InChain = DAG.getEntryNode();
11702
Scott Douglassd2974a62015-08-24 09:17:11 +000011703 TargetLowering::ArgListTy Args = getDivRemArgList(Op.getNode(),
11704 DAG.getContext());
Renato Golin87610692013-07-16 09:32:17 +000011705
11706 SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
Mehdi Amini44ede332015-07-09 02:09:04 +000011707 getPointerTy(DAG.getDataLayout()));
Renato Golin87610692013-07-16 09:32:17 +000011708
Reid Kleckner343c3952014-11-20 23:51:47 +000011709 Type *RetTy = (Type*)StructType::get(Ty, Ty, nullptr);
Renato Golin87610692013-07-16 09:32:17 +000011710
11711 SDLoc dl(Op);
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +000011712 TargetLowering::CallLoweringInfo CLI(DAG);
11713 CLI.setDebugLoc(dl).setChain(InChain)
Juergen Ributzka3bd03c72014-07-01 22:01:54 +000011714 .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +000011715 .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
Renato Golin87610692013-07-16 09:32:17 +000011716
Saleem Abdulrasoolf3a5a5c2014-05-17 21:50:17 +000011717 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
Renato Golin87610692013-07-16 09:32:17 +000011718 return CallInfo.first;
11719}
11720
Scott Douglassbdef6042015-08-24 09:17:18 +000011721// Lowers REM using divmod helpers
11722// see RTABI section 4.2/4.3
11723SDValue ARMTargetLowering::LowerREM(SDNode *N, SelectionDAG &DAG) const {
11724 // Build return types (div and rem)
11725 std::vector<Type*> RetTyParams;
11726 Type *RetTyElement;
11727
11728 switch (N->getValueType(0).getSimpleVT().SimpleTy) {
11729 default: llvm_unreachable("Unexpected request for libcall!");
11730 case MVT::i8: RetTyElement = Type::getInt8Ty(*DAG.getContext()); break;
11731 case MVT::i16: RetTyElement = Type::getInt16Ty(*DAG.getContext()); break;
11732 case MVT::i32: RetTyElement = Type::getInt32Ty(*DAG.getContext()); break;
11733 case MVT::i64: RetTyElement = Type::getInt64Ty(*DAG.getContext()); break;
11734 }
11735
11736 RetTyParams.push_back(RetTyElement);
11737 RetTyParams.push_back(RetTyElement);
11738 ArrayRef<Type*> ret = ArrayRef<Type*>(RetTyParams);
11739 Type *RetTy = StructType::get(*DAG.getContext(), ret);
11740
11741 RTLIB::Libcall LC = getDivRemLibcall(N, N->getValueType(0).getSimpleVT().
11742 SimpleTy);
11743 SDValue InChain = DAG.getEntryNode();
11744 TargetLowering::ArgListTy Args = getDivRemArgList(N, DAG.getContext());
11745 bool isSigned = N->getOpcode() == ISD::SREM;
11746 SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
11747 getPointerTy(DAG.getDataLayout()));
11748
11749 // Lower call
11750 CallLoweringInfo CLI(DAG);
11751 CLI.setChain(InChain)
11752 .setCallee(CallingConv::ARM_AAPCS, RetTy, Callee, std::move(Args), 0)
11753 .setSExtResult(isSigned).setZExtResult(!isSigned).setDebugLoc(SDLoc(N));
11754 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
11755
11756 // Return second (rem) result operand (first contains div)
11757 SDNode *ResNode = CallResult.first.getNode();
11758 assert(ResNode->getNumOperands() == 2 && "divmod should return two operands");
11759 return ResNode->getOperand(1);
11760}
11761
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +000011762SDValue
11763ARMTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const {
11764 assert(Subtarget->isTargetWindows() && "unsupported target platform");
11765 SDLoc DL(Op);
11766
11767 // Get the inputs.
11768 SDValue Chain = Op.getOperand(0);
11769 SDValue Size = Op.getOperand(1);
11770
11771 SDValue Words = DAG.getNode(ISD::SRL, DL, MVT::i32, Size,
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +000011772 DAG.getConstant(2, DL, MVT::i32));
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +000011773
11774 SDValue Flag;
11775 Chain = DAG.getCopyToReg(Chain, DL, ARM::R4, Words, Flag);
11776 Flag = Chain.getValue(1);
11777
Saleem Abdulrasoolc4e00282014-07-19 01:29:51 +000011778 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Saleem Abdulrasoolabac6e92014-06-09 20:18:42 +000011779 Chain = DAG.getNode(ARMISD::WIN__CHKSTK, DL, NodeTys, Chain, Flag);
11780
11781 SDValue NewSP = DAG.getCopyFromReg(Chain, DL, ARM::SP, MVT::i32);
11782 Chain = NewSP.getValue(1);
11783
11784 SDValue Ops[2] = { NewSP, Chain };
11785 return DAG.getMergeValues(Ops, DL);
11786}
11787
Oliver Stannard51b1d462014-08-21 12:50:31 +000011788SDValue ARMTargetLowering::LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) const {
11789 assert(Op.getValueType() == MVT::f64 && Subtarget->isFPOnlySP() &&
11790 "Unexpected type for custom-lowering FP_EXTEND");
11791
11792 RTLIB::Libcall LC;
11793 LC = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType());
11794
11795 SDValue SrcVal = Op.getOperand(0);
Craig Topper8fe40e02015-10-22 17:05:00 +000011796 return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false,
11797 SDLoc(Op)).first;
Oliver Stannard51b1d462014-08-21 12:50:31 +000011798}
11799
11800SDValue ARMTargetLowering::LowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const {
11801 assert(Op.getOperand(0).getValueType() == MVT::f64 &&
11802 Subtarget->isFPOnlySP() &&
11803 "Unexpected type for custom-lowering FP_ROUND");
11804
11805 RTLIB::Libcall LC;
11806 LC = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType());
11807
11808 SDValue SrcVal = Op.getOperand(0);
Craig Topper8fe40e02015-10-22 17:05:00 +000011809 return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false,
11810 SDLoc(Op)).first;
Oliver Stannard51b1d462014-08-21 12:50:31 +000011811}
11812
Anton Korobeynikov29a44df2009-09-23 19:04:09 +000011813bool
11814ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
11815 // The ARM target isn't yet aware of offsets.
11816 return false;
11817}
Evan Cheng4a609f3c2009-10-28 01:44:26 +000011818
Jim Grosbach11013ed2010-07-16 23:05:05 +000011819bool ARM::isBitFieldInvertedMask(unsigned v) {
11820 if (v == 0xffffffff)
Benjamin Kramer8bad66e2013-05-19 22:01:57 +000011821 return false;
11822
Jim Grosbach11013ed2010-07-16 23:05:05 +000011823 // there can be 1's on either or both "outsides", all the "inside"
11824 // bits must be 0's
Benjamin Kramer5f6a9072015-02-12 15:35:40 +000011825 return isShiftedMask_32(~v);
Jim Grosbach11013ed2010-07-16 23:05:05 +000011826}
11827
Evan Cheng4a609f3c2009-10-28 01:44:26 +000011828/// isFPImmLegal - Returns true if the target can instruction select the
11829/// specified FP immediate natively. If false, the legalizer will
11830/// materialize the FP immediate as a load from a constant pool.
11831bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
11832 if (!Subtarget->hasVFP3())
11833 return false;
11834 if (VT == MVT::f32)
Jim Grosbachefc761a2011-09-30 00:50:06 +000011835 return ARM_AM::getFP32Imm(Imm) != -1;
Oliver Stannard51b1d462014-08-21 12:50:31 +000011836 if (VT == MVT::f64 && !Subtarget->isFPOnlySP())
Jim Grosbachefc761a2011-09-30 00:50:06 +000011837 return ARM_AM::getFP64Imm(Imm) != -1;
Evan Cheng4a609f3c2009-10-28 01:44:26 +000011838 return false;
11839}
Bob Wilson5549d492010-09-21 17:56:22 +000011840
Wesley Peck527da1b2010-11-23 03:31:01 +000011841/// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
Bob Wilson5549d492010-09-21 17:56:22 +000011842/// MemIntrinsicNodes. The associated MachineMemOperands record the alignment
11843/// specified in the intrinsic calls.
11844bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
11845 const CallInst &I,
11846 unsigned Intrinsic) const {
11847 switch (Intrinsic) {
11848 case Intrinsic::arm_neon_vld1:
11849 case Intrinsic::arm_neon_vld2:
11850 case Intrinsic::arm_neon_vld3:
11851 case Intrinsic::arm_neon_vld4:
11852 case Intrinsic::arm_neon_vld2lane:
11853 case Intrinsic::arm_neon_vld3lane:
11854 case Intrinsic::arm_neon_vld4lane: {
11855 Info.opc = ISD::INTRINSIC_W_CHAIN;
11856 // Conservatively set memVT to the entire set of vectors loaded.
Mehdi Aminia749f2a2015-07-09 02:09:52 +000011857 auto &DL = I.getCalledFunction()->getParent()->getDataLayout();
Ahmed Bougacha97564c32015-12-09 01:19:50 +000011858 uint64_t NumElts = DL.getTypeSizeInBits(I.getType()) / 64;
Bob Wilson5549d492010-09-21 17:56:22 +000011859 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
11860 Info.ptrVal = I.getArgOperand(0);
11861 Info.offset = 0;
11862 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
11863 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
11864 Info.vol = false; // volatile loads with NEON intrinsics not supported
11865 Info.readMem = true;
11866 Info.writeMem = false;
11867 return true;
11868 }
11869 case Intrinsic::arm_neon_vst1:
11870 case Intrinsic::arm_neon_vst2:
11871 case Intrinsic::arm_neon_vst3:
11872 case Intrinsic::arm_neon_vst4:
11873 case Intrinsic::arm_neon_vst2lane:
11874 case Intrinsic::arm_neon_vst3lane:
11875 case Intrinsic::arm_neon_vst4lane: {
11876 Info.opc = ISD::INTRINSIC_VOID;
11877 // Conservatively set memVT to the entire set of vectors stored.
Mehdi Aminia749f2a2015-07-09 02:09:52 +000011878 auto &DL = I.getCalledFunction()->getParent()->getDataLayout();
Bob Wilson5549d492010-09-21 17:56:22 +000011879 unsigned NumElts = 0;
11880 for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
Chris Lattner229907c2011-07-18 04:54:35 +000011881 Type *ArgTy = I.getArgOperand(ArgI)->getType();
Bob Wilson5549d492010-09-21 17:56:22 +000011882 if (!ArgTy->isVectorTy())
11883 break;
Ahmed Bougacha97564c32015-12-09 01:19:50 +000011884 NumElts += DL.getTypeSizeInBits(ArgTy) / 64;
Bob Wilson5549d492010-09-21 17:56:22 +000011885 }
11886 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
11887 Info.ptrVal = I.getArgOperand(0);
11888 Info.offset = 0;
11889 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
11890 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
11891 Info.vol = false; // volatile stores with NEON intrinsics not supported
11892 Info.readMem = false;
11893 Info.writeMem = true;
11894 return true;
11895 }
Tim Northover1ff5f292014-03-26 14:39:31 +000011896 case Intrinsic::arm_ldaex:
Tim Northovera7ecd242013-07-16 09:46:55 +000011897 case Intrinsic::arm_ldrex: {
Mehdi Aminia749f2a2015-07-09 02:09:52 +000011898 auto &DL = I.getCalledFunction()->getParent()->getDataLayout();
Tim Northovera7ecd242013-07-16 09:46:55 +000011899 PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
11900 Info.opc = ISD::INTRINSIC_W_CHAIN;
11901 Info.memVT = MVT::getVT(PtrTy->getElementType());
11902 Info.ptrVal = I.getArgOperand(0);
11903 Info.offset = 0;
Mehdi Aminia749f2a2015-07-09 02:09:52 +000011904 Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
Tim Northovera7ecd242013-07-16 09:46:55 +000011905 Info.vol = true;
11906 Info.readMem = true;
11907 Info.writeMem = false;
11908 return true;
11909 }
Tim Northover1ff5f292014-03-26 14:39:31 +000011910 case Intrinsic::arm_stlex:
Tim Northovera7ecd242013-07-16 09:46:55 +000011911 case Intrinsic::arm_strex: {
Mehdi Aminia749f2a2015-07-09 02:09:52 +000011912 auto &DL = I.getCalledFunction()->getParent()->getDataLayout();
Tim Northovera7ecd242013-07-16 09:46:55 +000011913 PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
11914 Info.opc = ISD::INTRINSIC_W_CHAIN;
11915 Info.memVT = MVT::getVT(PtrTy->getElementType());
11916 Info.ptrVal = I.getArgOperand(1);
11917 Info.offset = 0;
Mehdi Aminia749f2a2015-07-09 02:09:52 +000011918 Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
Tim Northovera7ecd242013-07-16 09:46:55 +000011919 Info.vol = true;
11920 Info.readMem = false;
11921 Info.writeMem = true;
11922 return true;
11923 }
Tim Northover1ff5f292014-03-26 14:39:31 +000011924 case Intrinsic::arm_stlexd:
Bruno Cardoso Lopes325110f2011-05-28 04:07:29 +000011925 case Intrinsic::arm_strexd: {
11926 Info.opc = ISD::INTRINSIC_W_CHAIN;
11927 Info.memVT = MVT::i64;
11928 Info.ptrVal = I.getArgOperand(2);
11929 Info.offset = 0;
11930 Info.align = 8;
Bruno Cardoso Lopesd66ab9e2011-06-16 18:11:32 +000011931 Info.vol = true;
Bruno Cardoso Lopes325110f2011-05-28 04:07:29 +000011932 Info.readMem = false;
11933 Info.writeMem = true;
11934 return true;
11935 }
Tim Northover1ff5f292014-03-26 14:39:31 +000011936 case Intrinsic::arm_ldaexd:
Bruno Cardoso Lopes325110f2011-05-28 04:07:29 +000011937 case Intrinsic::arm_ldrexd: {
11938 Info.opc = ISD::INTRINSIC_W_CHAIN;
11939 Info.memVT = MVT::i64;
11940 Info.ptrVal = I.getArgOperand(0);
11941 Info.offset = 0;
11942 Info.align = 8;
Bruno Cardoso Lopesd66ab9e2011-06-16 18:11:32 +000011943 Info.vol = true;
Bruno Cardoso Lopes325110f2011-05-28 04:07:29 +000011944 Info.readMem = true;
11945 Info.writeMem = false;
11946 return true;
11947 }
Bob Wilson5549d492010-09-21 17:56:22 +000011948 default:
11949 break;
11950 }
11951
11952 return false;
11953}
Juergen Ributzka659ce002014-01-28 01:20:14 +000011954
11955/// \brief Returns true if it is beneficial to convert a load of a constant
11956/// to just the constant itself.
11957bool ARMTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
11958 Type *Ty) const {
11959 assert(Ty->isIntegerTy());
11960
11961 unsigned Bits = Ty->getPrimitiveSizeInBits();
11962 if (Bits == 0 || Bits > 32)
11963 return false;
11964 return true;
11965}
Tim Northover037f26f22014-04-17 18:22:47 +000011966
Robin Morisset5349e8e2014-09-18 18:56:04 +000011967Instruction* ARMTargetLowering::makeDMB(IRBuilder<> &Builder,
11968 ARM_MB::MemBOpt Domain) const {
Robin Morisseta47cb412014-09-03 21:01:03 +000011969 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
Robin Morisset5349e8e2014-09-18 18:56:04 +000011970
11971 // First, if the target has no DMB, see what fallback we can use.
11972 if (!Subtarget->hasDataBarrier()) {
11973 // Some ARMv6 cpus can support data barriers with an mcr instruction.
11974 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
11975 // here.
11976 if (Subtarget->hasV6Ops() && !Subtarget->isThumb()) {
11977 Function *MCR = llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_mcr);
11978 Value* args[6] = {Builder.getInt32(15), Builder.getInt32(0),
11979 Builder.getInt32(0), Builder.getInt32(7),
11980 Builder.getInt32(10), Builder.getInt32(5)};
11981 return Builder.CreateCall(MCR, args);
11982 } else {
11983 // Instead of using barriers, atomic accesses on these subtargets use
11984 // libcalls.
11985 llvm_unreachable("makeDMB on a target so old that it has no barriers");
11986 }
11987 } else {
11988 Function *DMB = llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_dmb);
11989 // Only a full system barrier exists in the M-class architectures.
11990 Domain = Subtarget->isMClass() ? ARM_MB::SY : Domain;
11991 Constant *CDomain = Builder.getInt32(Domain);
11992 return Builder.CreateCall(DMB, CDomain);
11993 }
Robin Morisseta47cb412014-09-03 21:01:03 +000011994}
11995
11996// Based on http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
Robin Morissetdedef332014-09-23 20:31:14 +000011997Instruction* ARMTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
Robin Morisseta47cb412014-09-03 21:01:03 +000011998 AtomicOrdering Ord, bool IsStore,
11999 bool IsLoad) const {
12000 if (!getInsertFencesForAtomic())
Robin Morissetdedef332014-09-23 20:31:14 +000012001 return nullptr;
Robin Morisseta47cb412014-09-03 21:01:03 +000012002
12003 switch (Ord) {
12004 case NotAtomic:
12005 case Unordered:
12006 llvm_unreachable("Invalid fence: unordered/non-atomic");
12007 case Monotonic:
12008 case Acquire:
Robin Morissetdedef332014-09-23 20:31:14 +000012009 return nullptr; // Nothing to do
Robin Morisseta47cb412014-09-03 21:01:03 +000012010 case SequentiallyConsistent:
12011 if (!IsStore)
Robin Morissetdedef332014-09-23 20:31:14 +000012012 return nullptr; // Nothing to do
12013 /*FALLTHROUGH*/
Robin Morisseta47cb412014-09-03 21:01:03 +000012014 case Release:
12015 case AcquireRelease:
12016 if (Subtarget->isSwift())
Robin Morissetdedef332014-09-23 20:31:14 +000012017 return makeDMB(Builder, ARM_MB::ISHST);
Robin Morisseta47cb412014-09-03 21:01:03 +000012018 // FIXME: add a comment with a link to documentation justifying this.
12019 else
Robin Morissetdedef332014-09-23 20:31:14 +000012020 return makeDMB(Builder, ARM_MB::ISH);
Robin Morisseta47cb412014-09-03 21:01:03 +000012021 }
Robin Morissetdedef332014-09-23 20:31:14 +000012022 llvm_unreachable("Unknown fence ordering in emitLeadingFence");
Robin Morisseta47cb412014-09-03 21:01:03 +000012023}
12024
Robin Morissetdedef332014-09-23 20:31:14 +000012025Instruction* ARMTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
Robin Morisseta47cb412014-09-03 21:01:03 +000012026 AtomicOrdering Ord, bool IsStore,
12027 bool IsLoad) const {
12028 if (!getInsertFencesForAtomic())
Robin Morissetdedef332014-09-23 20:31:14 +000012029 return nullptr;
Robin Morisseta47cb412014-09-03 21:01:03 +000012030
12031 switch (Ord) {
12032 case NotAtomic:
12033 case Unordered:
12034 llvm_unreachable("Invalid fence: unordered/not-atomic");
12035 case Monotonic:
12036 case Release:
Robin Morissetdedef332014-09-23 20:31:14 +000012037 return nullptr; // Nothing to do
Robin Morisseta47cb412014-09-03 21:01:03 +000012038 case Acquire:
12039 case AcquireRelease:
Robin Morissetdedef332014-09-23 20:31:14 +000012040 case SequentiallyConsistent:
12041 return makeDMB(Builder, ARM_MB::ISH);
Robin Morisseta47cb412014-09-03 21:01:03 +000012042 }
Robin Morissetdedef332014-09-23 20:31:14 +000012043 llvm_unreachable("Unknown fence ordering in emitTrailingFence");
Robin Morisseta47cb412014-09-03 21:01:03 +000012044}
12045
Robin Morisseted3d48f2014-09-03 21:29:59 +000012046// Loads and stores less than 64-bits are already atomic; ones above that
12047// are doomed anyway, so defer to the default libcall and blame the OS when
12048// things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit
12049// anything for those.
12050bool ARMTargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
12051 unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits();
12052 return (Size == 64) && !Subtarget->isMClass();
12053}
Tim Northover037f26f22014-04-17 18:22:47 +000012054
Robin Morisseted3d48f2014-09-03 21:29:59 +000012055// Loads and stores less than 64-bits are already atomic; ones above that
12056// are doomed anyway, so defer to the default libcall and blame the OS when
12057// things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit
12058// anything for those.
Robin Morisseta7b357f2014-09-23 18:33:21 +000012059// FIXME: ldrd and strd are atomic if the CPU has LPAE (e.g. A15 has that
12060// guarantee, see DDI0406C ARM architecture reference manual,
12061// sections A8.8.72-74 LDRD)
Ahmed Bougacha52468672015-09-11 17:08:28 +000012062TargetLowering::AtomicExpansionKind
12063ARMTargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
Robin Morisseted3d48f2014-09-03 21:29:59 +000012064 unsigned Size = LI->getType()->getPrimitiveSizeInBits();
Tim Northoverf520eff2015-12-02 18:12:57 +000012065 return ((Size == 64) && !Subtarget->isMClass()) ? AtomicExpansionKind::LLOnly
Ahmed Bougacha52468672015-09-11 17:08:28 +000012066 : AtomicExpansionKind::None;
Robin Morisseted3d48f2014-09-03 21:29:59 +000012067}
12068
12069// For the real atomic operations, we have ldrex/strex up to 32 bits,
12070// and up to 64 bits on the non-M profiles
Ahmed Bougacha52468672015-09-11 17:08:28 +000012071TargetLowering::AtomicExpansionKind
JF Bastienf14889e2015-03-04 15:47:57 +000012072ARMTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
Robin Morisseted3d48f2014-09-03 21:29:59 +000012073 unsigned Size = AI->getType()->getPrimitiveSizeInBits();
JF Bastienf14889e2015-03-04 15:47:57 +000012074 return (Size <= (Subtarget->isMClass() ? 32U : 64U))
Ahmed Bougacha9d677132015-09-11 17:08:17 +000012075 ? AtomicExpansionKind::LLSC
12076 : AtomicExpansionKind::None;
Tim Northover037f26f22014-04-17 18:22:47 +000012077}
12078
Ahmed Bougacha52468672015-09-11 17:08:28 +000012079bool ARMTargetLowering::shouldExpandAtomicCmpXchgInIR(
12080 AtomicCmpXchgInst *AI) const {
12081 return true;
12082}
12083
Akira Hatanakae5b6e0d2014-07-25 19:31:34 +000012084// This has so far only been implemented for MachO.
12085bool ARMTargetLowering::useLoadStackGuardNode() const {
Eric Christopher66322e82014-12-05 00:22:35 +000012086 return Subtarget->isTargetMachO();
Akira Hatanakae5b6e0d2014-07-25 19:31:34 +000012087}
12088
Quentin Colombetc32615d2014-10-31 17:52:53 +000012089bool ARMTargetLowering::canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
12090 unsigned &Cost) const {
12091 // If we do not have NEON, vector types are not natively supported.
12092 if (!Subtarget->hasNEON())
12093 return false;
12094
12095 // Floating point values and vector values map to the same register file.
Benjamin Kramerdf005cb2015-08-08 18:27:36 +000012096 // Therefore, although we could do a store extract of a vector type, this is
Quentin Colombetc32615d2014-10-31 17:52:53 +000012097 // better to leave at float as we have more freedom in the addressing mode for
12098 // those.
12099 if (VectorTy->isFPOrFPVectorTy())
12100 return false;
12101
12102 // If the index is unknown at compile time, this is very expensive to lower
12103 // and it is not possible to combine the store with the extract.
12104 if (!isa<ConstantInt>(Idx))
12105 return false;
12106
12107 assert(VectorTy->isVectorTy() && "VectorTy is not a vector type");
12108 unsigned BitWidth = cast<VectorType>(VectorTy)->getBitWidth();
12109 // We can do a store + vector extract on any vector that fits perfectly in a D
12110 // or Q register.
12111 if (BitWidth == 64 || BitWidth == 128) {
12112 Cost = 0;
12113 return true;
12114 }
12115 return false;
12116}
12117
Sanjay Patelaf1b48b2015-11-10 19:24:31 +000012118bool ARMTargetLowering::isCheapToSpeculateCttz() const {
12119 return Subtarget->hasV6T2Ops();
12120}
12121
12122bool ARMTargetLowering::isCheapToSpeculateCtlz() const {
12123 return Subtarget->hasV6T2Ops();
12124}
12125
Tim Northover037f26f22014-04-17 18:22:47 +000012126Value *ARMTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
12127 AtomicOrdering Ord) const {
12128 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
12129 Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
Robin Morissetb155f522014-08-18 16:48:58 +000012130 bool IsAcquire = isAtLeastAcquire(Ord);
Tim Northover037f26f22014-04-17 18:22:47 +000012131
12132 // Since i64 isn't legal and intrinsics don't get type-lowered, the ldrexd
12133 // intrinsic must return {i32, i32} and we have to recombine them into a
12134 // single i64 here.
12135 if (ValTy->getPrimitiveSizeInBits() == 64) {
12136 Intrinsic::ID Int =
12137 IsAcquire ? Intrinsic::arm_ldaexd : Intrinsic::arm_ldrexd;
12138 Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int);
12139
12140 Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
12141 Value *LoHi = Builder.CreateCall(Ldrex, Addr, "lohi");
12142
12143 Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
12144 Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
Christian Pirkerb5728192014-05-08 14:06:24 +000012145 if (!Subtarget->isLittle())
12146 std::swap (Lo, Hi);
Tim Northover037f26f22014-04-17 18:22:47 +000012147 Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
12148 Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
12149 return Builder.CreateOr(
12150 Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 32)), "val64");
12151 }
12152
12153 Type *Tys[] = { Addr->getType() };
12154 Intrinsic::ID Int = IsAcquire ? Intrinsic::arm_ldaex : Intrinsic::arm_ldrex;
12155 Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int, Tys);
12156
12157 return Builder.CreateTruncOrBitCast(
12158 Builder.CreateCall(Ldrex, Addr),
12159 cast<PointerType>(Addr->getType())->getElementType());
12160}
12161
Ahmed Bougacha81616a72015-09-22 17:22:58 +000012162void ARMTargetLowering::emitAtomicCmpXchgNoStoreLLBalance(
12163 IRBuilder<> &Builder) const {
Ahmed Bougachae81610f2015-09-26 00:14:02 +000012164 if (!Subtarget->hasV7Ops())
12165 return;
Ahmed Bougacha81616a72015-09-22 17:22:58 +000012166 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
12167 Builder.CreateCall(llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_clrex));
12168}
12169
Tim Northover037f26f22014-04-17 18:22:47 +000012170Value *ARMTargetLowering::emitStoreConditional(IRBuilder<> &Builder, Value *Val,
12171 Value *Addr,
12172 AtomicOrdering Ord) const {
12173 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
Robin Morissetb155f522014-08-18 16:48:58 +000012174 bool IsRelease = isAtLeastRelease(Ord);
Tim Northover037f26f22014-04-17 18:22:47 +000012175
12176 // Since the intrinsics must have legal type, the i64 intrinsics take two
12177 // parameters: "i32, i32". We must marshal Val into the appropriate form
12178 // before the call.
12179 if (Val->getType()->getPrimitiveSizeInBits() == 64) {
12180 Intrinsic::ID Int =
12181 IsRelease ? Intrinsic::arm_stlexd : Intrinsic::arm_strexd;
12182 Function *Strex = Intrinsic::getDeclaration(M, Int);
12183 Type *Int32Ty = Type::getInt32Ty(M->getContext());
12184
12185 Value *Lo = Builder.CreateTrunc(Val, Int32Ty, "lo");
12186 Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 32), Int32Ty, "hi");
Christian Pirkerb5728192014-05-08 14:06:24 +000012187 if (!Subtarget->isLittle())
12188 std::swap (Lo, Hi);
Tim Northover037f26f22014-04-17 18:22:47 +000012189 Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
David Blaikieff6409d2015-05-18 22:13:54 +000012190 return Builder.CreateCall(Strex, {Lo, Hi, Addr});
Tim Northover037f26f22014-04-17 18:22:47 +000012191 }
12192
12193 Intrinsic::ID Int = IsRelease ? Intrinsic::arm_stlex : Intrinsic::arm_strex;
12194 Type *Tys[] = { Addr->getType() };
12195 Function *Strex = Intrinsic::getDeclaration(M, Int, Tys);
12196
David Blaikieff6409d2015-05-18 22:13:54 +000012197 return Builder.CreateCall(
12198 Strex, {Builder.CreateZExtOrBitCast(
12199 Val, Strex->getFunctionType()->getParamType(0)),
12200 Addr});
Tim Northover037f26f22014-04-17 18:22:47 +000012201}
Oliver Stannardc24f2172014-05-09 14:01:47 +000012202
Hao Liu2cd34bb2015-06-26 02:45:36 +000012203/// \brief Lower an interleaved load into a vldN intrinsic.
12204///
12205/// E.g. Lower an interleaved load (Factor = 2):
12206/// %wide.vec = load <8 x i32>, <8 x i32>* %ptr, align 4
12207/// %v0 = shuffle %wide.vec, undef, <0, 2, 4, 6> ; Extract even elements
12208/// %v1 = shuffle %wide.vec, undef, <1, 3, 5, 7> ; Extract odd elements
12209///
12210/// Into:
12211/// %vld2 = { <4 x i32>, <4 x i32> } call llvm.arm.neon.vld2(%ptr, 4)
12212/// %vec0 = extractelement { <4 x i32>, <4 x i32> } %vld2, i32 0
12213/// %vec1 = extractelement { <4 x i32>, <4 x i32> } %vld2, i32 1
12214bool ARMTargetLowering::lowerInterleavedLoad(
12215 LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles,
12216 ArrayRef<unsigned> Indices, unsigned Factor) const {
12217 assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
12218 "Invalid interleave factor");
12219 assert(!Shuffles.empty() && "Empty shufflevector input");
12220 assert(Shuffles.size() == Indices.size() &&
12221 "Unmatched number of shufflevectors and indices");
12222
12223 VectorType *VecTy = Shuffles[0]->getType();
12224 Type *EltTy = VecTy->getVectorElementType();
12225
Mehdi Aminia749f2a2015-07-09 02:09:52 +000012226 const DataLayout &DL = LI->getModule()->getDataLayout();
Ahmed Bougacha97564c32015-12-09 01:19:50 +000012227 unsigned VecSize = DL.getTypeSizeInBits(VecTy);
12228 bool EltIs64Bits = DL.getTypeSizeInBits(EltTy) == 64;
Hao Liu2cd34bb2015-06-26 02:45:36 +000012229
Jeroen Ketemaaebca092015-10-07 14:53:29 +000012230 // Skip if we do not have NEON and skip illegal vector types and vector types
12231 // with i64/f64 elements (vldN doesn't support i64/f64 elements).
12232 if (!Subtarget->hasNEON() || (VecSize != 64 && VecSize != 128) || EltIs64Bits)
Hao Liu2cd34bb2015-06-26 02:45:36 +000012233 return false;
12234
12235 // A pointer vector can not be the return type of the ldN intrinsics. Need to
12236 // load integer vectors first and then convert to pointer vectors.
12237 if (EltTy->isPointerTy())
Mehdi Aminia749f2a2015-07-09 02:09:52 +000012238 VecTy =
12239 VectorType::get(DL.getIntPtrType(EltTy), VecTy->getVectorNumElements());
Hao Liu2cd34bb2015-06-26 02:45:36 +000012240
12241 static const Intrinsic::ID LoadInts[3] = {Intrinsic::arm_neon_vld2,
12242 Intrinsic::arm_neon_vld3,
12243 Intrinsic::arm_neon_vld4};
12244
Hao Liu2cd34bb2015-06-26 02:45:36 +000012245 IRBuilder<> Builder(LI);
12246 SmallVector<Value *, 2> Ops;
12247
12248 Type *Int8Ptr = Builder.getInt8PtrTy(LI->getPointerAddressSpace());
12249 Ops.push_back(Builder.CreateBitCast(LI->getPointerOperand(), Int8Ptr));
12250 Ops.push_back(Builder.getInt32(LI->getAlignment()));
12251
Jeroen Ketemaab99b592015-09-30 10:56:37 +000012252 Type *Tys[] = { VecTy, Int8Ptr };
12253 Function *VldnFunc =
12254 Intrinsic::getDeclaration(LI->getModule(), LoadInts[Factor - 2], Tys);
Hao Liu2cd34bb2015-06-26 02:45:36 +000012255 CallInst *VldN = Builder.CreateCall(VldnFunc, Ops, "vldN");
12256
12257 // Replace uses of each shufflevector with the corresponding vector loaded
12258 // by ldN.
12259 for (unsigned i = 0; i < Shuffles.size(); i++) {
12260 ShuffleVectorInst *SV = Shuffles[i];
12261 unsigned Index = Indices[i];
12262
12263 Value *SubVec = Builder.CreateExtractValue(VldN, Index);
12264
12265 // Convert the integer vector to pointer vector if the element is pointer.
12266 if (EltTy->isPointerTy())
12267 SubVec = Builder.CreateIntToPtr(SubVec, SV->getType());
12268
12269 SV->replaceAllUsesWith(SubVec);
12270 }
12271
12272 return true;
12273}
12274
12275/// \brief Get a mask consisting of sequential integers starting from \p Start.
12276///
12277/// I.e. <Start, Start + 1, ..., Start + NumElts - 1>
12278static Constant *getSequentialMask(IRBuilder<> &Builder, unsigned Start,
12279 unsigned NumElts) {
12280 SmallVector<Constant *, 16> Mask;
12281 for (unsigned i = 0; i < NumElts; i++)
12282 Mask.push_back(Builder.getInt32(Start + i));
12283
12284 return ConstantVector::get(Mask);
12285}
12286
12287/// \brief Lower an interleaved store into a vstN intrinsic.
12288///
12289/// E.g. Lower an interleaved store (Factor = 3):
12290/// %i.vec = shuffle <8 x i32> %v0, <8 x i32> %v1,
12291/// <0, 4, 8, 1, 5, 9, 2, 6, 10, 3, 7, 11>
12292/// store <12 x i32> %i.vec, <12 x i32>* %ptr, align 4
12293///
12294/// Into:
12295/// %sub.v0 = shuffle <8 x i32> %v0, <8 x i32> v1, <0, 1, 2, 3>
12296/// %sub.v1 = shuffle <8 x i32> %v0, <8 x i32> v1, <4, 5, 6, 7>
12297/// %sub.v2 = shuffle <8 x i32> %v0, <8 x i32> v1, <8, 9, 10, 11>
12298/// call void llvm.arm.neon.vst3(%ptr, %sub.v0, %sub.v1, %sub.v2, 4)
12299///
12300/// Note that the new shufflevectors will be removed and we'll only generate one
12301/// vst3 instruction in CodeGen.
12302bool ARMTargetLowering::lowerInterleavedStore(StoreInst *SI,
12303 ShuffleVectorInst *SVI,
12304 unsigned Factor) const {
12305 assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
12306 "Invalid interleave factor");
12307
12308 VectorType *VecTy = SVI->getType();
12309 assert(VecTy->getVectorNumElements() % Factor == 0 &&
12310 "Invalid interleaved store");
12311
12312 unsigned NumSubElts = VecTy->getVectorNumElements() / Factor;
12313 Type *EltTy = VecTy->getVectorElementType();
12314 VectorType *SubVecTy = VectorType::get(EltTy, NumSubElts);
12315
Mehdi Aminia749f2a2015-07-09 02:09:52 +000012316 const DataLayout &DL = SI->getModule()->getDataLayout();
Ahmed Bougacha97564c32015-12-09 01:19:50 +000012317 unsigned SubVecSize = DL.getTypeSizeInBits(SubVecTy);
12318 bool EltIs64Bits = DL.getTypeSizeInBits(EltTy) == 64;
Hao Liu2cd34bb2015-06-26 02:45:36 +000012319
Jeroen Ketemaaebca092015-10-07 14:53:29 +000012320 // Skip if we do not have NEON and skip illegal vector types and vector types
12321 // with i64/f64 elements (vstN doesn't support i64/f64 elements).
12322 if (!Subtarget->hasNEON() || (SubVecSize != 64 && SubVecSize != 128) ||
12323 EltIs64Bits)
Hao Liu2cd34bb2015-06-26 02:45:36 +000012324 return false;
12325
12326 Value *Op0 = SVI->getOperand(0);
12327 Value *Op1 = SVI->getOperand(1);
12328 IRBuilder<> Builder(SI);
12329
12330 // StN intrinsics don't support pointer vectors as arguments. Convert pointer
12331 // vectors to integer vectors.
12332 if (EltTy->isPointerTy()) {
Mehdi Aminia749f2a2015-07-09 02:09:52 +000012333 Type *IntTy = DL.getIntPtrType(EltTy);
Hao Liu2cd34bb2015-06-26 02:45:36 +000012334
12335 // Convert to the corresponding integer vector.
12336 Type *IntVecTy =
12337 VectorType::get(IntTy, Op0->getType()->getVectorNumElements());
12338 Op0 = Builder.CreatePtrToInt(Op0, IntVecTy);
12339 Op1 = Builder.CreatePtrToInt(Op1, IntVecTy);
12340
12341 SubVecTy = VectorType::get(IntTy, NumSubElts);
12342 }
12343
Craig Topper26260942015-10-18 05:15:34 +000012344 static const Intrinsic::ID StoreInts[3] = {Intrinsic::arm_neon_vst2,
12345 Intrinsic::arm_neon_vst3,
12346 Intrinsic::arm_neon_vst4};
Hao Liu2cd34bb2015-06-26 02:45:36 +000012347 SmallVector<Value *, 6> Ops;
12348
12349 Type *Int8Ptr = Builder.getInt8PtrTy(SI->getPointerAddressSpace());
12350 Ops.push_back(Builder.CreateBitCast(SI->getPointerOperand(), Int8Ptr));
12351
Jeroen Ketemaab99b592015-09-30 10:56:37 +000012352 Type *Tys[] = { Int8Ptr, SubVecTy };
12353 Function *VstNFunc = Intrinsic::getDeclaration(
12354 SI->getModule(), StoreInts[Factor - 2], Tys);
12355
Hao Liu2cd34bb2015-06-26 02:45:36 +000012356 // Split the shufflevector operands into sub vectors for the new vstN call.
12357 for (unsigned i = 0; i < Factor; i++)
12358 Ops.push_back(Builder.CreateShuffleVector(
12359 Op0, Op1, getSequentialMask(Builder, NumSubElts * i, NumSubElts)));
12360
12361 Ops.push_back(Builder.getInt32(SI->getAlignment()));
12362 Builder.CreateCall(VstNFunc, Ops);
12363 return true;
12364}
12365
Oliver Stannardc24f2172014-05-09 14:01:47 +000012366enum HABaseType {
12367 HA_UNKNOWN = 0,
12368 HA_FLOAT,
12369 HA_DOUBLE,
12370 HA_VECT64,
12371 HA_VECT128
12372};
12373
12374static bool isHomogeneousAggregate(Type *Ty, HABaseType &Base,
12375 uint64_t &Members) {
Craig Toppere3dcce92015-08-01 22:20:21 +000012376 if (auto *ST = dyn_cast<StructType>(Ty)) {
Oliver Stannardc24f2172014-05-09 14:01:47 +000012377 for (unsigned i = 0; i < ST->getNumElements(); ++i) {
12378 uint64_t SubMembers = 0;
12379 if (!isHomogeneousAggregate(ST->getElementType(i), Base, SubMembers))
12380 return false;
12381 Members += SubMembers;
12382 }
Craig Toppere3dcce92015-08-01 22:20:21 +000012383 } else if (auto *AT = dyn_cast<ArrayType>(Ty)) {
Oliver Stannardc24f2172014-05-09 14:01:47 +000012384 uint64_t SubMembers = 0;
12385 if (!isHomogeneousAggregate(AT->getElementType(), Base, SubMembers))
12386 return false;
12387 Members += SubMembers * AT->getNumElements();
12388 } else if (Ty->isFloatTy()) {
12389 if (Base != HA_UNKNOWN && Base != HA_FLOAT)
12390 return false;
12391 Members = 1;
12392 Base = HA_FLOAT;
12393 } else if (Ty->isDoubleTy()) {
12394 if (Base != HA_UNKNOWN && Base != HA_DOUBLE)
12395 return false;
12396 Members = 1;
12397 Base = HA_DOUBLE;
Craig Toppere3dcce92015-08-01 22:20:21 +000012398 } else if (auto *VT = dyn_cast<VectorType>(Ty)) {
Oliver Stannardc24f2172014-05-09 14:01:47 +000012399 Members = 1;
12400 switch (Base) {
12401 case HA_FLOAT:
12402 case HA_DOUBLE:
12403 return false;
12404 case HA_VECT64:
12405 return VT->getBitWidth() == 64;
12406 case HA_VECT128:
12407 return VT->getBitWidth() == 128;
12408 case HA_UNKNOWN:
12409 switch (VT->getBitWidth()) {
12410 case 64:
12411 Base = HA_VECT64;
12412 return true;
12413 case 128:
12414 Base = HA_VECT128;
12415 return true;
12416 default:
12417 return false;
12418 }
12419 }
12420 }
12421
12422 return (Members > 0 && Members <= 4);
12423}
12424
Tim Northovere95c5b32015-02-24 17:22:34 +000012425/// \brief Return true if a type is an AAPCS-VFP homogeneous aggregate or one of
12426/// [N x i32] or [N x i64]. This allows front-ends to skip emitting padding when
12427/// passing according to AAPCS rules.
Oliver Stannardc24f2172014-05-09 14:01:47 +000012428bool ARMTargetLowering::functionArgumentNeedsConsecutiveRegisters(
12429 Type *Ty, CallingConv::ID CallConv, bool isVarArg) const {
Tim Northover4f1909f2014-05-27 10:43:38 +000012430 if (getEffectiveCallingConv(CallConv, isVarArg) !=
12431 CallingConv::ARM_AAPCS_VFP)
Oliver Stannardc24f2172014-05-09 14:01:47 +000012432 return false;
Tim Northover4f1909f2014-05-27 10:43:38 +000012433
12434 HABaseType Base = HA_UNKNOWN;
12435 uint64_t Members = 0;
Tim Northovere95c5b32015-02-24 17:22:34 +000012436 bool IsHA = isHomogeneousAggregate(Ty, Base, Members);
12437 DEBUG(dbgs() << "isHA: " << IsHA << " "; Ty->dump());
12438
12439 bool IsIntArray = Ty->isArrayTy() && Ty->getArrayElementType()->isIntegerTy();
12440 return IsHA || IsIntArray;
Oliver Stannardc24f2172014-05-09 14:01:47 +000012441}
Joseph Tremouletf748c892015-11-07 01:11:31 +000012442
12443unsigned ARMTargetLowering::getExceptionPointerRegister(
12444 const Constant *PersonalityFn) const {
12445 // Platforms which do not use SjLj EH may return values in these registers
12446 // via the personality function.
12447 return Subtarget->useSjLjEH() ? ARM::NoRegister : ARM::R0;
12448}
12449
12450unsigned ARMTargetLowering::getExceptionSelectorRegister(
12451 const Constant *PersonalityFn) const {
12452 // Platforms which do not use SjLj EH may return values in these registers
12453 // via the personality function.
12454 return Subtarget->useSjLjEH() ? ARM::NoRegister : ARM::R1;
12455}
Manman Ren5e9e65e2016-01-12 00:47:18 +000012456
12457void ARMTargetLowering::initializeSplitCSR(MachineBasicBlock *Entry) const {
12458 // Update IsSplitCSR in ARMFunctionInfo.
12459 ARMFunctionInfo *AFI = Entry->getParent()->getInfo<ARMFunctionInfo>();
12460 AFI->setIsSplitCSR(true);
12461}
12462
12463void ARMTargetLowering::insertCopiesSplitCSR(
12464 MachineBasicBlock *Entry,
12465 const SmallVectorImpl<MachineBasicBlock *> &Exits) const {
12466 const ARMBaseRegisterInfo *TRI = Subtarget->getRegisterInfo();
12467 const MCPhysReg *IStart = TRI->getCalleeSavedRegsViaCopy(Entry->getParent());
12468 if (!IStart)
12469 return;
12470
12471 const TargetInstrInfo *TII = Subtarget->getInstrInfo();
12472 MachineRegisterInfo *MRI = &Entry->getParent()->getRegInfo();
Manman Rene5f807f2016-01-15 20:24:11 +000012473 MachineBasicBlock::iterator MBBI = Entry->begin();
Manman Ren5e9e65e2016-01-12 00:47:18 +000012474 for (const MCPhysReg *I = IStart; *I; ++I) {
12475 const TargetRegisterClass *RC = nullptr;
12476 if (ARM::GPRRegClass.contains(*I))
12477 RC = &ARM::GPRRegClass;
12478 else if (ARM::DPRRegClass.contains(*I))
12479 RC = &ARM::DPRRegClass;
12480 else
12481 llvm_unreachable("Unexpected register class in CSRsViaCopy!");
12482
12483 unsigned NewVR = MRI->createVirtualRegister(RC);
12484 // Create copy from CSR to a virtual register.
12485 // FIXME: this currently does not emit CFI pseudo-instructions, it works
12486 // fine for CXX_FAST_TLS since the C++-style TLS access functions should be
12487 // nounwind. If we want to generalize this later, we may need to emit
12488 // CFI pseudo-instructions.
12489 assert(Entry->getParent()->getFunction()->hasFnAttribute(
12490 Attribute::NoUnwind) &&
12491 "Function should be nounwind in insertCopiesSplitCSR!");
12492 Entry->addLiveIn(*I);
Manman Rene5f807f2016-01-15 20:24:11 +000012493 BuildMI(*Entry, MBBI, DebugLoc(), TII->get(TargetOpcode::COPY), NewVR)
Manman Ren5e9e65e2016-01-12 00:47:18 +000012494 .addReg(*I);
12495
Manman Rene5f807f2016-01-15 20:24:11 +000012496 // Insert the copy-back instructions right before the terminator.
Manman Ren5e9e65e2016-01-12 00:47:18 +000012497 for (auto *Exit : Exits)
Manman Rene5f807f2016-01-15 20:24:11 +000012498 BuildMI(*Exit, Exit->getFirstTerminator(), DebugLoc(),
12499 TII->get(TargetOpcode::COPY), *I)
Manman Ren5e9e65e2016-01-12 00:47:18 +000012500 .addReg(NewVR);
12501 }
12502}