1 //===-- ARMISelLowering.cpp - ARM DAG Lowering Implementation -------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the interfaces that ARM uses to lower LLVM code into a
13 //===----------------------------------------------------------------------===//
15 #include "ARMISelLowering.h"
16 #include "ARMCallingConv.h"
17 #include "ARMConstantPoolValue.h"
18 #include "ARMMachineFunctionInfo.h"
19 #include "ARMPerfectShuffle.h"
20 #include "ARMSubtarget.h"
21 #include "ARMTargetMachine.h"
22 #include "ARMTargetObjectFile.h"
23 #include "MCTargetDesc/ARMAddressingModes.h"
24 #include "llvm/ADT/Statistic.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/CodeGen/CallingConvLower.h"
27 #include "llvm/CodeGen/IntrinsicLowering.h"
28 #include "llvm/CodeGen/MachineBasicBlock.h"
29 #include "llvm/CodeGen/MachineFrameInfo.h"
30 #include "llvm/CodeGen/MachineFunction.h"
31 #include "llvm/CodeGen/MachineInstrBuilder.h"
32 #include "llvm/CodeGen/MachineModuleInfo.h"
33 #include "llvm/CodeGen/MachineRegisterInfo.h"
34 #include "llvm/CodeGen/SelectionDAG.h"
35 #include "llvm/IR/CallingConv.h"
36 #include "llvm/IR/Constants.h"
37 #include "llvm/IR/Function.h"
38 #include "llvm/IR/GlobalValue.h"
39 #include "llvm/IR/IRBuilder.h"
40 #include "llvm/IR/Instruction.h"
41 #include "llvm/IR/Instructions.h"
42 #include "llvm/IR/Intrinsics.h"
43 #include "llvm/IR/Type.h"
44 #include "llvm/MC/MCSectionMachO.h"
45 #include "llvm/Support/CommandLine.h"
46 #include "llvm/Support/Debug.h"
47 #include "llvm/Support/ErrorHandling.h"
48 #include "llvm/Support/MathExtras.h"
49 #include "llvm/Target/TargetOptions.h"
53 #define DEBUG_TYPE "arm-isel"
55 STATISTIC(NumTailCalls, "Number of tail calls");
56 STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
57 STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments");
60 EnableARMLongCalls("arm-long-calls", cl::Hidden,
61 cl::desc("Generate calls via indirect call instructions"),
65 ARMInterworking("arm-interworking", cl::Hidden,
66 cl::desc("Enable / disable ARM interworking (for debugging only)"),
70 class ARMCCState : public CCState {
72 ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
73 const TargetMachine &TM, SmallVectorImpl<CCValAssign> &locs,
74 LLVMContext &C, ParmContext PC)
75 : CCState(CC, isVarArg, MF, TM, locs, C) {
76 assert(((PC == Call) || (PC == Prologue)) &&
77 "ARMCCState users must specify whether their context is call"
78 "or prologue generation.");
84 // The APCS parameter registers.
85 static const MCPhysReg GPRArgRegs[] = {
86 ARM::R0, ARM::R1, ARM::R2, ARM::R3
89 void ARMTargetLowering::addTypeForNEON(MVT VT, MVT PromotedLdStVT,
90 MVT PromotedBitwiseVT) {
91 if (VT != PromotedLdStVT) {
92 setOperationAction(ISD::LOAD, VT, Promote);
93 AddPromotedToType (ISD::LOAD, VT, PromotedLdStVT);
95 setOperationAction(ISD::STORE, VT, Promote);
96 AddPromotedToType (ISD::STORE, VT, PromotedLdStVT);
99 MVT ElemTy = VT.getVectorElementType();
100 if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
101 setOperationAction(ISD::SETCC, VT, Custom);
102 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
103 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
104 if (ElemTy == MVT::i32) {
105 setOperationAction(ISD::SINT_TO_FP, VT, Custom);
106 setOperationAction(ISD::UINT_TO_FP, VT, Custom);
107 setOperationAction(ISD::FP_TO_SINT, VT, Custom);
108 setOperationAction(ISD::FP_TO_UINT, VT, Custom);
110 setOperationAction(ISD::SINT_TO_FP, VT, Expand);
111 setOperationAction(ISD::UINT_TO_FP, VT, Expand);
112 setOperationAction(ISD::FP_TO_SINT, VT, Expand);
113 setOperationAction(ISD::FP_TO_UINT, VT, Expand);
115 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
116 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
117 setOperationAction(ISD::CONCAT_VECTORS, VT, Legal);
118 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
119 setOperationAction(ISD::SELECT, VT, Expand);
120 setOperationAction(ISD::SELECT_CC, VT, Expand);
121 setOperationAction(ISD::VSELECT, VT, Expand);
122 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
123 if (VT.isInteger()) {
124 setOperationAction(ISD::SHL, VT, Custom);
125 setOperationAction(ISD::SRA, VT, Custom);
126 setOperationAction(ISD::SRL, VT, Custom);
129 // Promote all bit-wise operations.
130 if (VT.isInteger() && VT != PromotedBitwiseVT) {
131 setOperationAction(ISD::AND, VT, Promote);
132 AddPromotedToType (ISD::AND, VT, PromotedBitwiseVT);
133 setOperationAction(ISD::OR, VT, Promote);
134 AddPromotedToType (ISD::OR, VT, PromotedBitwiseVT);
135 setOperationAction(ISD::XOR, VT, Promote);
136 AddPromotedToType (ISD::XOR, VT, PromotedBitwiseVT);
139 // Neon does not support vector divide/remainder operations.
140 setOperationAction(ISD::SDIV, VT, Expand);
141 setOperationAction(ISD::UDIV, VT, Expand);
142 setOperationAction(ISD::FDIV, VT, Expand);
143 setOperationAction(ISD::SREM, VT, Expand);
144 setOperationAction(ISD::UREM, VT, Expand);
145 setOperationAction(ISD::FREM, VT, Expand);
148 void ARMTargetLowering::addDRTypeForNEON(MVT VT) {
149 addRegisterClass(VT, &ARM::DPRRegClass);
150 addTypeForNEON(VT, MVT::f64, MVT::v2i32);
153 void ARMTargetLowering::addQRTypeForNEON(MVT VT) {
154 addRegisterClass(VT, &ARM::DPairRegClass);
155 addTypeForNEON(VT, MVT::v2f64, MVT::v4i32);
158 static TargetLoweringObjectFile *createTLOF(const Triple &TT) {
159 if (TT.isOSBinFormatMachO())
160 return new TargetLoweringObjectFileMachO();
161 if (TT.isOSWindows())
162 return new TargetLoweringObjectFileCOFF();
163 return new ARMElfTargetObjectFile();
166 ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
167 : TargetLowering(TM, createTLOF(Triple(TM.getTargetTriple()))) {
168 Subtarget = &TM.getSubtarget<ARMSubtarget>();
169 RegInfo = TM.getRegisterInfo();
170 Itins = TM.getInstrItineraryData();
172 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
174 if (Subtarget->isTargetMachO()) {
175 // Uses VFP for Thumb libfuncs if available.
176 if (Subtarget->isThumb() && Subtarget->hasVFP2() &&
177 Subtarget->hasARMOps() && !TM.Options.UseSoftFloat) {
178 // Single-precision floating-point arithmetic.
179 setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
180 setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
181 setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
182 setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
184 // Double-precision floating-point arithmetic.
185 setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
186 setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
187 setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
188 setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
190 // Single-precision comparisons.
191 setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
192 setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
193 setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
194 setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
195 setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
196 setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
197 setLibcallName(RTLIB::UO_F32, "__unordsf2vfp");
198 setLibcallName(RTLIB::O_F32, "__unordsf2vfp");
200 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
201 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
202 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
203 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
204 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
205 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
206 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE);
207 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ);
209 // Double-precision comparisons.
210 setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
211 setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
212 setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
213 setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
214 setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
215 setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
216 setLibcallName(RTLIB::UO_F64, "__unorddf2vfp");
217 setLibcallName(RTLIB::O_F64, "__unorddf2vfp");
219 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
220 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
221 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
222 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
223 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
224 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
225 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE);
226 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ);
228 // Floating-point to integer conversions.
229 // i64 conversions are done via library routines even when generating VFP
230 // instructions, so use the same ones.
231 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
232 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
233 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
234 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
236 // Conversions between floating types.
237 setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
238 setLibcallName(RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp");
240 // Integer to floating-point conversions.
241 // i64 conversions are done via library routines even when generating VFP
242 // instructions, so use the same ones.
243 // FIXME: There appears to be some naming inconsistency in ARM libgcc:
244 // e.g., __floatunsidf vs. __floatunssidfvfp.
245 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
246 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
247 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
248 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
252 // These libcalls are not available in 32-bit.
253 setLibcallName(RTLIB::SHL_I128, nullptr);
254 setLibcallName(RTLIB::SRL_I128, nullptr);
255 setLibcallName(RTLIB::SRA_I128, nullptr);
257 if (Subtarget->isAAPCS_ABI() && !Subtarget->isTargetMachO() &&
258 !Subtarget->isTargetWindows()) {
259 static const struct {
260 const RTLIB::Libcall Op;
261 const char * const Name;
262 const CallingConv::ID CC;
263 const ISD::CondCode Cond;
265 // Double-precision floating-point arithmetic helper functions
266 // RTABI chapter 4.1.2, Table 2
267 { RTLIB::ADD_F64, "__aeabi_dadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
268 { RTLIB::DIV_F64, "__aeabi_ddiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
269 { RTLIB::MUL_F64, "__aeabi_dmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
270 { RTLIB::SUB_F64, "__aeabi_dsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
272 // Double-precision floating-point comparison helper functions
273 // RTABI chapter 4.1.2, Table 3
274 { RTLIB::OEQ_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
275 { RTLIB::UNE_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
276 { RTLIB::OLT_F64, "__aeabi_dcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
277 { RTLIB::OLE_F64, "__aeabi_dcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
278 { RTLIB::OGE_F64, "__aeabi_dcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
279 { RTLIB::OGT_F64, "__aeabi_dcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
280 { RTLIB::UO_F64, "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
281 { RTLIB::O_F64, "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
283 // Single-precision floating-point arithmetic helper functions
284 // RTABI chapter 4.1.2, Table 4
285 { RTLIB::ADD_F32, "__aeabi_fadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
286 { RTLIB::DIV_F32, "__aeabi_fdiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
287 { RTLIB::MUL_F32, "__aeabi_fmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
288 { RTLIB::SUB_F32, "__aeabi_fsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
290 // Single-precision floating-point comparison helper functions
291 // RTABI chapter 4.1.2, Table 5
292 { RTLIB::OEQ_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
293 { RTLIB::UNE_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
294 { RTLIB::OLT_F32, "__aeabi_fcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
295 { RTLIB::OLE_F32, "__aeabi_fcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
296 { RTLIB::OGE_F32, "__aeabi_fcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
297 { RTLIB::OGT_F32, "__aeabi_fcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
298 { RTLIB::UO_F32, "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
299 { RTLIB::O_F32, "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
301 // Floating-point to integer conversions.
302 // RTABI chapter 4.1.2, Table 6
303 { RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
304 { RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
305 { RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
306 { RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
307 { RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
308 { RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
309 { RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
310 { RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
312 // Conversions between floating types.
313 // RTABI chapter 4.1.2, Table 7
314 { RTLIB::FPROUND_F64_F32, "__aeabi_d2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
315 { RTLIB::FPEXT_F32_F64, "__aeabi_f2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
317 // 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 },
328 // Long long helper functions
329 // RTABI chapter 4.2, Table 9
330 { RTLIB::MUL_I64, "__aeabi_lmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
331 { RTLIB::SHL_I64, "__aeabi_llsl", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
332 { RTLIB::SRL_I64, "__aeabi_llsr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
333 { RTLIB::SRA_I64, "__aeabi_lasr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
335 // Integer division functions
336 // RTABI chapter 4.3.1
337 { RTLIB::SDIV_I8, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
338 { RTLIB::SDIV_I16, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
339 { RTLIB::SDIV_I32, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
340 { RTLIB::SDIV_I64, "__aeabi_ldivmod", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
341 { RTLIB::UDIV_I8, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
342 { RTLIB::UDIV_I16, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
343 { RTLIB::UDIV_I32, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
344 { RTLIB::UDIV_I64, "__aeabi_uldivmod", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
347 // RTABI chapter 4.3.4
348 { RTLIB::MEMCPY, "__aeabi_memcpy", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
349 { RTLIB::MEMMOVE, "__aeabi_memmove", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
350 { RTLIB::MEMSET, "__aeabi_memset", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
353 for (const auto &LC : LibraryCalls) {
354 setLibcallName(LC.Op, LC.Name);
355 setLibcallCallingConv(LC.Op, LC.CC);
356 if (LC.Cond != ISD::SETCC_INVALID)
357 setCmpLibcallCC(LC.Op, LC.Cond);
361 if (Subtarget->isTargetWindows()) {
362 static const struct {
363 const RTLIB::Libcall Op;
364 const char * const Name;
365 const CallingConv::ID CC;
367 { RTLIB::FPTOSINT_F32_I64, "__stoi64", CallingConv::ARM_AAPCS_VFP },
368 { RTLIB::FPTOSINT_F64_I64, "__dtoi64", CallingConv::ARM_AAPCS_VFP },
369 { RTLIB::FPTOUINT_F32_I64, "__stou64", CallingConv::ARM_AAPCS_VFP },
370 { RTLIB::FPTOUINT_F64_I64, "__dtou64", CallingConv::ARM_AAPCS_VFP },
371 { RTLIB::SINTTOFP_I64_F32, "__i64tos", CallingConv::ARM_AAPCS_VFP },
372 { RTLIB::SINTTOFP_I64_F64, "__i64tod", CallingConv::ARM_AAPCS_VFP },
373 { RTLIB::UINTTOFP_I64_F32, "__u64tos", CallingConv::ARM_AAPCS_VFP },
374 { RTLIB::UINTTOFP_I64_F64, "__u64tod", CallingConv::ARM_AAPCS_VFP },
377 for (const auto &LC : LibraryCalls) {
378 setLibcallName(LC.Op, LC.Name);
379 setLibcallCallingConv(LC.Op, LC.CC);
383 // Use divmod compiler-rt calls for iOS 5.0 and later.
384 if (Subtarget->getTargetTriple().isiOS() &&
385 !Subtarget->getTargetTriple().isOSVersionLT(5, 0)) {
386 setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4");
387 setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4");
390 if (Subtarget->isThumb1Only())
391 addRegisterClass(MVT::i32, &ARM::tGPRRegClass);
393 addRegisterClass(MVT::i32, &ARM::GPRRegClass);
394 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
395 !Subtarget->isThumb1Only()) {
396 addRegisterClass(MVT::f32, &ARM::SPRRegClass);
397 if (!Subtarget->isFPOnlySP())
398 addRegisterClass(MVT::f64, &ARM::DPRRegClass);
400 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
403 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
404 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
405 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
406 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
407 setTruncStoreAction((MVT::SimpleValueType)VT,
408 (MVT::SimpleValueType)InnerVT, Expand);
409 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
410 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
411 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
413 setOperationAction(ISD::MULHS, (MVT::SimpleValueType)VT, Expand);
414 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
415 setOperationAction(ISD::MULHU, (MVT::SimpleValueType)VT, Expand);
416 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
418 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
421 setOperationAction(ISD::ConstantFP, MVT::f32, Custom);
422 setOperationAction(ISD::ConstantFP, MVT::f64, Custom);
424 if (Subtarget->hasNEON()) {
425 addDRTypeForNEON(MVT::v2f32);
426 addDRTypeForNEON(MVT::v8i8);
427 addDRTypeForNEON(MVT::v4i16);
428 addDRTypeForNEON(MVT::v2i32);
429 addDRTypeForNEON(MVT::v1i64);
431 addQRTypeForNEON(MVT::v4f32);
432 addQRTypeForNEON(MVT::v2f64);
433 addQRTypeForNEON(MVT::v16i8);
434 addQRTypeForNEON(MVT::v8i16);
435 addQRTypeForNEON(MVT::v4i32);
436 addQRTypeForNEON(MVT::v2i64);
438 // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
439 // neither Neon nor VFP support any arithmetic operations on it.
440 // The same with v4f32. But keep in mind that vadd, vsub, vmul are natively
441 // supported for v4f32.
442 setOperationAction(ISD::FADD, MVT::v2f64, Expand);
443 setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
444 setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
445 // FIXME: Code duplication: FDIV and FREM are expanded always, see
446 // ARMTargetLowering::addTypeForNEON method for details.
447 setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
448 setOperationAction(ISD::FREM, MVT::v2f64, Expand);
449 // FIXME: Create unittest.
450 // In another words, find a way when "copysign" appears in DAG with vector
452 setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
453 // FIXME: Code duplication: SETCC has custom operation action, see
454 // ARMTargetLowering::addTypeForNEON method for details.
455 setOperationAction(ISD::SETCC, MVT::v2f64, Expand);
456 // FIXME: Create unittest for FNEG and for FABS.
457 setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
458 setOperationAction(ISD::FABS, MVT::v2f64, Expand);
459 setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
460 setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
461 setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
462 setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
463 setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
464 setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
465 setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
466 setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
467 setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
468 setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
469 // FIXME: Create unittest for FCEIL, FTRUNC, FRINT, FNEARBYINT, FFLOOR.
470 setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
471 setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
472 setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
473 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
474 setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
475 setOperationAction(ISD::FMA, MVT::v2f64, Expand);
477 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
478 setOperationAction(ISD::FSIN, MVT::v4f32, Expand);
479 setOperationAction(ISD::FCOS, MVT::v4f32, Expand);
480 setOperationAction(ISD::FPOWI, MVT::v4f32, Expand);
481 setOperationAction(ISD::FPOW, MVT::v4f32, Expand);
482 setOperationAction(ISD::FLOG, MVT::v4f32, Expand);
483 setOperationAction(ISD::FLOG2, MVT::v4f32, Expand);
484 setOperationAction(ISD::FLOG10, MVT::v4f32, Expand);
485 setOperationAction(ISD::FEXP, MVT::v4f32, Expand);
486 setOperationAction(ISD::FEXP2, MVT::v4f32, Expand);
487 setOperationAction(ISD::FCEIL, MVT::v4f32, Expand);
488 setOperationAction(ISD::FTRUNC, MVT::v4f32, Expand);
489 setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
490 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
491 setOperationAction(ISD::FFLOOR, MVT::v4f32, Expand);
493 // Mark v2f32 intrinsics.
494 setOperationAction(ISD::FSQRT, MVT::v2f32, Expand);
495 setOperationAction(ISD::FSIN, MVT::v2f32, Expand);
496 setOperationAction(ISD::FCOS, MVT::v2f32, Expand);
497 setOperationAction(ISD::FPOWI, MVT::v2f32, Expand);
498 setOperationAction(ISD::FPOW, MVT::v2f32, Expand);
499 setOperationAction(ISD::FLOG, MVT::v2f32, Expand);
500 setOperationAction(ISD::FLOG2, MVT::v2f32, Expand);
501 setOperationAction(ISD::FLOG10, MVT::v2f32, Expand);
502 setOperationAction(ISD::FEXP, MVT::v2f32, Expand);
503 setOperationAction(ISD::FEXP2, MVT::v2f32, Expand);
504 setOperationAction(ISD::FCEIL, MVT::v2f32, Expand);
505 setOperationAction(ISD::FTRUNC, MVT::v2f32, Expand);
506 setOperationAction(ISD::FRINT, MVT::v2f32, Expand);
507 setOperationAction(ISD::FNEARBYINT, MVT::v2f32, Expand);
508 setOperationAction(ISD::FFLOOR, MVT::v2f32, Expand);
510 // Neon does not support some operations on v1i64 and v2i64 types.
511 setOperationAction(ISD::MUL, MVT::v1i64, Expand);
512 // Custom handling for some quad-vector types to detect VMULL.
513 setOperationAction(ISD::MUL, MVT::v8i16, Custom);
514 setOperationAction(ISD::MUL, MVT::v4i32, Custom);
515 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
516 // Custom handling for some vector types to avoid expensive expansions
517 setOperationAction(ISD::SDIV, MVT::v4i16, Custom);
518 setOperationAction(ISD::SDIV, MVT::v8i8, Custom);
519 setOperationAction(ISD::UDIV, MVT::v4i16, Custom);
520 setOperationAction(ISD::UDIV, MVT::v8i8, Custom);
521 setOperationAction(ISD::SETCC, MVT::v1i64, Expand);
522 setOperationAction(ISD::SETCC, MVT::v2i64, Expand);
523 // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with
524 // a destination type that is wider than the source, and nor does
525 // it have a FP_TO_[SU]INT instruction with a narrower destination than
527 setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom);
528 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
529 setOperationAction(ISD::FP_TO_UINT, MVT::v4i16, Custom);
530 setOperationAction(ISD::FP_TO_SINT, MVT::v4i16, Custom);
532 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Expand);
533 setOperationAction(ISD::FP_EXTEND, MVT::v2f64, Expand);
535 // NEON does not have single instruction CTPOP for vectors with element
536 // types wider than 8-bits. However, custom lowering can leverage the
537 // v8i8/v16i8 vcnt instruction.
538 setOperationAction(ISD::CTPOP, MVT::v2i32, Custom);
539 setOperationAction(ISD::CTPOP, MVT::v4i32, Custom);
540 setOperationAction(ISD::CTPOP, MVT::v4i16, Custom);
541 setOperationAction(ISD::CTPOP, MVT::v8i16, Custom);
543 // NEON only has FMA instructions as of VFP4.
544 if (!Subtarget->hasVFP4()) {
545 setOperationAction(ISD::FMA, MVT::v2f32, Expand);
546 setOperationAction(ISD::FMA, MVT::v4f32, Expand);
549 setTargetDAGCombine(ISD::INTRINSIC_VOID);
550 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
551 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
552 setTargetDAGCombine(ISD::SHL);
553 setTargetDAGCombine(ISD::SRL);
554 setTargetDAGCombine(ISD::SRA);
555 setTargetDAGCombine(ISD::SIGN_EXTEND);
556 setTargetDAGCombine(ISD::ZERO_EXTEND);
557 setTargetDAGCombine(ISD::ANY_EXTEND);
558 setTargetDAGCombine(ISD::SELECT_CC);
559 setTargetDAGCombine(ISD::BUILD_VECTOR);
560 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
561 setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
562 setTargetDAGCombine(ISD::STORE);
563 setTargetDAGCombine(ISD::FP_TO_SINT);
564 setTargetDAGCombine(ISD::FP_TO_UINT);
565 setTargetDAGCombine(ISD::FDIV);
567 // It is legal to extload from v4i8 to v4i16 or v4i32.
568 MVT Tys[6] = {MVT::v8i8, MVT::v4i8, MVT::v2i8,
569 MVT::v4i16, MVT::v2i16,
571 for (unsigned i = 0; i < 6; ++i) {
572 setLoadExtAction(ISD::EXTLOAD, Tys[i], Legal);
573 setLoadExtAction(ISD::ZEXTLOAD, Tys[i], Legal);
574 setLoadExtAction(ISD::SEXTLOAD, Tys[i], Legal);
578 // ARM and Thumb2 support UMLAL/SMLAL.
579 if (!Subtarget->isThumb1Only())
580 setTargetDAGCombine(ISD::ADDC);
583 computeRegisterProperties();
585 // ARM does not have f32 extending load.
586 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
588 // ARM does not have i1 sign extending load.
589 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
591 // ARM supports all 4 flavors of integer indexed load / store.
592 if (!Subtarget->isThumb1Only()) {
593 for (unsigned im = (unsigned)ISD::PRE_INC;
594 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
595 setIndexedLoadAction(im, MVT::i1, Legal);
596 setIndexedLoadAction(im, MVT::i8, Legal);
597 setIndexedLoadAction(im, MVT::i16, Legal);
598 setIndexedLoadAction(im, MVT::i32, Legal);
599 setIndexedStoreAction(im, MVT::i1, Legal);
600 setIndexedStoreAction(im, MVT::i8, Legal);
601 setIndexedStoreAction(im, MVT::i16, Legal);
602 setIndexedStoreAction(im, MVT::i32, Legal);
606 setOperationAction(ISD::SADDO, MVT::i32, Custom);
607 setOperationAction(ISD::UADDO, MVT::i32, Custom);
608 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
609 setOperationAction(ISD::USUBO, MVT::i32, Custom);
611 // i64 operation support.
612 setOperationAction(ISD::MUL, MVT::i64, Expand);
613 setOperationAction(ISD::MULHU, MVT::i32, Expand);
614 if (Subtarget->isThumb1Only()) {
615 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
616 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
618 if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops()
619 || (Subtarget->isThumb2() && !Subtarget->hasThumb2DSP()))
620 setOperationAction(ISD::MULHS, MVT::i32, Expand);
622 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
623 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
624 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
625 setOperationAction(ISD::SRL, MVT::i64, Custom);
626 setOperationAction(ISD::SRA, MVT::i64, Custom);
628 if (!Subtarget->isThumb1Only()) {
629 // FIXME: We should do this for Thumb1 as well.
630 setOperationAction(ISD::ADDC, MVT::i32, Custom);
631 setOperationAction(ISD::ADDE, MVT::i32, Custom);
632 setOperationAction(ISD::SUBC, MVT::i32, Custom);
633 setOperationAction(ISD::SUBE, MVT::i32, Custom);
636 // ARM does not have ROTL.
637 setOperationAction(ISD::ROTL, MVT::i32, Expand);
638 setOperationAction(ISD::CTTZ, MVT::i32, Custom);
639 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
640 if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
641 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
643 // These just redirect to CTTZ and CTLZ on ARM.
644 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i32 , Expand);
645 setOperationAction(ISD::CTLZ_ZERO_UNDEF , MVT::i32 , Expand);
647 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom);
649 // Only ARMv6 has BSWAP.
650 if (!Subtarget->hasV6Ops())
651 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
653 if (!(Subtarget->hasDivide() && Subtarget->isThumb2()) &&
654 !(Subtarget->hasDivideInARMMode() && !Subtarget->isThumb())) {
655 // These are expanded into libcalls if the cpu doesn't have HW divider.
656 setOperationAction(ISD::SDIV, MVT::i32, Expand);
657 setOperationAction(ISD::UDIV, MVT::i32, Expand);
660 // FIXME: Also set divmod for SREM on EABI
661 setOperationAction(ISD::SREM, MVT::i32, Expand);
662 setOperationAction(ISD::UREM, MVT::i32, Expand);
663 // Register based DivRem for AEABI (RTABI 4.2)
664 if (Subtarget->isTargetAEABI()) {
665 setLibcallName(RTLIB::SDIVREM_I8, "__aeabi_idivmod");
666 setLibcallName(RTLIB::SDIVREM_I16, "__aeabi_idivmod");
667 setLibcallName(RTLIB::SDIVREM_I32, "__aeabi_idivmod");
668 setLibcallName(RTLIB::SDIVREM_I64, "__aeabi_ldivmod");
669 setLibcallName(RTLIB::UDIVREM_I8, "__aeabi_uidivmod");
670 setLibcallName(RTLIB::UDIVREM_I16, "__aeabi_uidivmod");
671 setLibcallName(RTLIB::UDIVREM_I32, "__aeabi_uidivmod");
672 setLibcallName(RTLIB::UDIVREM_I64, "__aeabi_uldivmod");
674 setLibcallCallingConv(RTLIB::SDIVREM_I8, CallingConv::ARM_AAPCS);
675 setLibcallCallingConv(RTLIB::SDIVREM_I16, CallingConv::ARM_AAPCS);
676 setLibcallCallingConv(RTLIB::SDIVREM_I32, CallingConv::ARM_AAPCS);
677 setLibcallCallingConv(RTLIB::SDIVREM_I64, CallingConv::ARM_AAPCS);
678 setLibcallCallingConv(RTLIB::UDIVREM_I8, CallingConv::ARM_AAPCS);
679 setLibcallCallingConv(RTLIB::UDIVREM_I16, CallingConv::ARM_AAPCS);
680 setLibcallCallingConv(RTLIB::UDIVREM_I32, CallingConv::ARM_AAPCS);
681 setLibcallCallingConv(RTLIB::UDIVREM_I64, CallingConv::ARM_AAPCS);
683 setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
684 setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
686 setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
687 setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
690 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
691 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
692 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
693 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
694 setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
696 setOperationAction(ISD::TRAP, MVT::Other, Legal);
698 // Use the default implementation.
699 setOperationAction(ISD::VASTART, MVT::Other, Custom);
700 setOperationAction(ISD::VAARG, MVT::Other, Expand);
701 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
702 setOperationAction(ISD::VAEND, MVT::Other, Expand);
703 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
704 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
706 if (!Subtarget->isTargetMachO()) {
707 // Non-MachO platforms may return values in these registers via the
708 // personality function.
709 setExceptionPointerRegister(ARM::R0);
710 setExceptionSelectorRegister(ARM::R1);
713 if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
714 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
716 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
718 // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use
719 // the default expansion.
720 if (Subtarget->hasAnyDataBarrier() && !Subtarget->isThumb1Only()) {
721 // ATOMIC_FENCE needs custom lowering; the others should have been expanded
722 // to ldrex/strex loops already.
723 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom);
725 // On v8, we have particularly efficient implementations of atomic fences
726 // if they can be combined with nearby atomic loads and stores.
727 if (!Subtarget->hasV8Ops()) {
728 // Automatically insert fences (dmb ist) around ATOMIC_SWAP etc.
729 setInsertFencesForAtomic(true);
732 // If there's anything we can use as a barrier, go through custom lowering
734 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other,
735 Subtarget->hasAnyDataBarrier() ? Custom : Expand);
737 // Set them all for expansion, which will force libcalls.
738 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Expand);
739 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Expand);
740 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i32, Expand);
741 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Expand);
742 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i32, Expand);
743 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i32, Expand);
744 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i32, Expand);
745 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand);
746 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand);
747 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand);
748 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand);
749 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand);
750 // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the
751 // Unordered/Monotonic case.
752 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom);
753 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom);
756 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
758 // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes.
759 if (!Subtarget->hasV6Ops()) {
760 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
761 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
763 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
765 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
766 !Subtarget->isThumb1Only()) {
767 // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR
768 // iff target supports vfp2.
769 setOperationAction(ISD::BITCAST, MVT::i64, Custom);
770 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
773 // We want to custom lower some of our intrinsics.
774 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
775 if (Subtarget->isTargetDarwin()) {
776 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
777 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
778 setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume");
781 setOperationAction(ISD::SETCC, MVT::i32, Expand);
782 setOperationAction(ISD::SETCC, MVT::f32, Expand);
783 setOperationAction(ISD::SETCC, MVT::f64, Expand);
784 setOperationAction(ISD::SELECT, MVT::i32, Custom);
785 setOperationAction(ISD::SELECT, MVT::f32, Custom);
786 setOperationAction(ISD::SELECT, MVT::f64, Custom);
787 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
788 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
789 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
791 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
792 setOperationAction(ISD::BR_CC, MVT::i32, Custom);
793 setOperationAction(ISD::BR_CC, MVT::f32, Custom);
794 setOperationAction(ISD::BR_CC, MVT::f64, Custom);
795 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
797 // We don't support sin/cos/fmod/copysign/pow
798 setOperationAction(ISD::FSIN, MVT::f64, Expand);
799 setOperationAction(ISD::FSIN, MVT::f32, Expand);
800 setOperationAction(ISD::FCOS, MVT::f32, Expand);
801 setOperationAction(ISD::FCOS, MVT::f64, Expand);
802 setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
803 setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
804 setOperationAction(ISD::FREM, MVT::f64, Expand);
805 setOperationAction(ISD::FREM, MVT::f32, Expand);
806 if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
807 !Subtarget->isThumb1Only()) {
808 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
809 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
811 setOperationAction(ISD::FPOW, MVT::f64, Expand);
812 setOperationAction(ISD::FPOW, MVT::f32, Expand);
814 if (!Subtarget->hasVFP4()) {
815 setOperationAction(ISD::FMA, MVT::f64, Expand);
816 setOperationAction(ISD::FMA, MVT::f32, Expand);
819 // Various VFP goodness
820 if (!TM.Options.UseSoftFloat && !Subtarget->isThumb1Only()) {
821 // int <-> fp are custom expanded into bit_convert + ARMISD ops.
822 if (Subtarget->hasVFP2()) {
823 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
824 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
825 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
826 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
828 // Special handling for half-precision FP.
829 if (!Subtarget->hasFP16()) {
830 setOperationAction(ISD::FP16_TO_FP32, MVT::f32, Expand);
831 setOperationAction(ISD::FP32_TO_FP16, MVT::i32, Expand);
835 // Combine sin / cos into one node or libcall if possible.
836 if (Subtarget->hasSinCos()) {
837 setLibcallName(RTLIB::SINCOS_F32, "sincosf");
838 setLibcallName(RTLIB::SINCOS_F64, "sincos");
839 if (Subtarget->getTargetTriple().getOS() == Triple::IOS) {
840 // For iOS, we don't want to the normal expansion of a libcall to
841 // sincos. We want to issue a libcall to __sincos_stret.
842 setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
843 setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
847 // We have target-specific dag combine patterns for the following nodes:
848 // ARMISD::VMOVRRD - No need to call setTargetDAGCombine
849 setTargetDAGCombine(ISD::ADD);
850 setTargetDAGCombine(ISD::SUB);
851 setTargetDAGCombine(ISD::MUL);
852 setTargetDAGCombine(ISD::AND);
853 setTargetDAGCombine(ISD::OR);
854 setTargetDAGCombine(ISD::XOR);
856 if (Subtarget->hasV6Ops())
857 setTargetDAGCombine(ISD::SRL);
859 setStackPointerRegisterToSaveRestore(ARM::SP);
861 if (TM.Options.UseSoftFloat || Subtarget->isThumb1Only() ||
862 !Subtarget->hasVFP2())
863 setSchedulingPreference(Sched::RegPressure);
865 setSchedulingPreference(Sched::Hybrid);
867 //// temporary - rewrite interface to use type
868 MaxStoresPerMemset = 8;
869 MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
870 MaxStoresPerMemcpy = 4; // For @llvm.memcpy -> sequence of stores
871 MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 4 : 2;
872 MaxStoresPerMemmove = 4; // For @llvm.memmove -> sequence of stores
873 MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 4 : 2;
875 // On ARM arguments smaller than 4 bytes are extended, so all arguments
876 // are at least 4 bytes aligned.
877 setMinStackArgumentAlignment(4);
879 // Prefer likely predicted branches to selects on out-of-order cores.
880 PredictableSelectIsExpensive = Subtarget->isLikeA9();
882 setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2);
885 // FIXME: It might make sense to define the representative register class as the
886 // nearest super-register that has a non-null superset. For example, DPR_VFP2 is
887 // a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently,
888 // SPR's representative would be DPR_VFP2. This should work well if register
889 // pressure tracking were modified such that a register use would increment the
890 // pressure of the register class's representative and all of it's super
891 // classes' representatives transitively. We have not implemented this because
892 // of the difficulty prior to coalescing of modeling operand register classes
893 // due to the common occurrence of cross class copies and subregister insertions
895 std::pair<const TargetRegisterClass*, uint8_t>
896 ARMTargetLowering::findRepresentativeClass(MVT VT) const{
897 const TargetRegisterClass *RRC = nullptr;
899 switch (VT.SimpleTy) {
901 return TargetLowering::findRepresentativeClass(VT);
902 // Use DPR as representative register class for all floating point
903 // and vector types. Since there are 32 SPR registers and 32 DPR registers so
904 // the cost is 1 for both f32 and f64.
905 case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16:
906 case MVT::v2i32: case MVT::v1i64: case MVT::v2f32:
907 RRC = &ARM::DPRRegClass;
908 // When NEON is used for SP, only half of the register file is available
909 // because operations that define both SP and DP results will be constrained
910 // to the VFP2 class (D0-D15). We currently model this constraint prior to
911 // coalescing by double-counting the SP regs. See the FIXME above.
912 if (Subtarget->useNEONForSinglePrecisionFP())
915 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
916 case MVT::v4f32: case MVT::v2f64:
917 RRC = &ARM::DPRRegClass;
921 RRC = &ARM::DPRRegClass;
925 RRC = &ARM::DPRRegClass;
929 return std::make_pair(RRC, Cost);
932 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
934 default: return nullptr;
935 case ARMISD::Wrapper: return "ARMISD::Wrapper";
936 case ARMISD::WrapperPIC: return "ARMISD::WrapperPIC";
937 case ARMISD::WrapperJT: return "ARMISD::WrapperJT";
938 case ARMISD::CALL: return "ARMISD::CALL";
939 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED";
940 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK";
941 case ARMISD::tCALL: return "ARMISD::tCALL";
942 case ARMISD::BRCOND: return "ARMISD::BRCOND";
943 case ARMISD::BR_JT: return "ARMISD::BR_JT";
944 case ARMISD::BR2_JT: return "ARMISD::BR2_JT";
945 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG";
946 case ARMISD::INTRET_FLAG: return "ARMISD::INTRET_FLAG";
947 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD";
948 case ARMISD::CMP: return "ARMISD::CMP";
949 case ARMISD::CMN: return "ARMISD::CMN";
950 case ARMISD::CMPZ: return "ARMISD::CMPZ";
951 case ARMISD::CMPFP: return "ARMISD::CMPFP";
952 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0";
953 case ARMISD::BCC_i64: return "ARMISD::BCC_i64";
954 case ARMISD::FMSTAT: return "ARMISD::FMSTAT";
956 case ARMISD::CMOV: return "ARMISD::CMOV";
958 case ARMISD::RBIT: return "ARMISD::RBIT";
960 case ARMISD::FTOSI: return "ARMISD::FTOSI";
961 case ARMISD::FTOUI: return "ARMISD::FTOUI";
962 case ARMISD::SITOF: return "ARMISD::SITOF";
963 case ARMISD::UITOF: return "ARMISD::UITOF";
965 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG";
966 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG";
967 case ARMISD::RRX: return "ARMISD::RRX";
969 case ARMISD::ADDC: return "ARMISD::ADDC";
970 case ARMISD::ADDE: return "ARMISD::ADDE";
971 case ARMISD::SUBC: return "ARMISD::SUBC";
972 case ARMISD::SUBE: return "ARMISD::SUBE";
974 case ARMISD::VMOVRRD: return "ARMISD::VMOVRRD";
975 case ARMISD::VMOVDRR: return "ARMISD::VMOVDRR";
977 case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
978 case ARMISD::EH_SJLJ_LONGJMP:return "ARMISD::EH_SJLJ_LONGJMP";
980 case ARMISD::TC_RETURN: return "ARMISD::TC_RETURN";
982 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
984 case ARMISD::DYN_ALLOC: return "ARMISD::DYN_ALLOC";
986 case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR";
988 case ARMISD::PRELOAD: return "ARMISD::PRELOAD";
990 case ARMISD::WIN__CHKSTK: return "ARMISD:::WIN__CHKSTK";
992 case ARMISD::VCEQ: return "ARMISD::VCEQ";
993 case ARMISD::VCEQZ: return "ARMISD::VCEQZ";
994 case ARMISD::VCGE: return "ARMISD::VCGE";
995 case ARMISD::VCGEZ: return "ARMISD::VCGEZ";
996 case ARMISD::VCLEZ: return "ARMISD::VCLEZ";
997 case ARMISD::VCGEU: return "ARMISD::VCGEU";
998 case ARMISD::VCGT: return "ARMISD::VCGT";
999 case ARMISD::VCGTZ: return "ARMISD::VCGTZ";
1000 case ARMISD::VCLTZ: return "ARMISD::VCLTZ";
1001 case ARMISD::VCGTU: return "ARMISD::VCGTU";
1002 case ARMISD::VTST: return "ARMISD::VTST";
1004 case ARMISD::VSHL: return "ARMISD::VSHL";
1005 case ARMISD::VSHRs: return "ARMISD::VSHRs";
1006 case ARMISD::VSHRu: return "ARMISD::VSHRu";
1007 case ARMISD::VRSHRs: return "ARMISD::VRSHRs";
1008 case ARMISD::VRSHRu: return "ARMISD::VRSHRu";
1009 case ARMISD::VRSHRN: return "ARMISD::VRSHRN";
1010 case ARMISD::VQSHLs: return "ARMISD::VQSHLs";
1011 case ARMISD::VQSHLu: return "ARMISD::VQSHLu";
1012 case ARMISD::VQSHLsu: return "ARMISD::VQSHLsu";
1013 case ARMISD::VQSHRNs: return "ARMISD::VQSHRNs";
1014 case ARMISD::VQSHRNu: return "ARMISD::VQSHRNu";
1015 case ARMISD::VQSHRNsu: return "ARMISD::VQSHRNsu";
1016 case ARMISD::VQRSHRNs: return "ARMISD::VQRSHRNs";
1017 case ARMISD::VQRSHRNu: return "ARMISD::VQRSHRNu";
1018 case ARMISD::VQRSHRNsu: return "ARMISD::VQRSHRNsu";
1019 case ARMISD::VGETLANEu: return "ARMISD::VGETLANEu";
1020 case ARMISD::VGETLANEs: return "ARMISD::VGETLANEs";
1021 case ARMISD::VMOVIMM: return "ARMISD::VMOVIMM";
1022 case ARMISD::VMVNIMM: return "ARMISD::VMVNIMM";
1023 case ARMISD::VMOVFPIMM: return "ARMISD::VMOVFPIMM";
1024 case ARMISD::VDUP: return "ARMISD::VDUP";
1025 case ARMISD::VDUPLANE: return "ARMISD::VDUPLANE";
1026 case ARMISD::VEXT: return "ARMISD::VEXT";
1027 case ARMISD::VREV64: return "ARMISD::VREV64";
1028 case ARMISD::VREV32: return "ARMISD::VREV32";
1029 case ARMISD::VREV16: return "ARMISD::VREV16";
1030 case ARMISD::VZIP: return "ARMISD::VZIP";
1031 case ARMISD::VUZP: return "ARMISD::VUZP";
1032 case ARMISD::VTRN: return "ARMISD::VTRN";
1033 case ARMISD::VTBL1: return "ARMISD::VTBL1";
1034 case ARMISD::VTBL2: return "ARMISD::VTBL2";
1035 case ARMISD::VMULLs: return "ARMISD::VMULLs";
1036 case ARMISD::VMULLu: return "ARMISD::VMULLu";
1037 case ARMISD::UMLAL: return "ARMISD::UMLAL";
1038 case ARMISD::SMLAL: return "ARMISD::SMLAL";
1039 case ARMISD::BUILD_VECTOR: return "ARMISD::BUILD_VECTOR";
1040 case ARMISD::FMAX: return "ARMISD::FMAX";
1041 case ARMISD::FMIN: return "ARMISD::FMIN";
1042 case ARMISD::VMAXNM: return "ARMISD::VMAX";
1043 case ARMISD::VMINNM: return "ARMISD::VMIN";
1044 case ARMISD::BFI: return "ARMISD::BFI";
1045 case ARMISD::VORRIMM: return "ARMISD::VORRIMM";
1046 case ARMISD::VBICIMM: return "ARMISD::VBICIMM";
1047 case ARMISD::VBSL: return "ARMISD::VBSL";
1048 case ARMISD::VLD2DUP: return "ARMISD::VLD2DUP";
1049 case ARMISD::VLD3DUP: return "ARMISD::VLD3DUP";
1050 case ARMISD::VLD4DUP: return "ARMISD::VLD4DUP";
1051 case ARMISD::VLD1_UPD: return "ARMISD::VLD1_UPD";
1052 case ARMISD::VLD2_UPD: return "ARMISD::VLD2_UPD";
1053 case ARMISD::VLD3_UPD: return "ARMISD::VLD3_UPD";
1054 case ARMISD::VLD4_UPD: return "ARMISD::VLD4_UPD";
1055 case ARMISD::VLD2LN_UPD: return "ARMISD::VLD2LN_UPD";
1056 case ARMISD::VLD3LN_UPD: return "ARMISD::VLD3LN_UPD";
1057 case ARMISD::VLD4LN_UPD: return "ARMISD::VLD4LN_UPD";
1058 case ARMISD::VLD2DUP_UPD: return "ARMISD::VLD2DUP_UPD";
1059 case ARMISD::VLD3DUP_UPD: return "ARMISD::VLD3DUP_UPD";
1060 case ARMISD::VLD4DUP_UPD: return "ARMISD::VLD4DUP_UPD";
1061 case ARMISD::VST1_UPD: return "ARMISD::VST1_UPD";
1062 case ARMISD::VST2_UPD: return "ARMISD::VST2_UPD";
1063 case ARMISD::VST3_UPD: return "ARMISD::VST3_UPD";
1064 case ARMISD::VST4_UPD: return "ARMISD::VST4_UPD";
1065 case ARMISD::VST2LN_UPD: return "ARMISD::VST2LN_UPD";
1066 case ARMISD::VST3LN_UPD: return "ARMISD::VST3LN_UPD";
1067 case ARMISD::VST4LN_UPD: return "ARMISD::VST4LN_UPD";
1071 EVT ARMTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1072 if (!VT.isVector()) return getPointerTy();
1073 return VT.changeVectorElementTypeToInteger();
1076 /// getRegClassFor - Return the register class that should be used for the
1077 /// specified value type.
1078 const TargetRegisterClass *ARMTargetLowering::getRegClassFor(MVT VT) const {
1079 // Map v4i64 to QQ registers but do not make the type legal. Similarly map
1080 // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to
1081 // load / store 4 to 8 consecutive D registers.
1082 if (Subtarget->hasNEON()) {
1083 if (VT == MVT::v4i64)
1084 return &ARM::QQPRRegClass;
1085 if (VT == MVT::v8i64)
1086 return &ARM::QQQQPRRegClass;
1088 return TargetLowering::getRegClassFor(VT);
1091 // Create a fast isel object.
1093 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
1094 const TargetLibraryInfo *libInfo) const {
1095 return ARM::createFastISel(funcInfo, libInfo);
1098 /// getMaximalGlobalOffset - Returns the maximal possible offset which can
1099 /// be used for loads / stores from the global.
1100 unsigned ARMTargetLowering::getMaximalGlobalOffset() const {
1101 return (Subtarget->isThumb1Only() ? 127 : 4095);
1104 Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
1105 unsigned NumVals = N->getNumValues();
1107 return Sched::RegPressure;
1109 for (unsigned i = 0; i != NumVals; ++i) {
1110 EVT VT = N->getValueType(i);
1111 if (VT == MVT::Glue || VT == MVT::Other)
1113 if (VT.isFloatingPoint() || VT.isVector())
1117 if (!N->isMachineOpcode())
1118 return Sched::RegPressure;
1120 // Load are scheduled for latency even if there instruction itinerary
1121 // is not available.
1122 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
1123 const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
1125 if (MCID.getNumDefs() == 0)
1126 return Sched::RegPressure;
1127 if (!Itins->isEmpty() &&
1128 Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2)
1131 return Sched::RegPressure;
1134 //===----------------------------------------------------------------------===//
1136 //===----------------------------------------------------------------------===//
1138 /// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
1139 static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
1141 default: llvm_unreachable("Unknown condition code!");
1142 case ISD::SETNE: return ARMCC::NE;
1143 case ISD::SETEQ: return ARMCC::EQ;
1144 case ISD::SETGT: return ARMCC::GT;
1145 case ISD::SETGE: return ARMCC::GE;
1146 case ISD::SETLT: return ARMCC::LT;
1147 case ISD::SETLE: return ARMCC::LE;
1148 case ISD::SETUGT: return ARMCC::HI;
1149 case ISD::SETUGE: return ARMCC::HS;
1150 case ISD::SETULT: return ARMCC::LO;
1151 case ISD::SETULE: return ARMCC::LS;
1155 /// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
1156 static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
1157 ARMCC::CondCodes &CondCode2) {
1158 CondCode2 = ARMCC::AL;
1160 default: llvm_unreachable("Unknown FP condition!");
1162 case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
1164 case ISD::SETOGT: CondCode = ARMCC::GT; break;
1166 case ISD::SETOGE: CondCode = ARMCC::GE; break;
1167 case ISD::SETOLT: CondCode = ARMCC::MI; break;
1168 case ISD::SETOLE: CondCode = ARMCC::LS; break;
1169 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
1170 case ISD::SETO: CondCode = ARMCC::VC; break;
1171 case ISD::SETUO: CondCode = ARMCC::VS; break;
1172 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
1173 case ISD::SETUGT: CondCode = ARMCC::HI; break;
1174 case ISD::SETUGE: CondCode = ARMCC::PL; break;
1176 case ISD::SETULT: CondCode = ARMCC::LT; break;
1178 case ISD::SETULE: CondCode = ARMCC::LE; break;
1180 case ISD::SETUNE: CondCode = ARMCC::NE; break;
1184 //===----------------------------------------------------------------------===//
1185 // Calling Convention Implementation
1186 //===----------------------------------------------------------------------===//
1188 #include "ARMGenCallingConv.inc"
1190 /// getEffectiveCallingConv - Get the effective calling convention, taking into
1191 /// account presence of floating point hardware and calling convention
1192 /// limitations, such as support for variadic functions.
1194 ARMTargetLowering::getEffectiveCallingConv(CallingConv::ID CC,
1195 bool isVarArg) const {
1198 llvm_unreachable("Unsupported calling convention");
1199 case CallingConv::ARM_AAPCS:
1200 case CallingConv::ARM_APCS:
1201 case CallingConv::GHC:
1203 case CallingConv::ARM_AAPCS_VFP:
1204 return isVarArg ? CallingConv::ARM_AAPCS : CallingConv::ARM_AAPCS_VFP;
1205 case CallingConv::C:
1206 if (!Subtarget->isAAPCS_ABI())
1207 return CallingConv::ARM_APCS;
1208 else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() &&
1209 getTargetMachine().Options.FloatABIType == FloatABI::Hard &&
1211 return CallingConv::ARM_AAPCS_VFP;
1213 return CallingConv::ARM_AAPCS;
1214 case CallingConv::Fast:
1215 if (!Subtarget->isAAPCS_ABI()) {
1216 if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
1217 return CallingConv::Fast;
1218 return CallingConv::ARM_APCS;
1219 } else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
1220 return CallingConv::ARM_AAPCS_VFP;
1222 return CallingConv::ARM_AAPCS;
1226 /// CCAssignFnForNode - Selects the correct CCAssignFn for the given
1227 /// CallingConvention.
1228 CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
1230 bool isVarArg) const {
1231 switch (getEffectiveCallingConv(CC, isVarArg)) {
1233 llvm_unreachable("Unsupported calling convention");
1234 case CallingConv::ARM_APCS:
1235 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
1236 case CallingConv::ARM_AAPCS:
1237 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
1238 case CallingConv::ARM_AAPCS_VFP:
1239 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1240 case CallingConv::Fast:
1241 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
1242 case CallingConv::GHC:
1243 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS_GHC);
1247 /// LowerCallResult - Lower the result values of a call into the
1248 /// appropriate copies out of appropriate physical registers.
1250 ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1251 CallingConv::ID CallConv, bool isVarArg,
1252 const SmallVectorImpl<ISD::InputArg> &Ins,
1253 SDLoc dl, SelectionDAG &DAG,
1254 SmallVectorImpl<SDValue> &InVals,
1255 bool isThisReturn, SDValue ThisVal) const {
1257 // Assign locations to each value returned by this call.
1258 SmallVector<CCValAssign, 16> RVLocs;
1259 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1260 getTargetMachine(), RVLocs, *DAG.getContext(), Call);
1261 CCInfo.AnalyzeCallResult(Ins,
1262 CCAssignFnForNode(CallConv, /* Return*/ true,
1265 // Copy all of the result registers out of their specified physreg.
1266 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1267 CCValAssign VA = RVLocs[i];
1269 // Pass 'this' value directly from the argument to return value, to avoid
1270 // reg unit interference
1271 if (i == 0 && isThisReturn) {
1272 assert(!VA.needsCustom() && VA.getLocVT() == MVT::i32 &&
1273 "unexpected return calling convention register assignment");
1274 InVals.push_back(ThisVal);
1279 if (VA.needsCustom()) {
1280 // Handle f64 or half of a v2f64.
1281 SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
1283 Chain = Lo.getValue(1);
1284 InFlag = Lo.getValue(2);
1285 VA = RVLocs[++i]; // skip ahead to next loc
1286 SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
1288 Chain = Hi.getValue(1);
1289 InFlag = Hi.getValue(2);
1290 if (!Subtarget->isLittle())
1292 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
1294 if (VA.getLocVT() == MVT::v2f64) {
1295 SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1296 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1297 DAG.getConstant(0, MVT::i32));
1299 VA = RVLocs[++i]; // skip ahead to next loc
1300 Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
1301 Chain = Lo.getValue(1);
1302 InFlag = Lo.getValue(2);
1303 VA = RVLocs[++i]; // skip ahead to next loc
1304 Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
1305 Chain = Hi.getValue(1);
1306 InFlag = Hi.getValue(2);
1307 if (!Subtarget->isLittle())
1309 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
1310 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1311 DAG.getConstant(1, MVT::i32));
1314 Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1316 Chain = Val.getValue(1);
1317 InFlag = Val.getValue(2);
1320 switch (VA.getLocInfo()) {
1321 default: llvm_unreachable("Unknown loc info!");
1322 case CCValAssign::Full: break;
1323 case CCValAssign::BCvt:
1324 Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val);
1328 InVals.push_back(Val);
1334 /// LowerMemOpCallTo - Store the argument to the stack.
1336 ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
1337 SDValue StackPtr, SDValue Arg,
1338 SDLoc dl, SelectionDAG &DAG,
1339 const CCValAssign &VA,
1340 ISD::ArgFlagsTy Flags) const {
1341 unsigned LocMemOffset = VA.getLocMemOffset();
1342 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
1343 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
1344 return DAG.getStore(Chain, dl, Arg, PtrOff,
1345 MachinePointerInfo::getStack(LocMemOffset),
1349 void ARMTargetLowering::PassF64ArgInRegs(SDLoc dl, SelectionDAG &DAG,
1350 SDValue Chain, SDValue &Arg,
1351 RegsToPassVector &RegsToPass,
1352 CCValAssign &VA, CCValAssign &NextVA,
1354 SmallVectorImpl<SDValue> &MemOpChains,
1355 ISD::ArgFlagsTy Flags) const {
1357 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
1358 DAG.getVTList(MVT::i32, MVT::i32), Arg);
1359 unsigned id = Subtarget->isLittle() ? 0 : 1;
1360 RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd.getValue(id)));
1362 if (NextVA.isRegLoc())
1363 RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1-id)));
1365 assert(NextVA.isMemLoc());
1366 if (!StackPtr.getNode())
1367 StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1369 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1-id),
1375 /// LowerCall - Lowering a call into a callseq_start <-
1376 /// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
1379 ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
1380 SmallVectorImpl<SDValue> &InVals) const {
1381 SelectionDAG &DAG = CLI.DAG;
1383 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
1384 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
1385 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
1386 SDValue Chain = CLI.Chain;
1387 SDValue Callee = CLI.Callee;
1388 bool &isTailCall = CLI.IsTailCall;
1389 CallingConv::ID CallConv = CLI.CallConv;
1390 bool doesNotRet = CLI.DoesNotReturn;
1391 bool isVarArg = CLI.IsVarArg;
1393 MachineFunction &MF = DAG.getMachineFunction();
1394 bool isStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
1395 bool isThisReturn = false;
1396 bool isSibCall = false;
1398 // Disable tail calls if they're not supported.
1399 if (!Subtarget->supportsTailCall() || MF.getTarget().Options.DisableTailCalls)
1403 // Check if it's really possible to do a tail call.
1404 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1405 isVarArg, isStructRet, MF.getFunction()->hasStructRetAttr(),
1406 Outs, OutVals, Ins, DAG);
1407 if (!isTailCall && CLI.CS && CLI.CS->isMustTailCall())
1408 report_fatal_error("failed to perform tail call elimination on a call "
1409 "site marked musttail");
1410 // We don't support GuaranteedTailCallOpt for ARM, only automatically
1411 // detected sibcalls.
1418 // Analyze operands of the call, assigning locations to each operand.
1419 SmallVector<CCValAssign, 16> ArgLocs;
1420 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1421 getTargetMachine(), ArgLocs, *DAG.getContext(), Call);
1422 CCInfo.AnalyzeCallOperands(Outs,
1423 CCAssignFnForNode(CallConv, /* Return*/ false,
1426 // Get a count of how many bytes are to be pushed on the stack.
1427 unsigned NumBytes = CCInfo.getNextStackOffset();
1429 // For tail calls, memory operands are available in our caller's stack.
1433 // Adjust the stack pointer for the new arguments...
1434 // These operations are automatically eliminated by the prolog/epilog pass
1436 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
1439 SDValue StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1441 RegsToPassVector RegsToPass;
1442 SmallVector<SDValue, 8> MemOpChains;
1444 // Walk the register/memloc assignments, inserting copies/loads. In the case
1445 // of tail call optimization, arguments are handled later.
1446 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1448 ++i, ++realArgIdx) {
1449 CCValAssign &VA = ArgLocs[i];
1450 SDValue Arg = OutVals[realArgIdx];
1451 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
1452 bool isByVal = Flags.isByVal();
1454 // Promote the value if needed.
1455 switch (VA.getLocInfo()) {
1456 default: llvm_unreachable("Unknown loc info!");
1457 case CCValAssign::Full: break;
1458 case CCValAssign::SExt:
1459 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1461 case CCValAssign::ZExt:
1462 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1464 case CCValAssign::AExt:
1465 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1467 case CCValAssign::BCvt:
1468 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
1472 // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
1473 if (VA.needsCustom()) {
1474 if (VA.getLocVT() == MVT::v2f64) {
1475 SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1476 DAG.getConstant(0, MVT::i32));
1477 SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1478 DAG.getConstant(1, MVT::i32));
1480 PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
1481 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1483 VA = ArgLocs[++i]; // skip ahead to next loc
1484 if (VA.isRegLoc()) {
1485 PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
1486 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1488 assert(VA.isMemLoc());
1490 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
1491 dl, DAG, VA, Flags));
1494 PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
1495 StackPtr, MemOpChains, Flags);
1497 } else if (VA.isRegLoc()) {
1498 if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i32) {
1499 assert(VA.getLocVT() == MVT::i32 &&
1500 "unexpected calling convention register assignment");
1501 assert(!Ins.empty() && Ins[0].VT == MVT::i32 &&
1502 "unexpected use of 'returned'");
1503 isThisReturn = true;
1505 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1506 } else if (isByVal) {
1507 assert(VA.isMemLoc());
1508 unsigned offset = 0;
1510 // True if this byval aggregate will be split between registers
1512 unsigned ByValArgsCount = CCInfo.getInRegsParamsCount();
1513 unsigned CurByValIdx = CCInfo.getInRegsParamsProceed();
1515 if (CurByValIdx < ByValArgsCount) {
1517 unsigned RegBegin, RegEnd;
1518 CCInfo.getInRegsParamInfo(CurByValIdx, RegBegin, RegEnd);
1520 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1522 for (i = 0, j = RegBegin; j < RegEnd; i++, j++) {
1523 SDValue Const = DAG.getConstant(4*i, MVT::i32);
1524 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
1525 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
1526 MachinePointerInfo(),
1527 false, false, false,
1528 DAG.InferPtrAlignment(AddArg));
1529 MemOpChains.push_back(Load.getValue(1));
1530 RegsToPass.push_back(std::make_pair(j, Load));
1533 // If parameter size outsides register area, "offset" value
1534 // helps us to calculate stack slot for remained part properly.
1535 offset = RegEnd - RegBegin;
1537 CCInfo.nextInRegsParam();
1540 if (Flags.getByValSize() > 4*offset) {
1541 unsigned LocMemOffset = VA.getLocMemOffset();
1542 SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset);
1543 SDValue Dst = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr,
1545 SDValue SrcOffset = DAG.getIntPtrConstant(4*offset);
1546 SDValue Src = DAG.getNode(ISD::ADD, dl, getPointerTy(), Arg, SrcOffset);
1547 SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset,
1549 SDValue AlignNode = DAG.getConstant(Flags.getByValAlign(), MVT::i32);
1551 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
1552 SDValue Ops[] = { Chain, Dst, Src, SizeNode, AlignNode};
1553 MemOpChains.push_back(DAG.getNode(ARMISD::COPY_STRUCT_BYVAL, dl, VTs,
1556 } else if (!isSibCall) {
1557 assert(VA.isMemLoc());
1559 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1560 dl, DAG, VA, Flags));
1564 if (!MemOpChains.empty())
1565 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
1567 // Build a sequence of copy-to-reg nodes chained together with token chain
1568 // and flag operands which copy the outgoing args into the appropriate regs.
1570 // Tail call byval lowering might overwrite argument registers so in case of
1571 // tail call optimization the copies to registers are lowered later.
1573 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1574 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1575 RegsToPass[i].second, InFlag);
1576 InFlag = Chain.getValue(1);
1579 // For tail calls lower the arguments to the 'real' stack slot.
1581 // Force all the incoming stack arguments to be loaded from the stack
1582 // before any new outgoing arguments are stored to the stack, because the
1583 // outgoing stack slots may alias the incoming argument stack slots, and
1584 // the alias isn't otherwise explicit. This is slightly more conservative
1585 // than necessary, because it means that each store effectively depends
1586 // on every argument instead of just those arguments it would clobber.
1588 // Do not flag preceding copytoreg stuff together with the following stuff.
1590 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1591 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1592 RegsToPass[i].second, InFlag);
1593 InFlag = Chain.getValue(1);
1598 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1599 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1600 // node so that legalize doesn't hack it.
1601 bool isDirect = false;
1602 bool isARMFunc = false;
1603 bool isLocalARMFunc = false;
1604 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1606 if (EnableARMLongCalls) {
1607 assert((Subtarget->isTargetWindows() ||
1608 getTargetMachine().getRelocationModel() == Reloc::Static) &&
1609 "long-calls with non-static relocation model!");
1610 // Handle a global address or an external symbol. If it's not one of
1611 // those, the target's already in a register, so we don't need to do
1613 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1614 const GlobalValue *GV = G->getGlobal();
1615 // Create a constant pool entry for the callee address
1616 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1617 ARMConstantPoolValue *CPV =
1618 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0);
1620 // Get the address of the callee into a register
1621 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1622 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1623 Callee = DAG.getLoad(getPointerTy(), dl,
1624 DAG.getEntryNode(), CPAddr,
1625 MachinePointerInfo::getConstantPool(),
1626 false, false, false, 0);
1627 } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) {
1628 const char *Sym = S->getSymbol();
1630 // Create a constant pool entry for the callee address
1631 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1632 ARMConstantPoolValue *CPV =
1633 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1634 ARMPCLabelIndex, 0);
1635 // Get the address of the callee into a register
1636 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1637 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1638 Callee = DAG.getLoad(getPointerTy(), dl,
1639 DAG.getEntryNode(), CPAddr,
1640 MachinePointerInfo::getConstantPool(),
1641 false, false, false, 0);
1643 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1644 const GlobalValue *GV = G->getGlobal();
1646 bool isExt = GV->isDeclaration() || GV->isWeakForLinker();
1647 bool isStub = (isExt && Subtarget->isTargetMachO()) &&
1648 getTargetMachine().getRelocationModel() != Reloc::Static;
1649 isARMFunc = !Subtarget->isThumb() || isStub;
1650 // ARM call to a local ARM function is predicable.
1651 isLocalARMFunc = !Subtarget->isThumb() && (!isExt || !ARMInterworking);
1652 // tBX takes a register source operand.
1653 if (isStub && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1654 assert(Subtarget->isTargetMachO() && "WrapperPIC use on non-MachO?");
1655 Callee = DAG.getNode(ARMISD::WrapperPIC, dl, getPointerTy(),
1656 DAG.getTargetGlobalAddress(GV, dl, getPointerTy()));
1658 // On ELF targets for PIC code, direct calls should go through the PLT
1659 unsigned OpFlags = 0;
1660 if (Subtarget->isTargetELF() &&
1661 getTargetMachine().getRelocationModel() == Reloc::PIC_)
1662 OpFlags = ARMII::MO_PLT;
1663 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
1665 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1667 bool isStub = Subtarget->isTargetMachO() &&
1668 getTargetMachine().getRelocationModel() != Reloc::Static;
1669 isARMFunc = !Subtarget->isThumb() || isStub;
1670 // tBX takes a register source operand.
1671 const char *Sym = S->getSymbol();
1672 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1673 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1674 ARMConstantPoolValue *CPV =
1675 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1676 ARMPCLabelIndex, 4);
1677 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1678 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1679 Callee = DAG.getLoad(getPointerTy(), dl,
1680 DAG.getEntryNode(), CPAddr,
1681 MachinePointerInfo::getConstantPool(),
1682 false, false, false, 0);
1683 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1684 Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
1685 getPointerTy(), Callee, PICLabel);
1687 unsigned OpFlags = 0;
1688 // On ELF targets for PIC code, direct calls should go through the PLT
1689 if (Subtarget->isTargetELF() &&
1690 getTargetMachine().getRelocationModel() == Reloc::PIC_)
1691 OpFlags = ARMII::MO_PLT;
1692 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlags);
1696 // FIXME: handle tail calls differently.
1698 bool HasMinSizeAttr = Subtarget->isMinSize();
1699 if (Subtarget->isThumb()) {
1700 if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
1701 CallOpc = ARMISD::CALL_NOLINK;
1703 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1705 if (!isDirect && !Subtarget->hasV5TOps())
1706 CallOpc = ARMISD::CALL_NOLINK;
1707 else if (doesNotRet && isDirect && Subtarget->hasRAS() &&
1708 // Emit regular call when code size is the priority
1710 // "mov lr, pc; b _foo" to avoid confusing the RSP
1711 CallOpc = ARMISD::CALL_NOLINK;
1713 CallOpc = isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL;
1716 std::vector<SDValue> Ops;
1717 Ops.push_back(Chain);
1718 Ops.push_back(Callee);
1720 // Add argument registers to the end of the list so that they are known live
1722 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1723 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1724 RegsToPass[i].second.getValueType()));
1726 // Add a register mask operand representing the call-preserved registers.
1728 const uint32_t *Mask;
1729 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
1730 const ARMBaseRegisterInfo *ARI = static_cast<const ARMBaseRegisterInfo*>(TRI);
1732 // For 'this' returns, use the R0-preserving mask if applicable
1733 Mask = ARI->getThisReturnPreservedMask(CallConv);
1735 // Set isThisReturn to false if the calling convention is not one that
1736 // allows 'returned' to be modeled in this way, so LowerCallResult does
1737 // not try to pass 'this' straight through
1738 isThisReturn = false;
1739 Mask = ARI->getCallPreservedMask(CallConv);
1742 Mask = ARI->getCallPreservedMask(CallConv);
1744 assert(Mask && "Missing call preserved mask for calling convention");
1745 Ops.push_back(DAG.getRegisterMask(Mask));
1748 if (InFlag.getNode())
1749 Ops.push_back(InFlag);
1751 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1753 return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, Ops);
1755 // Returns a chain and a flag for retval copy to use.
1756 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
1757 InFlag = Chain.getValue(1);
1759 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1760 DAG.getIntPtrConstant(0, true), InFlag, dl);
1762 InFlag = Chain.getValue(1);
1764 // Handle result values, copying them out of physregs into vregs that we
1766 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG,
1767 InVals, isThisReturn,
1768 isThisReturn ? OutVals[0] : SDValue());
1771 /// HandleByVal - Every parameter *after* a byval parameter is passed
1772 /// on the stack. Remember the next parameter register to allocate,
1773 /// and then confiscate the rest of the parameter registers to insure
1776 ARMTargetLowering::HandleByVal(
1777 CCState *State, unsigned &size, unsigned Align) const {
1778 unsigned reg = State->AllocateReg(GPRArgRegs, 4);
1779 assert((State->getCallOrPrologue() == Prologue ||
1780 State->getCallOrPrologue() == Call) &&
1781 "unhandled ParmContext");
1783 if ((ARM::R0 <= reg) && (reg <= ARM::R3)) {
1784 if (Subtarget->isAAPCS_ABI() && Align > 4) {
1785 unsigned AlignInRegs = Align / 4;
1786 unsigned Waste = (ARM::R4 - reg) % AlignInRegs;
1787 for (unsigned i = 0; i < Waste; ++i)
1788 reg = State->AllocateReg(GPRArgRegs, 4);
1791 unsigned excess = 4 * (ARM::R4 - reg);
1793 // Special case when NSAA != SP and parameter size greater than size of
1794 // all remained GPR regs. In that case we can't split parameter, we must
1795 // send it to stack. We also must set NCRN to R4, so waste all
1796 // remained registers.
1797 const unsigned NSAAOffset = State->getNextStackOffset();
1798 if (Subtarget->isAAPCS_ABI() && NSAAOffset != 0 && size > excess) {
1799 while (State->AllocateReg(GPRArgRegs, 4))
1804 // First register for byval parameter is the first register that wasn't
1805 // allocated before this method call, so it would be "reg".
1806 // If parameter is small enough to be saved in range [reg, r4), then
1807 // the end (first after last) register would be reg + param-size-in-regs,
1808 // else parameter would be splitted between registers and stack,
1809 // end register would be r4 in this case.
1810 unsigned ByValRegBegin = reg;
1811 unsigned ByValRegEnd = (size < excess) ? reg + size/4 : (unsigned)ARM::R4;
1812 State->addInRegsParamInfo(ByValRegBegin, ByValRegEnd);
1813 // Note, first register is allocated in the beginning of function already,
1814 // allocate remained amount of registers we need.
1815 for (unsigned i = reg+1; i != ByValRegEnd; ++i)
1816 State->AllocateReg(GPRArgRegs, 4);
1817 // A byval parameter that is split between registers and memory needs its
1818 // size truncated here.
1819 // In the case where the entire structure fits in registers, we set the
1820 // size in memory to zero.
1829 /// MatchingStackOffset - Return true if the given stack call argument is
1830 /// already available in the same position (relatively) of the caller's
1831 /// incoming argument stack.
1833 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
1834 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
1835 const TargetInstrInfo *TII) {
1836 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
1838 if (Arg.getOpcode() == ISD::CopyFromReg) {
1839 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
1840 if (!TargetRegisterInfo::isVirtualRegister(VR))
1842 MachineInstr *Def = MRI->getVRegDef(VR);
1845 if (!Flags.isByVal()) {
1846 if (!TII->isLoadFromStackSlot(Def, FI))
1851 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
1852 if (Flags.isByVal())
1853 // ByVal argument is passed in as a pointer but it's now being
1854 // dereferenced. e.g.
1855 // define @foo(%struct.X* %A) {
1856 // tail call @bar(%struct.X* byval %A)
1859 SDValue Ptr = Ld->getBasePtr();
1860 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
1863 FI = FINode->getIndex();
1867 assert(FI != INT_MAX);
1868 if (!MFI->isFixedObjectIndex(FI))
1870 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
1873 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
1874 /// for tail call optimization. Targets which want to do tail call
1875 /// optimization should implement this function.
1877 ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
1878 CallingConv::ID CalleeCC,
1880 bool isCalleeStructRet,
1881 bool isCallerStructRet,
1882 const SmallVectorImpl<ISD::OutputArg> &Outs,
1883 const SmallVectorImpl<SDValue> &OutVals,
1884 const SmallVectorImpl<ISD::InputArg> &Ins,
1885 SelectionDAG& DAG) const {
1886 const Function *CallerF = DAG.getMachineFunction().getFunction();
1887 CallingConv::ID CallerCC = CallerF->getCallingConv();
1888 bool CCMatch = CallerCC == CalleeCC;
1890 // Look for obvious safe cases to perform tail call optimization that do not
1891 // require ABI changes. This is what gcc calls sibcall.
1893 // Do not sibcall optimize vararg calls unless the call site is not passing
1895 if (isVarArg && !Outs.empty())
1898 // Exception-handling functions need a special set of instructions to indicate
1899 // a return to the hardware. Tail-calling another function would probably
1901 if (CallerF->hasFnAttribute("interrupt"))
1904 // Also avoid sibcall optimization if either caller or callee uses struct
1905 // return semantics.
1906 if (isCalleeStructRet || isCallerStructRet)
1909 // FIXME: Completely disable sibcall for Thumb1 since Thumb1RegisterInfo::
1910 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
1911 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
1912 // support in the assembler and linker to be used. This would need to be
1913 // fixed to fully support tail calls in Thumb1.
1915 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
1916 // LR. This means if we need to reload LR, it takes an extra instructions,
1917 // which outweighs the value of the tail call; but here we don't know yet
1918 // whether LR is going to be used. Probably the right approach is to
1919 // generate the tail call here and turn it back into CALL/RET in
1920 // emitEpilogue if LR is used.
1922 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
1923 // but we need to make sure there are enough registers; the only valid
1924 // registers are the 4 used for parameters. We don't currently do this
1926 if (Subtarget->isThumb1Only())
1929 // If the calling conventions do not match, then we'd better make sure the
1930 // results are returned in the same way as what the caller expects.
1932 SmallVector<CCValAssign, 16> RVLocs1;
1933 ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
1934 getTargetMachine(), RVLocs1, *DAG.getContext(), Call);
1935 CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg));
1937 SmallVector<CCValAssign, 16> RVLocs2;
1938 ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
1939 getTargetMachine(), RVLocs2, *DAG.getContext(), Call);
1940 CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg));
1942 if (RVLocs1.size() != RVLocs2.size())
1944 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
1945 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
1947 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
1949 if (RVLocs1[i].isRegLoc()) {
1950 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
1953 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
1959 // If Caller's vararg or byval argument has been split between registers and
1960 // stack, do not perform tail call, since part of the argument is in caller's
1962 const ARMFunctionInfo *AFI_Caller = DAG.getMachineFunction().
1963 getInfo<ARMFunctionInfo>();
1964 if (AFI_Caller->getArgRegsSaveSize())
1967 // If the callee takes no arguments then go on to check the results of the
1969 if (!Outs.empty()) {
1970 // Check if stack adjustment is needed. For now, do not do this if any
1971 // argument is passed on the stack.
1972 SmallVector<CCValAssign, 16> ArgLocs;
1973 ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
1974 getTargetMachine(), ArgLocs, *DAG.getContext(), Call);
1975 CCInfo.AnalyzeCallOperands(Outs,
1976 CCAssignFnForNode(CalleeCC, false, isVarArg));
1977 if (CCInfo.getNextStackOffset()) {
1978 MachineFunction &MF = DAG.getMachineFunction();
1980 // Check if the arguments are already laid out in the right way as
1981 // the caller's fixed stack objects.
1982 MachineFrameInfo *MFI = MF.getFrameInfo();
1983 const MachineRegisterInfo *MRI = &MF.getRegInfo();
1984 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
1985 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1987 ++i, ++realArgIdx) {
1988 CCValAssign &VA = ArgLocs[i];
1989 EVT RegVT = VA.getLocVT();
1990 SDValue Arg = OutVals[realArgIdx];
1991 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
1992 if (VA.getLocInfo() == CCValAssign::Indirect)
1994 if (VA.needsCustom()) {
1995 // f64 and vector types are split into multiple registers or
1996 // register/stack-slot combinations. The types will not match
1997 // the registers; give up on memory f64 refs until we figure
1998 // out what to do about this.
2001 if (!ArgLocs[++i].isRegLoc())
2003 if (RegVT == MVT::v2f64) {
2004 if (!ArgLocs[++i].isRegLoc())
2006 if (!ArgLocs[++i].isRegLoc())
2009 } else if (!VA.isRegLoc()) {
2010 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2022 ARMTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
2023 MachineFunction &MF, bool isVarArg,
2024 const SmallVectorImpl<ISD::OutputArg> &Outs,
2025 LLVMContext &Context) const {
2026 SmallVector<CCValAssign, 16> RVLocs;
2027 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(), RVLocs, Context);
2028 return CCInfo.CheckReturn(Outs, CCAssignFnForNode(CallConv, /*Return=*/true,
2032 static SDValue LowerInterruptReturn(SmallVectorImpl<SDValue> &RetOps,
2033 SDLoc DL, SelectionDAG &DAG) {
2034 const MachineFunction &MF = DAG.getMachineFunction();
2035 const Function *F = MF.getFunction();
2037 StringRef IntKind = F->getFnAttribute("interrupt").getValueAsString();
2039 // See ARM ARM v7 B1.8.3. On exception entry LR is set to a possibly offset
2040 // version of the "preferred return address". These offsets affect the return
2041 // instruction if this is a return from PL1 without hypervisor extensions.
2042 // IRQ/FIQ: +4 "subs pc, lr, #4"
2043 // SWI: 0 "subs pc, lr, #0"
2044 // ABORT: +4 "subs pc, lr, #4"
2045 // UNDEF: +4/+2 "subs pc, lr, #0"
2046 // UNDEF varies depending on where the exception came from ARM or Thumb
2047 // mode. Alongside GCC, we throw our hands up in disgust and pretend it's 0.
2050 if (IntKind == "" || IntKind == "IRQ" || IntKind == "FIQ" ||
2053 else if (IntKind == "SWI" || IntKind == "UNDEF")
2056 report_fatal_error("Unsupported interrupt attribute. If present, value "
2057 "must be one of: IRQ, FIQ, SWI, ABORT or UNDEF");
2059 RetOps.insert(RetOps.begin() + 1, DAG.getConstant(LROffset, MVT::i32, false));
2061 return DAG.getNode(ARMISD::INTRET_FLAG, DL, MVT::Other, RetOps);
2065 ARMTargetLowering::LowerReturn(SDValue Chain,
2066 CallingConv::ID CallConv, bool isVarArg,
2067 const SmallVectorImpl<ISD::OutputArg> &Outs,
2068 const SmallVectorImpl<SDValue> &OutVals,
2069 SDLoc dl, SelectionDAG &DAG) const {
2071 // CCValAssign - represent the assignment of the return value to a location.
2072 SmallVector<CCValAssign, 16> RVLocs;
2074 // CCState - Info about the registers and stack slots.
2075 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2076 getTargetMachine(), RVLocs, *DAG.getContext(), Call);
2078 // Analyze outgoing return values.
2079 CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
2083 SmallVector<SDValue, 4> RetOps;
2084 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
2085 bool isLittleEndian = Subtarget->isLittle();
2087 // Copy the result values into the output registers.
2088 for (unsigned i = 0, realRVLocIdx = 0;
2090 ++i, ++realRVLocIdx) {
2091 CCValAssign &VA = RVLocs[i];
2092 assert(VA.isRegLoc() && "Can only return in registers!");
2094 SDValue Arg = OutVals[realRVLocIdx];
2096 switch (VA.getLocInfo()) {
2097 default: llvm_unreachable("Unknown loc info!");
2098 case CCValAssign::Full: break;
2099 case CCValAssign::BCvt:
2100 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
2104 if (VA.needsCustom()) {
2105 if (VA.getLocVT() == MVT::v2f64) {
2106 // Extract the first half and return it in two registers.
2107 SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2108 DAG.getConstant(0, MVT::i32));
2109 SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
2110 DAG.getVTList(MVT::i32, MVT::i32), Half);
2112 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2113 HalfGPRs.getValue(isLittleEndian ? 0 : 1),
2115 Flag = Chain.getValue(1);
2116 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2117 VA = RVLocs[++i]; // skip ahead to next loc
2118 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2119 HalfGPRs.getValue(isLittleEndian ? 1 : 0),
2121 Flag = Chain.getValue(1);
2122 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2123 VA = RVLocs[++i]; // skip ahead to next loc
2125 // Extract the 2nd half and fall through to handle it as an f64 value.
2126 Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2127 DAG.getConstant(1, MVT::i32));
2129 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is
2131 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
2132 DAG.getVTList(MVT::i32, MVT::i32), Arg);
2133 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2134 fmrrd.getValue(isLittleEndian ? 0 : 1),
2136 Flag = Chain.getValue(1);
2137 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2138 VA = RVLocs[++i]; // skip ahead to next loc
2139 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2140 fmrrd.getValue(isLittleEndian ? 1 : 0),
2143 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
2145 // Guarantee that all emitted copies are
2146 // stuck together, avoiding something bad.
2147 Flag = Chain.getValue(1);
2148 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2151 // Update chain and glue.
2154 RetOps.push_back(Flag);
2156 // CPUs which aren't M-class use a special sequence to return from
2157 // exceptions (roughly, any instruction setting pc and cpsr simultaneously,
2158 // though we use "subs pc, lr, #N").
2160 // M-class CPUs actually use a normal return sequence with a special
2161 // (hardware-provided) value in LR, so the normal code path works.
2162 if (DAG.getMachineFunction().getFunction()->hasFnAttribute("interrupt") &&
2163 !Subtarget->isMClass()) {
2164 if (Subtarget->isThumb1Only())
2165 report_fatal_error("interrupt attribute is not supported in Thumb1");
2166 return LowerInterruptReturn(RetOps, dl, DAG);
2169 return DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, RetOps);
2172 bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
2173 if (N->getNumValues() != 1)
2175 if (!N->hasNUsesOfValue(1, 0))
2178 SDValue TCChain = Chain;
2179 SDNode *Copy = *N->use_begin();
2180 if (Copy->getOpcode() == ISD::CopyToReg) {
2181 // If the copy has a glue operand, we conservatively assume it isn't safe to
2182 // perform a tail call.
2183 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2185 TCChain = Copy->getOperand(0);
2186 } else if (Copy->getOpcode() == ARMISD::VMOVRRD) {
2187 SDNode *VMov = Copy;
2188 // f64 returned in a pair of GPRs.
2189 SmallPtrSet<SDNode*, 2> Copies;
2190 for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2192 if (UI->getOpcode() != ISD::CopyToReg)
2196 if (Copies.size() > 2)
2199 for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2201 SDValue UseChain = UI->getOperand(0);
2202 if (Copies.count(UseChain.getNode()))
2209 } else if (Copy->getOpcode() == ISD::BITCAST) {
2210 // f32 returned in a single GPR.
2211 if (!Copy->hasOneUse())
2213 Copy = *Copy->use_begin();
2214 if (Copy->getOpcode() != ISD::CopyToReg || !Copy->hasNUsesOfValue(1, 0))
2216 TCChain = Copy->getOperand(0);
2221 bool HasRet = false;
2222 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2224 if (UI->getOpcode() != ARMISD::RET_FLAG &&
2225 UI->getOpcode() != ARMISD::INTRET_FLAG)
2237 bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2238 if (!Subtarget->supportsTailCall())
2241 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2244 return !Subtarget->isThumb1Only();
2247 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
2248 // their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
2249 // one of the above mentioned nodes. It has to be wrapped because otherwise
2250 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
2251 // be used to form addressing mode. These wrapped nodes will be selected
2253 static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
2254 EVT PtrVT = Op.getValueType();
2255 // FIXME there is no actual debug info here
2257 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
2259 if (CP->isMachineConstantPoolEntry())
2260 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
2261 CP->getAlignment());
2263 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
2264 CP->getAlignment());
2265 return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
2268 unsigned ARMTargetLowering::getJumpTableEncoding() const {
2269 return MachineJumpTableInfo::EK_Inline;
2272 SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op,
2273 SelectionDAG &DAG) const {
2274 MachineFunction &MF = DAG.getMachineFunction();
2275 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2276 unsigned ARMPCLabelIndex = 0;
2278 EVT PtrVT = getPointerTy();
2279 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
2280 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2282 if (RelocM == Reloc::Static) {
2283 CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
2285 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2286 ARMPCLabelIndex = AFI->createPICLabelUId();
2287 ARMConstantPoolValue *CPV =
2288 ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex,
2289 ARMCP::CPBlockAddress, PCAdj);
2290 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2292 CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
2293 SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
2294 MachinePointerInfo::getConstantPool(),
2295 false, false, false, 0);
2296 if (RelocM == Reloc::Static)
2298 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2299 return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
2302 // Lower ISD::GlobalTLSAddress using the "general dynamic" model
2304 ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
2305 SelectionDAG &DAG) const {
2307 EVT PtrVT = getPointerTy();
2308 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2309 MachineFunction &MF = DAG.getMachineFunction();
2310 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2311 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2312 ARMConstantPoolValue *CPV =
2313 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2314 ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true);
2315 SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2316 Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
2317 Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
2318 MachinePointerInfo::getConstantPool(),
2319 false, false, false, 0);
2320 SDValue Chain = Argument.getValue(1);
2322 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2323 Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
2325 // call __tls_get_addr.
2328 Entry.Node = Argument;
2329 Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext());
2330 Args.push_back(Entry);
2332 // FIXME: is there useful debug info available here?
2333 TargetLowering::CallLoweringInfo CLI(DAG);
2334 CLI.setDebugLoc(dl).setChain(Chain)
2335 .setCallee(CallingConv::C, Type::getInt32Ty(*DAG.getContext()),
2336 DAG.getExternalSymbol("__tls_get_addr", PtrVT), &Args, 0);
2338 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
2339 return CallResult.first;
2342 // Lower ISD::GlobalTLSAddress using the "initial exec" or
2343 // "local exec" model.
2345 ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
2347 TLSModel::Model model) const {
2348 const GlobalValue *GV = GA->getGlobal();
2351 SDValue Chain = DAG.getEntryNode();
2352 EVT PtrVT = getPointerTy();
2353 // Get the Thread Pointer
2354 SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2356 if (model == TLSModel::InitialExec) {
2357 MachineFunction &MF = DAG.getMachineFunction();
2358 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2359 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2360 // Initial exec model.
2361 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2362 ARMConstantPoolValue *CPV =
2363 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2364 ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF,
2366 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2367 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
2368 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2369 MachinePointerInfo::getConstantPool(),
2370 false, false, false, 0);
2371 Chain = Offset.getValue(1);
2373 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2374 Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
2376 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2377 MachinePointerInfo::getConstantPool(),
2378 false, false, false, 0);
2381 assert(model == TLSModel::LocalExec);
2382 ARMConstantPoolValue *CPV =
2383 ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF);
2384 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2385 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
2386 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2387 MachinePointerInfo::getConstantPool(),
2388 false, false, false, 0);
2391 // The address of the thread local variable is the add of the thread
2392 // pointer with the offset of the variable.
2393 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
2397 ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
2398 // TODO: implement the "local dynamic" model
2399 assert(Subtarget->isTargetELF() &&
2400 "TLS not implemented for non-ELF targets");
2401 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
2403 TLSModel::Model model = getTargetMachine().getTLSModel(GA->getGlobal());
2406 case TLSModel::GeneralDynamic:
2407 case TLSModel::LocalDynamic:
2408 return LowerToTLSGeneralDynamicModel(GA, DAG);
2409 case TLSModel::InitialExec:
2410 case TLSModel::LocalExec:
2411 return LowerToTLSExecModels(GA, DAG, model);
2413 llvm_unreachable("bogus TLS model");
2416 SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
2417 SelectionDAG &DAG) const {
2418 EVT PtrVT = getPointerTy();
2420 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2421 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2422 bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
2423 ARMConstantPoolValue *CPV =
2424 ARMConstantPoolConstant::Create(GV,
2425 UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT);
2426 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2427 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2428 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
2430 MachinePointerInfo::getConstantPool(),
2431 false, false, false, 0);
2432 SDValue Chain = Result.getValue(1);
2433 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
2434 Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT);
2436 Result = DAG.getLoad(PtrVT, dl, Chain, Result,
2437 MachinePointerInfo::getGOT(),
2438 false, false, false, 0);
2442 // If we have T2 ops, we can materialize the address directly via movt/movw
2443 // pair. This is always cheaper.
2444 if (Subtarget->useMovt()) {
2446 // FIXME: Once remat is capable of dealing with instructions with register
2447 // operands, expand this into two nodes.
2448 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
2449 DAG.getTargetGlobalAddress(GV, dl, PtrVT));
2451 SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
2452 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2453 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2454 MachinePointerInfo::getConstantPool(),
2455 false, false, false, 0);
2459 SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
2460 SelectionDAG &DAG) const {
2461 EVT PtrVT = getPointerTy();
2463 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2464 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2466 if (Subtarget->useMovt())
2469 // FIXME: Once remat is capable of dealing with instructions with register
2470 // operands, expand this into multiple nodes
2472 RelocM == Reloc::PIC_ ? ARMISD::WrapperPIC : ARMISD::Wrapper;
2474 SDValue G = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, ARMII::MO_NONLAZY);
2475 SDValue Result = DAG.getNode(Wrapper, dl, PtrVT, G);
2477 if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
2478 Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
2479 MachinePointerInfo::getGOT(), false, false, false, 0);
2483 SDValue ARMTargetLowering::LowerGlobalAddressWindows(SDValue Op,
2484 SelectionDAG &DAG) const {
2485 assert(Subtarget->isTargetWindows() && "non-Windows COFF is not supported");
2486 assert(Subtarget->useMovt() && "Windows on ARM expects to use movw/movt");
2488 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2489 EVT PtrVT = getPointerTy();
2494 // FIXME: Once remat is capable of dealing with instructions with register
2495 // operands, expand this into two nodes.
2496 return DAG.getNode(ARMISD::Wrapper, DL, PtrVT,
2497 DAG.getTargetGlobalAddress(GV, DL, PtrVT));
2500 SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op,
2501 SelectionDAG &DAG) const {
2502 assert(Subtarget->isTargetELF() &&
2503 "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
2504 MachineFunction &MF = DAG.getMachineFunction();
2505 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2506 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2507 EVT PtrVT = getPointerTy();
2509 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2510 ARMConstantPoolValue *CPV =
2511 ARMConstantPoolSymbol::Create(*DAG.getContext(), "_GLOBAL_OFFSET_TABLE_",
2512 ARMPCLabelIndex, PCAdj);
2513 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2514 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2515 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2516 MachinePointerInfo::getConstantPool(),
2517 false, false, false, 0);
2518 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2519 return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2523 ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const {
2525 SDValue Val = DAG.getConstant(0, MVT::i32);
2526 return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl,
2527 DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0),
2528 Op.getOperand(1), Val);
2532 ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const {
2534 return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0),
2535 Op.getOperand(1), DAG.getConstant(0, MVT::i32));
2539 ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
2540 const ARMSubtarget *Subtarget) const {
2541 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
2544 default: return SDValue(); // Don't custom lower most intrinsics.
2545 case Intrinsic::arm_rbit: {
2546 assert(Op.getOperand(0).getValueType() == MVT::i32 &&
2547 "RBIT intrinsic must have i32 type!");
2548 return DAG.getNode(ARMISD::RBIT, dl, MVT::i32, Op.getOperand(0));
2550 case Intrinsic::arm_thread_pointer: {
2551 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2552 return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2554 case Intrinsic::eh_sjlj_lsda: {
2555 MachineFunction &MF = DAG.getMachineFunction();
2556 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2557 unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2558 EVT PtrVT = getPointerTy();
2559 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2561 unsigned PCAdj = (RelocM != Reloc::PIC_)
2562 ? 0 : (Subtarget->isThumb() ? 4 : 8);
2563 ARMConstantPoolValue *CPV =
2564 ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex,
2565 ARMCP::CPLSDA, PCAdj);
2566 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2567 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2569 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2570 MachinePointerInfo::getConstantPool(),
2571 false, false, false, 0);
2573 if (RelocM == Reloc::PIC_) {
2574 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2575 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2579 case Intrinsic::arm_neon_vmulls:
2580 case Intrinsic::arm_neon_vmullu: {
2581 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls)
2582 ? ARMISD::VMULLs : ARMISD::VMULLu;
2583 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
2584 Op.getOperand(1), Op.getOperand(2));
2589 static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG,
2590 const ARMSubtarget *Subtarget) {
2591 // FIXME: handle "fence singlethread" more efficiently.
2593 if (!Subtarget->hasDataBarrier()) {
2594 // Some ARMv6 cpus can support data barriers with an mcr instruction.
2595 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
2597 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() &&
2598 "Unexpected ISD::ATOMIC_FENCE encountered. Should be libcall!");
2599 return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0),
2600 DAG.getConstant(0, MVT::i32));
2603 ConstantSDNode *OrdN = cast<ConstantSDNode>(Op.getOperand(1));
2604 AtomicOrdering Ord = static_cast<AtomicOrdering>(OrdN->getZExtValue());
2605 unsigned Domain = ARM_MB::ISH;
2606 if (Subtarget->isMClass()) {
2607 // Only a full system barrier exists in the M-class architectures.
2608 Domain = ARM_MB::SY;
2609 } else if (Subtarget->isSwift() && Ord == Release) {
2610 // Swift happens to implement ISHST barriers in a way that's compatible with
2611 // Release semantics but weaker than ISH so we'd be fools not to use
2612 // it. Beware: other processors probably don't!
2613 Domain = ARM_MB::ISHST;
2616 return DAG.getNode(ISD::INTRINSIC_VOID, dl, MVT::Other, Op.getOperand(0),
2617 DAG.getConstant(Intrinsic::arm_dmb, MVT::i32),
2618 DAG.getConstant(Domain, MVT::i32));
2621 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG,
2622 const ARMSubtarget *Subtarget) {
2623 // ARM pre v5TE and Thumb1 does not have preload instructions.
2624 if (!(Subtarget->isThumb2() ||
2625 (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps())))
2626 // Just preserve the chain.
2627 return Op.getOperand(0);
2630 unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1;
2632 (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension()))
2633 // ARMv7 with MP extension has PLDW.
2634 return Op.getOperand(0);
2636 unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2637 if (Subtarget->isThumb()) {
2639 isRead = ~isRead & 1;
2640 isData = ~isData & 1;
2643 return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0),
2644 Op.getOperand(1), DAG.getConstant(isRead, MVT::i32),
2645 DAG.getConstant(isData, MVT::i32));
2648 static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) {
2649 MachineFunction &MF = DAG.getMachineFunction();
2650 ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>();
2652 // vastart just stores the address of the VarArgsFrameIndex slot into the
2653 // memory location argument.
2655 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2656 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2657 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2658 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2659 MachinePointerInfo(SV), false, false, 0);
2663 ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
2664 SDValue &Root, SelectionDAG &DAG,
2666 MachineFunction &MF = DAG.getMachineFunction();
2667 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2669 const TargetRegisterClass *RC;
2670 if (AFI->isThumb1OnlyFunction())
2671 RC = &ARM::tGPRRegClass;
2673 RC = &ARM::GPRRegClass;
2675 // Transform the arguments stored in physical registers into virtual ones.
2676 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2677 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
2680 if (NextVA.isMemLoc()) {
2681 MachineFrameInfo *MFI = MF.getFrameInfo();
2682 int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true);
2684 // Create load node to retrieve arguments from the stack.
2685 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2686 ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN,
2687 MachinePointerInfo::getFixedStack(FI),
2688 false, false, false, 0);
2690 Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
2691 ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
2693 if (!Subtarget->isLittle())
2694 std::swap (ArgValue, ArgValue2);
2695 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
2699 ARMTargetLowering::computeRegArea(CCState &CCInfo, MachineFunction &MF,
2700 unsigned InRegsParamRecordIdx,
2702 unsigned &ArgRegsSize,
2703 unsigned &ArgRegsSaveSize)
2706 if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
2707 unsigned RBegin, REnd;
2708 CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
2709 NumGPRs = REnd - RBegin;
2711 unsigned int firstUnalloced;
2712 firstUnalloced = CCInfo.getFirstUnallocated(GPRArgRegs,
2713 sizeof(GPRArgRegs) /
2714 sizeof(GPRArgRegs[0]));
2715 NumGPRs = (firstUnalloced <= 3) ? (4 - firstUnalloced) : 0;
2718 unsigned Align = MF.getTarget().getFrameLowering()->getStackAlignment();
2719 ArgRegsSize = NumGPRs * 4;
2721 // If parameter is split between stack and GPRs...
2722 if (NumGPRs && Align > 4 &&
2723 (ArgRegsSize < ArgSize ||
2724 InRegsParamRecordIdx >= CCInfo.getInRegsParamsCount())) {
2725 // Add padding for part of param recovered from GPRs. For example,
2726 // if Align == 8, its last byte must be at address K*8 - 1.
2727 // We need to do it, since remained (stack) part of parameter has
2728 // stack alignment, and we need to "attach" "GPRs head" without gaps
2731 // |---- 8 bytes block ----| |---- 8 bytes block ----| |---- 8 bytes...
2732 // [ [padding] [GPRs head] ] [ Tail passed via stack ....
2734 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2736 OffsetToAlignment(ArgRegsSize + AFI->getArgRegsSaveSize(), Align);
2737 ArgRegsSaveSize = ArgRegsSize + Padding;
2739 // We don't need to extend regs save size for byval parameters if they
2740 // are passed via GPRs only.
2741 ArgRegsSaveSize = ArgRegsSize;
2744 // The remaining GPRs hold either the beginning of variable-argument
2745 // data, or the beginning of an aggregate passed by value (usually
2746 // byval). Either way, we allocate stack slots adjacent to the data
2747 // provided by our caller, and store the unallocated registers there.
2748 // If this is a variadic function, the va_list pointer will begin with
2749 // these values; otherwise, this reassembles a (byval) structure that
2750 // was split between registers and memory.
2751 // Return: The frame index registers were stored into.
2753 ARMTargetLowering::StoreByValRegs(CCState &CCInfo, SelectionDAG &DAG,
2754 SDLoc dl, SDValue &Chain,
2755 const Value *OrigArg,
2756 unsigned InRegsParamRecordIdx,
2757 unsigned OffsetFromOrigArg,
2761 unsigned ByValStoreOffset,
2762 unsigned TotalArgRegsSaveSize) const {
2764 // Currently, two use-cases possible:
2765 // Case #1. Non-var-args function, and we meet first byval parameter.
2766 // Setup first unallocated register as first byval register;
2767 // eat all remained registers
2768 // (these two actions are performed by HandleByVal method).
2769 // Then, here, we initialize stack frame with
2770 // "store-reg" instructions.
2771 // Case #2. Var-args function, that doesn't contain byval parameters.
2772 // The same: eat all remained unallocated registers,
2773 // initialize stack frame.
2775 MachineFunction &MF = DAG.getMachineFunction();
2776 MachineFrameInfo *MFI = MF.getFrameInfo();
2777 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2778 unsigned firstRegToSaveIndex, lastRegToSaveIndex;
2779 unsigned RBegin, REnd;
2780 if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
2781 CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
2782 firstRegToSaveIndex = RBegin - ARM::R0;
2783 lastRegToSaveIndex = REnd - ARM::R0;
2785 firstRegToSaveIndex = CCInfo.getFirstUnallocated
2786 (GPRArgRegs, array_lengthof(GPRArgRegs));
2787 lastRegToSaveIndex = 4;
2790 unsigned ArgRegsSize, ArgRegsSaveSize;
2791 computeRegArea(CCInfo, MF, InRegsParamRecordIdx, ArgSize,
2792 ArgRegsSize, ArgRegsSaveSize);
2794 // Store any by-val regs to their spots on the stack so that they may be
2795 // loaded by deferencing the result of formal parameter pointer or va_next.
2796 // Note: once stack area for byval/varargs registers
2797 // was initialized, it can't be initialized again.
2798 if (ArgRegsSaveSize) {
2799 unsigned Padding = ArgRegsSaveSize - ArgRegsSize;
2802 assert(AFI->getStoredByValParamsPadding() == 0 &&
2803 "The only parameter may be padded.");
2804 AFI->setStoredByValParamsPadding(Padding);
2807 int FrameIndex = MFI->CreateFixedObject(ArgRegsSaveSize,
2810 (int64_t)TotalArgRegsSaveSize,
2812 SDValue FIN = DAG.getFrameIndex(FrameIndex, getPointerTy());
2814 MFI->CreateFixedObject(Padding,
2815 ArgOffset + ByValStoreOffset -
2816 (int64_t)ArgRegsSaveSize,
2820 SmallVector<SDValue, 4> MemOps;
2821 for (unsigned i = 0; firstRegToSaveIndex < lastRegToSaveIndex;
2822 ++firstRegToSaveIndex, ++i) {
2823 const TargetRegisterClass *RC;
2824 if (AFI->isThumb1OnlyFunction())
2825 RC = &ARM::tGPRRegClass;
2827 RC = &ARM::GPRRegClass;
2829 unsigned VReg = MF.addLiveIn(GPRArgRegs[firstRegToSaveIndex], RC);
2830 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
2832 DAG.getStore(Val.getValue(1), dl, Val, FIN,
2833 MachinePointerInfo(OrigArg, OffsetFromOrigArg + 4*i),
2835 MemOps.push_back(Store);
2836 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
2837 DAG.getConstant(4, getPointerTy()));
2840 AFI->setArgRegsSaveSize(ArgRegsSaveSize + AFI->getArgRegsSaveSize());
2842 if (!MemOps.empty())
2843 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2847 // We cannot allocate a zero-byte object for the first variadic argument,
2848 // so just make up a size.
2851 // This will point to the next argument passed via stack.
2852 return MFI->CreateFixedObject(
2853 ArgSize, ArgOffset, !ForceMutable);
2857 // Setup stack frame, the va_list pointer will start from.
2859 ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG,
2860 SDLoc dl, SDValue &Chain,
2862 unsigned TotalArgRegsSaveSize,
2863 bool ForceMutable) const {
2864 MachineFunction &MF = DAG.getMachineFunction();
2865 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2867 // Try to store any remaining integer argument regs
2868 // to their spots on the stack so that they may be loaded by deferencing
2869 // the result of va_next.
2870 // If there is no regs to be stored, just point address after last
2871 // argument passed via stack.
2873 StoreByValRegs(CCInfo, DAG, dl, Chain, nullptr,
2874 CCInfo.getInRegsParamsCount(), 0, ArgOffset, 0, ForceMutable,
2875 0, TotalArgRegsSaveSize);
2877 AFI->setVarArgsFrameIndex(FrameIndex);
2881 ARMTargetLowering::LowerFormalArguments(SDValue Chain,
2882 CallingConv::ID CallConv, bool isVarArg,
2883 const SmallVectorImpl<ISD::InputArg>
2885 SDLoc dl, SelectionDAG &DAG,
2886 SmallVectorImpl<SDValue> &InVals)
2888 MachineFunction &MF = DAG.getMachineFunction();
2889 MachineFrameInfo *MFI = MF.getFrameInfo();
2891 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2893 // Assign locations to all of the incoming arguments.
2894 SmallVector<CCValAssign, 16> ArgLocs;
2895 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2896 getTargetMachine(), ArgLocs, *DAG.getContext(), Prologue);
2897 CCInfo.AnalyzeFormalArguments(Ins,
2898 CCAssignFnForNode(CallConv, /* Return*/ false,
2901 SmallVector<SDValue, 16> ArgValues;
2902 int lastInsIndex = -1;
2904 Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
2905 unsigned CurArgIdx = 0;
2907 // Initially ArgRegsSaveSize is zero.
2908 // Then we increase this value each time we meet byval parameter.
2909 // We also increase this value in case of varargs function.
2910 AFI->setArgRegsSaveSize(0);
2912 unsigned ByValStoreOffset = 0;
2913 unsigned TotalArgRegsSaveSize = 0;
2914 unsigned ArgRegsSaveSizeMaxAlign = 4;
2916 // Calculate the amount of stack space that we need to allocate to store
2917 // byval and variadic arguments that are passed in registers.
2918 // We need to know this before we allocate the first byval or variadic
2919 // argument, as they will be allocated a stack slot below the CFA (Canonical
2920 // Frame Address, the stack pointer at entry to the function).
2921 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2922 CCValAssign &VA = ArgLocs[i];
2923 if (VA.isMemLoc()) {
2924 int index = VA.getValNo();
2925 if (index != lastInsIndex) {
2926 ISD::ArgFlagsTy Flags = Ins[index].Flags;
2927 if (Flags.isByVal()) {
2928 unsigned ExtraArgRegsSize;
2929 unsigned ExtraArgRegsSaveSize;
2930 computeRegArea(CCInfo, MF, CCInfo.getInRegsParamsProceed(),
2931 Flags.getByValSize(),
2932 ExtraArgRegsSize, ExtraArgRegsSaveSize);
2934 TotalArgRegsSaveSize += ExtraArgRegsSaveSize;
2935 if (Flags.getByValAlign() > ArgRegsSaveSizeMaxAlign)
2936 ArgRegsSaveSizeMaxAlign = Flags.getByValAlign();
2937 CCInfo.nextInRegsParam();
2939 lastInsIndex = index;
2943 CCInfo.rewindByValRegsInfo();
2946 unsigned ExtraArgRegsSize;
2947 unsigned ExtraArgRegsSaveSize;
2948 computeRegArea(CCInfo, MF, CCInfo.getInRegsParamsCount(), 0,
2949 ExtraArgRegsSize, ExtraArgRegsSaveSize);
2950 TotalArgRegsSaveSize += ExtraArgRegsSaveSize;
2952 // If the arg regs save area contains N-byte aligned values, the
2953 // bottom of it must be at least N-byte aligned.
2954 TotalArgRegsSaveSize = RoundUpToAlignment(TotalArgRegsSaveSize, ArgRegsSaveSizeMaxAlign);
2955 TotalArgRegsSaveSize = std::min(TotalArgRegsSaveSize, 16U);
2957 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2958 CCValAssign &VA = ArgLocs[i];
2959 std::advance(CurOrigArg, Ins[VA.getValNo()].OrigArgIndex - CurArgIdx);
2960 CurArgIdx = Ins[VA.getValNo()].OrigArgIndex;
2961 // Arguments stored in registers.
2962 if (VA.isRegLoc()) {
2963 EVT RegVT = VA.getLocVT();
2965 if (VA.needsCustom()) {
2966 // f64 and vector types are split up into multiple registers or
2967 // combinations of registers and stack slots.
2968 if (VA.getLocVT() == MVT::v2f64) {
2969 SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
2971 VA = ArgLocs[++i]; // skip ahead to next loc
2973 if (VA.isMemLoc()) {
2974 int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true);
2975 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2976 ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN,
2977 MachinePointerInfo::getFixedStack(FI),
2978 false, false, false, 0);
2980 ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
2983 ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
2984 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
2985 ArgValue, ArgValue1, DAG.getIntPtrConstant(0));
2986 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
2987 ArgValue, ArgValue2, DAG.getIntPtrConstant(1));
2989 ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
2992 const TargetRegisterClass *RC;
2994 if (RegVT == MVT::f32)
2995 RC = &ARM::SPRRegClass;
2996 else if (RegVT == MVT::f64)
2997 RC = &ARM::DPRRegClass;
2998 else if (RegVT == MVT::v2f64)
2999 RC = &ARM::QPRRegClass;
3000 else if (RegVT == MVT::i32)
3001 RC = AFI->isThumb1OnlyFunction() ?
3002 (const TargetRegisterClass*)&ARM::tGPRRegClass :
3003 (const TargetRegisterClass*)&ARM::GPRRegClass;
3005 llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
3007 // Transform the arguments in physical registers into virtual ones.
3008 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
3009 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
3012 // If this is an 8 or 16-bit value, it is really passed promoted
3013 // to 32 bits. Insert an assert[sz]ext to capture this, then
3014 // truncate to the right size.
3015 switch (VA.getLocInfo()) {
3016 default: llvm_unreachable("Unknown loc info!");
3017 case CCValAssign::Full: break;
3018 case CCValAssign::BCvt:
3019 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
3021 case CCValAssign::SExt:
3022 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
3023 DAG.getValueType(VA.getValVT()));
3024 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3026 case CCValAssign::ZExt:
3027 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
3028 DAG.getValueType(VA.getValVT()));
3029 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3033 InVals.push_back(ArgValue);
3035 } else { // VA.isRegLoc()
3038 assert(VA.isMemLoc());
3039 assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
3041 int index = ArgLocs[i].getValNo();
3043 // Some Ins[] entries become multiple ArgLoc[] entries.
3044 // Process them only once.
3045 if (index != lastInsIndex)
3047 ISD::ArgFlagsTy Flags = Ins[index].Flags;
3048 // FIXME: For now, all byval parameter objects are marked mutable.
3049 // This can be changed with more analysis.
3050 // In case of tail call optimization mark all arguments mutable.
3051 // Since they could be overwritten by lowering of arguments in case of
3053 if (Flags.isByVal()) {
3054 unsigned CurByValIndex = CCInfo.getInRegsParamsProceed();
3056 ByValStoreOffset = RoundUpToAlignment(ByValStoreOffset, Flags.getByValAlign());
3057 int FrameIndex = StoreByValRegs(
3058 CCInfo, DAG, dl, Chain, CurOrigArg,
3060 Ins[VA.getValNo()].PartOffset,
3061 VA.getLocMemOffset(),
3062 Flags.getByValSize(),
3063 true /*force mutable frames*/,
3065 TotalArgRegsSaveSize);
3066 ByValStoreOffset += Flags.getByValSize();
3067 ByValStoreOffset = std::min(ByValStoreOffset, 16U);
3068 InVals.push_back(DAG.getFrameIndex(FrameIndex, getPointerTy()));
3069 CCInfo.nextInRegsParam();
3071 unsigned FIOffset = VA.getLocMemOffset();
3072 int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
3075 // Create load nodes to retrieve arguments from the stack.
3076 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
3077 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
3078 MachinePointerInfo::getFixedStack(FI),
3079 false, false, false, 0));
3081 lastInsIndex = index;
3088 VarArgStyleRegisters(CCInfo, DAG, dl, Chain,
3089 CCInfo.getNextStackOffset(),
3090 TotalArgRegsSaveSize);
3092 AFI->setArgumentStackSize(CCInfo.getNextStackOffset());
3097 /// isFloatingPointZero - Return true if this is +0.0.
3098 static bool isFloatingPointZero(SDValue Op) {
3099 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
3100 return CFP->getValueAPF().isPosZero();
3101 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
3102 // Maybe this has already been legalized into the constant pool?
3103 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
3104 SDValue WrapperOp = Op.getOperand(1).getOperand(0);
3105 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
3106 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
3107 return CFP->getValueAPF().isPosZero();
3113 /// Returns appropriate ARM CMP (cmp) and corresponding condition code for
3114 /// the given operands.
3116 ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
3117 SDValue &ARMcc, SelectionDAG &DAG,
3119 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
3120 unsigned C = RHSC->getZExtValue();
3121 if (!isLegalICmpImmediate(C)) {
3122 // Constant does not fit, try adjusting it by one?
3127 if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
3128 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
3129 RHS = DAG.getConstant(C-1, MVT::i32);
3134 if (C != 0 && isLegalICmpImmediate(C-1)) {
3135 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
3136 RHS = DAG.getConstant(C-1, MVT::i32);
3141 if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
3142 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
3143 RHS = DAG.getConstant(C+1, MVT::i32);
3148 if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
3149 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
3150 RHS = DAG.getConstant(C+1, MVT::i32);
3157 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3158 ARMISD::NodeType CompareType;
3161 CompareType = ARMISD::CMP;
3166 CompareType = ARMISD::CMPZ;
3169 ARMcc = DAG.getConstant(CondCode, MVT::i32);
3170 return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS);
3173 /// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
3175 ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
3178 if (!isFloatingPointZero(RHS))
3179 Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS);
3181 Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS);
3182 return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp);
3185 /// duplicateCmp - Glue values can have only one use, so this function
3186 /// duplicates a comparison node.
3188 ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const {
3189 unsigned Opc = Cmp.getOpcode();
3191 if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ)
3192 return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3194 assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation");
3195 Cmp = Cmp.getOperand(0);
3196 Opc = Cmp.getOpcode();
3197 if (Opc == ARMISD::CMPFP)
3198 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3200 assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT");
3201 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0));
3203 return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp);
3206 std::pair<SDValue, SDValue>
3207 ARMTargetLowering::getARMXALUOOp(SDValue Op, SelectionDAG &DAG,
3208 SDValue &ARMcc) const {
3209 assert(Op.getValueType() == MVT::i32 && "Unsupported value type");
3211 SDValue Value, OverflowCmp;
3212 SDValue LHS = Op.getOperand(0);
3213 SDValue RHS = Op.getOperand(1);
3216 // FIXME: We are currently always generating CMPs because we don't support
3217 // generating CMN through the backend. This is not as good as the natural
3218 // CMP case because it causes a register dependency and cannot be folded
3221 switch (Op.getOpcode()) {
3223 llvm_unreachable("Unknown overflow instruction!");
3225 ARMcc = DAG.getConstant(ARMCC::VC, MVT::i32);
3226 Value = DAG.getNode(ISD::ADD, SDLoc(Op), Op.getValueType(), LHS, RHS);
3227 OverflowCmp = DAG.getNode(ARMISD::CMP, SDLoc(Op), MVT::Glue, Value, LHS);
3230 ARMcc = DAG.getConstant(ARMCC::HS, MVT::i32);
3231 Value = DAG.getNode(ISD::ADD, SDLoc(Op), Op.getValueType(), LHS, RHS);
3232 OverflowCmp = DAG.getNode(ARMISD::CMP, SDLoc(Op), MVT::Glue, Value, LHS);
3235 ARMcc = DAG.getConstant(ARMCC::VC, MVT::i32);
3236 Value = DAG.getNode(ISD::SUB, SDLoc(Op), Op.getValueType(), LHS, RHS);
3237 OverflowCmp = DAG.getNode(ARMISD::CMP, SDLoc(Op), MVT::Glue, LHS, RHS);
3240 ARMcc = DAG.getConstant(ARMCC::HS, MVT::i32);
3241 Value = DAG.getNode(ISD::SUB, SDLoc(Op), Op.getValueType(), LHS, RHS);
3242 OverflowCmp = DAG.getNode(ARMISD::CMP, SDLoc(Op), MVT::Glue, LHS, RHS);
3246 return std::make_pair(Value, OverflowCmp);
3251 ARMTargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
3252 // Let legalize expand this if it isn't a legal type yet.
3253 if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
3256 SDValue Value, OverflowCmp;
3258 std::tie(Value, OverflowCmp) = getARMXALUOOp(Op, DAG, ARMcc);
3259 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3260 // We use 0 and 1 as false and true values.
3261 SDValue TVal = DAG.getConstant(1, MVT::i32);
3262 SDValue FVal = DAG.getConstant(0, MVT::i32);
3263 EVT VT = Op.getValueType();
3265 SDValue Overflow = DAG.getNode(ARMISD::CMOV, SDLoc(Op), VT, TVal, FVal,
3266 ARMcc, CCR, OverflowCmp);
3268 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
3269 return DAG.getNode(ISD::MERGE_VALUES, SDLoc(Op), VTs, Value, Overflow);
3273 SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
3274 SDValue Cond = Op.getOperand(0);
3275 SDValue SelectTrue = Op.getOperand(1);
3276 SDValue SelectFalse = Op.getOperand(2);
3278 unsigned Opc = Cond.getOpcode();
3280 if (Cond.getResNo() == 1 &&
3281 (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
3282 Opc == ISD::USUBO)) {
3283 if (!DAG.getTargetLoweringInfo().isTypeLegal(Cond->getValueType(0)))
3286 SDValue Value, OverflowCmp;
3288 std::tie(Value, OverflowCmp) = getARMXALUOOp(Cond, DAG, ARMcc);
3289 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3290 EVT VT = Op.getValueType();
3292 return DAG.getNode(ARMISD::CMOV, SDLoc(Op), VT, SelectTrue, SelectFalse,
3293 ARMcc, CCR, OverflowCmp);
3299 // (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond)
3300 // (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond)
3302 if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) {
3303 const ConstantSDNode *CMOVTrue =
3304 dyn_cast<ConstantSDNode>(Cond.getOperand(0));
3305 const ConstantSDNode *CMOVFalse =
3306 dyn_cast<ConstantSDNode>(Cond.getOperand(1));
3308 if (CMOVTrue && CMOVFalse) {
3309 unsigned CMOVTrueVal = CMOVTrue->getZExtValue();
3310 unsigned CMOVFalseVal = CMOVFalse->getZExtValue();
3314 if (CMOVTrueVal == 1 && CMOVFalseVal == 0) {
3316 False = SelectFalse;
3317 } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) {
3322 if (True.getNode() && False.getNode()) {
3323 EVT VT = Op.getValueType();
3324 SDValue ARMcc = Cond.getOperand(2);
3325 SDValue CCR = Cond.getOperand(3);
3326 SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG);
3327 assert(True.getValueType() == VT);
3328 return DAG.getNode(ARMISD::CMOV, dl, VT, True, False, ARMcc, CCR, Cmp);
3333 // ARM's BooleanContents value is UndefinedBooleanContent. Mask out the
3334 // undefined bits before doing a full-word comparison with zero.
3335 Cond = DAG.getNode(ISD::AND, dl, Cond.getValueType(), Cond,
3336 DAG.getConstant(1, Cond.getValueType()));
3338 return DAG.getSelectCC(dl, Cond,
3339 DAG.getConstant(0, Cond.getValueType()),
3340 SelectTrue, SelectFalse, ISD::SETNE);
3343 static ISD::CondCode getInverseCCForVSEL(ISD::CondCode CC) {
3344 if (CC == ISD::SETNE)
3346 return ISD::getSetCCInverse(CC, true);
3349 static void checkVSELConstraints(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
3350 bool &swpCmpOps, bool &swpVselOps) {
3351 // Start by selecting the GE condition code for opcodes that return true for
3353 if (CC == ISD::SETUGE || CC == ISD::SETOGE || CC == ISD::SETOLE ||
3355 CondCode = ARMCC::GE;
3357 // and GT for opcodes that return false for 'equality'.
3358 else if (CC == ISD::SETUGT || CC == ISD::SETOGT || CC == ISD::SETOLT ||
3360 CondCode = ARMCC::GT;
3362 // Since we are constrained to GE/GT, if the opcode contains 'less', we need
3363 // to swap the compare operands.
3364 if (CC == ISD::SETOLE || CC == ISD::SETULE || CC == ISD::SETOLT ||
3368 // Both GT and GE are ordered comparisons, and return false for 'unordered'.
3369 // If we have an unordered opcode, we need to swap the operands to the VSEL
3370 // instruction (effectively negating the condition).
3372 // This also has the effect of swapping which one of 'less' or 'greater'
3373 // returns true, so we also swap the compare operands. It also switches
3374 // whether we return true for 'equality', so we compensate by picking the
3375 // opposite condition code to our original choice.
3376 if (CC == ISD::SETULE || CC == ISD::SETULT || CC == ISD::SETUGE ||
3377 CC == ISD::SETUGT) {
3378 swpCmpOps = !swpCmpOps;
3379 swpVselOps = !swpVselOps;
3380 CondCode = CondCode == ARMCC::GT ? ARMCC::GE : ARMCC::GT;
3383 // 'ordered' is 'anything but unordered', so use the VS condition code and
3384 // swap the VSEL operands.
3385 if (CC == ISD::SETO) {
3386 CondCode = ARMCC::VS;
3390 // 'unordered or not equal' is 'anything but equal', so use the EQ condition
3391 // code and swap the VSEL operands.
3392 if (CC == ISD::SETUNE) {
3393 CondCode = ARMCC::EQ;
3398 SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
3399 EVT VT = Op.getValueType();
3400 SDValue LHS = Op.getOperand(0);
3401 SDValue RHS = Op.getOperand(1);
3402 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
3403 SDValue TrueVal = Op.getOperand(2);
3404 SDValue FalseVal = Op.getOperand(3);
3407 if (LHS.getValueType() == MVT::i32) {
3408 // Try to generate VSEL on ARMv8.
3409 // The VSEL instruction can't use all the usual ARM condition
3410 // codes: it only has two bits to select the condition code, so it's
3411 // constrained to use only GE, GT, VS and EQ.
3413 // To implement all the various ISD::SETXXX opcodes, we sometimes need to
3414 // swap the operands of the previous compare instruction (effectively
3415 // inverting the compare condition, swapping 'less' and 'greater') and
3416 // sometimes need to swap the operands to the VSEL (which inverts the
3417 // condition in the sense of firing whenever the previous condition didn't)
3418 if (getSubtarget()->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3419 TrueVal.getValueType() == MVT::f64)) {
3420 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3421 if (CondCode == ARMCC::LT || CondCode == ARMCC::LE ||
3422 CondCode == ARMCC::VC || CondCode == ARMCC::NE) {
3423 CC = getInverseCCForVSEL(CC);
3424 std::swap(TrueVal, FalseVal);
3429 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3430 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3431 return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,
3435 ARMCC::CondCodes CondCode, CondCode2;
3436 FPCCToARMCC(CC, CondCode, CondCode2);
3438 // Try to generate VSEL on ARMv8.
3439 if (getSubtarget()->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3440 TrueVal.getValueType() == MVT::f64)) {
3441 // We can select VMAXNM/VMINNM from a compare followed by a select with the
3442 // same operands, as follows:
3443 // c = fcmp [ogt, olt, ugt, ult] a, b
3445 // We only do this in unsafe-fp-math, because signed zeros and NaNs are
3446 // handled differently than the original code sequence.
3447 if (getTargetMachine().Options.UnsafeFPMath && LHS == TrueVal &&
3449 if (CC == ISD::SETOGT || CC == ISD::SETUGT)
3450 return DAG.getNode(ARMISD::VMAXNM, dl, VT, TrueVal, FalseVal);
3451 if (CC == ISD::SETOLT || CC == ISD::SETULT)
3452 return DAG.getNode(ARMISD::VMINNM, dl, VT, TrueVal, FalseVal);
3455 bool swpCmpOps = false;
3456 bool swpVselOps = false;
3457 checkVSELConstraints(CC, CondCode, swpCmpOps, swpVselOps);
3459 if (CondCode == ARMCC::GT || CondCode == ARMCC::GE ||
3460 CondCode == ARMCC::VS || CondCode == ARMCC::EQ) {
3462 std::swap(LHS, RHS);
3464 std::swap(TrueVal, FalseVal);
3468 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
3469 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
3470 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3471 SDValue Result = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal,
3473 if (CondCode2 != ARMCC::AL) {
3474 SDValue ARMcc2 = DAG.getConstant(CondCode2, MVT::i32);
3475 // FIXME: Needs another CMP because flag can have but one use.
3476 SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
3477 Result = DAG.getNode(ARMISD::CMOV, dl, VT,
3478 Result, TrueVal, ARMcc2, CCR, Cmp2);
3483 /// canChangeToInt - Given the fp compare operand, return true if it is suitable
3484 /// to morph to an integer compare sequence.
3485 static bool canChangeToInt(SDValue Op, bool &SeenZero,
3486 const ARMSubtarget *Subtarget) {
3487 SDNode *N = Op.getNode();
3488 if (!N->hasOneUse())
3489 // Otherwise it requires moving the value from fp to integer registers.
3491 if (!N->getNumValues())
3493 EVT VT = Op.getValueType();
3494 if (VT != MVT::f32 && !Subtarget->isFPBrccSlow())
3495 // f32 case is generally profitable. f64 case only makes sense when vcmpe +
3496 // vmrs are very slow, e.g. cortex-a8.
3499 if (isFloatingPointZero(Op)) {
3503 return ISD::isNormalLoad(N);
3506 static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) {
3507 if (isFloatingPointZero(Op))
3508 return DAG.getConstant(0, MVT::i32);
3510 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op))
3511 return DAG.getLoad(MVT::i32, SDLoc(Op),
3512 Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(),
3513 Ld->isVolatile(), Ld->isNonTemporal(),
3514 Ld->isInvariant(), Ld->getAlignment());
3516 llvm_unreachable("Unknown VFP cmp argument!");
3519 static void expandf64Toi32(SDValue Op, SelectionDAG &DAG,
3520 SDValue &RetVal1, SDValue &RetVal2) {
3521 if (isFloatingPointZero(Op)) {
3522 RetVal1 = DAG.getConstant(0, MVT::i32);
3523 RetVal2 = DAG.getConstant(0, MVT::i32);
3527 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) {
3528 SDValue Ptr = Ld->getBasePtr();
3529 RetVal1 = DAG.getLoad(MVT::i32, SDLoc(Op),
3530 Ld->getChain(), Ptr,
3531 Ld->getPointerInfo(),
3532 Ld->isVolatile(), Ld->isNonTemporal(),
3533 Ld->isInvariant(), Ld->getAlignment());
3535 EVT PtrType = Ptr.getValueType();
3536 unsigned NewAlign = MinAlign(Ld->getAlignment(), 4);
3537 SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(Op),
3538 PtrType, Ptr, DAG.getConstant(4, PtrType));
3539 RetVal2 = DAG.getLoad(MVT::i32, SDLoc(Op),
3540 Ld->getChain(), NewPtr,
3541 Ld->getPointerInfo().getWithOffset(4),
3542 Ld->isVolatile(), Ld->isNonTemporal(),
3543 Ld->isInvariant(), NewAlign);
3547 llvm_unreachable("Unknown VFP cmp argument!");
3550 /// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some
3551 /// f32 and even f64 comparisons to integer ones.
3553 ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
3554 SDValue Chain = Op.getOperand(0);
3555 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3556 SDValue LHS = Op.getOperand(2);
3557 SDValue RHS = Op.getOperand(3);
3558 SDValue Dest = Op.getOperand(4);
3561 bool LHSSeenZero = false;
3562 bool LHSOk = canChangeToInt(LHS, LHSSeenZero, Subtarget);
3563 bool RHSSeenZero = false;
3564 bool RHSOk = canChangeToInt(RHS, RHSSeenZero, Subtarget);
3565 if (LHSOk && RHSOk && (LHSSeenZero || RHSSeenZero)) {
3566 // If unsafe fp math optimization is enabled and there are no other uses of
3567 // the CMP operands, and the condition code is EQ or NE, we can optimize it
3568 // to an integer comparison.
3569 if (CC == ISD::SETOEQ)
3571 else if (CC == ISD::SETUNE)
3574 SDValue Mask = DAG.getConstant(0x7fffffff, MVT::i32);
3576 if (LHS.getValueType() == MVT::f32) {
3577 LHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3578 bitcastf32Toi32(LHS, DAG), Mask);
3579 RHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3580 bitcastf32Toi32(RHS, DAG), Mask);
3581 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3582 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3583 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3584 Chain, Dest, ARMcc, CCR, Cmp);
3589 expandf64Toi32(LHS, DAG, LHS1, LHS2);
3590 expandf64Toi32(RHS, DAG, RHS1, RHS2);
3591 LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask);
3592 RHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, RHS2, Mask);
3593 ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3594 ARMcc = DAG.getConstant(CondCode, MVT::i32);
3595 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3596 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest };
3597 return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops);
3603 SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3604 SDValue Chain = Op.getOperand(0);
3605 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3606 SDValue LHS = Op.getOperand(2);
3607 SDValue RHS = Op.getOperand(3);
3608 SDValue Dest = Op.getOperand(4);
3611 if (LHS.getValueType() == MVT::i32) {
3613 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3614 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3615 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3616 Chain, Dest, ARMcc, CCR, Cmp);
3619 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3621 if (getTargetMachine().Options.UnsafeFPMath &&
3622 (CC == ISD::SETEQ || CC == ISD::SETOEQ ||
3623 CC == ISD::SETNE || CC == ISD::SETUNE)) {
3624 SDValue Result = OptimizeVFPBrcond(Op, DAG);
3625 if (Result.getNode())
3629 ARMCC::CondCodes CondCode, CondCode2;
3630 FPCCToARMCC(CC, CondCode, CondCode2);
3632 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
3633 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
3634 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3635 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3636 SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp };
3637 SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
3638 if (CondCode2 != ARMCC::AL) {
3639 ARMcc = DAG.getConstant(CondCode2, MVT::i32);
3640 SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) };
3641 Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
3646 SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
3647 SDValue Chain = Op.getOperand(0);
3648 SDValue Table = Op.getOperand(1);
3649 SDValue Index = Op.getOperand(2);
3652 EVT PTy = getPointerTy();
3653 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
3654 ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
3655 SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy);
3656 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
3657 Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI, UId);
3658 Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, PTy));
3659 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3660 if (Subtarget->isThumb2()) {
3661 // Thumb2 uses a two-level jump. That is, it jumps into the jump table
3662 // which does another jump to the destination. This also makes it easier
3663 // to translate it to TBB / TBH later.
3664 // FIXME: This might not work if the function is extremely large.
3665 return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
3666 Addr, Op.getOperand(2), JTI, UId);
3668 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
3669 Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
3670 MachinePointerInfo::getJumpTable(),
3671 false, false, false, 0);
3672 Chain = Addr.getValue(1);
3673 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
3674 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
3676 Addr = DAG.getLoad(PTy, dl, Chain, Addr,
3677 MachinePointerInfo::getJumpTable(),
3678 false, false, false, 0);
3679 Chain = Addr.getValue(1);
3680 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
3684 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
3685 EVT VT = Op.getValueType();
3688 if (Op.getValueType().getVectorElementType() == MVT::i32) {
3689 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::f32)
3691 return DAG.UnrollVectorOp(Op.getNode());
3694 assert(Op.getOperand(0).getValueType() == MVT::v4f32 &&
3695 "Invalid type for custom lowering!");
3696 if (VT != MVT::v4i16)
3697 return DAG.UnrollVectorOp(Op.getNode());
3699 Op = DAG.getNode(Op.getOpcode(), dl, MVT::v4i32, Op.getOperand(0));
3700 return DAG.getNode(ISD::TRUNCATE, dl, VT, Op);
3703 static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
3704 EVT VT = Op.getValueType();
3706 return LowerVectorFP_TO_INT(Op, DAG);
3711 switch (Op.getOpcode()) {
3712 default: llvm_unreachable("Invalid opcode!");
3713 case ISD::FP_TO_SINT:
3714 Opc = ARMISD::FTOSI;
3716 case ISD::FP_TO_UINT:
3717 Opc = ARMISD::FTOUI;
3720 Op = DAG.getNode(Opc, dl, MVT::f32, Op.getOperand(0));
3721 return DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
3724 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3725 EVT VT = Op.getValueType();
3728 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::i32) {
3729 if (VT.getVectorElementType() == MVT::f32)
3731 return DAG.UnrollVectorOp(Op.getNode());
3734 assert(Op.getOperand(0).getValueType() == MVT::v4i16 &&
3735 "Invalid type for custom lowering!");
3736 if (VT != MVT::v4f32)
3737 return DAG.UnrollVectorOp(Op.getNode());
3741 switch (Op.getOpcode()) {
3742 default: llvm_unreachable("Invalid opcode!");
3743 case ISD::SINT_TO_FP:
3744 CastOpc = ISD::SIGN_EXTEND;
3745 Opc = ISD::SINT_TO_FP;
3747 case ISD::UINT_TO_FP:
3748 CastOpc = ISD::ZERO_EXTEND;
3749 Opc = ISD::UINT_TO_FP;
3753 Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0));
3754 return DAG.getNode(Opc, dl, VT, Op);
3757 static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3758 EVT VT = Op.getValueType();
3760 return LowerVectorINT_TO_FP(Op, DAG);
3765 switch (Op.getOpcode()) {
3766 default: llvm_unreachable("Invalid opcode!");
3767 case ISD::SINT_TO_FP:
3768 Opc = ARMISD::SITOF;
3770 case ISD::UINT_TO_FP:
3771 Opc = ARMISD::UITOF;
3775 Op = DAG.getNode(ISD::BITCAST, dl, MVT::f32, Op.getOperand(0));
3776 return DAG.getNode(Opc, dl, VT, Op);
3779 SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
3780 // Implement fcopysign with a fabs and a conditional fneg.
3781 SDValue Tmp0 = Op.getOperand(0);
3782 SDValue Tmp1 = Op.getOperand(1);
3784 EVT VT = Op.getValueType();
3785 EVT SrcVT = Tmp1.getValueType();
3786 bool InGPR = Tmp0.getOpcode() == ISD::BITCAST ||
3787 Tmp0.getOpcode() == ARMISD::VMOVDRR;
3788 bool UseNEON = !InGPR && Subtarget->hasNEON();
3791 // Use VBSL to copy the sign bit.
3792 unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80);
3793 SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32,
3794 DAG.getTargetConstant(EncodedVal, MVT::i32));
3795 EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64;
3797 Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3798 DAG.getNode(ISD::BITCAST, dl, OpVT, Mask),
3799 DAG.getConstant(32, MVT::i32));
3800 else /*if (VT == MVT::f32)*/
3801 Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0);
3802 if (SrcVT == MVT::f32) {
3803 Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1);
3805 Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3806 DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1),
3807 DAG.getConstant(32, MVT::i32));
3808 } else if (VT == MVT::f32)
3809 Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64,
3810 DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1),
3811 DAG.getConstant(32, MVT::i32));
3812 Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0);
3813 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1);
3815 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff),
3817 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes);
3818 SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask,
3819 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes));
3821 SDValue Res = DAG.getNode(ISD::OR, dl, OpVT,
3822 DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask),
3823 DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot));
3824 if (VT == MVT::f32) {
3825 Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res);
3826 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res,
3827 DAG.getConstant(0, MVT::i32));
3829 Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res);
3835 // Bitcast operand 1 to i32.
3836 if (SrcVT == MVT::f64)
3837 Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
3839 Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1);
3841 // Or in the signbit with integer operations.
3842 SDValue Mask1 = DAG.getConstant(0x80000000, MVT::i32);
3843 SDValue Mask2 = DAG.getConstant(0x7fffffff, MVT::i32);
3844 Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1);
3845 if (VT == MVT::f32) {
3846 Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32,
3847 DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2);
3848 return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
3849 DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1));
3852 // f64: Or the high part with signbit and then combine two parts.
3853 Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
3855 SDValue Lo = Tmp0.getValue(0);
3856 SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2);
3857 Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1);
3858 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
3861 SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{
3862 MachineFunction &MF = DAG.getMachineFunction();
3863 MachineFrameInfo *MFI = MF.getFrameInfo();
3864 MFI->setReturnAddressIsTaken(true);
3866 if (verifyReturnAddressArgumentIsConstant(Op, DAG))
3869 EVT VT = Op.getValueType();
3871 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
3873 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
3874 SDValue Offset = DAG.getConstant(4, MVT::i32);
3875 return DAG.getLoad(VT, dl, DAG.getEntryNode(),
3876 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
3877 MachinePointerInfo(), false, false, false, 0);
3880 // Return LR, which contains the return address. Mark it an implicit live-in.
3881 unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32));
3882 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
3885 SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
3886 const ARMBaseRegisterInfo &ARI =
3887 *static_cast<const ARMBaseRegisterInfo*>(RegInfo);
3888 MachineFunction &MF = DAG.getMachineFunction();
3889 MachineFrameInfo *MFI = MF.getFrameInfo();
3890 MFI->setFrameAddressIsTaken(true);
3892 EVT VT = Op.getValueType();
3893 SDLoc dl(Op); // FIXME probably not meaningful
3894 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
3895 unsigned FrameReg = ARI.getFrameRegister(MF);
3896 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
3898 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
3899 MachinePointerInfo(),
3900 false, false, false, 0);
3904 // FIXME? Maybe this could be a TableGen attribute on some registers and
3905 // this table could be generated automatically from RegInfo.
3906 unsigned ARMTargetLowering::getRegisterByName(const char* RegName,
3908 unsigned Reg = StringSwitch<unsigned>(RegName)
3909 .Case("sp", ARM::SP)
3913 report_fatal_error("Invalid register name global variable");
3916 /// ExpandBITCAST - If the target supports VFP, this function is called to
3917 /// expand a bit convert where either the source or destination type is i64 to
3918 /// use a VMOVDRR or VMOVRRD node. This should not be done when the non-i64
3919 /// operand type is illegal (e.g., v2f32 for a target that doesn't support
3920 /// vectors), since the legalizer won't know what to do with that.
3921 static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) {
3922 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3924 SDValue Op = N->getOperand(0);
3926 // This function is only supposed to be called for i64 types, either as the
3927 // source or destination of the bit convert.
3928 EVT SrcVT = Op.getValueType();
3929 EVT DstVT = N->getValueType(0);
3930 assert((SrcVT == MVT::i64 || DstVT == MVT::i64) &&
3931 "ExpandBITCAST called for non-i64 type");
3933 // Turn i64->f64 into VMOVDRR.
3934 if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) {
3935 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
3936 DAG.getConstant(0, MVT::i32));
3937 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
3938 DAG.getConstant(1, MVT::i32));
3939 return DAG.getNode(ISD::BITCAST, dl, DstVT,
3940 DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi));
3943 // Turn f64->i64 into VMOVRRD.
3944 if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) {
3946 if (TLI.isBigEndian() && SrcVT.isVector() &&
3947 SrcVT.getVectorNumElements() > 1)
3948 Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
3949 DAG.getVTList(MVT::i32, MVT::i32),
3950 DAG.getNode(ARMISD::VREV64, dl, SrcVT, Op));
3952 Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
3953 DAG.getVTList(MVT::i32, MVT::i32), Op);
3954 // Merge the pieces into a single i64 value.
3955 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
3961 /// getZeroVector - Returns a vector of specified type with all zero elements.
3962 /// Zero vectors are used to represent vector negation and in those cases
3963 /// will be implemented with the NEON VNEG instruction. However, VNEG does
3964 /// not support i64 elements, so sometimes the zero vectors will need to be
3965 /// explicitly constructed. Regardless, use a canonical VMOV to create the
3967 static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, SDLoc dl) {
3968 assert(VT.isVector() && "Expected a vector type");
3969 // The canonical modified immediate encoding of a zero vector is....0!
3970 SDValue EncodedVal = DAG.getTargetConstant(0, MVT::i32);
3971 EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
3972 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal);
3973 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
3976 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
3977 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
3978 SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op,
3979 SelectionDAG &DAG) const {
3980 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
3981 EVT VT = Op.getValueType();
3982 unsigned VTBits = VT.getSizeInBits();
3984 SDValue ShOpLo = Op.getOperand(0);
3985 SDValue ShOpHi = Op.getOperand(1);
3986 SDValue ShAmt = Op.getOperand(2);
3988 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
3990 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
3992 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
3993 DAG.getConstant(VTBits, MVT::i32), ShAmt);
3994 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
3995 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
3996 DAG.getConstant(VTBits, MVT::i32));
3997 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
3998 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
3999 SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
4001 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
4002 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
4004 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
4005 SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc,
4008 SDValue Ops[2] = { Lo, Hi };
4009 return DAG.getMergeValues(Ops, dl);
4012 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
4013 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
4014 SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op,
4015 SelectionDAG &DAG) const {
4016 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4017 EVT VT = Op.getValueType();
4018 unsigned VTBits = VT.getSizeInBits();
4020 SDValue ShOpLo = Op.getOperand(0);
4021 SDValue ShOpHi = Op.getOperand(1);
4022 SDValue ShAmt = Op.getOperand(2);
4025 assert(Op.getOpcode() == ISD::SHL_PARTS);
4026 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
4027 DAG.getConstant(VTBits, MVT::i32), ShAmt);
4028 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
4029 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
4030 DAG.getConstant(VTBits, MVT::i32));
4031 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
4032 SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
4034 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4035 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
4036 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
4038 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
4039 SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc,
4042 SDValue Ops[2] = { Lo, Hi };
4043 return DAG.getMergeValues(Ops, dl);
4046 SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
4047 SelectionDAG &DAG) const {
4048 // The rounding mode is in bits 23:22 of the FPSCR.
4049 // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0
4050 // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3)
4051 // so that the shift + and get folded into a bitfield extract.
4053 SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32,
4054 DAG.getConstant(Intrinsic::arm_get_fpscr,
4056 SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR,
4057 DAG.getConstant(1U << 22, MVT::i32));
4058 SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds,
4059 DAG.getConstant(22, MVT::i32));
4060 return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE,
4061 DAG.getConstant(3, MVT::i32));
4064 static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG,
4065 const ARMSubtarget *ST) {
4066 EVT VT = N->getValueType(0);
4069 if (!ST->hasV6T2Ops())
4072 SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0));
4073 return DAG.getNode(ISD::CTLZ, dl, VT, rbit);
4076 /// getCTPOP16BitCounts - Returns a v8i8/v16i8 vector containing the bit-count
4077 /// for each 16-bit element from operand, repeated. The basic idea is to
4078 /// leverage vcnt to get the 8-bit counts, gather and add the results.
4080 /// Trace for v4i16:
4081 /// input = [v0 v1 v2 v3 ] (vi 16-bit element)
4082 /// cast: N0 = [w0 w1 w2 w3 w4 w5 w6 w7] (v0 = [w0 w1], wi 8-bit element)
4083 /// vcnt: N1 = [b0 b1 b2 b3 b4 b5 b6 b7] (bi = bit-count of 8-bit element wi)
4084 /// vrev: N2 = [b1 b0 b3 b2 b5 b4 b7 b6]
4085 /// [b0 b1 b2 b3 b4 b5 b6 b7]
4086 /// +[b1 b0 b3 b2 b5 b4 b7 b6]
4087 /// N3=N1+N2 = [k0 k0 k1 k1 k2 k2 k3 k3] (k0 = b0+b1 = bit-count of 16-bit v0,
4088 /// vuzp: = [k0 k1 k2 k3 k0 k1 k2 k3] each ki is 8-bits)
4089 static SDValue getCTPOP16BitCounts(SDNode *N, SelectionDAG &DAG) {
4090 EVT VT = N->getValueType(0);
4093 EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8;
4094 SDValue N0 = DAG.getNode(ISD::BITCAST, DL, VT8Bit, N->getOperand(0));
4095 SDValue N1 = DAG.getNode(ISD::CTPOP, DL, VT8Bit, N0);
4096 SDValue N2 = DAG.getNode(ARMISD::VREV16, DL, VT8Bit, N1);
4097 SDValue N3 = DAG.getNode(ISD::ADD, DL, VT8Bit, N1, N2);
4098 return DAG.getNode(ARMISD::VUZP, DL, VT8Bit, N3, N3);
4101 /// lowerCTPOP16BitElements - Returns a v4i16/v8i16 vector containing the
4102 /// bit-count for each 16-bit element from the operand. We need slightly
4103 /// different sequencing for v4i16 and v8i16 to stay within NEON's available
4104 /// 64/128-bit registers.
4106 /// Trace for v4i16:
4107 /// input = [v0 v1 v2 v3 ] (vi 16-bit element)
4108 /// v8i8: BitCounts = [k0 k1 k2 k3 k0 k1 k2 k3 ] (ki is the bit-count of vi)
4109 /// v8i16:Extended = [k0 k1 k2 k3 k0 k1 k2 k3 ]
4110 /// v4i16:Extracted = [k0 k1 k2 k3 ]
4111 static SDValue lowerCTPOP16BitElements(SDNode *N, SelectionDAG &DAG) {
4112 EVT VT = N->getValueType(0);
4115 SDValue BitCounts = getCTPOP16BitCounts(N, DAG);
4116 if (VT.is64BitVector()) {
4117 SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, BitCounts);
4118 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, Extended,
4119 DAG.getIntPtrConstant(0));
4121 SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v8i8,
4122 BitCounts, DAG.getIntPtrConstant(0));
4123 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, Extracted);
4127 /// lowerCTPOP32BitElements - Returns a v2i32/v4i32 vector containing the
4128 /// bit-count for each 32-bit element from the operand. The idea here is
4129 /// to split the vector into 16-bit elements, leverage the 16-bit count
4130 /// routine, and then combine the results.
4132 /// Trace for v2i32 (v4i32 similar with Extracted/Extended exchanged):
4133 /// input = [v0 v1 ] (vi: 32-bit elements)
4134 /// Bitcast = [w0 w1 w2 w3 ] (wi: 16-bit elements, v0 = [w0 w1])
4135 /// Counts16 = [k0 k1 k2 k3 ] (ki: 16-bit elements, bit-count of wi)
4136 /// vrev: N0 = [k1 k0 k3 k2 ]
4138 /// N1 =+[k1 k0 k3 k2 ]
4140 /// N2 =+[k1 k3 k0 k2 ]
4142 /// Extended =+[k1 k3 k0 k2 ]
4144 /// Extracted=+[k1 k3 ]
4146 static SDValue lowerCTPOP32BitElements(SDNode *N, SelectionDAG &DAG) {
4147 EVT VT = N->getValueType(0);
4150 EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16;
4152 SDValue Bitcast = DAG.getNode(ISD::BITCAST, DL, VT16Bit, N->getOperand(0));
4153 SDValue Counts16 = lowerCTPOP16BitElements(Bitcast.getNode(), DAG);
4154 SDValue N0 = DAG.getNode(ARMISD::VREV32, DL, VT16Bit, Counts16);
4155 SDValue N1 = DAG.getNode(ISD::ADD, DL, VT16Bit, Counts16, N0);
4156 SDValue N2 = DAG.getNode(ARMISD::VUZP, DL, VT16Bit, N1, N1);
4158 if (VT.is64BitVector()) {
4159 SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, N2);
4160 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i32, Extended,
4161 DAG.getIntPtrConstant(0));
4163 SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, N2,
4164 DAG.getIntPtrConstant(0));
4165 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, Extracted);
4169 static SDValue LowerCTPOP(SDNode *N, SelectionDAG &DAG,
4170 const ARMSubtarget *ST) {
4171 EVT VT = N->getValueType(0);
4173 assert(ST->hasNEON() && "Custom ctpop lowering requires NEON.");
4174 assert((VT == MVT::v2i32 || VT == MVT::v4i32 ||
4175 VT == MVT::v4i16 || VT == MVT::v8i16) &&
4176 "Unexpected type for custom ctpop lowering");
4178 if (VT.getVectorElementType() == MVT::i32)
4179 return lowerCTPOP32BitElements(N, DAG);
4181 return lowerCTPOP16BitElements(N, DAG);
4184 static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
4185 const ARMSubtarget *ST) {
4186 EVT VT = N->getValueType(0);
4192 // Lower vector shifts on NEON to use VSHL.
4193 assert(ST->hasNEON() && "unexpected vector shift");
4195 // Left shifts translate directly to the vshiftu intrinsic.
4196 if (N->getOpcode() == ISD::SHL)
4197 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4198 DAG.getConstant(Intrinsic::arm_neon_vshiftu, MVT::i32),
4199 N->getOperand(0), N->getOperand(1));
4201 assert((N->getOpcode() == ISD::SRA ||
4202 N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
4204 // NEON uses the same intrinsics for both left and right shifts. For
4205 // right shifts, the shift amounts are negative, so negate the vector of
4207 EVT ShiftVT = N->getOperand(1).getValueType();
4208 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
4209 getZeroVector(ShiftVT, DAG, dl),
4211 Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
4212 Intrinsic::arm_neon_vshifts :
4213 Intrinsic::arm_neon_vshiftu);
4214 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4215 DAG.getConstant(vshiftInt, MVT::i32),
4216 N->getOperand(0), NegatedCount);
4219 static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG,
4220 const ARMSubtarget *ST) {
4221 EVT VT = N->getValueType(0);
4224 // We can get here for a node like i32 = ISD::SHL i32, i64
4228 assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
4229 "Unknown shift to lower!");
4231 // We only lower SRA, SRL of 1 here, all others use generic lowering.
4232 if (!isa<ConstantSDNode>(N->getOperand(1)) ||
4233 cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1)
4236 // If we are in thumb mode, we don't have RRX.
4237 if (ST->isThumb1Only()) return SDValue();
4239 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr.
4240 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
4241 DAG.getConstant(0, MVT::i32));
4242 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
4243 DAG.getConstant(1, MVT::i32));
4245 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
4246 // captures the result into a carry flag.
4247 unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
4248 Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), Hi);
4250 // The low part is an ARMISD::RRX operand, which shifts the carry in.
4251 Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
4253 // Merge the pieces into a single i64 value.
4254 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
4257 static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
4258 SDValue TmpOp0, TmpOp1;
4259 bool Invert = false;
4263 SDValue Op0 = Op.getOperand(0);
4264 SDValue Op1 = Op.getOperand(1);
4265 SDValue CC = Op.getOperand(2);
4266 EVT VT = Op.getValueType();
4267 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
4270 if (Op.getOperand(1).getValueType().isFloatingPoint()) {
4271 switch (SetCCOpcode) {
4272 default: llvm_unreachable("Illegal FP comparison");
4274 case ISD::SETNE: Invert = true; // Fallthrough
4276 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
4278 case ISD::SETLT: Swap = true; // Fallthrough
4280 case ISD::SETGT: Opc = ARMISD::VCGT; break;
4282 case ISD::SETLE: Swap = true; // Fallthrough
4284 case ISD::SETGE: Opc = ARMISD::VCGE; break;
4285 case ISD::SETUGE: Swap = true; // Fallthrough
4286 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
4287 case ISD::SETUGT: Swap = true; // Fallthrough
4288 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
4289 case ISD::SETUEQ: Invert = true; // Fallthrough
4291 // Expand this to (OLT | OGT).
4295 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
4296 Op1 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp0, TmpOp1);
4298 case ISD::SETUO: Invert = true; // Fallthrough
4300 // Expand this to (OLT | OGE).
4304 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
4305 Op1 = DAG.getNode(ARMISD::VCGE, dl, VT, TmpOp0, TmpOp1);
4309 // Integer comparisons.
4310 switch (SetCCOpcode) {
4311 default: llvm_unreachable("Illegal integer comparison");
4312 case ISD::SETNE: Invert = true;
4313 case ISD::SETEQ: Opc = ARMISD::VCEQ; break;
4314 case ISD::SETLT: Swap = true;
4315 case ISD::SETGT: Opc = ARMISD::VCGT; break;
4316 case ISD::SETLE: Swap = true;
4317 case ISD::SETGE: Opc = ARMISD::VCGE; break;
4318 case ISD::SETULT: Swap = true;
4319 case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
4320 case ISD::SETULE: Swap = true;
4321 case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
4324 // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
4325 if (Opc == ARMISD::VCEQ) {
4328 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4330 else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
4333 // Ignore bitconvert.
4334 if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST)
4335 AndOp = AndOp.getOperand(0);
4337 if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
4339 Op0 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(0));
4340 Op1 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(1));
4347 std::swap(Op0, Op1);
4349 // If one of the operands is a constant vector zero, attempt to fold the
4350 // comparison to a specialized compare-against-zero form.
4352 if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4354 else if (ISD::isBuildVectorAllZeros(Op0.getNode())) {
4355 if (Opc == ARMISD::VCGE)
4356 Opc = ARMISD::VCLEZ;
4357 else if (Opc == ARMISD::VCGT)
4358 Opc = ARMISD::VCLTZ;
4363 if (SingleOp.getNode()) {
4366 Result = DAG.getNode(ARMISD::VCEQZ, dl, VT, SingleOp); break;
4368 Result = DAG.getNode(ARMISD::VCGEZ, dl, VT, SingleOp); break;
4370 Result = DAG.getNode(ARMISD::VCLEZ, dl, VT, SingleOp); break;
4372 Result = DAG.getNode(ARMISD::VCGTZ, dl, VT, SingleOp); break;
4374 Result = DAG.getNode(ARMISD::VCLTZ, dl, VT, SingleOp); break;
4376 Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
4379 Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
4383 Result = DAG.getNOT(dl, Result, VT);
4388 /// isNEONModifiedImm - Check if the specified splat value corresponds to a
4389 /// valid vector constant for a NEON instruction with a "modified immediate"
4390 /// operand (e.g., VMOV). If so, return the encoded value.
4391 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
4392 unsigned SplatBitSize, SelectionDAG &DAG,
4393 EVT &VT, bool is128Bits, NEONModImmType type) {
4394 unsigned OpCmode, Imm;
4396 // SplatBitSize is set to the smallest size that splats the vector, so a
4397 // zero vector will always have SplatBitSize == 8. However, NEON modified
4398 // immediate instructions others than VMOV do not support the 8-bit encoding
4399 // of a zero vector, and the default encoding of zero is supposed to be the
4404 switch (SplatBitSize) {
4406 if (type != VMOVModImm)
4408 // Any 1-byte value is OK. Op=0, Cmode=1110.
4409 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
4412 VT = is128Bits ? MVT::v16i8 : MVT::v8i8;
4416 // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
4417 VT = is128Bits ? MVT::v8i16 : MVT::v4i16;
4418 if ((SplatBits & ~0xff) == 0) {
4419 // Value = 0x00nn: Op=x, Cmode=100x.
4424 if ((SplatBits & ~0xff00) == 0) {
4425 // Value = 0xnn00: Op=x, Cmode=101x.
4427 Imm = SplatBits >> 8;
4433 // NEON's 32-bit VMOV supports splat values where:
4434 // * only one byte is nonzero, or
4435 // * the least significant byte is 0xff and the second byte is nonzero, or
4436 // * the least significant 2 bytes are 0xff and the third is nonzero.
4437 VT = is128Bits ? MVT::v4i32 : MVT::v2i32;
4438 if ((SplatBits & ~0xff) == 0) {
4439 // Value = 0x000000nn: Op=x, Cmode=000x.
4444 if ((SplatBits & ~0xff00) == 0) {
4445 // Value = 0x0000nn00: Op=x, Cmode=001x.
4447 Imm = SplatBits >> 8;
4450 if ((SplatBits & ~0xff0000) == 0) {
4451 // Value = 0x00nn0000: Op=x, Cmode=010x.
4453 Imm = SplatBits >> 16;
4456 if ((SplatBits & ~0xff000000) == 0) {
4457 // Value = 0xnn000000: Op=x, Cmode=011x.
4459 Imm = SplatBits >> 24;
4463 // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC
4464 if (type == OtherModImm) return SDValue();
4466 if ((SplatBits & ~0xffff) == 0 &&
4467 ((SplatBits | SplatUndef) & 0xff) == 0xff) {
4468 // Value = 0x0000nnff: Op=x, Cmode=1100.
4470 Imm = SplatBits >> 8;
4474 if ((SplatBits & ~0xffffff) == 0 &&
4475 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
4476 // Value = 0x00nnffff: Op=x, Cmode=1101.
4478 Imm = SplatBits >> 16;
4482 // Note: there are a few 32-bit splat values (specifically: 00ffff00,
4483 // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
4484 // VMOV.I32. A (very) minor optimization would be to replicate the value
4485 // and fall through here to test for a valid 64-bit splat. But, then the
4486 // caller would also need to check and handle the change in size.
4490 if (type != VMOVModImm)
4492 // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
4493 uint64_t BitMask = 0xff;
4495 unsigned ImmMask = 1;
4497 for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
4498 if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
4501 } else if ((SplatBits & BitMask) != 0) {
4507 // Op=1, Cmode=1110.
4509 VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
4514 llvm_unreachable("unexpected size for isNEONModifiedImm");
4517 unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm);
4518 return DAG.getTargetConstant(EncodedVal, MVT::i32);
4521 SDValue ARMTargetLowering::LowerConstantFP(SDValue Op, SelectionDAG &DAG,
4522 const ARMSubtarget *ST) const {
4526 bool IsDouble = Op.getValueType() == MVT::f64;
4527 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Op);
4529 // Try splatting with a VMOV.f32...
4530 APFloat FPVal = CFP->getValueAPF();
4531 int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal);
4534 if (IsDouble || !ST->useNEONForSinglePrecisionFP()) {
4535 // We have code in place to select a valid ConstantFP already, no need to
4540 // It's a float and we are trying to use NEON operations where
4541 // possible. Lower it to a splat followed by an extract.
4543 SDValue NewVal = DAG.getTargetConstant(ImmVal, MVT::i32);
4544 SDValue VecConstant = DAG.getNode(ARMISD::VMOVFPIMM, DL, MVT::v2f32,
4546 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecConstant,
4547 DAG.getConstant(0, MVT::i32));
4550 // The rest of our options are NEON only, make sure that's allowed before
4552 if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP()))
4556 uint64_t iVal = FPVal.bitcastToAPInt().getZExtValue();
4558 // It wouldn't really be worth bothering for doubles except for one very
4559 // important value, which does happen to match: 0.0. So make sure we don't do
4561 if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32))
4564 // Try a VMOV.i32 (FIXME: i8, i16, or i64 could work too).
4565 SDValue NewVal = isNEONModifiedImm(iVal & 0xffffffffU, 0, 32, DAG, VMovVT,
4567 if (NewVal != SDValue()) {
4569 SDValue VecConstant = DAG.getNode(ARMISD::VMOVIMM, DL, VMovVT,
4572 return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4574 // It's a float: cast and extract a vector element.
4575 SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4577 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4578 DAG.getConstant(0, MVT::i32));
4581 // Finally, try a VMVN.i32
4582 NewVal = isNEONModifiedImm(~iVal & 0xffffffffU, 0, 32, DAG, VMovVT,
4584 if (NewVal != SDValue()) {
4586 SDValue VecConstant = DAG.getNode(ARMISD::VMVNIMM, DL, VMovVT, NewVal);
4589 return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4591 // It's a float: cast and extract a vector element.
4592 SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4594 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4595 DAG.getConstant(0, MVT::i32));
4601 // check if an VEXT instruction can handle the shuffle mask when the
4602 // vector sources of the shuffle are the same.
4603 static bool isSingletonVEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
4604 unsigned NumElts = VT.getVectorNumElements();
4606 // Assume that the first shuffle index is not UNDEF. Fail if it is.
4612 // If this is a VEXT shuffle, the immediate value is the index of the first
4613 // element. The other shuffle indices must be the successive elements after
4615 unsigned ExpectedElt = Imm;
4616 for (unsigned i = 1; i < NumElts; ++i) {
4617 // Increment the expected index. If it wraps around, just follow it
4618 // back to index zero and keep going.
4620 if (ExpectedElt == NumElts)
4623 if (M[i] < 0) continue; // ignore UNDEF indices
4624 if (ExpectedElt != static_cast<unsigned>(M[i]))
4632 static bool isVEXTMask(ArrayRef<int> M, EVT VT,
4633 bool &ReverseVEXT, unsigned &Imm) {
4634 unsigned NumElts = VT.getVectorNumElements();
4635 ReverseVEXT = false;
4637 // Assume that the first shuffle index is not UNDEF. Fail if it is.
4643 // If this is a VEXT shuffle, the immediate value is the index of the first
4644 // element. The other shuffle indices must be the successive elements after
4646 unsigned ExpectedElt = Imm;
4647 for (unsigned i = 1; i < NumElts; ++i) {
4648 // Increment the expected index. If it wraps around, it may still be
4649 // a VEXT but the source vectors must be swapped.
4651 if (ExpectedElt == NumElts * 2) {
4656 if (M[i] < 0) continue; // ignore UNDEF indices
4657 if (ExpectedElt != static_cast<unsigned>(M[i]))
4661 // Adjust the index value if the source operands will be swapped.
4668 /// isVREVMask - Check if a vector shuffle corresponds to a VREV
4669 /// instruction with the specified blocksize. (The order of the elements
4670 /// within each block of the vector is reversed.)
4671 static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
4672 assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
4673 "Only possible block sizes for VREV are: 16, 32, 64");
4675 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4679 unsigned NumElts = VT.getVectorNumElements();
4680 unsigned BlockElts = M[0] + 1;
4681 // If the first shuffle index is UNDEF, be optimistic.
4683 BlockElts = BlockSize / EltSz;
4685 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
4688 for (unsigned i = 0; i < NumElts; ++i) {
4689 if (M[i] < 0) continue; // ignore UNDEF indices
4690 if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
4697 static bool isVTBLMask(ArrayRef<int> M, EVT VT) {
4698 // We can handle <8 x i8> vector shuffles. If the index in the mask is out of
4699 // range, then 0 is placed into the resulting vector. So pretty much any mask
4700 // of 8 elements can work here.
4701 return VT == MVT::v8i8 && M.size() == 8;
4704 static bool isVTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4705 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4709 unsigned NumElts = VT.getVectorNumElements();
4710 WhichResult = (M[0] == 0 ? 0 : 1);
4711 for (unsigned i = 0; i < NumElts; i += 2) {
4712 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
4713 (M[i+1] >= 0 && (unsigned) M[i+1] != i + NumElts + WhichResult))
4719 /// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
4720 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4721 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
4722 static bool isVTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
4723 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4727 unsigned NumElts = VT.getVectorNumElements();
4728 WhichResult = (M[0] == 0 ? 0 : 1);
4729 for (unsigned i = 0; i < NumElts; i += 2) {
4730 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
4731 (M[i+1] >= 0 && (unsigned) M[i+1] != i + WhichResult))
4737 static bool isVUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4738 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4742 unsigned NumElts = VT.getVectorNumElements();
4743 WhichResult = (M[0] == 0 ? 0 : 1);
4744 for (unsigned i = 0; i != NumElts; ++i) {
4745 if (M[i] < 0) continue; // ignore UNDEF indices
4746 if ((unsigned) M[i] != 2 * i + WhichResult)
4750 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4751 if (VT.is64BitVector() && EltSz == 32)
4757 /// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
4758 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4759 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
4760 static bool isVUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
4761 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4765 unsigned Half = VT.getVectorNumElements() / 2;
4766 WhichResult = (M[0] == 0 ? 0 : 1);
4767 for (unsigned j = 0; j != 2; ++j) {
4768 unsigned Idx = WhichResult;
4769 for (unsigned i = 0; i != Half; ++i) {
4770 int MIdx = M[i + j * Half];
4771 if (MIdx >= 0 && (unsigned) MIdx != Idx)
4777 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4778 if (VT.is64BitVector() && EltSz == 32)
4784 static bool isVZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4785 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4789 unsigned NumElts = VT.getVectorNumElements();
4790 WhichResult = (M[0] == 0 ? 0 : 1);
4791 unsigned Idx = WhichResult * NumElts / 2;
4792 for (unsigned i = 0; i != NumElts; i += 2) {
4793 if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
4794 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx + NumElts))
4799 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4800 if (VT.is64BitVector() && EltSz == 32)
4806 /// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
4807 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4808 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
4809 static bool isVZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
4810 unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4814 unsigned NumElts = VT.getVectorNumElements();
4815 WhichResult = (M[0] == 0 ? 0 : 1);
4816 unsigned Idx = WhichResult * NumElts / 2;
4817 for (unsigned i = 0; i != NumElts; i += 2) {
4818 if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
4819 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx))
4824 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4825 if (VT.is64BitVector() && EltSz == 32)
4831 /// \return true if this is a reverse operation on an vector.
4832 static bool isReverseMask(ArrayRef<int> M, EVT VT) {
4833 unsigned NumElts = VT.getVectorNumElements();
4834 // Make sure the mask has the right size.
4835 if (NumElts != M.size())
4838 // Look for <15, ..., 3, -1, 1, 0>.
4839 for (unsigned i = 0; i != NumElts; ++i)
4840 if (M[i] >= 0 && M[i] != (int) (NumElts - 1 - i))
4846 // If N is an integer constant that can be moved into a register in one
4847 // instruction, return an SDValue of such a constant (will become a MOV
4848 // instruction). Otherwise return null.
4849 static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG,
4850 const ARMSubtarget *ST, SDLoc dl) {
4852 if (!isa<ConstantSDNode>(N))
4854 Val = cast<ConstantSDNode>(N)->getZExtValue();
4856 if (ST->isThumb1Only()) {
4857 if (Val <= 255 || ~Val <= 255)
4858 return DAG.getConstant(Val, MVT::i32);
4860 if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1)
4861 return DAG.getConstant(Val, MVT::i32);
4866 // If this is a case we can't handle, return null and let the default
4867 // expansion code take care of it.
4868 SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
4869 const ARMSubtarget *ST) const {
4870 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
4872 EVT VT = Op.getValueType();
4874 APInt SplatBits, SplatUndef;
4875 unsigned SplatBitSize;
4877 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
4878 if (SplatBitSize <= 64) {
4879 // Check if an immediate VMOV works.
4881 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
4882 SplatUndef.getZExtValue(), SplatBitSize,
4883 DAG, VmovVT, VT.is128BitVector(),
4885 if (Val.getNode()) {
4886 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val);
4887 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
4890 // Try an immediate VMVN.
4891 uint64_t NegatedImm = (~SplatBits).getZExtValue();
4892 Val = isNEONModifiedImm(NegatedImm,
4893 SplatUndef.getZExtValue(), SplatBitSize,
4894 DAG, VmovVT, VT.is128BitVector(),
4896 if (Val.getNode()) {
4897 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val);
4898 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
4901 // Use vmov.f32 to materialize other v2f32 and v4f32 splats.
4902 if ((VT == MVT::v2f32 || VT == MVT::v4f32) && SplatBitSize == 32) {
4903 int ImmVal = ARM_AM::getFP32Imm(SplatBits);
4905 SDValue Val = DAG.getTargetConstant(ImmVal, MVT::i32);
4906 return DAG.getNode(ARMISD::VMOVFPIMM, dl, VT, Val);
4912 // Scan through the operands to see if only one value is used.
4914 // As an optimisation, even if more than one value is used it may be more
4915 // profitable to splat with one value then change some lanes.
4917 // Heuristically we decide to do this if the vector has a "dominant" value,
4918 // defined as splatted to more than half of the lanes.
4919 unsigned NumElts = VT.getVectorNumElements();
4920 bool isOnlyLowElement = true;
4921 bool usesOnlyOneValue = true;
4922 bool hasDominantValue = false;
4923 bool isConstant = true;
4925 // Map of the number of times a particular SDValue appears in the
4927 DenseMap<SDValue, unsigned> ValueCounts;
4929 for (unsigned i = 0; i < NumElts; ++i) {
4930 SDValue V = Op.getOperand(i);
4931 if (V.getOpcode() == ISD::UNDEF)
4934 isOnlyLowElement = false;
4935 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
4938 ValueCounts.insert(std::make_pair(V, 0));
4939 unsigned &Count = ValueCounts[V];
4941 // Is this value dominant? (takes up more than half of the lanes)
4942 if (++Count > (NumElts / 2)) {
4943 hasDominantValue = true;
4947 if (ValueCounts.size() != 1)
4948 usesOnlyOneValue = false;
4949 if (!Value.getNode() && ValueCounts.size() > 0)
4950 Value = ValueCounts.begin()->first;
4952 if (ValueCounts.size() == 0)
4953 return DAG.getUNDEF(VT);
4955 // Loads are better lowered with insert_vector_elt/ARMISD::BUILD_VECTOR.
4956 // Keep going if we are hitting this case.
4957 if (isOnlyLowElement && !ISD::isNormalLoad(Value.getNode()))
4958 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
4960 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4962 // Use VDUP for non-constant splats. For f32 constant splats, reduce to
4963 // i32 and try again.
4964 if (hasDominantValue && EltSize <= 32) {
4968 // If we are VDUPing a value that comes directly from a vector, that will
4969 // cause an unnecessary move to and from a GPR, where instead we could
4970 // just use VDUPLANE. We can only do this if the lane being extracted
4971 // is at a constant index, as the VDUP from lane instructions only have
4972 // constant-index forms.
4973 if (Value->getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
4974 isa<ConstantSDNode>(Value->getOperand(1))) {
4975 // We need to create a new undef vector to use for the VDUPLANE if the
4976 // size of the vector from which we get the value is different than the
4977 // size of the vector that we need to create. We will insert the element
4978 // such that the register coalescer will remove unnecessary copies.
4979 if (VT != Value->getOperand(0).getValueType()) {
4980 ConstantSDNode *constIndex;
4981 constIndex = dyn_cast<ConstantSDNode>(Value->getOperand(1));
4982 assert(constIndex && "The index is not a constant!");
4983 unsigned index = constIndex->getAPIntValue().getLimitedValue() %
4984 VT.getVectorNumElements();
4985 N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
4986 DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DAG.getUNDEF(VT),
4987 Value, DAG.getConstant(index, MVT::i32)),
4988 DAG.getConstant(index, MVT::i32));
4990 N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
4991 Value->getOperand(0), Value->getOperand(1));
4993 N = DAG.getNode(ARMISD::VDUP, dl, VT, Value);
4995 if (!usesOnlyOneValue) {
4996 // The dominant value was splatted as 'N', but we now have to insert
4997 // all differing elements.
4998 for (unsigned I = 0; I < NumElts; ++I) {
4999 if (Op.getOperand(I) == Value)
5001 SmallVector<SDValue, 3> Ops;
5003 Ops.push_back(Op.getOperand(I));
5004 Ops.push_back(DAG.getConstant(I, MVT::i32));
5005 N = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Ops);
5010 if (VT.getVectorElementType().isFloatingPoint()) {
5011 SmallVector<SDValue, 8> Ops;
5012 for (unsigned i = 0; i < NumElts; ++i)
5013 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32,
5015 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
5016 SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops);
5017 Val = LowerBUILD_VECTOR(Val, DAG, ST);
5019 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5021 if (usesOnlyOneValue) {
5022 SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl);
5023 if (isConstant && Val.getNode())
5024 return DAG.getNode(ARMISD::VDUP, dl, VT, Val);
5028 // If all elements are constants and the case above didn't get hit, fall back
5029 // to the default expansion, which will generate a load from the constant
5034 // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
5036 SDValue shuffle = ReconstructShuffle(Op, DAG);
5037 if (shuffle != SDValue())
5041 // Vectors with 32- or 64-bit elements can be built by directly assigning
5042 // the subregisters. Lower it to an ARMISD::BUILD_VECTOR so the operands
5043 // will be legalized.
5044 if (EltSize >= 32) {
5045 // Do the expansion with floating-point types, since that is what the VFP
5046 // registers are defined to use, and since i64 is not legal.
5047 EVT EltVT = EVT::getFloatingPointVT(EltSize);
5048 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
5049 SmallVector<SDValue, 8> Ops;
5050 for (unsigned i = 0; i < NumElts; ++i)
5051 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i)));
5052 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
5053 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5056 // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
5057 // know the default expansion would otherwise fall back on something even
5058 // worse. For a vector with one or two non-undef values, that's
5059 // scalar_to_vector for the elements followed by a shuffle (provided the
5060 // shuffle is valid for the target) and materialization element by element
5061 // on the stack followed by a load for everything else.
5062 if (!isConstant && !usesOnlyOneValue) {
5063 SDValue Vec = DAG.getUNDEF(VT);
5064 for (unsigned i = 0 ; i < NumElts; ++i) {
5065 SDValue V = Op.getOperand(i);
5066 if (V.getOpcode() == ISD::UNDEF)
5068 SDValue LaneIdx = DAG.getConstant(i, MVT::i32);
5069 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
5077 // Gather data to see if the operation can be modelled as a
5078 // shuffle in combination with VEXTs.
5079 SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op,
5080 SelectionDAG &DAG) const {
5082 EVT VT = Op.getValueType();
5083 unsigned NumElts = VT.getVectorNumElements();
5085 SmallVector<SDValue, 2> SourceVecs;
5086 SmallVector<unsigned, 2> MinElts;
5087 SmallVector<unsigned, 2> MaxElts;
5089 for (unsigned i = 0; i < NumElts; ++i) {
5090 SDValue V = Op.getOperand(i);
5091 if (V.getOpcode() == ISD::UNDEF)
5093 else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
5094 // A shuffle can only come from building a vector from various
5095 // elements of other vectors.
5097 } else if (V.getOperand(0).getValueType().getVectorElementType() !=
5098 VT.getVectorElementType()) {
5099 // This code doesn't know how to handle shuffles where the vector
5100 // element types do not match (this happens because type legalization
5101 // promotes the return type of EXTRACT_VECTOR_ELT).
5102 // FIXME: It might be appropriate to extend this code to handle
5103 // mismatched types.
5107 // Record this extraction against the appropriate vector if possible...
5108 SDValue SourceVec = V.getOperand(0);
5109 // If the element number isn't a constant, we can't effectively
5110 // analyze what's going on.
5111 if (!isa<ConstantSDNode>(V.getOperand(1)))
5113 unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
5114 bool FoundSource = false;
5115 for (unsigned j = 0; j < SourceVecs.size(); ++j) {
5116 if (SourceVecs[j] == SourceVec) {
5117 if (MinElts[j] > EltNo)
5119 if (MaxElts[j] < EltNo)
5126 // Or record a new source if not...
5128 SourceVecs.push_back(SourceVec);
5129 MinElts.push_back(EltNo);
5130 MaxElts.push_back(EltNo);
5134 // Currently only do something sane when at most two source vectors
5136 if (SourceVecs.size() > 2)
5139 SDValue ShuffleSrcs[2] = {DAG.getUNDEF(VT), DAG.getUNDEF(VT) };
5140 int VEXTOffsets[2] = {0, 0};
5142 // This loop extracts the usage patterns of the source vectors
5143 // and prepares appropriate SDValues for a shuffle if possible.
5144 for (unsigned i = 0; i < SourceVecs.size(); ++i) {
5145 if (SourceVecs[i].getValueType() == VT) {
5146 // No VEXT necessary
5147 ShuffleSrcs[i] = SourceVecs[i];
5150 } else if (SourceVecs[i].getValueType().getVectorNumElements() < NumElts) {
5151 // It probably isn't worth padding out a smaller vector just to
5152 // break it down again in a shuffle.
5156 // Since only 64-bit and 128-bit vectors are legal on ARM and
5157 // we've eliminated the other cases...
5158 assert(SourceVecs[i].getValueType().getVectorNumElements() == 2*NumElts &&
5159 "unexpected vector sizes in ReconstructShuffle");
5161 if (MaxElts[i] - MinElts[i] >= NumElts) {
5162 // Span too large for a VEXT to cope
5166 if (MinElts[i] >= NumElts) {
5167 // The extraction can just take the second half
5168 VEXTOffsets[i] = NumElts;
5169 ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5171 DAG.getIntPtrConstant(NumElts));
5172 } else if (MaxElts[i] < NumElts) {
5173 // The extraction can just take the first half
5175 ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5177 DAG.getIntPtrConstant(0));
5179 // An actual VEXT is needed
5180 VEXTOffsets[i] = MinElts[i];
5181 SDValue VEXTSrc1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5183 DAG.getIntPtrConstant(0));
5184 SDValue VEXTSrc2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5186 DAG.getIntPtrConstant(NumElts));
5187 ShuffleSrcs[i] = DAG.getNode(ARMISD::VEXT, dl, VT, VEXTSrc1, VEXTSrc2,
5188 DAG.getConstant(VEXTOffsets[i], MVT::i32));
5192 SmallVector<int, 8> Mask;
5194 for (unsigned i = 0; i < NumElts; ++i) {
5195 SDValue Entry = Op.getOperand(i);
5196 if (Entry.getOpcode() == ISD::UNDEF) {
5201 SDValue ExtractVec = Entry.getOperand(0);
5202 int ExtractElt = cast<ConstantSDNode>(Op.getOperand(i)
5203 .getOperand(1))->getSExtValue();
5204 if (ExtractVec == SourceVecs[0]) {
5205 Mask.push_back(ExtractElt - VEXTOffsets[0]);
5207 Mask.push_back(ExtractElt + NumElts - VEXTOffsets[1]);
5211 // Final check before we try to produce nonsense...
5212 if (isShuffleMaskLegal(Mask, VT))
5213 return DAG.getVectorShuffle(VT, dl, ShuffleSrcs[0], ShuffleSrcs[1],
5219 /// isShuffleMaskLegal - Targets can use this to indicate that they only
5220 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
5221 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
5222 /// are assumed to be legal.
5224 ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
5226 if (VT.getVectorNumElements() == 4 &&
5227 (VT.is128BitVector() || VT.is64BitVector())) {
5228 unsigned PFIndexes[4];
5229 for (unsigned i = 0; i != 4; ++i) {
5233 PFIndexes[i] = M[i];
5236 // Compute the index in the perfect shuffle table.
5237 unsigned PFTableIndex =
5238 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5239 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5240 unsigned Cost = (PFEntry >> 30);
5247 unsigned Imm, WhichResult;
5249 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5250 return (EltSize >= 32 ||
5251 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
5252 isVREVMask(M, VT, 64) ||
5253 isVREVMask(M, VT, 32) ||
5254 isVREVMask(M, VT, 16) ||
5255 isVEXTMask(M, VT, ReverseVEXT, Imm) ||
5256 isVTBLMask(M, VT) ||
5257 isVTRNMask(M, VT, WhichResult) ||
5258 isVUZPMask(M, VT, WhichResult) ||
5259 isVZIPMask(M, VT, WhichResult) ||
5260 isVTRN_v_undef_Mask(M, VT, WhichResult) ||
5261 isVUZP_v_undef_Mask(M, VT, WhichResult) ||
5262 isVZIP_v_undef_Mask(M, VT, WhichResult) ||
5263 ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(M, VT)));
5266 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5267 /// the specified operations to build the shuffle.
5268 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5269 SDValue RHS, SelectionDAG &DAG,
5271 unsigned OpNum = (PFEntry >> 26) & 0x0F;
5272 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
5273 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1);
5276 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5285 OP_VUZPL, // VUZP, left result
5286 OP_VUZPR, // VUZP, right result
5287 OP_VZIPL, // VZIP, left result
5288 OP_VZIPR, // VZIP, right result
5289 OP_VTRNL, // VTRN, left result
5290 OP_VTRNR // VTRN, right result
5293 if (OpNum == OP_COPY) {
5294 if (LHSID == (1*9+2)*9+3) return LHS;
5295 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5299 SDValue OpLHS, OpRHS;
5300 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5301 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5302 EVT VT = OpLHS.getValueType();
5305 default: llvm_unreachable("Unknown shuffle opcode!");
5307 // VREV divides the vector in half and swaps within the half.
5308 if (VT.getVectorElementType() == MVT::i32 ||
5309 VT.getVectorElementType() == MVT::f32)
5310 return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
5311 // vrev <4 x i16> -> VREV32
5312 if (VT.getVectorElementType() == MVT::i16)
5313 return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS);
5314 // vrev <4 x i8> -> VREV16
5315 assert(VT.getVectorElementType() == MVT::i8);
5316 return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS);
5321 return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5322 OpLHS, DAG.getConstant(OpNum-OP_VDUP0, MVT::i32));
5326 return DAG.getNode(ARMISD::VEXT, dl, VT,
5328 DAG.getConstant(OpNum-OP_VEXT1+1, MVT::i32));
5331 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5332 OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
5335 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5336 OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
5339 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5340 OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
5344 static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op,
5345 ArrayRef<int> ShuffleMask,
5346 SelectionDAG &DAG) {
5347 // Check to see if we can use the VTBL instruction.
5348 SDValue V1 = Op.getOperand(0);
5349 SDValue V2 = Op.getOperand(1);
5352 SmallVector<SDValue, 8> VTBLMask;
5353 for (ArrayRef<int>::iterator
5354 I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I)
5355 VTBLMask.push_back(DAG.getConstant(*I, MVT::i32));
5357 if (V2.getNode()->getOpcode() == ISD::UNDEF)
5358 return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1,
5359 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
5361 return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2,
5362 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
5365 static SDValue LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(SDValue Op,
5366 SelectionDAG &DAG) {
5368 SDValue OpLHS = Op.getOperand(0);
5369 EVT VT = OpLHS.getValueType();
5371 assert((VT == MVT::v8i16 || VT == MVT::v16i8) &&
5372 "Expect an v8i16/v16i8 type");
5373 OpLHS = DAG.getNode(ARMISD::VREV64, DL, VT, OpLHS);
5374 // For a v16i8 type: After the VREV, we have got <8, ...15, 8, ..., 0>. Now,
5375 // extract the first 8 bytes into the top double word and the last 8 bytes
5376 // into the bottom double word. The v8i16 case is similar.
5377 unsigned ExtractNum = (VT == MVT::v16i8) ? 8 : 4;
5378 return DAG.getNode(ARMISD::VEXT, DL, VT, OpLHS, OpLHS,
5379 DAG.getConstant(ExtractNum, MVT::i32));
5382 static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
5383 SDValue V1 = Op.getOperand(0);
5384 SDValue V2 = Op.getOperand(1);
5386 EVT VT = Op.getValueType();
5387 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
5389 // Convert shuffles that are directly supported on NEON to target-specific
5390 // DAG nodes, instead of keeping them as shuffles and matching them again
5391 // during code selection. This is more efficient and avoids the possibility
5392 // of inconsistencies between legalization and selection.
5393 // FIXME: floating-point vectors should be canonicalized to integer vectors
5394 // of the same time so that they get CSEd properly.
5395 ArrayRef<int> ShuffleMask = SVN->getMask();
5397 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5398 if (EltSize <= 32) {
5399 if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
5400 int Lane = SVN->getSplatIndex();
5401 // If this is undef splat, generate it via "just" vdup, if possible.
5402 if (Lane == -1) Lane = 0;
5404 // Test if V1 is a SCALAR_TO_VECTOR.
5405 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5406 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5408 // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
5409 // (and probably will turn into a SCALAR_TO_VECTOR once legalization
5411 if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
5412 !isa<ConstantSDNode>(V1.getOperand(0))) {
5413 bool IsScalarToVector = true;
5414 for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i)
5415 if (V1.getOperand(i).getOpcode() != ISD::UNDEF) {
5416 IsScalarToVector = false;
5419 if (IsScalarToVector)
5420 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5422 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
5423 DAG.getConstant(Lane, MVT::i32));
5428 if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
5431 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
5432 DAG.getConstant(Imm, MVT::i32));
5435 if (isVREVMask(ShuffleMask, VT, 64))
5436 return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
5437 if (isVREVMask(ShuffleMask, VT, 32))
5438 return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
5439 if (isVREVMask(ShuffleMask, VT, 16))
5440 return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
5442 if (V2->getOpcode() == ISD::UNDEF &&
5443 isSingletonVEXTMask(ShuffleMask, VT, Imm)) {
5444 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V1,
5445 DAG.getConstant(Imm, MVT::i32));
5448 // Check for Neon shuffles that modify both input vectors in place.
5449 // If both results are used, i.e., if there are two shuffles with the same
5450 // source operands and with masks corresponding to both results of one of
5451 // these operations, DAG memoization will ensure that a single node is
5452 // used for both shuffles.
5453 unsigned WhichResult;
5454 if (isVTRNMask(ShuffleMask, VT, WhichResult))
5455 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5456 V1, V2).getValue(WhichResult);
5457 if (isVUZPMask(ShuffleMask, VT, WhichResult))
5458 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5459 V1, V2).getValue(WhichResult);
5460 if (isVZIPMask(ShuffleMask, VT, WhichResult))
5461 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5462 V1, V2).getValue(WhichResult);
5464 if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
5465 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5466 V1, V1).getValue(WhichResult);
5467 if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5468 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5469 V1, V1).getValue(WhichResult);
5470 if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5471 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5472 V1, V1).getValue(WhichResult);
5475 // If the shuffle is not directly supported and it has 4 elements, use
5476 // the PerfectShuffle-generated table to synthesize it from other shuffles.
5477 unsigned NumElts = VT.getVectorNumElements();
5479 unsigned PFIndexes[4];
5480 for (unsigned i = 0; i != 4; ++i) {
5481 if (ShuffleMask[i] < 0)
5484 PFIndexes[i] = ShuffleMask[i];
5487 // Compute the index in the perfect shuffle table.
5488 unsigned PFTableIndex =
5489 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5490 unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5491 unsigned Cost = (PFEntry >> 30);
5494 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
5497 // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs.
5498 if (EltSize >= 32) {
5499 // Do the expansion with floating-point types, since that is what the VFP
5500 // registers are defined to use, and since i64 is not legal.
5501 EVT EltVT = EVT::getFloatingPointVT(EltSize);
5502 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
5503 V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1);
5504 V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2);
5505 SmallVector<SDValue, 8> Ops;
5506 for (unsigned i = 0; i < NumElts; ++i) {
5507 if (ShuffleMask[i] < 0)
5508 Ops.push_back(DAG.getUNDEF(EltVT));
5510 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
5511 ShuffleMask[i] < (int)NumElts ? V1 : V2,
5512 DAG.getConstant(ShuffleMask[i] & (NumElts-1),
5515 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
5516 return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5519 if ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(ShuffleMask, VT))
5520 return LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(Op, DAG);
5522 if (VT == MVT::v8i8) {
5523 SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG);
5524 if (NewOp.getNode())
5531 static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
5532 // INSERT_VECTOR_ELT is legal only for immediate indexes.
5533 SDValue Lane = Op.getOperand(2);
5534 if (!isa<ConstantSDNode>(Lane))
5540 static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
5541 // EXTRACT_VECTOR_ELT is legal only for immediate indexes.
5542 SDValue Lane = Op.getOperand(1);
5543 if (!isa<ConstantSDNode>(Lane))
5546 SDValue Vec = Op.getOperand(0);
5547 if (Op.getValueType() == MVT::i32 &&
5548 Vec.getValueType().getVectorElementType().getSizeInBits() < 32) {
5550 return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
5556 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5557 // The only time a CONCAT_VECTORS operation can have legal types is when
5558 // two 64-bit vectors are concatenated to a 128-bit vector.
5559 assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
5560 "unexpected CONCAT_VECTORS");
5562 SDValue Val = DAG.getUNDEF(MVT::v2f64);
5563 SDValue Op0 = Op.getOperand(0);
5564 SDValue Op1 = Op.getOperand(1);
5565 if (Op0.getOpcode() != ISD::UNDEF)
5566 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
5567 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0),
5568 DAG.getIntPtrConstant(0));
5569 if (Op1.getOpcode() != ISD::UNDEF)
5570 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
5571 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1),
5572 DAG.getIntPtrConstant(1));
5573 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val);
5576 /// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each
5577 /// element has been zero/sign-extended, depending on the isSigned parameter,
5578 /// from an integer type half its size.
5579 static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
5581 // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32.
5582 EVT VT = N->getValueType(0);
5583 if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) {
5584 SDNode *BVN = N->getOperand(0).getNode();
5585 if (BVN->getValueType(0) != MVT::v4i32 ||
5586 BVN->getOpcode() != ISD::BUILD_VECTOR)
5588 unsigned LoElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
5589 unsigned HiElt = 1 - LoElt;
5590 ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt));
5591 ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt));
5592 ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2));
5593 ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2));
5594 if (!Lo0 || !Hi0 || !Lo1 || !Hi1)
5597 if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 &&
5598 Hi1->getSExtValue() == Lo1->getSExtValue() >> 32)
5601 if (Hi0->isNullValue() && Hi1->isNullValue())
5607 if (N->getOpcode() != ISD::BUILD_VECTOR)
5610 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
5611 SDNode *Elt = N->getOperand(i).getNode();
5612 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
5613 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5614 unsigned HalfSize = EltSize / 2;
5616 if (!isIntN(HalfSize, C->getSExtValue()))
5619 if (!isUIntN(HalfSize, C->getZExtValue()))
5630 /// isSignExtended - Check if a node is a vector value that is sign-extended
5631 /// or a constant BUILD_VECTOR with sign-extended elements.
5632 static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
5633 if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N))
5635 if (isExtendedBUILD_VECTOR(N, DAG, true))
5640 /// isZeroExtended - Check if a node is a vector value that is zero-extended
5641 /// or a constant BUILD_VECTOR with zero-extended elements.
5642 static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
5643 if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N))
5645 if (isExtendedBUILD_VECTOR(N, DAG, false))
5650 static EVT getExtensionTo64Bits(const EVT &OrigVT) {
5651 if (OrigVT.getSizeInBits() >= 64)
5654 assert(OrigVT.isSimple() && "Expecting a simple value type");
5656 MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
5657 switch (OrigSimpleTy) {
5658 default: llvm_unreachable("Unexpected Vector Type");
5667 /// AddRequiredExtensionForVMULL - Add a sign/zero extension to extend the total
5668 /// value size to 64 bits. We need a 64-bit D register as an operand to VMULL.
5669 /// We insert the required extension here to get the vector to fill a D register.
5670 static SDValue AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG,
5673 unsigned ExtOpcode) {
5674 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
5675 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
5676 // 64-bits we need to insert a new extension so that it will be 64-bits.
5677 assert(ExtTy.is128BitVector() && "Unexpected extension size");
5678 if (OrigTy.getSizeInBits() >= 64)
5681 // Must extend size to at least 64 bits to be used as an operand for VMULL.
5682 EVT NewVT = getExtensionTo64Bits(OrigTy);
5684 return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N);
5687 /// SkipLoadExtensionForVMULL - return a load of the original vector size that
5688 /// does not do any sign/zero extension. If the original vector is less
5689 /// than 64 bits, an appropriate extension will be added after the load to
5690 /// reach a total size of 64 bits. We have to add the extension separately
5691 /// because ARM does not have a sign/zero extending load for vectors.
5692 static SDValue SkipLoadExtensionForVMULL(LoadSDNode *LD, SelectionDAG& DAG) {
5693 EVT ExtendedTy = getExtensionTo64Bits(LD->getMemoryVT());
5695 // The load already has the right type.
5696 if (ExtendedTy == LD->getMemoryVT())
5697 return DAG.getLoad(LD->getMemoryVT(), SDLoc(LD), LD->getChain(),
5698 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(),
5699 LD->isNonTemporal(), LD->isInvariant(),
5700 LD->getAlignment());
5702 // We need to create a zextload/sextload. We cannot just create a load
5703 // followed by a zext/zext node because LowerMUL is also run during normal
5704 // operation legalization where we can't create illegal types.
5705 return DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), ExtendedTy,
5706 LD->getChain(), LD->getBasePtr(), LD->getPointerInfo(),
5707 LD->getMemoryVT(), LD->isVolatile(),
5708 LD->isNonTemporal(), LD->getAlignment());
5711 /// SkipExtensionForVMULL - For a node that is a SIGN_EXTEND, ZERO_EXTEND,
5712 /// extending load, or BUILD_VECTOR with extended elements, return the
5713 /// unextended value. The unextended vector should be 64 bits so that it can
5714 /// be used as an operand to a VMULL instruction. If the original vector size
5715 /// before extension is less than 64 bits we add a an extension to resize
5716 /// the vector to 64 bits.
5717 static SDValue SkipExtensionForVMULL(SDNode *N, SelectionDAG &DAG) {
5718 if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
5719 return AddRequiredExtensionForVMULL(N->getOperand(0), DAG,
5720 N->getOperand(0)->getValueType(0),
5724 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
5725 return SkipLoadExtensionForVMULL(LD, DAG);
5727 // Otherwise, the value must be a BUILD_VECTOR. For v2i64, it will
5728 // have been legalized as a BITCAST from v4i32.
5729 if (N->getOpcode() == ISD::BITCAST) {
5730 SDNode *BVN = N->getOperand(0).getNode();
5731 assert(BVN->getOpcode() == ISD::BUILD_VECTOR &&
5732 BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR");
5733 unsigned LowElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
5734 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), MVT::v2i32,
5735 BVN->getOperand(LowElt), BVN->getOperand(LowElt+2));
5737 // Construct a new BUILD_VECTOR with elements truncated to half the size.
5738 assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
5739 EVT VT = N->getValueType(0);
5740 unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2;
5741 unsigned NumElts = VT.getVectorNumElements();
5742 MVT TruncVT = MVT::getIntegerVT(EltSize);
5743 SmallVector<SDValue, 8> Ops;
5744 for (unsigned i = 0; i != NumElts; ++i) {
5745 ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
5746 const APInt &CInt = C->getAPIntValue();
5747 // Element types smaller than 32 bits are not legal, so use i32 elements.
5748 // The values are implicitly truncated so sext vs. zext doesn't matter.
5749 Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), MVT::i32));
5751 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
5752 MVT::getVectorVT(TruncVT, NumElts), Ops);
5755 static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
5756 unsigned Opcode = N->getOpcode();
5757 if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
5758 SDNode *N0 = N->getOperand(0).getNode();
5759 SDNode *N1 = N->getOperand(1).getNode();
5760 return N0->hasOneUse() && N1->hasOneUse() &&
5761 isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
5766 static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
5767 unsigned Opcode = N->getOpcode();
5768 if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
5769 SDNode *N0 = N->getOperand(0).getNode();
5770 SDNode *N1 = N->getOperand(1).getNode();
5771 return N0->hasOneUse() && N1->hasOneUse() &&
5772 isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
5777 static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
5778 // Multiplications are only custom-lowered for 128-bit vectors so that
5779 // VMULL can be detected. Otherwise v2i64 multiplications are not legal.
5780 EVT VT = Op.getValueType();
5781 assert(VT.is128BitVector() && VT.isInteger() &&
5782 "unexpected type for custom-lowering ISD::MUL");
5783 SDNode *N0 = Op.getOperand(0).getNode();
5784 SDNode *N1 = Op.getOperand(1).getNode();
5785 unsigned NewOpc = 0;
5787 bool isN0SExt = isSignExtended(N0, DAG);
5788 bool isN1SExt = isSignExtended(N1, DAG);
5789 if (isN0SExt && isN1SExt)
5790 NewOpc = ARMISD::VMULLs;
5792 bool isN0ZExt = isZeroExtended(N0, DAG);
5793 bool isN1ZExt = isZeroExtended(N1, DAG);
5794 if (isN0ZExt && isN1ZExt)
5795 NewOpc = ARMISD::VMULLu;
5796 else if (isN1SExt || isN1ZExt) {
5797 // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
5798 // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
5799 if (isN1SExt && isAddSubSExt(N0, DAG)) {
5800 NewOpc = ARMISD::VMULLs;
5802 } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
5803 NewOpc = ARMISD::VMULLu;
5805 } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
5807 NewOpc = ARMISD::VMULLu;
5813 if (VT == MVT::v2i64)
5814 // Fall through to expand this. It is not legal.
5817 // Other vector multiplications are legal.
5822 // Legalize to a VMULL instruction.
5825 SDValue Op1 = SkipExtensionForVMULL(N1, DAG);
5827 Op0 = SkipExtensionForVMULL(N0, DAG);
5828 assert(Op0.getValueType().is64BitVector() &&
5829 Op1.getValueType().is64BitVector() &&
5830 "unexpected types for extended operands to VMULL");
5831 return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
5834 // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during
5835 // isel lowering to take advantage of no-stall back to back vmul + vmla.
5842 SDValue N00 = SkipExtensionForVMULL(N0->getOperand(0).getNode(), DAG);
5843 SDValue N01 = SkipExtensionForVMULL(N0->getOperand(1).getNode(), DAG);
5844 EVT Op1VT = Op1.getValueType();
5845 return DAG.getNode(N0->getOpcode(), DL, VT,
5846 DAG.getNode(NewOpc, DL, VT,
5847 DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
5848 DAG.getNode(NewOpc, DL, VT,
5849 DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
5853 LowerSDIV_v4i8(SDValue X, SDValue Y, SDLoc dl, SelectionDAG &DAG) {
5855 // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo));
5856 // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo));
5857 X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X);
5858 Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y);
5859 X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X);
5860 Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y);
5861 // Get reciprocal estimate.
5862 // float4 recip = vrecpeq_f32(yf);
5863 Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5864 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), Y);
5865 // Because char has a smaller range than uchar, we can actually get away
5866 // without any newton steps. This requires that we use a weird bias
5867 // of 0xb000, however (again, this has been exhaustively tested).
5868 // float4 result = as_float4(as_int4(xf*recip) + 0xb000);
5869 X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y);
5870 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X);
5871 Y = DAG.getConstant(0xb000, MVT::i32);
5872 Y = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Y, Y, Y, Y);
5873 X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y);
5874 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X);
5875 // Convert back to short.
5876 X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X);
5877 X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X);
5882 LowerSDIV_v4i16(SDValue N0, SDValue N1, SDLoc dl, SelectionDAG &DAG) {
5884 // Convert to float.
5885 // float4 yf = vcvt_f32_s32(vmovl_s16(y));
5886 // float4 xf = vcvt_f32_s32(vmovl_s16(x));
5887 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0);
5888 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1);
5889 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
5890 N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
5892 // Use reciprocal estimate and one refinement step.
5893 // float4 recip = vrecpeq_f32(yf);
5894 // recip *= vrecpsq_f32(yf, recip);
5895 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5896 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), N1);
5897 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5898 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
5900 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
5901 // Because short has a smaller range than ushort, we can actually get away
5902 // with only a single newton step. This requires that we use a weird bias
5903 // of 89, however (again, this has been exhaustively tested).
5904 // float4 result = as_float4(as_int4(xf*recip) + 0x89);
5905 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
5906 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
5907 N1 = DAG.getConstant(0x89, MVT::i32);
5908 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
5909 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
5910 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
5911 // Convert back to integer and return.
5912 // return vmovn_s32(vcvt_s32_f32(result));
5913 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
5914 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
5918 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
5919 EVT VT = Op.getValueType();
5920 assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
5921 "unexpected type for custom-lowering ISD::SDIV");
5924 SDValue N0 = Op.getOperand(0);
5925 SDValue N1 = Op.getOperand(1);
5928 if (VT == MVT::v8i8) {
5929 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0);
5930 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1);
5932 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5933 DAG.getIntPtrConstant(4));
5934 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5935 DAG.getIntPtrConstant(4));
5936 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5937 DAG.getIntPtrConstant(0));
5938 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5939 DAG.getIntPtrConstant(0));
5941 N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16
5942 N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16
5944 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
5945 N0 = LowerCONCAT_VECTORS(N0, DAG);
5947 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0);
5950 return LowerSDIV_v4i16(N0, N1, dl, DAG);
5953 static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) {
5954 EVT VT = Op.getValueType();
5955 assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
5956 "unexpected type for custom-lowering ISD::UDIV");
5959 SDValue N0 = Op.getOperand(0);
5960 SDValue N1 = Op.getOperand(1);
5963 if (VT == MVT::v8i8) {
5964 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0);
5965 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1);
5967 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5968 DAG.getIntPtrConstant(4));
5969 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5970 DAG.getIntPtrConstant(4));
5971 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5972 DAG.getIntPtrConstant(0));
5973 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5974 DAG.getIntPtrConstant(0));
5976 N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16
5977 N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16
5979 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
5980 N0 = LowerCONCAT_VECTORS(N0, DAG);
5982 N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8,
5983 DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, MVT::i32),
5988 // v4i16 sdiv ... Convert to float.
5989 // float4 yf = vcvt_f32_s32(vmovl_u16(y));
5990 // float4 xf = vcvt_f32_s32(vmovl_u16(x));
5991 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0);
5992 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1);
5993 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
5994 SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
5996 // Use reciprocal estimate and two refinement steps.
5997 // float4 recip = vrecpeq_f32(yf);
5998 // recip *= vrecpsq_f32(yf, recip);
5999 // recip *= vrecpsq_f32(yf, recip);
6000 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6001 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), BN1);
6002 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6003 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
6005 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6006 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6007 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
6009 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6010 // Simply multiplying by the reciprocal estimate can leave us a few ulps
6011 // too low, so we add 2 ulps (exhaustive testing shows that this is enough,
6012 // and that it will never cause us to return an answer too large).
6013 // float4 result = as_float4(as_int4(xf*recip) + 2);
6014 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
6015 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
6016 N1 = DAG.getConstant(2, MVT::i32);
6017 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
6018 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
6019 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
6020 // Convert back to integer and return.
6021 // return vmovn_u32(vcvt_s32_f32(result));
6022 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
6023 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
6027 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
6028 EVT VT = Op.getNode()->getValueType(0);
6029 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
6032 bool ExtraOp = false;
6033 switch (Op.getOpcode()) {
6034 default: llvm_unreachable("Invalid code");
6035 case ISD::ADDC: Opc = ARMISD::ADDC; break;
6036 case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break;
6037 case ISD::SUBC: Opc = ARMISD::SUBC; break;
6038 case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break;
6042 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
6044 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
6045 Op.getOperand(1), Op.getOperand(2));
6048 SDValue ARMTargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const {
6049 assert(Subtarget->isTargetDarwin());
6051 // For iOS, we want to call an alternative entry point: __sincos_stret,
6052 // return values are passed via sret.
6054 SDValue Arg = Op.getOperand(0);
6055 EVT ArgVT = Arg.getValueType();
6056 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
6058 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
6059 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6061 // Pair of floats / doubles used to pass the result.
6062 StructType *RetTy = StructType::get(ArgTy, ArgTy, NULL);
6064 // Create stack object for sret.
6065 const uint64_t ByteSize = TLI.getDataLayout()->getTypeAllocSize(RetTy);
6066 const unsigned StackAlign = TLI.getDataLayout()->getPrefTypeAlignment(RetTy);
6067 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
6068 SDValue SRet = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
6074 Entry.Ty = RetTy->getPointerTo();
6075 Entry.isSExt = false;
6076 Entry.isZExt = false;
6077 Entry.isSRet = true;
6078 Args.push_back(Entry);
6082 Entry.isSExt = false;
6083 Entry.isZExt = false;
6084 Args.push_back(Entry);
6086 const char *LibcallName = (ArgVT == MVT::f64)
6087 ? "__sincos_stret" : "__sincosf_stret";
6088 SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy());
6090 TargetLowering::CallLoweringInfo CLI(DAG);
6091 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
6092 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()), Callee,
6094 .setDiscardResult();
6096 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
6098 SDValue LoadSin = DAG.getLoad(ArgVT, dl, CallResult.second, SRet,
6099 MachinePointerInfo(), false, false, false, 0);
6101 // Address of cos field.
6102 SDValue Add = DAG.getNode(ISD::ADD, dl, getPointerTy(), SRet,
6103 DAG.getIntPtrConstant(ArgVT.getStoreSize()));
6104 SDValue LoadCos = DAG.getLoad(ArgVT, dl, LoadSin.getValue(1), Add,
6105 MachinePointerInfo(), false, false, false, 0);
6107 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
6108 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys,
6109 LoadSin.getValue(0), LoadCos.getValue(0));
6112 static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) {
6113 // Monotonic load/store is legal for all targets
6114 if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic)
6117 // Acquire/Release load/store is not legal for targets without a
6118 // dmb or equivalent available.
6122 static void ReplaceREADCYCLECOUNTER(SDNode *N,
6123 SmallVectorImpl<SDValue> &Results,
6125 const ARMSubtarget *Subtarget) {
6127 SDValue Cycles32, OutChain;
6129 if (Subtarget->hasPerfMon()) {
6130 // Under Power Management extensions, the cycle-count is:
6131 // mrc p15, #0, <Rt>, c9, c13, #0
6132 SDValue Ops[] = { N->getOperand(0), // Chain
6133 DAG.getConstant(Intrinsic::arm_mrc, MVT::i32),
6134 DAG.getConstant(15, MVT::i32),
6135 DAG.getConstant(0, MVT::i32),
6136 DAG.getConstant(9, MVT::i32),
6137 DAG.getConstant(13, MVT::i32),
6138 DAG.getConstant(0, MVT::i32)
6141 Cycles32 = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DL,
6142 DAG.getVTList(MVT::i32, MVT::Other), Ops);
6143 OutChain = Cycles32.getValue(1);
6145 // Intrinsic is defined to return 0 on unsupported platforms. Technically
6146 // there are older ARM CPUs that have implementation-specific ways of
6147 // obtaining this information (FIXME!).
6148 Cycles32 = DAG.getConstant(0, MVT::i32);
6149 OutChain = DAG.getEntryNode();
6153 SDValue Cycles64 = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64,
6154 Cycles32, DAG.getConstant(0, MVT::i32));
6155 Results.push_back(Cycles64);
6156 Results.push_back(OutChain);
6159 SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
6160 switch (Op.getOpcode()) {
6161 default: llvm_unreachable("Don't know how to custom lower this!");
6162 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6163 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
6164 case ISD::GlobalAddress:
6165 switch (Subtarget->getTargetTriple().getObjectFormat()) {
6166 default: llvm_unreachable("unknown object format");
6168 return LowerGlobalAddressWindows(Op, DAG);
6170 return LowerGlobalAddressELF(Op, DAG);
6172 return LowerGlobalAddressDarwin(Op, DAG);
6174 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
6175 case ISD::SELECT: return LowerSELECT(Op, DAG);
6176 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
6177 case ISD::BR_CC: return LowerBR_CC(Op, DAG);
6178 case ISD::BR_JT: return LowerBR_JT(Op, DAG);
6179 case ISD::VASTART: return LowerVASTART(Op, DAG);
6180 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG, Subtarget);
6181 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG, Subtarget);
6182 case ISD::SINT_TO_FP:
6183 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG);
6184 case ISD::FP_TO_SINT:
6185 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG);
6186 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
6187 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6188 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
6189 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
6190 case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG);
6191 case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG);
6192 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG,
6194 case ISD::BITCAST: return ExpandBITCAST(Op.getNode(), DAG);
6197 case ISD::SRA: return LowerShift(Op.getNode(), DAG, Subtarget);
6198 case ISD::SHL_PARTS: return LowerShiftLeftParts(Op, DAG);
6199 case ISD::SRL_PARTS:
6200 case ISD::SRA_PARTS: return LowerShiftRightParts(Op, DAG);
6201 case ISD::CTTZ: return LowerCTTZ(Op.getNode(), DAG, Subtarget);
6202 case ISD::CTPOP: return LowerCTPOP(Op.getNode(), DAG, Subtarget);
6203 case ISD::SETCC: return LowerVSETCC(Op, DAG);
6204 case ISD::ConstantFP: return LowerConstantFP(Op, DAG, Subtarget);
6205 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG, Subtarget);
6206 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6207 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6208 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6209 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
6210 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
6211 case ISD::MUL: return LowerMUL(Op, DAG);
6212 case ISD::SDIV: return LowerSDIV(Op, DAG);
6213 case ISD::UDIV: return LowerUDIV(Op, DAG);
6217 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
6222 return LowerXALUO(Op, DAG);
6223 case ISD::ATOMIC_LOAD:
6224 case ISD::ATOMIC_STORE: return LowerAtomicLoadStore(Op, DAG);
6225 case ISD::FSINCOS: return LowerFSINCOS(Op, DAG);
6227 case ISD::UDIVREM: return LowerDivRem(Op, DAG);
6228 case ISD::DYNAMIC_STACKALLOC:
6229 if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
6230 return LowerDYNAMIC_STACKALLOC(Op, DAG);
6231 llvm_unreachable("Don't know how to custom lower this!");
6235 /// ReplaceNodeResults - Replace the results of node with an illegal result
6236 /// type with new values built out of custom code.
6237 void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
6238 SmallVectorImpl<SDValue>&Results,
6239 SelectionDAG &DAG) const {
6241 switch (N->getOpcode()) {
6243 llvm_unreachable("Don't know how to custom expand this!");
6245 Res = ExpandBITCAST(N, DAG);
6249 Res = Expand64BitShift(N, DAG, Subtarget);
6251 case ISD::READCYCLECOUNTER:
6252 ReplaceREADCYCLECOUNTER(N, Results, DAG, Subtarget);
6256 Results.push_back(Res);
6259 //===----------------------------------------------------------------------===//
6260 // ARM Scheduler Hooks
6261 //===----------------------------------------------------------------------===//
6263 /// SetupEntryBlockForSjLj - Insert code into the entry block that creates and
6264 /// registers the function context.
6265 void ARMTargetLowering::
6266 SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB,
6267 MachineBasicBlock *DispatchBB, int FI) const {
6268 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6269 DebugLoc dl = MI->getDebugLoc();
6270 MachineFunction *MF = MBB->getParent();
6271 MachineRegisterInfo *MRI = &MF->getRegInfo();
6272 MachineConstantPool *MCP = MF->getConstantPool();
6273 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
6274 const Function *F = MF->getFunction();
6276 bool isThumb = Subtarget->isThumb();
6277 bool isThumb2 = Subtarget->isThumb2();
6279 unsigned PCLabelId = AFI->createPICLabelUId();
6280 unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8;
6281 ARMConstantPoolValue *CPV =
6282 ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj);
6283 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
6285 const TargetRegisterClass *TRC = isThumb ?
6286 (const TargetRegisterClass*)&ARM::tGPRRegClass :
6287 (const TargetRegisterClass*)&ARM::GPRRegClass;
6289 // Grab constant pool and fixed stack memory operands.
6290 MachineMemOperand *CPMMO =
6291 MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(),
6292 MachineMemOperand::MOLoad, 4, 4);
6294 MachineMemOperand *FIMMOSt =
6295 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
6296 MachineMemOperand::MOStore, 4, 4);
6298 // Load the address of the dispatch MBB into the jump buffer.
6300 // Incoming value: jbuf
6301 // ldr.n r5, LCPI1_1
6304 // str r5, [$jbuf, #+4] ; &jbuf[1]
6305 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6306 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1)
6307 .addConstantPoolIndex(CPI)
6308 .addMemOperand(CPMMO));
6309 // Set the low bit because of thumb mode.
6310 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6312 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2)
6313 .addReg(NewVReg1, RegState::Kill)
6315 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6316 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3)
6317 .addReg(NewVReg2, RegState::Kill)
6319 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12))
6320 .addReg(NewVReg3, RegState::Kill)
6322 .addImm(36) // &jbuf[1] :: pc
6323 .addMemOperand(FIMMOSt));
6324 } else if (isThumb) {
6325 // Incoming value: jbuf
6326 // ldr.n r1, LCPI1_4
6330 // add r2, $jbuf, #+4 ; &jbuf[1]
6332 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6333 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1)
6334 .addConstantPoolIndex(CPI)
6335 .addMemOperand(CPMMO));
6336 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6337 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2)
6338 .addReg(NewVReg1, RegState::Kill)
6340 // Set the low bit because of thumb mode.
6341 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6342 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3)
6343 .addReg(ARM::CPSR, RegState::Define)
6345 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6346 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4)
6347 .addReg(ARM::CPSR, RegState::Define)
6348 .addReg(NewVReg2, RegState::Kill)
6349 .addReg(NewVReg3, RegState::Kill));
6350 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6351 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tADDrSPi), NewVReg5)
6353 .addImm(36)); // &jbuf[1] :: pc
6354 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi))
6355 .addReg(NewVReg4, RegState::Kill)
6356 .addReg(NewVReg5, RegState::Kill)
6358 .addMemOperand(FIMMOSt));
6360 // Incoming value: jbuf
6363 // str r1, [$jbuf, #+4] ; &jbuf[1]
6364 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6365 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12), NewVReg1)
6366 .addConstantPoolIndex(CPI)
6368 .addMemOperand(CPMMO));
6369 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6370 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2)
6371 .addReg(NewVReg1, RegState::Kill)
6372 .addImm(PCLabelId));
6373 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12))
6374 .addReg(NewVReg2, RegState::Kill)
6376 .addImm(36) // &jbuf[1] :: pc
6377 .addMemOperand(FIMMOSt));
6381 MachineBasicBlock *ARMTargetLowering::
6382 EmitSjLjDispatchBlock(MachineInstr *MI, MachineBasicBlock *MBB) const {
6383 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6384 DebugLoc dl = MI->getDebugLoc();
6385 MachineFunction *MF = MBB->getParent();
6386 MachineRegisterInfo *MRI = &MF->getRegInfo();
6387 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
6388 MachineFrameInfo *MFI = MF->getFrameInfo();
6389 int FI = MFI->getFunctionContextIndex();
6391 const TargetRegisterClass *TRC = Subtarget->isThumb() ?
6392 (const TargetRegisterClass*)&ARM::tGPRRegClass :
6393 (const TargetRegisterClass*)&ARM::GPRnopcRegClass;
6395 // Get a mapping of the call site numbers to all of the landing pads they're
6397 DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad;
6398 unsigned MaxCSNum = 0;
6399 MachineModuleInfo &MMI = MF->getMMI();
6400 for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E;
6402 if (!BB->isLandingPad()) continue;
6404 // FIXME: We should assert that the EH_LABEL is the first MI in the landing
6406 for (MachineBasicBlock::iterator
6407 II = BB->begin(), IE = BB->end(); II != IE; ++II) {
6408 if (!II->isEHLabel()) continue;
6410 MCSymbol *Sym = II->getOperand(0).getMCSymbol();
6411 if (!MMI.hasCallSiteLandingPad(Sym)) continue;
6413 SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym);
6414 for (SmallVectorImpl<unsigned>::iterator
6415 CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end();
6416 CSI != CSE; ++CSI) {
6417 CallSiteNumToLPad[*CSI].push_back(BB);
6418 MaxCSNum = std::max(MaxCSNum, *CSI);
6424 // Get an ordered list of the machine basic blocks for the jump table.
6425 std::vector<MachineBasicBlock*> LPadList;
6426 SmallPtrSet<MachineBasicBlock*, 64> InvokeBBs;
6427 LPadList.reserve(CallSiteNumToLPad.size());
6428 for (unsigned I = 1; I <= MaxCSNum; ++I) {
6429 SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I];
6430 for (SmallVectorImpl<MachineBasicBlock*>::iterator
6431 II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) {
6432 LPadList.push_back(*II);
6433 InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end());
6437 assert(!LPadList.empty() &&
6438 "No landing pad destinations for the dispatch jump table!");
6440 // Create the jump table and associated information.
6441 MachineJumpTableInfo *JTI =
6442 MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline);
6443 unsigned MJTI = JTI->createJumpTableIndex(LPadList);
6444 unsigned UId = AFI->createJumpTableUId();
6445 Reloc::Model RelocM = getTargetMachine().getRelocationModel();
6447 // Create the MBBs for the dispatch code.
6449 // Shove the dispatch's address into the return slot in the function context.
6450 MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock();
6451 DispatchBB->setIsLandingPad();
6453 MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock();
6454 unsigned trap_opcode;
6455 if (Subtarget->isThumb())
6456 trap_opcode = ARM::tTRAP;
6458 trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP;
6460 BuildMI(TrapBB, dl, TII->get(trap_opcode));
6461 DispatchBB->addSuccessor(TrapBB);
6463 MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock();
6464 DispatchBB->addSuccessor(DispContBB);
6467 MF->insert(MF->end(), DispatchBB);
6468 MF->insert(MF->end(), DispContBB);
6469 MF->insert(MF->end(), TrapBB);
6471 // Insert code into the entry block that creates and registers the function
6473 SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI);
6475 MachineMemOperand *FIMMOLd =
6476 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
6477 MachineMemOperand::MOLoad |
6478 MachineMemOperand::MOVolatile, 4, 4);
6480 MachineInstrBuilder MIB;
6481 MIB = BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup));
6483 const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII);
6484 const ARMBaseRegisterInfo &RI = AII->getRegisterInfo();
6486 // Add a register mask with no preserved registers. This results in all
6487 // registers being marked as clobbered.
6488 MIB.addRegMask(RI.getNoPreservedMask());
6490 unsigned NumLPads = LPadList.size();
6491 if (Subtarget->isThumb2()) {
6492 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6493 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1)
6496 .addMemOperand(FIMMOLd));
6498 if (NumLPads < 256) {
6499 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri))
6501 .addImm(LPadList.size()));
6503 unsigned VReg1 = MRI->createVirtualRegister(TRC);
6504 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVi16), VReg1)
6505 .addImm(NumLPads & 0xFFFF));
6507 unsigned VReg2 = VReg1;
6508 if ((NumLPads & 0xFFFF0000) != 0) {
6509 VReg2 = MRI->createVirtualRegister(TRC);
6510 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVTi16), VReg2)
6512 .addImm(NumLPads >> 16));
6515 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPrr))
6520 BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc))
6525 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6526 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg3)
6527 .addJumpTableIndex(MJTI)
6530 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6533 BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg4)
6534 .addReg(NewVReg3, RegState::Kill)
6536 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
6538 BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT))
6539 .addReg(NewVReg4, RegState::Kill)
6541 .addJumpTableIndex(MJTI)
6543 } else if (Subtarget->isThumb()) {
6544 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6545 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1)
6548 .addMemOperand(FIMMOLd));
6550 if (NumLPads < 256) {
6551 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8))
6555 MachineConstantPool *ConstantPool = MF->getConstantPool();
6556 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6557 const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
6559 // MachineConstantPool wants an explicit alignment.
6560 unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
6562 Align = getDataLayout()->getTypeAllocSize(C->getType());
6563 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6565 unsigned VReg1 = MRI->createVirtualRegister(TRC);
6566 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRpci))
6567 .addReg(VReg1, RegState::Define)
6568 .addConstantPoolIndex(Idx));
6569 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPr))
6574 BuildMI(DispatchBB, dl, TII->get(ARM::tBcc))
6579 unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6580 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2)
6581 .addReg(ARM::CPSR, RegState::Define)
6585 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6586 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3)
6587 .addJumpTableIndex(MJTI)
6590 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6591 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4)
6592 .addReg(ARM::CPSR, RegState::Define)
6593 .addReg(NewVReg2, RegState::Kill)
6596 MachineMemOperand *JTMMOLd =
6597 MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
6598 MachineMemOperand::MOLoad, 4, 4);
6600 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6601 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5)
6602 .addReg(NewVReg4, RegState::Kill)
6604 .addMemOperand(JTMMOLd));
6606 unsigned NewVReg6 = NewVReg5;
6607 if (RelocM == Reloc::PIC_) {
6608 NewVReg6 = MRI->createVirtualRegister(TRC);
6609 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6)
6610 .addReg(ARM::CPSR, RegState::Define)
6611 .addReg(NewVReg5, RegState::Kill)
6615 BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr))
6616 .addReg(NewVReg6, RegState::Kill)
6617 .addJumpTableIndex(MJTI)
6620 unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6621 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1)
6624 .addMemOperand(FIMMOLd));
6626 if (NumLPads < 256) {
6627 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri))
6630 } else if (Subtarget->hasV6T2Ops() && isUInt<16>(NumLPads)) {
6631 unsigned VReg1 = MRI->createVirtualRegister(TRC);
6632 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVi16), VReg1)
6633 .addImm(NumLPads & 0xFFFF));
6635 unsigned VReg2 = VReg1;
6636 if ((NumLPads & 0xFFFF0000) != 0) {
6637 VReg2 = MRI->createVirtualRegister(TRC);
6638 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVTi16), VReg2)
6640 .addImm(NumLPads >> 16));
6643 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
6647 MachineConstantPool *ConstantPool = MF->getConstantPool();
6648 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6649 const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
6651 // MachineConstantPool wants an explicit alignment.
6652 unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
6654 Align = getDataLayout()->getTypeAllocSize(C->getType());
6655 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6657 unsigned VReg1 = MRI->createVirtualRegister(TRC);
6658 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRcp))
6659 .addReg(VReg1, RegState::Define)
6660 .addConstantPoolIndex(Idx)
6662 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
6664 .addReg(VReg1, RegState::Kill));
6667 BuildMI(DispatchBB, dl, TII->get(ARM::Bcc))
6672 unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6674 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg3)
6676 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
6677 unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6678 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg4)
6679 .addJumpTableIndex(MJTI)
6682 MachineMemOperand *JTMMOLd =
6683 MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
6684 MachineMemOperand::MOLoad, 4, 4);
6685 unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6687 BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg5)
6688 .addReg(NewVReg3, RegState::Kill)
6691 .addMemOperand(JTMMOLd));
6693 if (RelocM == Reloc::PIC_) {
6694 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd))
6695 .addReg(NewVReg5, RegState::Kill)
6697 .addJumpTableIndex(MJTI)
6700 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTr))
6701 .addReg(NewVReg5, RegState::Kill)
6702 .addJumpTableIndex(MJTI)
6707 // Add the jump table entries as successors to the MBB.
6708 SmallPtrSet<MachineBasicBlock*, 8> SeenMBBs;
6709 for (std::vector<MachineBasicBlock*>::iterator
6710 I = LPadList.begin(), E = LPadList.end(); I != E; ++I) {
6711 MachineBasicBlock *CurMBB = *I;
6712 if (SeenMBBs.insert(CurMBB))
6713 DispContBB->addSuccessor(CurMBB);
6716 // N.B. the order the invoke BBs are processed in doesn't matter here.
6717 const MCPhysReg *SavedRegs = RI.getCalleeSavedRegs(MF);
6718 SmallVector<MachineBasicBlock*, 64> MBBLPads;
6719 for (SmallPtrSet<MachineBasicBlock*, 64>::iterator
6720 I = InvokeBBs.begin(), E = InvokeBBs.end(); I != E; ++I) {
6721 MachineBasicBlock *BB = *I;
6723 // Remove the landing pad successor from the invoke block and replace it
6724 // with the new dispatch block.
6725 SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(),
6727 while (!Successors.empty()) {
6728 MachineBasicBlock *SMBB = Successors.pop_back_val();
6729 if (SMBB->isLandingPad()) {
6730 BB->removeSuccessor(SMBB);
6731 MBBLPads.push_back(SMBB);
6735 BB->addSuccessor(DispatchBB);
6737 // Find the invoke call and mark all of the callee-saved registers as
6738 // 'implicit defined' so that they're spilled. This prevents code from
6739 // moving instructions to before the EH block, where they will never be
6741 for (MachineBasicBlock::reverse_iterator
6742 II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) {
6743 if (!II->isCall()) continue;
6745 DenseMap<unsigned, bool> DefRegs;
6746 for (MachineInstr::mop_iterator
6747 OI = II->operands_begin(), OE = II->operands_end();
6749 if (!OI->isReg()) continue;
6750 DefRegs[OI->getReg()] = true;
6753 MachineInstrBuilder MIB(*MF, &*II);
6755 for (unsigned i = 0; SavedRegs[i] != 0; ++i) {
6756 unsigned Reg = SavedRegs[i];
6757 if (Subtarget->isThumb2() &&
6758 !ARM::tGPRRegClass.contains(Reg) &&
6759 !ARM::hGPRRegClass.contains(Reg))
6761 if (Subtarget->isThumb1Only() && !ARM::tGPRRegClass.contains(Reg))
6763 if (!Subtarget->isThumb() && !ARM::GPRRegClass.contains(Reg))
6766 MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);
6773 // Mark all former landing pads as non-landing pads. The dispatch is the only
6775 for (SmallVectorImpl<MachineBasicBlock*>::iterator
6776 I = MBBLPads.begin(), E = MBBLPads.end(); I != E; ++I)
6777 (*I)->setIsLandingPad(false);
6779 // The instruction is gone now.
6780 MI->eraseFromParent();
6786 MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) {
6787 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
6788 E = MBB->succ_end(); I != E; ++I)
6791 llvm_unreachable("Expecting a BB with two successors!");
6794 /// Return the load opcode for a given load size. If load size >= 8,
6795 /// neon opcode will be returned.
6796 static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) {
6798 return LdSize == 16 ? ARM::VLD1q32wb_fixed
6799 : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0;
6801 return LdSize == 4 ? ARM::tLDRi
6802 : LdSize == 2 ? ARM::tLDRHi
6803 : LdSize == 1 ? ARM::tLDRBi : 0;
6805 return LdSize == 4 ? ARM::t2LDR_POST
6806 : LdSize == 2 ? ARM::t2LDRH_POST
6807 : LdSize == 1 ? ARM::t2LDRB_POST : 0;
6808 return LdSize == 4 ? ARM::LDR_POST_IMM
6809 : LdSize == 2 ? ARM::LDRH_POST
6810 : LdSize == 1 ? ARM::LDRB_POST_IMM : 0;
6813 /// Return the store opcode for a given store size. If store size >= 8,
6814 /// neon opcode will be returned.
6815 static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) {
6817 return StSize == 16 ? ARM::VST1q32wb_fixed
6818 : StSize == 8 ? ARM::VST1d32wb_fixed : 0;
6820 return StSize == 4 ? ARM::tSTRi
6821 : StSize == 2 ? ARM::tSTRHi
6822 : StSize == 1 ? ARM::tSTRBi : 0;
6824 return StSize == 4 ? ARM::t2STR_POST
6825 : StSize == 2 ? ARM::t2STRH_POST
6826 : StSize == 1 ? ARM::t2STRB_POST : 0;
6827 return StSize == 4 ? ARM::STR_POST_IMM
6828 : StSize == 2 ? ARM::STRH_POST
6829 : StSize == 1 ? ARM::STRB_POST_IMM : 0;
6832 /// Emit a post-increment load operation with given size. The instructions
6833 /// will be added to BB at Pos.
6834 static void emitPostLd(MachineBasicBlock *BB, MachineInstr *Pos,
6835 const TargetInstrInfo *TII, DebugLoc dl,
6836 unsigned LdSize, unsigned Data, unsigned AddrIn,
6837 unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
6838 unsigned LdOpc = getLdOpcode(LdSize, IsThumb1, IsThumb2);
6839 assert(LdOpc != 0 && "Should have a load opcode");
6841 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6842 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6844 } else if (IsThumb1) {
6845 // load + update AddrIn
6846 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6847 .addReg(AddrIn).addImm(0));
6848 MachineInstrBuilder MIB =
6849 BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
6850 MIB = AddDefaultT1CC(MIB);
6851 MIB.addReg(AddrIn).addImm(LdSize);
6852 AddDefaultPred(MIB);
6853 } else if (IsThumb2) {
6854 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6855 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6858 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6859 .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6860 .addReg(0).addImm(LdSize));
6864 /// Emit a post-increment store operation with given size. The instructions
6865 /// will be added to BB at Pos.
6866 static void emitPostSt(MachineBasicBlock *BB, MachineInstr *Pos,
6867 const TargetInstrInfo *TII, DebugLoc dl,
6868 unsigned StSize, unsigned Data, unsigned AddrIn,
6869 unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
6870 unsigned StOpc = getStOpcode(StSize, IsThumb1, IsThumb2);
6871 assert(StOpc != 0 && "Should have a store opcode");
6873 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6874 .addReg(AddrIn).addImm(0).addReg(Data));
6875 } else if (IsThumb1) {
6876 // store + update AddrIn
6877 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc)).addReg(Data)
6878 .addReg(AddrIn).addImm(0));
6879 MachineInstrBuilder MIB =
6880 BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
6881 MIB = AddDefaultT1CC(MIB);
6882 MIB.addReg(AddrIn).addImm(StSize);
6883 AddDefaultPred(MIB);
6884 } else if (IsThumb2) {
6885 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6886 .addReg(Data).addReg(AddrIn).addImm(StSize));
6888 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6889 .addReg(Data).addReg(AddrIn).addReg(0)
6895 ARMTargetLowering::EmitStructByval(MachineInstr *MI,
6896 MachineBasicBlock *BB) const {
6897 // This pseudo instruction has 3 operands: dst, src, size
6898 // We expand it to a loop if size > Subtarget->getMaxInlineSizeThreshold().
6899 // Otherwise, we will generate unrolled scalar copies.
6900 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6901 const BasicBlock *LLVM_BB = BB->getBasicBlock();
6902 MachineFunction::iterator It = BB;
6905 unsigned dest = MI->getOperand(0).getReg();
6906 unsigned src = MI->getOperand(1).getReg();
6907 unsigned SizeVal = MI->getOperand(2).getImm();
6908 unsigned Align = MI->getOperand(3).getImm();
6909 DebugLoc dl = MI->getDebugLoc();
6911 MachineFunction *MF = BB->getParent();
6912 MachineRegisterInfo &MRI = MF->getRegInfo();
6913 unsigned UnitSize = 0;
6914 const TargetRegisterClass *TRC = nullptr;
6915 const TargetRegisterClass *VecTRC = nullptr;
6917 bool IsThumb1 = Subtarget->isThumb1Only();
6918 bool IsThumb2 = Subtarget->isThumb2();
6922 } else if (Align & 2) {
6925 // Check whether we can use NEON instructions.
6926 if (!MF->getFunction()->getAttributes().
6927 hasAttribute(AttributeSet::FunctionIndex,
6928 Attribute::NoImplicitFloat) &&
6929 Subtarget->hasNEON()) {
6930 if ((Align % 16 == 0) && SizeVal >= 16)
6932 else if ((Align % 8 == 0) && SizeVal >= 8)
6935 // Can't use NEON instructions.
6940 // Select the correct opcode and register class for unit size load/store
6941 bool IsNeon = UnitSize >= 8;
6942 TRC = (IsThumb1 || IsThumb2) ? (const TargetRegisterClass *)&ARM::tGPRRegClass
6943 : (const TargetRegisterClass *)&ARM::GPRRegClass;
6945 VecTRC = UnitSize == 16
6946 ? (const TargetRegisterClass *)&ARM::DPairRegClass
6948 ? (const TargetRegisterClass *)&ARM::DPRRegClass
6951 unsigned BytesLeft = SizeVal % UnitSize;
6952 unsigned LoopSize = SizeVal - BytesLeft;
6954 if (SizeVal <= Subtarget->getMaxInlineSizeThreshold()) {
6955 // Use LDR and STR to copy.
6956 // [scratch, srcOut] = LDR_POST(srcIn, UnitSize)
6957 // [destOut] = STR_POST(scratch, destIn, UnitSize)
6958 unsigned srcIn = src;
6959 unsigned destIn = dest;
6960 for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
6961 unsigned srcOut = MRI.createVirtualRegister(TRC);
6962 unsigned destOut = MRI.createVirtualRegister(TRC);
6963 unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
6964 emitPostLd(BB, MI, TII, dl, UnitSize, scratch, srcIn, srcOut,
6965 IsThumb1, IsThumb2);
6966 emitPostSt(BB, MI, TII, dl, UnitSize, scratch, destIn, destOut,
6967 IsThumb1, IsThumb2);
6972 // Handle the leftover bytes with LDRB and STRB.
6973 // [scratch, srcOut] = LDRB_POST(srcIn, 1)
6974 // [destOut] = STRB_POST(scratch, destIn, 1)
6975 for (unsigned i = 0; i < BytesLeft; i++) {
6976 unsigned srcOut = MRI.createVirtualRegister(TRC);
6977 unsigned destOut = MRI.createVirtualRegister(TRC);
6978 unsigned scratch = MRI.createVirtualRegister(TRC);
6979 emitPostLd(BB, MI, TII, dl, 1, scratch, srcIn, srcOut,
6980 IsThumb1, IsThumb2);
6981 emitPostSt(BB, MI, TII, dl, 1, scratch, destIn, destOut,
6982 IsThumb1, IsThumb2);
6986 MI->eraseFromParent(); // The instruction is gone now.
6990 // Expand the pseudo op to a loop.
6993 // movw varEnd, # --> with thumb2
6995 // ldrcp varEnd, idx --> without thumb2
6996 // fallthrough --> loopMBB
6998 // PHI varPhi, varEnd, varLoop
6999 // PHI srcPhi, src, srcLoop
7000 // PHI destPhi, dst, destLoop
7001 // [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7002 // [destLoop] = STR_POST(scratch, destPhi, UnitSize)
7003 // subs varLoop, varPhi, #UnitSize
7005 // fallthrough --> exitMBB
7007 // epilogue to handle left-over bytes
7008 // [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7009 // [destOut] = STRB_POST(scratch, destLoop, 1)
7010 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7011 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7012 MF->insert(It, loopMBB);
7013 MF->insert(It, exitMBB);
7015 // Transfer the remainder of BB and its successor edges to exitMBB.
7016 exitMBB->splice(exitMBB->begin(), BB,
7017 std::next(MachineBasicBlock::iterator(MI)), BB->end());
7018 exitMBB->transferSuccessorsAndUpdatePHIs(BB);
7020 // Load an immediate to varEnd.
7021 unsigned varEnd = MRI.createVirtualRegister(TRC);
7023 unsigned Vtmp = varEnd;
7024 if ((LoopSize & 0xFFFF0000) != 0)
7025 Vtmp = MRI.createVirtualRegister(TRC);
7026 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2MOVi16), Vtmp)
7027 .addImm(LoopSize & 0xFFFF));
7029 if ((LoopSize & 0xFFFF0000) != 0)
7030 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2MOVTi16), varEnd)
7031 .addReg(Vtmp).addImm(LoopSize >> 16));
7033 MachineConstantPool *ConstantPool = MF->getConstantPool();
7034 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7035 const Constant *C = ConstantInt::get(Int32Ty, LoopSize);
7037 // MachineConstantPool wants an explicit alignment.
7038 unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
7040 Align = getDataLayout()->getTypeAllocSize(C->getType());
7041 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7044 AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::tLDRpci)).addReg(
7045 varEnd, RegState::Define).addConstantPoolIndex(Idx));
7047 AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::LDRcp)).addReg(
7048 varEnd, RegState::Define).addConstantPoolIndex(Idx).addImm(0));
7050 BB->addSuccessor(loopMBB);
7052 // Generate the loop body:
7053 // varPhi = PHI(varLoop, varEnd)
7054 // srcPhi = PHI(srcLoop, src)
7055 // destPhi = PHI(destLoop, dst)
7056 MachineBasicBlock *entryBB = BB;
7058 unsigned varLoop = MRI.createVirtualRegister(TRC);
7059 unsigned varPhi = MRI.createVirtualRegister(TRC);
7060 unsigned srcLoop = MRI.createVirtualRegister(TRC);
7061 unsigned srcPhi = MRI.createVirtualRegister(TRC);
7062 unsigned destLoop = MRI.createVirtualRegister(TRC);
7063 unsigned destPhi = MRI.createVirtualRegister(TRC);
7065 BuildMI(*BB, BB->begin(), dl, TII->get(ARM::PHI), varPhi)
7066 .addReg(varLoop).addMBB(loopMBB)
7067 .addReg(varEnd).addMBB(entryBB);
7068 BuildMI(BB, dl, TII->get(ARM::PHI), srcPhi)
7069 .addReg(srcLoop).addMBB(loopMBB)
7070 .addReg(src).addMBB(entryBB);
7071 BuildMI(BB, dl, TII->get(ARM::PHI), destPhi)
7072 .addReg(destLoop).addMBB(loopMBB)
7073 .addReg(dest).addMBB(entryBB);
7075 // [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7076 // [destLoop] = STR_POST(scratch, destPhi, UnitSiz)
7077 unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
7078 emitPostLd(BB, BB->end(), TII, dl, UnitSize, scratch, srcPhi, srcLoop,
7079 IsThumb1, IsThumb2);
7080 emitPostSt(BB, BB->end(), TII, dl, UnitSize, scratch, destPhi, destLoop,
7081 IsThumb1, IsThumb2);
7083 // Decrement loop variable by UnitSize.
7085 MachineInstrBuilder MIB =
7086 BuildMI(*BB, BB->end(), dl, TII->get(ARM::tSUBi8), varLoop);
7087 MIB = AddDefaultT1CC(MIB);
7088 MIB.addReg(varPhi).addImm(UnitSize);
7089 AddDefaultPred(MIB);
7091 MachineInstrBuilder MIB =
7092 BuildMI(*BB, BB->end(), dl,
7093 TII->get(IsThumb2 ? ARM::t2SUBri : ARM::SUBri), varLoop);
7094 AddDefaultCC(AddDefaultPred(MIB.addReg(varPhi).addImm(UnitSize)));
7095 MIB->getOperand(5).setReg(ARM::CPSR);
7096 MIB->getOperand(5).setIsDef(true);
7098 BuildMI(*BB, BB->end(), dl,
7099 TII->get(IsThumb1 ? ARM::tBcc : IsThumb2 ? ARM::t2Bcc : ARM::Bcc))
7100 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
7102 // loopMBB can loop back to loopMBB or fall through to exitMBB.
7103 BB->addSuccessor(loopMBB);
7104 BB->addSuccessor(exitMBB);
7106 // Add epilogue to handle BytesLeft.
7108 MachineInstr *StartOfExit = exitMBB->begin();
7110 // [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7111 // [destOut] = STRB_POST(scratch, destLoop, 1)
7112 unsigned srcIn = srcLoop;
7113 unsigned destIn = destLoop;
7114 for (unsigned i = 0; i < BytesLeft; i++) {
7115 unsigned srcOut = MRI.createVirtualRegister(TRC);
7116 unsigned destOut = MRI.createVirtualRegister(TRC);
7117 unsigned scratch = MRI.createVirtualRegister(TRC);
7118 emitPostLd(BB, StartOfExit, TII, dl, 1, scratch, srcIn, srcOut,
7119 IsThumb1, IsThumb2);
7120 emitPostSt(BB, StartOfExit, TII, dl, 1, scratch, destIn, destOut,
7121 IsThumb1, IsThumb2);
7126 MI->eraseFromParent(); // The instruction is gone now.
7131 ARMTargetLowering::EmitLowered__chkstk(MachineInstr *MI,
7132 MachineBasicBlock *MBB) const {
7133 const TargetMachine &TM = getTargetMachine();
7134 const TargetInstrInfo &TII = *TM.getInstrInfo();
7135 DebugLoc DL = MI->getDebugLoc();
7137 assert(Subtarget->isTargetWindows() &&
7138 "__chkstk is only supported on Windows");
7139 assert(Subtarget->isThumb2() && "Windows on ARM requires Thumb-2 mode");
7141 // __chkstk takes the number of words to allocate on the stack in R4, and
7142 // returns the stack adjustment in number of bytes in R4. This will not
7143 // clober any other registers (other than the obvious lr).
7145 // Although, technically, IP should be considered a register which may be
7146 // clobbered, the call itself will not touch it. Windows on ARM is a pure
7147 // thumb-2 environment, so there is no interworking required. As a result, we
7148 // do not expect a veneer to be emitted by the linker, clobbering IP.
7150 // Each module receives its own copy of __chkstk, so no import thunk is
7151 // required, again, ensuring that IP is not clobbered.
7153 // Finally, although some linkers may theoretically provide a trampoline for
7154 // out of range calls (which is quite common due to a 32M range limitation of
7155 // branches for Thumb), we can generate the long-call version via
7156 // -mcmodel=large, alleviating the need for the trampoline which may clobber
7159 switch (TM.getCodeModel()) {
7160 case CodeModel::Small:
7161 case CodeModel::Medium:
7162 case CodeModel::Default:
7163 case CodeModel::Kernel:
7164 BuildMI(*MBB, MI, DL, TII.get(ARM::tBL))
7165 .addImm((unsigned)ARMCC::AL).addReg(0)
7166 .addExternalSymbol("__chkstk")
7167 .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7168 .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7169 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7171 case CodeModel::Large:
7172 case CodeModel::JITDefault: {
7173 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
7174 unsigned Reg = MRI.createVirtualRegister(&ARM::rGPRRegClass);
7176 BuildMI(*MBB, MI, DL, TII.get(ARM::t2MOVi32imm), Reg)
7177 .addExternalSymbol("__chkstk");
7178 BuildMI(*MBB, MI, DL, TII.get(ARM::tBLXr))
7179 .addImm((unsigned)ARMCC::AL).addReg(0)
7180 .addReg(Reg, RegState::Kill)
7181 .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7182 .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7183 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7188 AddDefaultCC(AddDefaultPred(BuildMI(*MBB, MI, DL, TII.get(ARM::t2SUBrr),
7190 .addReg(ARM::SP, RegState::Define)
7191 .addReg(ARM::R4, RegState::Kill)));
7193 MI->eraseFromParent();
7198 ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
7199 MachineBasicBlock *BB) const {
7200 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7201 DebugLoc dl = MI->getDebugLoc();
7202 bool isThumb2 = Subtarget->isThumb2();
7203 switch (MI->getOpcode()) {
7206 llvm_unreachable("Unexpected instr type to insert");
7208 // The Thumb2 pre-indexed stores have the same MI operands, they just
7209 // define them differently in the .td files from the isel patterns, so
7210 // they need pseudos.
7211 case ARM::t2STR_preidx:
7212 MI->setDesc(TII->get(ARM::t2STR_PRE));
7214 case ARM::t2STRB_preidx:
7215 MI->setDesc(TII->get(ARM::t2STRB_PRE));
7217 case ARM::t2STRH_preidx:
7218 MI->setDesc(TII->get(ARM::t2STRH_PRE));
7221 case ARM::STRi_preidx:
7222 case ARM::STRBi_preidx: {
7223 unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ?
7224 ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM;
7225 // Decode the offset.
7226 unsigned Offset = MI->getOperand(4).getImm();
7227 bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub;
7228 Offset = ARM_AM::getAM2Offset(Offset);
7232 MachineMemOperand *MMO = *MI->memoperands_begin();
7233 BuildMI(*BB, MI, dl, TII->get(NewOpc))
7234 .addOperand(MI->getOperand(0)) // Rn_wb
7235 .addOperand(MI->getOperand(1)) // Rt
7236 .addOperand(MI->getOperand(2)) // Rn
7237 .addImm(Offset) // offset (skip GPR==zero_reg)
7238 .addOperand(MI->getOperand(5)) // pred
7239 .addOperand(MI->getOperand(6))
7240 .addMemOperand(MMO);
7241 MI->eraseFromParent();
7244 case ARM::STRr_preidx:
7245 case ARM::STRBr_preidx:
7246 case ARM::STRH_preidx: {
7248 switch (MI->getOpcode()) {
7249 default: llvm_unreachable("unexpected opcode!");
7250 case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break;
7251 case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break;
7252 case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break;
7254 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc));
7255 for (unsigned i = 0; i < MI->getNumOperands(); ++i)
7256 MIB.addOperand(MI->getOperand(i));
7257 MI->eraseFromParent();
7261 case ARM::tMOVCCr_pseudo: {
7262 // To "insert" a SELECT_CC instruction, we actually have to insert the
7263 // diamond control-flow pattern. The incoming instruction knows the
7264 // destination vreg to set, the condition code register to branch on, the
7265 // true/false values to select between, and a branch opcode to use.
7266 const BasicBlock *LLVM_BB = BB->getBasicBlock();
7267 MachineFunction::iterator It = BB;
7273 // cmpTY ccX, r1, r2
7275 // fallthrough --> copy0MBB
7276 MachineBasicBlock *thisMBB = BB;
7277 MachineFunction *F = BB->getParent();
7278 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7279 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
7280 F->insert(It, copy0MBB);
7281 F->insert(It, sinkMBB);
7283 // Transfer the remainder of BB and its successor edges to sinkMBB.
7284 sinkMBB->splice(sinkMBB->begin(), BB,
7285 std::next(MachineBasicBlock::iterator(MI)), BB->end());
7286 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7288 BB->addSuccessor(copy0MBB);
7289 BB->addSuccessor(sinkMBB);
7291 BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
7292 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
7295 // %FalseValue = ...
7296 // # fallthrough to sinkMBB
7299 // Update machine-CFG edges
7300 BB->addSuccessor(sinkMBB);
7303 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7306 BuildMI(*BB, BB->begin(), dl,
7307 TII->get(ARM::PHI), MI->getOperand(0).getReg())
7308 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7309 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7311 MI->eraseFromParent(); // The pseudo instruction is gone now.
7316 case ARM::BCCZi64: {
7317 // If there is an unconditional branch to the other successor, remove it.
7318 BB->erase(std::next(MachineBasicBlock::iterator(MI)), BB->end());
7320 // Compare both parts that make up the double comparison separately for
7322 bool RHSisZero = MI->getOpcode() == ARM::BCCZi64;
7324 unsigned LHS1 = MI->getOperand(1).getReg();
7325 unsigned LHS2 = MI->getOperand(2).getReg();
7327 AddDefaultPred(BuildMI(BB, dl,
7328 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7329 .addReg(LHS1).addImm(0));
7330 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7331 .addReg(LHS2).addImm(0)
7332 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7334 unsigned RHS1 = MI->getOperand(3).getReg();
7335 unsigned RHS2 = MI->getOperand(4).getReg();
7336 AddDefaultPred(BuildMI(BB, dl,
7337 TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7338 .addReg(LHS1).addReg(RHS1));
7339 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7340 .addReg(LHS2).addReg(RHS2)
7341 .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7344 MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB();
7345 MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
7346 if (MI->getOperand(0).getImm() == ARMCC::NE)
7347 std::swap(destMBB, exitMBB);
7349 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
7350 .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR);
7352 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB));
7354 BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB);
7356 MI->eraseFromParent(); // The pseudo instruction is gone now.
7360 case ARM::Int_eh_sjlj_setjmp:
7361 case ARM::Int_eh_sjlj_setjmp_nofp:
7362 case ARM::tInt_eh_sjlj_setjmp:
7363 case ARM::t2Int_eh_sjlj_setjmp:
7364 case ARM::t2Int_eh_sjlj_setjmp_nofp:
7365 EmitSjLjDispatchBlock(MI, BB);
7370 // To insert an ABS instruction, we have to insert the
7371 // diamond control-flow pattern. The incoming instruction knows the
7372 // source vreg to test against 0, the destination vreg to set,
7373 // the condition code register to branch on, the
7374 // true/false values to select between, and a branch opcode to use.
7379 // BCC (branch to SinkBB if V0 >= 0)
7380 // RSBBB: V3 = RSBri V2, 0 (compute ABS if V2 < 0)
7381 // SinkBB: V1 = PHI(V2, V3)
7382 const BasicBlock *LLVM_BB = BB->getBasicBlock();
7383 MachineFunction::iterator BBI = BB;
7385 MachineFunction *Fn = BB->getParent();
7386 MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB);
7387 MachineBasicBlock *SinkBB = Fn->CreateMachineBasicBlock(LLVM_BB);
7388 Fn->insert(BBI, RSBBB);
7389 Fn->insert(BBI, SinkBB);
7391 unsigned int ABSSrcReg = MI->getOperand(1).getReg();
7392 unsigned int ABSDstReg = MI->getOperand(0).getReg();
7393 bool isThumb2 = Subtarget->isThumb2();
7394 MachineRegisterInfo &MRI = Fn->getRegInfo();
7395 // In Thumb mode S must not be specified if source register is the SP or
7396 // PC and if destination register is the SP, so restrict register class
7397 unsigned NewRsbDstReg = MRI.createVirtualRegister(isThumb2 ?
7398 (const TargetRegisterClass*)&ARM::rGPRRegClass :
7399 (const TargetRegisterClass*)&ARM::GPRRegClass);
7401 // Transfer the remainder of BB and its successor edges to sinkMBB.
7402 SinkBB->splice(SinkBB->begin(), BB,
7403 std::next(MachineBasicBlock::iterator(MI)), BB->end());
7404 SinkBB->transferSuccessorsAndUpdatePHIs(BB);
7406 BB->addSuccessor(RSBBB);
7407 BB->addSuccessor(SinkBB);
7409 // fall through to SinkMBB
7410 RSBBB->addSuccessor(SinkBB);
7412 // insert a cmp at the end of BB
7413 AddDefaultPred(BuildMI(BB, dl,
7414 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7415 .addReg(ABSSrcReg).addImm(0));
7417 // insert a bcc with opposite CC to ARMCC::MI at the end of BB
7419 TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB)
7420 .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR);
7422 // insert rsbri in RSBBB
7423 // Note: BCC and rsbri will be converted into predicated rsbmi
7424 // by if-conversion pass
7425 BuildMI(*RSBBB, RSBBB->begin(), dl,
7426 TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg)
7427 .addReg(ABSSrcReg, RegState::Kill)
7428 .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
7430 // insert PHI in SinkBB,
7431 // reuse ABSDstReg to not change uses of ABS instruction
7432 BuildMI(*SinkBB, SinkBB->begin(), dl,
7433 TII->get(ARM::PHI), ABSDstReg)
7434 .addReg(NewRsbDstReg).addMBB(RSBBB)
7435 .addReg(ABSSrcReg).addMBB(BB);
7437 // remove ABS instruction
7438 MI->eraseFromParent();
7440 // return last added BB
7443 case ARM::COPY_STRUCT_BYVAL_I32:
7445 return EmitStructByval(MI, BB);
7446 case ARM::WIN__CHKSTK:
7447 return EmitLowered__chkstk(MI, BB);
7451 void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI,
7452 SDNode *Node) const {
7453 if (!MI->hasPostISelHook()) {
7454 assert(!convertAddSubFlagsOpcode(MI->getOpcode()) &&
7455 "Pseudo flag-setting opcodes must be marked with 'hasPostISelHook'");
7459 const MCInstrDesc *MCID = &MI->getDesc();
7460 // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB,
7461 // RSC. Coming out of isel, they have an implicit CPSR def, but the optional
7462 // operand is still set to noreg. If needed, set the optional operand's
7463 // register to CPSR, and remove the redundant implicit def.
7465 // e.g. ADCS (..., CPSR<imp-def>) -> ADC (... opt:CPSR<def>).
7467 // Rename pseudo opcodes.
7468 unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode());
7470 const ARMBaseInstrInfo *TII =
7471 static_cast<const ARMBaseInstrInfo*>(getTargetMachine().getInstrInfo());
7472 MCID = &TII->get(NewOpc);
7474 assert(MCID->getNumOperands() == MI->getDesc().getNumOperands() + 1 &&
7475 "converted opcode should be the same except for cc_out");
7479 // Add the optional cc_out operand
7480 MI->addOperand(MachineOperand::CreateReg(0, /*isDef=*/true));
7482 unsigned ccOutIdx = MCID->getNumOperands() - 1;
7484 // Any ARM instruction that sets the 's' bit should specify an optional
7485 // "cc_out" operand in the last operand position.
7486 if (!MI->hasOptionalDef() || !MCID->OpInfo[ccOutIdx].isOptionalDef()) {
7487 assert(!NewOpc && "Optional cc_out operand required");
7490 // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it
7491 // since we already have an optional CPSR def.
7492 bool definesCPSR = false;
7493 bool deadCPSR = false;
7494 for (unsigned i = MCID->getNumOperands(), e = MI->getNumOperands();
7496 const MachineOperand &MO = MI->getOperand(i);
7497 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) {
7501 MI->RemoveOperand(i);
7506 assert(!NewOpc && "Optional cc_out operand required");
7509 assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag");
7511 assert(!MI->getOperand(ccOutIdx).getReg() &&
7512 "expect uninitialized optional cc_out operand");
7516 // If this instruction was defined with an optional CPSR def and its dag node
7517 // had a live implicit CPSR def, then activate the optional CPSR def.
7518 MachineOperand &MO = MI->getOperand(ccOutIdx);
7519 MO.setReg(ARM::CPSR);
7523 //===----------------------------------------------------------------------===//
7524 // ARM Optimization Hooks
7525 //===----------------------------------------------------------------------===//
7527 // Helper function that checks if N is a null or all ones constant.
7528 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) {
7529 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N);
7532 return AllOnes ? C->isAllOnesValue() : C->isNullValue();
7535 // Return true if N is conditionally 0 or all ones.
7536 // Detects these expressions where cc is an i1 value:
7538 // (select cc 0, y) [AllOnes=0]
7539 // (select cc y, 0) [AllOnes=0]
7540 // (zext cc) [AllOnes=0]
7541 // (sext cc) [AllOnes=0/1]
7542 // (select cc -1, y) [AllOnes=1]
7543 // (select cc y, -1) [AllOnes=1]
7545 // Invert is set when N is the null/all ones constant when CC is false.
7546 // OtherOp is set to the alternative value of N.
7547 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes,
7548 SDValue &CC, bool &Invert,
7550 SelectionDAG &DAG) {
7551 switch (N->getOpcode()) {
7552 default: return false;
7554 CC = N->getOperand(0);
7555 SDValue N1 = N->getOperand(1);
7556 SDValue N2 = N->getOperand(2);
7557 if (isZeroOrAllOnes(N1, AllOnes)) {
7562 if (isZeroOrAllOnes(N2, AllOnes)) {
7569 case ISD::ZERO_EXTEND:
7570 // (zext cc) can never be the all ones value.
7574 case ISD::SIGN_EXTEND: {
7575 EVT VT = N->getValueType(0);
7576 CC = N->getOperand(0);
7577 if (CC.getValueType() != MVT::i1)
7581 // When looking for an AllOnes constant, N is an sext, and the 'other'
7583 OtherOp = DAG.getConstant(0, VT);
7584 else if (N->getOpcode() == ISD::ZERO_EXTEND)
7585 // When looking for a 0 constant, N can be zext or sext.
7586 OtherOp = DAG.getConstant(1, VT);
7588 OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT);
7594 // Combine a constant select operand into its use:
7596 // (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
7597 // (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
7598 // (and (select cc, -1, c), x) -> (select cc, x, (and, x, c)) [AllOnes=1]
7599 // (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
7600 // (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
7602 // The transform is rejected if the select doesn't have a constant operand that
7603 // is null, or all ones when AllOnes is set.
7605 // Also recognize sext/zext from i1:
7607 // (add (zext cc), x) -> (select cc (add x, 1), x)
7608 // (add (sext cc), x) -> (select cc (add x, -1), x)
7610 // These transformations eventually create predicated instructions.
7612 // @param N The node to transform.
7613 // @param Slct The N operand that is a select.
7614 // @param OtherOp The other N operand (x above).
7615 // @param DCI Context.
7616 // @param AllOnes Require the select constant to be all ones instead of null.
7617 // @returns The new node, or SDValue() on failure.
7619 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
7620 TargetLowering::DAGCombinerInfo &DCI,
7621 bool AllOnes = false) {
7622 SelectionDAG &DAG = DCI.DAG;
7623 EVT VT = N->getValueType(0);
7624 SDValue NonConstantVal;
7627 if (!isConditionalZeroOrAllOnes(Slct.getNode(), AllOnes, CCOp, SwapSelectOps,
7628 NonConstantVal, DAG))
7631 // Slct is now know to be the desired identity constant when CC is true.
7632 SDValue TrueVal = OtherOp;
7633 SDValue FalseVal = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
7634 OtherOp, NonConstantVal);
7635 // Unless SwapSelectOps says CC should be false.
7637 std::swap(TrueVal, FalseVal);
7639 return DAG.getNode(ISD::SELECT, SDLoc(N), VT,
7640 CCOp, TrueVal, FalseVal);
7643 // Attempt combineSelectAndUse on each operand of a commutative operator N.
7645 SDValue combineSelectAndUseCommutative(SDNode *N, bool AllOnes,
7646 TargetLowering::DAGCombinerInfo &DCI) {
7647 SDValue N0 = N->getOperand(0);
7648 SDValue N1 = N->getOperand(1);
7649 if (N0.getNode()->hasOneUse()) {
7650 SDValue Result = combineSelectAndUse(N, N0, N1, DCI, AllOnes);
7651 if (Result.getNode())
7654 if (N1.getNode()->hasOneUse()) {
7655 SDValue Result = combineSelectAndUse(N, N1, N0, DCI, AllOnes);
7656 if (Result.getNode())
7662 // AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction
7663 // (only after legalization).
7664 static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1,
7665 TargetLowering::DAGCombinerInfo &DCI,
7666 const ARMSubtarget *Subtarget) {
7668 // Only perform optimization if after legalize, and if NEON is available. We
7669 // also expected both operands to be BUILD_VECTORs.
7670 if (DCI.isBeforeLegalize() || !Subtarget->hasNEON()
7671 || N0.getOpcode() != ISD::BUILD_VECTOR
7672 || N1.getOpcode() != ISD::BUILD_VECTOR)
7675 // Check output type since VPADDL operand elements can only be 8, 16, or 32.
7676 EVT VT = N->getValueType(0);
7677 if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64)
7680 // Check that the vector operands are of the right form.
7681 // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR
7682 // operands, where N is the size of the formed vector.
7683 // Each EXTRACT_VECTOR should have the same input vector and odd or even
7684 // index such that we have a pair wise add pattern.
7686 // Grab the vector that all EXTRACT_VECTOR nodes should be referencing.
7687 if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
7689 SDValue Vec = N0->getOperand(0)->getOperand(0);
7690 SDNode *V = Vec.getNode();
7691 unsigned nextIndex = 0;
7693 // For each operands to the ADD which are BUILD_VECTORs,
7694 // check to see if each of their operands are an EXTRACT_VECTOR with
7695 // the same vector and appropriate index.
7696 for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) {
7697 if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT
7698 && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
7700 SDValue ExtVec0 = N0->getOperand(i);
7701 SDValue ExtVec1 = N1->getOperand(i);
7703 // First operand is the vector, verify its the same.
7704 if (V != ExtVec0->getOperand(0).getNode() ||
7705 V != ExtVec1->getOperand(0).getNode())
7708 // Second is the constant, verify its correct.
7709 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1));
7710 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1));
7712 // For the constant, we want to see all the even or all the odd.
7713 if (!C0 || !C1 || C0->getZExtValue() != nextIndex
7714 || C1->getZExtValue() != nextIndex+1)
7723 // Create VPADDL node.
7724 SelectionDAG &DAG = DCI.DAG;
7725 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7727 // Build operand list.
7728 SmallVector<SDValue, 8> Ops;
7729 Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls,
7730 TLI.getPointerTy()));
7732 // Input is the vector.
7735 // Get widened type and narrowed type.
7737 unsigned numElem = VT.getVectorNumElements();
7739 EVT inputLaneType = Vec.getValueType().getVectorElementType();
7740 switch (inputLaneType.getSimpleVT().SimpleTy) {
7741 case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break;
7742 case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break;
7743 case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break;
7745 llvm_unreachable("Invalid vector element type for padd optimization.");
7748 SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), widenType, Ops);
7749 unsigned ExtOp = VT.bitsGT(tmp.getValueType()) ? ISD::ANY_EXTEND : ISD::TRUNCATE;
7750 return DAG.getNode(ExtOp, SDLoc(N), VT, tmp);
7753 static SDValue findMUL_LOHI(SDValue V) {
7754 if (V->getOpcode() == ISD::UMUL_LOHI ||
7755 V->getOpcode() == ISD::SMUL_LOHI)
7760 static SDValue AddCombineTo64bitMLAL(SDNode *AddcNode,
7761 TargetLowering::DAGCombinerInfo &DCI,
7762 const ARMSubtarget *Subtarget) {
7764 if (Subtarget->isThumb1Only()) return SDValue();
7766 // Only perform the checks after legalize when the pattern is available.
7767 if (DCI.isBeforeLegalize()) return SDValue();
7769 // Look for multiply add opportunities.
7770 // The pattern is a ISD::UMUL_LOHI followed by two add nodes, where
7771 // each add nodes consumes a value from ISD::UMUL_LOHI and there is
7772 // a glue link from the first add to the second add.
7773 // If we find this pattern, we can replace the U/SMUL_LOHI, ADDC, and ADDE by
7774 // a S/UMLAL instruction.
7777 // \ / \ [no multiline comment]
7783 assert(AddcNode->getOpcode() == ISD::ADDC && "Expect an ADDC");
7784 SDValue AddcOp0 = AddcNode->getOperand(0);
7785 SDValue AddcOp1 = AddcNode->getOperand(1);
7787 // Check if the two operands are from the same mul_lohi node.
7788 if (AddcOp0.getNode() == AddcOp1.getNode())
7791 assert(AddcNode->getNumValues() == 2 &&
7792 AddcNode->getValueType(0) == MVT::i32 &&
7793 "Expect ADDC with two result values. First: i32");
7795 // Check that we have a glued ADDC node.
7796 if (AddcNode->getValueType(1) != MVT::Glue)
7799 // Check that the ADDC adds the low result of the S/UMUL_LOHI.
7800 if (AddcOp0->getOpcode() != ISD::UMUL_LOHI &&
7801 AddcOp0->getOpcode() != ISD::SMUL_LOHI &&
7802 AddcOp1->getOpcode() != ISD::UMUL_LOHI &&
7803 AddcOp1->getOpcode() != ISD::SMUL_LOHI)
7806 // Look for the glued ADDE.
7807 SDNode* AddeNode = AddcNode->getGluedUser();
7811 // Make sure it is really an ADDE.
7812 if (AddeNode->getOpcode() != ISD::ADDE)
7815 assert(AddeNode->getNumOperands() == 3 &&
7816 AddeNode->getOperand(2).getValueType() == MVT::Glue &&
7817 "ADDE node has the wrong inputs");
7819 // Check for the triangle shape.
7820 SDValue AddeOp0 = AddeNode->getOperand(0);
7821 SDValue AddeOp1 = AddeNode->getOperand(1);
7823 // Make sure that the ADDE operands are not coming from the same node.
7824 if (AddeOp0.getNode() == AddeOp1.getNode())
7827 // Find the MUL_LOHI node walking up ADDE's operands.
7828 bool IsLeftOperandMUL = false;
7829 SDValue MULOp = findMUL_LOHI(AddeOp0);
7830 if (MULOp == SDValue())
7831 MULOp = findMUL_LOHI(AddeOp1);
7833 IsLeftOperandMUL = true;
7834 if (MULOp == SDValue())
7837 // Figure out the right opcode.
7838 unsigned Opc = MULOp->getOpcode();
7839 unsigned FinalOpc = (Opc == ISD::SMUL_LOHI) ? ARMISD::SMLAL : ARMISD::UMLAL;
7841 // Figure out the high and low input values to the MLAL node.
7842 SDValue* HiMul = &MULOp;
7843 SDValue* HiAdd = nullptr;
7844 SDValue* LoMul = nullptr;
7845 SDValue* LowAdd = nullptr;
7847 if (IsLeftOperandMUL)
7853 if (AddcOp0->getOpcode() == Opc) {
7857 if (AddcOp1->getOpcode() == Opc) {
7865 if (LoMul->getNode() != HiMul->getNode())
7868 // Create the merged node.
7869 SelectionDAG &DAG = DCI.DAG;
7871 // Build operand list.
7872 SmallVector<SDValue, 8> Ops;
7873 Ops.push_back(LoMul->getOperand(0));
7874 Ops.push_back(LoMul->getOperand(1));
7875 Ops.push_back(*LowAdd);
7876 Ops.push_back(*HiAdd);
7878 SDValue MLALNode = DAG.getNode(FinalOpc, SDLoc(AddcNode),
7879 DAG.getVTList(MVT::i32, MVT::i32), Ops);
7881 // Replace the ADDs' nodes uses by the MLA node's values.
7882 SDValue HiMLALResult(MLALNode.getNode(), 1);
7883 DAG.ReplaceAllUsesOfValueWith(SDValue(AddeNode, 0), HiMLALResult);
7885 SDValue LoMLALResult(MLALNode.getNode(), 0);
7886 DAG.ReplaceAllUsesOfValueWith(SDValue(AddcNode, 0), LoMLALResult);
7888 // Return original node to notify the driver to stop replacing.
7889 SDValue resNode(AddcNode, 0);
7893 /// PerformADDCCombine - Target-specific dag combine transform from
7894 /// ISD::ADDC, ISD::ADDE, and ISD::MUL_LOHI to MLAL.
7895 static SDValue PerformADDCCombine(SDNode *N,
7896 TargetLowering::DAGCombinerInfo &DCI,
7897 const ARMSubtarget *Subtarget) {
7899 return AddCombineTo64bitMLAL(N, DCI, Subtarget);
7903 /// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
7904 /// operands N0 and N1. This is a helper for PerformADDCombine that is
7905 /// called with the default operands, and if that fails, with commuted
7907 static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1,
7908 TargetLowering::DAGCombinerInfo &DCI,
7909 const ARMSubtarget *Subtarget){
7911 // Attempt to create vpaddl for this add.
7912 SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget);
7913 if (Result.getNode())
7916 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
7917 if (N0.getNode()->hasOneUse()) {
7918 SDValue Result = combineSelectAndUse(N, N0, N1, DCI);
7919 if (Result.getNode()) return Result;
7924 /// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
7926 static SDValue PerformADDCombine(SDNode *N,
7927 TargetLowering::DAGCombinerInfo &DCI,
7928 const ARMSubtarget *Subtarget) {
7929 SDValue N0 = N->getOperand(0);
7930 SDValue N1 = N->getOperand(1);
7932 // First try with the default operand order.
7933 SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget);
7934 if (Result.getNode())
7937 // If that didn't work, try again with the operands commuted.
7938 return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget);
7941 /// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
7943 static SDValue PerformSUBCombine(SDNode *N,
7944 TargetLowering::DAGCombinerInfo &DCI) {
7945 SDValue N0 = N->getOperand(0);
7946 SDValue N1 = N->getOperand(1);
7948 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
7949 if (N1.getNode()->hasOneUse()) {
7950 SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
7951 if (Result.getNode()) return Result;
7957 /// PerformVMULCombine
7958 /// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the
7959 /// special multiplier accumulator forwarding.
7965 // However, for (A + B) * (A + B),
7972 static SDValue PerformVMULCombine(SDNode *N,
7973 TargetLowering::DAGCombinerInfo &DCI,
7974 const ARMSubtarget *Subtarget) {
7975 if (!Subtarget->hasVMLxForwarding())
7978 SelectionDAG &DAG = DCI.DAG;
7979 SDValue N0 = N->getOperand(0);
7980 SDValue N1 = N->getOperand(1);
7981 unsigned Opcode = N0.getOpcode();
7982 if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
7983 Opcode != ISD::FADD && Opcode != ISD::FSUB) {
7984 Opcode = N1.getOpcode();
7985 if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
7986 Opcode != ISD::FADD && Opcode != ISD::FSUB)
7994 EVT VT = N->getValueType(0);
7996 SDValue N00 = N0->getOperand(0);
7997 SDValue N01 = N0->getOperand(1);
7998 return DAG.getNode(Opcode, DL, VT,
7999 DAG.getNode(ISD::MUL, DL, VT, N00, N1),
8000 DAG.getNode(ISD::MUL, DL, VT, N01, N1));
8003 static SDValue PerformMULCombine(SDNode *N,
8004 TargetLowering::DAGCombinerInfo &DCI,
8005 const ARMSubtarget *Subtarget) {
8006 SelectionDAG &DAG = DCI.DAG;
8008 if (Subtarget->isThumb1Only())
8011 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8014 EVT VT = N->getValueType(0);
8015 if (VT.is64BitVector() || VT.is128BitVector())
8016 return PerformVMULCombine(N, DCI, Subtarget);
8020 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8024 int64_t MulAmt = C->getSExtValue();
8025 unsigned ShiftAmt = countTrailingZeros<uint64_t>(MulAmt);
8027 ShiftAmt = ShiftAmt & (32 - 1);
8028 SDValue V = N->getOperand(0);
8032 MulAmt >>= ShiftAmt;
8035 if (isPowerOf2_32(MulAmt - 1)) {
8036 // (mul x, 2^N + 1) => (add (shl x, N), x)
8037 Res = DAG.getNode(ISD::ADD, DL, VT,
8039 DAG.getNode(ISD::SHL, DL, VT,
8041 DAG.getConstant(Log2_32(MulAmt - 1),
8043 } else if (isPowerOf2_32(MulAmt + 1)) {
8044 // (mul x, 2^N - 1) => (sub (shl x, N), x)
8045 Res = DAG.getNode(ISD::SUB, DL, VT,
8046 DAG.getNode(ISD::SHL, DL, VT,
8048 DAG.getConstant(Log2_32(MulAmt + 1),
8054 uint64_t MulAmtAbs = -MulAmt;
8055 if (isPowerOf2_32(MulAmtAbs + 1)) {
8056 // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
8057 Res = DAG.getNode(ISD::SUB, DL, VT,
8059 DAG.getNode(ISD::SHL, DL, VT,
8061 DAG.getConstant(Log2_32(MulAmtAbs + 1),
8063 } else if (isPowerOf2_32(MulAmtAbs - 1)) {
8064 // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
8065 Res = DAG.getNode(ISD::ADD, DL, VT,
8067 DAG.getNode(ISD::SHL, DL, VT,
8069 DAG.getConstant(Log2_32(MulAmtAbs-1),
8071 Res = DAG.getNode(ISD::SUB, DL, VT,
8072 DAG.getConstant(0, MVT::i32),Res);
8079 Res = DAG.getNode(ISD::SHL, DL, VT,
8080 Res, DAG.getConstant(ShiftAmt, MVT::i32));
8082 // Do not add new nodes to DAG combiner worklist.
8083 DCI.CombineTo(N, Res, false);
8087 static SDValue PerformANDCombine(SDNode *N,
8088 TargetLowering::DAGCombinerInfo &DCI,
8089 const ARMSubtarget *Subtarget) {
8091 // Attempt to use immediate-form VBIC
8092 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
8094 EVT VT = N->getValueType(0);
8095 SelectionDAG &DAG = DCI.DAG;
8097 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8100 APInt SplatBits, SplatUndef;
8101 unsigned SplatBitSize;
8104 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8105 if (SplatBitSize <= 64) {
8107 SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(),
8108 SplatUndef.getZExtValue(), SplatBitSize,
8109 DAG, VbicVT, VT.is128BitVector(),
8111 if (Val.getNode()) {
8113 DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0));
8114 SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val);
8115 return DAG.getNode(ISD::BITCAST, dl, VT, Vbic);
8120 if (!Subtarget->isThumb1Only()) {
8121 // fold (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
8122 SDValue Result = combineSelectAndUseCommutative(N, true, DCI);
8123 if (Result.getNode())
8130 /// PerformORCombine - Target-specific dag combine xforms for ISD::OR
8131 static SDValue PerformORCombine(SDNode *N,
8132 TargetLowering::DAGCombinerInfo &DCI,
8133 const ARMSubtarget *Subtarget) {
8134 // Attempt to use immediate-form VORR
8135 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
8137 EVT VT = N->getValueType(0);
8138 SelectionDAG &DAG = DCI.DAG;
8140 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8143 APInt SplatBits, SplatUndef;
8144 unsigned SplatBitSize;
8146 if (BVN && Subtarget->hasNEON() &&
8147 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8148 if (SplatBitSize <= 64) {
8150 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
8151 SplatUndef.getZExtValue(), SplatBitSize,
8152 DAG, VorrVT, VT.is128BitVector(),
8154 if (Val.getNode()) {
8156 DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0));
8157 SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val);
8158 return DAG.getNode(ISD::BITCAST, dl, VT, Vorr);
8163 if (!Subtarget->isThumb1Only()) {
8164 // fold (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
8165 SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8166 if (Result.getNode())
8170 // The code below optimizes (or (and X, Y), Z).
8171 // The AND operand needs to have a single user to make these optimizations
8173 SDValue N0 = N->getOperand(0);
8174 if (N0.getOpcode() != ISD::AND || !N0.hasOneUse())
8176 SDValue N1 = N->getOperand(1);
8178 // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant.
8179 if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() &&
8180 DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
8182 unsigned SplatBitSize;
8185 APInt SplatBits0, SplatBits1;
8186 BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1));
8187 BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1));
8188 // Ensure that the second operand of both ands are constants
8189 if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize,
8190 HasAnyUndefs) && !HasAnyUndefs) {
8191 if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize,
8192 HasAnyUndefs) && !HasAnyUndefs) {
8193 // Ensure that the bit width of the constants are the same and that
8194 // the splat arguments are logical inverses as per the pattern we
8195 // are trying to simplify.
8196 if (SplatBits0.getBitWidth() == SplatBits1.getBitWidth() &&
8197 SplatBits0 == ~SplatBits1) {
8198 // Canonicalize the vector type to make instruction selection
8200 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
8201 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT,
8205 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
8211 // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when
8214 // BFI is only available on V6T2+
8215 if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops())
8219 // 1) or (and A, mask), val => ARMbfi A, val, mask
8220 // iff (val & mask) == val
8222 // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
8223 // 2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2)
8224 // && mask == ~mask2
8225 // 2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2)
8226 // && ~mask == mask2
8227 // (i.e., copy a bitfield value into another bitfield of the same width)
8232 SDValue N00 = N0.getOperand(0);
8234 // The value and the mask need to be constants so we can verify this is
8235 // actually a bitfield set. If the mask is 0xffff, we can do better
8236 // via a movt instruction, so don't use BFI in that case.
8237 SDValue MaskOp = N0.getOperand(1);
8238 ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp);
8241 unsigned Mask = MaskC->getZExtValue();
8245 // Case (1): or (and A, mask), val => ARMbfi A, val, mask
8246 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
8248 unsigned Val = N1C->getZExtValue();
8249 if ((Val & ~Mask) != Val)
8252 if (ARM::isBitFieldInvertedMask(Mask)) {
8253 Val >>= countTrailingZeros(~Mask);
8255 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00,
8256 DAG.getConstant(Val, MVT::i32),
8257 DAG.getConstant(Mask, MVT::i32));
8259 // Do not add new nodes to DAG combiner worklist.
8260 DCI.CombineTo(N, Res, false);
8263 } else if (N1.getOpcode() == ISD::AND) {
8264 // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
8265 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8268 unsigned Mask2 = N11C->getZExtValue();
8270 // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern
8272 if (ARM::isBitFieldInvertedMask(Mask) &&
8274 // The pack halfword instruction works better for masks that fit it,
8275 // so use that when it's available.
8276 if (Subtarget->hasT2ExtractPack() &&
8277 (Mask == 0xffff || Mask == 0xffff0000))
8280 unsigned amt = countTrailingZeros(Mask2);
8281 Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0),
8282 DAG.getConstant(amt, MVT::i32));
8283 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res,
8284 DAG.getConstant(Mask, MVT::i32));
8285 // Do not add new nodes to DAG combiner worklist.
8286 DCI.CombineTo(N, Res, false);
8288 } else if (ARM::isBitFieldInvertedMask(~Mask) &&
8290 // The pack halfword instruction works better for masks that fit it,
8291 // so use that when it's available.
8292 if (Subtarget->hasT2ExtractPack() &&
8293 (Mask2 == 0xffff || Mask2 == 0xffff0000))
8296 unsigned lsb = countTrailingZeros(Mask);
8297 Res = DAG.getNode(ISD::SRL, DL, VT, N00,
8298 DAG.getConstant(lsb, MVT::i32));
8299 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res,
8300 DAG.getConstant(Mask2, MVT::i32));
8301 // Do not add new nodes to DAG combiner worklist.
8302 DCI.CombineTo(N, Res, false);
8307 if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) &&
8308 N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) &&
8309 ARM::isBitFieldInvertedMask(~Mask)) {
8310 // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask
8311 // where lsb(mask) == #shamt and masked bits of B are known zero.
8312 SDValue ShAmt = N00.getOperand(1);
8313 unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue();
8314 unsigned LSB = countTrailingZeros(Mask);
8318 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0),
8319 DAG.getConstant(~Mask, MVT::i32));
8321 // Do not add new nodes to DAG combiner worklist.
8322 DCI.CombineTo(N, Res, false);
8328 static SDValue PerformXORCombine(SDNode *N,
8329 TargetLowering::DAGCombinerInfo &DCI,
8330 const ARMSubtarget *Subtarget) {
8331 EVT VT = N->getValueType(0);
8332 SelectionDAG &DAG = DCI.DAG;
8334 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8337 if (!Subtarget->isThumb1Only()) {
8338 // fold (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
8339 SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8340 if (Result.getNode())
8347 /// PerformBFICombine - (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff
8348 /// the bits being cleared by the AND are not demanded by the BFI.
8349 static SDValue PerformBFICombine(SDNode *N,
8350 TargetLowering::DAGCombinerInfo &DCI) {
8351 SDValue N1 = N->getOperand(1);
8352 if (N1.getOpcode() == ISD::AND) {
8353 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8356 unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
8357 unsigned LSB = countTrailingZeros(~InvMask);
8358 unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB;
8359 unsigned Mask = (1 << Width)-1;
8360 unsigned Mask2 = N11C->getZExtValue();
8361 if ((Mask & (~Mask2)) == 0)
8362 return DCI.DAG.getNode(ARMISD::BFI, SDLoc(N), N->getValueType(0),
8363 N->getOperand(0), N1.getOperand(0),
8369 /// PerformVMOVRRDCombine - Target-specific dag combine xforms for
8370 /// ARMISD::VMOVRRD.
8371 static SDValue PerformVMOVRRDCombine(SDNode *N,
8372 TargetLowering::DAGCombinerInfo &DCI) {
8373 // vmovrrd(vmovdrr x, y) -> x,y
8374 SDValue InDouble = N->getOperand(0);
8375 if (InDouble.getOpcode() == ARMISD::VMOVDRR)
8376 return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
8378 // vmovrrd(load f64) -> (load i32), (load i32)
8379 SDNode *InNode = InDouble.getNode();
8380 if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() &&
8381 InNode->getValueType(0) == MVT::f64 &&
8382 InNode->getOperand(1).getOpcode() == ISD::FrameIndex &&
8383 !cast<LoadSDNode>(InNode)->isVolatile()) {
8384 // TODO: Should this be done for non-FrameIndex operands?
8385 LoadSDNode *LD = cast<LoadSDNode>(InNode);
8387 SelectionDAG &DAG = DCI.DAG;
8389 SDValue BasePtr = LD->getBasePtr();
8390 SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr,
8391 LD->getPointerInfo(), LD->isVolatile(),
8392 LD->isNonTemporal(), LD->isInvariant(),
8393 LD->getAlignment());
8395 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
8396 DAG.getConstant(4, MVT::i32));
8397 SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr,
8398 LD->getPointerInfo(), LD->isVolatile(),
8399 LD->isNonTemporal(), LD->isInvariant(),
8400 std::min(4U, LD->getAlignment() / 2));
8402 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1));
8403 if (DCI.DAG.getTargetLoweringInfo().isBigEndian())
8404 std::swap (NewLD1, NewLD2);
8405 SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2);
8406 DCI.RemoveFromWorklist(LD);
8414 /// PerformVMOVDRRCombine - Target-specific dag combine xforms for
8415 /// ARMISD::VMOVDRR. This is also used for BUILD_VECTORs with 2 operands.
8416 static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) {
8417 // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X)
8418 SDValue Op0 = N->getOperand(0);
8419 SDValue Op1 = N->getOperand(1);
8420 if (Op0.getOpcode() == ISD::BITCAST)
8421 Op0 = Op0.getOperand(0);
8422 if (Op1.getOpcode() == ISD::BITCAST)
8423 Op1 = Op1.getOperand(0);
8424 if (Op0.getOpcode() == ARMISD::VMOVRRD &&
8425 Op0.getNode() == Op1.getNode() &&
8426 Op0.getResNo() == 0 && Op1.getResNo() == 1)
8427 return DAG.getNode(ISD::BITCAST, SDLoc(N),
8428 N->getValueType(0), Op0.getOperand(0));
8432 /// PerformSTORECombine - Target-specific dag combine xforms for
8434 static SDValue PerformSTORECombine(SDNode *N,
8435 TargetLowering::DAGCombinerInfo &DCI) {
8436 StoreSDNode *St = cast<StoreSDNode>(N);
8437 if (St->isVolatile())
8440 // Optimize trunc store (of multiple scalars) to shuffle and store. First,
8441 // pack all of the elements in one place. Next, store to memory in fewer
8443 SDValue StVal = St->getValue();
8444 EVT VT = StVal.getValueType();
8445 if (St->isTruncatingStore() && VT.isVector()) {
8446 SelectionDAG &DAG = DCI.DAG;
8447 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8448 EVT StVT = St->getMemoryVT();
8449 unsigned NumElems = VT.getVectorNumElements();
8450 assert(StVT != VT && "Cannot truncate to the same type");
8451 unsigned FromEltSz = VT.getVectorElementType().getSizeInBits();
8452 unsigned ToEltSz = StVT.getVectorElementType().getSizeInBits();
8454 // From, To sizes and ElemCount must be pow of two
8455 if (!isPowerOf2_32(NumElems * FromEltSz * ToEltSz)) return SDValue();
8457 // We are going to use the original vector elt for storing.
8458 // Accumulated smaller vector elements must be a multiple of the store size.
8459 if (0 != (NumElems * FromEltSz) % ToEltSz) return SDValue();
8461 unsigned SizeRatio = FromEltSz / ToEltSz;
8462 assert(SizeRatio * NumElems * ToEltSz == VT.getSizeInBits());
8464 // Create a type on which we perform the shuffle.
8465 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(),
8466 NumElems*SizeRatio);
8467 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
8470 SDValue WideVec = DAG.getNode(ISD::BITCAST, DL, WideVecVT, StVal);
8471 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
8472 for (unsigned i = 0; i < NumElems; ++i)
8473 ShuffleVec[i] = TLI.isBigEndian() ? (i+1) * SizeRatio - 1 : i * SizeRatio;
8475 // Can't shuffle using an illegal type.
8476 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
8478 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, DL, WideVec,
8479 DAG.getUNDEF(WideVec.getValueType()),
8481 // At this point all of the data is stored at the bottom of the
8482 // register. We now need to save it to mem.
8484 // Find the largest store unit
8485 MVT StoreType = MVT::i8;
8486 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
8487 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
8488 MVT Tp = (MVT::SimpleValueType)tp;
8489 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToEltSz)
8492 // Didn't find a legal store type.
8493 if (!TLI.isTypeLegal(StoreType))
8496 // Bitcast the original vector into a vector of store-size units
8497 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
8498 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
8499 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
8500 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, DL, StoreVecVT, Shuff);
8501 SmallVector<SDValue, 8> Chains;
8502 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
8503 TLI.getPointerTy());
8504 SDValue BasePtr = St->getBasePtr();
8506 // Perform one or more big stores into memory.
8507 unsigned E = (ToEltSz*NumElems)/StoreType.getSizeInBits();
8508 for (unsigned I = 0; I < E; I++) {
8509 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
8510 StoreType, ShuffWide,
8511 DAG.getIntPtrConstant(I));
8512 SDValue Ch = DAG.getStore(St->getChain(), DL, SubVec, BasePtr,
8513 St->getPointerInfo(), St->isVolatile(),
8514 St->isNonTemporal(), St->getAlignment());
8515 BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr,
8517 Chains.push_back(Ch);
8519 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
8522 if (!ISD::isNormalStore(St))
8525 // Split a store of a VMOVDRR into two integer stores to avoid mixing NEON and
8526 // ARM stores of arguments in the same cache line.
8527 if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR &&
8528 StVal.getNode()->hasOneUse()) {
8529 SelectionDAG &DAG = DCI.DAG;
8530 bool isBigEndian = DAG.getTargetLoweringInfo().isBigEndian();
8532 SDValue BasePtr = St->getBasePtr();
8533 SDValue NewST1 = DAG.getStore(St->getChain(), DL,
8534 StVal.getNode()->getOperand(isBigEndian ? 1 : 0 ),
8535 BasePtr, St->getPointerInfo(), St->isVolatile(),
8536 St->isNonTemporal(), St->getAlignment());
8538 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
8539 DAG.getConstant(4, MVT::i32));
8540 return DAG.getStore(NewST1.getValue(0), DL,
8541 StVal.getNode()->getOperand(isBigEndian ? 0 : 1),
8542 OffsetPtr, St->getPointerInfo(), St->isVolatile(),
8543 St->isNonTemporal(),
8544 std::min(4U, St->getAlignment() / 2));
8547 if (StVal.getValueType() != MVT::i64 ||
8548 StVal.getNode()->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
8551 // Bitcast an i64 store extracted from a vector to f64.
8552 // Otherwise, the i64 value will be legalized to a pair of i32 values.
8553 SelectionDAG &DAG = DCI.DAG;
8555 SDValue IntVec = StVal.getOperand(0);
8556 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
8557 IntVec.getValueType().getVectorNumElements());
8558 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec);
8559 SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8560 Vec, StVal.getOperand(1));
8562 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt);
8563 // Make the DAGCombiner fold the bitcasts.
8564 DCI.AddToWorklist(Vec.getNode());
8565 DCI.AddToWorklist(ExtElt.getNode());
8566 DCI.AddToWorklist(V.getNode());
8567 return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(),
8568 St->getPointerInfo(), St->isVolatile(),
8569 St->isNonTemporal(), St->getAlignment(),
8573 /// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node
8574 /// are normal, non-volatile loads. If so, it is profitable to bitcast an
8575 /// i64 vector to have f64 elements, since the value can then be loaded
8576 /// directly into a VFP register.
8577 static bool hasNormalLoadOperand(SDNode *N) {
8578 unsigned NumElts = N->getValueType(0).getVectorNumElements();
8579 for (unsigned i = 0; i < NumElts; ++i) {
8580 SDNode *Elt = N->getOperand(i).getNode();
8581 if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile())
8587 /// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for
8588 /// ISD::BUILD_VECTOR.
8589 static SDValue PerformBUILD_VECTORCombine(SDNode *N,
8590 TargetLowering::DAGCombinerInfo &DCI){
8591 // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X):
8592 // VMOVRRD is introduced when legalizing i64 types. It forces the i64 value
8593 // into a pair of GPRs, which is fine when the value is used as a scalar,
8594 // but if the i64 value is converted to a vector, we need to undo the VMOVRRD.
8595 SelectionDAG &DAG = DCI.DAG;
8596 if (N->getNumOperands() == 2) {
8597 SDValue RV = PerformVMOVDRRCombine(N, DAG);
8602 // Load i64 elements as f64 values so that type legalization does not split
8603 // them up into i32 values.
8604 EVT VT = N->getValueType(0);
8605 if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N))
8608 SmallVector<SDValue, 8> Ops;
8609 unsigned NumElts = VT.getVectorNumElements();
8610 for (unsigned i = 0; i < NumElts; ++i) {
8611 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i));
8613 // Make the DAGCombiner fold the bitcast.
8614 DCI.AddToWorklist(V.getNode());
8616 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts);
8617 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops);
8618 return DAG.getNode(ISD::BITCAST, dl, VT, BV);
8621 /// \brief Target-specific dag combine xforms for ARMISD::BUILD_VECTOR.
8623 PerformARMBUILD_VECTORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
8624 // ARMISD::BUILD_VECTOR is introduced when legalizing ISD::BUILD_VECTOR.
8625 // At that time, we may have inserted bitcasts from integer to float.
8626 // If these bitcasts have survived DAGCombine, change the lowering of this
8627 // BUILD_VECTOR in something more vector friendly, i.e., that does not
8628 // force to use floating point types.
8630 // Make sure we can change the type of the vector.
8631 // This is possible iff:
8632 // 1. The vector is only used in a bitcast to a integer type. I.e.,
8633 // 1.1. Vector is used only once.
8634 // 1.2. Use is a bit convert to an integer type.
8635 // 2. The size of its operands are 32-bits (64-bits are not legal).
8636 EVT VT = N->getValueType(0);
8637 EVT EltVT = VT.getVectorElementType();
8639 // Check 1.1. and 2.
8640 if (EltVT.getSizeInBits() != 32 || !N->hasOneUse())
8643 // By construction, the input type must be float.
8644 assert(EltVT == MVT::f32 && "Unexpected type!");
8647 SDNode *Use = *N->use_begin();
8648 if (Use->getOpcode() != ISD::BITCAST ||
8649 Use->getValueType(0).isFloatingPoint())
8652 // Check profitability.
8653 // Model is, if more than half of the relevant operands are bitcast from
8654 // i32, turn the build_vector into a sequence of insert_vector_elt.
8655 // Relevant operands are everything that is not statically
8656 // (i.e., at compile time) bitcasted.
8657 unsigned NumOfBitCastedElts = 0;
8658 unsigned NumElts = VT.getVectorNumElements();
8659 unsigned NumOfRelevantElts = NumElts;
8660 for (unsigned Idx = 0; Idx < NumElts; ++Idx) {
8661 SDValue Elt = N->getOperand(Idx);
8662 if (Elt->getOpcode() == ISD::BITCAST) {
8663 // Assume only bit cast to i32 will go away.
8664 if (Elt->getOperand(0).getValueType() == MVT::i32)
8665 ++NumOfBitCastedElts;
8666 } else if (Elt.getOpcode() == ISD::UNDEF || isa<ConstantSDNode>(Elt))
8667 // Constants are statically casted, thus do not count them as
8668 // relevant operands.
8669 --NumOfRelevantElts;
8672 // Check if more than half of the elements require a non-free bitcast.
8673 if (NumOfBitCastedElts <= NumOfRelevantElts / 2)
8676 SelectionDAG &DAG = DCI.DAG;
8677 // Create the new vector type.
8678 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
8679 // Check if the type is legal.
8680 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8681 if (!TLI.isTypeLegal(VecVT))
8685 // ARMISD::BUILD_VECTOR E1, E2, ..., EN.
8686 // => BITCAST INSERT_VECTOR_ELT
8687 // (INSERT_VECTOR_ELT (...), (BITCAST EN-1), N-1),
8689 SDValue Vec = DAG.getUNDEF(VecVT);
8691 for (unsigned Idx = 0 ; Idx < NumElts; ++Idx) {
8692 SDValue V = N->getOperand(Idx);
8693 if (V.getOpcode() == ISD::UNDEF)
8695 if (V.getOpcode() == ISD::BITCAST &&
8696 V->getOperand(0).getValueType() == MVT::i32)
8697 // Fold obvious case.
8698 V = V.getOperand(0);
8700 V = DAG.getNode(ISD::BITCAST, SDLoc(V), MVT::i32, V);
8701 // Make the DAGCombiner fold the bitcasts.
8702 DCI.AddToWorklist(V.getNode());
8704 SDValue LaneIdx = DAG.getConstant(Idx, MVT::i32);
8705 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecVT, Vec, V, LaneIdx);
8707 Vec = DAG.getNode(ISD::BITCAST, dl, VT, Vec);
8708 // Make the DAGCombiner fold the bitcasts.
8709 DCI.AddToWorklist(Vec.getNode());
8713 /// PerformInsertEltCombine - Target-specific dag combine xforms for
8714 /// ISD::INSERT_VECTOR_ELT.
8715 static SDValue PerformInsertEltCombine(SDNode *N,
8716 TargetLowering::DAGCombinerInfo &DCI) {
8717 // Bitcast an i64 load inserted into a vector to f64.
8718 // Otherwise, the i64 value will be legalized to a pair of i32 values.
8719 EVT VT = N->getValueType(0);
8720 SDNode *Elt = N->getOperand(1).getNode();
8721 if (VT.getVectorElementType() != MVT::i64 ||
8722 !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile())
8725 SelectionDAG &DAG = DCI.DAG;
8727 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
8728 VT.getVectorNumElements());
8729 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0));
8730 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1));
8731 // Make the DAGCombiner fold the bitcasts.
8732 DCI.AddToWorklist(Vec.getNode());
8733 DCI.AddToWorklist(V.getNode());
8734 SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT,
8735 Vec, V, N->getOperand(2));
8736 return DAG.getNode(ISD::BITCAST, dl, VT, InsElt);
8739 /// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for
8740 /// ISD::VECTOR_SHUFFLE.
8741 static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) {
8742 // The LLVM shufflevector instruction does not require the shuffle mask
8743 // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does
8744 // have that requirement. When translating to ISD::VECTOR_SHUFFLE, if the
8745 // operands do not match the mask length, they are extended by concatenating
8746 // them with undef vectors. That is probably the right thing for other
8747 // targets, but for NEON it is better to concatenate two double-register
8748 // size vector operands into a single quad-register size vector. Do that
8749 // transformation here:
8750 // shuffle(concat(v1, undef), concat(v2, undef)) ->
8751 // shuffle(concat(v1, v2), undef)
8752 SDValue Op0 = N->getOperand(0);
8753 SDValue Op1 = N->getOperand(1);
8754 if (Op0.getOpcode() != ISD::CONCAT_VECTORS ||
8755 Op1.getOpcode() != ISD::CONCAT_VECTORS ||
8756 Op0.getNumOperands() != 2 ||
8757 Op1.getNumOperands() != 2)
8759 SDValue Concat0Op1 = Op0.getOperand(1);
8760 SDValue Concat1Op1 = Op1.getOperand(1);
8761 if (Concat0Op1.getOpcode() != ISD::UNDEF ||
8762 Concat1Op1.getOpcode() != ISD::UNDEF)
8764 // Skip the transformation if any of the types are illegal.
8765 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8766 EVT VT = N->getValueType(0);
8767 if (!TLI.isTypeLegal(VT) ||
8768 !TLI.isTypeLegal(Concat0Op1.getValueType()) ||
8769 !TLI.isTypeLegal(Concat1Op1.getValueType()))
8772 SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
8773 Op0.getOperand(0), Op1.getOperand(0));
8774 // Translate the shuffle mask.
8775 SmallVector<int, 16> NewMask;
8776 unsigned NumElts = VT.getVectorNumElements();
8777 unsigned HalfElts = NumElts/2;
8778 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8779 for (unsigned n = 0; n < NumElts; ++n) {
8780 int MaskElt = SVN->getMaskElt(n);
8782 if (MaskElt < (int)HalfElts)
8784 else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts))
8785 NewElt = HalfElts + MaskElt - NumElts;
8786 NewMask.push_back(NewElt);
8788 return DAG.getVectorShuffle(VT, SDLoc(N), NewConcat,
8789 DAG.getUNDEF(VT), NewMask.data());
8792 /// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP and
8793 /// NEON load/store intrinsics to merge base address updates.
8794 static SDValue CombineBaseUpdate(SDNode *N,
8795 TargetLowering::DAGCombinerInfo &DCI) {
8796 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8799 SelectionDAG &DAG = DCI.DAG;
8800 bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID ||
8801 N->getOpcode() == ISD::INTRINSIC_W_CHAIN);
8802 unsigned AddrOpIdx = (isIntrinsic ? 2 : 1);
8803 SDValue Addr = N->getOperand(AddrOpIdx);
8805 // Search for a use of the address operand that is an increment.
8806 for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
8807 UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
8809 if (User->getOpcode() != ISD::ADD ||
8810 UI.getUse().getResNo() != Addr.getResNo())
8813 // Check that the add is independent of the load/store. Otherwise, folding
8814 // it would create a cycle.
8815 if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
8818 // Find the new opcode for the updating load/store.
8820 bool isLaneOp = false;
8821 unsigned NewOpc = 0;
8822 unsigned NumVecs = 0;
8824 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
8826 default: llvm_unreachable("unexpected intrinsic for Neon base update");
8827 case Intrinsic::arm_neon_vld1: NewOpc = ARMISD::VLD1_UPD;
8829 case Intrinsic::arm_neon_vld2: NewOpc = ARMISD::VLD2_UPD;
8831 case Intrinsic::arm_neon_vld3: NewOpc = ARMISD::VLD3_UPD;
8833 case Intrinsic::arm_neon_vld4: NewOpc = ARMISD::VLD4_UPD;
8835 case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD;
8836 NumVecs = 2; isLaneOp = true; break;
8837 case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD;
8838 NumVecs = 3; isLaneOp = true; break;
8839 case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD;
8840 NumVecs = 4; isLaneOp = true; break;
8841 case Intrinsic::arm_neon_vst1: NewOpc = ARMISD::VST1_UPD;
8842 NumVecs = 1; isLoad = false; break;
8843 case Intrinsic::arm_neon_vst2: NewOpc = ARMISD::VST2_UPD;
8844 NumVecs = 2; isLoad = false; break;
8845 case Intrinsic::arm_neon_vst3: NewOpc = ARMISD::VST3_UPD;
8846 NumVecs = 3; isLoad = false; break;
8847 case Intrinsic::arm_neon_vst4: NewOpc = ARMISD::VST4_UPD;
8848 NumVecs = 4; isLoad = false; break;
8849 case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD;
8850 NumVecs = 2; isLoad = false; isLaneOp = true; break;
8851 case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD;
8852 NumVecs = 3; isLoad = false; isLaneOp = true; break;
8853 case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD;
8854 NumVecs = 4; isLoad = false; isLaneOp = true; break;
8858 switch (N->getOpcode()) {
8859 default: llvm_unreachable("unexpected opcode for Neon base update");
8860 case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break;
8861 case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break;
8862 case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break;
8866 // Find the size of memory referenced by the load/store.
8869 VecTy = N->getValueType(0);
8871 VecTy = N->getOperand(AddrOpIdx+1).getValueType();
8872 unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
8874 NumBytes /= VecTy.getVectorNumElements();
8876 // If the increment is a constant, it must match the memory ref size.
8877 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
8878 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
8879 uint64_t IncVal = CInc->getZExtValue();
8880 if (IncVal != NumBytes)
8882 } else if (NumBytes >= 3 * 16) {
8883 // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two
8884 // separate instructions that make it harder to use a non-constant update.
8888 // Create the new updating load/store node.
8890 unsigned NumResultVecs = (isLoad ? NumVecs : 0);
8892 for (n = 0; n < NumResultVecs; ++n)
8894 Tys[n++] = MVT::i32;
8895 Tys[n] = MVT::Other;
8896 SDVTList SDTys = DAG.getVTList(ArrayRef<EVT>(Tys, NumResultVecs+2));
8897 SmallVector<SDValue, 8> Ops;
8898 Ops.push_back(N->getOperand(0)); // incoming chain
8899 Ops.push_back(N->getOperand(AddrOpIdx));
8901 for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands(); ++i) {
8902 Ops.push_back(N->getOperand(i));
8904 MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N);
8905 SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, SDLoc(N), SDTys,
8906 Ops, MemInt->getMemoryVT(),
8907 MemInt->getMemOperand());
8910 std::vector<SDValue> NewResults;
8911 for (unsigned i = 0; i < NumResultVecs; ++i) {
8912 NewResults.push_back(SDValue(UpdN.getNode(), i));
8914 NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain
8915 DCI.CombineTo(N, NewResults);
8916 DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
8923 /// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a
8924 /// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic
8925 /// are also VDUPLANEs. If so, combine them to a vldN-dup operation and
8927 static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
8928 SelectionDAG &DAG = DCI.DAG;
8929 EVT VT = N->getValueType(0);
8930 // vldN-dup instructions only support 64-bit vectors for N > 1.
8931 if (!VT.is64BitVector())
8934 // Check if the VDUPLANE operand is a vldN-dup intrinsic.
8935 SDNode *VLD = N->getOperand(0).getNode();
8936 if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN)
8938 unsigned NumVecs = 0;
8939 unsigned NewOpc = 0;
8940 unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue();
8941 if (IntNo == Intrinsic::arm_neon_vld2lane) {
8943 NewOpc = ARMISD::VLD2DUP;
8944 } else if (IntNo == Intrinsic::arm_neon_vld3lane) {
8946 NewOpc = ARMISD::VLD3DUP;
8947 } else if (IntNo == Intrinsic::arm_neon_vld4lane) {
8949 NewOpc = ARMISD::VLD4DUP;
8954 // First check that all the vldN-lane uses are VDUPLANEs and that the lane
8955 // numbers match the load.
8956 unsigned VLDLaneNo =
8957 cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue();
8958 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
8960 // Ignore uses of the chain result.
8961 if (UI.getUse().getResNo() == NumVecs)
8964 if (User->getOpcode() != ARMISD::VDUPLANE ||
8965 VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue())
8969 // Create the vldN-dup node.
8972 for (n = 0; n < NumVecs; ++n)
8974 Tys[n] = MVT::Other;
8975 SDVTList SDTys = DAG.getVTList(ArrayRef<EVT>(Tys, NumVecs+1));
8976 SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) };
8977 MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD);
8978 SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, SDLoc(VLD), SDTys,
8979 Ops, VLDMemInt->getMemoryVT(),
8980 VLDMemInt->getMemOperand());
8983 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
8985 unsigned ResNo = UI.getUse().getResNo();
8986 // Ignore uses of the chain result.
8987 if (ResNo == NumVecs)
8990 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));
8993 // Now the vldN-lane intrinsic is dead except for its chain result.
8994 // Update uses of the chain.
8995 std::vector<SDValue> VLDDupResults;
8996 for (unsigned n = 0; n < NumVecs; ++n)
8997 VLDDupResults.push_back(SDValue(VLDDup.getNode(), n));
8998 VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs));
8999 DCI.CombineTo(VLD, VLDDupResults);
9004 /// PerformVDUPLANECombine - Target-specific dag combine xforms for
9005 /// ARMISD::VDUPLANE.
9006 static SDValue PerformVDUPLANECombine(SDNode *N,
9007 TargetLowering::DAGCombinerInfo &DCI) {
9008 SDValue Op = N->getOperand(0);
9010 // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses
9011 // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation.
9012 if (CombineVLDDUP(N, DCI))
9013 return SDValue(N, 0);
9015 // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is
9016 // redundant. Ignore bit_converts for now; element sizes are checked below.
9017 while (Op.getOpcode() == ISD::BITCAST)
9018 Op = Op.getOperand(0);
9019 if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM)
9022 // Make sure the VMOV element size is not bigger than the VDUPLANE elements.
9023 unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits();
9024 // The canonical VMOV for a zero vector uses a 32-bit element size.
9025 unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9027 if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0)
9029 EVT VT = N->getValueType(0);
9030 if (EltSize > VT.getVectorElementType().getSizeInBits())
9033 return DCI.DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
9036 // isConstVecPow2 - Return true if each vector element is a power of 2, all
9037 // elements are the same constant, C, and Log2(C) ranges from 1 to 32.
9038 static bool isConstVecPow2(SDValue ConstVec, bool isSigned, uint64_t &C)
9042 for (unsigned I = 0, E = ConstVec.getValueType().getVectorNumElements();
9044 ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(ConstVec.getOperand(I));
9049 APFloat APF = C->getValueAPF();
9050 if (APF.convertToInteger(&cN, 64, isSigned, APFloat::rmTowardZero, &isExact)
9051 != APFloat::opOK || !isExact)
9054 c0 = (I == 0) ? cN : c0;
9055 if (!isPowerOf2_64(cN) || c0 != cN || Log2_64(c0) < 1 || Log2_64(c0) > 32)
9062 /// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD)
9063 /// can replace combinations of VMUL and VCVT (floating-point to integer)
9064 /// when the VMUL has a constant operand that is a power of 2.
9066 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
9067 /// vmul.f32 d16, d17, d16
9068 /// vcvt.s32.f32 d16, d16
9070 /// vcvt.s32.f32 d16, d16, #3
9071 static SDValue PerformVCVTCombine(SDNode *N,
9072 TargetLowering::DAGCombinerInfo &DCI,
9073 const ARMSubtarget *Subtarget) {
9074 SelectionDAG &DAG = DCI.DAG;
9075 SDValue Op = N->getOperand(0);
9077 if (!Subtarget->hasNEON() || !Op.getValueType().isVector() ||
9078 Op.getOpcode() != ISD::FMUL)
9082 SDValue N0 = Op->getOperand(0);
9083 SDValue ConstVec = Op->getOperand(1);
9084 bool isSigned = N->getOpcode() == ISD::FP_TO_SINT;
9086 if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
9087 !isConstVecPow2(ConstVec, isSigned, C))
9090 MVT FloatTy = Op.getSimpleValueType().getVectorElementType();
9091 MVT IntTy = N->getSimpleValueType(0).getVectorElementType();
9092 if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32) {
9093 // These instructions only exist converting from f32 to i32. We can handle
9094 // smaller integers by generating an extra truncate, but larger ones would
9099 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs :
9100 Intrinsic::arm_neon_vcvtfp2fxu;
9101 unsigned NumLanes = Op.getValueType().getVectorNumElements();
9102 SDValue FixConv = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N),
9103 NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
9104 DAG.getConstant(IntrinsicOpcode, MVT::i32), N0,
9105 DAG.getConstant(Log2_64(C), MVT::i32));
9107 if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
9108 FixConv = DAG.getNode(ISD::TRUNCATE, SDLoc(N), N->getValueType(0), FixConv);
9113 /// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD)
9114 /// can replace combinations of VCVT (integer to floating-point) and VDIV
9115 /// when the VDIV has a constant operand that is a power of 2.
9117 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
9118 /// vcvt.f32.s32 d16, d16
9119 /// vdiv.f32 d16, d17, d16
9121 /// vcvt.f32.s32 d16, d16, #3
9122 static SDValue PerformVDIVCombine(SDNode *N,
9123 TargetLowering::DAGCombinerInfo &DCI,
9124 const ARMSubtarget *Subtarget) {
9125 SelectionDAG &DAG = DCI.DAG;
9126 SDValue Op = N->getOperand(0);
9127 unsigned OpOpcode = Op.getNode()->getOpcode();
9129 if (!Subtarget->hasNEON() || !N->getValueType(0).isVector() ||
9130 (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP))
9134 SDValue ConstVec = N->getOperand(1);
9135 bool isSigned = OpOpcode == ISD::SINT_TO_FP;
9137 if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
9138 !isConstVecPow2(ConstVec, isSigned, C))
9141 MVT FloatTy = N->getSimpleValueType(0).getVectorElementType();
9142 MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType();
9143 if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32) {
9144 // These instructions only exist converting from i32 to f32. We can handle
9145 // smaller integers by generating an extra extend, but larger ones would
9150 SDValue ConvInput = Op.getOperand(0);
9151 unsigned NumLanes = Op.getValueType().getVectorNumElements();
9152 if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
9153 ConvInput = DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
9154 SDLoc(N), NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
9157 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp :
9158 Intrinsic::arm_neon_vcvtfxu2fp;
9159 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N),
9161 DAG.getConstant(IntrinsicOpcode, MVT::i32),
9162 ConvInput, DAG.getConstant(Log2_64(C), MVT::i32));
9165 /// Getvshiftimm - Check if this is a valid build_vector for the immediate
9166 /// operand of a vector shift operation, where all the elements of the
9167 /// build_vector must have the same constant integer value.
9168 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
9169 // Ignore bit_converts.
9170 while (Op.getOpcode() == ISD::BITCAST)
9171 Op = Op.getOperand(0);
9172 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
9173 APInt SplatBits, SplatUndef;
9174 unsigned SplatBitSize;
9176 if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
9177 HasAnyUndefs, ElementBits) ||
9178 SplatBitSize > ElementBits)
9180 Cnt = SplatBits.getSExtValue();
9184 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
9185 /// operand of a vector shift left operation. That value must be in the range:
9186 /// 0 <= Value < ElementBits for a left shift; or
9187 /// 0 <= Value <= ElementBits for a long left shift.
9188 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
9189 assert(VT.isVector() && "vector shift count is not a vector type");
9190 unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
9191 if (! getVShiftImm(Op, ElementBits, Cnt))
9193 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
9196 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
9197 /// operand of a vector shift right operation. For a shift opcode, the value
9198 /// is positive, but for an intrinsic the value count must be negative. The
9199 /// absolute value must be in the range:
9200 /// 1 <= |Value| <= ElementBits for a right shift; or
9201 /// 1 <= |Value| <= ElementBits/2 for a narrow right shift.
9202 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
9204 assert(VT.isVector() && "vector shift count is not a vector type");
9205 unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
9206 if (! getVShiftImm(Op, ElementBits, Cnt))
9210 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
9213 /// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
9214 static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
9215 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
9218 // Don't do anything for most intrinsics.
9221 // Vector shifts: check for immediate versions and lower them.
9222 // Note: This is done during DAG combining instead of DAG legalizing because
9223 // the build_vectors for 64-bit vector element shift counts are generally
9224 // not legal, and it is hard to see their values after they get legalized to
9225 // loads from a constant pool.
9226 case Intrinsic::arm_neon_vshifts:
9227 case Intrinsic::arm_neon_vshiftu:
9228 case Intrinsic::arm_neon_vrshifts:
9229 case Intrinsic::arm_neon_vrshiftu:
9230 case Intrinsic::arm_neon_vrshiftn:
9231 case Intrinsic::arm_neon_vqshifts:
9232 case Intrinsic::arm_neon_vqshiftu:
9233 case Intrinsic::arm_neon_vqshiftsu:
9234 case Intrinsic::arm_neon_vqshiftns:
9235 case Intrinsic::arm_neon_vqshiftnu:
9236 case Intrinsic::arm_neon_vqshiftnsu:
9237 case Intrinsic::arm_neon_vqrshiftns:
9238 case Intrinsic::arm_neon_vqrshiftnu:
9239 case Intrinsic::arm_neon_vqrshiftnsu: {
9240 EVT VT = N->getOperand(1).getValueType();
9242 unsigned VShiftOpc = 0;
9245 case Intrinsic::arm_neon_vshifts:
9246 case Intrinsic::arm_neon_vshiftu:
9247 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
9248 VShiftOpc = ARMISD::VSHL;
9251 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
9252 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
9253 ARMISD::VSHRs : ARMISD::VSHRu);
9258 case Intrinsic::arm_neon_vrshifts:
9259 case Intrinsic::arm_neon_vrshiftu:
9260 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
9264 case Intrinsic::arm_neon_vqshifts:
9265 case Intrinsic::arm_neon_vqshiftu:
9266 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9270 case Intrinsic::arm_neon_vqshiftsu:
9271 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9273 llvm_unreachable("invalid shift count for vqshlu intrinsic");
9275 case Intrinsic::arm_neon_vrshiftn:
9276 case Intrinsic::arm_neon_vqshiftns:
9277 case Intrinsic::arm_neon_vqshiftnu:
9278 case Intrinsic::arm_neon_vqshiftnsu:
9279 case Intrinsic::arm_neon_vqrshiftns:
9280 case Intrinsic::arm_neon_vqrshiftnu:
9281 case Intrinsic::arm_neon_vqrshiftnsu:
9282 // Narrowing shifts require an immediate right shift.
9283 if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
9285 llvm_unreachable("invalid shift count for narrowing vector shift "
9289 llvm_unreachable("unhandled vector shift");
9293 case Intrinsic::arm_neon_vshifts:
9294 case Intrinsic::arm_neon_vshiftu:
9295 // Opcode already set above.
9297 case Intrinsic::arm_neon_vrshifts:
9298 VShiftOpc = ARMISD::VRSHRs; break;
9299 case Intrinsic::arm_neon_vrshiftu:
9300 VShiftOpc = ARMISD::VRSHRu; break;
9301 case Intrinsic::arm_neon_vrshiftn:
9302 VShiftOpc = ARMISD::VRSHRN; break;
9303 case Intrinsic::arm_neon_vqshifts:
9304 VShiftOpc = ARMISD::VQSHLs; break;
9305 case Intrinsic::arm_neon_vqshiftu:
9306 VShiftOpc = ARMISD::VQSHLu; break;
9307 case Intrinsic::arm_neon_vqshiftsu:
9308 VShiftOpc = ARMISD::VQSHLsu; break;
9309 case Intrinsic::arm_neon_vqshiftns:
9310 VShiftOpc = ARMISD::VQSHRNs; break;
9311 case Intrinsic::arm_neon_vqshiftnu:
9312 VShiftOpc = ARMISD::VQSHRNu; break;
9313 case Intrinsic::arm_neon_vqshiftnsu:
9314 VShiftOpc = ARMISD::VQSHRNsu; break;
9315 case Intrinsic::arm_neon_vqrshiftns:
9316 VShiftOpc = ARMISD::VQRSHRNs; break;
9317 case Intrinsic::arm_neon_vqrshiftnu:
9318 VShiftOpc = ARMISD::VQRSHRNu; break;
9319 case Intrinsic::arm_neon_vqrshiftnsu:
9320 VShiftOpc = ARMISD::VQRSHRNsu; break;
9323 return DAG.getNode(VShiftOpc, SDLoc(N), N->getValueType(0),
9324 N->getOperand(1), DAG.getConstant(Cnt, MVT::i32));
9327 case Intrinsic::arm_neon_vshiftins: {
9328 EVT VT = N->getOperand(1).getValueType();
9330 unsigned VShiftOpc = 0;
9332 if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
9333 VShiftOpc = ARMISD::VSLI;
9334 else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
9335 VShiftOpc = ARMISD::VSRI;
9337 llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
9340 return DAG.getNode(VShiftOpc, SDLoc(N), N->getValueType(0),
9341 N->getOperand(1), N->getOperand(2),
9342 DAG.getConstant(Cnt, MVT::i32));
9345 case Intrinsic::arm_neon_vqrshifts:
9346 case Intrinsic::arm_neon_vqrshiftu:
9347 // No immediate versions of these to check for.
9354 /// PerformShiftCombine - Checks for immediate versions of vector shifts and
9355 /// lowers them. As with the vector shift intrinsics, this is done during DAG
9356 /// combining instead of DAG legalizing because the build_vectors for 64-bit
9357 /// vector element shift counts are generally not legal, and it is hard to see
9358 /// their values after they get legalized to loads from a constant pool.
9359 static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
9360 const ARMSubtarget *ST) {
9361 EVT VT = N->getValueType(0);
9362 if (N->getOpcode() == ISD::SRL && VT == MVT::i32 && ST->hasV6Ops()) {
9363 // Canonicalize (srl (bswap x), 16) to (rotr (bswap x), 16) if the high
9364 // 16-bits of x is zero. This optimizes rev + lsr 16 to rev16.
9365 SDValue N1 = N->getOperand(1);
9366 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
9367 SDValue N0 = N->getOperand(0);
9368 if (C->getZExtValue() == 16 && N0.getOpcode() == ISD::BSWAP &&
9369 DAG.MaskedValueIsZero(N0.getOperand(0),
9370 APInt::getHighBitsSet(32, 16)))
9371 return DAG.getNode(ISD::ROTR, SDLoc(N), VT, N0, N1);
9375 // Nothing to be done for scalar shifts.
9376 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9377 if (!VT.isVector() || !TLI.isTypeLegal(VT))
9380 assert(ST->hasNEON() && "unexpected vector shift");
9383 switch (N->getOpcode()) {
9384 default: llvm_unreachable("unexpected shift opcode");
9387 if (isVShiftLImm(N->getOperand(1), VT, false, Cnt))
9388 return DAG.getNode(ARMISD::VSHL, SDLoc(N), VT, N->getOperand(0),
9389 DAG.getConstant(Cnt, MVT::i32));
9394 if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
9395 unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
9396 ARMISD::VSHRs : ARMISD::VSHRu);
9397 return DAG.getNode(VShiftOpc, SDLoc(N), VT, N->getOperand(0),
9398 DAG.getConstant(Cnt, MVT::i32));
9404 /// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
9405 /// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
9406 static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
9407 const ARMSubtarget *ST) {
9408 SDValue N0 = N->getOperand(0);
9410 // Check for sign- and zero-extensions of vector extract operations of 8-
9411 // and 16-bit vector elements. NEON supports these directly. They are
9412 // handled during DAG combining because type legalization will promote them
9413 // to 32-bit types and it is messy to recognize the operations after that.
9414 if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
9415 SDValue Vec = N0.getOperand(0);
9416 SDValue Lane = N0.getOperand(1);
9417 EVT VT = N->getValueType(0);
9418 EVT EltVT = N0.getValueType();
9419 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9421 if (VT == MVT::i32 &&
9422 (EltVT == MVT::i8 || EltVT == MVT::i16) &&
9423 TLI.isTypeLegal(Vec.getValueType()) &&
9424 isa<ConstantSDNode>(Lane)) {
9427 switch (N->getOpcode()) {
9428 default: llvm_unreachable("unexpected opcode");
9429 case ISD::SIGN_EXTEND:
9430 Opc = ARMISD::VGETLANEs;
9432 case ISD::ZERO_EXTEND:
9433 case ISD::ANY_EXTEND:
9434 Opc = ARMISD::VGETLANEu;
9437 return DAG.getNode(Opc, SDLoc(N), VT, Vec, Lane);
9444 /// PerformSELECT_CCCombine - Target-specific DAG combining for ISD::SELECT_CC
9445 /// to match f32 max/min patterns to use NEON vmax/vmin instructions.
9446 static SDValue PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG,
9447 const ARMSubtarget *ST) {
9448 // If the target supports NEON, try to use vmax/vmin instructions for f32
9449 // selects like "x < y ? x : y". Unless the NoNaNsFPMath option is set,
9450 // be careful about NaNs: NEON's vmax/vmin return NaN if either operand is
9451 // a NaN; only do the transformation when it matches that behavior.
9453 // For now only do this when using NEON for FP operations; if using VFP, it
9454 // is not obvious that the benefit outweighs the cost of switching to the
9456 if (!ST->hasNEON() || !ST->useNEONForSinglePrecisionFP() ||
9457 N->getValueType(0) != MVT::f32)
9460 SDValue CondLHS = N->getOperand(0);
9461 SDValue CondRHS = N->getOperand(1);
9462 SDValue LHS = N->getOperand(2);
9463 SDValue RHS = N->getOperand(3);
9464 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
9466 unsigned Opcode = 0;
9468 if (DAG.isEqualTo(LHS, CondLHS) && DAG.isEqualTo(RHS, CondRHS)) {
9469 IsReversed = false; // x CC y ? x : y
9470 } else if (DAG.isEqualTo(LHS, CondRHS) && DAG.isEqualTo(RHS, CondLHS)) {
9471 IsReversed = true ; // x CC y ? y : x
9485 // If LHS is NaN, an ordered comparison will be false and the result will
9486 // be the RHS, but vmin(NaN, RHS) = NaN. Avoid this by checking that LHS
9487 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN.
9488 IsUnordered = (CC == ISD::SETULT || CC == ISD::SETULE);
9489 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
9491 // For less-than-or-equal comparisons, "+0 <= -0" will be true but vmin
9492 // will return -0, so vmin can only be used for unsafe math or if one of
9493 // the operands is known to be nonzero.
9494 if ((CC == ISD::SETLE || CC == ISD::SETOLE || CC == ISD::SETULE) &&
9495 !DAG.getTarget().Options.UnsafeFPMath &&
9496 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9498 Opcode = IsReversed ? ARMISD::FMAX : ARMISD::FMIN;
9507 // If LHS is NaN, an ordered comparison will be false and the result will
9508 // be the RHS, but vmax(NaN, RHS) = NaN. Avoid this by checking that LHS
9509 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN.
9510 IsUnordered = (CC == ISD::SETUGT || CC == ISD::SETUGE);
9511 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
9513 // For greater-than-or-equal comparisons, "-0 >= +0" will be true but vmax
9514 // will return +0, so vmax can only be used for unsafe math or if one of
9515 // the operands is known to be nonzero.
9516 if ((CC == ISD::SETGE || CC == ISD::SETOGE || CC == ISD::SETUGE) &&
9517 !DAG.getTarget().Options.UnsafeFPMath &&
9518 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9520 Opcode = IsReversed ? ARMISD::FMIN : ARMISD::FMAX;
9526 return DAG.getNode(Opcode, SDLoc(N), N->getValueType(0), LHS, RHS);
9529 /// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV.
9531 ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const {
9532 SDValue Cmp = N->getOperand(4);
9533 if (Cmp.getOpcode() != ARMISD::CMPZ)
9534 // Only looking at EQ and NE cases.
9537 EVT VT = N->getValueType(0);
9539 SDValue LHS = Cmp.getOperand(0);
9540 SDValue RHS = Cmp.getOperand(1);
9541 SDValue FalseVal = N->getOperand(0);
9542 SDValue TrueVal = N->getOperand(1);
9543 SDValue ARMcc = N->getOperand(2);
9544 ARMCC::CondCodes CC =
9545 (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue();
9563 /// FIXME: Turn this into a target neutral optimization?
9565 if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) {
9566 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc,
9567 N->getOperand(3), Cmp);
9568 } else if (CC == ARMCC::EQ && TrueVal == RHS) {
9570 SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl);
9571 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc,
9572 N->getOperand(3), NewCmp);
9575 if (Res.getNode()) {
9576 APInt KnownZero, KnownOne;
9577 DAG.computeKnownBits(SDValue(N,0), KnownZero, KnownOne);
9578 // Capture demanded bits information that would be otherwise lost.
9579 if (KnownZero == 0xfffffffe)
9580 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9581 DAG.getValueType(MVT::i1));
9582 else if (KnownZero == 0xffffff00)
9583 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9584 DAG.getValueType(MVT::i8));
9585 else if (KnownZero == 0xffff0000)
9586 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9587 DAG.getValueType(MVT::i16));
9593 SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
9594 DAGCombinerInfo &DCI) const {
9595 switch (N->getOpcode()) {
9597 case ISD::ADDC: return PerformADDCCombine(N, DCI, Subtarget);
9598 case ISD::ADD: return PerformADDCombine(N, DCI, Subtarget);
9599 case ISD::SUB: return PerformSUBCombine(N, DCI);
9600 case ISD::MUL: return PerformMULCombine(N, DCI, Subtarget);
9601 case ISD::OR: return PerformORCombine(N, DCI, Subtarget);
9602 case ISD::XOR: return PerformXORCombine(N, DCI, Subtarget);
9603 case ISD::AND: return PerformANDCombine(N, DCI, Subtarget);
9604 case ARMISD::BFI: return PerformBFICombine(N, DCI);
9605 case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI);
9606 case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG);
9607 case ISD::STORE: return PerformSTORECombine(N, DCI);
9608 case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI);
9609 case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI);
9610 case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG);
9611 case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI);
9612 case ISD::FP_TO_SINT:
9613 case ISD::FP_TO_UINT: return PerformVCVTCombine(N, DCI, Subtarget);
9614 case ISD::FDIV: return PerformVDIVCombine(N, DCI, Subtarget);
9615 case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG);
9618 case ISD::SRL: return PerformShiftCombine(N, DCI.DAG, Subtarget);
9619 case ISD::SIGN_EXTEND:
9620 case ISD::ZERO_EXTEND:
9621 case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget);
9622 case ISD::SELECT_CC: return PerformSELECT_CCCombine(N, DCI.DAG, Subtarget);
9623 case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG);
9624 case ARMISD::VLD2DUP:
9625 case ARMISD::VLD3DUP:
9626 case ARMISD::VLD4DUP:
9627 return CombineBaseUpdate(N, DCI);
9628 case ARMISD::BUILD_VECTOR:
9629 return PerformARMBUILD_VECTORCombine(N, DCI);
9630 case ISD::INTRINSIC_VOID:
9631 case ISD::INTRINSIC_W_CHAIN:
9632 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9633 case Intrinsic::arm_neon_vld1:
9634 case Intrinsic::arm_neon_vld2:
9635 case Intrinsic::arm_neon_vld3:
9636 case Intrinsic::arm_neon_vld4:
9637 case Intrinsic::arm_neon_vld2lane:
9638 case Intrinsic::arm_neon_vld3lane:
9639 case Intrinsic::arm_neon_vld4lane:
9640 case Intrinsic::arm_neon_vst1:
9641 case Intrinsic::arm_neon_vst2:
9642 case Intrinsic::arm_neon_vst3:
9643 case Intrinsic::arm_neon_vst4:
9644 case Intrinsic::arm_neon_vst2lane:
9645 case Intrinsic::arm_neon_vst3lane:
9646 case Intrinsic::arm_neon_vst4lane:
9647 return CombineBaseUpdate(N, DCI);
9655 bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc,
9657 return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE);
9660 bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT, unsigned,
9662 // The AllowsUnaliged flag models the SCTLR.A setting in ARM cpus
9663 bool AllowsUnaligned = Subtarget->allowsUnalignedMem();
9665 switch (VT.getSimpleVT().SimpleTy) {
9671 // Unaligned access can use (for example) LRDB, LRDH, LDR
9672 if (AllowsUnaligned) {
9674 *Fast = Subtarget->hasV7Ops();
9681 // For any little-endian targets with neon, we can support unaligned ld/st
9682 // of D and Q (e.g. {D0,D1}) registers by using vld1.i8/vst1.i8.
9683 // A big-endian target may also explicitly support unaligned accesses
9684 if (Subtarget->hasNEON() && (AllowsUnaligned || isLittleEndian())) {
9694 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
9695 unsigned AlignCheck) {
9696 return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
9697 (DstAlign == 0 || DstAlign % AlignCheck == 0));
9700 EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size,
9701 unsigned DstAlign, unsigned SrcAlign,
9702 bool IsMemset, bool ZeroMemset,
9704 MachineFunction &MF) const {
9705 const Function *F = MF.getFunction();
9707 // See if we can use NEON instructions for this...
9708 if ((!IsMemset || ZeroMemset) &&
9709 Subtarget->hasNEON() &&
9710 !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
9711 Attribute::NoImplicitFloat)) {
9714 (memOpAlign(SrcAlign, DstAlign, 16) ||
9715 (allowsUnalignedMemoryAccesses(MVT::v2f64, 0, &Fast) && Fast))) {
9717 } else if (Size >= 8 &&
9718 (memOpAlign(SrcAlign, DstAlign, 8) ||
9719 (allowsUnalignedMemoryAccesses(MVT::f64, 0, &Fast) && Fast))) {
9724 // Lowering to i32/i16 if the size permits.
9730 // Let the target-independent logic figure it out.
9734 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
9735 if (Val.getOpcode() != ISD::LOAD)
9738 EVT VT1 = Val.getValueType();
9739 if (!VT1.isSimple() || !VT1.isInteger() ||
9740 !VT2.isSimple() || !VT2.isInteger())
9743 switch (VT1.getSimpleVT().SimpleTy) {
9748 // 8-bit and 16-bit loads implicitly zero-extend to 32-bits.
9755 bool ARMTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
9756 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
9759 if (!isTypeLegal(EVT::getEVT(Ty1)))
9762 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
9764 // Assuming the caller doesn't have a zeroext or signext return parameter,
9765 // truncation all the way down to i1 is valid.
9770 static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
9775 switch (VT.getSimpleVT().SimpleTy) {
9776 default: return false;
9791 if ((V & (Scale - 1)) != 0)
9794 return V == (V & ((1LL << 5) - 1));
9797 static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
9798 const ARMSubtarget *Subtarget) {
9805 switch (VT.getSimpleVT().SimpleTy) {
9806 default: return false;
9811 // + imm12 or - imm8
9813 return V == (V & ((1LL << 8) - 1));
9814 return V == (V & ((1LL << 12) - 1));
9817 // Same as ARM mode. FIXME: NEON?
9818 if (!Subtarget->hasVFP2())
9823 return V == (V & ((1LL << 8) - 1));
9827 /// isLegalAddressImmediate - Return true if the integer value can be used
9828 /// as the offset of the target addressing mode for load / store of the
9830 static bool isLegalAddressImmediate(int64_t V, EVT VT,
9831 const ARMSubtarget *Subtarget) {
9838 if (Subtarget->isThumb1Only())
9839 return isLegalT1AddressImmediate(V, VT);
9840 else if (Subtarget->isThumb2())
9841 return isLegalT2AddressImmediate(V, VT, Subtarget);
9846 switch (VT.getSimpleVT().SimpleTy) {
9847 default: return false;
9852 return V == (V & ((1LL << 12) - 1));
9855 return V == (V & ((1LL << 8) - 1));
9858 if (!Subtarget->hasVFP2()) // FIXME: NEON?
9863 return V == (V & ((1LL << 8) - 1));
9867 bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
9869 int Scale = AM.Scale;
9873 switch (VT.getSimpleVT().SimpleTy) {
9874 default: return false;
9883 return Scale == 2 || Scale == 4 || Scale == 8;
9886 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
9890 // Note, we allow "void" uses (basically, uses that aren't loads or
9891 // stores), because arm allows folding a scale into many arithmetic
9892 // operations. This should be made more precise and revisited later.
9894 // Allow r << imm, but the imm has to be a multiple of two.
9895 if (Scale & 1) return false;
9896 return isPowerOf2_32(Scale);
9900 /// isLegalAddressingMode - Return true if the addressing mode represented
9901 /// by AM is legal for this target, for a load/store of the specified type.
9902 bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
9904 EVT VT = getValueType(Ty, true);
9905 if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
9908 // Can never fold addr of global into load/store.
9913 case 0: // no scale reg, must be "r+i" or "r", or "i".
9916 if (Subtarget->isThumb1Only())
9920 // ARM doesn't support any R+R*scale+imm addr modes.
9927 if (Subtarget->isThumb2())
9928 return isLegalT2ScaledAddressingMode(AM, VT);
9930 int Scale = AM.Scale;
9931 switch (VT.getSimpleVT().SimpleTy) {
9932 default: return false;
9936 if (Scale < 0) Scale = -Scale;
9940 return isPowerOf2_32(Scale & ~1);
9944 if (((unsigned)AM.HasBaseReg + Scale) <= 2)
9949 // Note, we allow "void" uses (basically, uses that aren't loads or
9950 // stores), because arm allows folding a scale into many arithmetic
9951 // operations. This should be made more precise and revisited later.
9953 // Allow r << imm, but the imm has to be a multiple of two.
9954 if (Scale & 1) return false;
9955 return isPowerOf2_32(Scale);
9961 /// isLegalICmpImmediate - Return true if the specified immediate is legal
9962 /// icmp immediate, that is the target has icmp instructions which can compare
9963 /// a register against the immediate without having to materialize the
9964 /// immediate into a register.
9965 bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
9966 // Thumb2 and ARM modes can use cmn for negative immediates.
9967 if (!Subtarget->isThumb())
9968 return ARM_AM::getSOImmVal(llvm::abs64(Imm)) != -1;
9969 if (Subtarget->isThumb2())
9970 return ARM_AM::getT2SOImmVal(llvm::abs64(Imm)) != -1;
9971 // Thumb1 doesn't have cmn, and only 8-bit immediates.
9972 return Imm >= 0 && Imm <= 255;
9975 /// isLegalAddImmediate - Return true if the specified immediate is a legal add
9976 /// *or sub* immediate, that is the target has add or sub instructions which can
9977 /// add a register with the immediate without having to materialize the
9978 /// immediate into a register.
9979 bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const {
9980 // Same encoding for add/sub, just flip the sign.
9981 int64_t AbsImm = llvm::abs64(Imm);
9982 if (!Subtarget->isThumb())
9983 return ARM_AM::getSOImmVal(AbsImm) != -1;
9984 if (Subtarget->isThumb2())
9985 return ARM_AM::getT2SOImmVal(AbsImm) != -1;
9986 // Thumb1 only has 8-bit unsigned immediate.
9987 return AbsImm >= 0 && AbsImm <= 255;
9990 static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
9991 bool isSEXTLoad, SDValue &Base,
9992 SDValue &Offset, bool &isInc,
9993 SelectionDAG &DAG) {
9994 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
9997 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
9999 Base = Ptr->getOperand(0);
10000 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10001 int RHSC = (int)RHS->getZExtValue();
10002 if (RHSC < 0 && RHSC > -256) {
10003 assert(Ptr->getOpcode() == ISD::ADD);
10005 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10009 isInc = (Ptr->getOpcode() == ISD::ADD);
10010 Offset = Ptr->getOperand(1);
10012 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
10013 // AddressingMode 2
10014 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10015 int RHSC = (int)RHS->getZExtValue();
10016 if (RHSC < 0 && RHSC > -0x1000) {
10017 assert(Ptr->getOpcode() == ISD::ADD);
10019 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10020 Base = Ptr->getOperand(0);
10025 if (Ptr->getOpcode() == ISD::ADD) {
10027 ARM_AM::ShiftOpc ShOpcVal=
10028 ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode());
10029 if (ShOpcVal != ARM_AM::no_shift) {
10030 Base = Ptr->getOperand(1);
10031 Offset = Ptr->getOperand(0);
10033 Base = Ptr->getOperand(0);
10034 Offset = Ptr->getOperand(1);
10039 isInc = (Ptr->getOpcode() == ISD::ADD);
10040 Base = Ptr->getOperand(0);
10041 Offset = Ptr->getOperand(1);
10045 // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
10049 static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
10050 bool isSEXTLoad, SDValue &Base,
10051 SDValue &Offset, bool &isInc,
10052 SelectionDAG &DAG) {
10053 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
10056 Base = Ptr->getOperand(0);
10057 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10058 int RHSC = (int)RHS->getZExtValue();
10059 if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
10060 assert(Ptr->getOpcode() == ISD::ADD);
10062 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10064 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
10065 isInc = Ptr->getOpcode() == ISD::ADD;
10066 Offset = DAG.getConstant(RHSC, RHS->getValueType(0));
10074 /// getPreIndexedAddressParts - returns true by value, base pointer and
10075 /// offset pointer and addressing mode by reference if the node's address
10076 /// can be legally represented as pre-indexed load / store address.
10078 ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
10080 ISD::MemIndexedMode &AM,
10081 SelectionDAG &DAG) const {
10082 if (Subtarget->isThumb1Only())
10087 bool isSEXTLoad = false;
10088 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10089 Ptr = LD->getBasePtr();
10090 VT = LD->getMemoryVT();
10091 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
10092 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10093 Ptr = ST->getBasePtr();
10094 VT = ST->getMemoryVT();
10099 bool isLegal = false;
10100 if (Subtarget->isThumb2())
10101 isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
10102 Offset, isInc, DAG);
10104 isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
10105 Offset, isInc, DAG);
10109 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
10113 /// getPostIndexedAddressParts - returns true by value, base pointer and
10114 /// offset pointer and addressing mode by reference if this node can be
10115 /// combined with a load / store to form a post-indexed load / store.
10116 bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
10119 ISD::MemIndexedMode &AM,
10120 SelectionDAG &DAG) const {
10121 if (Subtarget->isThumb1Only())
10126 bool isSEXTLoad = false;
10127 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10128 VT = LD->getMemoryVT();
10129 Ptr = LD->getBasePtr();
10130 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
10131 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10132 VT = ST->getMemoryVT();
10133 Ptr = ST->getBasePtr();
10138 bool isLegal = false;
10139 if (Subtarget->isThumb2())
10140 isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
10143 isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
10149 // Swap base ptr and offset to catch more post-index load / store when
10150 // it's legal. In Thumb2 mode, offset must be an immediate.
10151 if (Ptr == Offset && Op->getOpcode() == ISD::ADD &&
10152 !Subtarget->isThumb2())
10153 std::swap(Base, Offset);
10155 // Post-indexed load / store update the base pointer.
10160 AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
10164 void ARMTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
10167 const SelectionDAG &DAG,
10168 unsigned Depth) const {
10169 unsigned BitWidth = KnownOne.getBitWidth();
10170 KnownZero = KnownOne = APInt(BitWidth, 0);
10171 switch (Op.getOpcode()) {
10177 // These nodes' second result is a boolean
10178 if (Op.getResNo() == 0)
10180 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
10182 case ARMISD::CMOV: {
10183 // Bits are known zero/one if known on the LHS and RHS.
10184 DAG.computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
10185 if (KnownZero == 0 && KnownOne == 0) return;
10187 APInt KnownZeroRHS, KnownOneRHS;
10188 DAG.computeKnownBits(Op.getOperand(1), KnownZeroRHS, KnownOneRHS, Depth+1);
10189 KnownZero &= KnownZeroRHS;
10190 KnownOne &= KnownOneRHS;
10193 case ISD::INTRINSIC_W_CHAIN: {
10194 ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
10195 Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
10198 case Intrinsic::arm_ldaex:
10199 case Intrinsic::arm_ldrex: {
10200 EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
10201 unsigned MemBits = VT.getScalarType().getSizeInBits();
10202 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
10210 //===----------------------------------------------------------------------===//
10211 // ARM Inline Assembly Support
10212 //===----------------------------------------------------------------------===//
10214 bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const {
10215 // Looking for "rev" which is V6+.
10216 if (!Subtarget->hasV6Ops())
10219 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
10220 std::string AsmStr = IA->getAsmString();
10221 SmallVector<StringRef, 4> AsmPieces;
10222 SplitString(AsmStr, AsmPieces, ";\n");
10224 switch (AsmPieces.size()) {
10225 default: return false;
10227 AsmStr = AsmPieces[0];
10229 SplitString(AsmStr, AsmPieces, " \t,");
10232 if (AsmPieces.size() == 3 &&
10233 AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" &&
10234 IA->getConstraintString().compare(0, 4, "=l,l") == 0) {
10235 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
10236 if (Ty && Ty->getBitWidth() == 32)
10237 return IntrinsicLowering::LowerToByteSwap(CI);
10245 /// getConstraintType - Given a constraint letter, return the type of
10246 /// constraint it is for this target.
10247 ARMTargetLowering::ConstraintType
10248 ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
10249 if (Constraint.size() == 1) {
10250 switch (Constraint[0]) {
10252 case 'l': return C_RegisterClass;
10253 case 'w': return C_RegisterClass;
10254 case 'h': return C_RegisterClass;
10255 case 'x': return C_RegisterClass;
10256 case 't': return C_RegisterClass;
10257 case 'j': return C_Other; // Constant for movw.
10258 // An address with a single base register. Due to the way we
10259 // currently handle addresses it is the same as an 'r' memory constraint.
10260 case 'Q': return C_Memory;
10262 } else if (Constraint.size() == 2) {
10263 switch (Constraint[0]) {
10265 // All 'U+' constraints are addresses.
10266 case 'U': return C_Memory;
10269 return TargetLowering::getConstraintType(Constraint);
10272 /// Examine constraint type and operand type and determine a weight value.
10273 /// This object must already have been set up with the operand type
10274 /// and the current alternative constraint selected.
10275 TargetLowering::ConstraintWeight
10276 ARMTargetLowering::getSingleConstraintMatchWeight(
10277 AsmOperandInfo &info, const char *constraint) const {
10278 ConstraintWeight weight = CW_Invalid;
10279 Value *CallOperandVal = info.CallOperandVal;
10280 // If we don't have a value, we can't do a match,
10281 // but allow it at the lowest weight.
10282 if (!CallOperandVal)
10284 Type *type = CallOperandVal->getType();
10285 // Look at the constraint type.
10286 switch (*constraint) {
10288 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
10291 if (type->isIntegerTy()) {
10292 if (Subtarget->isThumb())
10293 weight = CW_SpecificReg;
10295 weight = CW_Register;
10299 if (type->isFloatingPointTy())
10300 weight = CW_Register;
10306 typedef std::pair<unsigned, const TargetRegisterClass*> RCPair;
10308 ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
10310 if (Constraint.size() == 1) {
10311 // GCC ARM Constraint Letters
10312 switch (Constraint[0]) {
10313 case 'l': // Low regs or general regs.
10314 if (Subtarget->isThumb())
10315 return RCPair(0U, &ARM::tGPRRegClass);
10316 return RCPair(0U, &ARM::GPRRegClass);
10317 case 'h': // High regs or no regs.
10318 if (Subtarget->isThumb())
10319 return RCPair(0U, &ARM::hGPRRegClass);
10322 return RCPair(0U, &ARM::GPRRegClass);
10324 if (VT == MVT::Other)
10326 if (VT == MVT::f32)
10327 return RCPair(0U, &ARM::SPRRegClass);
10328 if (VT.getSizeInBits() == 64)
10329 return RCPair(0U, &ARM::DPRRegClass);
10330 if (VT.getSizeInBits() == 128)
10331 return RCPair(0U, &ARM::QPRRegClass);
10334 if (VT == MVT::Other)
10336 if (VT == MVT::f32)
10337 return RCPair(0U, &ARM::SPR_8RegClass);
10338 if (VT.getSizeInBits() == 64)
10339 return RCPair(0U, &ARM::DPR_8RegClass);
10340 if (VT.getSizeInBits() == 128)
10341 return RCPair(0U, &ARM::QPR_8RegClass);
10344 if (VT == MVT::f32)
10345 return RCPair(0U, &ARM::SPRRegClass);
10349 if (StringRef("{cc}").equals_lower(Constraint))
10350 return std::make_pair(unsigned(ARM::CPSR), &ARM::CCRRegClass);
10352 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
10355 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
10356 /// vector. If it is invalid, don't add anything to Ops.
10357 void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
10358 std::string &Constraint,
10359 std::vector<SDValue>&Ops,
10360 SelectionDAG &DAG) const {
10363 // Currently only support length 1 constraints.
10364 if (Constraint.length() != 1) return;
10366 char ConstraintLetter = Constraint[0];
10367 switch (ConstraintLetter) {
10370 case 'I': case 'J': case 'K': case 'L':
10371 case 'M': case 'N': case 'O':
10372 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
10376 int64_t CVal64 = C->getSExtValue();
10377 int CVal = (int) CVal64;
10378 // None of these constraints allow values larger than 32 bits. Check
10379 // that the value fits in an int.
10380 if (CVal != CVal64)
10383 switch (ConstraintLetter) {
10385 // Constant suitable for movw, must be between 0 and
10387 if (Subtarget->hasV6T2Ops())
10388 if (CVal >= 0 && CVal <= 65535)
10392 if (Subtarget->isThumb1Only()) {
10393 // This must be a constant between 0 and 255, for ADD
10395 if (CVal >= 0 && CVal <= 255)
10397 } else if (Subtarget->isThumb2()) {
10398 // A constant that can be used as an immediate value in a
10399 // data-processing instruction.
10400 if (ARM_AM::getT2SOImmVal(CVal) != -1)
10403 // A constant that can be used as an immediate value in a
10404 // data-processing instruction.
10405 if (ARM_AM::getSOImmVal(CVal) != -1)
10411 if (Subtarget->isThumb()) { // FIXME thumb2
10412 // This must be a constant between -255 and -1, for negated ADD
10413 // immediates. This can be used in GCC with an "n" modifier that
10414 // prints the negated value, for use with SUB instructions. It is
10415 // not useful otherwise but is implemented for compatibility.
10416 if (CVal >= -255 && CVal <= -1)
10419 // This must be a constant between -4095 and 4095. It is not clear
10420 // what this constraint is intended for. Implemented for
10421 // compatibility with GCC.
10422 if (CVal >= -4095 && CVal <= 4095)
10428 if (Subtarget->isThumb1Only()) {
10429 // A 32-bit value where only one byte has a nonzero value. Exclude
10430 // zero to match GCC. This constraint is used by GCC internally for
10431 // constants that can be loaded with a move/shift combination.
10432 // It is not useful otherwise but is implemented for compatibility.
10433 if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
10435 } else if (Subtarget->isThumb2()) {
10436 // A constant whose bitwise inverse can be used as an immediate
10437 // value in a data-processing instruction. This can be used in GCC
10438 // with a "B" modifier that prints the inverted value, for use with
10439 // BIC and MVN instructions. It is not useful otherwise but is
10440 // implemented for compatibility.
10441 if (ARM_AM::getT2SOImmVal(~CVal) != -1)
10444 // A constant whose bitwise inverse can be used as an immediate
10445 // value in a data-processing instruction. This can be used in GCC
10446 // with a "B" modifier that prints the inverted value, for use with
10447 // BIC and MVN instructions. It is not useful otherwise but is
10448 // implemented for compatibility.
10449 if (ARM_AM::getSOImmVal(~CVal) != -1)
10455 if (Subtarget->isThumb1Only()) {
10456 // This must be a constant between -7 and 7,
10457 // for 3-operand ADD/SUB immediate instructions.
10458 if (CVal >= -7 && CVal < 7)
10460 } else if (Subtarget->isThumb2()) {
10461 // A constant whose negation can be used as an immediate value in a
10462 // data-processing instruction. This can be used in GCC with an "n"
10463 // modifier that prints the negated value, for use with SUB
10464 // instructions. It is not useful otherwise but is implemented for
10466 if (ARM_AM::getT2SOImmVal(-CVal) != -1)
10469 // A constant whose negation can be used as an immediate value in a
10470 // data-processing instruction. This can be used in GCC with an "n"
10471 // modifier that prints the negated value, for use with SUB
10472 // instructions. It is not useful otherwise but is implemented for
10474 if (ARM_AM::getSOImmVal(-CVal) != -1)
10480 if (Subtarget->isThumb()) { // FIXME thumb2
10481 // This must be a multiple of 4 between 0 and 1020, for
10482 // ADD sp + immediate.
10483 if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
10486 // A power of two or a constant between 0 and 32. This is used in
10487 // GCC for the shift amount on shifted register operands, but it is
10488 // useful in general for any shift amounts.
10489 if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
10495 if (Subtarget->isThumb()) { // FIXME thumb2
10496 // This must be a constant between 0 and 31, for shift amounts.
10497 if (CVal >= 0 && CVal <= 31)
10503 if (Subtarget->isThumb()) { // FIXME thumb2
10504 // This must be a multiple of 4 between -508 and 508, for
10505 // ADD/SUB sp = sp + immediate.
10506 if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
10511 Result = DAG.getTargetConstant(CVal, Op.getValueType());
10515 if (Result.getNode()) {
10516 Ops.push_back(Result);
10519 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
10522 SDValue ARMTargetLowering::LowerDivRem(SDValue Op, SelectionDAG &DAG) const {
10523 assert(Subtarget->isTargetAEABI() && "Register-based DivRem lowering only");
10524 unsigned Opcode = Op->getOpcode();
10525 assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) &&
10526 "Invalid opcode for Div/Rem lowering");
10527 bool isSigned = (Opcode == ISD::SDIVREM);
10528 EVT VT = Op->getValueType(0);
10529 Type *Ty = VT.getTypeForEVT(*DAG.getContext());
10532 switch (VT.getSimpleVT().SimpleTy) {
10533 default: llvm_unreachable("Unexpected request for libcall!");
10534 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break;
10535 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
10536 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
10537 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
10540 SDValue InChain = DAG.getEntryNode();
10542 TargetLowering::ArgListTy Args;
10543 TargetLowering::ArgListEntry Entry;
10544 for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
10545 EVT ArgVT = Op->getOperand(i).getValueType();
10546 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10547 Entry.Node = Op->getOperand(i);
10549 Entry.isSExt = isSigned;
10550 Entry.isZExt = !isSigned;
10551 Args.push_back(Entry);
10554 SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
10557 Type *RetTy = (Type*)StructType::get(Ty, Ty, NULL);
10560 TargetLowering::CallLoweringInfo CLI(DAG);
10561 CLI.setDebugLoc(dl).setChain(InChain)
10562 .setCallee(getLibcallCallingConv(LC), RetTy, Callee, &Args, 0)
10563 .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
10565 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
10566 return CallInfo.first;
10570 ARMTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const {
10571 assert(Subtarget->isTargetWindows() && "unsupported target platform");
10575 SDValue Chain = Op.getOperand(0);
10576 SDValue Size = Op.getOperand(1);
10578 SDValue Words = DAG.getNode(ISD::SRL, DL, MVT::i32, Size,
10579 DAG.getConstant(2, MVT::i32));
10582 Chain = DAG.getCopyToReg(Chain, DL, ARM::R4, Words, Flag);
10583 Flag = Chain.getValue(1);
10585 SDVTList NodeTys = DAG.getVTList(MVT::i32, MVT::Glue);
10586 Chain = DAG.getNode(ARMISD::WIN__CHKSTK, DL, NodeTys, Chain, Flag);
10588 SDValue NewSP = DAG.getCopyFromReg(Chain, DL, ARM::SP, MVT::i32);
10589 Chain = NewSP.getValue(1);
10591 SDValue Ops[2] = { NewSP, Chain };
10592 return DAG.getMergeValues(Ops, DL);
10596 ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
10597 // The ARM target isn't yet aware of offsets.
10601 bool ARM::isBitFieldInvertedMask(unsigned v) {
10602 if (v == 0xffffffff)
10605 // there can be 1's on either or both "outsides", all the "inside"
10606 // bits must be 0's
10607 unsigned TO = CountTrailingOnes_32(v);
10608 unsigned LO = CountLeadingOnes_32(v);
10609 v = (v >> TO) << TO;
10610 v = (v << LO) >> LO;
10614 /// isFPImmLegal - Returns true if the target can instruction select the
10615 /// specified FP immediate natively. If false, the legalizer will
10616 /// materialize the FP immediate as a load from a constant pool.
10617 bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
10618 if (!Subtarget->hasVFP3())
10620 if (VT == MVT::f32)
10621 return ARM_AM::getFP32Imm(Imm) != -1;
10622 if (VT == MVT::f64)
10623 return ARM_AM::getFP64Imm(Imm) != -1;
10627 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
10628 /// MemIntrinsicNodes. The associated MachineMemOperands record the alignment
10629 /// specified in the intrinsic calls.
10630 bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
10632 unsigned Intrinsic) const {
10633 switch (Intrinsic) {
10634 case Intrinsic::arm_neon_vld1:
10635 case Intrinsic::arm_neon_vld2:
10636 case Intrinsic::arm_neon_vld3:
10637 case Intrinsic::arm_neon_vld4:
10638 case Intrinsic::arm_neon_vld2lane:
10639 case Intrinsic::arm_neon_vld3lane:
10640 case Intrinsic::arm_neon_vld4lane: {
10641 Info.opc = ISD::INTRINSIC_W_CHAIN;
10642 // Conservatively set memVT to the entire set of vectors loaded.
10643 uint64_t NumElts = getDataLayout()->getTypeAllocSize(I.getType()) / 8;
10644 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
10645 Info.ptrVal = I.getArgOperand(0);
10647 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
10648 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
10649 Info.vol = false; // volatile loads with NEON intrinsics not supported
10650 Info.readMem = true;
10651 Info.writeMem = false;
10654 case Intrinsic::arm_neon_vst1:
10655 case Intrinsic::arm_neon_vst2:
10656 case Intrinsic::arm_neon_vst3:
10657 case Intrinsic::arm_neon_vst4:
10658 case Intrinsic::arm_neon_vst2lane:
10659 case Intrinsic::arm_neon_vst3lane:
10660 case Intrinsic::arm_neon_vst4lane: {
10661 Info.opc = ISD::INTRINSIC_VOID;
10662 // Conservatively set memVT to the entire set of vectors stored.
10663 unsigned NumElts = 0;
10664 for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
10665 Type *ArgTy = I.getArgOperand(ArgI)->getType();
10666 if (!ArgTy->isVectorTy())
10668 NumElts += getDataLayout()->getTypeAllocSize(ArgTy) / 8;
10670 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
10671 Info.ptrVal = I.getArgOperand(0);
10673 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
10674 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
10675 Info.vol = false; // volatile stores with NEON intrinsics not supported
10676 Info.readMem = false;
10677 Info.writeMem = true;
10680 case Intrinsic::arm_ldaex:
10681 case Intrinsic::arm_ldrex: {
10682 PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
10683 Info.opc = ISD::INTRINSIC_W_CHAIN;
10684 Info.memVT = MVT::getVT(PtrTy->getElementType());
10685 Info.ptrVal = I.getArgOperand(0);
10687 Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
10689 Info.readMem = true;
10690 Info.writeMem = false;
10693 case Intrinsic::arm_stlex:
10694 case Intrinsic::arm_strex: {
10695 PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
10696 Info.opc = ISD::INTRINSIC_W_CHAIN;
10697 Info.memVT = MVT::getVT(PtrTy->getElementType());
10698 Info.ptrVal = I.getArgOperand(1);
10700 Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
10702 Info.readMem = false;
10703 Info.writeMem = true;
10706 case Intrinsic::arm_stlexd:
10707 case Intrinsic::arm_strexd: {
10708 Info.opc = ISD::INTRINSIC_W_CHAIN;
10709 Info.memVT = MVT::i64;
10710 Info.ptrVal = I.getArgOperand(2);
10714 Info.readMem = false;
10715 Info.writeMem = true;
10718 case Intrinsic::arm_ldaexd:
10719 case Intrinsic::arm_ldrexd: {
10720 Info.opc = ISD::INTRINSIC_W_CHAIN;
10721 Info.memVT = MVT::i64;
10722 Info.ptrVal = I.getArgOperand(0);
10726 Info.readMem = true;
10727 Info.writeMem = false;
10737 /// \brief Returns true if it is beneficial to convert a load of a constant
10738 /// to just the constant itself.
10739 bool ARMTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
10741 assert(Ty->isIntegerTy());
10743 unsigned Bits = Ty->getPrimitiveSizeInBits();
10744 if (Bits == 0 || Bits > 32)
10749 bool ARMTargetLowering::shouldExpandAtomicInIR(Instruction *Inst) const {
10750 // Loads and stores less than 64-bits are already atomic; ones above that
10751 // are doomed anyway, so defer to the default libcall and blame the OS when
10752 // things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit
10753 // anything for those.
10754 bool IsMClass = Subtarget->isMClass();
10755 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
10756 unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits();
10757 return Size == 64 && !IsMClass;
10758 } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
10759 return LI->getType()->getPrimitiveSizeInBits() == 64 && !IsMClass;
10762 // For the real atomic operations, we have ldrex/strex up to 32 bits,
10763 // and up to 64 bits on the non-M profiles
10764 unsigned AtomicLimit = IsMClass ? 32 : 64;
10765 return Inst->getType()->getPrimitiveSizeInBits() <= AtomicLimit;
10768 Value *ARMTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
10769 AtomicOrdering Ord) const {
10770 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10771 Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
10773 Ord == Acquire || Ord == AcquireRelease || Ord == SequentiallyConsistent;
10775 // Since i64 isn't legal and intrinsics don't get type-lowered, the ldrexd
10776 // intrinsic must return {i32, i32} and we have to recombine them into a
10777 // single i64 here.
10778 if (ValTy->getPrimitiveSizeInBits() == 64) {
10779 Intrinsic::ID Int =
10780 IsAcquire ? Intrinsic::arm_ldaexd : Intrinsic::arm_ldrexd;
10781 Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int);
10783 Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10784 Value *LoHi = Builder.CreateCall(Ldrex, Addr, "lohi");
10786 Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
10787 Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
10788 if (!Subtarget->isLittle())
10789 std::swap (Lo, Hi);
10790 Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
10791 Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
10792 return Builder.CreateOr(
10793 Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 32)), "val64");
10796 Type *Tys[] = { Addr->getType() };
10797 Intrinsic::ID Int = IsAcquire ? Intrinsic::arm_ldaex : Intrinsic::arm_ldrex;
10798 Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int, Tys);
10800 return Builder.CreateTruncOrBitCast(
10801 Builder.CreateCall(Ldrex, Addr),
10802 cast<PointerType>(Addr->getType())->getElementType());
10805 Value *ARMTargetLowering::emitStoreConditional(IRBuilder<> &Builder, Value *Val,
10807 AtomicOrdering Ord) const {
10808 Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10810 Ord == Release || Ord == AcquireRelease || Ord == SequentiallyConsistent;
10812 // Since the intrinsics must have legal type, the i64 intrinsics take two
10813 // parameters: "i32, i32". We must marshal Val into the appropriate form
10814 // before the call.
10815 if (Val->getType()->getPrimitiveSizeInBits() == 64) {
10816 Intrinsic::ID Int =
10817 IsRelease ? Intrinsic::arm_stlexd : Intrinsic::arm_strexd;
10818 Function *Strex = Intrinsic::getDeclaration(M, Int);
10819 Type *Int32Ty = Type::getInt32Ty(M->getContext());
10821 Value *Lo = Builder.CreateTrunc(Val, Int32Ty, "lo");
10822 Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 32), Int32Ty, "hi");
10823 if (!Subtarget->isLittle())
10824 std::swap (Lo, Hi);
10825 Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10826 return Builder.CreateCall3(Strex, Lo, Hi, Addr);
10829 Intrinsic::ID Int = IsRelease ? Intrinsic::arm_stlex : Intrinsic::arm_strex;
10830 Type *Tys[] = { Addr->getType() };
10831 Function *Strex = Intrinsic::getDeclaration(M, Int, Tys);
10833 return Builder.CreateCall2(
10834 Strex, Builder.CreateZExtOrBitCast(
10835 Val, Strex->getFunctionType()->getParamType(0)),
10847 static bool isHomogeneousAggregate(Type *Ty, HABaseType &Base,
10848 uint64_t &Members) {
10849 if (const StructType *ST = dyn_cast<StructType>(Ty)) {
10850 for (unsigned i = 0; i < ST->getNumElements(); ++i) {
10851 uint64_t SubMembers = 0;
10852 if (!isHomogeneousAggregate(ST->getElementType(i), Base, SubMembers))
10854 Members += SubMembers;
10856 } else if (const ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
10857 uint64_t SubMembers = 0;
10858 if (!isHomogeneousAggregate(AT->getElementType(), Base, SubMembers))
10860 Members += SubMembers * AT->getNumElements();
10861 } else if (Ty->isFloatTy()) {
10862 if (Base != HA_UNKNOWN && Base != HA_FLOAT)
10866 } else if (Ty->isDoubleTy()) {
10867 if (Base != HA_UNKNOWN && Base != HA_DOUBLE)
10871 } else if (const VectorType *VT = dyn_cast<VectorType>(Ty)) {
10878 return VT->getBitWidth() == 64;
10880 return VT->getBitWidth() == 128;
10882 switch (VT->getBitWidth()) {
10895 return (Members > 0 && Members <= 4);
10898 /// \brief Return true if a type is an AAPCS-VFP homogeneous aggregate.
10899 bool ARMTargetLowering::functionArgumentNeedsConsecutiveRegisters(
10900 Type *Ty, CallingConv::ID CallConv, bool isVarArg) const {
10901 if (getEffectiveCallingConv(CallConv, isVarArg) !=
10902 CallingConv::ARM_AAPCS_VFP)
10905 HABaseType Base = HA_UNKNOWN;
10906 uint64_t Members = 0;
10907 bool result = isHomogeneousAggregate(Ty, Base, Members);
10908 DEBUG(dbgs() << "isHA: " << result << " "; Ty->dump(); dbgs() << "\n");