Fixed/added namespace ending comments using clang-tidy. NFC
[oota-llvm.git] / lib / Target / ARM / ARMISelLowering.cpp
1 //===-- ARMISelLowering.cpp - ARM DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that ARM uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
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/ADT/StringSwitch.h"
27 #include "llvm/CodeGen/CallingConvLower.h"
28 #include "llvm/CodeGen/IntrinsicLowering.h"
29 #include "llvm/CodeGen/MachineBasicBlock.h"
30 #include "llvm/CodeGen/MachineFrameInfo.h"
31 #include "llvm/CodeGen/MachineFunction.h"
32 #include "llvm/CodeGen/MachineInstrBuilder.h"
33 #include "llvm/CodeGen/MachineJumpTableInfo.h"
34 #include "llvm/CodeGen/MachineModuleInfo.h"
35 #include "llvm/CodeGen/MachineRegisterInfo.h"
36 #include "llvm/CodeGen/SelectionDAG.h"
37 #include "llvm/IR/CallingConv.h"
38 #include "llvm/IR/Constants.h"
39 #include "llvm/IR/Function.h"
40 #include "llvm/IR/GlobalValue.h"
41 #include "llvm/IR/IRBuilder.h"
42 #include "llvm/IR/Instruction.h"
43 #include "llvm/IR/Instructions.h"
44 #include "llvm/IR/IntrinsicInst.h"
45 #include "llvm/IR/Intrinsics.h"
46 #include "llvm/IR/Type.h"
47 #include "llvm/MC/MCSectionMachO.h"
48 #include "llvm/Support/CommandLine.h"
49 #include "llvm/Support/Debug.h"
50 #include "llvm/Support/ErrorHandling.h"
51 #include "llvm/Support/MathExtras.h"
52 #include "llvm/Support/raw_ostream.h"
53 #include "llvm/Target/TargetOptions.h"
54 #include <utility>
55 using namespace llvm;
56
57 #define DEBUG_TYPE "arm-isel"
58
59 STATISTIC(NumTailCalls, "Number of tail calls");
60 STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
61 STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments");
62
63 cl::opt<bool>
64 EnableARMLongCalls("arm-long-calls", cl::Hidden,
65   cl::desc("Generate calls via indirect call instructions"),
66   cl::init(false));
67
68 static cl::opt<bool>
69 ARMInterworking("arm-interworking", cl::Hidden,
70   cl::desc("Enable / disable ARM interworking (for debugging only)"),
71   cl::init(true));
72
73 namespace {
74   class ARMCCState : public CCState {
75   public:
76     ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
77                SmallVectorImpl<CCValAssign> &locs, LLVMContext &C,
78                ParmContext PC)
79         : CCState(CC, isVarArg, MF, locs, C) {
80       assert(((PC == Call) || (PC == Prologue)) &&
81              "ARMCCState users must specify whether their context is call"
82              "or prologue generation.");
83       CallOrPrologue = PC;
84     }
85   };
86 } // namespace
87
88 // The APCS parameter registers.
89 static const MCPhysReg GPRArgRegs[] = {
90   ARM::R0, ARM::R1, ARM::R2, ARM::R3
91 };
92
93 void ARMTargetLowering::addTypeForNEON(MVT VT, MVT PromotedLdStVT,
94                                        MVT PromotedBitwiseVT) {
95   if (VT != PromotedLdStVT) {
96     setOperationAction(ISD::LOAD, VT, Promote);
97     AddPromotedToType (ISD::LOAD, VT, PromotedLdStVT);
98
99     setOperationAction(ISD::STORE, VT, Promote);
100     AddPromotedToType (ISD::STORE, VT, PromotedLdStVT);
101   }
102
103   MVT ElemTy = VT.getVectorElementType();
104   if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
105     setOperationAction(ISD::SETCC, VT, Custom);
106   setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
107   setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
108   if (ElemTy == MVT::i32) {
109     setOperationAction(ISD::SINT_TO_FP, VT, Custom);
110     setOperationAction(ISD::UINT_TO_FP, VT, Custom);
111     setOperationAction(ISD::FP_TO_SINT, VT, Custom);
112     setOperationAction(ISD::FP_TO_UINT, VT, Custom);
113   } else {
114     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
115     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
116     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
117     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
118   }
119   setOperationAction(ISD::BUILD_VECTOR,      VT, Custom);
120   setOperationAction(ISD::VECTOR_SHUFFLE,    VT, Custom);
121   setOperationAction(ISD::CONCAT_VECTORS,    VT, Legal);
122   setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
123   setOperationAction(ISD::SELECT,            VT, Expand);
124   setOperationAction(ISD::SELECT_CC,         VT, Expand);
125   setOperationAction(ISD::VSELECT,           VT, Expand);
126   setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
127   if (VT.isInteger()) {
128     setOperationAction(ISD::SHL, VT, Custom);
129     setOperationAction(ISD::SRA, VT, Custom);
130     setOperationAction(ISD::SRL, VT, Custom);
131   }
132
133   // Promote all bit-wise operations.
134   if (VT.isInteger() && VT != PromotedBitwiseVT) {
135     setOperationAction(ISD::AND, VT, Promote);
136     AddPromotedToType (ISD::AND, VT, PromotedBitwiseVT);
137     setOperationAction(ISD::OR,  VT, Promote);
138     AddPromotedToType (ISD::OR,  VT, PromotedBitwiseVT);
139     setOperationAction(ISD::XOR, VT, Promote);
140     AddPromotedToType (ISD::XOR, VT, PromotedBitwiseVT);
141   }
142
143   // Neon does not support vector divide/remainder operations.
144   setOperationAction(ISD::SDIV, VT, Expand);
145   setOperationAction(ISD::UDIV, VT, Expand);
146   setOperationAction(ISD::FDIV, VT, Expand);
147   setOperationAction(ISD::SREM, VT, Expand);
148   setOperationAction(ISD::UREM, VT, Expand);
149   setOperationAction(ISD::FREM, VT, Expand);
150 }
151
152 void ARMTargetLowering::addDRTypeForNEON(MVT VT) {
153   addRegisterClass(VT, &ARM::DPRRegClass);
154   addTypeForNEON(VT, MVT::f64, MVT::v2i32);
155 }
156
157 void ARMTargetLowering::addQRTypeForNEON(MVT VT) {
158   addRegisterClass(VT, &ARM::DPairRegClass);
159   addTypeForNEON(VT, MVT::v2f64, MVT::v4i32);
160 }
161
162 ARMTargetLowering::ARMTargetLowering(const TargetMachine &TM,
163                                      const ARMSubtarget &STI)
164     : TargetLowering(TM), Subtarget(&STI) {
165   RegInfo = Subtarget->getRegisterInfo();
166   Itins = Subtarget->getInstrItineraryData();
167
168   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
169
170   if (Subtarget->isTargetMachO()) {
171     // Uses VFP for Thumb libfuncs if available.
172     if (Subtarget->isThumb() && Subtarget->hasVFP2() &&
173         Subtarget->hasARMOps() && !Subtarget->useSoftFloat()) {
174       // Single-precision floating-point arithmetic.
175       setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
176       setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
177       setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
178       setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
179
180       // Double-precision floating-point arithmetic.
181       setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
182       setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
183       setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
184       setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
185
186       // Single-precision comparisons.
187       setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
188       setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
189       setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
190       setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
191       setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
192       setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
193       setLibcallName(RTLIB::UO_F32,  "__unordsf2vfp");
194       setLibcallName(RTLIB::O_F32,   "__unordsf2vfp");
195
196       setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
197       setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
198       setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
199       setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
200       setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
201       setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
202       setCmpLibcallCC(RTLIB::UO_F32,  ISD::SETNE);
203       setCmpLibcallCC(RTLIB::O_F32,   ISD::SETEQ);
204
205       // Double-precision comparisons.
206       setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
207       setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
208       setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
209       setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
210       setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
211       setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
212       setLibcallName(RTLIB::UO_F64,  "__unorddf2vfp");
213       setLibcallName(RTLIB::O_F64,   "__unorddf2vfp");
214
215       setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
216       setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
217       setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
218       setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
219       setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
220       setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
221       setCmpLibcallCC(RTLIB::UO_F64,  ISD::SETNE);
222       setCmpLibcallCC(RTLIB::O_F64,   ISD::SETEQ);
223
224       // Floating-point to integer conversions.
225       // i64 conversions are done via library routines even when generating VFP
226       // instructions, so use the same ones.
227       setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
228       setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
229       setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
230       setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
231
232       // Conversions between floating types.
233       setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
234       setLibcallName(RTLIB::FPEXT_F32_F64,   "__extendsfdf2vfp");
235
236       // Integer to floating-point conversions.
237       // i64 conversions are done via library routines even when generating VFP
238       // instructions, so use the same ones.
239       // FIXME: There appears to be some naming inconsistency in ARM libgcc:
240       // e.g., __floatunsidf vs. __floatunssidfvfp.
241       setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
242       setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
243       setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
244       setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
245     }
246   }
247
248   // These libcalls are not available in 32-bit.
249   setLibcallName(RTLIB::SHL_I128, nullptr);
250   setLibcallName(RTLIB::SRL_I128, nullptr);
251   setLibcallName(RTLIB::SRA_I128, nullptr);
252
253   if (Subtarget->isAAPCS_ABI() && !Subtarget->isTargetMachO() &&
254       !Subtarget->isTargetWindows()) {
255     static const struct {
256       const RTLIB::Libcall Op;
257       const char * const Name;
258       const CallingConv::ID CC;
259       const ISD::CondCode Cond;
260     } LibraryCalls[] = {
261       // Double-precision floating-point arithmetic helper functions
262       // RTABI chapter 4.1.2, Table 2
263       { RTLIB::ADD_F64, "__aeabi_dadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
264       { RTLIB::DIV_F64, "__aeabi_ddiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
265       { RTLIB::MUL_F64, "__aeabi_dmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
266       { RTLIB::SUB_F64, "__aeabi_dsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
267
268       // Double-precision floating-point comparison helper functions
269       // RTABI chapter 4.1.2, Table 3
270       { RTLIB::OEQ_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
271       { RTLIB::UNE_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
272       { RTLIB::OLT_F64, "__aeabi_dcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
273       { RTLIB::OLE_F64, "__aeabi_dcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
274       { RTLIB::OGE_F64, "__aeabi_dcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
275       { RTLIB::OGT_F64, "__aeabi_dcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
276       { RTLIB::UO_F64,  "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
277       { RTLIB::O_F64,   "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
278
279       // Single-precision floating-point arithmetic helper functions
280       // RTABI chapter 4.1.2, Table 4
281       { RTLIB::ADD_F32, "__aeabi_fadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
282       { RTLIB::DIV_F32, "__aeabi_fdiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
283       { RTLIB::MUL_F32, "__aeabi_fmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
284       { RTLIB::SUB_F32, "__aeabi_fsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
285
286       // Single-precision floating-point comparison helper functions
287       // RTABI chapter 4.1.2, Table 5
288       { RTLIB::OEQ_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
289       { RTLIB::UNE_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
290       { RTLIB::OLT_F32, "__aeabi_fcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
291       { RTLIB::OLE_F32, "__aeabi_fcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
292       { RTLIB::OGE_F32, "__aeabi_fcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
293       { RTLIB::OGT_F32, "__aeabi_fcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
294       { RTLIB::UO_F32,  "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
295       { RTLIB::O_F32,   "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
296
297       // Floating-point to integer conversions.
298       // RTABI chapter 4.1.2, Table 6
299       { RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
300       { RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
301       { RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
302       { RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
303       { RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
304       { RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
305       { RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
306       { RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
307
308       // Conversions between floating types.
309       // RTABI chapter 4.1.2, Table 7
310       { RTLIB::FPROUND_F64_F32, "__aeabi_d2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
311       { RTLIB::FPROUND_F64_F16, "__aeabi_d2h", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
312       { RTLIB::FPEXT_F32_F64,   "__aeabi_f2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
313
314       // Integer to floating-point conversions.
315       // RTABI chapter 4.1.2, Table 8
316       { RTLIB::SINTTOFP_I32_F64, "__aeabi_i2d",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
317       { RTLIB::UINTTOFP_I32_F64, "__aeabi_ui2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
318       { RTLIB::SINTTOFP_I64_F64, "__aeabi_l2d",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
319       { RTLIB::UINTTOFP_I64_F64, "__aeabi_ul2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
320       { RTLIB::SINTTOFP_I32_F32, "__aeabi_i2f",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
321       { RTLIB::UINTTOFP_I32_F32, "__aeabi_ui2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
322       { RTLIB::SINTTOFP_I64_F32, "__aeabi_l2f",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
323       { RTLIB::UINTTOFP_I64_F32, "__aeabi_ul2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
324
325       // Long long helper functions
326       // RTABI chapter 4.2, Table 9
327       { RTLIB::MUL_I64, "__aeabi_lmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
328       { RTLIB::SHL_I64, "__aeabi_llsl", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
329       { RTLIB::SRL_I64, "__aeabi_llsr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
330       { RTLIB::SRA_I64, "__aeabi_lasr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
331
332       // Integer division functions
333       // RTABI chapter 4.3.1
334       { RTLIB::SDIV_I8,  "__aeabi_idiv",     CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
335       { RTLIB::SDIV_I16, "__aeabi_idiv",     CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
336       { RTLIB::SDIV_I32, "__aeabi_idiv",     CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
337       { RTLIB::SDIV_I64, "__aeabi_ldivmod",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
338       { RTLIB::UDIV_I8,  "__aeabi_uidiv",    CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
339       { RTLIB::UDIV_I16, "__aeabi_uidiv",    CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
340       { RTLIB::UDIV_I32, "__aeabi_uidiv",    CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
341       { RTLIB::UDIV_I64, "__aeabi_uldivmod", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
342
343       // Memory operations
344       // RTABI chapter 4.3.4
345       { RTLIB::MEMCPY,  "__aeabi_memcpy",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
346       { RTLIB::MEMMOVE, "__aeabi_memmove", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
347       { RTLIB::MEMSET,  "__aeabi_memset",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
348     };
349
350     for (const auto &LC : LibraryCalls) {
351       setLibcallName(LC.Op, LC.Name);
352       setLibcallCallingConv(LC.Op, LC.CC);
353       if (LC.Cond != ISD::SETCC_INVALID)
354         setCmpLibcallCC(LC.Op, LC.Cond);
355     }
356   }
357
358   if (Subtarget->isTargetWindows()) {
359     static const struct {
360       const RTLIB::Libcall Op;
361       const char * const Name;
362       const CallingConv::ID CC;
363     } LibraryCalls[] = {
364       { RTLIB::FPTOSINT_F32_I64, "__stoi64", CallingConv::ARM_AAPCS_VFP },
365       { RTLIB::FPTOSINT_F64_I64, "__dtoi64", CallingConv::ARM_AAPCS_VFP },
366       { RTLIB::FPTOUINT_F32_I64, "__stou64", CallingConv::ARM_AAPCS_VFP },
367       { RTLIB::FPTOUINT_F64_I64, "__dtou64", CallingConv::ARM_AAPCS_VFP },
368       { RTLIB::SINTTOFP_I64_F32, "__i64tos", CallingConv::ARM_AAPCS_VFP },
369       { RTLIB::SINTTOFP_I64_F64, "__i64tod", CallingConv::ARM_AAPCS_VFP },
370       { RTLIB::UINTTOFP_I64_F32, "__u64tos", CallingConv::ARM_AAPCS_VFP },
371       { RTLIB::UINTTOFP_I64_F64, "__u64tod", CallingConv::ARM_AAPCS_VFP },
372     };
373
374     for (const auto &LC : LibraryCalls) {
375       setLibcallName(LC.Op, LC.Name);
376       setLibcallCallingConv(LC.Op, LC.CC);
377     }
378   }
379
380   // Use divmod compiler-rt calls for iOS 5.0 and later.
381   if (Subtarget->getTargetTriple().isiOS() &&
382       !Subtarget->getTargetTriple().isOSVersionLT(5, 0)) {
383     setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4");
384     setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4");
385   }
386
387   // The half <-> float conversion functions are always soft-float, but are
388   // needed for some targets which use a hard-float calling convention by
389   // default.
390   if (Subtarget->isAAPCS_ABI()) {
391     setLibcallCallingConv(RTLIB::FPROUND_F32_F16, CallingConv::ARM_AAPCS);
392     setLibcallCallingConv(RTLIB::FPROUND_F64_F16, CallingConv::ARM_AAPCS);
393     setLibcallCallingConv(RTLIB::FPEXT_F16_F32, CallingConv::ARM_AAPCS);
394   } else {
395     setLibcallCallingConv(RTLIB::FPROUND_F32_F16, CallingConv::ARM_APCS);
396     setLibcallCallingConv(RTLIB::FPROUND_F64_F16, CallingConv::ARM_APCS);
397     setLibcallCallingConv(RTLIB::FPEXT_F16_F32, CallingConv::ARM_APCS);
398   }
399
400   if (Subtarget->isThumb1Only())
401     addRegisterClass(MVT::i32, &ARM::tGPRRegClass);
402   else
403     addRegisterClass(MVT::i32, &ARM::GPRRegClass);
404   if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
405       !Subtarget->isThumb1Only()) {
406     addRegisterClass(MVT::f32, &ARM::SPRRegClass);
407     addRegisterClass(MVT::f64, &ARM::DPRRegClass);
408   }
409
410   for (MVT VT : MVT::vector_valuetypes()) {
411     for (MVT InnerVT : MVT::vector_valuetypes()) {
412       setTruncStoreAction(VT, InnerVT, Expand);
413       setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
414       setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
415       setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
416     }
417
418     setOperationAction(ISD::MULHS, VT, Expand);
419     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
420     setOperationAction(ISD::MULHU, VT, Expand);
421     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
422
423     setOperationAction(ISD::BSWAP, VT, Expand);
424   }
425
426   setOperationAction(ISD::ConstantFP, MVT::f32, Custom);
427   setOperationAction(ISD::ConstantFP, MVT::f64, Custom);
428
429   setOperationAction(ISD::READ_REGISTER, MVT::i64, Custom);
430   setOperationAction(ISD::WRITE_REGISTER, MVT::i64, Custom);
431
432   if (Subtarget->hasNEON()) {
433     addDRTypeForNEON(MVT::v2f32);
434     addDRTypeForNEON(MVT::v8i8);
435     addDRTypeForNEON(MVT::v4i16);
436     addDRTypeForNEON(MVT::v2i32);
437     addDRTypeForNEON(MVT::v1i64);
438
439     addQRTypeForNEON(MVT::v4f32);
440     addQRTypeForNEON(MVT::v2f64);
441     addQRTypeForNEON(MVT::v16i8);
442     addQRTypeForNEON(MVT::v8i16);
443     addQRTypeForNEON(MVT::v4i32);
444     addQRTypeForNEON(MVT::v2i64);
445
446     // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
447     // neither Neon nor VFP support any arithmetic operations on it.
448     // The same with v4f32. But keep in mind that vadd, vsub, vmul are natively
449     // supported for v4f32.
450     setOperationAction(ISD::FADD, MVT::v2f64, Expand);
451     setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
452     setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
453     // FIXME: Code duplication: FDIV and FREM are expanded always, see
454     // ARMTargetLowering::addTypeForNEON method for details.
455     setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
456     setOperationAction(ISD::FREM, MVT::v2f64, Expand);
457     // FIXME: Create unittest.
458     // In another words, find a way when "copysign" appears in DAG with vector
459     // operands.
460     setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
461     // FIXME: Code duplication: SETCC has custom operation action, see
462     // ARMTargetLowering::addTypeForNEON method for details.
463     setOperationAction(ISD::SETCC, MVT::v2f64, Expand);
464     // FIXME: Create unittest for FNEG and for FABS.
465     setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
466     setOperationAction(ISD::FABS, MVT::v2f64, Expand);
467     setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
468     setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
469     setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
470     setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
471     setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
472     setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
473     setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
474     setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
475     setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
476     setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
477     // FIXME: Create unittest for FCEIL, FTRUNC, FRINT, FNEARBYINT, FFLOOR.
478     setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
479     setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
480     setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
481     setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
482     setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
483     setOperationAction(ISD::FMA, MVT::v2f64, Expand);
484
485     setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
486     setOperationAction(ISD::FSIN, MVT::v4f32, Expand);
487     setOperationAction(ISD::FCOS, MVT::v4f32, Expand);
488     setOperationAction(ISD::FPOWI, MVT::v4f32, Expand);
489     setOperationAction(ISD::FPOW, MVT::v4f32, Expand);
490     setOperationAction(ISD::FLOG, MVT::v4f32, Expand);
491     setOperationAction(ISD::FLOG2, MVT::v4f32, Expand);
492     setOperationAction(ISD::FLOG10, MVT::v4f32, Expand);
493     setOperationAction(ISD::FEXP, MVT::v4f32, Expand);
494     setOperationAction(ISD::FEXP2, MVT::v4f32, Expand);
495     setOperationAction(ISD::FCEIL, MVT::v4f32, Expand);
496     setOperationAction(ISD::FTRUNC, MVT::v4f32, Expand);
497     setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
498     setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
499     setOperationAction(ISD::FFLOOR, MVT::v4f32, Expand);
500
501     // Mark v2f32 intrinsics.
502     setOperationAction(ISD::FSQRT, MVT::v2f32, Expand);
503     setOperationAction(ISD::FSIN, MVT::v2f32, Expand);
504     setOperationAction(ISD::FCOS, MVT::v2f32, Expand);
505     setOperationAction(ISD::FPOWI, MVT::v2f32, Expand);
506     setOperationAction(ISD::FPOW, MVT::v2f32, Expand);
507     setOperationAction(ISD::FLOG, MVT::v2f32, Expand);
508     setOperationAction(ISD::FLOG2, MVT::v2f32, Expand);
509     setOperationAction(ISD::FLOG10, MVT::v2f32, Expand);
510     setOperationAction(ISD::FEXP, MVT::v2f32, Expand);
511     setOperationAction(ISD::FEXP2, MVT::v2f32, Expand);
512     setOperationAction(ISD::FCEIL, MVT::v2f32, Expand);
513     setOperationAction(ISD::FTRUNC, MVT::v2f32, Expand);
514     setOperationAction(ISD::FRINT, MVT::v2f32, Expand);
515     setOperationAction(ISD::FNEARBYINT, MVT::v2f32, Expand);
516     setOperationAction(ISD::FFLOOR, MVT::v2f32, Expand);
517
518     // Neon does not support some operations on v1i64 and v2i64 types.
519     setOperationAction(ISD::MUL, MVT::v1i64, Expand);
520     // Custom handling for some quad-vector types to detect VMULL.
521     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
522     setOperationAction(ISD::MUL, MVT::v4i32, Custom);
523     setOperationAction(ISD::MUL, MVT::v2i64, Custom);
524     // Custom handling for some vector types to avoid expensive expansions
525     setOperationAction(ISD::SDIV, MVT::v4i16, Custom);
526     setOperationAction(ISD::SDIV, MVT::v8i8, Custom);
527     setOperationAction(ISD::UDIV, MVT::v4i16, Custom);
528     setOperationAction(ISD::UDIV, MVT::v8i8, Custom);
529     setOperationAction(ISD::SETCC, MVT::v1i64, Expand);
530     setOperationAction(ISD::SETCC, MVT::v2i64, Expand);
531     // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with
532     // a destination type that is wider than the source, and nor does
533     // it have a FP_TO_[SU]INT instruction with a narrower destination than
534     // source.
535     setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom);
536     setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
537     setOperationAction(ISD::FP_TO_UINT, MVT::v4i16, Custom);
538     setOperationAction(ISD::FP_TO_SINT, MVT::v4i16, Custom);
539
540     setOperationAction(ISD::FP_ROUND,   MVT::v2f32, Expand);
541     setOperationAction(ISD::FP_EXTEND,  MVT::v2f64, Expand);
542
543     // NEON does not have single instruction CTPOP for vectors with element
544     // types wider than 8-bits.  However, custom lowering can leverage the
545     // v8i8/v16i8 vcnt instruction.
546     setOperationAction(ISD::CTPOP,      MVT::v2i32, Custom);
547     setOperationAction(ISD::CTPOP,      MVT::v4i32, Custom);
548     setOperationAction(ISD::CTPOP,      MVT::v4i16, Custom);
549     setOperationAction(ISD::CTPOP,      MVT::v8i16, Custom);
550
551     // NEON only has FMA instructions as of VFP4.
552     if (!Subtarget->hasVFP4()) {
553       setOperationAction(ISD::FMA, MVT::v2f32, Expand);
554       setOperationAction(ISD::FMA, MVT::v4f32, Expand);
555     }
556
557     setTargetDAGCombine(ISD::INTRINSIC_VOID);
558     setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
559     setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
560     setTargetDAGCombine(ISD::SHL);
561     setTargetDAGCombine(ISD::SRL);
562     setTargetDAGCombine(ISD::SRA);
563     setTargetDAGCombine(ISD::SIGN_EXTEND);
564     setTargetDAGCombine(ISD::ZERO_EXTEND);
565     setTargetDAGCombine(ISD::ANY_EXTEND);
566     setTargetDAGCombine(ISD::SELECT_CC);
567     setTargetDAGCombine(ISD::BUILD_VECTOR);
568     setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
569     setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
570     setTargetDAGCombine(ISD::STORE);
571     setTargetDAGCombine(ISD::FP_TO_SINT);
572     setTargetDAGCombine(ISD::FP_TO_UINT);
573     setTargetDAGCombine(ISD::FDIV);
574     setTargetDAGCombine(ISD::LOAD);
575
576     // It is legal to extload from v4i8 to v4i16 or v4i32.
577     for (MVT Ty : {MVT::v8i8, MVT::v4i8, MVT::v2i8, MVT::v4i16, MVT::v2i16,
578                    MVT::v2i32}) {
579       for (MVT VT : MVT::integer_vector_valuetypes()) {
580         setLoadExtAction(ISD::EXTLOAD, VT, Ty, Legal);
581         setLoadExtAction(ISD::ZEXTLOAD, VT, Ty, Legal);
582         setLoadExtAction(ISD::SEXTLOAD, VT, Ty, Legal);
583       }
584     }
585   }
586
587   // ARM and Thumb2 support UMLAL/SMLAL.
588   if (!Subtarget->isThumb1Only())
589     setTargetDAGCombine(ISD::ADDC);
590
591   if (Subtarget->isFPOnlySP()) {
592     // When targetting a floating-point unit with only single-precision
593     // operations, f64 is legal for the few double-precision instructions which
594     // are present However, no double-precision operations other than moves,
595     // loads and stores are provided by the hardware.
596     setOperationAction(ISD::FADD,       MVT::f64, Expand);
597     setOperationAction(ISD::FSUB,       MVT::f64, Expand);
598     setOperationAction(ISD::FMUL,       MVT::f64, Expand);
599     setOperationAction(ISD::FMA,        MVT::f64, Expand);
600     setOperationAction(ISD::FDIV,       MVT::f64, Expand);
601     setOperationAction(ISD::FREM,       MVT::f64, Expand);
602     setOperationAction(ISD::FCOPYSIGN,  MVT::f64, Expand);
603     setOperationAction(ISD::FGETSIGN,   MVT::f64, Expand);
604     setOperationAction(ISD::FNEG,       MVT::f64, Expand);
605     setOperationAction(ISD::FABS,       MVT::f64, Expand);
606     setOperationAction(ISD::FSQRT,      MVT::f64, Expand);
607     setOperationAction(ISD::FSIN,       MVT::f64, Expand);
608     setOperationAction(ISD::FCOS,       MVT::f64, Expand);
609     setOperationAction(ISD::FPOWI,      MVT::f64, Expand);
610     setOperationAction(ISD::FPOW,       MVT::f64, Expand);
611     setOperationAction(ISD::FLOG,       MVT::f64, Expand);
612     setOperationAction(ISD::FLOG2,      MVT::f64, Expand);
613     setOperationAction(ISD::FLOG10,     MVT::f64, Expand);
614     setOperationAction(ISD::FEXP,       MVT::f64, Expand);
615     setOperationAction(ISD::FEXP2,      MVT::f64, Expand);
616     setOperationAction(ISD::FCEIL,      MVT::f64, Expand);
617     setOperationAction(ISD::FTRUNC,     MVT::f64, Expand);
618     setOperationAction(ISD::FRINT,      MVT::f64, Expand);
619     setOperationAction(ISD::FNEARBYINT, MVT::f64, Expand);
620     setOperationAction(ISD::FFLOOR,     MVT::f64, Expand);
621     setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
622     setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
623     setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
624     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
625     setOperationAction(ISD::FP_TO_SINT, MVT::f64, Custom);
626     setOperationAction(ISD::FP_TO_UINT, MVT::f64, Custom);
627     setOperationAction(ISD::FP_ROUND,   MVT::f32, Custom);
628     setOperationAction(ISD::FP_EXTEND,  MVT::f64, Custom);
629   }
630
631   computeRegisterProperties(Subtarget->getRegisterInfo());
632
633   // ARM does not have floating-point extending loads.
634   for (MVT VT : MVT::fp_valuetypes()) {
635     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
636     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f16, Expand);
637   }
638
639   // ... or truncating stores
640   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
641   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
642   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
643
644   // ARM does not have i1 sign extending load.
645   for (MVT VT : MVT::integer_valuetypes())
646     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
647
648   // ARM supports all 4 flavors of integer indexed load / store.
649   if (!Subtarget->isThumb1Only()) {
650     for (unsigned im = (unsigned)ISD::PRE_INC;
651          im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
652       setIndexedLoadAction(im,  MVT::i1,  Legal);
653       setIndexedLoadAction(im,  MVT::i8,  Legal);
654       setIndexedLoadAction(im,  MVT::i16, Legal);
655       setIndexedLoadAction(im,  MVT::i32, Legal);
656       setIndexedStoreAction(im, MVT::i1,  Legal);
657       setIndexedStoreAction(im, MVT::i8,  Legal);
658       setIndexedStoreAction(im, MVT::i16, Legal);
659       setIndexedStoreAction(im, MVT::i32, Legal);
660     }
661   }
662
663   setOperationAction(ISD::SADDO, MVT::i32, Custom);
664   setOperationAction(ISD::UADDO, MVT::i32, Custom);
665   setOperationAction(ISD::SSUBO, MVT::i32, Custom);
666   setOperationAction(ISD::USUBO, MVT::i32, Custom);
667
668   // i64 operation support.
669   setOperationAction(ISD::MUL,     MVT::i64, Expand);
670   setOperationAction(ISD::MULHU,   MVT::i32, Expand);
671   if (Subtarget->isThumb1Only()) {
672     setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
673     setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
674   }
675   if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops()
676       || (Subtarget->isThumb2() && !Subtarget->hasThumb2DSP()))
677     setOperationAction(ISD::MULHS, MVT::i32, Expand);
678
679   setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
680   setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
681   setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
682   setOperationAction(ISD::SRL,       MVT::i64, Custom);
683   setOperationAction(ISD::SRA,       MVT::i64, Custom);
684
685   if (!Subtarget->isThumb1Only()) {
686     // FIXME: We should do this for Thumb1 as well.
687     setOperationAction(ISD::ADDC,    MVT::i32, Custom);
688     setOperationAction(ISD::ADDE,    MVT::i32, Custom);
689     setOperationAction(ISD::SUBC,    MVT::i32, Custom);
690     setOperationAction(ISD::SUBE,    MVT::i32, Custom);
691   }
692
693   // ARM does not have ROTL.
694   setOperationAction(ISD::ROTL,  MVT::i32, Expand);
695   setOperationAction(ISD::CTTZ,  MVT::i32, Custom);
696   setOperationAction(ISD::CTPOP, MVT::i32, Expand);
697   if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
698     setOperationAction(ISD::CTLZ, MVT::i32, Expand);
699
700   // These just redirect to CTTZ and CTLZ on ARM.
701   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i32  , Expand);
702   setOperationAction(ISD::CTLZ_ZERO_UNDEF  , MVT::i32  , Expand);
703
704   setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom);
705
706   // Only ARMv6 has BSWAP.
707   if (!Subtarget->hasV6Ops())
708     setOperationAction(ISD::BSWAP, MVT::i32, Expand);
709
710   if (!(Subtarget->hasDivide() && Subtarget->isThumb2()) &&
711       !(Subtarget->hasDivideInARMMode() && !Subtarget->isThumb())) {
712     // These are expanded into libcalls if the cpu doesn't have HW divider.
713     setOperationAction(ISD::SDIV,  MVT::i32, Expand);
714     setOperationAction(ISD::UDIV,  MVT::i32, Expand);
715   }
716
717   // FIXME: Also set divmod for SREM on EABI
718   setOperationAction(ISD::SREM,  MVT::i32, Expand);
719   setOperationAction(ISD::UREM,  MVT::i32, Expand);
720   // Register based DivRem for AEABI (RTABI 4.2)
721   if (Subtarget->isTargetAEABI()) {
722     setLibcallName(RTLIB::SDIVREM_I8,  "__aeabi_idivmod");
723     setLibcallName(RTLIB::SDIVREM_I16, "__aeabi_idivmod");
724     setLibcallName(RTLIB::SDIVREM_I32, "__aeabi_idivmod");
725     setLibcallName(RTLIB::SDIVREM_I64, "__aeabi_ldivmod");
726     setLibcallName(RTLIB::UDIVREM_I8,  "__aeabi_uidivmod");
727     setLibcallName(RTLIB::UDIVREM_I16, "__aeabi_uidivmod");
728     setLibcallName(RTLIB::UDIVREM_I32, "__aeabi_uidivmod");
729     setLibcallName(RTLIB::UDIVREM_I64, "__aeabi_uldivmod");
730
731     setLibcallCallingConv(RTLIB::SDIVREM_I8, CallingConv::ARM_AAPCS);
732     setLibcallCallingConv(RTLIB::SDIVREM_I16, CallingConv::ARM_AAPCS);
733     setLibcallCallingConv(RTLIB::SDIVREM_I32, CallingConv::ARM_AAPCS);
734     setLibcallCallingConv(RTLIB::SDIVREM_I64, CallingConv::ARM_AAPCS);
735     setLibcallCallingConv(RTLIB::UDIVREM_I8, CallingConv::ARM_AAPCS);
736     setLibcallCallingConv(RTLIB::UDIVREM_I16, CallingConv::ARM_AAPCS);
737     setLibcallCallingConv(RTLIB::UDIVREM_I32, CallingConv::ARM_AAPCS);
738     setLibcallCallingConv(RTLIB::UDIVREM_I64, CallingConv::ARM_AAPCS);
739
740     setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
741     setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
742   } else {
743     setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
744     setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
745   }
746
747   setOperationAction(ISD::GlobalAddress, MVT::i32,   Custom);
748   setOperationAction(ISD::ConstantPool,  MVT::i32,   Custom);
749   setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
750   setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
751   setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
752
753   setOperationAction(ISD::TRAP, MVT::Other, Legal);
754
755   // Use the default implementation.
756   setOperationAction(ISD::VASTART,            MVT::Other, Custom);
757   setOperationAction(ISD::VAARG,              MVT::Other, Expand);
758   setOperationAction(ISD::VACOPY,             MVT::Other, Expand);
759   setOperationAction(ISD::VAEND,              MVT::Other, Expand);
760   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
761   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
762
763   if (!Subtarget->isTargetMachO()) {
764     // Non-MachO platforms may return values in these registers via the
765     // personality function.
766     setExceptionPointerRegister(ARM::R0);
767     setExceptionSelectorRegister(ARM::R1);
768   }
769
770   if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
771     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
772   else
773     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
774
775   // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use
776   // the default expansion. If we are targeting a single threaded system,
777   // then set them all for expand so we can lower them later into their
778   // non-atomic form.
779   if (TM.Options.ThreadModel == ThreadModel::Single)
780     setOperationAction(ISD::ATOMIC_FENCE,   MVT::Other, Expand);
781   else if (Subtarget->hasAnyDataBarrier() && !Subtarget->isThumb1Only()) {
782     // ATOMIC_FENCE needs custom lowering; the others should have been expanded
783     // to ldrex/strex loops already.
784     setOperationAction(ISD::ATOMIC_FENCE,     MVT::Other, Custom);
785
786     // On v8, we have particularly efficient implementations of atomic fences
787     // if they can be combined with nearby atomic loads and stores.
788     if (!Subtarget->hasV8Ops()) {
789       // Automatically insert fences (dmb ish) around ATOMIC_SWAP etc.
790       setInsertFencesForAtomic(true);
791     }
792   } else {
793     // If there's anything we can use as a barrier, go through custom lowering
794     // for ATOMIC_FENCE.
795     setOperationAction(ISD::ATOMIC_FENCE,   MVT::Other,
796                        Subtarget->hasAnyDataBarrier() ? Custom : Expand);
797
798     // Set them all for expansion, which will force libcalls.
799     setOperationAction(ISD::ATOMIC_CMP_SWAP,  MVT::i32, Expand);
800     setOperationAction(ISD::ATOMIC_SWAP,      MVT::i32, Expand);
801     setOperationAction(ISD::ATOMIC_LOAD_ADD,  MVT::i32, Expand);
802     setOperationAction(ISD::ATOMIC_LOAD_SUB,  MVT::i32, Expand);
803     setOperationAction(ISD::ATOMIC_LOAD_AND,  MVT::i32, Expand);
804     setOperationAction(ISD::ATOMIC_LOAD_OR,   MVT::i32, Expand);
805     setOperationAction(ISD::ATOMIC_LOAD_XOR,  MVT::i32, Expand);
806     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand);
807     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand);
808     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand);
809     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand);
810     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand);
811     // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the
812     // Unordered/Monotonic case.
813     setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom);
814     setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom);
815   }
816
817   setOperationAction(ISD::PREFETCH,         MVT::Other, Custom);
818
819   // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes.
820   if (!Subtarget->hasV6Ops()) {
821     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
822     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8,  Expand);
823   }
824   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
825
826   if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
827       !Subtarget->isThumb1Only()) {
828     // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR
829     // iff target supports vfp2.
830     setOperationAction(ISD::BITCAST, MVT::i64, Custom);
831     setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
832   }
833
834   // We want to custom lower some of our intrinsics.
835   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
836   if (Subtarget->isTargetDarwin()) {
837     setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
838     setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
839     setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume");
840   }
841
842   setOperationAction(ISD::SETCC,     MVT::i32, Expand);
843   setOperationAction(ISD::SETCC,     MVT::f32, Expand);
844   setOperationAction(ISD::SETCC,     MVT::f64, Expand);
845   setOperationAction(ISD::SELECT,    MVT::i32, Custom);
846   setOperationAction(ISD::SELECT,    MVT::f32, Custom);
847   setOperationAction(ISD::SELECT,    MVT::f64, Custom);
848   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
849   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
850   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
851
852   setOperationAction(ISD::BRCOND,    MVT::Other, Expand);
853   setOperationAction(ISD::BR_CC,     MVT::i32,   Custom);
854   setOperationAction(ISD::BR_CC,     MVT::f32,   Custom);
855   setOperationAction(ISD::BR_CC,     MVT::f64,   Custom);
856   setOperationAction(ISD::BR_JT,     MVT::Other, Custom);
857
858   // We don't support sin/cos/fmod/copysign/pow
859   setOperationAction(ISD::FSIN,      MVT::f64, Expand);
860   setOperationAction(ISD::FSIN,      MVT::f32, Expand);
861   setOperationAction(ISD::FCOS,      MVT::f32, Expand);
862   setOperationAction(ISD::FCOS,      MVT::f64, Expand);
863   setOperationAction(ISD::FSINCOS,   MVT::f64, Expand);
864   setOperationAction(ISD::FSINCOS,   MVT::f32, Expand);
865   setOperationAction(ISD::FREM,      MVT::f64, Expand);
866   setOperationAction(ISD::FREM,      MVT::f32, Expand);
867   if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
868       !Subtarget->isThumb1Only()) {
869     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
870     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
871   }
872   setOperationAction(ISD::FPOW,      MVT::f64, Expand);
873   setOperationAction(ISD::FPOW,      MVT::f32, Expand);
874
875   if (!Subtarget->hasVFP4()) {
876     setOperationAction(ISD::FMA, MVT::f64, Expand);
877     setOperationAction(ISD::FMA, MVT::f32, Expand);
878   }
879
880   // Various VFP goodness
881   if (!Subtarget->useSoftFloat() && !Subtarget->isThumb1Only()) {
882     // FP-ARMv8 adds f64 <-> f16 conversion. Before that it should be expanded.
883     if (!Subtarget->hasFPARMv8() || Subtarget->isFPOnlySP()) {
884       setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
885       setOperationAction(ISD::FP_TO_FP16, MVT::f64, Expand);
886     }
887
888     // fp16 is a special v7 extension that adds f16 <-> f32 conversions.
889     if (!Subtarget->hasFP16()) {
890       setOperationAction(ISD::FP16_TO_FP, MVT::f32, Expand);
891       setOperationAction(ISD::FP_TO_FP16, MVT::f32, Expand);
892     }
893   }
894
895   // Combine sin / cos into one node or libcall if possible.
896   if (Subtarget->hasSinCos()) {
897     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
898     setLibcallName(RTLIB::SINCOS_F64, "sincos");
899     if (Subtarget->getTargetTriple().isiOS()) {
900       // For iOS, we don't want to the normal expansion of a libcall to
901       // sincos. We want to issue a libcall to __sincos_stret.
902       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
903       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
904     }
905   }
906
907   // FP-ARMv8 implements a lot of rounding-like FP operations.
908   if (Subtarget->hasFPARMv8()) {
909     setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
910     setOperationAction(ISD::FCEIL, MVT::f32, Legal);
911     setOperationAction(ISD::FROUND, MVT::f32, Legal);
912     setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
913     setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
914     setOperationAction(ISD::FRINT, MVT::f32, Legal);
915     if (!Subtarget->isFPOnlySP()) {
916       setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
917       setOperationAction(ISD::FCEIL, MVT::f64, Legal);
918       setOperationAction(ISD::FROUND, MVT::f64, Legal);
919       setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
920       setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
921       setOperationAction(ISD::FRINT, MVT::f64, Legal);
922     }
923   }
924   // We have target-specific dag combine patterns for the following nodes:
925   // ARMISD::VMOVRRD  - No need to call setTargetDAGCombine
926   setTargetDAGCombine(ISD::ADD);
927   setTargetDAGCombine(ISD::SUB);
928   setTargetDAGCombine(ISD::MUL);
929   setTargetDAGCombine(ISD::AND);
930   setTargetDAGCombine(ISD::OR);
931   setTargetDAGCombine(ISD::XOR);
932
933   if (Subtarget->hasV6Ops())
934     setTargetDAGCombine(ISD::SRL);
935
936   setStackPointerRegisterToSaveRestore(ARM::SP);
937
938   if (Subtarget->useSoftFloat() || Subtarget->isThumb1Only() ||
939       !Subtarget->hasVFP2())
940     setSchedulingPreference(Sched::RegPressure);
941   else
942     setSchedulingPreference(Sched::Hybrid);
943
944   //// temporary - rewrite interface to use type
945   MaxStoresPerMemset = 8;
946   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
947   MaxStoresPerMemcpy = 4; // For @llvm.memcpy -> sequence of stores
948   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 4 : 2;
949   MaxStoresPerMemmove = 4; // For @llvm.memmove -> sequence of stores
950   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 4 : 2;
951
952   // On ARM arguments smaller than 4 bytes are extended, so all arguments
953   // are at least 4 bytes aligned.
954   setMinStackArgumentAlignment(4);
955
956   // Prefer likely predicted branches to selects on out-of-order cores.
957   PredictableSelectIsExpensive = Subtarget->isLikeA9();
958
959   setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2);
960 }
961
962 bool ARMTargetLowering::useSoftFloat() const {
963   return Subtarget->useSoftFloat();
964 }
965
966 // FIXME: It might make sense to define the representative register class as the
967 // nearest super-register that has a non-null superset. For example, DPR_VFP2 is
968 // a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently,
969 // SPR's representative would be DPR_VFP2. This should work well if register
970 // pressure tracking were modified such that a register use would increment the
971 // pressure of the register class's representative and all of it's super
972 // classes' representatives transitively. We have not implemented this because
973 // of the difficulty prior to coalescing of modeling operand register classes
974 // due to the common occurrence of cross class copies and subregister insertions
975 // and extractions.
976 std::pair<const TargetRegisterClass *, uint8_t>
977 ARMTargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
978                                            MVT VT) const {
979   const TargetRegisterClass *RRC = nullptr;
980   uint8_t Cost = 1;
981   switch (VT.SimpleTy) {
982   default:
983     return TargetLowering::findRepresentativeClass(TRI, VT);
984   // Use DPR as representative register class for all floating point
985   // and vector types. Since there are 32 SPR registers and 32 DPR registers so
986   // the cost is 1 for both f32 and f64.
987   case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16:
988   case MVT::v2i32: case MVT::v1i64: case MVT::v2f32:
989     RRC = &ARM::DPRRegClass;
990     // When NEON is used for SP, only half of the register file is available
991     // because operations that define both SP and DP results will be constrained
992     // to the VFP2 class (D0-D15). We currently model this constraint prior to
993     // coalescing by double-counting the SP regs. See the FIXME above.
994     if (Subtarget->useNEONForSinglePrecisionFP())
995       Cost = 2;
996     break;
997   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
998   case MVT::v4f32: case MVT::v2f64:
999     RRC = &ARM::DPRRegClass;
1000     Cost = 2;
1001     break;
1002   case MVT::v4i64:
1003     RRC = &ARM::DPRRegClass;
1004     Cost = 4;
1005     break;
1006   case MVT::v8i64:
1007     RRC = &ARM::DPRRegClass;
1008     Cost = 8;
1009     break;
1010   }
1011   return std::make_pair(RRC, Cost);
1012 }
1013
1014 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
1015   switch ((ARMISD::NodeType)Opcode) {
1016   case ARMISD::FIRST_NUMBER:  break;
1017   case ARMISD::Wrapper:       return "ARMISD::Wrapper";
1018   case ARMISD::WrapperPIC:    return "ARMISD::WrapperPIC";
1019   case ARMISD::WrapperJT:     return "ARMISD::WrapperJT";
1020   case ARMISD::COPY_STRUCT_BYVAL: return "ARMISD::COPY_STRUCT_BYVAL";
1021   case ARMISD::CALL:          return "ARMISD::CALL";
1022   case ARMISD::CALL_PRED:     return "ARMISD::CALL_PRED";
1023   case ARMISD::CALL_NOLINK:   return "ARMISD::CALL_NOLINK";
1024   case ARMISD::tCALL:         return "ARMISD::tCALL";
1025   case ARMISD::BRCOND:        return "ARMISD::BRCOND";
1026   case ARMISD::BR_JT:         return "ARMISD::BR_JT";
1027   case ARMISD::BR2_JT:        return "ARMISD::BR2_JT";
1028   case ARMISD::RET_FLAG:      return "ARMISD::RET_FLAG";
1029   case ARMISD::INTRET_FLAG:   return "ARMISD::INTRET_FLAG";
1030   case ARMISD::PIC_ADD:       return "ARMISD::PIC_ADD";
1031   case ARMISD::CMP:           return "ARMISD::CMP";
1032   case ARMISD::CMN:           return "ARMISD::CMN";
1033   case ARMISD::CMPZ:          return "ARMISD::CMPZ";
1034   case ARMISD::CMPFP:         return "ARMISD::CMPFP";
1035   case ARMISD::CMPFPw0:       return "ARMISD::CMPFPw0";
1036   case ARMISD::BCC_i64:       return "ARMISD::BCC_i64";
1037   case ARMISD::FMSTAT:        return "ARMISD::FMSTAT";
1038
1039   case ARMISD::CMOV:          return "ARMISD::CMOV";
1040
1041   case ARMISD::RBIT:          return "ARMISD::RBIT";
1042
1043   case ARMISD::SRL_FLAG:      return "ARMISD::SRL_FLAG";
1044   case ARMISD::SRA_FLAG:      return "ARMISD::SRA_FLAG";
1045   case ARMISD::RRX:           return "ARMISD::RRX";
1046
1047   case ARMISD::ADDC:          return "ARMISD::ADDC";
1048   case ARMISD::ADDE:          return "ARMISD::ADDE";
1049   case ARMISD::SUBC:          return "ARMISD::SUBC";
1050   case ARMISD::SUBE:          return "ARMISD::SUBE";
1051
1052   case ARMISD::VMOVRRD:       return "ARMISD::VMOVRRD";
1053   case ARMISD::VMOVDRR:       return "ARMISD::VMOVDRR";
1054
1055   case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
1056   case ARMISD::EH_SJLJ_LONGJMP:return "ARMISD::EH_SJLJ_LONGJMP";
1057
1058   case ARMISD::TC_RETURN:     return "ARMISD::TC_RETURN";
1059
1060   case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
1061
1062   case ARMISD::DYN_ALLOC:     return "ARMISD::DYN_ALLOC";
1063
1064   case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR";
1065
1066   case ARMISD::PRELOAD:       return "ARMISD::PRELOAD";
1067
1068   case ARMISD::WIN__CHKSTK:   return "ARMISD:::WIN__CHKSTK";
1069
1070   case ARMISD::VCEQ:          return "ARMISD::VCEQ";
1071   case ARMISD::VCEQZ:         return "ARMISD::VCEQZ";
1072   case ARMISD::VCGE:          return "ARMISD::VCGE";
1073   case ARMISD::VCGEZ:         return "ARMISD::VCGEZ";
1074   case ARMISD::VCLEZ:         return "ARMISD::VCLEZ";
1075   case ARMISD::VCGEU:         return "ARMISD::VCGEU";
1076   case ARMISD::VCGT:          return "ARMISD::VCGT";
1077   case ARMISD::VCGTZ:         return "ARMISD::VCGTZ";
1078   case ARMISD::VCLTZ:         return "ARMISD::VCLTZ";
1079   case ARMISD::VCGTU:         return "ARMISD::VCGTU";
1080   case ARMISD::VTST:          return "ARMISD::VTST";
1081
1082   case ARMISD::VSHL:          return "ARMISD::VSHL";
1083   case ARMISD::VSHRs:         return "ARMISD::VSHRs";
1084   case ARMISD::VSHRu:         return "ARMISD::VSHRu";
1085   case ARMISD::VRSHRs:        return "ARMISD::VRSHRs";
1086   case ARMISD::VRSHRu:        return "ARMISD::VRSHRu";
1087   case ARMISD::VRSHRN:        return "ARMISD::VRSHRN";
1088   case ARMISD::VQSHLs:        return "ARMISD::VQSHLs";
1089   case ARMISD::VQSHLu:        return "ARMISD::VQSHLu";
1090   case ARMISD::VQSHLsu:       return "ARMISD::VQSHLsu";
1091   case ARMISD::VQSHRNs:       return "ARMISD::VQSHRNs";
1092   case ARMISD::VQSHRNu:       return "ARMISD::VQSHRNu";
1093   case ARMISD::VQSHRNsu:      return "ARMISD::VQSHRNsu";
1094   case ARMISD::VQRSHRNs:      return "ARMISD::VQRSHRNs";
1095   case ARMISD::VQRSHRNu:      return "ARMISD::VQRSHRNu";
1096   case ARMISD::VQRSHRNsu:     return "ARMISD::VQRSHRNsu";
1097   case ARMISD::VSLI:          return "ARMISD::VSLI";
1098   case ARMISD::VSRI:          return "ARMISD::VSRI";
1099   case ARMISD::VGETLANEu:     return "ARMISD::VGETLANEu";
1100   case ARMISD::VGETLANEs:     return "ARMISD::VGETLANEs";
1101   case ARMISD::VMOVIMM:       return "ARMISD::VMOVIMM";
1102   case ARMISD::VMVNIMM:       return "ARMISD::VMVNIMM";
1103   case ARMISD::VMOVFPIMM:     return "ARMISD::VMOVFPIMM";
1104   case ARMISD::VDUP:          return "ARMISD::VDUP";
1105   case ARMISD::VDUPLANE:      return "ARMISD::VDUPLANE";
1106   case ARMISD::VEXT:          return "ARMISD::VEXT";
1107   case ARMISD::VREV64:        return "ARMISD::VREV64";
1108   case ARMISD::VREV32:        return "ARMISD::VREV32";
1109   case ARMISD::VREV16:        return "ARMISD::VREV16";
1110   case ARMISD::VZIP:          return "ARMISD::VZIP";
1111   case ARMISD::VUZP:          return "ARMISD::VUZP";
1112   case ARMISD::VTRN:          return "ARMISD::VTRN";
1113   case ARMISD::VTBL1:         return "ARMISD::VTBL1";
1114   case ARMISD::VTBL2:         return "ARMISD::VTBL2";
1115   case ARMISD::VMULLs:        return "ARMISD::VMULLs";
1116   case ARMISD::VMULLu:        return "ARMISD::VMULLu";
1117   case ARMISD::UMLAL:         return "ARMISD::UMLAL";
1118   case ARMISD::SMLAL:         return "ARMISD::SMLAL";
1119   case ARMISD::BUILD_VECTOR:  return "ARMISD::BUILD_VECTOR";
1120   case ARMISD::FMAX:          return "ARMISD::FMAX";
1121   case ARMISD::FMIN:          return "ARMISD::FMIN";
1122   case ARMISD::VMAXNM:        return "ARMISD::VMAX";
1123   case ARMISD::VMINNM:        return "ARMISD::VMIN";
1124   case ARMISD::BFI:           return "ARMISD::BFI";
1125   case ARMISD::VORRIMM:       return "ARMISD::VORRIMM";
1126   case ARMISD::VBICIMM:       return "ARMISD::VBICIMM";
1127   case ARMISD::VBSL:          return "ARMISD::VBSL";
1128   case ARMISD::VLD2DUP:       return "ARMISD::VLD2DUP";
1129   case ARMISD::VLD3DUP:       return "ARMISD::VLD3DUP";
1130   case ARMISD::VLD4DUP:       return "ARMISD::VLD4DUP";
1131   case ARMISD::VLD1_UPD:      return "ARMISD::VLD1_UPD";
1132   case ARMISD::VLD2_UPD:      return "ARMISD::VLD2_UPD";
1133   case ARMISD::VLD3_UPD:      return "ARMISD::VLD3_UPD";
1134   case ARMISD::VLD4_UPD:      return "ARMISD::VLD4_UPD";
1135   case ARMISD::VLD2LN_UPD:    return "ARMISD::VLD2LN_UPD";
1136   case ARMISD::VLD3LN_UPD:    return "ARMISD::VLD3LN_UPD";
1137   case ARMISD::VLD4LN_UPD:    return "ARMISD::VLD4LN_UPD";
1138   case ARMISD::VLD2DUP_UPD:   return "ARMISD::VLD2DUP_UPD";
1139   case ARMISD::VLD3DUP_UPD:   return "ARMISD::VLD3DUP_UPD";
1140   case ARMISD::VLD4DUP_UPD:   return "ARMISD::VLD4DUP_UPD";
1141   case ARMISD::VST1_UPD:      return "ARMISD::VST1_UPD";
1142   case ARMISD::VST2_UPD:      return "ARMISD::VST2_UPD";
1143   case ARMISD::VST3_UPD:      return "ARMISD::VST3_UPD";
1144   case ARMISD::VST4_UPD:      return "ARMISD::VST4_UPD";
1145   case ARMISD::VST2LN_UPD:    return "ARMISD::VST2LN_UPD";
1146   case ARMISD::VST3LN_UPD:    return "ARMISD::VST3LN_UPD";
1147   case ARMISD::VST4LN_UPD:    return "ARMISD::VST4LN_UPD";
1148   }
1149   return nullptr;
1150 }
1151
1152 EVT ARMTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1153   if (!VT.isVector()) return getPointerTy();
1154   return VT.changeVectorElementTypeToInteger();
1155 }
1156
1157 /// getRegClassFor - Return the register class that should be used for the
1158 /// specified value type.
1159 const TargetRegisterClass *ARMTargetLowering::getRegClassFor(MVT VT) const {
1160   // Map v4i64 to QQ registers but do not make the type legal. Similarly map
1161   // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to
1162   // load / store 4 to 8 consecutive D registers.
1163   if (Subtarget->hasNEON()) {
1164     if (VT == MVT::v4i64)
1165       return &ARM::QQPRRegClass;
1166     if (VT == MVT::v8i64)
1167       return &ARM::QQQQPRRegClass;
1168   }
1169   return TargetLowering::getRegClassFor(VT);
1170 }
1171
1172 // memcpy, and other memory intrinsics, typically tries to use LDM/STM if the
1173 // source/dest is aligned and the copy size is large enough. We therefore want
1174 // to align such objects passed to memory intrinsics.
1175 bool ARMTargetLowering::shouldAlignPointerArgs(CallInst *CI, unsigned &MinSize,
1176                                                unsigned &PrefAlign) const {
1177   if (!isa<MemIntrinsic>(CI))
1178     return false;
1179   MinSize = 8;
1180   // On ARM11 onwards (excluding M class) 8-byte aligned LDM is typically 1
1181   // cycle faster than 4-byte aligned LDM.
1182   PrefAlign = (Subtarget->hasV6Ops() && !Subtarget->isMClass() ? 8 : 4);
1183   return true;
1184 }
1185
1186 // Create a fast isel object.
1187 FastISel *
1188 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
1189                                   const TargetLibraryInfo *libInfo) const {
1190   return ARM::createFastISel(funcInfo, libInfo);
1191 }
1192
1193 Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
1194   unsigned NumVals = N->getNumValues();
1195   if (!NumVals)
1196     return Sched::RegPressure;
1197
1198   for (unsigned i = 0; i != NumVals; ++i) {
1199     EVT VT = N->getValueType(i);
1200     if (VT == MVT::Glue || VT == MVT::Other)
1201       continue;
1202     if (VT.isFloatingPoint() || VT.isVector())
1203       return Sched::ILP;
1204   }
1205
1206   if (!N->isMachineOpcode())
1207     return Sched::RegPressure;
1208
1209   // Load are scheduled for latency even if there instruction itinerary
1210   // is not available.
1211   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
1212   const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
1213
1214   if (MCID.getNumDefs() == 0)
1215     return Sched::RegPressure;
1216   if (!Itins->isEmpty() &&
1217       Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2)
1218     return Sched::ILP;
1219
1220   return Sched::RegPressure;
1221 }
1222
1223 //===----------------------------------------------------------------------===//
1224 // Lowering Code
1225 //===----------------------------------------------------------------------===//
1226
1227 /// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
1228 static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
1229   switch (CC) {
1230   default: llvm_unreachable("Unknown condition code!");
1231   case ISD::SETNE:  return ARMCC::NE;
1232   case ISD::SETEQ:  return ARMCC::EQ;
1233   case ISD::SETGT:  return ARMCC::GT;
1234   case ISD::SETGE:  return ARMCC::GE;
1235   case ISD::SETLT:  return ARMCC::LT;
1236   case ISD::SETLE:  return ARMCC::LE;
1237   case ISD::SETUGT: return ARMCC::HI;
1238   case ISD::SETUGE: return ARMCC::HS;
1239   case ISD::SETULT: return ARMCC::LO;
1240   case ISD::SETULE: return ARMCC::LS;
1241   }
1242 }
1243
1244 /// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
1245 static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
1246                         ARMCC::CondCodes &CondCode2) {
1247   CondCode2 = ARMCC::AL;
1248   switch (CC) {
1249   default: llvm_unreachable("Unknown FP condition!");
1250   case ISD::SETEQ:
1251   case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
1252   case ISD::SETGT:
1253   case ISD::SETOGT: CondCode = ARMCC::GT; break;
1254   case ISD::SETGE:
1255   case ISD::SETOGE: CondCode = ARMCC::GE; break;
1256   case ISD::SETOLT: CondCode = ARMCC::MI; break;
1257   case ISD::SETOLE: CondCode = ARMCC::LS; break;
1258   case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
1259   case ISD::SETO:   CondCode = ARMCC::VC; break;
1260   case ISD::SETUO:  CondCode = ARMCC::VS; break;
1261   case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
1262   case ISD::SETUGT: CondCode = ARMCC::HI; break;
1263   case ISD::SETUGE: CondCode = ARMCC::PL; break;
1264   case ISD::SETLT:
1265   case ISD::SETULT: CondCode = ARMCC::LT; break;
1266   case ISD::SETLE:
1267   case ISD::SETULE: CondCode = ARMCC::LE; break;
1268   case ISD::SETNE:
1269   case ISD::SETUNE: CondCode = ARMCC::NE; break;
1270   }
1271 }
1272
1273 //===----------------------------------------------------------------------===//
1274 //                      Calling Convention Implementation
1275 //===----------------------------------------------------------------------===//
1276
1277 #include "ARMGenCallingConv.inc"
1278
1279 /// getEffectiveCallingConv - Get the effective calling convention, taking into
1280 /// account presence of floating point hardware and calling convention
1281 /// limitations, such as support for variadic functions.
1282 CallingConv::ID
1283 ARMTargetLowering::getEffectiveCallingConv(CallingConv::ID CC,
1284                                            bool isVarArg) const {
1285   switch (CC) {
1286   default:
1287     llvm_unreachable("Unsupported calling convention");
1288   case CallingConv::ARM_AAPCS:
1289   case CallingConv::ARM_APCS:
1290   case CallingConv::GHC:
1291     return CC;
1292   case CallingConv::ARM_AAPCS_VFP:
1293     return isVarArg ? CallingConv::ARM_AAPCS : CallingConv::ARM_AAPCS_VFP;
1294   case CallingConv::C:
1295     if (!Subtarget->isAAPCS_ABI())
1296       return CallingConv::ARM_APCS;
1297     else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() &&
1298              getTargetMachine().Options.FloatABIType == FloatABI::Hard &&
1299              !isVarArg)
1300       return CallingConv::ARM_AAPCS_VFP;
1301     else
1302       return CallingConv::ARM_AAPCS;
1303   case CallingConv::Fast:
1304     if (!Subtarget->isAAPCS_ABI()) {
1305       if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
1306         return CallingConv::Fast;
1307       return CallingConv::ARM_APCS;
1308     } else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
1309       return CallingConv::ARM_AAPCS_VFP;
1310     else
1311       return CallingConv::ARM_AAPCS;
1312   }
1313 }
1314
1315 /// CCAssignFnForNode - Selects the correct CCAssignFn for the given
1316 /// CallingConvention.
1317 CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
1318                                                  bool Return,
1319                                                  bool isVarArg) const {
1320   switch (getEffectiveCallingConv(CC, isVarArg)) {
1321   default:
1322     llvm_unreachable("Unsupported calling convention");
1323   case CallingConv::ARM_APCS:
1324     return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
1325   case CallingConv::ARM_AAPCS:
1326     return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
1327   case CallingConv::ARM_AAPCS_VFP:
1328     return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1329   case CallingConv::Fast:
1330     return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
1331   case CallingConv::GHC:
1332     return (Return ? RetCC_ARM_APCS : CC_ARM_APCS_GHC);
1333   }
1334 }
1335
1336 /// LowerCallResult - Lower the result values of a call into the
1337 /// appropriate copies out of appropriate physical registers.
1338 SDValue
1339 ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1340                                    CallingConv::ID CallConv, bool isVarArg,
1341                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1342                                    SDLoc dl, SelectionDAG &DAG,
1343                                    SmallVectorImpl<SDValue> &InVals,
1344                                    bool isThisReturn, SDValue ThisVal) const {
1345
1346   // Assign locations to each value returned by this call.
1347   SmallVector<CCValAssign, 16> RVLocs;
1348   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
1349                     *DAG.getContext(), Call);
1350   CCInfo.AnalyzeCallResult(Ins,
1351                            CCAssignFnForNode(CallConv, /* Return*/ true,
1352                                              isVarArg));
1353
1354   // Copy all of the result registers out of their specified physreg.
1355   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1356     CCValAssign VA = RVLocs[i];
1357
1358     // Pass 'this' value directly from the argument to return value, to avoid
1359     // reg unit interference
1360     if (i == 0 && isThisReturn) {
1361       assert(!VA.needsCustom() && VA.getLocVT() == MVT::i32 &&
1362              "unexpected return calling convention register assignment");
1363       InVals.push_back(ThisVal);
1364       continue;
1365     }
1366
1367     SDValue Val;
1368     if (VA.needsCustom()) {
1369       // Handle f64 or half of a v2f64.
1370       SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
1371                                       InFlag);
1372       Chain = Lo.getValue(1);
1373       InFlag = Lo.getValue(2);
1374       VA = RVLocs[++i]; // skip ahead to next loc
1375       SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
1376                                       InFlag);
1377       Chain = Hi.getValue(1);
1378       InFlag = Hi.getValue(2);
1379       if (!Subtarget->isLittle())
1380         std::swap (Lo, Hi);
1381       Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
1382
1383       if (VA.getLocVT() == MVT::v2f64) {
1384         SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1385         Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1386                           DAG.getConstant(0, dl, MVT::i32));
1387
1388         VA = RVLocs[++i]; // skip ahead to next loc
1389         Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
1390         Chain = Lo.getValue(1);
1391         InFlag = Lo.getValue(2);
1392         VA = RVLocs[++i]; // skip ahead to next loc
1393         Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
1394         Chain = Hi.getValue(1);
1395         InFlag = Hi.getValue(2);
1396         if (!Subtarget->isLittle())
1397           std::swap (Lo, Hi);
1398         Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
1399         Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1400                           DAG.getConstant(1, dl, MVT::i32));
1401       }
1402     } else {
1403       Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1404                                InFlag);
1405       Chain = Val.getValue(1);
1406       InFlag = Val.getValue(2);
1407     }
1408
1409     switch (VA.getLocInfo()) {
1410     default: llvm_unreachable("Unknown loc info!");
1411     case CCValAssign::Full: break;
1412     case CCValAssign::BCvt:
1413       Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val);
1414       break;
1415     }
1416
1417     InVals.push_back(Val);
1418   }
1419
1420   return Chain;
1421 }
1422
1423 /// LowerMemOpCallTo - Store the argument to the stack.
1424 SDValue
1425 ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
1426                                     SDValue StackPtr, SDValue Arg,
1427                                     SDLoc dl, SelectionDAG &DAG,
1428                                     const CCValAssign &VA,
1429                                     ISD::ArgFlagsTy Flags) const {
1430   unsigned LocMemOffset = VA.getLocMemOffset();
1431   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
1432   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
1433   return DAG.getStore(Chain, dl, Arg, PtrOff,
1434                       MachinePointerInfo::getStack(LocMemOffset),
1435                       false, false, 0);
1436 }
1437
1438 void ARMTargetLowering::PassF64ArgInRegs(SDLoc dl, SelectionDAG &DAG,
1439                                          SDValue Chain, SDValue &Arg,
1440                                          RegsToPassVector &RegsToPass,
1441                                          CCValAssign &VA, CCValAssign &NextVA,
1442                                          SDValue &StackPtr,
1443                                          SmallVectorImpl<SDValue> &MemOpChains,
1444                                          ISD::ArgFlagsTy Flags) const {
1445
1446   SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
1447                               DAG.getVTList(MVT::i32, MVT::i32), Arg);
1448   unsigned id = Subtarget->isLittle() ? 0 : 1;
1449   RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd.getValue(id)));
1450
1451   if (NextVA.isRegLoc())
1452     RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1-id)));
1453   else {
1454     assert(NextVA.isMemLoc());
1455     if (!StackPtr.getNode())
1456       StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1457
1458     MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1-id),
1459                                            dl, DAG, NextVA,
1460                                            Flags));
1461   }
1462 }
1463
1464 /// LowerCall - Lowering a call into a callseq_start <-
1465 /// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
1466 /// nodes.
1467 SDValue
1468 ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
1469                              SmallVectorImpl<SDValue> &InVals) const {
1470   SelectionDAG &DAG                     = CLI.DAG;
1471   SDLoc &dl                             = CLI.DL;
1472   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
1473   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
1474   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
1475   SDValue Chain                         = CLI.Chain;
1476   SDValue Callee                        = CLI.Callee;
1477   bool &isTailCall                      = CLI.IsTailCall;
1478   CallingConv::ID CallConv              = CLI.CallConv;
1479   bool doesNotRet                       = CLI.DoesNotReturn;
1480   bool isVarArg                         = CLI.IsVarArg;
1481
1482   MachineFunction &MF = DAG.getMachineFunction();
1483   bool isStructRet    = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
1484   bool isThisReturn   = false;
1485   bool isSibCall      = false;
1486   auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
1487
1488   // Disable tail calls if they're not supported.
1489   if (!Subtarget->supportsTailCall() || Attr.getValueAsString() == "true")
1490     isTailCall = false;
1491
1492   if (isTailCall) {
1493     // Check if it's really possible to do a tail call.
1494     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1495                     isVarArg, isStructRet, MF.getFunction()->hasStructRetAttr(),
1496                                                    Outs, OutVals, Ins, DAG);
1497     if (!isTailCall && CLI.CS && CLI.CS->isMustTailCall())
1498       report_fatal_error("failed to perform tail call elimination on a call "
1499                          "site marked musttail");
1500     // We don't support GuaranteedTailCallOpt for ARM, only automatically
1501     // detected sibcalls.
1502     if (isTailCall) {
1503       ++NumTailCalls;
1504       isSibCall = true;
1505     }
1506   }
1507
1508   // Analyze operands of the call, assigning locations to each operand.
1509   SmallVector<CCValAssign, 16> ArgLocs;
1510   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
1511                     *DAG.getContext(), Call);
1512   CCInfo.AnalyzeCallOperands(Outs,
1513                              CCAssignFnForNode(CallConv, /* Return*/ false,
1514                                                isVarArg));
1515
1516   // Get a count of how many bytes are to be pushed on the stack.
1517   unsigned NumBytes = CCInfo.getNextStackOffset();
1518
1519   // For tail calls, memory operands are available in our caller's stack.
1520   if (isSibCall)
1521     NumBytes = 0;
1522
1523   // Adjust the stack pointer for the new arguments...
1524   // These operations are automatically eliminated by the prolog/epilog pass
1525   if (!isSibCall)
1526     Chain = DAG.getCALLSEQ_START(Chain,
1527                                  DAG.getIntPtrConstant(NumBytes, dl, true), dl);
1528
1529   SDValue StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1530
1531   RegsToPassVector RegsToPass;
1532   SmallVector<SDValue, 8> MemOpChains;
1533
1534   // Walk the register/memloc assignments, inserting copies/loads.  In the case
1535   // of tail call optimization, arguments are handled later.
1536   for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1537        i != e;
1538        ++i, ++realArgIdx) {
1539     CCValAssign &VA = ArgLocs[i];
1540     SDValue Arg = OutVals[realArgIdx];
1541     ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
1542     bool isByVal = Flags.isByVal();
1543
1544     // Promote the value if needed.
1545     switch (VA.getLocInfo()) {
1546     default: llvm_unreachable("Unknown loc info!");
1547     case CCValAssign::Full: break;
1548     case CCValAssign::SExt:
1549       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1550       break;
1551     case CCValAssign::ZExt:
1552       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1553       break;
1554     case CCValAssign::AExt:
1555       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1556       break;
1557     case CCValAssign::BCvt:
1558       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
1559       break;
1560     }
1561
1562     // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
1563     if (VA.needsCustom()) {
1564       if (VA.getLocVT() == MVT::v2f64) {
1565         SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1566                                   DAG.getConstant(0, dl, MVT::i32));
1567         SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1568                                   DAG.getConstant(1, dl, MVT::i32));
1569
1570         PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
1571                          VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1572
1573         VA = ArgLocs[++i]; // skip ahead to next loc
1574         if (VA.isRegLoc()) {
1575           PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
1576                            VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1577         } else {
1578           assert(VA.isMemLoc());
1579
1580           MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
1581                                                  dl, DAG, VA, Flags));
1582         }
1583       } else {
1584         PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
1585                          StackPtr, MemOpChains, Flags);
1586       }
1587     } else if (VA.isRegLoc()) {
1588       if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i32) {
1589         assert(VA.getLocVT() == MVT::i32 &&
1590                "unexpected calling convention register assignment");
1591         assert(!Ins.empty() && Ins[0].VT == MVT::i32 &&
1592                "unexpected use of 'returned'");
1593         isThisReturn = true;
1594       }
1595       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1596     } else if (isByVal) {
1597       assert(VA.isMemLoc());
1598       unsigned offset = 0;
1599
1600       // True if this byval aggregate will be split between registers
1601       // and memory.
1602       unsigned ByValArgsCount = CCInfo.getInRegsParamsCount();
1603       unsigned CurByValIdx = CCInfo.getInRegsParamsProcessed();
1604
1605       if (CurByValIdx < ByValArgsCount) {
1606
1607         unsigned RegBegin, RegEnd;
1608         CCInfo.getInRegsParamInfo(CurByValIdx, RegBegin, RegEnd);
1609
1610         EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1611         unsigned int i, j;
1612         for (i = 0, j = RegBegin; j < RegEnd; i++, j++) {
1613           SDValue Const = DAG.getConstant(4*i, dl, MVT::i32);
1614           SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
1615           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
1616                                      MachinePointerInfo(),
1617                                      false, false, false,
1618                                      DAG.InferPtrAlignment(AddArg));
1619           MemOpChains.push_back(Load.getValue(1));
1620           RegsToPass.push_back(std::make_pair(j, Load));
1621         }
1622
1623         // If parameter size outsides register area, "offset" value
1624         // helps us to calculate stack slot for remained part properly.
1625         offset = RegEnd - RegBegin;
1626
1627         CCInfo.nextInRegsParam();
1628       }
1629
1630       if (Flags.getByValSize() > 4*offset) {
1631         unsigned LocMemOffset = VA.getLocMemOffset();
1632         SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
1633         SDValue Dst = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr,
1634                                   StkPtrOff);
1635         SDValue SrcOffset = DAG.getIntPtrConstant(4*offset, dl);
1636         SDValue Src = DAG.getNode(ISD::ADD, dl, getPointerTy(), Arg, SrcOffset);
1637         SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset, dl,
1638                                            MVT::i32);
1639         SDValue AlignNode = DAG.getConstant(Flags.getByValAlign(), dl,
1640                                             MVT::i32);
1641
1642         SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
1643         SDValue Ops[] = { Chain, Dst, Src, SizeNode, AlignNode};
1644         MemOpChains.push_back(DAG.getNode(ARMISD::COPY_STRUCT_BYVAL, dl, VTs,
1645                                           Ops));
1646       }
1647     } else if (!isSibCall) {
1648       assert(VA.isMemLoc());
1649
1650       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1651                                              dl, DAG, VA, Flags));
1652     }
1653   }
1654
1655   if (!MemOpChains.empty())
1656     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
1657
1658   // Build a sequence of copy-to-reg nodes chained together with token chain
1659   // and flag operands which copy the outgoing args into the appropriate regs.
1660   SDValue InFlag;
1661   // Tail call byval lowering might overwrite argument registers so in case of
1662   // tail call optimization the copies to registers are lowered later.
1663   if (!isTailCall)
1664     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1665       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1666                                RegsToPass[i].second, InFlag);
1667       InFlag = Chain.getValue(1);
1668     }
1669
1670   // For tail calls lower the arguments to the 'real' stack slot.
1671   if (isTailCall) {
1672     // Force all the incoming stack arguments to be loaded from the stack
1673     // before any new outgoing arguments are stored to the stack, because the
1674     // outgoing stack slots may alias the incoming argument stack slots, and
1675     // the alias isn't otherwise explicit. This is slightly more conservative
1676     // than necessary, because it means that each store effectively depends
1677     // on every argument instead of just those arguments it would clobber.
1678
1679     // Do not flag preceding copytoreg stuff together with the following stuff.
1680     InFlag = SDValue();
1681     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1682       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1683                                RegsToPass[i].second, InFlag);
1684       InFlag = Chain.getValue(1);
1685     }
1686     InFlag = SDValue();
1687   }
1688
1689   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1690   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1691   // node so that legalize doesn't hack it.
1692   bool isDirect = false;
1693   bool isARMFunc = false;
1694   bool isLocalARMFunc = false;
1695   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1696
1697   if (EnableARMLongCalls) {
1698     assert((Subtarget->isTargetWindows() ||
1699             getTargetMachine().getRelocationModel() == Reloc::Static) &&
1700            "long-calls with non-static relocation model!");
1701     // Handle a global address or an external symbol. If it's not one of
1702     // those, the target's already in a register, so we don't need to do
1703     // anything extra.
1704     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1705       const GlobalValue *GV = G->getGlobal();
1706       // Create a constant pool entry for the callee address
1707       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1708       ARMConstantPoolValue *CPV =
1709         ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0);
1710
1711       // Get the address of the callee into a register
1712       SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1713       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1714       Callee = DAG.getLoad(getPointerTy(), dl,
1715                            DAG.getEntryNode(), CPAddr,
1716                            MachinePointerInfo::getConstantPool(),
1717                            false, false, false, 0);
1718     } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) {
1719       const char *Sym = S->getSymbol();
1720
1721       // Create a constant pool entry for the callee address
1722       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1723       ARMConstantPoolValue *CPV =
1724         ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1725                                       ARMPCLabelIndex, 0);
1726       // Get the address of the callee into a register
1727       SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1728       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1729       Callee = DAG.getLoad(getPointerTy(), dl,
1730                            DAG.getEntryNode(), CPAddr,
1731                            MachinePointerInfo::getConstantPool(),
1732                            false, false, false, 0);
1733     }
1734   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1735     const GlobalValue *GV = G->getGlobal();
1736     isDirect = true;
1737     bool isExt = GV->isDeclaration() || GV->isWeakForLinker();
1738     bool isStub = (isExt && Subtarget->isTargetMachO()) &&
1739                    getTargetMachine().getRelocationModel() != Reloc::Static;
1740     isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass());
1741     // ARM call to a local ARM function is predicable.
1742     isLocalARMFunc = !Subtarget->isThumb() && (!isExt || !ARMInterworking);
1743     // tBX takes a register source operand.
1744     if (isStub && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1745       assert(Subtarget->isTargetMachO() && "WrapperPIC use on non-MachO?");
1746       Callee = DAG.getNode(ARMISD::WrapperPIC, dl, getPointerTy(),
1747                            DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
1748                                                       0, ARMII::MO_NONLAZY));
1749       Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
1750                            MachinePointerInfo::getGOT(), false, false, true, 0);
1751     } else if (Subtarget->isTargetCOFF()) {
1752       assert(Subtarget->isTargetWindows() &&
1753              "Windows is the only supported COFF target");
1754       unsigned TargetFlags = GV->hasDLLImportStorageClass()
1755                                  ? ARMII::MO_DLLIMPORT
1756                                  : ARMII::MO_NO_FLAG;
1757       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), /*Offset=*/0,
1758                                           TargetFlags);
1759       if (GV->hasDLLImportStorageClass())
1760         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
1761                              DAG.getNode(ARMISD::Wrapper, dl, getPointerTy(),
1762                                          Callee), MachinePointerInfo::getGOT(),
1763                              false, false, false, 0);
1764     } else {
1765       // On ELF targets for PIC code, direct calls should go through the PLT
1766       unsigned OpFlags = 0;
1767       if (Subtarget->isTargetELF() &&
1768           getTargetMachine().getRelocationModel() == Reloc::PIC_)
1769         OpFlags = ARMII::MO_PLT;
1770       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
1771     }
1772   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1773     isDirect = true;
1774     bool isStub = Subtarget->isTargetMachO() &&
1775                   getTargetMachine().getRelocationModel() != Reloc::Static;
1776     isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass());
1777     // tBX takes a register source operand.
1778     const char *Sym = S->getSymbol();
1779     if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1780       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1781       ARMConstantPoolValue *CPV =
1782         ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1783                                       ARMPCLabelIndex, 4);
1784       SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1785       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1786       Callee = DAG.getLoad(getPointerTy(), dl,
1787                            DAG.getEntryNode(), CPAddr,
1788                            MachinePointerInfo::getConstantPool(),
1789                            false, false, false, 0);
1790       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
1791       Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
1792                            getPointerTy(), Callee, PICLabel);
1793     } else {
1794       unsigned OpFlags = 0;
1795       // On ELF targets for PIC code, direct calls should go through the PLT
1796       if (Subtarget->isTargetELF() &&
1797                   getTargetMachine().getRelocationModel() == Reloc::PIC_)
1798         OpFlags = ARMII::MO_PLT;
1799       Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlags);
1800     }
1801   }
1802
1803   // FIXME: handle tail calls differently.
1804   unsigned CallOpc;
1805   bool HasMinSizeAttr = MF.getFunction()->hasFnAttribute(Attribute::MinSize);
1806   if (Subtarget->isThumb()) {
1807     if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
1808       CallOpc = ARMISD::CALL_NOLINK;
1809     else
1810       CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1811   } else {
1812     if (!isDirect && !Subtarget->hasV5TOps())
1813       CallOpc = ARMISD::CALL_NOLINK;
1814     else if (doesNotRet && isDirect && Subtarget->hasRAS() &&
1815                // Emit regular call when code size is the priority
1816                !HasMinSizeAttr)
1817       // "mov lr, pc; b _foo" to avoid confusing the RSP
1818       CallOpc = ARMISD::CALL_NOLINK;
1819     else
1820       CallOpc = isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL;
1821   }
1822
1823   std::vector<SDValue> Ops;
1824   Ops.push_back(Chain);
1825   Ops.push_back(Callee);
1826
1827   // Add argument registers to the end of the list so that they are known live
1828   // into the call.
1829   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1830     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1831                                   RegsToPass[i].second.getValueType()));
1832
1833   // Add a register mask operand representing the call-preserved registers.
1834   if (!isTailCall) {
1835     const uint32_t *Mask;
1836     const ARMBaseRegisterInfo *ARI = Subtarget->getRegisterInfo();
1837     if (isThisReturn) {
1838       // For 'this' returns, use the R0-preserving mask if applicable
1839       Mask = ARI->getThisReturnPreservedMask(MF, CallConv);
1840       if (!Mask) {
1841         // Set isThisReturn to false if the calling convention is not one that
1842         // allows 'returned' to be modeled in this way, so LowerCallResult does
1843         // not try to pass 'this' straight through
1844         isThisReturn = false;
1845         Mask = ARI->getCallPreservedMask(MF, CallConv);
1846       }
1847     } else
1848       Mask = ARI->getCallPreservedMask(MF, CallConv);
1849
1850     assert(Mask && "Missing call preserved mask for calling convention");
1851     Ops.push_back(DAG.getRegisterMask(Mask));
1852   }
1853
1854   if (InFlag.getNode())
1855     Ops.push_back(InFlag);
1856
1857   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1858   if (isTailCall) {
1859     MF.getFrameInfo()->setHasTailCall();
1860     return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, Ops);
1861   }
1862
1863   // Returns a chain and a flag for retval copy to use.
1864   Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
1865   InFlag = Chain.getValue(1);
1866
1867   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
1868                              DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
1869   if (!Ins.empty())
1870     InFlag = Chain.getValue(1);
1871
1872   // Handle result values, copying them out of physregs into vregs that we
1873   // return.
1874   return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG,
1875                          InVals, isThisReturn,
1876                          isThisReturn ? OutVals[0] : SDValue());
1877 }
1878
1879 /// HandleByVal - Every parameter *after* a byval parameter is passed
1880 /// on the stack.  Remember the next parameter register to allocate,
1881 /// and then confiscate the rest of the parameter registers to insure
1882 /// this.
1883 void ARMTargetLowering::HandleByVal(CCState *State, unsigned &Size,
1884                                     unsigned Align) const {
1885   assert((State->getCallOrPrologue() == Prologue ||
1886           State->getCallOrPrologue() == Call) &&
1887          "unhandled ParmContext");
1888
1889   // Byval (as with any stack) slots are always at least 4 byte aligned.
1890   Align = std::max(Align, 4U);
1891
1892   unsigned Reg = State->AllocateReg(GPRArgRegs);
1893   if (!Reg)
1894     return;
1895
1896   unsigned AlignInRegs = Align / 4;
1897   unsigned Waste = (ARM::R4 - Reg) % AlignInRegs;
1898   for (unsigned i = 0; i < Waste; ++i)
1899     Reg = State->AllocateReg(GPRArgRegs);
1900
1901   if (!Reg)
1902     return;
1903
1904   unsigned Excess = 4 * (ARM::R4 - Reg);
1905
1906   // Special case when NSAA != SP and parameter size greater than size of
1907   // all remained GPR regs. In that case we can't split parameter, we must
1908   // send it to stack. We also must set NCRN to R4, so waste all
1909   // remained registers.
1910   const unsigned NSAAOffset = State->getNextStackOffset();
1911   if (NSAAOffset != 0 && Size > Excess) {
1912     while (State->AllocateReg(GPRArgRegs))
1913       ;
1914     return;
1915   }
1916
1917   // First register for byval parameter is the first register that wasn't
1918   // allocated before this method call, so it would be "reg".
1919   // If parameter is small enough to be saved in range [reg, r4), then
1920   // the end (first after last) register would be reg + param-size-in-regs,
1921   // else parameter would be splitted between registers and stack,
1922   // end register would be r4 in this case.
1923   unsigned ByValRegBegin = Reg;
1924   unsigned ByValRegEnd = std::min<unsigned>(Reg + Size / 4, ARM::R4);
1925   State->addInRegsParamInfo(ByValRegBegin, ByValRegEnd);
1926   // Note, first register is allocated in the beginning of function already,
1927   // allocate remained amount of registers we need.
1928   for (unsigned i = Reg + 1; i != ByValRegEnd; ++i)
1929     State->AllocateReg(GPRArgRegs);
1930   // A byval parameter that is split between registers and memory needs its
1931   // size truncated here.
1932   // In the case where the entire structure fits in registers, we set the
1933   // size in memory to zero.
1934   Size = std::max<int>(Size - Excess, 0);
1935 }
1936
1937 /// MatchingStackOffset - Return true if the given stack call argument is
1938 /// already available in the same position (relatively) of the caller's
1939 /// incoming argument stack.
1940 static
1941 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
1942                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
1943                          const TargetInstrInfo *TII) {
1944   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
1945   int FI = INT_MAX;
1946   if (Arg.getOpcode() == ISD::CopyFromReg) {
1947     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
1948     if (!TargetRegisterInfo::isVirtualRegister(VR))
1949       return false;
1950     MachineInstr *Def = MRI->getVRegDef(VR);
1951     if (!Def)
1952       return false;
1953     if (!Flags.isByVal()) {
1954       if (!TII->isLoadFromStackSlot(Def, FI))
1955         return false;
1956     } else {
1957       return false;
1958     }
1959   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
1960     if (Flags.isByVal())
1961       // ByVal argument is passed in as a pointer but it's now being
1962       // dereferenced. e.g.
1963       // define @foo(%struct.X* %A) {
1964       //   tail call @bar(%struct.X* byval %A)
1965       // }
1966       return false;
1967     SDValue Ptr = Ld->getBasePtr();
1968     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
1969     if (!FINode)
1970       return false;
1971     FI = FINode->getIndex();
1972   } else
1973     return false;
1974
1975   assert(FI != INT_MAX);
1976   if (!MFI->isFixedObjectIndex(FI))
1977     return false;
1978   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
1979 }
1980
1981 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
1982 /// for tail call optimization. Targets which want to do tail call
1983 /// optimization should implement this function.
1984 bool
1985 ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
1986                                                      CallingConv::ID CalleeCC,
1987                                                      bool isVarArg,
1988                                                      bool isCalleeStructRet,
1989                                                      bool isCallerStructRet,
1990                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
1991                                     const SmallVectorImpl<SDValue> &OutVals,
1992                                     const SmallVectorImpl<ISD::InputArg> &Ins,
1993                                                      SelectionDAG& DAG) const {
1994   const Function *CallerF = DAG.getMachineFunction().getFunction();
1995   CallingConv::ID CallerCC = CallerF->getCallingConv();
1996   bool CCMatch = CallerCC == CalleeCC;
1997
1998   // Look for obvious safe cases to perform tail call optimization that do not
1999   // require ABI changes. This is what gcc calls sibcall.
2000
2001   // Do not sibcall optimize vararg calls unless the call site is not passing
2002   // any arguments.
2003   if (isVarArg && !Outs.empty())
2004     return false;
2005
2006   // Exception-handling functions need a special set of instructions to indicate
2007   // a return to the hardware. Tail-calling another function would probably
2008   // break this.
2009   if (CallerF->hasFnAttribute("interrupt"))
2010     return false;
2011
2012   // Also avoid sibcall optimization if either caller or callee uses struct
2013   // return semantics.
2014   if (isCalleeStructRet || isCallerStructRet)
2015     return false;
2016
2017   // FIXME: Completely disable sibcall for Thumb1 since ThumbRegisterInfo::
2018   // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
2019   // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
2020   // support in the assembler and linker to be used. This would need to be
2021   // fixed to fully support tail calls in Thumb1.
2022   //
2023   // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
2024   // LR.  This means if we need to reload LR, it takes an extra instructions,
2025   // which outweighs the value of the tail call; but here we don't know yet
2026   // whether LR is going to be used.  Probably the right approach is to
2027   // generate the tail call here and turn it back into CALL/RET in
2028   // emitEpilogue if LR is used.
2029
2030   // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
2031   // but we need to make sure there are enough registers; the only valid
2032   // registers are the 4 used for parameters.  We don't currently do this
2033   // case.
2034   if (Subtarget->isThumb1Only())
2035     return false;
2036
2037   // Externally-defined functions with weak linkage should not be
2038   // tail-called on ARM when the OS does not support dynamic
2039   // pre-emption of symbols, as the AAELF spec requires normal calls
2040   // to undefined weak functions to be replaced with a NOP or jump to the
2041   // next instruction. The behaviour of branch instructions in this
2042   // situation (as used for tail calls) is implementation-defined, so we
2043   // cannot rely on the linker replacing the tail call with a return.
2044   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2045     const GlobalValue *GV = G->getGlobal();
2046     const Triple &TT = getTargetMachine().getTargetTriple();
2047     if (GV->hasExternalWeakLinkage() &&
2048         (!TT.isOSWindows() || TT.isOSBinFormatELF() || TT.isOSBinFormatMachO()))
2049       return false;
2050   }
2051
2052   // If the calling conventions do not match, then we'd better make sure the
2053   // results are returned in the same way as what the caller expects.
2054   if (!CCMatch) {
2055     SmallVector<CCValAssign, 16> RVLocs1;
2056     ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), RVLocs1,
2057                        *DAG.getContext(), Call);
2058     CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg));
2059
2060     SmallVector<CCValAssign, 16> RVLocs2;
2061     ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), RVLocs2,
2062                        *DAG.getContext(), Call);
2063     CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg));
2064
2065     if (RVLocs1.size() != RVLocs2.size())
2066       return false;
2067     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2068       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2069         return false;
2070       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2071         return false;
2072       if (RVLocs1[i].isRegLoc()) {
2073         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2074           return false;
2075       } else {
2076         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2077           return false;
2078       }
2079     }
2080   }
2081
2082   // If Caller's vararg or byval argument has been split between registers and
2083   // stack, do not perform tail call, since part of the argument is in caller's
2084   // local frame.
2085   const ARMFunctionInfo *AFI_Caller = DAG.getMachineFunction().
2086                                       getInfo<ARMFunctionInfo>();
2087   if (AFI_Caller->getArgRegsSaveSize())
2088     return false;
2089
2090   // If the callee takes no arguments then go on to check the results of the
2091   // call.
2092   if (!Outs.empty()) {
2093     // Check if stack adjustment is needed. For now, do not do this if any
2094     // argument is passed on the stack.
2095     SmallVector<CCValAssign, 16> ArgLocs;
2096     ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
2097                       *DAG.getContext(), Call);
2098     CCInfo.AnalyzeCallOperands(Outs,
2099                                CCAssignFnForNode(CalleeCC, false, isVarArg));
2100     if (CCInfo.getNextStackOffset()) {
2101       MachineFunction &MF = DAG.getMachineFunction();
2102
2103       // Check if the arguments are already laid out in the right way as
2104       // the caller's fixed stack objects.
2105       MachineFrameInfo *MFI = MF.getFrameInfo();
2106       const MachineRegisterInfo *MRI = &MF.getRegInfo();
2107       const TargetInstrInfo *TII = Subtarget->getInstrInfo();
2108       for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
2109            i != e;
2110            ++i, ++realArgIdx) {
2111         CCValAssign &VA = ArgLocs[i];
2112         EVT RegVT = VA.getLocVT();
2113         SDValue Arg = OutVals[realArgIdx];
2114         ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
2115         if (VA.getLocInfo() == CCValAssign::Indirect)
2116           return false;
2117         if (VA.needsCustom()) {
2118           // f64 and vector types are split into multiple registers or
2119           // register/stack-slot combinations.  The types will not match
2120           // the registers; give up on memory f64 refs until we figure
2121           // out what to do about this.
2122           if (!VA.isRegLoc())
2123             return false;
2124           if (!ArgLocs[++i].isRegLoc())
2125             return false;
2126           if (RegVT == MVT::v2f64) {
2127             if (!ArgLocs[++i].isRegLoc())
2128               return false;
2129             if (!ArgLocs[++i].isRegLoc())
2130               return false;
2131           }
2132         } else if (!VA.isRegLoc()) {
2133           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2134                                    MFI, MRI, TII))
2135             return false;
2136         }
2137       }
2138     }
2139   }
2140
2141   return true;
2142 }
2143
2144 bool
2145 ARMTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
2146                                   MachineFunction &MF, bool isVarArg,
2147                                   const SmallVectorImpl<ISD::OutputArg> &Outs,
2148                                   LLVMContext &Context) const {
2149   SmallVector<CCValAssign, 16> RVLocs;
2150   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
2151   return CCInfo.CheckReturn(Outs, CCAssignFnForNode(CallConv, /*Return=*/true,
2152                                                     isVarArg));
2153 }
2154
2155 static SDValue LowerInterruptReturn(SmallVectorImpl<SDValue> &RetOps,
2156                                     SDLoc DL, SelectionDAG &DAG) {
2157   const MachineFunction &MF = DAG.getMachineFunction();
2158   const Function *F = MF.getFunction();
2159
2160   StringRef IntKind = F->getFnAttribute("interrupt").getValueAsString();
2161
2162   // See ARM ARM v7 B1.8.3. On exception entry LR is set to a possibly offset
2163   // version of the "preferred return address". These offsets affect the return
2164   // instruction if this is a return from PL1 without hypervisor extensions.
2165   //    IRQ/FIQ: +4     "subs pc, lr, #4"
2166   //    SWI:     0      "subs pc, lr, #0"
2167   //    ABORT:   +4     "subs pc, lr, #4"
2168   //    UNDEF:   +4/+2  "subs pc, lr, #0"
2169   // UNDEF varies depending on where the exception came from ARM or Thumb
2170   // mode. Alongside GCC, we throw our hands up in disgust and pretend it's 0.
2171
2172   int64_t LROffset;
2173   if (IntKind == "" || IntKind == "IRQ" || IntKind == "FIQ" ||
2174       IntKind == "ABORT")
2175     LROffset = 4;
2176   else if (IntKind == "SWI" || IntKind == "UNDEF")
2177     LROffset = 0;
2178   else
2179     report_fatal_error("Unsupported interrupt attribute. If present, value "
2180                        "must be one of: IRQ, FIQ, SWI, ABORT or UNDEF");
2181
2182   RetOps.insert(RetOps.begin() + 1,
2183                 DAG.getConstant(LROffset, DL, MVT::i32, false));
2184
2185   return DAG.getNode(ARMISD::INTRET_FLAG, DL, MVT::Other, RetOps);
2186 }
2187
2188 SDValue
2189 ARMTargetLowering::LowerReturn(SDValue Chain,
2190                                CallingConv::ID CallConv, bool isVarArg,
2191                                const SmallVectorImpl<ISD::OutputArg> &Outs,
2192                                const SmallVectorImpl<SDValue> &OutVals,
2193                                SDLoc dl, SelectionDAG &DAG) const {
2194
2195   // CCValAssign - represent the assignment of the return value to a location.
2196   SmallVector<CCValAssign, 16> RVLocs;
2197
2198   // CCState - Info about the registers and stack slots.
2199   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
2200                     *DAG.getContext(), Call);
2201
2202   // Analyze outgoing return values.
2203   CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
2204                                                isVarArg));
2205
2206   SDValue Flag;
2207   SmallVector<SDValue, 4> RetOps;
2208   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
2209   bool isLittleEndian = Subtarget->isLittle();
2210
2211   MachineFunction &MF = DAG.getMachineFunction();
2212   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2213   AFI->setReturnRegsCount(RVLocs.size());
2214
2215   // Copy the result values into the output registers.
2216   for (unsigned i = 0, realRVLocIdx = 0;
2217        i != RVLocs.size();
2218        ++i, ++realRVLocIdx) {
2219     CCValAssign &VA = RVLocs[i];
2220     assert(VA.isRegLoc() && "Can only return in registers!");
2221
2222     SDValue Arg = OutVals[realRVLocIdx];
2223
2224     switch (VA.getLocInfo()) {
2225     default: llvm_unreachable("Unknown loc info!");
2226     case CCValAssign::Full: break;
2227     case CCValAssign::BCvt:
2228       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
2229       break;
2230     }
2231
2232     if (VA.needsCustom()) {
2233       if (VA.getLocVT() == MVT::v2f64) {
2234         // Extract the first half and return it in two registers.
2235         SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2236                                    DAG.getConstant(0, dl, MVT::i32));
2237         SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
2238                                        DAG.getVTList(MVT::i32, MVT::i32), Half);
2239
2240         Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2241                                  HalfGPRs.getValue(isLittleEndian ? 0 : 1),
2242                                  Flag);
2243         Flag = Chain.getValue(1);
2244         RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2245         VA = RVLocs[++i]; // skip ahead to next loc
2246         Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2247                                  HalfGPRs.getValue(isLittleEndian ? 1 : 0),
2248                                  Flag);
2249         Flag = Chain.getValue(1);
2250         RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2251         VA = RVLocs[++i]; // skip ahead to next loc
2252
2253         // Extract the 2nd half and fall through to handle it as an f64 value.
2254         Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2255                           DAG.getConstant(1, dl, MVT::i32));
2256       }
2257       // Legalize ret f64 -> ret 2 x i32.  We always have fmrrd if f64 is
2258       // available.
2259       SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
2260                                   DAG.getVTList(MVT::i32, MVT::i32), Arg);
2261       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2262                                fmrrd.getValue(isLittleEndian ? 0 : 1),
2263                                Flag);
2264       Flag = Chain.getValue(1);
2265       RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2266       VA = RVLocs[++i]; // skip ahead to next loc
2267       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2268                                fmrrd.getValue(isLittleEndian ? 1 : 0),
2269                                Flag);
2270     } else
2271       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
2272
2273     // Guarantee that all emitted copies are
2274     // stuck together, avoiding something bad.
2275     Flag = Chain.getValue(1);
2276     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2277   }
2278
2279   // Update chain and glue.
2280   RetOps[0] = Chain;
2281   if (Flag.getNode())
2282     RetOps.push_back(Flag);
2283
2284   // CPUs which aren't M-class use a special sequence to return from
2285   // exceptions (roughly, any instruction setting pc and cpsr simultaneously,
2286   // though we use "subs pc, lr, #N").
2287   //
2288   // M-class CPUs actually use a normal return sequence with a special
2289   // (hardware-provided) value in LR, so the normal code path works.
2290   if (DAG.getMachineFunction().getFunction()->hasFnAttribute("interrupt") &&
2291       !Subtarget->isMClass()) {
2292     if (Subtarget->isThumb1Only())
2293       report_fatal_error("interrupt attribute is not supported in Thumb1");
2294     return LowerInterruptReturn(RetOps, dl, DAG);
2295   }
2296
2297   return DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, RetOps);
2298 }
2299
2300 bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
2301   if (N->getNumValues() != 1)
2302     return false;
2303   if (!N->hasNUsesOfValue(1, 0))
2304     return false;
2305
2306   SDValue TCChain = Chain;
2307   SDNode *Copy = *N->use_begin();
2308   if (Copy->getOpcode() == ISD::CopyToReg) {
2309     // If the copy has a glue operand, we conservatively assume it isn't safe to
2310     // perform a tail call.
2311     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2312       return false;
2313     TCChain = Copy->getOperand(0);
2314   } else if (Copy->getOpcode() == ARMISD::VMOVRRD) {
2315     SDNode *VMov = Copy;
2316     // f64 returned in a pair of GPRs.
2317     SmallPtrSet<SDNode*, 2> Copies;
2318     for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2319          UI != UE; ++UI) {
2320       if (UI->getOpcode() != ISD::CopyToReg)
2321         return false;
2322       Copies.insert(*UI);
2323     }
2324     if (Copies.size() > 2)
2325       return false;
2326
2327     for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2328          UI != UE; ++UI) {
2329       SDValue UseChain = UI->getOperand(0);
2330       if (Copies.count(UseChain.getNode()))
2331         // Second CopyToReg
2332         Copy = *UI;
2333       else {
2334         // We are at the top of this chain.
2335         // If the copy has a glue operand, we conservatively assume it
2336         // isn't safe to perform a tail call.
2337         if (UI->getOperand(UI->getNumOperands()-1).getValueType() == MVT::Glue)
2338           return false;
2339         // First CopyToReg
2340         TCChain = UseChain;
2341       }
2342     }
2343   } else if (Copy->getOpcode() == ISD::BITCAST) {
2344     // f32 returned in a single GPR.
2345     if (!Copy->hasOneUse())
2346       return false;
2347     Copy = *Copy->use_begin();
2348     if (Copy->getOpcode() != ISD::CopyToReg || !Copy->hasNUsesOfValue(1, 0))
2349       return false;
2350     // If the copy has a glue operand, we conservatively assume it isn't safe to
2351     // perform a tail call.
2352     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2353       return false;
2354     TCChain = Copy->getOperand(0);
2355   } else {
2356     return false;
2357   }
2358
2359   bool HasRet = false;
2360   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2361        UI != UE; ++UI) {
2362     if (UI->getOpcode() != ARMISD::RET_FLAG &&
2363         UI->getOpcode() != ARMISD::INTRET_FLAG)
2364       return false;
2365     HasRet = true;
2366   }
2367
2368   if (!HasRet)
2369     return false;
2370
2371   Chain = TCChain;
2372   return true;
2373 }
2374
2375 bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2376   if (!Subtarget->supportsTailCall())
2377     return false;
2378
2379   auto Attr =
2380       CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
2381   if (!CI->isTailCall() || Attr.getValueAsString() == "true")
2382     return false;
2383
2384   return !Subtarget->isThumb1Only();
2385 }
2386
2387 // Trying to write a 64 bit value so need to split into two 32 bit values first,
2388 // and pass the lower and high parts through.
2389 static SDValue LowerWRITE_REGISTER(SDValue Op, SelectionDAG &DAG) {
2390   SDLoc DL(Op);
2391   SDValue WriteValue = Op->getOperand(2);
2392
2393   // This function is only supposed to be called for i64 type argument.
2394   assert(WriteValue.getValueType() == MVT::i64
2395           && "LowerWRITE_REGISTER called for non-i64 type argument.");
2396
2397   SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, WriteValue,
2398                            DAG.getConstant(0, DL, MVT::i32));
2399   SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, WriteValue,
2400                            DAG.getConstant(1, DL, MVT::i32));
2401   SDValue Ops[] = { Op->getOperand(0), Op->getOperand(1), Lo, Hi };
2402   return DAG.getNode(ISD::WRITE_REGISTER, DL, MVT::Other, Ops);
2403 }
2404
2405 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
2406 // their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
2407 // one of the above mentioned nodes. It has to be wrapped because otherwise
2408 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
2409 // be used to form addressing mode. These wrapped nodes will be selected
2410 // into MOVi.
2411 static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
2412   EVT PtrVT = Op.getValueType();
2413   // FIXME there is no actual debug info here
2414   SDLoc dl(Op);
2415   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
2416   SDValue Res;
2417   if (CP->isMachineConstantPoolEntry())
2418     Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
2419                                     CP->getAlignment());
2420   else
2421     Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
2422                                     CP->getAlignment());
2423   return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
2424 }
2425
2426 unsigned ARMTargetLowering::getJumpTableEncoding() const {
2427   return MachineJumpTableInfo::EK_Inline;
2428 }
2429
2430 SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op,
2431                                              SelectionDAG &DAG) const {
2432   MachineFunction &MF = DAG.getMachineFunction();
2433   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2434   unsigned ARMPCLabelIndex = 0;
2435   SDLoc DL(Op);
2436   EVT PtrVT = getPointerTy();
2437   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
2438   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2439   SDValue CPAddr;
2440   if (RelocM == Reloc::Static) {
2441     CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
2442   } else {
2443     unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2444     ARMPCLabelIndex = AFI->createPICLabelUId();
2445     ARMConstantPoolValue *CPV =
2446       ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex,
2447                                       ARMCP::CPBlockAddress, PCAdj);
2448     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2449   }
2450   CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
2451   SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
2452                                MachinePointerInfo::getConstantPool(),
2453                                false, false, false, 0);
2454   if (RelocM == Reloc::Static)
2455     return Result;
2456   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, DL, MVT::i32);
2457   return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
2458 }
2459
2460 // Lower ISD::GlobalTLSAddress using the "general dynamic" model
2461 SDValue
2462 ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
2463                                                  SelectionDAG &DAG) const {
2464   SDLoc dl(GA);
2465   EVT PtrVT = getPointerTy();
2466   unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2467   MachineFunction &MF = DAG.getMachineFunction();
2468   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2469   unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2470   ARMConstantPoolValue *CPV =
2471     ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2472                                     ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true);
2473   SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2474   Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
2475   Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
2476                          MachinePointerInfo::getConstantPool(),
2477                          false, false, false, 0);
2478   SDValue Chain = Argument.getValue(1);
2479
2480   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2481   Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
2482
2483   // call __tls_get_addr.
2484   ArgListTy Args;
2485   ArgListEntry Entry;
2486   Entry.Node = Argument;
2487   Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext());
2488   Args.push_back(Entry);
2489
2490   // FIXME: is there useful debug info available here?
2491   TargetLowering::CallLoweringInfo CLI(DAG);
2492   CLI.setDebugLoc(dl).setChain(Chain)
2493     .setCallee(CallingConv::C, Type::getInt32Ty(*DAG.getContext()),
2494                DAG.getExternalSymbol("__tls_get_addr", PtrVT), std::move(Args),
2495                0);
2496
2497   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
2498   return CallResult.first;
2499 }
2500
2501 // Lower ISD::GlobalTLSAddress using the "initial exec" or
2502 // "local exec" model.
2503 SDValue
2504 ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
2505                                         SelectionDAG &DAG,
2506                                         TLSModel::Model model) const {
2507   const GlobalValue *GV = GA->getGlobal();
2508   SDLoc dl(GA);
2509   SDValue Offset;
2510   SDValue Chain = DAG.getEntryNode();
2511   EVT PtrVT = getPointerTy();
2512   // Get the Thread Pointer
2513   SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2514
2515   if (model == TLSModel::InitialExec) {
2516     MachineFunction &MF = DAG.getMachineFunction();
2517     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2518     unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2519     // Initial exec model.
2520     unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2521     ARMConstantPoolValue *CPV =
2522       ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2523                                       ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF,
2524                                       true);
2525     Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2526     Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
2527     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2528                          MachinePointerInfo::getConstantPool(),
2529                          false, false, false, 0);
2530     Chain = Offset.getValue(1);
2531
2532     SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2533     Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
2534
2535     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2536                          MachinePointerInfo::getConstantPool(),
2537                          false, false, false, 0);
2538   } else {
2539     // local exec model
2540     assert(model == TLSModel::LocalExec);
2541     ARMConstantPoolValue *CPV =
2542       ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF);
2543     Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2544     Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
2545     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2546                          MachinePointerInfo::getConstantPool(),
2547                          false, false, false, 0);
2548   }
2549
2550   // The address of the thread local variable is the add of the thread
2551   // pointer with the offset of the variable.
2552   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
2553 }
2554
2555 SDValue
2556 ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
2557   // TODO: implement the "local dynamic" model
2558   assert(Subtarget->isTargetELF() &&
2559          "TLS not implemented for non-ELF targets");
2560   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
2561
2562   TLSModel::Model model = getTargetMachine().getTLSModel(GA->getGlobal());
2563
2564   switch (model) {
2565     case TLSModel::GeneralDynamic:
2566     case TLSModel::LocalDynamic:
2567       return LowerToTLSGeneralDynamicModel(GA, DAG);
2568     case TLSModel::InitialExec:
2569     case TLSModel::LocalExec:
2570       return LowerToTLSExecModels(GA, DAG, model);
2571   }
2572   llvm_unreachable("bogus TLS model");
2573 }
2574
2575 SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
2576                                                  SelectionDAG &DAG) const {
2577   EVT PtrVT = getPointerTy();
2578   SDLoc dl(Op);
2579   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2580   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2581     bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
2582     ARMConstantPoolValue *CPV =
2583       ARMConstantPoolConstant::Create(GV,
2584                                       UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT);
2585     SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2586     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2587     SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
2588                                  CPAddr,
2589                                  MachinePointerInfo::getConstantPool(),
2590                                  false, false, false, 0);
2591     SDValue Chain = Result.getValue(1);
2592     SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
2593     Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT);
2594     if (!UseGOTOFF)
2595       Result = DAG.getLoad(PtrVT, dl, Chain, Result,
2596                            MachinePointerInfo::getGOT(),
2597                            false, false, false, 0);
2598     return Result;
2599   }
2600
2601   // If we have T2 ops, we can materialize the address directly via movt/movw
2602   // pair. This is always cheaper.
2603   if (Subtarget->useMovt(DAG.getMachineFunction())) {
2604     ++NumMovwMovt;
2605     // FIXME: Once remat is capable of dealing with instructions with register
2606     // operands, expand this into two nodes.
2607     return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
2608                        DAG.getTargetGlobalAddress(GV, dl, PtrVT));
2609   } else {
2610     SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
2611     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2612     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2613                        MachinePointerInfo::getConstantPool(),
2614                        false, false, false, 0);
2615   }
2616 }
2617
2618 SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
2619                                                     SelectionDAG &DAG) const {
2620   EVT PtrVT = getPointerTy();
2621   SDLoc dl(Op);
2622   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2623   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2624
2625   if (Subtarget->useMovt(DAG.getMachineFunction()))
2626     ++NumMovwMovt;
2627
2628   // FIXME: Once remat is capable of dealing with instructions with register
2629   // operands, expand this into multiple nodes
2630   unsigned Wrapper =
2631       RelocM == Reloc::PIC_ ? ARMISD::WrapperPIC : ARMISD::Wrapper;
2632
2633   SDValue G = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, ARMII::MO_NONLAZY);
2634   SDValue Result = DAG.getNode(Wrapper, dl, PtrVT, G);
2635
2636   if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
2637     Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
2638                          MachinePointerInfo::getGOT(), false, false, false, 0);
2639   return Result;
2640 }
2641
2642 SDValue ARMTargetLowering::LowerGlobalAddressWindows(SDValue Op,
2643                                                      SelectionDAG &DAG) const {
2644   assert(Subtarget->isTargetWindows() && "non-Windows COFF is not supported");
2645   assert(Subtarget->useMovt(DAG.getMachineFunction()) &&
2646          "Windows on ARM expects to use movw/movt");
2647
2648   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2649   const ARMII::TOF TargetFlags =
2650     (GV->hasDLLImportStorageClass() ? ARMII::MO_DLLIMPORT : ARMII::MO_NO_FLAG);
2651   EVT PtrVT = getPointerTy();
2652   SDValue Result;
2653   SDLoc DL(Op);
2654
2655   ++NumMovwMovt;
2656
2657   // FIXME: Once remat is capable of dealing with instructions with register
2658   // operands, expand this into two nodes.
2659   Result = DAG.getNode(ARMISD::Wrapper, DL, PtrVT,
2660                        DAG.getTargetGlobalAddress(GV, DL, PtrVT, /*Offset=*/0,
2661                                                   TargetFlags));
2662   if (GV->hasDLLImportStorageClass())
2663     Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
2664                          MachinePointerInfo::getGOT(), false, false, false, 0);
2665   return Result;
2666 }
2667
2668 SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op,
2669                                                     SelectionDAG &DAG) const {
2670   assert(Subtarget->isTargetELF() &&
2671          "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
2672   MachineFunction &MF = DAG.getMachineFunction();
2673   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2674   unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2675   EVT PtrVT = getPointerTy();
2676   SDLoc dl(Op);
2677   unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2678   ARMConstantPoolValue *CPV =
2679     ARMConstantPoolSymbol::Create(*DAG.getContext(), "_GLOBAL_OFFSET_TABLE_",
2680                                   ARMPCLabelIndex, PCAdj);
2681   SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2682   CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2683   SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2684                                MachinePointerInfo::getConstantPool(),
2685                                false, false, false, 0);
2686   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2687   return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2688 }
2689
2690 SDValue
2691 ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const {
2692   SDLoc dl(Op);
2693   SDValue Val = DAG.getConstant(0, dl, MVT::i32);
2694   return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl,
2695                      DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0),
2696                      Op.getOperand(1), Val);
2697 }
2698
2699 SDValue
2700 ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const {
2701   SDLoc dl(Op);
2702   return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0),
2703                      Op.getOperand(1), DAG.getConstant(0, dl, MVT::i32));
2704 }
2705
2706 SDValue
2707 ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
2708                                           const ARMSubtarget *Subtarget) const {
2709   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
2710   SDLoc dl(Op);
2711   switch (IntNo) {
2712   default: return SDValue();    // Don't custom lower most intrinsics.
2713   case Intrinsic::arm_rbit: {
2714     assert(Op.getOperand(1).getValueType() == MVT::i32 &&
2715            "RBIT intrinsic must have i32 type!");
2716     return DAG.getNode(ARMISD::RBIT, dl, MVT::i32, Op.getOperand(1));
2717   }
2718   case Intrinsic::arm_thread_pointer: {
2719     EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2720     return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2721   }
2722   case Intrinsic::eh_sjlj_lsda: {
2723     MachineFunction &MF = DAG.getMachineFunction();
2724     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2725     unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2726     EVT PtrVT = getPointerTy();
2727     Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2728     SDValue CPAddr;
2729     unsigned PCAdj = (RelocM != Reloc::PIC_)
2730       ? 0 : (Subtarget->isThumb() ? 4 : 8);
2731     ARMConstantPoolValue *CPV =
2732       ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex,
2733                                       ARMCP::CPLSDA, PCAdj);
2734     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2735     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2736     SDValue Result =
2737       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2738                   MachinePointerInfo::getConstantPool(),
2739                   false, false, false, 0);
2740
2741     if (RelocM == Reloc::PIC_) {
2742       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2743       Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2744     }
2745     return Result;
2746   }
2747   case Intrinsic::arm_neon_vmulls:
2748   case Intrinsic::arm_neon_vmullu: {
2749     unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls)
2750       ? ARMISD::VMULLs : ARMISD::VMULLu;
2751     return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
2752                        Op.getOperand(1), Op.getOperand(2));
2753   }
2754   }
2755 }
2756
2757 static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG,
2758                                  const ARMSubtarget *Subtarget) {
2759   // FIXME: handle "fence singlethread" more efficiently.
2760   SDLoc dl(Op);
2761   if (!Subtarget->hasDataBarrier()) {
2762     // Some ARMv6 cpus can support data barriers with an mcr instruction.
2763     // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
2764     // here.
2765     assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() &&
2766            "Unexpected ISD::ATOMIC_FENCE encountered. Should be libcall!");
2767     return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0),
2768                        DAG.getConstant(0, dl, MVT::i32));
2769   }
2770
2771   ConstantSDNode *OrdN = cast<ConstantSDNode>(Op.getOperand(1));
2772   AtomicOrdering Ord = static_cast<AtomicOrdering>(OrdN->getZExtValue());
2773   ARM_MB::MemBOpt Domain = ARM_MB::ISH;
2774   if (Subtarget->isMClass()) {
2775     // Only a full system barrier exists in the M-class architectures.
2776     Domain = ARM_MB::SY;
2777   } else if (Subtarget->isSwift() && Ord == Release) {
2778     // Swift happens to implement ISHST barriers in a way that's compatible with
2779     // Release semantics but weaker than ISH so we'd be fools not to use
2780     // it. Beware: other processors probably don't!
2781     Domain = ARM_MB::ISHST;
2782   }
2783
2784   return DAG.getNode(ISD::INTRINSIC_VOID, dl, MVT::Other, Op.getOperand(0),
2785                      DAG.getConstant(Intrinsic::arm_dmb, dl, MVT::i32),
2786                      DAG.getConstant(Domain, dl, MVT::i32));
2787 }
2788
2789 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG,
2790                              const ARMSubtarget *Subtarget) {
2791   // ARM pre v5TE and Thumb1 does not have preload instructions.
2792   if (!(Subtarget->isThumb2() ||
2793         (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps())))
2794     // Just preserve the chain.
2795     return Op.getOperand(0);
2796
2797   SDLoc dl(Op);
2798   unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1;
2799   if (!isRead &&
2800       (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension()))
2801     // ARMv7 with MP extension has PLDW.
2802     return Op.getOperand(0);
2803
2804   unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2805   if (Subtarget->isThumb()) {
2806     // Invert the bits.
2807     isRead = ~isRead & 1;
2808     isData = ~isData & 1;
2809   }
2810
2811   return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0),
2812                      Op.getOperand(1), DAG.getConstant(isRead, dl, MVT::i32),
2813                      DAG.getConstant(isData, dl, MVT::i32));
2814 }
2815
2816 static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) {
2817   MachineFunction &MF = DAG.getMachineFunction();
2818   ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>();
2819
2820   // vastart just stores the address of the VarArgsFrameIndex slot into the
2821   // memory location argument.
2822   SDLoc dl(Op);
2823   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2824   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2825   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2826   return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2827                       MachinePointerInfo(SV), false, false, 0);
2828 }
2829
2830 SDValue
2831 ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
2832                                         SDValue &Root, SelectionDAG &DAG,
2833                                         SDLoc dl) const {
2834   MachineFunction &MF = DAG.getMachineFunction();
2835   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2836
2837   const TargetRegisterClass *RC;
2838   if (AFI->isThumb1OnlyFunction())
2839     RC = &ARM::tGPRRegClass;
2840   else
2841     RC = &ARM::GPRRegClass;
2842
2843   // Transform the arguments stored in physical registers into virtual ones.
2844   unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2845   SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
2846
2847   SDValue ArgValue2;
2848   if (NextVA.isMemLoc()) {
2849     MachineFrameInfo *MFI = MF.getFrameInfo();
2850     int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true);
2851
2852     // Create load node to retrieve arguments from the stack.
2853     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2854     ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN,
2855                             MachinePointerInfo::getFixedStack(FI),
2856                             false, false, false, 0);
2857   } else {
2858     Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
2859     ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
2860   }
2861   if (!Subtarget->isLittle())
2862     std::swap (ArgValue, ArgValue2);
2863   return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
2864 }
2865
2866 // The remaining GPRs hold either the beginning of variable-argument
2867 // data, or the beginning of an aggregate passed by value (usually
2868 // byval).  Either way, we allocate stack slots adjacent to the data
2869 // provided by our caller, and store the unallocated registers there.
2870 // If this is a variadic function, the va_list pointer will begin with
2871 // these values; otherwise, this reassembles a (byval) structure that
2872 // was split between registers and memory.
2873 // Return: The frame index registers were stored into.
2874 int
2875 ARMTargetLowering::StoreByValRegs(CCState &CCInfo, SelectionDAG &DAG,
2876                                   SDLoc dl, SDValue &Chain,
2877                                   const Value *OrigArg,
2878                                   unsigned InRegsParamRecordIdx,
2879                                   int ArgOffset,
2880                                   unsigned ArgSize) const {
2881   // Currently, two use-cases possible:
2882   // Case #1. Non-var-args function, and we meet first byval parameter.
2883   //          Setup first unallocated register as first byval register;
2884   //          eat all remained registers
2885   //          (these two actions are performed by HandleByVal method).
2886   //          Then, here, we initialize stack frame with
2887   //          "store-reg" instructions.
2888   // Case #2. Var-args function, that doesn't contain byval parameters.
2889   //          The same: eat all remained unallocated registers,
2890   //          initialize stack frame.
2891
2892   MachineFunction &MF = DAG.getMachineFunction();
2893   MachineFrameInfo *MFI = MF.getFrameInfo();
2894   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2895   unsigned RBegin, REnd;
2896   if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
2897     CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
2898   } else {
2899     unsigned RBeginIdx = CCInfo.getFirstUnallocated(GPRArgRegs);
2900     RBegin = RBeginIdx == 4 ? (unsigned)ARM::R4 : GPRArgRegs[RBeginIdx];
2901     REnd = ARM::R4;
2902   }
2903
2904   if (REnd != RBegin)
2905     ArgOffset = -4 * (ARM::R4 - RBegin);
2906
2907   int FrameIndex = MFI->CreateFixedObject(ArgSize, ArgOffset, false);
2908   SDValue FIN = DAG.getFrameIndex(FrameIndex, getPointerTy());
2909
2910   SmallVector<SDValue, 4> MemOps;
2911   const TargetRegisterClass *RC =
2912       AFI->isThumb1OnlyFunction() ? &ARM::tGPRRegClass : &ARM::GPRRegClass;
2913
2914   for (unsigned Reg = RBegin, i = 0; Reg < REnd; ++Reg, ++i) {
2915     unsigned VReg = MF.addLiveIn(Reg, RC);
2916     SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
2917     SDValue Store =
2918         DAG.getStore(Val.getValue(1), dl, Val, FIN,
2919                      MachinePointerInfo(OrigArg, 4 * i), false, false, 0);
2920     MemOps.push_back(Store);
2921     FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
2922                       DAG.getConstant(4, dl, getPointerTy()));
2923   }
2924
2925   if (!MemOps.empty())
2926     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2927   return FrameIndex;
2928 }
2929
2930 // Setup stack frame, the va_list pointer will start from.
2931 void
2932 ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG,
2933                                         SDLoc dl, SDValue &Chain,
2934                                         unsigned ArgOffset,
2935                                         unsigned TotalArgRegsSaveSize,
2936                                         bool ForceMutable) const {
2937   MachineFunction &MF = DAG.getMachineFunction();
2938   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2939
2940   // Try to store any remaining integer argument regs
2941   // to their spots on the stack so that they may be loaded by deferencing
2942   // the result of va_next.
2943   // If there is no regs to be stored, just point address after last
2944   // argument passed via stack.
2945   int FrameIndex = StoreByValRegs(CCInfo, DAG, dl, Chain, nullptr,
2946                                   CCInfo.getInRegsParamsCount(),
2947                                   CCInfo.getNextStackOffset(), 4);
2948   AFI->setVarArgsFrameIndex(FrameIndex);
2949 }
2950
2951 SDValue
2952 ARMTargetLowering::LowerFormalArguments(SDValue Chain,
2953                                         CallingConv::ID CallConv, bool isVarArg,
2954                                         const SmallVectorImpl<ISD::InputArg>
2955                                           &Ins,
2956                                         SDLoc dl, SelectionDAG &DAG,
2957                                         SmallVectorImpl<SDValue> &InVals)
2958                                           const {
2959   MachineFunction &MF = DAG.getMachineFunction();
2960   MachineFrameInfo *MFI = MF.getFrameInfo();
2961
2962   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2963
2964   // Assign locations to all of the incoming arguments.
2965   SmallVector<CCValAssign, 16> ArgLocs;
2966   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2967                     *DAG.getContext(), Prologue);
2968   CCInfo.AnalyzeFormalArguments(Ins,
2969                                 CCAssignFnForNode(CallConv, /* Return*/ false,
2970                                                   isVarArg));
2971
2972   SmallVector<SDValue, 16> ArgValues;
2973   SDValue ArgValue;
2974   Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
2975   unsigned CurArgIdx = 0;
2976
2977   // Initially ArgRegsSaveSize is zero.
2978   // Then we increase this value each time we meet byval parameter.
2979   // We also increase this value in case of varargs function.
2980   AFI->setArgRegsSaveSize(0);
2981
2982   // Calculate the amount of stack space that we need to allocate to store
2983   // byval and variadic arguments that are passed in registers.
2984   // We need to know this before we allocate the first byval or variadic
2985   // argument, as they will be allocated a stack slot below the CFA (Canonical
2986   // Frame Address, the stack pointer at entry to the function).
2987   unsigned ArgRegBegin = ARM::R4;
2988   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2989     if (CCInfo.getInRegsParamsProcessed() >= CCInfo.getInRegsParamsCount())
2990       break;
2991
2992     CCValAssign &VA = ArgLocs[i];
2993     unsigned Index = VA.getValNo();
2994     ISD::ArgFlagsTy Flags = Ins[Index].Flags;
2995     if (!Flags.isByVal())
2996       continue;
2997
2998     assert(VA.isMemLoc() && "unexpected byval pointer in reg");
2999     unsigned RBegin, REnd;
3000     CCInfo.getInRegsParamInfo(CCInfo.getInRegsParamsProcessed(), RBegin, REnd);
3001     ArgRegBegin = std::min(ArgRegBegin, RBegin);
3002
3003     CCInfo.nextInRegsParam();
3004   }
3005   CCInfo.rewindByValRegsInfo();
3006
3007   int lastInsIndex = -1;
3008   if (isVarArg && MFI->hasVAStart()) {
3009     unsigned RegIdx = CCInfo.getFirstUnallocated(GPRArgRegs);
3010     if (RegIdx != array_lengthof(GPRArgRegs))
3011       ArgRegBegin = std::min(ArgRegBegin, (unsigned)GPRArgRegs[RegIdx]);
3012   }
3013
3014   unsigned TotalArgRegsSaveSize = 4 * (ARM::R4 - ArgRegBegin);
3015   AFI->setArgRegsSaveSize(TotalArgRegsSaveSize);
3016
3017   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3018     CCValAssign &VA = ArgLocs[i];
3019     if (Ins[VA.getValNo()].isOrigArg()) {
3020       std::advance(CurOrigArg,
3021                    Ins[VA.getValNo()].getOrigArgIndex() - CurArgIdx);
3022       CurArgIdx = Ins[VA.getValNo()].getOrigArgIndex();
3023     }
3024     // Arguments stored in registers.
3025     if (VA.isRegLoc()) {
3026       EVT RegVT = VA.getLocVT();
3027
3028       if (VA.needsCustom()) {
3029         // f64 and vector types are split up into multiple registers or
3030         // combinations of registers and stack slots.
3031         if (VA.getLocVT() == MVT::v2f64) {
3032           SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
3033                                                    Chain, DAG, dl);
3034           VA = ArgLocs[++i]; // skip ahead to next loc
3035           SDValue ArgValue2;
3036           if (VA.isMemLoc()) {
3037             int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true);
3038             SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
3039             ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN,
3040                                     MachinePointerInfo::getFixedStack(FI),
3041                                     false, false, false, 0);
3042           } else {
3043             ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
3044                                              Chain, DAG, dl);
3045           }
3046           ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
3047           ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
3048                                  ArgValue, ArgValue1,
3049                                  DAG.getIntPtrConstant(0, dl));
3050           ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
3051                                  ArgValue, ArgValue2,
3052                                  DAG.getIntPtrConstant(1, dl));
3053         } else
3054           ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
3055
3056       } else {
3057         const TargetRegisterClass *RC;
3058
3059         if (RegVT == MVT::f32)
3060           RC = &ARM::SPRRegClass;
3061         else if (RegVT == MVT::f64)
3062           RC = &ARM::DPRRegClass;
3063         else if (RegVT == MVT::v2f64)
3064           RC = &ARM::QPRRegClass;
3065         else if (RegVT == MVT::i32)
3066           RC = AFI->isThumb1OnlyFunction() ? &ARM::tGPRRegClass
3067                                            : &ARM::GPRRegClass;
3068         else
3069           llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
3070
3071         // Transform the arguments in physical registers into virtual ones.
3072         unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
3073         ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
3074       }
3075
3076       // If this is an 8 or 16-bit value, it is really passed promoted
3077       // to 32 bits.  Insert an assert[sz]ext to capture this, then
3078       // truncate to the right size.
3079       switch (VA.getLocInfo()) {
3080       default: llvm_unreachable("Unknown loc info!");
3081       case CCValAssign::Full: break;
3082       case CCValAssign::BCvt:
3083         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
3084         break;
3085       case CCValAssign::SExt:
3086         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
3087                                DAG.getValueType(VA.getValVT()));
3088         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3089         break;
3090       case CCValAssign::ZExt:
3091         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
3092                                DAG.getValueType(VA.getValVT()));
3093         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3094         break;
3095       }
3096
3097       InVals.push_back(ArgValue);
3098
3099     } else { // VA.isRegLoc()
3100
3101       // sanity check
3102       assert(VA.isMemLoc());
3103       assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
3104
3105       int index = VA.getValNo();
3106
3107       // Some Ins[] entries become multiple ArgLoc[] entries.
3108       // Process them only once.
3109       if (index != lastInsIndex)
3110         {
3111           ISD::ArgFlagsTy Flags = Ins[index].Flags;
3112           // FIXME: For now, all byval parameter objects are marked mutable.
3113           // This can be changed with more analysis.
3114           // In case of tail call optimization mark all arguments mutable.
3115           // Since they could be overwritten by lowering of arguments in case of
3116           // a tail call.
3117           if (Flags.isByVal()) {
3118             assert(Ins[index].isOrigArg() &&
3119                    "Byval arguments cannot be implicit");
3120             unsigned CurByValIndex = CCInfo.getInRegsParamsProcessed();
3121
3122             int FrameIndex = StoreByValRegs(CCInfo, DAG, dl, Chain, CurOrigArg,
3123                                             CurByValIndex, VA.getLocMemOffset(),
3124                                             Flags.getByValSize());
3125             InVals.push_back(DAG.getFrameIndex(FrameIndex, getPointerTy()));
3126             CCInfo.nextInRegsParam();
3127           } else {
3128             unsigned FIOffset = VA.getLocMemOffset();
3129             int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
3130                                             FIOffset, true);
3131
3132             // Create load nodes to retrieve arguments from the stack.
3133             SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
3134             InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
3135                                          MachinePointerInfo::getFixedStack(FI),
3136                                          false, false, false, 0));
3137           }
3138           lastInsIndex = index;
3139         }
3140     }
3141   }
3142
3143   // varargs
3144   if (isVarArg && MFI->hasVAStart())
3145     VarArgStyleRegisters(CCInfo, DAG, dl, Chain,
3146                          CCInfo.getNextStackOffset(),
3147                          TotalArgRegsSaveSize);
3148
3149   AFI->setArgumentStackSize(CCInfo.getNextStackOffset());
3150
3151   return Chain;
3152 }
3153
3154 /// isFloatingPointZero - Return true if this is +0.0.
3155 static bool isFloatingPointZero(SDValue Op) {
3156   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
3157     return CFP->getValueAPF().isPosZero();
3158   else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
3159     // Maybe this has already been legalized into the constant pool?
3160     if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
3161       SDValue WrapperOp = Op.getOperand(1).getOperand(0);
3162       if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
3163         if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
3164           return CFP->getValueAPF().isPosZero();
3165     }
3166   } else if (Op->getOpcode() == ISD::BITCAST &&
3167              Op->getValueType(0) == MVT::f64) {
3168     // Handle (ISD::BITCAST (ARMISD::VMOVIMM (ISD::TargetConstant 0)) MVT::f64)
3169     // created by LowerConstantFP().
3170     SDValue BitcastOp = Op->getOperand(0);
3171     if (BitcastOp->getOpcode() == ARMISD::VMOVIMM) {
3172       SDValue MoveOp = BitcastOp->getOperand(0);
3173       if (MoveOp->getOpcode() == ISD::TargetConstant &&
3174           cast<ConstantSDNode>(MoveOp)->getZExtValue() == 0) {
3175         return true;
3176       }
3177     }
3178   }
3179   return false;
3180 }
3181
3182 /// Returns appropriate ARM CMP (cmp) and corresponding condition code for
3183 /// the given operands.
3184 SDValue
3185 ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
3186                              SDValue &ARMcc, SelectionDAG &DAG,
3187                              SDLoc dl) const {
3188   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
3189     unsigned C = RHSC->getZExtValue();
3190     if (!isLegalICmpImmediate(C)) {
3191       // Constant does not fit, try adjusting it by one?
3192       switch (CC) {
3193       default: break;
3194       case ISD::SETLT:
3195       case ISD::SETGE:
3196         if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
3197           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
3198           RHS = DAG.getConstant(C - 1, dl, MVT::i32);
3199         }
3200         break;
3201       case ISD::SETULT:
3202       case ISD::SETUGE:
3203         if (C != 0 && isLegalICmpImmediate(C-1)) {
3204           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
3205           RHS = DAG.getConstant(C - 1, dl, MVT::i32);
3206         }
3207         break;
3208       case ISD::SETLE:
3209       case ISD::SETGT:
3210         if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
3211           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
3212           RHS = DAG.getConstant(C + 1, dl, MVT::i32);
3213         }
3214         break;
3215       case ISD::SETULE:
3216       case ISD::SETUGT:
3217         if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
3218           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
3219           RHS = DAG.getConstant(C + 1, dl, MVT::i32);
3220         }
3221         break;
3222       }
3223     }
3224   }
3225
3226   ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3227   ARMISD::NodeType CompareType;
3228   switch (CondCode) {
3229   default:
3230     CompareType = ARMISD::CMP;
3231     break;
3232   case ARMCC::EQ:
3233   case ARMCC::NE:
3234     // Uses only Z Flag
3235     CompareType = ARMISD::CMPZ;
3236     break;
3237   }
3238   ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
3239   return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS);
3240 }
3241
3242 /// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
3243 SDValue
3244 ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
3245                              SDLoc dl) const {
3246   assert(!Subtarget->isFPOnlySP() || RHS.getValueType() != MVT::f64);
3247   SDValue Cmp;
3248   if (!isFloatingPointZero(RHS))
3249     Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS);
3250   else
3251     Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS);
3252   return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp);
3253 }
3254
3255 /// duplicateCmp - Glue values can have only one use, so this function
3256 /// duplicates a comparison node.
3257 SDValue
3258 ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const {
3259   unsigned Opc = Cmp.getOpcode();
3260   SDLoc DL(Cmp);
3261   if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ)
3262     return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3263
3264   assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation");
3265   Cmp = Cmp.getOperand(0);
3266   Opc = Cmp.getOpcode();
3267   if (Opc == ARMISD::CMPFP)
3268     Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3269   else {
3270     assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT");
3271     Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0));
3272   }
3273   return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp);
3274 }
3275
3276 std::pair<SDValue, SDValue>
3277 ARMTargetLowering::getARMXALUOOp(SDValue Op, SelectionDAG &DAG,
3278                                  SDValue &ARMcc) const {
3279   assert(Op.getValueType() == MVT::i32 &&  "Unsupported value type");
3280
3281   SDValue Value, OverflowCmp;
3282   SDValue LHS = Op.getOperand(0);
3283   SDValue RHS = Op.getOperand(1);
3284   SDLoc dl(Op);
3285
3286   // FIXME: We are currently always generating CMPs because we don't support
3287   // generating CMN through the backend. This is not as good as the natural
3288   // CMP case because it causes a register dependency and cannot be folded
3289   // later.
3290
3291   switch (Op.getOpcode()) {
3292   default:
3293     llvm_unreachable("Unknown overflow instruction!");
3294   case ISD::SADDO:
3295     ARMcc = DAG.getConstant(ARMCC::VC, dl, MVT::i32);
3296     Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS);
3297     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS);
3298     break;
3299   case ISD::UADDO:
3300     ARMcc = DAG.getConstant(ARMCC::HS, dl, MVT::i32);
3301     Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS);
3302     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS);
3303     break;
3304   case ISD::SSUBO:
3305     ARMcc = DAG.getConstant(ARMCC::VC, dl, MVT::i32);
3306     Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS);
3307     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, LHS, RHS);
3308     break;
3309   case ISD::USUBO:
3310     ARMcc = DAG.getConstant(ARMCC::HS, dl, MVT::i32);
3311     Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS);
3312     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, LHS, RHS);
3313     break;
3314   } // switch (...)
3315
3316   return std::make_pair(Value, OverflowCmp);
3317 }
3318
3319
3320 SDValue
3321 ARMTargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
3322   // Let legalize expand this if it isn't a legal type yet.
3323   if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
3324     return SDValue();
3325
3326   SDValue Value, OverflowCmp;
3327   SDValue ARMcc;
3328   std::tie(Value, OverflowCmp) = getARMXALUOOp(Op, DAG, ARMcc);
3329   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3330   SDLoc dl(Op);
3331   // We use 0 and 1 as false and true values.
3332   SDValue TVal = DAG.getConstant(1, dl, MVT::i32);
3333   SDValue FVal = DAG.getConstant(0, dl, MVT::i32);
3334   EVT VT = Op.getValueType();
3335
3336   SDValue Overflow = DAG.getNode(ARMISD::CMOV, dl, VT, TVal, FVal,
3337                                  ARMcc, CCR, OverflowCmp);
3338
3339   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
3340   return DAG.getNode(ISD::MERGE_VALUES, dl, VTs, Value, Overflow);
3341 }
3342
3343
3344 SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
3345   SDValue Cond = Op.getOperand(0);
3346   SDValue SelectTrue = Op.getOperand(1);
3347   SDValue SelectFalse = Op.getOperand(2);
3348   SDLoc dl(Op);
3349   unsigned Opc = Cond.getOpcode();
3350
3351   if (Cond.getResNo() == 1 &&
3352       (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
3353        Opc == ISD::USUBO)) {
3354     if (!DAG.getTargetLoweringInfo().isTypeLegal(Cond->getValueType(0)))
3355       return SDValue();
3356
3357     SDValue Value, OverflowCmp;
3358     SDValue ARMcc;
3359     std::tie(Value, OverflowCmp) = getARMXALUOOp(Cond, DAG, ARMcc);
3360     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3361     EVT VT = Op.getValueType();
3362
3363     return getCMOV(dl, VT, SelectTrue, SelectFalse, ARMcc, CCR,
3364                    OverflowCmp, DAG);
3365   }
3366
3367   // Convert:
3368   //
3369   //   (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond)
3370   //   (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond)
3371   //
3372   if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) {
3373     const ConstantSDNode *CMOVTrue =
3374       dyn_cast<ConstantSDNode>(Cond.getOperand(0));
3375     const ConstantSDNode *CMOVFalse =
3376       dyn_cast<ConstantSDNode>(Cond.getOperand(1));
3377
3378     if (CMOVTrue && CMOVFalse) {
3379       unsigned CMOVTrueVal = CMOVTrue->getZExtValue();
3380       unsigned CMOVFalseVal = CMOVFalse->getZExtValue();
3381
3382       SDValue True;
3383       SDValue False;
3384       if (CMOVTrueVal == 1 && CMOVFalseVal == 0) {
3385         True = SelectTrue;
3386         False = SelectFalse;
3387       } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) {
3388         True = SelectFalse;
3389         False = SelectTrue;
3390       }
3391
3392       if (True.getNode() && False.getNode()) {
3393         EVT VT = Op.getValueType();
3394         SDValue ARMcc = Cond.getOperand(2);
3395         SDValue CCR = Cond.getOperand(3);
3396         SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG);
3397         assert(True.getValueType() == VT);
3398         return getCMOV(dl, VT, True, False, ARMcc, CCR, Cmp, DAG);
3399       }
3400     }
3401   }
3402
3403   // ARM's BooleanContents value is UndefinedBooleanContent. Mask out the
3404   // undefined bits before doing a full-word comparison with zero.
3405   Cond = DAG.getNode(ISD::AND, dl, Cond.getValueType(), Cond,
3406                      DAG.getConstant(1, dl, Cond.getValueType()));
3407
3408   return DAG.getSelectCC(dl, Cond,
3409                          DAG.getConstant(0, dl, Cond.getValueType()),
3410                          SelectTrue, SelectFalse, ISD::SETNE);
3411 }
3412
3413 static void checkVSELConstraints(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
3414                                  bool &swpCmpOps, bool &swpVselOps) {
3415   // Start by selecting the GE condition code for opcodes that return true for
3416   // 'equality'
3417   if (CC == ISD::SETUGE || CC == ISD::SETOGE || CC == ISD::SETOLE ||
3418       CC == ISD::SETULE)
3419     CondCode = ARMCC::GE;
3420
3421   // and GT for opcodes that return false for 'equality'.
3422   else if (CC == ISD::SETUGT || CC == ISD::SETOGT || CC == ISD::SETOLT ||
3423            CC == ISD::SETULT)
3424     CondCode = ARMCC::GT;
3425
3426   // Since we are constrained to GE/GT, if the opcode contains 'less', we need
3427   // to swap the compare operands.
3428   if (CC == ISD::SETOLE || CC == ISD::SETULE || CC == ISD::SETOLT ||
3429       CC == ISD::SETULT)
3430     swpCmpOps = true;
3431
3432   // Both GT and GE are ordered comparisons, and return false for 'unordered'.
3433   // If we have an unordered opcode, we need to swap the operands to the VSEL
3434   // instruction (effectively negating the condition).
3435   //
3436   // This also has the effect of swapping which one of 'less' or 'greater'
3437   // returns true, so we also swap the compare operands. It also switches
3438   // whether we return true for 'equality', so we compensate by picking the
3439   // opposite condition code to our original choice.
3440   if (CC == ISD::SETULE || CC == ISD::SETULT || CC == ISD::SETUGE ||
3441       CC == ISD::SETUGT) {
3442     swpCmpOps = !swpCmpOps;
3443     swpVselOps = !swpVselOps;
3444     CondCode = CondCode == ARMCC::GT ? ARMCC::GE : ARMCC::GT;
3445   }
3446
3447   // 'ordered' is 'anything but unordered', so use the VS condition code and
3448   // swap the VSEL operands.
3449   if (CC == ISD::SETO) {
3450     CondCode = ARMCC::VS;
3451     swpVselOps = true;
3452   }
3453
3454   // 'unordered or not equal' is 'anything but equal', so use the EQ condition
3455   // code and swap the VSEL operands.
3456   if (CC == ISD::SETUNE) {
3457     CondCode = ARMCC::EQ;
3458     swpVselOps = true;
3459   }
3460 }
3461
3462 SDValue ARMTargetLowering::getCMOV(SDLoc dl, EVT VT, SDValue FalseVal,
3463                                    SDValue TrueVal, SDValue ARMcc, SDValue CCR,
3464                                    SDValue Cmp, SelectionDAG &DAG) const {
3465   if (Subtarget->isFPOnlySP() && VT == MVT::f64) {
3466     FalseVal = DAG.getNode(ARMISD::VMOVRRD, dl,
3467                            DAG.getVTList(MVT::i32, MVT::i32), FalseVal);
3468     TrueVal = DAG.getNode(ARMISD::VMOVRRD, dl,
3469                           DAG.getVTList(MVT::i32, MVT::i32), TrueVal);
3470
3471     SDValue TrueLow = TrueVal.getValue(0);
3472     SDValue TrueHigh = TrueVal.getValue(1);
3473     SDValue FalseLow = FalseVal.getValue(0);
3474     SDValue FalseHigh = FalseVal.getValue(1);
3475
3476     SDValue Low = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseLow, TrueLow,
3477                               ARMcc, CCR, Cmp);
3478     SDValue High = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseHigh, TrueHigh,
3479                                ARMcc, CCR, duplicateCmp(Cmp, DAG));
3480
3481     return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Low, High);
3482   } else {
3483     return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,
3484                        Cmp);
3485   }
3486 }
3487
3488 SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
3489   EVT VT = Op.getValueType();
3490   SDValue LHS = Op.getOperand(0);
3491   SDValue RHS = Op.getOperand(1);
3492   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
3493   SDValue TrueVal = Op.getOperand(2);
3494   SDValue FalseVal = Op.getOperand(3);
3495   SDLoc dl(Op);
3496
3497   if (Subtarget->isFPOnlySP() && LHS.getValueType() == MVT::f64) {
3498     DAG.getTargetLoweringInfo().softenSetCCOperands(DAG, MVT::f64, LHS, RHS, CC,
3499                                                     dl);
3500
3501     // If softenSetCCOperands only returned one value, we should compare it to
3502     // zero.
3503     if (!RHS.getNode()) {
3504       RHS = DAG.getConstant(0, dl, LHS.getValueType());
3505       CC = ISD::SETNE;
3506     }
3507   }
3508
3509   if (LHS.getValueType() == MVT::i32) {
3510     // Try to generate VSEL on ARMv8.
3511     // The VSEL instruction can't use all the usual ARM condition
3512     // codes: it only has two bits to select the condition code, so it's
3513     // constrained to use only GE, GT, VS and EQ.
3514     //
3515     // To implement all the various ISD::SETXXX opcodes, we sometimes need to
3516     // swap the operands of the previous compare instruction (effectively
3517     // inverting the compare condition, swapping 'less' and 'greater') and
3518     // sometimes need to swap the operands to the VSEL (which inverts the
3519     // condition in the sense of firing whenever the previous condition didn't)
3520     if (Subtarget->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3521                                     TrueVal.getValueType() == MVT::f64)) {
3522       ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3523       if (CondCode == ARMCC::LT || CondCode == ARMCC::LE ||
3524           CondCode == ARMCC::VC || CondCode == ARMCC::NE) {
3525         CC = ISD::getSetCCInverse(CC, true);
3526         std::swap(TrueVal, FalseVal);
3527       }
3528     }
3529
3530     SDValue ARMcc;
3531     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3532     SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3533     return getCMOV(dl, VT, FalseVal, TrueVal, ARMcc, CCR, Cmp, DAG);
3534   }
3535
3536   ARMCC::CondCodes CondCode, CondCode2;
3537   FPCCToARMCC(CC, CondCode, CondCode2);
3538
3539   // Try to generate VMAXNM/VMINNM on ARMv8.
3540   if (Subtarget->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3541                                   TrueVal.getValueType() == MVT::f64)) {
3542     // We can use VMAXNM/VMINNM for a compare followed by a select with the
3543     // same operands, as follows:
3544     //   c = fcmp [?gt, ?ge, ?lt, ?le] a, b
3545     //   select c, a, b
3546     // In NoNaNsFPMath the CC will have been changed from, e.g., 'ogt' to 'gt'.
3547     bool swapSides = false;
3548     if (!getTargetMachine().Options.NoNaNsFPMath) {
3549       // transformability may depend on which way around we compare
3550       switch (CC) {
3551       default:
3552         break;
3553       case ISD::SETOGT:
3554       case ISD::SETOGE:
3555       case ISD::SETOLT:
3556       case ISD::SETOLE:
3557         // the non-NaN should be RHS
3558         swapSides = DAG.isKnownNeverNaN(LHS) && !DAG.isKnownNeverNaN(RHS);
3559         break;
3560       case ISD::SETUGT:
3561       case ISD::SETUGE:
3562       case ISD::SETULT:
3563       case ISD::SETULE:
3564         // the non-NaN should be LHS
3565         swapSides = DAG.isKnownNeverNaN(RHS) && !DAG.isKnownNeverNaN(LHS);
3566         break;
3567       }
3568     }
3569     swapSides = swapSides || (LHS == FalseVal && RHS == TrueVal);
3570     if (swapSides) {
3571       CC = ISD::getSetCCSwappedOperands(CC);
3572       std::swap(LHS, RHS);
3573     }
3574     if (LHS == TrueVal && RHS == FalseVal) {
3575       bool canTransform = true;
3576       // FIXME: FastMathFlags::noSignedZeros() doesn't appear reachable from here
3577       if (!getTargetMachine().Options.UnsafeFPMath &&
3578           !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
3579         const ConstantFPSDNode *Zero;
3580         switch (CC) {
3581         default:
3582           break;
3583         case ISD::SETOGT:
3584         case ISD::SETUGT:
3585         case ISD::SETGT:
3586           // RHS must not be -0
3587           canTransform = (Zero = dyn_cast<ConstantFPSDNode>(RHS)) &&
3588                          !Zero->isNegative();
3589           break;
3590         case ISD::SETOGE:
3591         case ISD::SETUGE:
3592         case ISD::SETGE:
3593           // LHS must not be -0
3594           canTransform = (Zero = dyn_cast<ConstantFPSDNode>(LHS)) &&
3595                          !Zero->isNegative();
3596           break;
3597         case ISD::SETOLT:
3598         case ISD::SETULT:
3599         case ISD::SETLT:
3600           // RHS must not be +0
3601           canTransform = (Zero = dyn_cast<ConstantFPSDNode>(RHS)) &&
3602                           Zero->isNegative();
3603           break;
3604         case ISD::SETOLE:
3605         case ISD::SETULE:
3606         case ISD::SETLE:
3607           // LHS must not be +0
3608           canTransform = (Zero = dyn_cast<ConstantFPSDNode>(LHS)) &&
3609                           Zero->isNegative();
3610           break;
3611         }
3612       }
3613       if (canTransform) {
3614         // Note: If one of the elements in a pair is a number and the other
3615         // element is NaN, the corresponding result element is the number.
3616         // This is consistent with the IEEE 754-2008 standard.
3617         // Therefore, a > b ? a : b <=> vmax(a,b), if b is constant and a is NaN
3618         switch (CC) {
3619         default:
3620           break;
3621         case ISD::SETOGT:
3622         case ISD::SETOGE:
3623           if (!DAG.isKnownNeverNaN(RHS))
3624             break;
3625           return DAG.getNode(ARMISD::VMAXNM, dl, VT, LHS, RHS);
3626         case ISD::SETUGT:
3627         case ISD::SETUGE:
3628           if (!DAG.isKnownNeverNaN(LHS))
3629             break;
3630         case ISD::SETGT:
3631         case ISD::SETGE:
3632           return DAG.getNode(ARMISD::VMAXNM, dl, VT, LHS, RHS);
3633         case ISD::SETOLT:
3634         case ISD::SETOLE:
3635           if (!DAG.isKnownNeverNaN(RHS))
3636             break;
3637           return DAG.getNode(ARMISD::VMINNM, dl, VT, LHS, RHS);
3638         case ISD::SETULT:
3639         case ISD::SETULE:
3640           if (!DAG.isKnownNeverNaN(LHS))
3641             break;
3642         case ISD::SETLT:
3643         case ISD::SETLE:
3644           return DAG.getNode(ARMISD::VMINNM, dl, VT, LHS, RHS);
3645         }
3646       }
3647     }
3648
3649     bool swpCmpOps = false;
3650     bool swpVselOps = false;
3651     checkVSELConstraints(CC, CondCode, swpCmpOps, swpVselOps);
3652
3653     if (CondCode == ARMCC::GT || CondCode == ARMCC::GE ||
3654         CondCode == ARMCC::VS || CondCode == ARMCC::EQ) {
3655       if (swpCmpOps)
3656         std::swap(LHS, RHS);
3657       if (swpVselOps)
3658         std::swap(TrueVal, FalseVal);
3659     }
3660   }
3661
3662   SDValue ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
3663   SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
3664   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3665   SDValue Result = getCMOV(dl, VT, FalseVal, TrueVal, ARMcc, CCR, Cmp, DAG);
3666   if (CondCode2 != ARMCC::AL) {
3667     SDValue ARMcc2 = DAG.getConstant(CondCode2, dl, MVT::i32);
3668     // FIXME: Needs another CMP because flag can have but one use.
3669     SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
3670     Result = getCMOV(dl, VT, Result, TrueVal, ARMcc2, CCR, Cmp2, DAG);
3671   }
3672   return Result;
3673 }
3674
3675 /// canChangeToInt - Given the fp compare operand, return true if it is suitable
3676 /// to morph to an integer compare sequence.
3677 static bool canChangeToInt(SDValue Op, bool &SeenZero,
3678                            const ARMSubtarget *Subtarget) {
3679   SDNode *N = Op.getNode();
3680   if (!N->hasOneUse())
3681     // Otherwise it requires moving the value from fp to integer registers.
3682     return false;
3683   if (!N->getNumValues())
3684     return false;
3685   EVT VT = Op.getValueType();
3686   if (VT != MVT::f32 && !Subtarget->isFPBrccSlow())
3687     // f32 case is generally profitable. f64 case only makes sense when vcmpe +
3688     // vmrs are very slow, e.g. cortex-a8.
3689     return false;
3690
3691   if (isFloatingPointZero(Op)) {
3692     SeenZero = true;
3693     return true;
3694   }
3695   return ISD::isNormalLoad(N);
3696 }
3697
3698 static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) {
3699   if (isFloatingPointZero(Op))
3700     return DAG.getConstant(0, SDLoc(Op), MVT::i32);
3701
3702   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op))
3703     return DAG.getLoad(MVT::i32, SDLoc(Op),
3704                        Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(),
3705                        Ld->isVolatile(), Ld->isNonTemporal(),
3706                        Ld->isInvariant(), Ld->getAlignment());
3707
3708   llvm_unreachable("Unknown VFP cmp argument!");
3709 }
3710
3711 static void expandf64Toi32(SDValue Op, SelectionDAG &DAG,
3712                            SDValue &RetVal1, SDValue &RetVal2) {
3713   SDLoc dl(Op);
3714
3715   if (isFloatingPointZero(Op)) {
3716     RetVal1 = DAG.getConstant(0, dl, MVT::i32);
3717     RetVal2 = DAG.getConstant(0, dl, MVT::i32);
3718     return;
3719   }
3720
3721   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) {
3722     SDValue Ptr = Ld->getBasePtr();
3723     RetVal1 = DAG.getLoad(MVT::i32, dl,
3724                           Ld->getChain(), Ptr,
3725                           Ld->getPointerInfo(),
3726                           Ld->isVolatile(), Ld->isNonTemporal(),
3727                           Ld->isInvariant(), Ld->getAlignment());
3728
3729     EVT PtrType = Ptr.getValueType();
3730     unsigned NewAlign = MinAlign(Ld->getAlignment(), 4);
3731     SDValue NewPtr = DAG.getNode(ISD::ADD, dl,
3732                                  PtrType, Ptr, DAG.getConstant(4, dl, PtrType));
3733     RetVal2 = DAG.getLoad(MVT::i32, dl,
3734                           Ld->getChain(), NewPtr,
3735                           Ld->getPointerInfo().getWithOffset(4),
3736                           Ld->isVolatile(), Ld->isNonTemporal(),
3737                           Ld->isInvariant(), NewAlign);
3738     return;
3739   }
3740
3741   llvm_unreachable("Unknown VFP cmp argument!");
3742 }
3743
3744 /// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some
3745 /// f32 and even f64 comparisons to integer ones.
3746 SDValue
3747 ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
3748   SDValue Chain = Op.getOperand(0);
3749   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3750   SDValue LHS = Op.getOperand(2);
3751   SDValue RHS = Op.getOperand(3);
3752   SDValue Dest = Op.getOperand(4);
3753   SDLoc dl(Op);
3754
3755   bool LHSSeenZero = false;
3756   bool LHSOk = canChangeToInt(LHS, LHSSeenZero, Subtarget);
3757   bool RHSSeenZero = false;
3758   bool RHSOk = canChangeToInt(RHS, RHSSeenZero, Subtarget);
3759   if (LHSOk && RHSOk && (LHSSeenZero || RHSSeenZero)) {
3760     // If unsafe fp math optimization is enabled and there are no other uses of
3761     // the CMP operands, and the condition code is EQ or NE, we can optimize it
3762     // to an integer comparison.
3763     if (CC == ISD::SETOEQ)
3764       CC = ISD::SETEQ;
3765     else if (CC == ISD::SETUNE)
3766       CC = ISD::SETNE;
3767
3768     SDValue Mask = DAG.getConstant(0x7fffffff, dl, MVT::i32);
3769     SDValue ARMcc;
3770     if (LHS.getValueType() == MVT::f32) {
3771       LHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3772                         bitcastf32Toi32(LHS, DAG), Mask);
3773       RHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3774                         bitcastf32Toi32(RHS, DAG), Mask);
3775       SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3776       SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3777       return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3778                          Chain, Dest, ARMcc, CCR, Cmp);
3779     }
3780
3781     SDValue LHS1, LHS2;
3782     SDValue RHS1, RHS2;
3783     expandf64Toi32(LHS, DAG, LHS1, LHS2);
3784     expandf64Toi32(RHS, DAG, RHS1, RHS2);
3785     LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask);
3786     RHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, RHS2, Mask);
3787     ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3788     ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
3789     SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3790     SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest };
3791     return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops);
3792   }
3793
3794   return SDValue();
3795 }
3796
3797 SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3798   SDValue Chain = Op.getOperand(0);
3799   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3800   SDValue LHS = Op.getOperand(2);
3801   SDValue RHS = Op.getOperand(3);
3802   SDValue Dest = Op.getOperand(4);
3803   SDLoc dl(Op);
3804
3805   if (Subtarget->isFPOnlySP() && LHS.getValueType() == MVT::f64) {
3806     DAG.getTargetLoweringInfo().softenSetCCOperands(DAG, MVT::f64, LHS, RHS, CC,
3807                                                     dl);
3808
3809     // If softenSetCCOperands only returned one value, we should compare it to
3810     // zero.
3811     if (!RHS.getNode()) {
3812       RHS = DAG.getConstant(0, dl, LHS.getValueType());
3813       CC = ISD::SETNE;
3814     }
3815   }
3816
3817   if (LHS.getValueType() == MVT::i32) {
3818     SDValue ARMcc;
3819     SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3820     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3821     return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3822                        Chain, Dest, ARMcc, CCR, Cmp);
3823   }
3824
3825   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3826
3827   if (getTargetMachine().Options.UnsafeFPMath &&
3828       (CC == ISD::SETEQ || CC == ISD::SETOEQ ||
3829        CC == ISD::SETNE || CC == ISD::SETUNE)) {
3830     SDValue Result = OptimizeVFPBrcond(Op, DAG);
3831     if (Result.getNode())
3832       return Result;
3833   }
3834
3835   ARMCC::CondCodes CondCode, CondCode2;
3836   FPCCToARMCC(CC, CondCode, CondCode2);
3837
3838   SDValue ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
3839   SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
3840   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3841   SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3842   SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp };
3843   SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
3844   if (CondCode2 != ARMCC::AL) {
3845     ARMcc = DAG.getConstant(CondCode2, dl, MVT::i32);
3846     SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) };
3847     Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
3848   }
3849   return Res;
3850 }
3851
3852 SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
3853   SDValue Chain = Op.getOperand(0);
3854   SDValue Table = Op.getOperand(1);
3855   SDValue Index = Op.getOperand(2);
3856   SDLoc dl(Op);
3857
3858   EVT PTy = getPointerTy();
3859   JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
3860   SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
3861   Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI);
3862   Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, dl, PTy));
3863   SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3864   if (Subtarget->isThumb2()) {
3865     // Thumb2 uses a two-level jump. That is, it jumps into the jump table
3866     // which does another jump to the destination. This also makes it easier
3867     // to translate it to TBB / TBH later.
3868     // FIXME: This might not work if the function is extremely large.
3869     return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
3870                        Addr, Op.getOperand(2), JTI);
3871   }
3872   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
3873     Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
3874                        MachinePointerInfo::getJumpTable(),
3875                        false, false, false, 0);
3876     Chain = Addr.getValue(1);
3877     Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
3878     return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI);
3879   } else {
3880     Addr = DAG.getLoad(PTy, dl, Chain, Addr,
3881                        MachinePointerInfo::getJumpTable(),
3882                        false, false, false, 0);
3883     Chain = Addr.getValue(1);
3884     return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI);
3885   }
3886 }
3887
3888 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
3889   EVT VT = Op.getValueType();
3890   SDLoc dl(Op);
3891
3892   if (Op.getValueType().getVectorElementType() == MVT::i32) {
3893     if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::f32)
3894       return Op;
3895     return DAG.UnrollVectorOp(Op.getNode());
3896   }
3897
3898   assert(Op.getOperand(0).getValueType() == MVT::v4f32 &&
3899          "Invalid type for custom lowering!");
3900   if (VT != MVT::v4i16)
3901     return DAG.UnrollVectorOp(Op.getNode());
3902
3903   Op = DAG.getNode(Op.getOpcode(), dl, MVT::v4i32, Op.getOperand(0));
3904   return DAG.getNode(ISD::TRUNCATE, dl, VT, Op);
3905 }
3906
3907 SDValue ARMTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) const {
3908   EVT VT = Op.getValueType();
3909   if (VT.isVector())
3910     return LowerVectorFP_TO_INT(Op, DAG);
3911   if (Subtarget->isFPOnlySP() && Op.getOperand(0).getValueType() == MVT::f64) {
3912     RTLIB::Libcall LC;
3913     if (Op.getOpcode() == ISD::FP_TO_SINT)
3914       LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(),
3915                               Op.getValueType());
3916     else
3917       LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(),
3918                               Op.getValueType());
3919     return makeLibCall(DAG, LC, Op.getValueType(), &Op.getOperand(0), 1,
3920                        /*isSigned*/ false, SDLoc(Op)).first;
3921   }
3922
3923   return Op;
3924 }
3925
3926 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3927   EVT VT = Op.getValueType();
3928   SDLoc dl(Op);
3929
3930   if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::i32) {
3931     if (VT.getVectorElementType() == MVT::f32)
3932       return Op;
3933     return DAG.UnrollVectorOp(Op.getNode());
3934   }
3935
3936   assert(Op.getOperand(0).getValueType() == MVT::v4i16 &&
3937          "Invalid type for custom lowering!");
3938   if (VT != MVT::v4f32)
3939     return DAG.UnrollVectorOp(Op.getNode());
3940
3941   unsigned CastOpc;
3942   unsigned Opc;
3943   switch (Op.getOpcode()) {
3944   default: llvm_unreachable("Invalid opcode!");
3945   case ISD::SINT_TO_FP:
3946     CastOpc = ISD::SIGN_EXTEND;
3947     Opc = ISD::SINT_TO_FP;
3948     break;
3949   case ISD::UINT_TO_FP:
3950     CastOpc = ISD::ZERO_EXTEND;
3951     Opc = ISD::UINT_TO_FP;
3952     break;
3953   }
3954
3955   Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0));
3956   return DAG.getNode(Opc, dl, VT, Op);
3957 }
3958
3959 SDValue ARMTargetLowering::LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) const {
3960   EVT VT = Op.getValueType();
3961   if (VT.isVector())
3962     return LowerVectorINT_TO_FP(Op, DAG);
3963   if (Subtarget->isFPOnlySP() && Op.getValueType() == MVT::f64) {
3964     RTLIB::Libcall LC;
3965     if (Op.getOpcode() == ISD::SINT_TO_FP)
3966       LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(),
3967                               Op.getValueType());
3968     else
3969       LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(),
3970                               Op.getValueType());
3971     return makeLibCall(DAG, LC, Op.getValueType(), &Op.getOperand(0), 1,
3972                        /*isSigned*/ false, SDLoc(Op)).first;
3973   }
3974
3975   return Op;
3976 }
3977
3978 SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
3979   // Implement fcopysign with a fabs and a conditional fneg.
3980   SDValue Tmp0 = Op.getOperand(0);
3981   SDValue Tmp1 = Op.getOperand(1);
3982   SDLoc dl(Op);
3983   EVT VT = Op.getValueType();
3984   EVT SrcVT = Tmp1.getValueType();
3985   bool InGPR = Tmp0.getOpcode() == ISD::BITCAST ||
3986     Tmp0.getOpcode() == ARMISD::VMOVDRR;
3987   bool UseNEON = !InGPR && Subtarget->hasNEON();
3988
3989   if (UseNEON) {
3990     // Use VBSL to copy the sign bit.
3991     unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80);
3992     SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32,
3993                                DAG.getTargetConstant(EncodedVal, dl, MVT::i32));
3994     EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64;
3995     if (VT == MVT::f64)
3996       Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3997                          DAG.getNode(ISD::BITCAST, dl, OpVT, Mask),
3998                          DAG.getConstant(32, dl, MVT::i32));
3999     else /*if (VT == MVT::f32)*/
4000       Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0);
4001     if (SrcVT == MVT::f32) {
4002       Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1);
4003       if (VT == MVT::f64)
4004         Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT,
4005                            DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1),
4006                            DAG.getConstant(32, dl, MVT::i32));
4007     } else if (VT == MVT::f32)
4008       Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64,
4009                          DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1),
4010                          DAG.getConstant(32, dl, MVT::i32));
4011     Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0);
4012     Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1);
4013
4014     SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff),
4015                                             dl, MVT::i32);
4016     AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes);
4017     SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask,
4018                                   DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes));
4019
4020     SDValue Res = DAG.getNode(ISD::OR, dl, OpVT,
4021                               DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask),
4022                               DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot));
4023     if (VT == MVT::f32) {
4024       Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res);
4025       Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res,
4026                         DAG.getConstant(0, dl, MVT::i32));
4027     } else {
4028       Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res);
4029     }
4030
4031     return Res;
4032   }
4033
4034   // Bitcast operand 1 to i32.
4035   if (SrcVT == MVT::f64)
4036     Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
4037                        Tmp1).getValue(1);
4038   Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1);
4039
4040   // Or in the signbit with integer operations.
4041   SDValue Mask1 = DAG.getConstant(0x80000000, dl, MVT::i32);
4042   SDValue Mask2 = DAG.getConstant(0x7fffffff, dl, MVT::i32);
4043   Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1);
4044   if (VT == MVT::f32) {
4045     Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32,
4046                        DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2);
4047     return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
4048                        DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1));
4049   }
4050
4051   // f64: Or the high part with signbit and then combine two parts.
4052   Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
4053                      Tmp0);
4054   SDValue Lo = Tmp0.getValue(0);
4055   SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2);
4056   Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1);
4057   return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
4058 }
4059
4060 SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{
4061   MachineFunction &MF = DAG.getMachineFunction();
4062   MachineFrameInfo *MFI = MF.getFrameInfo();
4063   MFI->setReturnAddressIsTaken(true);
4064
4065   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
4066     return SDValue();
4067
4068   EVT VT = Op.getValueType();
4069   SDLoc dl(Op);
4070   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4071   if (Depth) {
4072     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
4073     SDValue Offset = DAG.getConstant(4, dl, MVT::i32);
4074     return DAG.getLoad(VT, dl, DAG.getEntryNode(),
4075                        DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
4076                        MachinePointerInfo(), false, false, false, 0);
4077   }
4078
4079   // Return LR, which contains the return address. Mark it an implicit live-in.
4080   unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32));
4081   return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
4082 }
4083
4084 SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
4085   const ARMBaseRegisterInfo &ARI =
4086     *static_cast<const ARMBaseRegisterInfo*>(RegInfo);
4087   MachineFunction &MF = DAG.getMachineFunction();
4088   MachineFrameInfo *MFI = MF.getFrameInfo();
4089   MFI->setFrameAddressIsTaken(true);
4090
4091   EVT VT = Op.getValueType();
4092   SDLoc dl(Op);  // FIXME probably not meaningful
4093   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4094   unsigned FrameReg = ARI.getFrameRegister(MF);
4095   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
4096   while (Depth--)
4097     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
4098                             MachinePointerInfo(),
4099                             false, false, false, 0);
4100   return FrameAddr;
4101 }
4102
4103 // FIXME? Maybe this could be a TableGen attribute on some registers and
4104 // this table could be generated automatically from RegInfo.
4105 unsigned ARMTargetLowering::getRegisterByName(const char* RegName,
4106                                               EVT VT) const {
4107   unsigned Reg = StringSwitch<unsigned>(RegName)
4108                        .Case("sp", ARM::SP)
4109                        .Default(0);
4110   if (Reg)
4111     return Reg;
4112   report_fatal_error(Twine("Invalid register name \""
4113                               + StringRef(RegName)  + "\"."));
4114 }
4115
4116 // Result is 64 bit value so split into two 32 bit values and return as a
4117 // pair of values.
4118 static void ExpandREAD_REGISTER(SDNode *N, SmallVectorImpl<SDValue> &Results,
4119                                 SelectionDAG &DAG) {
4120   SDLoc DL(N);
4121
4122   // This function is only supposed to be called for i64 type destination.
4123   assert(N->getValueType(0) == MVT::i64
4124           && "ExpandREAD_REGISTER called for non-i64 type result.");
4125
4126   SDValue Read = DAG.getNode(ISD::READ_REGISTER, DL,
4127                              DAG.getVTList(MVT::i32, MVT::i32, MVT::Other),
4128                              N->getOperand(0),
4129                              N->getOperand(1));
4130
4131   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Read.getValue(0),
4132                     Read.getValue(1)));
4133   Results.push_back(Read.getOperand(0));
4134 }
4135
4136 /// ExpandBITCAST - If the target supports VFP, this function is called to
4137 /// expand a bit convert where either the source or destination type is i64 to
4138 /// use a VMOVDRR or VMOVRRD node.  This should not be done when the non-i64
4139 /// operand type is illegal (e.g., v2f32 for a target that doesn't support
4140 /// vectors), since the legalizer won't know what to do with that.
4141 static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) {
4142   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4143   SDLoc dl(N);
4144   SDValue Op = N->getOperand(0);
4145
4146   // This function is only supposed to be called for i64 types, either as the
4147   // source or destination of the bit convert.
4148   EVT SrcVT = Op.getValueType();
4149   EVT DstVT = N->getValueType(0);
4150   assert((SrcVT == MVT::i64 || DstVT == MVT::i64) &&
4151          "ExpandBITCAST called for non-i64 type");
4152
4153   // Turn i64->f64 into VMOVDRR.
4154   if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) {
4155     SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
4156                              DAG.getConstant(0, dl, MVT::i32));
4157     SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
4158                              DAG.getConstant(1, dl, MVT::i32));
4159     return DAG.getNode(ISD::BITCAST, dl, DstVT,
4160                        DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi));
4161   }
4162
4163   // Turn f64->i64 into VMOVRRD.
4164   if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) {
4165     SDValue Cvt;
4166     if (TLI.isBigEndian() && SrcVT.isVector() &&
4167         SrcVT.getVectorNumElements() > 1)
4168       Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
4169                         DAG.getVTList(MVT::i32, MVT::i32),
4170                         DAG.getNode(ARMISD::VREV64, dl, SrcVT, Op));
4171     else
4172       Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
4173                         DAG.getVTList(MVT::i32, MVT::i32), Op);
4174     // Merge the pieces into a single i64 value.
4175     return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
4176   }
4177
4178   return SDValue();
4179 }
4180
4181 /// getZeroVector - Returns a vector of specified type with all zero elements.
4182 /// Zero vectors are used to represent vector negation and in those cases
4183 /// will be implemented with the NEON VNEG instruction.  However, VNEG does
4184 /// not support i64 elements, so sometimes the zero vectors will need to be
4185 /// explicitly constructed.  Regardless, use a canonical VMOV to create the
4186 /// zero vector.
4187 static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, SDLoc dl) {
4188   assert(VT.isVector() && "Expected a vector type");
4189   // The canonical modified immediate encoding of a zero vector is....0!
4190   SDValue EncodedVal = DAG.getTargetConstant(0, dl, MVT::i32);
4191   EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
4192   SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal);
4193   return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
4194 }
4195
4196 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
4197 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
4198 SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op,
4199                                                 SelectionDAG &DAG) const {
4200   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4201   EVT VT = Op.getValueType();
4202   unsigned VTBits = VT.getSizeInBits();
4203   SDLoc dl(Op);
4204   SDValue ShOpLo = Op.getOperand(0);
4205   SDValue ShOpHi = Op.getOperand(1);
4206   SDValue ShAmt  = Op.getOperand(2);
4207   SDValue ARMcc;
4208   unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
4209
4210   assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
4211
4212   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
4213                                  DAG.getConstant(VTBits, dl, MVT::i32), ShAmt);
4214   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
4215   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
4216                                    DAG.getConstant(VTBits, dl, MVT::i32));
4217   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
4218   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4219   SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
4220
4221   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
4222   SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, dl, MVT::i32),
4223                           ISD::SETGE, ARMcc, DAG, dl);
4224   SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
4225   SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc,
4226                            CCR, Cmp);
4227
4228   SDValue Ops[2] = { Lo, Hi };
4229   return DAG.getMergeValues(Ops, dl);
4230 }
4231
4232 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
4233 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
4234 SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op,
4235                                                SelectionDAG &DAG) const {
4236   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4237   EVT VT = Op.getValueType();
4238   unsigned VTBits = VT.getSizeInBits();
4239   SDLoc dl(Op);
4240   SDValue ShOpLo = Op.getOperand(0);
4241   SDValue ShOpHi = Op.getOperand(1);
4242   SDValue ShAmt  = Op.getOperand(2);
4243   SDValue ARMcc;
4244
4245   assert(Op.getOpcode() == ISD::SHL_PARTS);
4246   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
4247                                  DAG.getConstant(VTBits, dl, MVT::i32), ShAmt);
4248   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
4249   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
4250                                    DAG.getConstant(VTBits, dl, MVT::i32));
4251   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
4252   SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
4253
4254   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4255   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
4256   SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, dl, MVT::i32),
4257                           ISD::SETGE, ARMcc, DAG, dl);
4258   SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
4259   SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc,
4260                            CCR, Cmp);
4261
4262   SDValue Ops[2] = { Lo, Hi };
4263   return DAG.getMergeValues(Ops, dl);
4264 }
4265
4266 SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
4267                                             SelectionDAG &DAG) const {
4268   // The rounding mode is in bits 23:22 of the FPSCR.
4269   // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0
4270   // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3)
4271   // so that the shift + and get folded into a bitfield extract.
4272   SDLoc dl(Op);
4273   SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32,
4274                               DAG.getConstant(Intrinsic::arm_get_fpscr, dl,
4275                                               MVT::i32));
4276   SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR,
4277                                   DAG.getConstant(1U << 22, dl, MVT::i32));
4278   SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds,
4279                               DAG.getConstant(22, dl, MVT::i32));
4280   return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE,
4281                      DAG.getConstant(3, dl, MVT::i32));
4282 }
4283
4284 static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG,
4285                          const ARMSubtarget *ST) {
4286   EVT VT = N->getValueType(0);
4287   SDLoc dl(N);
4288
4289   if (!ST->hasV6T2Ops())
4290     return SDValue();
4291
4292   SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0));
4293   return DAG.getNode(ISD::CTLZ, dl, VT, rbit);
4294 }
4295
4296 /// getCTPOP16BitCounts - Returns a v8i8/v16i8 vector containing the bit-count
4297 /// for each 16-bit element from operand, repeated.  The basic idea is to
4298 /// leverage vcnt to get the 8-bit counts, gather and add the results.
4299 ///
4300 /// Trace for v4i16:
4301 /// input    = [v0    v1    v2    v3   ] (vi 16-bit element)
4302 /// cast: N0 = [w0 w1 w2 w3 w4 w5 w6 w7] (v0 = [w0 w1], wi 8-bit element)
4303 /// vcnt: N1 = [b0 b1 b2 b3 b4 b5 b6 b7] (bi = bit-count of 8-bit element wi)
4304 /// vrev: N2 = [b1 b0 b3 b2 b5 b4 b7 b6]
4305 ///            [b0 b1 b2 b3 b4 b5 b6 b7]
4306 ///           +[b1 b0 b3 b2 b5 b4 b7 b6]
4307 /// N3=N1+N2 = [k0 k0 k1 k1 k2 k2 k3 k3] (k0 = b0+b1 = bit-count of 16-bit v0,
4308 /// vuzp:    = [k0 k1 k2 k3 k0 k1 k2 k3]  each ki is 8-bits)
4309 static SDValue getCTPOP16BitCounts(SDNode *N, SelectionDAG &DAG) {
4310   EVT VT = N->getValueType(0);
4311   SDLoc DL(N);
4312
4313   EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8;
4314   SDValue N0 = DAG.getNode(ISD::BITCAST, DL, VT8Bit, N->getOperand(0));
4315   SDValue N1 = DAG.getNode(ISD::CTPOP, DL, VT8Bit, N0);
4316   SDValue N2 = DAG.getNode(ARMISD::VREV16, DL, VT8Bit, N1);
4317   SDValue N3 = DAG.getNode(ISD::ADD, DL, VT8Bit, N1, N2);
4318   return DAG.getNode(ARMISD::VUZP, DL, VT8Bit, N3, N3);
4319 }
4320
4321 /// lowerCTPOP16BitElements - Returns a v4i16/v8i16 vector containing the
4322 /// bit-count for each 16-bit element from the operand.  We need slightly
4323 /// different sequencing for v4i16 and v8i16 to stay within NEON's available
4324 /// 64/128-bit registers.
4325 ///
4326 /// Trace for v4i16:
4327 /// input           = [v0    v1    v2    v3    ] (vi 16-bit element)
4328 /// v8i8: BitCounts = [k0 k1 k2 k3 k0 k1 k2 k3 ] (ki is the bit-count of vi)
4329 /// v8i16:Extended  = [k0    k1    k2    k3    k0    k1    k2    k3    ]
4330 /// v4i16:Extracted = [k0    k1    k2    k3    ]
4331 static SDValue lowerCTPOP16BitElements(SDNode *N, SelectionDAG &DAG) {
4332   EVT VT = N->getValueType(0);
4333   SDLoc DL(N);
4334
4335   SDValue BitCounts = getCTPOP16BitCounts(N, DAG);
4336   if (VT.is64BitVector()) {
4337     SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, BitCounts);
4338     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, Extended,
4339                        DAG.getIntPtrConstant(0, DL));
4340   } else {
4341     SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v8i8,
4342                                     BitCounts, DAG.getIntPtrConstant(0, DL));
4343     return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, Extracted);
4344   }
4345 }
4346
4347 /// lowerCTPOP32BitElements - Returns a v2i32/v4i32 vector containing the
4348 /// bit-count for each 32-bit element from the operand.  The idea here is
4349 /// to split the vector into 16-bit elements, leverage the 16-bit count
4350 /// routine, and then combine the results.
4351 ///
4352 /// Trace for v2i32 (v4i32 similar with Extracted/Extended exchanged):
4353 /// input    = [v0    v1    ] (vi: 32-bit elements)
4354 /// Bitcast  = [w0 w1 w2 w3 ] (wi: 16-bit elements, v0 = [w0 w1])
4355 /// Counts16 = [k0 k1 k2 k3 ] (ki: 16-bit elements, bit-count of wi)
4356 /// vrev: N0 = [k1 k0 k3 k2 ]
4357 ///            [k0 k1 k2 k3 ]
4358 ///       N1 =+[k1 k0 k3 k2 ]
4359 ///            [k0 k2 k1 k3 ]
4360 ///       N2 =+[k1 k3 k0 k2 ]
4361 ///            [k0    k2    k1    k3    ]
4362 /// Extended =+[k1    k3    k0    k2    ]
4363 ///            [k0    k2    ]
4364 /// Extracted=+[k1    k3    ]
4365 ///
4366 static SDValue lowerCTPOP32BitElements(SDNode *N, SelectionDAG &DAG) {
4367   EVT VT = N->getValueType(0);
4368   SDLoc DL(N);
4369
4370   EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16;
4371
4372   SDValue Bitcast = DAG.getNode(ISD::BITCAST, DL, VT16Bit, N->getOperand(0));
4373   SDValue Counts16 = lowerCTPOP16BitElements(Bitcast.getNode(), DAG);
4374   SDValue N0 = DAG.getNode(ARMISD::VREV32, DL, VT16Bit, Counts16);
4375   SDValue N1 = DAG.getNode(ISD::ADD, DL, VT16Bit, Counts16, N0);
4376   SDValue N2 = DAG.getNode(ARMISD::VUZP, DL, VT16Bit, N1, N1);
4377
4378   if (VT.is64BitVector()) {
4379     SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, N2);
4380     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i32, Extended,
4381                        DAG.getIntPtrConstant(0, DL));
4382   } else {
4383     SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, N2,
4384                                     DAG.getIntPtrConstant(0, DL));
4385     return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, Extracted);
4386   }
4387 }
4388
4389 static SDValue LowerCTPOP(SDNode *N, SelectionDAG &DAG,
4390                           const ARMSubtarget *ST) {
4391   EVT VT = N->getValueType(0);
4392
4393   assert(ST->hasNEON() && "Custom ctpop lowering requires NEON.");
4394   assert((VT == MVT::v2i32 || VT == MVT::v4i32 ||
4395           VT == MVT::v4i16 || VT == MVT::v8i16) &&
4396          "Unexpected type for custom ctpop lowering");
4397
4398   if (VT.getVectorElementType() == MVT::i32)
4399     return lowerCTPOP32BitElements(N, DAG);
4400   else
4401     return lowerCTPOP16BitElements(N, DAG);
4402 }
4403
4404 static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
4405                           const ARMSubtarget *ST) {
4406   EVT VT = N->getValueType(0);
4407   SDLoc dl(N);
4408
4409   if (!VT.isVector())
4410     return SDValue();
4411
4412   // Lower vector shifts on NEON to use VSHL.
4413   assert(ST->hasNEON() && "unexpected vector shift");
4414
4415   // Left shifts translate directly to the vshiftu intrinsic.
4416   if (N->getOpcode() == ISD::SHL)
4417     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4418                        DAG.getConstant(Intrinsic::arm_neon_vshiftu, dl,
4419                                        MVT::i32),
4420                        N->getOperand(0), N->getOperand(1));
4421
4422   assert((N->getOpcode() == ISD::SRA ||
4423           N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
4424
4425   // NEON uses the same intrinsics for both left and right shifts.  For
4426   // right shifts, the shift amounts are negative, so negate the vector of
4427   // shift amounts.
4428   EVT ShiftVT = N->getOperand(1).getValueType();
4429   SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
4430                                      getZeroVector(ShiftVT, DAG, dl),
4431                                      N->getOperand(1));
4432   Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
4433                              Intrinsic::arm_neon_vshifts :
4434                              Intrinsic::arm_neon_vshiftu);
4435   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4436                      DAG.getConstant(vshiftInt, dl, MVT::i32),
4437                      N->getOperand(0), NegatedCount);
4438 }
4439
4440 static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG,
4441                                 const ARMSubtarget *ST) {
4442   EVT VT = N->getValueType(0);
4443   SDLoc dl(N);
4444
4445   // We can get here for a node like i32 = ISD::SHL i32, i64
4446   if (VT != MVT::i64)
4447     return SDValue();
4448
4449   assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
4450          "Unknown shift to lower!");
4451
4452   // We only lower SRA, SRL of 1 here, all others use generic lowering.
4453   if (!isa<ConstantSDNode>(N->getOperand(1)) ||
4454       cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1)
4455     return SDValue();
4456
4457   // If we are in thumb mode, we don't have RRX.
4458   if (ST->isThumb1Only()) return SDValue();
4459
4460   // Okay, we have a 64-bit SRA or SRL of 1.  Lower this to an RRX expr.
4461   SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
4462                            DAG.getConstant(0, dl, MVT::i32));
4463   SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
4464                            DAG.getConstant(1, dl, MVT::i32));
4465
4466   // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
4467   // captures the result into a carry flag.
4468   unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
4469   Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), Hi);
4470
4471   // The low part is an ARMISD::RRX operand, which shifts the carry in.
4472   Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
4473
4474   // Merge the pieces into a single i64 value.
4475  return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
4476 }
4477
4478 static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
4479   SDValue TmpOp0, TmpOp1;
4480   bool Invert = false;
4481   bool Swap = false;
4482   unsigned Opc = 0;
4483
4484   SDValue Op0 = Op.getOperand(0);
4485   SDValue Op1 = Op.getOperand(1);
4486   SDValue CC = Op.getOperand(2);
4487   EVT CmpVT = Op0.getValueType().changeVectorElementTypeToInteger();
4488   EVT VT = Op.getValueType();
4489   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
4490   SDLoc dl(Op);
4491
4492   if (Op1.getValueType().isFloatingPoint()) {
4493     switch (SetCCOpcode) {
4494     default: llvm_unreachable("Illegal FP comparison");
4495     case ISD::SETUNE:
4496     case ISD::SETNE:  Invert = true; // Fallthrough
4497     case ISD::SETOEQ:
4498     case ISD::SETEQ:  Opc = ARMISD::VCEQ; break;
4499     case ISD::SETOLT:
4500     case ISD::SETLT: Swap = true; // Fallthrough
4501     case ISD::SETOGT:
4502     case ISD::SETGT:  Opc = ARMISD::VCGT; break;
4503     case ISD::SETOLE:
4504     case ISD::SETLE:  Swap = true; // Fallthrough
4505     case ISD::SETOGE:
4506     case ISD::SETGE: Opc = ARMISD::VCGE; break;
4507     case ISD::SETUGE: Swap = true; // Fallthrough
4508     case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
4509     case ISD::SETUGT: Swap = true; // Fallthrough
4510     case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
4511     case ISD::SETUEQ: Invert = true; // Fallthrough
4512     case ISD::SETONE:
4513       // Expand this to (OLT | OGT).
4514       TmpOp0 = Op0;
4515       TmpOp1 = Op1;
4516       Opc = ISD::OR;
4517       Op0 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp1, TmpOp0);
4518       Op1 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp0, TmpOp1);
4519       break;
4520     case ISD::SETUO: Invert = true; // Fallthrough
4521     case ISD::SETO:
4522       // Expand this to (OLT | OGE).
4523       TmpOp0 = Op0;
4524       TmpOp1 = Op1;
4525       Opc = ISD::OR;
4526       Op0 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp1, TmpOp0);
4527       Op1 = DAG.getNode(ARMISD::VCGE, dl, CmpVT, TmpOp0, TmpOp1);
4528       break;
4529     }
4530   } else {
4531     // Integer comparisons.
4532     switch (SetCCOpcode) {
4533     default: llvm_unreachable("Illegal integer comparison");
4534     case ISD::SETNE:  Invert = true;
4535     case ISD::SETEQ:  Opc = ARMISD::VCEQ; break;
4536     case ISD::SETLT:  Swap = true;
4537     case ISD::SETGT:  Opc = ARMISD::VCGT; break;
4538     case ISD::SETLE:  Swap = true;
4539     case ISD::SETGE:  Opc = ARMISD::VCGE; break;
4540     case ISD::SETULT: Swap = true;
4541     case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
4542     case ISD::SETULE: Swap = true;
4543     case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
4544     }
4545
4546     // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
4547     if (Opc == ARMISD::VCEQ) {
4548
4549       SDValue AndOp;
4550       if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4551         AndOp = Op0;
4552       else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
4553         AndOp = Op1;
4554
4555       // Ignore bitconvert.
4556       if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST)
4557         AndOp = AndOp.getOperand(0);
4558
4559       if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
4560         Opc = ARMISD::VTST;
4561         Op0 = DAG.getNode(ISD::BITCAST, dl, CmpVT, AndOp.getOperand(0));
4562         Op1 = DAG.getNode(ISD::BITCAST, dl, CmpVT, AndOp.getOperand(1));
4563         Invert = !Invert;
4564       }
4565     }
4566   }
4567
4568   if (Swap)
4569     std::swap(Op0, Op1);
4570
4571   // If one of the operands is a constant vector zero, attempt to fold the
4572   // comparison to a specialized compare-against-zero form.
4573   SDValue SingleOp;
4574   if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4575     SingleOp = Op0;
4576   else if (ISD::isBuildVectorAllZeros(Op0.getNode())) {
4577     if (Opc == ARMISD::VCGE)
4578       Opc = ARMISD::VCLEZ;
4579     else if (Opc == ARMISD::VCGT)
4580       Opc = ARMISD::VCLTZ;
4581     SingleOp = Op1;
4582   }
4583
4584   SDValue Result;
4585   if (SingleOp.getNode()) {
4586     switch (Opc) {
4587     case ARMISD::VCEQ:
4588       Result = DAG.getNode(ARMISD::VCEQZ, dl, CmpVT, SingleOp); break;
4589     case ARMISD::VCGE:
4590       Result = DAG.getNode(ARMISD::VCGEZ, dl, CmpVT, SingleOp); break;
4591     case ARMISD::VCLEZ:
4592       Result = DAG.getNode(ARMISD::VCLEZ, dl, CmpVT, SingleOp); break;
4593     case ARMISD::VCGT:
4594       Result = DAG.getNode(ARMISD::VCGTZ, dl, CmpVT, SingleOp); break;
4595     case ARMISD::VCLTZ:
4596       Result = DAG.getNode(ARMISD::VCLTZ, dl, CmpVT, SingleOp); break;
4597     default:
4598       Result = DAG.getNode(Opc, dl, CmpVT, Op0, Op1);
4599     }
4600   } else {
4601      Result = DAG.getNode(Opc, dl, CmpVT, Op0, Op1);
4602   }
4603
4604   Result = DAG.getSExtOrTrunc(Result, dl, VT);
4605
4606   if (Invert)
4607     Result = DAG.getNOT(dl, Result, VT);
4608
4609   return Result;
4610 }
4611
4612 /// isNEONModifiedImm - Check if the specified splat value corresponds to a
4613 /// valid vector constant for a NEON instruction with a "modified immediate"
4614 /// operand (e.g., VMOV).  If so, return the encoded value.
4615 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
4616                                  unsigned SplatBitSize, SelectionDAG &DAG,
4617                                  SDLoc dl, EVT &VT, bool is128Bits,
4618                                  NEONModImmType type) {
4619   unsigned OpCmode, Imm;
4620
4621   // SplatBitSize is set to the smallest size that splats the vector, so a
4622   // zero vector will always have SplatBitSize == 8.  However, NEON modified
4623   // immediate instructions others than VMOV do not support the 8-bit encoding
4624   // of a zero vector, and the default encoding of zero is supposed to be the
4625   // 32-bit version.
4626   if (SplatBits == 0)
4627     SplatBitSize = 32;
4628
4629   switch (SplatBitSize) {
4630   case 8:
4631     if (type != VMOVModImm)
4632       return SDValue();
4633     // Any 1-byte value is OK.  Op=0, Cmode=1110.
4634     assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
4635     OpCmode = 0xe;
4636     Imm = SplatBits;
4637     VT = is128Bits ? MVT::v16i8 : MVT::v8i8;
4638     break;
4639
4640   case 16:
4641     // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
4642     VT = is128Bits ? MVT::v8i16 : MVT::v4i16;
4643     if ((SplatBits & ~0xff) == 0) {
4644       // Value = 0x00nn: Op=x, Cmode=100x.
4645       OpCmode = 0x8;
4646       Imm = SplatBits;
4647       break;
4648     }
4649     if ((SplatBits & ~0xff00) == 0) {
4650       // Value = 0xnn00: Op=x, Cmode=101x.
4651       OpCmode = 0xa;
4652       Imm = SplatBits >> 8;
4653       break;
4654     }
4655     return SDValue();
4656
4657   case 32:
4658     // NEON's 32-bit VMOV supports splat values where:
4659     // * only one byte is nonzero, or
4660     // * the least significant byte is 0xff and the second byte is nonzero, or
4661     // * the least significant 2 bytes are 0xff and the third is nonzero.
4662     VT = is128Bits ? MVT::v4i32 : MVT::v2i32;
4663     if ((SplatBits & ~0xff) == 0) {
4664       // Value = 0x000000nn: Op=x, Cmode=000x.
4665       OpCmode = 0;
4666       Imm = SplatBits;
4667       break;
4668     }
4669     if ((SplatBits & ~0xff00) == 0) {
4670       // Value = 0x0000nn00: Op=x, Cmode=001x.
4671       OpCmode = 0x2;
4672       Imm = SplatBits >> 8;
4673       break;
4674     }
4675     if ((SplatBits & ~0xff0000) == 0) {
4676       // Value = 0x00nn0000: Op=x, Cmode=010x.
4677       OpCmode = 0x4;
4678       Imm = SplatBits >> 16;
4679       break;
4680     }
4681     if ((SplatBits & ~0xff000000) == 0) {
4682       // Value = 0xnn000000: Op=x, Cmode=011x.
4683       OpCmode = 0x6;
4684       Imm = SplatBits >> 24;
4685       break;
4686     }
4687
4688     // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC
4689     if (type == OtherModImm) return SDValue();
4690
4691     if ((SplatBits & ~0xffff) == 0 &&
4692         ((SplatBits | SplatUndef) & 0xff) == 0xff) {
4693       // Value = 0x0000nnff: Op=x, Cmode=1100.
4694       OpCmode = 0xc;
4695       Imm = SplatBits >> 8;
4696       break;
4697     }
4698
4699     if ((SplatBits & ~0xffffff) == 0 &&
4700         ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
4701       // Value = 0x00nnffff: Op=x, Cmode=1101.
4702       OpCmode = 0xd;
4703       Imm = SplatBits >> 16;
4704       break;
4705     }
4706
4707     // Note: there are a few 32-bit splat values (specifically: 00ffff00,
4708     // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
4709     // VMOV.I32.  A (very) minor optimization would be to replicate the value
4710     // and fall through here to test for a valid 64-bit splat.  But, then the
4711     // caller would also need to check and handle the change in size.
4712     return SDValue();
4713
4714   case 64: {
4715     if (type != VMOVModImm)
4716       return SDValue();
4717     // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
4718     uint64_t BitMask = 0xff;
4719     uint64_t Val = 0;
4720     unsigned ImmMask = 1;
4721     Imm = 0;
4722     for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
4723       if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
4724         Val |= BitMask;
4725         Imm |= ImmMask;
4726       } else if ((SplatBits & BitMask) != 0) {
4727         return SDValue();
4728       }
4729       BitMask <<= 8;
4730       ImmMask <<= 1;
4731     }
4732
4733     if (DAG.getTargetLoweringInfo().isBigEndian())
4734       // swap higher and lower 32 bit word
4735       Imm = ((Imm & 0xf) << 4) | ((Imm & 0xf0) >> 4);
4736
4737     // Op=1, Cmode=1110.
4738     OpCmode = 0x1e;
4739     VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
4740     break;
4741   }
4742
4743   default:
4744     llvm_unreachable("unexpected size for isNEONModifiedImm");
4745   }
4746
4747   unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm);
4748   return DAG.getTargetConstant(EncodedVal, dl, MVT::i32);
4749 }
4750
4751 SDValue ARMTargetLowering::LowerConstantFP(SDValue Op, SelectionDAG &DAG,
4752                                            const ARMSubtarget *ST) const {
4753   if (!ST->hasVFP3())
4754     return SDValue();
4755
4756   bool IsDouble = Op.getValueType() == MVT::f64;
4757   ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Op);
4758
4759   // Use the default (constant pool) lowering for double constants when we have
4760   // an SP-only FPU
4761   if (IsDouble && Subtarget->isFPOnlySP())
4762     return SDValue();
4763
4764   // Try splatting with a VMOV.f32...
4765   APFloat FPVal = CFP->getValueAPF();
4766   int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal);
4767
4768   if (ImmVal != -1) {
4769     if (IsDouble || !ST->useNEONForSinglePrecisionFP()) {
4770       // We have code in place to select a valid ConstantFP already, no need to
4771       // do any mangling.
4772       return Op;
4773     }
4774
4775     // It's a float and we are trying to use NEON operations where
4776     // possible. Lower it to a splat followed by an extract.
4777     SDLoc DL(Op);
4778     SDValue NewVal = DAG.getTargetConstant(ImmVal, DL, MVT::i32);
4779     SDValue VecConstant = DAG.getNode(ARMISD::VMOVFPIMM, DL, MVT::v2f32,
4780                                       NewVal);
4781     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecConstant,
4782                        DAG.getConstant(0, DL, MVT::i32));
4783   }
4784
4785   // The rest of our options are NEON only, make sure that's allowed before
4786   // proceeding..
4787   if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP()))
4788     return SDValue();
4789
4790   EVT VMovVT;
4791   uint64_t iVal = FPVal.bitcastToAPInt().getZExtValue();
4792
4793   // It wouldn't really be worth bothering for doubles except for one very
4794   // important value, which does happen to match: 0.0. So make sure we don't do
4795   // anything stupid.
4796   if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32))
4797     return SDValue();
4798
4799   // Try a VMOV.i32 (FIXME: i8, i16, or i64 could work too).
4800   SDValue NewVal = isNEONModifiedImm(iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op),
4801                                      VMovVT, false, VMOVModImm);
4802   if (NewVal != SDValue()) {
4803     SDLoc DL(Op);
4804     SDValue VecConstant = DAG.getNode(ARMISD::VMOVIMM, DL, VMovVT,
4805                                       NewVal);
4806     if (IsDouble)
4807       return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4808
4809     // It's a float: cast and extract a vector element.
4810     SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4811                                        VecConstant);
4812     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4813                        DAG.getConstant(0, DL, MVT::i32));
4814   }
4815
4816   // Finally, try a VMVN.i32
4817   NewVal = isNEONModifiedImm(~iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op), VMovVT,
4818                              false, VMVNModImm);
4819   if (NewVal != SDValue()) {
4820     SDLoc DL(Op);
4821     SDValue VecConstant = DAG.getNode(ARMISD::VMVNIMM, DL, VMovVT, NewVal);
4822
4823     if (IsDouble)
4824       return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4825
4826     // It's a float: cast and extract a vector element.
4827     SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4828                                        VecConstant);
4829     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4830                        DAG.getConstant(0, DL, MVT::i32));
4831   }
4832
4833   return SDValue();
4834 }
4835
4836 // check if an VEXT instruction can handle the shuffle mask when the
4837 // vector sources of the shuffle are the same.
4838 static bool isSingletonVEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
4839   unsigned NumElts = VT.getVectorNumElements();
4840
4841   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
4842   if (M[0] < 0)
4843     return false;
4844
4845   Imm = M[0];
4846
4847   // If this is a VEXT shuffle, the immediate value is the index of the first
4848   // element.  The other shuffle indices must be the successive elements after
4849   // the first one.
4850   unsigned ExpectedElt = Imm;
4851   for (unsigned i = 1; i < NumElts; ++i) {
4852     // Increment the expected index.  If it wraps around, just follow it
4853     // back to index zero and keep going.
4854     ++ExpectedElt;
4855     if (ExpectedElt == NumElts)
4856       ExpectedElt = 0;
4857
4858     if (M[i] < 0) continue; // ignore UNDEF indices
4859     if (ExpectedElt != static_cast<unsigned>(M[i]))
4860       return false;
4861   }
4862
4863   return true;
4864 }
4865
4866
4867 static bool isVEXTMask(ArrayRef<int> M, EVT VT,
4868                        bool &ReverseVEXT, unsigned &Imm) {
4869   unsigned NumElts = VT.getVectorNumElements();
4870   ReverseVEXT = false;
4871
4872   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
4873   if (M[0] < 0)
4874     return false;
4875
4876   Imm = M[0];
4877
4878   // If this is a VEXT shuffle, the immediate value is the index of the first
4879   // element.  The other shuffle indices must be the successive elements after
4880   // the first one.
4881   unsigned ExpectedElt = Imm;
4882   for (unsigned i = 1; i < NumElts; ++i) {
4883     // Increment the expected index.  If it wraps around, it may still be
4884     // a VEXT but the source vectors must be swapped.
4885     ExpectedElt += 1;
4886     if (ExpectedElt == NumElts * 2) {
4887       ExpectedElt = 0;
4888       ReverseVEXT = true;
4889     }
4890
4891     if (M[i] < 0) continue; // ignore UNDEF indices
4892     if (ExpectedElt != static_cast<unsigned>(M[i]))
4893       return false;
4894   }
4895
4896   // Adjust the index value if the source operands will be swapped.
4897   if (ReverseVEXT)
4898     Imm -= NumElts;
4899
4900   return true;
4901 }
4902
4903 /// isVREVMask - Check if a vector shuffle corresponds to a VREV
4904 /// instruction with the specified blocksize.  (The order of the elements
4905 /// within each block of the vector is reversed.)
4906 static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
4907   assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
4908          "Only possible block sizes for VREV are: 16, 32, 64");
4909
4910   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4911   if (EltSz == 64)
4912     return false;
4913
4914   unsigned NumElts = VT.getVectorNumElements();
4915   unsigned BlockElts = M[0] + 1;
4916   // If the first shuffle index is UNDEF, be optimistic.
4917   if (M[0] < 0)
4918     BlockElts = BlockSize / EltSz;
4919
4920   if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
4921     return false;
4922
4923   for (unsigned i = 0; i < NumElts; ++i) {
4924     if (M[i] < 0) continue; // ignore UNDEF indices
4925     if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
4926       return false;
4927   }
4928
4929   return true;
4930 }
4931
4932 static bool isVTBLMask(ArrayRef<int> M, EVT VT) {
4933   // We can handle <8 x i8> vector shuffles. If the index in the mask is out of
4934   // range, then 0 is placed into the resulting vector. So pretty much any mask
4935   // of 8 elements can work here.
4936   return VT == MVT::v8i8 && M.size() == 8;
4937 }
4938
4939 static bool isVTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4940   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4941   if (EltSz == 64)
4942     return false;
4943
4944   unsigned NumElts = VT.getVectorNumElements();
4945   WhichResult = (M[0] == 0 ? 0 : 1);
4946   for (unsigned i = 0; i < NumElts; i += 2) {
4947     if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
4948         (M[i+1] >= 0 && (unsigned) M[i+1] != i + NumElts + WhichResult))
4949       return false;
4950   }
4951   return true;
4952 }
4953
4954 /// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
4955 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4956 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
4957 static bool isVTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
4958   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4959   if (EltSz == 64)
4960     return false;
4961
4962   unsigned NumElts = VT.getVectorNumElements();
4963   WhichResult = (M[0] == 0 ? 0 : 1);
4964   for (unsigned i = 0; i < NumElts; i += 2) {
4965     if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
4966         (M[i+1] >= 0 && (unsigned) M[i+1] != i + WhichResult))
4967       return false;
4968   }
4969   return true;
4970 }
4971
4972 static bool isVUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4973   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4974   if (EltSz == 64)
4975     return false;
4976
4977   unsigned NumElts = VT.getVectorNumElements();
4978   WhichResult = (M[0] == 0 ? 0 : 1);
4979   for (unsigned i = 0; i != NumElts; ++i) {
4980     if (M[i] < 0) continue; // ignore UNDEF indices
4981     if ((unsigned) M[i] != 2 * i + WhichResult)
4982       return false;
4983   }
4984
4985   // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4986   if (VT.is64BitVector() && EltSz == 32)
4987     return false;
4988
4989   return true;
4990 }
4991
4992 /// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
4993 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4994 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
4995 static bool isVUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
4996   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4997   if (EltSz == 64)
4998     return false;
4999
5000   unsigned Half = VT.getVectorNumElements() / 2;
5001   WhichResult = (M[0] == 0 ? 0 : 1);
5002   for (unsigned j = 0; j != 2; ++j) {
5003     unsigned Idx = WhichResult;
5004     for (unsigned i = 0; i != Half; ++i) {
5005       int MIdx = M[i + j * Half];
5006       if (MIdx >= 0 && (unsigned) MIdx != Idx)
5007         return false;
5008       Idx += 2;
5009     }
5010   }
5011
5012   // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5013   if (VT.is64BitVector() && EltSz == 32)
5014     return false;
5015
5016   return true;
5017 }
5018
5019 static bool isVZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5020   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5021   if (EltSz == 64)
5022     return false;
5023
5024   unsigned NumElts = VT.getVectorNumElements();
5025   WhichResult = (M[0] == 0 ? 0 : 1);
5026   unsigned Idx = WhichResult * NumElts / 2;
5027   for (unsigned i = 0; i != NumElts; i += 2) {
5028     if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
5029         (M[i+1] >= 0 && (unsigned) M[i+1] != Idx + NumElts))
5030       return false;
5031     Idx += 1;
5032   }
5033
5034   // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5035   if (VT.is64BitVector() && EltSz == 32)
5036     return false;
5037
5038   return true;
5039 }
5040
5041 /// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
5042 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5043 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
5044 static bool isVZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
5045   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5046   if (EltSz == 64)
5047     return false;
5048
5049   unsigned NumElts = VT.getVectorNumElements();
5050   WhichResult = (M[0] == 0 ? 0 : 1);
5051   unsigned Idx = WhichResult * NumElts / 2;
5052   for (unsigned i = 0; i != NumElts; i += 2) {
5053     if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
5054         (M[i+1] >= 0 && (unsigned) M[i+1] != Idx))
5055       return false;
5056     Idx += 1;
5057   }
5058
5059   // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5060   if (VT.is64BitVector() && EltSz == 32)
5061     return false;
5062
5063   return true;
5064 }
5065
5066 /// Check if \p ShuffleMask is a NEON two-result shuffle (VZIP, VUZP, VTRN),
5067 /// and return the corresponding ARMISD opcode if it is, or 0 if it isn't.
5068 static unsigned isNEONTwoResultShuffleMask(ArrayRef<int> ShuffleMask, EVT VT,
5069                                            unsigned &WhichResult,
5070                                            bool &isV_UNDEF) {
5071   isV_UNDEF = false;
5072   if (isVTRNMask(ShuffleMask, VT, WhichResult))
5073     return ARMISD::VTRN;
5074   if (isVUZPMask(ShuffleMask, VT, WhichResult))
5075     return ARMISD::VUZP;
5076   if (isVZIPMask(ShuffleMask, VT, WhichResult))
5077     return ARMISD::VZIP;
5078
5079   isV_UNDEF = true;
5080   if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
5081     return ARMISD::VTRN;
5082   if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5083     return ARMISD::VUZP;
5084   if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5085     return ARMISD::VZIP;
5086
5087   return 0;
5088 }
5089
5090 /// \return true if this is a reverse operation on an vector.
5091 static bool isReverseMask(ArrayRef<int> M, EVT VT) {
5092   unsigned NumElts = VT.getVectorNumElements();
5093   // Make sure the mask has the right size.
5094   if (NumElts != M.size())
5095       return false;
5096
5097   // Look for <15, ..., 3, -1, 1, 0>.
5098   for (unsigned i = 0; i != NumElts; ++i)
5099     if (M[i] >= 0 && M[i] != (int) (NumElts - 1 - i))
5100       return false;
5101
5102   return true;
5103 }
5104
5105 // If N is an integer constant that can be moved into a register in one
5106 // instruction, return an SDValue of such a constant (will become a MOV
5107 // instruction).  Otherwise return null.
5108 static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG,
5109                                      const ARMSubtarget *ST, SDLoc dl) {
5110   uint64_t Val;
5111   if (!isa<ConstantSDNode>(N))
5112     return SDValue();
5113   Val = cast<ConstantSDNode>(N)->getZExtValue();
5114
5115   if (ST->isThumb1Only()) {
5116     if (Val <= 255 || ~Val <= 255)
5117       return DAG.getConstant(Val, dl, MVT::i32);
5118   } else {
5119     if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1)
5120       return DAG.getConstant(Val, dl, MVT::i32);
5121   }
5122   return SDValue();
5123 }
5124
5125 // If this is a case we can't handle, return null and let the default
5126 // expansion code take care of it.
5127 SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
5128                                              const ARMSubtarget *ST) const {
5129   BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
5130   SDLoc dl(Op);
5131   EVT VT = Op.getValueType();
5132
5133   APInt SplatBits, SplatUndef;
5134   unsigned SplatBitSize;
5135   bool HasAnyUndefs;
5136   if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
5137     if (SplatBitSize <= 64) {
5138       // Check if an immediate VMOV works.
5139       EVT VmovVT;
5140       SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
5141                                       SplatUndef.getZExtValue(), SplatBitSize,
5142                                       DAG, dl, VmovVT, VT.is128BitVector(),
5143                                       VMOVModImm);
5144       if (Val.getNode()) {
5145         SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val);
5146         return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
5147       }
5148
5149       // Try an immediate VMVN.
5150       uint64_t NegatedImm = (~SplatBits).getZExtValue();
5151       Val = isNEONModifiedImm(NegatedImm,
5152                                       SplatUndef.getZExtValue(), SplatBitSize,
5153                                       DAG, dl, VmovVT, VT.is128BitVector(),
5154                                       VMVNModImm);
5155       if (Val.getNode()) {
5156         SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val);
5157         return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
5158       }
5159
5160       // Use vmov.f32 to materialize other v2f32 and v4f32 splats.
5161       if ((VT == MVT::v2f32 || VT == MVT::v4f32) && SplatBitSize == 32) {
5162         int ImmVal = ARM_AM::getFP32Imm(SplatBits);
5163         if (ImmVal != -1) {
5164           SDValue Val = DAG.getTargetConstant(ImmVal, dl, MVT::i32);
5165           return DAG.getNode(ARMISD::VMOVFPIMM, dl, VT, Val);
5166         }
5167       }
5168     }
5169   }
5170
5171   // Scan through the operands to see if only one value is used.
5172   //
5173   // As an optimisation, even if more than one value is used it may be more
5174   // profitable to splat with one value then change some lanes.
5175   //
5176   // Heuristically we decide to do this if the vector has a "dominant" value,
5177   // defined as splatted to more than half of the lanes.
5178   unsigned NumElts = VT.getVectorNumElements();
5179   bool isOnlyLowElement = true;
5180   bool usesOnlyOneValue = true;
5181   bool hasDominantValue = false;
5182   bool isConstant = true;
5183
5184   // Map of the number of times a particular SDValue appears in the
5185   // element list.
5186   DenseMap<SDValue, unsigned> ValueCounts;
5187   SDValue Value;
5188   for (unsigned i = 0; i < NumElts; ++i) {
5189     SDValue V = Op.getOperand(i);
5190     if (V.getOpcode() == ISD::UNDEF)
5191       continue;
5192     if (i > 0)
5193       isOnlyLowElement = false;
5194     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
5195       isConstant = false;
5196
5197     ValueCounts.insert(std::make_pair(V, 0));
5198     unsigned &Count = ValueCounts[V];
5199
5200     // Is this value dominant? (takes up more than half of the lanes)
5201     if (++Count > (NumElts / 2)) {
5202       hasDominantValue = true;
5203       Value = V;
5204     }
5205   }
5206   if (ValueCounts.size() != 1)
5207     usesOnlyOneValue = false;
5208   if (!Value.getNode() && ValueCounts.size() > 0)
5209     Value = ValueCounts.begin()->first;
5210
5211   if (ValueCounts.size() == 0)
5212     return DAG.getUNDEF(VT);
5213
5214   // Loads are better lowered with insert_vector_elt/ARMISD::BUILD_VECTOR.
5215   // Keep going if we are hitting this case.
5216   if (isOnlyLowElement && !ISD::isNormalLoad(Value.getNode()))
5217     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
5218
5219   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5220
5221   // Use VDUP for non-constant splats.  For f32 constant splats, reduce to
5222   // i32 and try again.
5223   if (hasDominantValue && EltSize <= 32) {
5224     if (!isConstant) {
5225       SDValue N;
5226
5227       // If we are VDUPing a value that comes directly from a vector, that will
5228       // cause an unnecessary move to and from a GPR, where instead we could
5229       // just use VDUPLANE. We can only do this if the lane being extracted
5230       // is at a constant index, as the VDUP from lane instructions only have
5231       // constant-index forms.
5232       if (Value->getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5233           isa<ConstantSDNode>(Value->getOperand(1))) {
5234         // We need to create a new undef vector to use for the VDUPLANE if the
5235         // size of the vector from which we get the value is different than the
5236         // size of the vector that we need to create. We will insert the element
5237         // such that the register coalescer will remove unnecessary copies.
5238         if (VT != Value->getOperand(0).getValueType()) {
5239           ConstantSDNode *constIndex;
5240           constIndex = dyn_cast<ConstantSDNode>(Value->getOperand(1));
5241           assert(constIndex && "The index is not a constant!");
5242           unsigned index = constIndex->getAPIntValue().getLimitedValue() %
5243                              VT.getVectorNumElements();
5244           N =  DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5245                  DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DAG.getUNDEF(VT),
5246                         Value, DAG.getConstant(index, dl, MVT::i32)),
5247                            DAG.getConstant(index, dl, MVT::i32));
5248         } else
5249           N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5250                         Value->getOperand(0), Value->getOperand(1));
5251       } else
5252         N = DAG.getNode(ARMISD::VDUP, dl, VT, Value);
5253
5254       if (!usesOnlyOneValue) {
5255         // The dominant value was splatted as 'N', but we now have to insert
5256         // all differing elements.
5257         for (unsigned I = 0; I < NumElts; ++I) {
5258           if (Op.getOperand(I) == Value)
5259             continue;
5260           SmallVector<SDValue, 3> Ops;
5261           Ops.push_back(N);
5262           Ops.push_back(Op.getOperand(I));
5263           Ops.push_back(DAG.getConstant(I, dl, MVT::i32));
5264           N = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Ops);
5265         }
5266       }
5267       return N;
5268     }
5269     if (VT.getVectorElementType().isFloatingPoint()) {
5270       SmallVector<SDValue, 8> Ops;
5271       for (unsigned i = 0; i < NumElts; ++i)
5272         Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32,
5273                                   Op.getOperand(i)));
5274       EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
5275       SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops);
5276       Val = LowerBUILD_VECTOR(Val, DAG, ST);
5277       if (Val.getNode())
5278         return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5279     }
5280     if (usesOnlyOneValue) {
5281       SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl);
5282       if (isConstant && Val.getNode())
5283         return DAG.getNode(ARMISD::VDUP, dl, VT, Val);
5284     }
5285   }
5286
5287   // If all elements are constants and the case above didn't get hit, fall back
5288   // to the default expansion, which will generate a load from the constant
5289   // pool.
5290   if (isConstant)
5291     return SDValue();
5292
5293   // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
5294   if (NumElts >= 4) {
5295     SDValue shuffle = ReconstructShuffle(Op, DAG);
5296     if (shuffle != SDValue())
5297       return shuffle;
5298   }
5299
5300   // Vectors with 32- or 64-bit elements can be built by directly assigning
5301   // the subregisters.  Lower it to an ARMISD::BUILD_VECTOR so the operands
5302   // will be legalized.
5303   if (EltSize >= 32) {
5304     // Do the expansion with floating-point types, since that is what the VFP
5305     // registers are defined to use, and since i64 is not legal.
5306     EVT EltVT = EVT::getFloatingPointVT(EltSize);
5307     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
5308     SmallVector<SDValue, 8> Ops;
5309     for (unsigned i = 0; i < NumElts; ++i)
5310       Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i)));
5311     SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
5312     return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5313   }
5314
5315   // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
5316   // know the default expansion would otherwise fall back on something even
5317   // worse. For a vector with one or two non-undef values, that's
5318   // scalar_to_vector for the elements followed by a shuffle (provided the
5319   // shuffle is valid for the target) and materialization element by element
5320   // on the stack followed by a load for everything else.
5321   if (!isConstant && !usesOnlyOneValue) {
5322     SDValue Vec = DAG.getUNDEF(VT);
5323     for (unsigned i = 0 ; i < NumElts; ++i) {
5324       SDValue V = Op.getOperand(i);
5325       if (V.getOpcode() == ISD::UNDEF)
5326         continue;
5327       SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i32);
5328       Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
5329     }
5330     return Vec;
5331   }
5332
5333   return SDValue();
5334 }
5335
5336 // Gather data to see if the operation can be modelled as a
5337 // shuffle in combination with VEXTs.
5338 SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op,
5339                                               SelectionDAG &DAG) const {
5340   SDLoc dl(Op);
5341   EVT VT = Op.getValueType();
5342   unsigned NumElts = VT.getVectorNumElements();
5343
5344   SmallVector<SDValue, 2> SourceVecs;
5345   SmallVector<unsigned, 2> MinElts;
5346   SmallVector<unsigned, 2> MaxElts;
5347
5348   for (unsigned i = 0; i < NumElts; ++i) {
5349     SDValue V = Op.getOperand(i);
5350     if (V.getOpcode() == ISD::UNDEF)
5351       continue;
5352     else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
5353       // A shuffle can only come from building a vector from various
5354       // elements of other vectors.
5355       return SDValue();
5356     } else if (V.getOperand(0).getValueType().getVectorElementType() !=
5357                VT.getVectorElementType()) {
5358       // This code doesn't know how to handle shuffles where the vector
5359       // element types do not match (this happens because type legalization
5360       // promotes the return type of EXTRACT_VECTOR_ELT).
5361       // FIXME: It might be appropriate to extend this code to handle
5362       // mismatched types.
5363       return SDValue();
5364     }
5365
5366     // Record this extraction against the appropriate vector if possible...
5367     SDValue SourceVec = V.getOperand(0);
5368     // If the element number isn't a constant, we can't effectively
5369     // analyze what's going on.
5370     if (!isa<ConstantSDNode>(V.getOperand(1)))
5371       return SDValue();
5372     unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
5373     bool FoundSource = false;
5374     for (unsigned j = 0; j < SourceVecs.size(); ++j) {
5375       if (SourceVecs[j] == SourceVec) {
5376         if (MinElts[j] > EltNo)
5377           MinElts[j] = EltNo;
5378         if (MaxElts[j] < EltNo)
5379           MaxElts[j] = EltNo;
5380         FoundSource = true;
5381         break;
5382       }
5383     }
5384
5385     // Or record a new source if not...
5386     if (!FoundSource) {
5387       SourceVecs.push_back(SourceVec);
5388       MinElts.push_back(EltNo);
5389       MaxElts.push_back(EltNo);
5390     }
5391   }
5392
5393   // Currently only do something sane when at most two source vectors
5394   // involved.
5395   if (SourceVecs.size() > 2)
5396     return SDValue();
5397
5398   SDValue ShuffleSrcs[2] = {DAG.getUNDEF(VT), DAG.getUNDEF(VT) };
5399   int VEXTOffsets[2] = {0, 0};
5400
5401   // This loop extracts the usage patterns of the source vectors
5402   // and prepares appropriate SDValues for a shuffle if possible.
5403   for (unsigned i = 0; i < SourceVecs.size(); ++i) {
5404     if (SourceVecs[i].getValueType() == VT) {
5405       // No VEXT necessary
5406       ShuffleSrcs[i] = SourceVecs[i];
5407       VEXTOffsets[i] = 0;
5408       continue;
5409     } else if (SourceVecs[i].getValueType().getVectorNumElements() < NumElts) {
5410       // It probably isn't worth padding out a smaller vector just to
5411       // break it down again in a shuffle.
5412       return SDValue();
5413     }
5414
5415     // Since only 64-bit and 128-bit vectors are legal on ARM and
5416     // we've eliminated the other cases...
5417     assert(SourceVecs[i].getValueType().getVectorNumElements() == 2*NumElts &&
5418            "unexpected vector sizes in ReconstructShuffle");
5419
5420     if (MaxElts[i] - MinElts[i] >= NumElts) {
5421       // Span too large for a VEXT to cope
5422       return SDValue();
5423     }
5424
5425     if (MinElts[i] >= NumElts) {
5426       // The extraction can just take the second half
5427       VEXTOffsets[i] = NumElts;
5428       ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5429                                    SourceVecs[i],
5430                                    DAG.getIntPtrConstant(NumElts, dl));
5431     } else if (MaxElts[i] < NumElts) {
5432       // The extraction can just take the first half
5433       VEXTOffsets[i] = 0;
5434       ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5435                                    SourceVecs[i],
5436                                    DAG.getIntPtrConstant(0, dl));
5437     } else {
5438       // An actual VEXT is needed
5439       VEXTOffsets[i] = MinElts[i];
5440       SDValue VEXTSrc1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5441                                      SourceVecs[i],
5442                                      DAG.getIntPtrConstant(0, dl));
5443       SDValue VEXTSrc2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5444                                      SourceVecs[i],
5445                                      DAG.getIntPtrConstant(NumElts, dl));
5446       ShuffleSrcs[i] = DAG.getNode(ARMISD::VEXT, dl, VT, VEXTSrc1, VEXTSrc2,
5447                                    DAG.getConstant(VEXTOffsets[i], dl,
5448                                                    MVT::i32));
5449     }
5450   }
5451
5452   SmallVector<int, 8> Mask;
5453
5454   for (unsigned i = 0; i < NumElts; ++i) {
5455     SDValue Entry = Op.getOperand(i);
5456     if (Entry.getOpcode() == ISD::UNDEF) {
5457       Mask.push_back(-1);
5458       continue;
5459     }
5460
5461     SDValue ExtractVec = Entry.getOperand(0);
5462     int ExtractElt = cast<ConstantSDNode>(Op.getOperand(i)
5463                                           .getOperand(1))->getSExtValue();
5464     if (ExtractVec == SourceVecs[0]) {
5465       Mask.push_back(ExtractElt - VEXTOffsets[0]);
5466     } else {
5467       Mask.push_back(ExtractElt + NumElts - VEXTOffsets[1]);
5468     }
5469   }
5470
5471   // Final check before we try to produce nonsense...
5472   if (isShuffleMaskLegal(Mask, VT))
5473     return DAG.getVectorShuffle(VT, dl, ShuffleSrcs[0], ShuffleSrcs[1],
5474                                 &Mask[0]);
5475
5476   return SDValue();
5477 }
5478
5479 /// isShuffleMaskLegal - Targets can use this to indicate that they only
5480 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
5481 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
5482 /// are assumed to be legal.
5483 bool
5484 ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
5485                                       EVT VT) const {
5486   if (VT.getVectorNumElements() == 4 &&
5487       (VT.is128BitVector() || VT.is64BitVector())) {
5488     unsigned PFIndexes[4];
5489     for (unsigned i = 0; i != 4; ++i) {
5490       if (M[i] < 0)
5491         PFIndexes[i] = 8;
5492       else
5493         PFIndexes[i] = M[i];
5494     }
5495
5496     // Compute the index in the perfect shuffle table.
5497     unsigned PFTableIndex =
5498       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5499     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5500     unsigned Cost = (PFEntry >> 30);
5501
5502     if (Cost <= 4)
5503       return true;
5504   }
5505
5506   bool ReverseVEXT, isV_UNDEF;
5507   unsigned Imm, WhichResult;
5508
5509   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5510   return (EltSize >= 32 ||
5511           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
5512           isVREVMask(M, VT, 64) ||
5513           isVREVMask(M, VT, 32) ||
5514           isVREVMask(M, VT, 16) ||
5515           isVEXTMask(M, VT, ReverseVEXT, Imm) ||
5516           isVTBLMask(M, VT) ||
5517           isNEONTwoResultShuffleMask(M, VT, WhichResult, isV_UNDEF) ||
5518           ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(M, VT)));
5519 }
5520
5521 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5522 /// the specified operations to build the shuffle.
5523 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5524                                       SDValue RHS, SelectionDAG &DAG,
5525                                       SDLoc dl) {
5526   unsigned OpNum = (PFEntry >> 26) & 0x0F;
5527   unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
5528   unsigned RHSID = (PFEntry >>  0) & ((1 << 13)-1);
5529
5530   enum {
5531     OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5532     OP_VREV,
5533     OP_VDUP0,
5534     OP_VDUP1,
5535     OP_VDUP2,
5536     OP_VDUP3,
5537     OP_VEXT1,
5538     OP_VEXT2,
5539     OP_VEXT3,
5540     OP_VUZPL, // VUZP, left result
5541     OP_VUZPR, // VUZP, right result
5542     OP_VZIPL, // VZIP, left result
5543     OP_VZIPR, // VZIP, right result
5544     OP_VTRNL, // VTRN, left result
5545     OP_VTRNR  // VTRN, right result
5546   };
5547
5548   if (OpNum == OP_COPY) {
5549     if (LHSID == (1*9+2)*9+3) return LHS;
5550     assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5551     return RHS;
5552   }
5553
5554   SDValue OpLHS, OpRHS;
5555   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5556   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5557   EVT VT = OpLHS.getValueType();
5558
5559   switch (OpNum) {
5560   default: llvm_unreachable("Unknown shuffle opcode!");
5561   case OP_VREV:
5562     // VREV divides the vector in half and swaps within the half.
5563     if (VT.getVectorElementType() == MVT::i32 ||
5564         VT.getVectorElementType() == MVT::f32)
5565       return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
5566     // vrev <4 x i16> -> VREV32
5567     if (VT.getVectorElementType() == MVT::i16)
5568       return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS);
5569     // vrev <4 x i8> -> VREV16
5570     assert(VT.getVectorElementType() == MVT::i8);
5571     return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS);
5572   case OP_VDUP0:
5573   case OP_VDUP1:
5574   case OP_VDUP2:
5575   case OP_VDUP3:
5576     return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5577                        OpLHS, DAG.getConstant(OpNum-OP_VDUP0, dl, MVT::i32));
5578   case OP_VEXT1:
5579   case OP_VEXT2:
5580   case OP_VEXT3:
5581     return DAG.getNode(ARMISD::VEXT, dl, VT,
5582                        OpLHS, OpRHS,
5583                        DAG.getConstant(OpNum - OP_VEXT1 + 1, dl, MVT::i32));
5584   case OP_VUZPL:
5585   case OP_VUZPR:
5586     return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5587                        OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
5588   case OP_VZIPL:
5589   case OP_VZIPR:
5590     return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5591                        OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
5592   case OP_VTRNL:
5593   case OP_VTRNR:
5594     return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5595                        OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
5596   }
5597 }
5598
5599 static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op,
5600                                        ArrayRef<int> ShuffleMask,
5601                                        SelectionDAG &DAG) {
5602   // Check to see if we can use the VTBL instruction.
5603   SDValue V1 = Op.getOperand(0);
5604   SDValue V2 = Op.getOperand(1);
5605   SDLoc DL(Op);
5606
5607   SmallVector<SDValue, 8> VTBLMask;
5608   for (ArrayRef<int>::iterator
5609          I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I)
5610     VTBLMask.push_back(DAG.getConstant(*I, DL, MVT::i32));
5611
5612   if (V2.getNode()->getOpcode() == ISD::UNDEF)
5613     return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1,
5614                        DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
5615
5616   return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2,
5617                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
5618 }
5619
5620 static SDValue LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(SDValue Op,
5621                                                       SelectionDAG &DAG) {
5622   SDLoc DL(Op);
5623   SDValue OpLHS = Op.getOperand(0);
5624   EVT VT = OpLHS.getValueType();
5625
5626   assert((VT == MVT::v8i16 || VT == MVT::v16i8) &&
5627          "Expect an v8i16/v16i8 type");
5628   OpLHS = DAG.getNode(ARMISD::VREV64, DL, VT, OpLHS);
5629   // For a v16i8 type: After the VREV, we have got <8, ...15, 8, ..., 0>. Now,
5630   // extract the first 8 bytes into the top double word and the last 8 bytes
5631   // into the bottom double word. The v8i16 case is similar.
5632   unsigned ExtractNum = (VT == MVT::v16i8) ? 8 : 4;
5633   return DAG.getNode(ARMISD::VEXT, DL, VT, OpLHS, OpLHS,
5634                      DAG.getConstant(ExtractNum, DL, MVT::i32));
5635 }
5636
5637 static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
5638   SDValue V1 = Op.getOperand(0);
5639   SDValue V2 = Op.getOperand(1);
5640   SDLoc dl(Op);
5641   EVT VT = Op.getValueType();
5642   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
5643
5644   // Convert shuffles that are directly supported on NEON to target-specific
5645   // DAG nodes, instead of keeping them as shuffles and matching them again
5646   // during code selection.  This is more efficient and avoids the possibility
5647   // of inconsistencies between legalization and selection.
5648   // FIXME: floating-point vectors should be canonicalized to integer vectors
5649   // of the same time so that they get CSEd properly.
5650   ArrayRef<int> ShuffleMask = SVN->getMask();
5651
5652   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5653   if (EltSize <= 32) {
5654     if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
5655       int Lane = SVN->getSplatIndex();
5656       // If this is undef splat, generate it via "just" vdup, if possible.
5657       if (Lane == -1) Lane = 0;
5658
5659       // Test if V1 is a SCALAR_TO_VECTOR.
5660       if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5661         return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5662       }
5663       // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
5664       // (and probably will turn into a SCALAR_TO_VECTOR once legalization
5665       // reaches it).
5666       if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
5667           !isa<ConstantSDNode>(V1.getOperand(0))) {
5668         bool IsScalarToVector = true;
5669         for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i)
5670           if (V1.getOperand(i).getOpcode() != ISD::UNDEF) {
5671             IsScalarToVector = false;
5672             break;
5673           }
5674         if (IsScalarToVector)
5675           return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5676       }
5677       return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
5678                          DAG.getConstant(Lane, dl, MVT::i32));
5679     }
5680
5681     bool ReverseVEXT;
5682     unsigned Imm;
5683     if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
5684       if (ReverseVEXT)
5685         std::swap(V1, V2);
5686       return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
5687                          DAG.getConstant(Imm, dl, MVT::i32));
5688     }
5689
5690     if (isVREVMask(ShuffleMask, VT, 64))
5691       return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
5692     if (isVREVMask(ShuffleMask, VT, 32))
5693       return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
5694     if (isVREVMask(ShuffleMask, VT, 16))
5695       return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
5696
5697     if (V2->getOpcode() == ISD::UNDEF &&
5698         isSingletonVEXTMask(ShuffleMask, VT, Imm)) {
5699       return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V1,
5700                          DAG.getConstant(Imm, dl, MVT::i32));
5701     }
5702
5703     // Check for Neon shuffles that modify both input vectors in place.
5704     // If both results are used, i.e., if there are two shuffles with the same
5705     // source operands and with masks corresponding to both results of one of
5706     // these operations, DAG memoization will ensure that a single node is
5707     // used for both shuffles.
5708     unsigned WhichResult;
5709     bool isV_UNDEF;
5710     if (unsigned ShuffleOpc = isNEONTwoResultShuffleMask(
5711             ShuffleMask, VT, WhichResult, isV_UNDEF)) {
5712       if (isV_UNDEF)
5713         V2 = V1;
5714       return DAG.getNode(ShuffleOpc, dl, DAG.getVTList(VT, VT), V1, V2)
5715           .getValue(WhichResult);
5716     }
5717
5718     // Also check for these shuffles through CONCAT_VECTORS: we canonicalize
5719     // shuffles that produce a result larger than their operands with:
5720     //   shuffle(concat(v1, undef), concat(v2, undef))
5721     // ->
5722     //   shuffle(concat(v1, v2), undef)
5723     // because we can access quad vectors (see PerformVECTOR_SHUFFLECombine).
5724     //
5725     // This is useful in the general case, but there are special cases where
5726     // native shuffles produce larger results: the two-result ops.
5727     //
5728     // Look through the concat when lowering them:
5729     //   shuffle(concat(v1, v2), undef)
5730     // ->
5731     //   concat(VZIP(v1, v2):0, :1)
5732     //
5733     if (V1->getOpcode() == ISD::CONCAT_VECTORS &&
5734         V2->getOpcode() == ISD::UNDEF) {
5735       SDValue SubV1 = V1->getOperand(0);
5736       SDValue SubV2 = V1->getOperand(1);
5737       EVT SubVT = SubV1.getValueType();
5738
5739       // We expect these to have been canonicalized to -1.
5740       assert(std::all_of(ShuffleMask.begin(), ShuffleMask.end(), [&](int i) {
5741         return i < (int)VT.getVectorNumElements();
5742       }) && "Unexpected shuffle index into UNDEF operand!");
5743
5744       if (unsigned ShuffleOpc = isNEONTwoResultShuffleMask(
5745               ShuffleMask, SubVT, WhichResult, isV_UNDEF)) {
5746         if (isV_UNDEF)
5747           SubV2 = SubV1;
5748         assert((WhichResult == 0) &&
5749                "In-place shuffle of concat can only have one result!");
5750         SDValue Res = DAG.getNode(ShuffleOpc, dl, DAG.getVTList(SubVT, SubVT),
5751                                   SubV1, SubV2);
5752         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Res.getValue(0),
5753                            Res.getValue(1));
5754       }
5755     }
5756   }
5757
5758   // If the shuffle is not directly supported and it has 4 elements, use
5759   // the PerfectShuffle-generated table to synthesize it from other shuffles.
5760   unsigned NumElts = VT.getVectorNumElements();
5761   if (NumElts == 4) {
5762     unsigned PFIndexes[4];
5763     for (unsigned i = 0; i != 4; ++i) {
5764       if (ShuffleMask[i] < 0)
5765         PFIndexes[i] = 8;
5766       else
5767         PFIndexes[i] = ShuffleMask[i];
5768     }
5769
5770     // Compute the index in the perfect shuffle table.
5771     unsigned PFTableIndex =
5772       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5773     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5774     unsigned Cost = (PFEntry >> 30);
5775
5776     if (Cost <= 4)
5777       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
5778   }
5779
5780   // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs.
5781   if (EltSize >= 32) {
5782     // Do the expansion with floating-point types, since that is what the VFP
5783     // registers are defined to use, and since i64 is not legal.
5784     EVT EltVT = EVT::getFloatingPointVT(EltSize);
5785     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
5786     V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1);
5787     V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2);
5788     SmallVector<SDValue, 8> Ops;
5789     for (unsigned i = 0; i < NumElts; ++i) {
5790       if (ShuffleMask[i] < 0)
5791         Ops.push_back(DAG.getUNDEF(EltVT));
5792       else
5793         Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
5794                                   ShuffleMask[i] < (int)NumElts ? V1 : V2,
5795                                   DAG.getConstant(ShuffleMask[i] & (NumElts-1),
5796                                                   dl, MVT::i32)));
5797     }
5798     SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
5799     return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5800   }
5801
5802   if ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(ShuffleMask, VT))
5803     return LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(Op, DAG);
5804
5805   if (VT == MVT::v8i8) {
5806     SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG);
5807     if (NewOp.getNode())
5808       return NewOp;
5809   }
5810
5811   return SDValue();
5812 }
5813
5814 static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
5815   // INSERT_VECTOR_ELT is legal only for immediate indexes.
5816   SDValue Lane = Op.getOperand(2);
5817   if (!isa<ConstantSDNode>(Lane))
5818     return SDValue();
5819
5820   return Op;
5821 }
5822
5823 static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
5824   // EXTRACT_VECTOR_ELT is legal only for immediate indexes.
5825   SDValue Lane = Op.getOperand(1);
5826   if (!isa<ConstantSDNode>(Lane))
5827     return SDValue();
5828
5829   SDValue Vec = Op.getOperand(0);
5830   if (Op.getValueType() == MVT::i32 &&
5831       Vec.getValueType().getVectorElementType().getSizeInBits() < 32) {
5832     SDLoc dl(Op);
5833     return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
5834   }
5835
5836   return Op;
5837 }
5838
5839 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5840   // The only time a CONCAT_VECTORS operation can have legal types is when
5841   // two 64-bit vectors are concatenated to a 128-bit vector.
5842   assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
5843          "unexpected CONCAT_VECTORS");
5844   SDLoc dl(Op);
5845   SDValue Val = DAG.getUNDEF(MVT::v2f64);
5846   SDValue Op0 = Op.getOperand(0);
5847   SDValue Op1 = Op.getOperand(1);
5848   if (Op0.getOpcode() != ISD::UNDEF)
5849     Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
5850                       DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0),
5851                       DAG.getIntPtrConstant(0, dl));
5852   if (Op1.getOpcode() != ISD::UNDEF)
5853     Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
5854                       DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1),
5855                       DAG.getIntPtrConstant(1, dl));
5856   return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val);
5857 }
5858
5859 /// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each
5860 /// element has been zero/sign-extended, depending on the isSigned parameter,
5861 /// from an integer type half its size.
5862 static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
5863                                    bool isSigned) {
5864   // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32.
5865   EVT VT = N->getValueType(0);
5866   if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) {
5867     SDNode *BVN = N->getOperand(0).getNode();
5868     if (BVN->getValueType(0) != MVT::v4i32 ||
5869         BVN->getOpcode() != ISD::BUILD_VECTOR)
5870       return false;
5871     unsigned LoElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
5872     unsigned HiElt = 1 - LoElt;
5873     ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt));
5874     ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt));
5875     ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2));
5876     ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2));
5877     if (!Lo0 || !Hi0 || !Lo1 || !Hi1)
5878       return false;
5879     if (isSigned) {
5880       if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 &&
5881           Hi1->getSExtValue() == Lo1->getSExtValue() >> 32)
5882         return true;
5883     } else {
5884       if (Hi0->isNullValue() && Hi1->isNullValue())
5885         return true;
5886     }
5887     return false;
5888   }
5889
5890   if (N->getOpcode() != ISD::BUILD_VECTOR)
5891     return false;
5892
5893   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
5894     SDNode *Elt = N->getOperand(i).getNode();
5895     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
5896       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5897       unsigned HalfSize = EltSize / 2;
5898       if (isSigned) {
5899         if (!isIntN(HalfSize, C->getSExtValue()))
5900           return false;
5901       } else {
5902         if (!isUIntN(HalfSize, C->getZExtValue()))
5903           return false;
5904       }
5905       continue;
5906     }
5907     return false;
5908   }
5909
5910   return true;
5911 }
5912
5913 /// isSignExtended - Check if a node is a vector value that is sign-extended
5914 /// or a constant BUILD_VECTOR with sign-extended elements.
5915 static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
5916   if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N))
5917     return true;
5918   if (isExtendedBUILD_VECTOR(N, DAG, true))
5919     return true;
5920   return false;
5921 }
5922
5923 /// isZeroExtended - Check if a node is a vector value that is zero-extended
5924 /// or a constant BUILD_VECTOR with zero-extended elements.
5925 static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
5926   if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N))
5927     return true;
5928   if (isExtendedBUILD_VECTOR(N, DAG, false))
5929     return true;
5930   return false;
5931 }
5932
5933 static EVT getExtensionTo64Bits(const EVT &OrigVT) {
5934   if (OrigVT.getSizeInBits() >= 64)
5935     return OrigVT;
5936
5937   assert(OrigVT.isSimple() && "Expecting a simple value type");
5938
5939   MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
5940   switch (OrigSimpleTy) {
5941   default: llvm_unreachable("Unexpected Vector Type");
5942   case MVT::v2i8:
5943   case MVT::v2i16:
5944      return MVT::v2i32;
5945   case MVT::v4i8:
5946     return  MVT::v4i16;
5947   }
5948 }
5949
5950 /// AddRequiredExtensionForVMULL - Add a sign/zero extension to extend the total
5951 /// value size to 64 bits. We need a 64-bit D register as an operand to VMULL.
5952 /// We insert the required extension here to get the vector to fill a D register.
5953 static SDValue AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG,
5954                                             const EVT &OrigTy,
5955                                             const EVT &ExtTy,
5956                                             unsigned ExtOpcode) {
5957   // The vector originally had a size of OrigTy. It was then extended to ExtTy.
5958   // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
5959   // 64-bits we need to insert a new extension so that it will be 64-bits.
5960   assert(ExtTy.is128BitVector() && "Unexpected extension size");
5961   if (OrigTy.getSizeInBits() >= 64)
5962     return N;
5963
5964   // Must extend size to at least 64 bits to be used as an operand for VMULL.
5965   EVT NewVT = getExtensionTo64Bits(OrigTy);
5966
5967   return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N);
5968 }
5969
5970 /// SkipLoadExtensionForVMULL - return a load of the original vector size that
5971 /// does not do any sign/zero extension. If the original vector is less
5972 /// than 64 bits, an appropriate extension will be added after the load to
5973 /// reach a total size of 64 bits. We have to add the extension separately
5974 /// because ARM does not have a sign/zero extending load for vectors.
5975 static SDValue SkipLoadExtensionForVMULL(LoadSDNode *LD, SelectionDAG& DAG) {
5976   EVT ExtendedTy = getExtensionTo64Bits(LD->getMemoryVT());
5977
5978   // The load already has the right type.
5979   if (ExtendedTy == LD->getMemoryVT())
5980     return DAG.getLoad(LD->getMemoryVT(), SDLoc(LD), LD->getChain(),
5981                 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(),
5982                 LD->isNonTemporal(), LD->isInvariant(),
5983                 LD->getAlignment());
5984
5985   // We need to create a zextload/sextload. We cannot just create a load
5986   // followed by a zext/zext node because LowerMUL is also run during normal
5987   // operation legalization where we can't create illegal types.
5988   return DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), ExtendedTy,
5989                         LD->getChain(), LD->getBasePtr(), LD->getPointerInfo(),
5990                         LD->getMemoryVT(), LD->isVolatile(), LD->isInvariant(),
5991                         LD->isNonTemporal(), LD->getAlignment());
5992 }
5993
5994 /// SkipExtensionForVMULL - For a node that is a SIGN_EXTEND, ZERO_EXTEND,
5995 /// extending load, or BUILD_VECTOR with extended elements, return the
5996 /// unextended value. The unextended vector should be 64 bits so that it can
5997 /// be used as an operand to a VMULL instruction. If the original vector size
5998 /// before extension is less than 64 bits we add a an extension to resize
5999 /// the vector to 64 bits.
6000 static SDValue SkipExtensionForVMULL(SDNode *N, SelectionDAG &DAG) {
6001   if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
6002     return AddRequiredExtensionForVMULL(N->getOperand(0), DAG,
6003                                         N->getOperand(0)->getValueType(0),
6004                                         N->getValueType(0),
6005                                         N->getOpcode());
6006
6007   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
6008     return SkipLoadExtensionForVMULL(LD, DAG);
6009
6010   // Otherwise, the value must be a BUILD_VECTOR.  For v2i64, it will
6011   // have been legalized as a BITCAST from v4i32.
6012   if (N->getOpcode() == ISD::BITCAST) {
6013     SDNode *BVN = N->getOperand(0).getNode();
6014     assert(BVN->getOpcode() == ISD::BUILD_VECTOR &&
6015            BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR");
6016     unsigned LowElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
6017     return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), MVT::v2i32,
6018                        BVN->getOperand(LowElt), BVN->getOperand(LowElt+2));
6019   }
6020   // Construct a new BUILD_VECTOR with elements truncated to half the size.
6021   assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
6022   EVT VT = N->getValueType(0);
6023   unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2;
6024   unsigned NumElts = VT.getVectorNumElements();
6025   MVT TruncVT = MVT::getIntegerVT(EltSize);
6026   SmallVector<SDValue, 8> Ops;
6027   SDLoc dl(N);
6028   for (unsigned i = 0; i != NumElts; ++i) {
6029     ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
6030     const APInt &CInt = C->getAPIntValue();
6031     // Element types smaller than 32 bits are not legal, so use i32 elements.
6032     // The values are implicitly truncated so sext vs. zext doesn't matter.
6033     Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32));
6034   }
6035   return DAG.getNode(ISD::BUILD_VECTOR, dl,
6036                      MVT::getVectorVT(TruncVT, NumElts), Ops);
6037 }
6038
6039 static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
6040   unsigned Opcode = N->getOpcode();
6041   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
6042     SDNode *N0 = N->getOperand(0).getNode();
6043     SDNode *N1 = N->getOperand(1).getNode();
6044     return N0->hasOneUse() && N1->hasOneUse() &&
6045       isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
6046   }
6047   return false;
6048 }
6049
6050 static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
6051   unsigned Opcode = N->getOpcode();
6052   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
6053     SDNode *N0 = N->getOperand(0).getNode();
6054     SDNode *N1 = N->getOperand(1).getNode();
6055     return N0->hasOneUse() && N1->hasOneUse() &&
6056       isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
6057   }
6058   return false;
6059 }
6060
6061 static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
6062   // Multiplications are only custom-lowered for 128-bit vectors so that
6063   // VMULL can be detected.  Otherwise v2i64 multiplications are not legal.
6064   EVT VT = Op.getValueType();
6065   assert(VT.is128BitVector() && VT.isInteger() &&
6066          "unexpected type for custom-lowering ISD::MUL");
6067   SDNode *N0 = Op.getOperand(0).getNode();
6068   SDNode *N1 = Op.getOperand(1).getNode();
6069   unsigned NewOpc = 0;
6070   bool isMLA = false;
6071   bool isN0SExt = isSignExtended(N0, DAG);
6072   bool isN1SExt = isSignExtended(N1, DAG);
6073   if (isN0SExt && isN1SExt)
6074     NewOpc = ARMISD::VMULLs;
6075   else {
6076     bool isN0ZExt = isZeroExtended(N0, DAG);
6077     bool isN1ZExt = isZeroExtended(N1, DAG);
6078     if (isN0ZExt && isN1ZExt)
6079       NewOpc = ARMISD::VMULLu;
6080     else if (isN1SExt || isN1ZExt) {
6081       // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
6082       // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
6083       if (isN1SExt && isAddSubSExt(N0, DAG)) {
6084         NewOpc = ARMISD::VMULLs;
6085         isMLA = true;
6086       } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
6087         NewOpc = ARMISD::VMULLu;
6088         isMLA = true;
6089       } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
6090         std::swap(N0, N1);
6091         NewOpc = ARMISD::VMULLu;
6092         isMLA = true;
6093       }
6094     }
6095
6096     if (!NewOpc) {
6097       if (VT == MVT::v2i64)
6098         // Fall through to expand this.  It is not legal.
6099         return SDValue();
6100       else
6101         // Other vector multiplications are legal.
6102         return Op;
6103     }
6104   }
6105
6106   // Legalize to a VMULL instruction.
6107   SDLoc DL(Op);
6108   SDValue Op0;
6109   SDValue Op1 = SkipExtensionForVMULL(N1, DAG);
6110   if (!isMLA) {
6111     Op0 = SkipExtensionForVMULL(N0, DAG);
6112     assert(Op0.getValueType().is64BitVector() &&
6113            Op1.getValueType().is64BitVector() &&
6114            "unexpected types for extended operands to VMULL");
6115     return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
6116   }
6117
6118   // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during
6119   // isel lowering to take advantage of no-stall back to back vmul + vmla.
6120   //   vmull q0, d4, d6
6121   //   vmlal q0, d5, d6
6122   // is faster than
6123   //   vaddl q0, d4, d5
6124   //   vmovl q1, d6
6125   //   vmul  q0, q0, q1
6126   SDValue N00 = SkipExtensionForVMULL(N0->getOperand(0).getNode(), DAG);
6127   SDValue N01 = SkipExtensionForVMULL(N0->getOperand(1).getNode(), DAG);
6128   EVT Op1VT = Op1.getValueType();
6129   return DAG.getNode(N0->getOpcode(), DL, VT,
6130                      DAG.getNode(NewOpc, DL, VT,
6131                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
6132                      DAG.getNode(NewOpc, DL, VT,
6133                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
6134 }
6135
6136 static SDValue
6137 LowerSDIV_v4i8(SDValue X, SDValue Y, SDLoc dl, SelectionDAG &DAG) {
6138   // Convert to float
6139   // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo));
6140   // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo));
6141   X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X);
6142   Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y);
6143   X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X);
6144   Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y);
6145   // Get reciprocal estimate.
6146   // float4 recip = vrecpeq_f32(yf);
6147   Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6148                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6149                    Y);
6150   // Because char has a smaller range than uchar, we can actually get away
6151   // without any newton steps.  This requires that we use a weird bias
6152   // of 0xb000, however (again, this has been exhaustively tested).
6153   // float4 result = as_float4(as_int4(xf*recip) + 0xb000);
6154   X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y);
6155   X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X);
6156   Y = DAG.getConstant(0xb000, dl, MVT::i32);
6157   Y = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Y, Y, Y, Y);
6158   X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y);
6159   X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X);
6160   // Convert back to short.
6161   X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X);
6162   X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X);
6163   return X;
6164 }
6165
6166 static SDValue
6167 LowerSDIV_v4i16(SDValue N0, SDValue N1, SDLoc dl, SelectionDAG &DAG) {
6168   SDValue N2;
6169   // Convert to float.
6170   // float4 yf = vcvt_f32_s32(vmovl_s16(y));
6171   // float4 xf = vcvt_f32_s32(vmovl_s16(x));
6172   N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0);
6173   N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1);
6174   N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
6175   N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
6176
6177   // Use reciprocal estimate and one refinement step.
6178   // float4 recip = vrecpeq_f32(yf);
6179   // recip *= vrecpsq_f32(yf, recip);
6180   N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6181                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6182                    N1);
6183   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6184                    DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
6185                    N1, N2);
6186   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6187   // Because short has a smaller range than ushort, we can actually get away
6188   // with only a single newton step.  This requires that we use a weird bias
6189   // of 89, however (again, this has been exhaustively tested).
6190   // float4 result = as_float4(as_int4(xf*recip) + 0x89);
6191   N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
6192   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
6193   N1 = DAG.getConstant(0x89, dl, MVT::i32);
6194   N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
6195   N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
6196   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
6197   // Convert back to integer and return.
6198   // return vmovn_s32(vcvt_s32_f32(result));
6199   N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
6200   N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
6201   return N0;
6202 }
6203
6204 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
6205   EVT VT = Op.getValueType();
6206   assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
6207          "unexpected type for custom-lowering ISD::SDIV");
6208
6209   SDLoc dl(Op);
6210   SDValue N0 = Op.getOperand(0);
6211   SDValue N1 = Op.getOperand(1);
6212   SDValue N2, N3;
6213
6214   if (VT == MVT::v8i8) {
6215     N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0);
6216     N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1);
6217
6218     N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
6219                      DAG.getIntPtrConstant(4, dl));
6220     N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
6221                      DAG.getIntPtrConstant(4, dl));
6222     N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
6223                      DAG.getIntPtrConstant(0, dl));
6224     N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
6225                      DAG.getIntPtrConstant(0, dl));
6226
6227     N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16
6228     N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16
6229
6230     N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
6231     N0 = LowerCONCAT_VECTORS(N0, DAG);
6232
6233     N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0);
6234     return N0;
6235   }
6236   return LowerSDIV_v4i16(N0, N1, dl, DAG);
6237 }
6238
6239 static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) {
6240   EVT VT = Op.getValueType();
6241   assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
6242          "unexpected type for custom-lowering ISD::UDIV");
6243
6244   SDLoc dl(Op);
6245   SDValue N0 = Op.getOperand(0);
6246   SDValue N1 = Op.getOperand(1);
6247   SDValue N2, N3;
6248
6249   if (VT == MVT::v8i8) {
6250     N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0);
6251     N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1);
6252
6253     N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
6254                      DAG.getIntPtrConstant(4, dl));
6255     N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
6256                      DAG.getIntPtrConstant(4, dl));
6257     N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
6258                      DAG.getIntPtrConstant(0, dl));
6259     N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
6260                      DAG.getIntPtrConstant(0, dl));
6261
6262     N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16
6263     N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16
6264
6265     N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
6266     N0 = LowerCONCAT_VECTORS(N0, DAG);
6267
6268     N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8,
6269                      DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, dl,
6270                                      MVT::i32),
6271                      N0);
6272     return N0;
6273   }
6274
6275   // v4i16 sdiv ... Convert to float.
6276   // float4 yf = vcvt_f32_s32(vmovl_u16(y));
6277   // float4 xf = vcvt_f32_s32(vmovl_u16(x));
6278   N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0);
6279   N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1);
6280   N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
6281   SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
6282
6283   // Use reciprocal estimate and two refinement steps.
6284   // float4 recip = vrecpeq_f32(yf);
6285   // recip *= vrecpsq_f32(yf, recip);
6286   // recip *= vrecpsq_f32(yf, recip);
6287   N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6288                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6289                    BN1);
6290   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6291                    DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
6292                    BN1, N2);
6293   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6294   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6295                    DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
6296                    BN1, N2);
6297   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6298   // Simply multiplying by the reciprocal estimate can leave us a few ulps
6299   // too low, so we add 2 ulps (exhaustive testing shows that this is enough,
6300   // and that it will never cause us to return an answer too large).
6301   // float4 result = as_float4(as_int4(xf*recip) + 2);
6302   N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
6303   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
6304   N1 = DAG.getConstant(2, dl, MVT::i32);
6305   N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
6306   N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
6307   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
6308   // Convert back to integer and return.
6309   // return vmovn_u32(vcvt_s32_f32(result));
6310   N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
6311   N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
6312   return N0;
6313 }
6314
6315 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
6316   EVT VT = Op.getNode()->getValueType(0);
6317   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
6318
6319   unsigned Opc;
6320   bool ExtraOp = false;
6321   switch (Op.getOpcode()) {
6322   default: llvm_unreachable("Invalid code");
6323   case ISD::ADDC: Opc = ARMISD::ADDC; break;
6324   case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break;
6325   case ISD::SUBC: Opc = ARMISD::SUBC; break;
6326   case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break;
6327   }
6328
6329   if (!ExtraOp)
6330     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
6331                        Op.getOperand(1));
6332   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
6333                      Op.getOperand(1), Op.getOperand(2));
6334 }
6335
6336 SDValue ARMTargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const {
6337   assert(Subtarget->isTargetDarwin());
6338
6339   // For iOS, we want to call an alternative entry point: __sincos_stret,
6340   // return values are passed via sret.
6341   SDLoc dl(Op);
6342   SDValue Arg = Op.getOperand(0);
6343   EVT ArgVT = Arg.getValueType();
6344   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
6345
6346   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
6347   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6348
6349   // Pair of floats / doubles used to pass the result.
6350   StructType *RetTy = StructType::get(ArgTy, ArgTy, nullptr);
6351
6352   // Create stack object for sret.
6353   const uint64_t ByteSize = TLI.getDataLayout()->getTypeAllocSize(RetTy);
6354   const unsigned StackAlign = TLI.getDataLayout()->getPrefTypeAlignment(RetTy);
6355   int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
6356   SDValue SRet = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
6357
6358   ArgListTy Args;
6359   ArgListEntry Entry;
6360
6361   Entry.Node = SRet;
6362   Entry.Ty = RetTy->getPointerTo();
6363   Entry.isSExt = false;
6364   Entry.isZExt = false;
6365   Entry.isSRet = true;
6366   Args.push_back(Entry);
6367
6368   Entry.Node = Arg;
6369   Entry.Ty = ArgTy;
6370   Entry.isSExt = false;
6371   Entry.isZExt = false;
6372   Args.push_back(Entry);
6373
6374   const char *LibcallName  = (ArgVT == MVT::f64)
6375   ? "__sincos_stret" : "__sincosf_stret";
6376   SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy());
6377
6378   TargetLowering::CallLoweringInfo CLI(DAG);
6379   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
6380     .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()), Callee,
6381                std::move(Args), 0)
6382     .setDiscardResult();
6383
6384   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
6385
6386   SDValue LoadSin = DAG.getLoad(ArgVT, dl, CallResult.second, SRet,
6387                                 MachinePointerInfo(), false, false, false, 0);
6388
6389   // Address of cos field.
6390   SDValue Add = DAG.getNode(ISD::ADD, dl, getPointerTy(), SRet,
6391                             DAG.getIntPtrConstant(ArgVT.getStoreSize(), dl));
6392   SDValue LoadCos = DAG.getLoad(ArgVT, dl, LoadSin.getValue(1), Add,
6393                                 MachinePointerInfo(), false, false, false, 0);
6394
6395   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
6396   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys,
6397                      LoadSin.getValue(0), LoadCos.getValue(0));
6398 }
6399
6400 static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) {
6401   // Monotonic load/store is legal for all targets
6402   if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic)
6403     return Op;
6404
6405   // Acquire/Release load/store is not legal for targets without a
6406   // dmb or equivalent available.
6407   return SDValue();
6408 }
6409
6410 static void ReplaceREADCYCLECOUNTER(SDNode *N,
6411                                     SmallVectorImpl<SDValue> &Results,
6412                                     SelectionDAG &DAG,
6413                                     const ARMSubtarget *Subtarget) {
6414   SDLoc DL(N);
6415   SDValue Cycles32, OutChain;
6416
6417   if (Subtarget->hasPerfMon()) {
6418     // Under Power Management extensions, the cycle-count is:
6419     //    mrc p15, #0, <Rt>, c9, c13, #0
6420     SDValue Ops[] = { N->getOperand(0), // Chain
6421                       DAG.getConstant(Intrinsic::arm_mrc, DL, MVT::i32),
6422                       DAG.getConstant(15, DL, MVT::i32),
6423                       DAG.getConstant(0, DL, MVT::i32),
6424                       DAG.getConstant(9, DL, MVT::i32),
6425                       DAG.getConstant(13, DL, MVT::i32),
6426                       DAG.getConstant(0, DL, MVT::i32)
6427     };
6428
6429     Cycles32 = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DL,
6430                            DAG.getVTList(MVT::i32, MVT::Other), Ops);
6431     OutChain = Cycles32.getValue(1);
6432   } else {
6433     // Intrinsic is defined to return 0 on unsupported platforms. Technically
6434     // there are older ARM CPUs that have implementation-specific ways of
6435     // obtaining this information (FIXME!).
6436     Cycles32 = DAG.getConstant(0, DL, MVT::i32);
6437     OutChain = DAG.getEntryNode();
6438   }
6439
6440
6441   SDValue Cycles64 = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64,
6442                                  Cycles32, DAG.getConstant(0, DL, MVT::i32));
6443   Results.push_back(Cycles64);
6444   Results.push_back(OutChain);
6445 }
6446
6447 SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
6448   switch (Op.getOpcode()) {
6449   default: llvm_unreachable("Don't know how to custom lower this!");
6450   case ISD::WRITE_REGISTER: return LowerWRITE_REGISTER(Op, DAG);
6451   case ISD::ConstantPool:  return LowerConstantPool(Op, DAG);
6452   case ISD::BlockAddress:  return LowerBlockAddress(Op, DAG);
6453   case ISD::GlobalAddress:
6454     switch (Subtarget->getTargetTriple().getObjectFormat()) {
6455     default: llvm_unreachable("unknown object format");
6456     case Triple::COFF:
6457       return LowerGlobalAddressWindows(Op, DAG);
6458     case Triple::ELF:
6459       return LowerGlobalAddressELF(Op, DAG);
6460     case Triple::MachO:
6461       return LowerGlobalAddressDarwin(Op, DAG);
6462     }
6463   case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
6464   case ISD::SELECT:        return LowerSELECT(Op, DAG);
6465   case ISD::SELECT_CC:     return LowerSELECT_CC(Op, DAG);
6466   case ISD::BR_CC:         return LowerBR_CC(Op, DAG);
6467   case ISD::BR_JT:         return LowerBR_JT(Op, DAG);
6468   case ISD::VASTART:       return LowerVASTART(Op, DAG);
6469   case ISD::ATOMIC_FENCE:  return LowerATOMIC_FENCE(Op, DAG, Subtarget);
6470   case ISD::PREFETCH:      return LowerPREFETCH(Op, DAG, Subtarget);
6471   case ISD::SINT_TO_FP:
6472   case ISD::UINT_TO_FP:    return LowerINT_TO_FP(Op, DAG);
6473   case ISD::FP_TO_SINT:
6474   case ISD::FP_TO_UINT:    return LowerFP_TO_INT(Op, DAG);
6475   case ISD::FCOPYSIGN:     return LowerFCOPYSIGN(Op, DAG);
6476   case ISD::RETURNADDR:    return LowerRETURNADDR(Op, DAG);
6477   case ISD::FRAMEADDR:     return LowerFRAMEADDR(Op, DAG);
6478   case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
6479   case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG);
6480   case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG);
6481   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG,
6482                                                                Subtarget);
6483   case ISD::BITCAST:       return ExpandBITCAST(Op.getNode(), DAG);
6484   case ISD::SHL:
6485   case ISD::SRL:
6486   case ISD::SRA:           return LowerShift(Op.getNode(), DAG, Subtarget);
6487   case ISD::SHL_PARTS:     return LowerShiftLeftParts(Op, DAG);
6488   case ISD::SRL_PARTS:
6489   case ISD::SRA_PARTS:     return LowerShiftRightParts(Op, DAG);
6490   case ISD::CTTZ:          return LowerCTTZ(Op.getNode(), DAG, Subtarget);
6491   case ISD::CTPOP:         return LowerCTPOP(Op.getNode(), DAG, Subtarget);
6492   case ISD::SETCC:         return LowerVSETCC(Op, DAG);
6493   case ISD::ConstantFP:    return LowerConstantFP(Op, DAG, Subtarget);
6494   case ISD::BUILD_VECTOR:  return LowerBUILD_VECTOR(Op, DAG, Subtarget);
6495   case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6496   case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6497   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6498   case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
6499   case ISD::FLT_ROUNDS_:   return LowerFLT_ROUNDS_(Op, DAG);
6500   case ISD::MUL:           return LowerMUL(Op, DAG);
6501   case ISD::SDIV:          return LowerSDIV(Op, DAG);
6502   case ISD::UDIV:          return LowerUDIV(Op, DAG);
6503   case ISD::ADDC:
6504   case ISD::ADDE:
6505   case ISD::SUBC:
6506   case ISD::SUBE:          return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
6507   case ISD::SADDO:
6508   case ISD::UADDO:
6509   case ISD::SSUBO:
6510   case ISD::USUBO:
6511     return LowerXALUO(Op, DAG);
6512   case ISD::ATOMIC_LOAD:
6513   case ISD::ATOMIC_STORE:  return LowerAtomicLoadStore(Op, DAG);
6514   case ISD::FSINCOS:       return LowerFSINCOS(Op, DAG);
6515   case ISD::SDIVREM:
6516   case ISD::UDIVREM:       return LowerDivRem(Op, DAG);
6517   case ISD::DYNAMIC_STACKALLOC:
6518     if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
6519       return LowerDYNAMIC_STACKALLOC(Op, DAG);
6520     llvm_unreachable("Don't know how to custom lower this!");
6521   case ISD::FP_ROUND: return LowerFP_ROUND(Op, DAG);
6522   case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
6523   }
6524 }
6525
6526 /// ReplaceNodeResults - Replace the results of node with an illegal result
6527 /// type with new values built out of custom code.
6528 void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
6529                                            SmallVectorImpl<SDValue>&Results,
6530                                            SelectionDAG &DAG) const {
6531   SDValue Res;
6532   switch (N->getOpcode()) {
6533   default:
6534     llvm_unreachable("Don't know how to custom expand this!");
6535   case ISD::READ_REGISTER:
6536     ExpandREAD_REGISTER(N, Results, DAG);
6537     break;
6538   case ISD::BITCAST:
6539     Res = ExpandBITCAST(N, DAG);
6540     break;
6541   case ISD::SRL:
6542   case ISD::SRA:
6543     Res = Expand64BitShift(N, DAG, Subtarget);
6544     break;
6545   case ISD::READCYCLECOUNTER:
6546     ReplaceREADCYCLECOUNTER(N, Results, DAG, Subtarget);
6547     return;
6548   }
6549   if (Res.getNode())
6550     Results.push_back(Res);
6551 }
6552
6553 //===----------------------------------------------------------------------===//
6554 //                           ARM Scheduler Hooks
6555 //===----------------------------------------------------------------------===//
6556
6557 /// SetupEntryBlockForSjLj - Insert code into the entry block that creates and
6558 /// registers the function context.
6559 void ARMTargetLowering::
6560 SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB,
6561                        MachineBasicBlock *DispatchBB, int FI) const {
6562   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
6563   DebugLoc dl = MI->getDebugLoc();
6564   MachineFunction *MF = MBB->getParent();
6565   MachineRegisterInfo *MRI = &MF->getRegInfo();
6566   MachineConstantPool *MCP = MF->getConstantPool();
6567   ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
6568   const Function *F = MF->getFunction();
6569
6570   bool isThumb = Subtarget->isThumb();
6571   bool isThumb2 = Subtarget->isThumb2();
6572
6573   unsigned PCLabelId = AFI->createPICLabelUId();
6574   unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8;
6575   ARMConstantPoolValue *CPV =
6576     ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj);
6577   unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
6578
6579   const TargetRegisterClass *TRC = isThumb ? &ARM::tGPRRegClass
6580                                            : &ARM::GPRRegClass;
6581
6582   // Grab constant pool and fixed stack memory operands.
6583   MachineMemOperand *CPMMO =
6584     MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(),
6585                              MachineMemOperand::MOLoad, 4, 4);
6586
6587   MachineMemOperand *FIMMOSt =
6588     MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
6589                              MachineMemOperand::MOStore, 4, 4);
6590
6591   // Load the address of the dispatch MBB into the jump buffer.
6592   if (isThumb2) {
6593     // Incoming value: jbuf
6594     //   ldr.n  r5, LCPI1_1
6595     //   orr    r5, r5, #1
6596     //   add    r5, pc
6597     //   str    r5, [$jbuf, #+4] ; &jbuf[1]
6598     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6599     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1)
6600                    .addConstantPoolIndex(CPI)
6601                    .addMemOperand(CPMMO));
6602     // Set the low bit because of thumb mode.
6603     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6604     AddDefaultCC(
6605       AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2)
6606                      .addReg(NewVReg1, RegState::Kill)
6607                      .addImm(0x01)));
6608     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6609     BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3)
6610       .addReg(NewVReg2, RegState::Kill)
6611       .addImm(PCLabelId);
6612     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12))
6613                    .addReg(NewVReg3, RegState::Kill)
6614                    .addFrameIndex(FI)
6615                    .addImm(36)  // &jbuf[1] :: pc
6616                    .addMemOperand(FIMMOSt));
6617   } else if (isThumb) {
6618     // Incoming value: jbuf
6619     //   ldr.n  r1, LCPI1_4
6620     //   add    r1, pc
6621     //   mov    r2, #1
6622     //   orrs   r1, r2
6623     //   add    r2, $jbuf, #+4 ; &jbuf[1]
6624     //   str    r1, [r2]
6625     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6626     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1)
6627                    .addConstantPoolIndex(CPI)
6628                    .addMemOperand(CPMMO));
6629     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6630     BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2)
6631       .addReg(NewVReg1, RegState::Kill)
6632       .addImm(PCLabelId);
6633     // Set the low bit because of thumb mode.
6634     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6635     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3)
6636                    .addReg(ARM::CPSR, RegState::Define)
6637                    .addImm(1));
6638     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6639     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4)
6640                    .addReg(ARM::CPSR, RegState::Define)
6641                    .addReg(NewVReg2, RegState::Kill)
6642                    .addReg(NewVReg3, RegState::Kill));
6643     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6644     BuildMI(*MBB, MI, dl, TII->get(ARM::tADDframe), NewVReg5)
6645             .addFrameIndex(FI)
6646             .addImm(36); // &jbuf[1] :: pc
6647     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi))
6648                    .addReg(NewVReg4, RegState::Kill)
6649                    .addReg(NewVReg5, RegState::Kill)
6650                    .addImm(0)
6651                    .addMemOperand(FIMMOSt));
6652   } else {
6653     // Incoming value: jbuf
6654     //   ldr  r1, LCPI1_1
6655     //   add  r1, pc, r1
6656     //   str  r1, [$jbuf, #+4] ; &jbuf[1]
6657     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6658     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12),  NewVReg1)
6659                    .addConstantPoolIndex(CPI)
6660                    .addImm(0)
6661                    .addMemOperand(CPMMO));
6662     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6663     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2)
6664                    .addReg(NewVReg1, RegState::Kill)
6665                    .addImm(PCLabelId));
6666     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12))
6667                    .addReg(NewVReg2, RegState::Kill)
6668                    .addFrameIndex(FI)
6669                    .addImm(36)  // &jbuf[1] :: pc
6670                    .addMemOperand(FIMMOSt));
6671   }
6672 }
6673
6674 void ARMTargetLowering::EmitSjLjDispatchBlock(MachineInstr *MI,
6675                                               MachineBasicBlock *MBB) const {
6676   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
6677   DebugLoc dl = MI->getDebugLoc();
6678   MachineFunction *MF = MBB->getParent();
6679   MachineRegisterInfo *MRI = &MF->getRegInfo();
6680   MachineFrameInfo *MFI = MF->getFrameInfo();
6681   int FI = MFI->getFunctionContextIndex();
6682
6683   const TargetRegisterClass *TRC = Subtarget->isThumb() ? &ARM::tGPRRegClass
6684                                                         : &ARM::GPRnopcRegClass;
6685
6686   // Get a mapping of the call site numbers to all of the landing pads they're
6687   // associated with.
6688   DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad;
6689   unsigned MaxCSNum = 0;
6690   MachineModuleInfo &MMI = MF->getMMI();
6691   for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E;
6692        ++BB) {
6693     if (!BB->isLandingPad()) continue;
6694
6695     // FIXME: We should assert that the EH_LABEL is the first MI in the landing
6696     // pad.
6697     for (MachineBasicBlock::iterator
6698            II = BB->begin(), IE = BB->end(); II != IE; ++II) {
6699       if (!II->isEHLabel()) continue;
6700
6701       MCSymbol *Sym = II->getOperand(0).getMCSymbol();
6702       if (!MMI.hasCallSiteLandingPad(Sym)) continue;
6703
6704       SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym);
6705       for (SmallVectorImpl<unsigned>::iterator
6706              CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end();
6707            CSI != CSE; ++CSI) {
6708         CallSiteNumToLPad[*CSI].push_back(BB);
6709         MaxCSNum = std::max(MaxCSNum, *CSI);
6710       }
6711       break;
6712     }
6713   }
6714
6715   // Get an ordered list of the machine basic blocks for the jump table.
6716   std::vector<MachineBasicBlock*> LPadList;
6717   SmallPtrSet<MachineBasicBlock*, 64> InvokeBBs;
6718   LPadList.reserve(CallSiteNumToLPad.size());
6719   for (unsigned I = 1; I <= MaxCSNum; ++I) {
6720     SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I];
6721     for (SmallVectorImpl<MachineBasicBlock*>::iterator
6722            II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) {
6723       LPadList.push_back(*II);
6724       InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end());
6725     }
6726   }
6727
6728   assert(!LPadList.empty() &&
6729          "No landing pad destinations for the dispatch jump table!");
6730
6731   // Create the jump table and associated information.
6732   MachineJumpTableInfo *JTI =
6733     MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline);
6734   unsigned MJTI = JTI->createJumpTableIndex(LPadList);
6735   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
6736
6737   // Create the MBBs for the dispatch code.
6738
6739   // Shove the dispatch's address into the return slot in the function context.
6740   MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock();
6741   DispatchBB->setIsLandingPad();
6742
6743   MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock();
6744   unsigned trap_opcode;
6745   if (Subtarget->isThumb())
6746     trap_opcode = ARM::tTRAP;
6747   else
6748     trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP;
6749
6750   BuildMI(TrapBB, dl, TII->get(trap_opcode));
6751   DispatchBB->addSuccessor(TrapBB);
6752
6753   MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock();
6754   DispatchBB->addSuccessor(DispContBB);
6755
6756   // Insert and MBBs.
6757   MF->insert(MF->end(), DispatchBB);
6758   MF->insert(MF->end(), DispContBB);
6759   MF->insert(MF->end(), TrapBB);
6760
6761   // Insert code into the entry block that creates and registers the function
6762   // context.
6763   SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI);
6764
6765   MachineMemOperand *FIMMOLd =
6766     MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
6767                              MachineMemOperand::MOLoad |
6768                              MachineMemOperand::MOVolatile, 4, 4);
6769
6770   MachineInstrBuilder MIB;
6771   MIB = BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup));
6772
6773   const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII);
6774   const ARMBaseRegisterInfo &RI = AII->getRegisterInfo();
6775
6776   // Add a register mask with no preserved registers.  This results in all
6777   // registers being marked as clobbered.
6778   MIB.addRegMask(RI.getNoPreservedMask());
6779
6780   unsigned NumLPads = LPadList.size();
6781   if (Subtarget->isThumb2()) {
6782     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6783     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1)
6784                    .addFrameIndex(FI)
6785                    .addImm(4)
6786                    .addMemOperand(FIMMOLd));
6787
6788     if (NumLPads < 256) {
6789       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri))
6790                      .addReg(NewVReg1)
6791                      .addImm(LPadList.size()));
6792     } else {
6793       unsigned VReg1 = MRI->createVirtualRegister(TRC);
6794       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVi16), VReg1)
6795                      .addImm(NumLPads & 0xFFFF));
6796
6797       unsigned VReg2 = VReg1;
6798       if ((NumLPads & 0xFFFF0000) != 0) {
6799         VReg2 = MRI->createVirtualRegister(TRC);
6800         AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVTi16), VReg2)
6801                        .addReg(VReg1)
6802                        .addImm(NumLPads >> 16));
6803       }
6804
6805       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPrr))
6806                      .addReg(NewVReg1)
6807                      .addReg(VReg2));
6808     }
6809
6810     BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc))
6811       .addMBB(TrapBB)
6812       .addImm(ARMCC::HI)
6813       .addReg(ARM::CPSR);
6814
6815     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6816     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg3)
6817                    .addJumpTableIndex(MJTI));
6818
6819     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6820     AddDefaultCC(
6821       AddDefaultPred(
6822         BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg4)
6823         .addReg(NewVReg3, RegState::Kill)
6824         .addReg(NewVReg1)
6825         .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
6826
6827     BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT))
6828       .addReg(NewVReg4, RegState::Kill)
6829       .addReg(NewVReg1)
6830       .addJumpTableIndex(MJTI);
6831   } else if (Subtarget->isThumb()) {
6832     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6833     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1)
6834                    .addFrameIndex(FI)
6835                    .addImm(1)
6836                    .addMemOperand(FIMMOLd));
6837
6838     if (NumLPads < 256) {
6839       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8))
6840                      .addReg(NewVReg1)
6841                      .addImm(NumLPads));
6842     } else {
6843       MachineConstantPool *ConstantPool = MF->getConstantPool();
6844       Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6845       const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
6846
6847       // MachineConstantPool wants an explicit alignment.
6848       unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
6849       if (Align == 0)
6850         Align = getDataLayout()->getTypeAllocSize(C->getType());
6851       unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6852
6853       unsigned VReg1 = MRI->createVirtualRegister(TRC);
6854       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRpci))
6855                      .addReg(VReg1, RegState::Define)
6856                      .addConstantPoolIndex(Idx));
6857       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPr))
6858                      .addReg(NewVReg1)
6859                      .addReg(VReg1));
6860     }
6861
6862     BuildMI(DispatchBB, dl, TII->get(ARM::tBcc))
6863       .addMBB(TrapBB)
6864       .addImm(ARMCC::HI)
6865       .addReg(ARM::CPSR);
6866
6867     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6868     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2)
6869                    .addReg(ARM::CPSR, RegState::Define)
6870                    .addReg(NewVReg1)
6871                    .addImm(2));
6872
6873     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6874     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3)
6875                    .addJumpTableIndex(MJTI));
6876
6877     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6878     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4)
6879                    .addReg(ARM::CPSR, RegState::Define)
6880                    .addReg(NewVReg2, RegState::Kill)
6881                    .addReg(NewVReg3));
6882
6883     MachineMemOperand *JTMMOLd =
6884       MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
6885                                MachineMemOperand::MOLoad, 4, 4);
6886
6887     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6888     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5)
6889                    .addReg(NewVReg4, RegState::Kill)
6890                    .addImm(0)
6891                    .addMemOperand(JTMMOLd));
6892
6893     unsigned NewVReg6 = NewVReg5;
6894     if (RelocM == Reloc::PIC_) {
6895       NewVReg6 = MRI->createVirtualRegister(TRC);
6896       AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6)
6897                      .addReg(ARM::CPSR, RegState::Define)
6898                      .addReg(NewVReg5, RegState::Kill)
6899                      .addReg(NewVReg3));
6900     }
6901
6902     BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr))
6903       .addReg(NewVReg6, RegState::Kill)
6904       .addJumpTableIndex(MJTI);
6905   } else {
6906     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6907     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1)
6908                    .addFrameIndex(FI)
6909                    .addImm(4)
6910                    .addMemOperand(FIMMOLd));
6911
6912     if (NumLPads < 256) {
6913       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri))
6914                      .addReg(NewVReg1)
6915                      .addImm(NumLPads));
6916     } else if (Subtarget->hasV6T2Ops() && isUInt<16>(NumLPads)) {
6917       unsigned VReg1 = MRI->createVirtualRegister(TRC);
6918       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVi16), VReg1)
6919                      .addImm(NumLPads & 0xFFFF));
6920
6921       unsigned VReg2 = VReg1;
6922       if ((NumLPads & 0xFFFF0000) != 0) {
6923         VReg2 = MRI->createVirtualRegister(TRC);
6924         AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVTi16), VReg2)
6925                        .addReg(VReg1)
6926                        .addImm(NumLPads >> 16));
6927       }
6928
6929       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
6930                      .addReg(NewVReg1)
6931                      .addReg(VReg2));
6932     } else {
6933       MachineConstantPool *ConstantPool = MF->getConstantPool();
6934       Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6935       const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
6936
6937       // MachineConstantPool wants an explicit alignment.
6938       unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
6939       if (Align == 0)
6940         Align = getDataLayout()->getTypeAllocSize(C->getType());
6941       unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6942
6943       unsigned VReg1 = MRI->createVirtualRegister(TRC);
6944       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRcp))
6945                      .addReg(VReg1, RegState::Define)
6946                      .addConstantPoolIndex(Idx)
6947                      .addImm(0));
6948       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
6949                      .addReg(NewVReg1)
6950                      .addReg(VReg1, RegState::Kill));
6951     }
6952
6953     BuildMI(DispatchBB, dl, TII->get(ARM::Bcc))
6954       .addMBB(TrapBB)
6955       .addImm(ARMCC::HI)
6956       .addReg(ARM::CPSR);
6957
6958     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6959     AddDefaultCC(
6960       AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg3)
6961                      .addReg(NewVReg1)
6962                      .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
6963     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6964     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg4)
6965                    .addJumpTableIndex(MJTI));
6966
6967     MachineMemOperand *JTMMOLd =
6968       MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
6969                                MachineMemOperand::MOLoad, 4, 4);
6970     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6971     AddDefaultPred(
6972       BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg5)
6973       .addReg(NewVReg3, RegState::Kill)
6974       .addReg(NewVReg4)
6975       .addImm(0)
6976       .addMemOperand(JTMMOLd));
6977
6978     if (RelocM == Reloc::PIC_) {
6979       BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd))
6980         .addReg(NewVReg5, RegState::Kill)
6981         .addReg(NewVReg4)
6982         .addJumpTableIndex(MJTI);
6983     } else {
6984       BuildMI(DispContBB, dl, TII->get(ARM::BR_JTr))
6985         .addReg(NewVReg5, RegState::Kill)
6986         .addJumpTableIndex(MJTI);
6987     }
6988   }
6989
6990   // Add the jump table entries as successors to the MBB.
6991   SmallPtrSet<MachineBasicBlock*, 8> SeenMBBs;
6992   for (std::vector<MachineBasicBlock*>::iterator
6993          I = LPadList.begin(), E = LPadList.end(); I != E; ++I) {
6994     MachineBasicBlock *CurMBB = *I;
6995     if (SeenMBBs.insert(CurMBB).second)
6996       DispContBB->addSuccessor(CurMBB);
6997   }
6998
6999   // N.B. the order the invoke BBs are processed in doesn't matter here.
7000   const MCPhysReg *SavedRegs = RI.getCalleeSavedRegs(MF);
7001   SmallVector<MachineBasicBlock*, 64> MBBLPads;
7002   for (MachineBasicBlock *BB : InvokeBBs) {
7003
7004     // Remove the landing pad successor from the invoke block and replace it
7005     // with the new dispatch block.
7006     SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(),
7007                                                   BB->succ_end());
7008     while (!Successors.empty()) {
7009       MachineBasicBlock *SMBB = Successors.pop_back_val();
7010       if (SMBB->isLandingPad()) {
7011         BB->removeSuccessor(SMBB);
7012         MBBLPads.push_back(SMBB);
7013       }
7014     }
7015
7016     BB->addSuccessor(DispatchBB);
7017
7018     // Find the invoke call and mark all of the callee-saved registers as
7019     // 'implicit defined' so that they're spilled. This prevents code from
7020     // moving instructions to before the EH block, where they will never be
7021     // executed.
7022     for (MachineBasicBlock::reverse_iterator
7023            II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) {
7024       if (!II->isCall()) continue;
7025
7026       DenseMap<unsigned, bool> DefRegs;
7027       for (MachineInstr::mop_iterator
7028              OI = II->operands_begin(), OE = II->operands_end();
7029            OI != OE; ++OI) {
7030         if (!OI->isReg()) continue;
7031         DefRegs[OI->getReg()] = true;
7032       }
7033
7034       MachineInstrBuilder MIB(*MF, &*II);
7035
7036       for (unsigned i = 0; SavedRegs[i] != 0; ++i) {
7037         unsigned Reg = SavedRegs[i];
7038         if (Subtarget->isThumb2() &&
7039             !ARM::tGPRRegClass.contains(Reg) &&
7040             !ARM::hGPRRegClass.contains(Reg))
7041           continue;
7042         if (Subtarget->isThumb1Only() && !ARM::tGPRRegClass.contains(Reg))
7043           continue;
7044         if (!Subtarget->isThumb() && !ARM::GPRRegClass.contains(Reg))
7045           continue;
7046         if (!DefRegs[Reg])
7047           MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);
7048       }
7049
7050       break;
7051     }
7052   }
7053
7054   // Mark all former landing pads as non-landing pads. The dispatch is the only
7055   // landing pad now.
7056   for (SmallVectorImpl<MachineBasicBlock*>::iterator
7057          I = MBBLPads.begin(), E = MBBLPads.end(); I != E; ++I)
7058     (*I)->setIsLandingPad(false);
7059
7060   // The instruction is gone now.
7061   MI->eraseFromParent();
7062 }
7063
7064 static
7065 MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) {
7066   for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
7067        E = MBB->succ_end(); I != E; ++I)
7068     if (*I != Succ)
7069       return *I;
7070   llvm_unreachable("Expecting a BB with two successors!");
7071 }
7072
7073 /// Return the load opcode for a given load size. If load size >= 8,
7074 /// neon opcode will be returned.
7075 static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) {
7076   if (LdSize >= 8)
7077     return LdSize == 16 ? ARM::VLD1q32wb_fixed
7078                         : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0;
7079   if (IsThumb1)
7080     return LdSize == 4 ? ARM::tLDRi
7081                        : LdSize == 2 ? ARM::tLDRHi
7082                                      : LdSize == 1 ? ARM::tLDRBi : 0;
7083   if (IsThumb2)
7084     return LdSize == 4 ? ARM::t2LDR_POST
7085                        : LdSize == 2 ? ARM::t2LDRH_POST
7086                                      : LdSize == 1 ? ARM::t2LDRB_POST : 0;
7087   return LdSize == 4 ? ARM::LDR_POST_IMM
7088                      : LdSize == 2 ? ARM::LDRH_POST
7089                                    : LdSize == 1 ? ARM::LDRB_POST_IMM : 0;
7090 }
7091
7092 /// Return the store opcode for a given store size. If store size >= 8,
7093 /// neon opcode will be returned.
7094 static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) {
7095   if (StSize >= 8)
7096     return StSize == 16 ? ARM::VST1q32wb_fixed
7097                         : StSize == 8 ? ARM::VST1d32wb_fixed : 0;
7098   if (IsThumb1)
7099     return StSize == 4 ? ARM::tSTRi
7100                        : StSize == 2 ? ARM::tSTRHi
7101                                      : StSize == 1 ? ARM::tSTRBi : 0;
7102   if (IsThumb2)
7103     return StSize == 4 ? ARM::t2STR_POST
7104                        : StSize == 2 ? ARM::t2STRH_POST
7105                                      : StSize == 1 ? ARM::t2STRB_POST : 0;
7106   return StSize == 4 ? ARM::STR_POST_IMM
7107                      : StSize == 2 ? ARM::STRH_POST
7108                                    : StSize == 1 ? ARM::STRB_POST_IMM : 0;
7109 }
7110
7111 /// Emit a post-increment load operation with given size. The instructions
7112 /// will be added to BB at Pos.
7113 static void emitPostLd(MachineBasicBlock *BB, MachineInstr *Pos,
7114                        const TargetInstrInfo *TII, DebugLoc dl,
7115                        unsigned LdSize, unsigned Data, unsigned AddrIn,
7116                        unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
7117   unsigned LdOpc = getLdOpcode(LdSize, IsThumb1, IsThumb2);
7118   assert(LdOpc != 0 && "Should have a load opcode");
7119   if (LdSize >= 8) {
7120     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7121                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7122                        .addImm(0));
7123   } else if (IsThumb1) {
7124     // load + update AddrIn
7125     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7126                        .addReg(AddrIn).addImm(0));
7127     MachineInstrBuilder MIB =
7128         BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
7129     MIB = AddDefaultT1CC(MIB);
7130     MIB.addReg(AddrIn).addImm(LdSize);
7131     AddDefaultPred(MIB);
7132   } else if (IsThumb2) {
7133     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7134                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7135                        .addImm(LdSize));
7136   } else { // arm
7137     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7138                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7139                        .addReg(0).addImm(LdSize));
7140   }
7141 }
7142
7143 /// Emit a post-increment store operation with given size. The instructions
7144 /// will be added to BB at Pos.
7145 static void emitPostSt(MachineBasicBlock *BB, MachineInstr *Pos,
7146                        const TargetInstrInfo *TII, DebugLoc dl,
7147                        unsigned StSize, unsigned Data, unsigned AddrIn,
7148                        unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
7149   unsigned StOpc = getStOpcode(StSize, IsThumb1, IsThumb2);
7150   assert(StOpc != 0 && "Should have a store opcode");
7151   if (StSize >= 8) {
7152     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7153                        .addReg(AddrIn).addImm(0).addReg(Data));
7154   } else if (IsThumb1) {
7155     // store + update AddrIn
7156     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc)).addReg(Data)
7157                        .addReg(AddrIn).addImm(0));
7158     MachineInstrBuilder MIB =
7159         BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
7160     MIB = AddDefaultT1CC(MIB);
7161     MIB.addReg(AddrIn).addImm(StSize);
7162     AddDefaultPred(MIB);
7163   } else if (IsThumb2) {
7164     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7165                        .addReg(Data).addReg(AddrIn).addImm(StSize));
7166   } else { // arm
7167     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7168                        .addReg(Data).addReg(AddrIn).addReg(0)
7169                        .addImm(StSize));
7170   }
7171 }
7172
7173 MachineBasicBlock *
7174 ARMTargetLowering::EmitStructByval(MachineInstr *MI,
7175                                    MachineBasicBlock *BB) const {
7176   // This pseudo instruction has 3 operands: dst, src, size
7177   // We expand it to a loop if size > Subtarget->getMaxInlineSizeThreshold().
7178   // Otherwise, we will generate unrolled scalar copies.
7179   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
7180   const BasicBlock *LLVM_BB = BB->getBasicBlock();
7181   MachineFunction::iterator It = BB;
7182   ++It;
7183
7184   unsigned dest = MI->getOperand(0).getReg();
7185   unsigned src = MI->getOperand(1).getReg();
7186   unsigned SizeVal = MI->getOperand(2).getImm();
7187   unsigned Align = MI->getOperand(3).getImm();
7188   DebugLoc dl = MI->getDebugLoc();
7189
7190   MachineFunction *MF = BB->getParent();
7191   MachineRegisterInfo &MRI = MF->getRegInfo();
7192   unsigned UnitSize = 0;
7193   const TargetRegisterClass *TRC = nullptr;
7194   const TargetRegisterClass *VecTRC = nullptr;
7195
7196   bool IsThumb1 = Subtarget->isThumb1Only();
7197   bool IsThumb2 = Subtarget->isThumb2();
7198
7199   if (Align & 1) {
7200     UnitSize = 1;
7201   } else if (Align & 2) {
7202     UnitSize = 2;
7203   } else {
7204     // Check whether we can use NEON instructions.
7205     if (!MF->getFunction()->hasFnAttribute(Attribute::NoImplicitFloat) &&
7206         Subtarget->hasNEON()) {
7207       if ((Align % 16 == 0) && SizeVal >= 16)
7208         UnitSize = 16;
7209       else if ((Align % 8 == 0) && SizeVal >= 8)
7210         UnitSize = 8;
7211     }
7212     // Can't use NEON instructions.
7213     if (UnitSize == 0)
7214       UnitSize = 4;
7215   }
7216
7217   // Select the correct opcode and register class for unit size load/store
7218   bool IsNeon = UnitSize >= 8;
7219   TRC = (IsThumb1 || IsThumb2) ? &ARM::tGPRRegClass : &ARM::GPRRegClass;
7220   if (IsNeon)
7221     VecTRC = UnitSize == 16 ? &ARM::DPairRegClass
7222                             : UnitSize == 8 ? &ARM::DPRRegClass
7223                                             : nullptr;
7224
7225   unsigned BytesLeft = SizeVal % UnitSize;
7226   unsigned LoopSize = SizeVal - BytesLeft;
7227
7228   if (SizeVal <= Subtarget->getMaxInlineSizeThreshold()) {
7229     // Use LDR and STR to copy.
7230     // [scratch, srcOut] = LDR_POST(srcIn, UnitSize)
7231     // [destOut] = STR_POST(scratch, destIn, UnitSize)
7232     unsigned srcIn = src;
7233     unsigned destIn = dest;
7234     for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
7235       unsigned srcOut = MRI.createVirtualRegister(TRC);
7236       unsigned destOut = MRI.createVirtualRegister(TRC);
7237       unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
7238       emitPostLd(BB, MI, TII, dl, UnitSize, scratch, srcIn, srcOut,
7239                  IsThumb1, IsThumb2);
7240       emitPostSt(BB, MI, TII, dl, UnitSize, scratch, destIn, destOut,
7241                  IsThumb1, IsThumb2);
7242       srcIn = srcOut;
7243       destIn = destOut;
7244     }
7245
7246     // Handle the leftover bytes with LDRB and STRB.
7247     // [scratch, srcOut] = LDRB_POST(srcIn, 1)
7248     // [destOut] = STRB_POST(scratch, destIn, 1)
7249     for (unsigned i = 0; i < BytesLeft; i++) {
7250       unsigned srcOut = MRI.createVirtualRegister(TRC);
7251       unsigned destOut = MRI.createVirtualRegister(TRC);
7252       unsigned scratch = MRI.createVirtualRegister(TRC);
7253       emitPostLd(BB, MI, TII, dl, 1, scratch, srcIn, srcOut,
7254                  IsThumb1, IsThumb2);
7255       emitPostSt(BB, MI, TII, dl, 1, scratch, destIn, destOut,
7256                  IsThumb1, IsThumb2);
7257       srcIn = srcOut;
7258       destIn = destOut;
7259     }
7260     MI->eraseFromParent();   // The instruction is gone now.
7261     return BB;
7262   }
7263
7264   // Expand the pseudo op to a loop.
7265   // thisMBB:
7266   //   ...
7267   //   movw varEnd, # --> with thumb2
7268   //   movt varEnd, #
7269   //   ldrcp varEnd, idx --> without thumb2
7270   //   fallthrough --> loopMBB
7271   // loopMBB:
7272   //   PHI varPhi, varEnd, varLoop
7273   //   PHI srcPhi, src, srcLoop
7274   //   PHI destPhi, dst, destLoop
7275   //   [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7276   //   [destLoop] = STR_POST(scratch, destPhi, UnitSize)
7277   //   subs varLoop, varPhi, #UnitSize
7278   //   bne loopMBB
7279   //   fallthrough --> exitMBB
7280   // exitMBB:
7281   //   epilogue to handle left-over bytes
7282   //   [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7283   //   [destOut] = STRB_POST(scratch, destLoop, 1)
7284   MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7285   MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7286   MF->insert(It, loopMBB);
7287   MF->insert(It, exitMBB);
7288
7289   // Transfer the remainder of BB and its successor edges to exitMBB.
7290   exitMBB->splice(exitMBB->begin(), BB,
7291                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
7292   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
7293
7294   // Load an immediate to varEnd.
7295   unsigned varEnd = MRI.createVirtualRegister(TRC);
7296   if (Subtarget->useMovt(*MF)) {
7297     unsigned Vtmp = varEnd;
7298     if ((LoopSize & 0xFFFF0000) != 0)
7299       Vtmp = MRI.createVirtualRegister(TRC);
7300     AddDefaultPred(BuildMI(BB, dl,
7301                            TII->get(IsThumb2 ? ARM::t2MOVi16 : ARM::MOVi16),
7302                            Vtmp).addImm(LoopSize & 0xFFFF));
7303
7304     if ((LoopSize & 0xFFFF0000) != 0)
7305       AddDefaultPred(BuildMI(BB, dl,
7306                              TII->get(IsThumb2 ? ARM::t2MOVTi16 : ARM::MOVTi16),
7307                              varEnd)
7308                          .addReg(Vtmp)
7309                          .addImm(LoopSize >> 16));
7310   } else {
7311     MachineConstantPool *ConstantPool = MF->getConstantPool();
7312     Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7313     const Constant *C = ConstantInt::get(Int32Ty, LoopSize);
7314
7315     // MachineConstantPool wants an explicit alignment.
7316     unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
7317     if (Align == 0)
7318       Align = getDataLayout()->getTypeAllocSize(C->getType());
7319     unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7320
7321     if (IsThumb1)
7322       AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::tLDRpci)).addReg(
7323           varEnd, RegState::Define).addConstantPoolIndex(Idx));
7324     else
7325       AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::LDRcp)).addReg(
7326           varEnd, RegState::Define).addConstantPoolIndex(Idx).addImm(0));
7327   }
7328   BB->addSuccessor(loopMBB);
7329
7330   // Generate the loop body:
7331   //   varPhi = PHI(varLoop, varEnd)
7332   //   srcPhi = PHI(srcLoop, src)
7333   //   destPhi = PHI(destLoop, dst)
7334   MachineBasicBlock *entryBB = BB;
7335   BB = loopMBB;
7336   unsigned varLoop = MRI.createVirtualRegister(TRC);
7337   unsigned varPhi = MRI.createVirtualRegister(TRC);
7338   unsigned srcLoop = MRI.createVirtualRegister(TRC);
7339   unsigned srcPhi = MRI.createVirtualRegister(TRC);
7340   unsigned destLoop = MRI.createVirtualRegister(TRC);
7341   unsigned destPhi = MRI.createVirtualRegister(TRC);
7342
7343   BuildMI(*BB, BB->begin(), dl, TII->get(ARM::PHI), varPhi)
7344     .addReg(varLoop).addMBB(loopMBB)
7345     .addReg(varEnd).addMBB(entryBB);
7346   BuildMI(BB, dl, TII->get(ARM::PHI), srcPhi)
7347     .addReg(srcLoop).addMBB(loopMBB)
7348     .addReg(src).addMBB(entryBB);
7349   BuildMI(BB, dl, TII->get(ARM::PHI), destPhi)
7350     .addReg(destLoop).addMBB(loopMBB)
7351     .addReg(dest).addMBB(entryBB);
7352
7353   //   [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7354   //   [destLoop] = STR_POST(scratch, destPhi, UnitSiz)
7355   unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
7356   emitPostLd(BB, BB->end(), TII, dl, UnitSize, scratch, srcPhi, srcLoop,
7357              IsThumb1, IsThumb2);
7358   emitPostSt(BB, BB->end(), TII, dl, UnitSize, scratch, destPhi, destLoop,
7359              IsThumb1, IsThumb2);
7360
7361   // Decrement loop variable by UnitSize.
7362   if (IsThumb1) {
7363     MachineInstrBuilder MIB =
7364         BuildMI(*BB, BB->end(), dl, TII->get(ARM::tSUBi8), varLoop);
7365     MIB = AddDefaultT1CC(MIB);
7366     MIB.addReg(varPhi).addImm(UnitSize);
7367     AddDefaultPred(MIB);
7368   } else {
7369     MachineInstrBuilder MIB =
7370         BuildMI(*BB, BB->end(), dl,
7371                 TII->get(IsThumb2 ? ARM::t2SUBri : ARM::SUBri), varLoop);
7372     AddDefaultCC(AddDefaultPred(MIB.addReg(varPhi).addImm(UnitSize)));
7373     MIB->getOperand(5).setReg(ARM::CPSR);
7374     MIB->getOperand(5).setIsDef(true);
7375   }
7376   BuildMI(*BB, BB->end(), dl,
7377           TII->get(IsThumb1 ? ARM::tBcc : IsThumb2 ? ARM::t2Bcc : ARM::Bcc))
7378       .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
7379
7380   // loopMBB can loop back to loopMBB or fall through to exitMBB.
7381   BB->addSuccessor(loopMBB);
7382   BB->addSuccessor(exitMBB);
7383
7384   // Add epilogue to handle BytesLeft.
7385   BB = exitMBB;
7386   MachineInstr *StartOfExit = exitMBB->begin();
7387
7388   //   [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7389   //   [destOut] = STRB_POST(scratch, destLoop, 1)
7390   unsigned srcIn = srcLoop;
7391   unsigned destIn = destLoop;
7392   for (unsigned i = 0; i < BytesLeft; i++) {
7393     unsigned srcOut = MRI.createVirtualRegister(TRC);
7394     unsigned destOut = MRI.createVirtualRegister(TRC);
7395     unsigned scratch = MRI.createVirtualRegister(TRC);
7396     emitPostLd(BB, StartOfExit, TII, dl, 1, scratch, srcIn, srcOut,
7397                IsThumb1, IsThumb2);
7398     emitPostSt(BB, StartOfExit, TII, dl, 1, scratch, destIn, destOut,
7399                IsThumb1, IsThumb2);
7400     srcIn = srcOut;
7401     destIn = destOut;
7402   }
7403
7404   MI->eraseFromParent();   // The instruction is gone now.
7405   return BB;
7406 }
7407
7408 MachineBasicBlock *
7409 ARMTargetLowering::EmitLowered__chkstk(MachineInstr *MI,
7410                                        MachineBasicBlock *MBB) const {
7411   const TargetMachine &TM = getTargetMachine();
7412   const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
7413   DebugLoc DL = MI->getDebugLoc();
7414
7415   assert(Subtarget->isTargetWindows() &&
7416          "__chkstk is only supported on Windows");
7417   assert(Subtarget->isThumb2() && "Windows on ARM requires Thumb-2 mode");
7418
7419   // __chkstk takes the number of words to allocate on the stack in R4, and
7420   // returns the stack adjustment in number of bytes in R4.  This will not
7421   // clober any other registers (other than the obvious lr).
7422   //
7423   // Although, technically, IP should be considered a register which may be
7424   // clobbered, the call itself will not touch it.  Windows on ARM is a pure
7425   // thumb-2 environment, so there is no interworking required.  As a result, we
7426   // do not expect a veneer to be emitted by the linker, clobbering IP.
7427   //
7428   // Each module receives its own copy of __chkstk, so no import thunk is
7429   // required, again, ensuring that IP is not clobbered.
7430   //
7431   // Finally, although some linkers may theoretically provide a trampoline for
7432   // out of range calls (which is quite common due to a 32M range limitation of
7433   // branches for Thumb), we can generate the long-call version via
7434   // -mcmodel=large, alleviating the need for the trampoline which may clobber
7435   // IP.
7436
7437   switch (TM.getCodeModel()) {
7438   case CodeModel::Small:
7439   case CodeModel::Medium:
7440   case CodeModel::Default:
7441   case CodeModel::Kernel:
7442     BuildMI(*MBB, MI, DL, TII.get(ARM::tBL))
7443       .addImm((unsigned)ARMCC::AL).addReg(0)
7444       .addExternalSymbol("__chkstk")
7445       .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7446       .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7447       .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7448     break;
7449   case CodeModel::Large:
7450   case CodeModel::JITDefault: {
7451     MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
7452     unsigned Reg = MRI.createVirtualRegister(&ARM::rGPRRegClass);
7453
7454     BuildMI(*MBB, MI, DL, TII.get(ARM::t2MOVi32imm), Reg)
7455       .addExternalSymbol("__chkstk");
7456     BuildMI(*MBB, MI, DL, TII.get(ARM::tBLXr))
7457       .addImm((unsigned)ARMCC::AL).addReg(0)
7458       .addReg(Reg, RegState::Kill)
7459       .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7460       .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7461       .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7462     break;
7463   }
7464   }
7465
7466   AddDefaultCC(AddDefaultPred(BuildMI(*MBB, MI, DL, TII.get(ARM::t2SUBrr),
7467                                       ARM::SP)
7468                               .addReg(ARM::SP).addReg(ARM::R4)));
7469
7470   MI->eraseFromParent();
7471   return MBB;
7472 }
7473
7474 MachineBasicBlock *
7475 ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
7476                                                MachineBasicBlock *BB) const {
7477   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
7478   DebugLoc dl = MI->getDebugLoc();
7479   bool isThumb2 = Subtarget->isThumb2();
7480   switch (MI->getOpcode()) {
7481   default: {
7482     MI->dump();
7483     llvm_unreachable("Unexpected instr type to insert");
7484   }
7485   // The Thumb2 pre-indexed stores have the same MI operands, they just
7486   // define them differently in the .td files from the isel patterns, so
7487   // they need pseudos.
7488   case ARM::t2STR_preidx:
7489     MI->setDesc(TII->get(ARM::t2STR_PRE));
7490     return BB;
7491   case ARM::t2STRB_preidx:
7492     MI->setDesc(TII->get(ARM::t2STRB_PRE));
7493     return BB;
7494   case ARM::t2STRH_preidx:
7495     MI->setDesc(TII->get(ARM::t2STRH_PRE));
7496     return BB;
7497
7498   case ARM::STRi_preidx:
7499   case ARM::STRBi_preidx: {
7500     unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ?
7501       ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM;
7502     // Decode the offset.
7503     unsigned Offset = MI->getOperand(4).getImm();
7504     bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub;
7505     Offset = ARM_AM::getAM2Offset(Offset);
7506     if (isSub)
7507       Offset = -Offset;
7508
7509     MachineMemOperand *MMO = *MI->memoperands_begin();
7510     BuildMI(*BB, MI, dl, TII->get(NewOpc))
7511       .addOperand(MI->getOperand(0))  // Rn_wb
7512       .addOperand(MI->getOperand(1))  // Rt
7513       .addOperand(MI->getOperand(2))  // Rn
7514       .addImm(Offset)                 // offset (skip GPR==zero_reg)
7515       .addOperand(MI->getOperand(5))  // pred
7516       .addOperand(MI->getOperand(6))
7517       .addMemOperand(MMO);
7518     MI->eraseFromParent();
7519     return BB;
7520   }
7521   case ARM::STRr_preidx:
7522   case ARM::STRBr_preidx:
7523   case ARM::STRH_preidx: {
7524     unsigned NewOpc;
7525     switch (MI->getOpcode()) {
7526     default: llvm_unreachable("unexpected opcode!");
7527     case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break;
7528     case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break;
7529     case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break;
7530     }
7531     MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc));
7532     for (unsigned i = 0; i < MI->getNumOperands(); ++i)
7533       MIB.addOperand(MI->getOperand(i));
7534     MI->eraseFromParent();
7535     return BB;
7536   }
7537
7538   case ARM::tMOVCCr_pseudo: {
7539     // To "insert" a SELECT_CC instruction, we actually have to insert the
7540     // diamond control-flow pattern.  The incoming instruction knows the
7541     // destination vreg to set, the condition code register to branch on, the
7542     // true/false values to select between, and a branch opcode to use.
7543     const BasicBlock *LLVM_BB = BB->getBasicBlock();
7544     MachineFunction::iterator It = BB;
7545     ++It;
7546
7547     //  thisMBB:
7548     //  ...
7549     //   TrueVal = ...
7550     //   cmpTY ccX, r1, r2
7551     //   bCC copy1MBB
7552     //   fallthrough --> copy0MBB
7553     MachineBasicBlock *thisMBB  = BB;
7554     MachineFunction *F = BB->getParent();
7555     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7556     MachineBasicBlock *sinkMBB  = F->CreateMachineBasicBlock(LLVM_BB);
7557     F->insert(It, copy0MBB);
7558     F->insert(It, sinkMBB);
7559
7560     // Transfer the remainder of BB and its successor edges to sinkMBB.
7561     sinkMBB->splice(sinkMBB->begin(), BB,
7562                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
7563     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7564
7565     BB->addSuccessor(copy0MBB);
7566     BB->addSuccessor(sinkMBB);
7567
7568     BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
7569       .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
7570
7571     //  copy0MBB:
7572     //   %FalseValue = ...
7573     //   # fallthrough to sinkMBB
7574     BB = copy0MBB;
7575
7576     // Update machine-CFG edges
7577     BB->addSuccessor(sinkMBB);
7578
7579     //  sinkMBB:
7580     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7581     //  ...
7582     BB = sinkMBB;
7583     BuildMI(*BB, BB->begin(), dl,
7584             TII->get(ARM::PHI), MI->getOperand(0).getReg())
7585       .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7586       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7587
7588     MI->eraseFromParent();   // The pseudo instruction is gone now.
7589     return BB;
7590   }
7591
7592   case ARM::BCCi64:
7593   case ARM::BCCZi64: {
7594     // If there is an unconditional branch to the other successor, remove it.
7595     BB->erase(std::next(MachineBasicBlock::iterator(MI)), BB->end());
7596
7597     // Compare both parts that make up the double comparison separately for
7598     // equality.
7599     bool RHSisZero = MI->getOpcode() == ARM::BCCZi64;
7600
7601     unsigned LHS1 = MI->getOperand(1).getReg();
7602     unsigned LHS2 = MI->getOperand(2).getReg();
7603     if (RHSisZero) {
7604       AddDefaultPred(BuildMI(BB, dl,
7605                              TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7606                      .addReg(LHS1).addImm(0));
7607       BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7608         .addReg(LHS2).addImm(0)
7609         .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7610     } else {
7611       unsigned RHS1 = MI->getOperand(3).getReg();
7612       unsigned RHS2 = MI->getOperand(4).getReg();
7613       AddDefaultPred(BuildMI(BB, dl,
7614                              TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7615                      .addReg(LHS1).addReg(RHS1));
7616       BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7617         .addReg(LHS2).addReg(RHS2)
7618         .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7619     }
7620
7621     MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB();
7622     MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
7623     if (MI->getOperand(0).getImm() == ARMCC::NE)
7624       std::swap(destMBB, exitMBB);
7625
7626     BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
7627       .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR);
7628     if (isThumb2)
7629       AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB));
7630     else
7631       BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB);
7632
7633     MI->eraseFromParent();   // The pseudo instruction is gone now.
7634     return BB;
7635   }
7636
7637   case ARM::Int_eh_sjlj_setjmp:
7638   case ARM::Int_eh_sjlj_setjmp_nofp:
7639   case ARM::tInt_eh_sjlj_setjmp:
7640   case ARM::t2Int_eh_sjlj_setjmp:
7641   case ARM::t2Int_eh_sjlj_setjmp_nofp:
7642     EmitSjLjDispatchBlock(MI, BB);
7643     return BB;
7644
7645   case ARM::ABS:
7646   case ARM::t2ABS: {
7647     // To insert an ABS instruction, we have to insert the
7648     // diamond control-flow pattern.  The incoming instruction knows the
7649     // source vreg to test against 0, the destination vreg to set,
7650     // the condition code register to branch on, the
7651     // true/false values to select between, and a branch opcode to use.
7652     // It transforms
7653     //     V1 = ABS V0
7654     // into
7655     //     V2 = MOVS V0
7656     //     BCC                      (branch to SinkBB if V0 >= 0)
7657     //     RSBBB: V3 = RSBri V2, 0  (compute ABS if V2 < 0)
7658     //     SinkBB: V1 = PHI(V2, V3)
7659     const BasicBlock *LLVM_BB = BB->getBasicBlock();
7660     MachineFunction::iterator BBI = BB;
7661     ++BBI;
7662     MachineFunction *Fn = BB->getParent();
7663     MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB);
7664     MachineBasicBlock *SinkBB  = Fn->CreateMachineBasicBlock(LLVM_BB);
7665     Fn->insert(BBI, RSBBB);
7666     Fn->insert(BBI, SinkBB);
7667
7668     unsigned int ABSSrcReg = MI->getOperand(1).getReg();
7669     unsigned int ABSDstReg = MI->getOperand(0).getReg();
7670     bool ABSSrcKIll = MI->getOperand(1).isKill();
7671     bool isThumb2 = Subtarget->isThumb2();
7672     MachineRegisterInfo &MRI = Fn->getRegInfo();
7673     // In Thumb mode S must not be specified if source register is the SP or
7674     // PC and if destination register is the SP, so restrict register class
7675     unsigned NewRsbDstReg =
7676       MRI.createVirtualRegister(isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRRegClass);
7677
7678     // Transfer the remainder of BB and its successor edges to sinkMBB.
7679     SinkBB->splice(SinkBB->begin(), BB,
7680                    std::next(MachineBasicBlock::iterator(MI)), BB->end());
7681     SinkBB->transferSuccessorsAndUpdatePHIs(BB);
7682
7683     BB->addSuccessor(RSBBB);
7684     BB->addSuccessor(SinkBB);
7685
7686     // fall through to SinkMBB
7687     RSBBB->addSuccessor(SinkBB);
7688
7689     // insert a cmp at the end of BB
7690     AddDefaultPred(BuildMI(BB, dl,
7691                            TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7692                    .addReg(ABSSrcReg).addImm(0));
7693
7694     // insert a bcc with opposite CC to ARMCC::MI at the end of BB
7695     BuildMI(BB, dl,
7696       TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB)
7697       .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR);
7698
7699     // insert rsbri in RSBBB
7700     // Note: BCC and rsbri will be converted into predicated rsbmi
7701     // by if-conversion pass
7702     BuildMI(*RSBBB, RSBBB->begin(), dl,
7703       TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg)
7704       .addReg(ABSSrcReg, ABSSrcKIll ? RegState::Kill : 0)
7705       .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
7706
7707     // insert PHI in SinkBB,
7708     // reuse ABSDstReg to not change uses of ABS instruction
7709     BuildMI(*SinkBB, SinkBB->begin(), dl,
7710       TII->get(ARM::PHI), ABSDstReg)
7711       .addReg(NewRsbDstReg).addMBB(RSBBB)
7712       .addReg(ABSSrcReg).addMBB(BB);
7713
7714     // remove ABS instruction
7715     MI->eraseFromParent();
7716
7717     // return last added BB
7718     return SinkBB;
7719   }
7720   case ARM::COPY_STRUCT_BYVAL_I32:
7721     ++NumLoopByVals;
7722     return EmitStructByval(MI, BB);
7723   case ARM::WIN__CHKSTK:
7724     return EmitLowered__chkstk(MI, BB);
7725   }
7726 }
7727
7728 void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI,
7729                                                       SDNode *Node) const {
7730   const MCInstrDesc *MCID = &MI->getDesc();
7731   // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB,
7732   // RSC. Coming out of isel, they have an implicit CPSR def, but the optional
7733   // operand is still set to noreg. If needed, set the optional operand's
7734   // register to CPSR, and remove the redundant implicit def.
7735   //
7736   // e.g. ADCS (..., CPSR<imp-def>) -> ADC (... opt:CPSR<def>).
7737
7738   // Rename pseudo opcodes.
7739   unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode());
7740   if (NewOpc) {
7741     const ARMBaseInstrInfo *TII = Subtarget->getInstrInfo();
7742     MCID = &TII->get(NewOpc);
7743
7744     assert(MCID->getNumOperands() == MI->getDesc().getNumOperands() + 1 &&
7745            "converted opcode should be the same except for cc_out");
7746
7747     MI->setDesc(*MCID);
7748
7749     // Add the optional cc_out operand
7750     MI->addOperand(MachineOperand::CreateReg(0, /*isDef=*/true));
7751   }
7752   unsigned ccOutIdx = MCID->getNumOperands() - 1;
7753
7754   // Any ARM instruction that sets the 's' bit should specify an optional
7755   // "cc_out" operand in the last operand position.
7756   if (!MI->hasOptionalDef() || !MCID->OpInfo[ccOutIdx].isOptionalDef()) {
7757     assert(!NewOpc && "Optional cc_out operand required");
7758     return;
7759   }
7760   // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it
7761   // since we already have an optional CPSR def.
7762   bool definesCPSR = false;
7763   bool deadCPSR = false;
7764   for (unsigned i = MCID->getNumOperands(), e = MI->getNumOperands();
7765        i != e; ++i) {
7766     const MachineOperand &MO = MI->getOperand(i);
7767     if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) {
7768       definesCPSR = true;
7769       if (MO.isDead())
7770         deadCPSR = true;
7771       MI->RemoveOperand(i);
7772       break;
7773     }
7774   }
7775   if (!definesCPSR) {
7776     assert(!NewOpc && "Optional cc_out operand required");
7777     return;
7778   }
7779   assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag");
7780   if (deadCPSR) {
7781     assert(!MI->getOperand(ccOutIdx).getReg() &&
7782            "expect uninitialized optional cc_out operand");
7783     return;
7784   }
7785
7786   // If this instruction was defined with an optional CPSR def and its dag node
7787   // had a live implicit CPSR def, then activate the optional CPSR def.
7788   MachineOperand &MO = MI->getOperand(ccOutIdx);
7789   MO.setReg(ARM::CPSR);
7790   MO.setIsDef(true);
7791 }
7792
7793 //===----------------------------------------------------------------------===//
7794 //                           ARM Optimization Hooks
7795 //===----------------------------------------------------------------------===//
7796
7797 // Helper function that checks if N is a null or all ones constant.
7798 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) {
7799   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N);
7800   if (!C)
7801     return false;
7802   return AllOnes ? C->isAllOnesValue() : C->isNullValue();
7803 }
7804
7805 // Return true if N is conditionally 0 or all ones.
7806 // Detects these expressions where cc is an i1 value:
7807 //
7808 //   (select cc 0, y)   [AllOnes=0]
7809 //   (select cc y, 0)   [AllOnes=0]
7810 //   (zext cc)          [AllOnes=0]
7811 //   (sext cc)          [AllOnes=0/1]
7812 //   (select cc -1, y)  [AllOnes=1]
7813 //   (select cc y, -1)  [AllOnes=1]
7814 //
7815 // Invert is set when N is the null/all ones constant when CC is false.
7816 // OtherOp is set to the alternative value of N.
7817 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes,
7818                                        SDValue &CC, bool &Invert,
7819                                        SDValue &OtherOp,
7820                                        SelectionDAG &DAG) {
7821   switch (N->getOpcode()) {
7822   default: return false;
7823   case ISD::SELECT: {
7824     CC = N->getOperand(0);
7825     SDValue N1 = N->getOperand(1);
7826     SDValue N2 = N->getOperand(2);
7827     if (isZeroOrAllOnes(N1, AllOnes)) {
7828       Invert = false;
7829       OtherOp = N2;
7830       return true;
7831     }
7832     if (isZeroOrAllOnes(N2, AllOnes)) {
7833       Invert = true;
7834       OtherOp = N1;
7835       return true;
7836     }
7837     return false;
7838   }
7839   case ISD::ZERO_EXTEND:
7840     // (zext cc) can never be the all ones value.
7841     if (AllOnes)
7842       return false;
7843     // Fall through.
7844   case ISD::SIGN_EXTEND: {
7845     SDLoc dl(N);
7846     EVT VT = N->getValueType(0);
7847     CC = N->getOperand(0);
7848     if (CC.getValueType() != MVT::i1)
7849       return false;
7850     Invert = !AllOnes;
7851     if (AllOnes)
7852       // When looking for an AllOnes constant, N is an sext, and the 'other'
7853       // value is 0.
7854       OtherOp = DAG.getConstant(0, dl, VT);
7855     else if (N->getOpcode() == ISD::ZERO_EXTEND)
7856       // When looking for a 0 constant, N can be zext or sext.
7857       OtherOp = DAG.getConstant(1, dl, VT);
7858     else
7859       OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl,
7860                                 VT);
7861     return true;
7862   }
7863   }
7864 }
7865
7866 // Combine a constant select operand into its use:
7867 //
7868 //   (add (select cc, 0, c), x)  -> (select cc, x, (add, x, c))
7869 //   (sub x, (select cc, 0, c))  -> (select cc, x, (sub, x, c))
7870 //   (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))  [AllOnes=1]
7871 //   (or  (select cc, 0, c), x)  -> (select cc, x, (or, x, c))
7872 //   (xor (select cc, 0, c), x)  -> (select cc, x, (xor, x, c))
7873 //
7874 // The transform is rejected if the select doesn't have a constant operand that
7875 // is null, or all ones when AllOnes is set.
7876 //
7877 // Also recognize sext/zext from i1:
7878 //
7879 //   (add (zext cc), x) -> (select cc (add x, 1), x)
7880 //   (add (sext cc), x) -> (select cc (add x, -1), x)
7881 //
7882 // These transformations eventually create predicated instructions.
7883 //
7884 // @param N       The node to transform.
7885 // @param Slct    The N operand that is a select.
7886 // @param OtherOp The other N operand (x above).
7887 // @param DCI     Context.
7888 // @param AllOnes Require the select constant to be all ones instead of null.
7889 // @returns The new node, or SDValue() on failure.
7890 static
7891 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
7892                             TargetLowering::DAGCombinerInfo &DCI,
7893                             bool AllOnes = false) {
7894   SelectionDAG &DAG = DCI.DAG;
7895   EVT VT = N->getValueType(0);
7896   SDValue NonConstantVal;
7897   SDValue CCOp;
7898   bool SwapSelectOps;
7899   if (!isConditionalZeroOrAllOnes(Slct.getNode(), AllOnes, CCOp, SwapSelectOps,
7900                                   NonConstantVal, DAG))
7901     return SDValue();
7902
7903   // Slct is now know to be the desired identity constant when CC is true.
7904   SDValue TrueVal = OtherOp;
7905   SDValue FalseVal = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
7906                                  OtherOp, NonConstantVal);
7907   // Unless SwapSelectOps says CC should be false.
7908   if (SwapSelectOps)
7909     std::swap(TrueVal, FalseVal);
7910
7911   return DAG.getNode(ISD::SELECT, SDLoc(N), VT,
7912                      CCOp, TrueVal, FalseVal);
7913 }
7914
7915 // Attempt combineSelectAndUse on each operand of a commutative operator N.
7916 static
7917 SDValue combineSelectAndUseCommutative(SDNode *N, bool AllOnes,
7918                                        TargetLowering::DAGCombinerInfo &DCI) {
7919   SDValue N0 = N->getOperand(0);
7920   SDValue N1 = N->getOperand(1);
7921   if (N0.getNode()->hasOneUse()) {
7922     SDValue Result = combineSelectAndUse(N, N0, N1, DCI, AllOnes);
7923     if (Result.getNode())
7924       return Result;
7925   }
7926   if (N1.getNode()->hasOneUse()) {
7927     SDValue Result = combineSelectAndUse(N, N1, N0, DCI, AllOnes);
7928     if (Result.getNode())
7929       return Result;
7930   }
7931   return SDValue();
7932 }
7933
7934 // AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction
7935 // (only after legalization).
7936 static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1,
7937                                  TargetLowering::DAGCombinerInfo &DCI,
7938                                  const ARMSubtarget *Subtarget) {
7939
7940   // Only perform optimization if after legalize, and if NEON is available. We
7941   // also expected both operands to be BUILD_VECTORs.
7942   if (DCI.isBeforeLegalize() || !Subtarget->hasNEON()
7943       || N0.getOpcode() != ISD::BUILD_VECTOR
7944       || N1.getOpcode() != ISD::BUILD_VECTOR)
7945     return SDValue();
7946
7947   // Check output type since VPADDL operand elements can only be 8, 16, or 32.
7948   EVT VT = N->getValueType(0);
7949   if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64)
7950     return SDValue();
7951
7952   // Check that the vector operands are of the right form.
7953   // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR
7954   // operands, where N is the size of the formed vector.
7955   // Each EXTRACT_VECTOR should have the same input vector and odd or even
7956   // index such that we have a pair wise add pattern.
7957
7958   // Grab the vector that all EXTRACT_VECTOR nodes should be referencing.
7959   if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
7960     return SDValue();
7961   SDValue Vec = N0->getOperand(0)->getOperand(0);
7962   SDNode *V = Vec.getNode();
7963   unsigned nextIndex = 0;
7964
7965   // For each operands to the ADD which are BUILD_VECTORs,
7966   // check to see if each of their operands are an EXTRACT_VECTOR with
7967   // the same vector and appropriate index.
7968   for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) {
7969     if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT
7970         && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
7971
7972       SDValue ExtVec0 = N0->getOperand(i);
7973       SDValue ExtVec1 = N1->getOperand(i);
7974
7975       // First operand is the vector, verify its the same.
7976       if (V != ExtVec0->getOperand(0).getNode() ||
7977           V != ExtVec1->getOperand(0).getNode())
7978         return SDValue();
7979
7980       // Second is the constant, verify its correct.
7981       ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1));
7982       ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1));
7983
7984       // For the constant, we want to see all the even or all the odd.
7985       if (!C0 || !C1 || C0->getZExtValue() != nextIndex
7986           || C1->getZExtValue() != nextIndex+1)
7987         return SDValue();
7988
7989       // Increment index.
7990       nextIndex+=2;
7991     } else
7992       return SDValue();
7993   }
7994
7995   // Create VPADDL node.
7996   SelectionDAG &DAG = DCI.DAG;
7997   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7998
7999   SDLoc dl(N);
8000
8001   // Build operand list.
8002   SmallVector<SDValue, 8> Ops;
8003   Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls, dl,
8004                                 TLI.getPointerTy()));
8005
8006   // Input is the vector.
8007   Ops.push_back(Vec);
8008
8009   // Get widened type and narrowed type.
8010   MVT widenType;
8011   unsigned numElem = VT.getVectorNumElements();
8012   
8013   EVT inputLaneType = Vec.getValueType().getVectorElementType();
8014   switch (inputLaneType.getSimpleVT().SimpleTy) {
8015     case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break;
8016     case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break;
8017     case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break;
8018     default:
8019       llvm_unreachable("Invalid vector element type for padd optimization.");
8020   }
8021
8022   SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, widenType, Ops);
8023   unsigned ExtOp = VT.bitsGT(tmp.getValueType()) ? ISD::ANY_EXTEND : ISD::TRUNCATE;
8024   return DAG.getNode(ExtOp, dl, VT, tmp);
8025 }
8026
8027 static SDValue findMUL_LOHI(SDValue V) {
8028   if (V->getOpcode() == ISD::UMUL_LOHI ||
8029       V->getOpcode() == ISD::SMUL_LOHI)
8030     return V;
8031   return SDValue();
8032 }
8033
8034 static SDValue AddCombineTo64bitMLAL(SDNode *AddcNode,
8035                                      TargetLowering::DAGCombinerInfo &DCI,
8036                                      const ARMSubtarget *Subtarget) {
8037
8038   if (Subtarget->isThumb1Only()) return SDValue();
8039
8040   // Only perform the checks after legalize when the pattern is available.
8041   if (DCI.isBeforeLegalize()) return SDValue();
8042
8043   // Look for multiply add opportunities.
8044   // The pattern is a ISD::UMUL_LOHI followed by two add nodes, where
8045   // each add nodes consumes a value from ISD::UMUL_LOHI and there is
8046   // a glue link from the first add to the second add.
8047   // If we find this pattern, we can replace the U/SMUL_LOHI, ADDC, and ADDE by
8048   // a S/UMLAL instruction.
8049   //                  UMUL_LOHI
8050   //                 / :lo    \ :hi
8051   //                /          \          [no multiline comment]
8052   //    loAdd ->  ADDE         |
8053   //                 \ :glue  /
8054   //                  \      /
8055   //                    ADDC   <- hiAdd
8056   //
8057   assert(AddcNode->getOpcode() == ISD::ADDC && "Expect an ADDC");
8058   SDValue AddcOp0 = AddcNode->getOperand(0);
8059   SDValue AddcOp1 = AddcNode->getOperand(1);
8060
8061   // Check if the two operands are from the same mul_lohi node.
8062   if (AddcOp0.getNode() == AddcOp1.getNode())
8063     return SDValue();
8064
8065   assert(AddcNode->getNumValues() == 2 &&
8066          AddcNode->getValueType(0) == MVT::i32 &&
8067          "Expect ADDC with two result values. First: i32");
8068
8069   // Check that we have a glued ADDC node.
8070   if (AddcNode->getValueType(1) != MVT::Glue)
8071     return SDValue();
8072
8073   // Check that the ADDC adds the low result of the S/UMUL_LOHI.
8074   if (AddcOp0->getOpcode() != ISD::UMUL_LOHI &&
8075       AddcOp0->getOpcode() != ISD::SMUL_LOHI &&
8076       AddcOp1->getOpcode() != ISD::UMUL_LOHI &&
8077       AddcOp1->getOpcode() != ISD::SMUL_LOHI)
8078     return SDValue();
8079
8080   // Look for the glued ADDE.
8081   SDNode* AddeNode = AddcNode->getGluedUser();
8082   if (!AddeNode)
8083     return SDValue();
8084
8085   // Make sure it is really an ADDE.
8086   if (AddeNode->getOpcode() != ISD::ADDE)
8087     return SDValue();
8088
8089   assert(AddeNode->getNumOperands() == 3 &&
8090          AddeNode->getOperand(2).getValueType() == MVT::Glue &&
8091          "ADDE node has the wrong inputs");
8092
8093   // Check for the triangle shape.
8094   SDValue AddeOp0 = AddeNode->getOperand(0);
8095   SDValue AddeOp1 = AddeNode->getOperand(1);
8096
8097   // Make sure that the ADDE operands are not coming from the same node.
8098   if (AddeOp0.getNode() == AddeOp1.getNode())
8099     return SDValue();
8100
8101   // Find the MUL_LOHI node walking up ADDE's operands.
8102   bool IsLeftOperandMUL = false;
8103   SDValue MULOp = findMUL_LOHI(AddeOp0);
8104   if (MULOp == SDValue())
8105    MULOp = findMUL_LOHI(AddeOp1);
8106   else
8107     IsLeftOperandMUL = true;
8108   if (MULOp == SDValue())
8109     return SDValue();
8110
8111   // Figure out the right opcode.
8112   unsigned Opc = MULOp->getOpcode();
8113   unsigned FinalOpc = (Opc == ISD::SMUL_LOHI) ? ARMISD::SMLAL : ARMISD::UMLAL;
8114
8115   // Figure out the high and low input values to the MLAL node.
8116   SDValue* HiAdd = nullptr;
8117   SDValue* LoMul = nullptr;
8118   SDValue* LowAdd = nullptr;
8119
8120   // Ensure that ADDE is from high result of ISD::SMUL_LOHI.
8121   if ((AddeOp0 != MULOp.getValue(1)) && (AddeOp1 != MULOp.getValue(1)))
8122     return SDValue();
8123
8124   if (IsLeftOperandMUL)
8125     HiAdd = &AddeOp1;
8126   else
8127     HiAdd = &AddeOp0;
8128
8129
8130   // Ensure that LoMul and LowAdd are taken from correct ISD::SMUL_LOHI node
8131   // whose low result is fed to the ADDC we are checking.
8132
8133   if (AddcOp0 == MULOp.getValue(0)) {
8134     LoMul = &AddcOp0;
8135     LowAdd = &AddcOp1;
8136   }
8137   if (AddcOp1 == MULOp.getValue(0)) {
8138     LoMul = &AddcOp1;
8139     LowAdd = &AddcOp0;
8140   }
8141
8142   if (!LoMul)
8143     return SDValue();
8144
8145   // Create the merged node.
8146   SelectionDAG &DAG = DCI.DAG;
8147
8148   // Build operand list.
8149   SmallVector<SDValue, 8> Ops;
8150   Ops.push_back(LoMul->getOperand(0));
8151   Ops.push_back(LoMul->getOperand(1));
8152   Ops.push_back(*LowAdd);
8153   Ops.push_back(*HiAdd);
8154
8155   SDValue MLALNode =  DAG.getNode(FinalOpc, SDLoc(AddcNode),
8156                                  DAG.getVTList(MVT::i32, MVT::i32), Ops);
8157
8158   // Replace the ADDs' nodes uses by the MLA node's values.
8159   SDValue HiMLALResult(MLALNode.getNode(), 1);
8160   DAG.ReplaceAllUsesOfValueWith(SDValue(AddeNode, 0), HiMLALResult);
8161
8162   SDValue LoMLALResult(MLALNode.getNode(), 0);
8163   DAG.ReplaceAllUsesOfValueWith(SDValue(AddcNode, 0), LoMLALResult);
8164
8165   // Return original node to notify the driver to stop replacing.
8166   SDValue resNode(AddcNode, 0);
8167   return resNode;
8168 }
8169
8170 /// PerformADDCCombine - Target-specific dag combine transform from
8171 /// ISD::ADDC, ISD::ADDE, and ISD::MUL_LOHI to MLAL.
8172 static SDValue PerformADDCCombine(SDNode *N,
8173                                  TargetLowering::DAGCombinerInfo &DCI,
8174                                  const ARMSubtarget *Subtarget) {
8175
8176   return AddCombineTo64bitMLAL(N, DCI, Subtarget);
8177
8178 }
8179
8180 /// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
8181 /// operands N0 and N1.  This is a helper for PerformADDCombine that is
8182 /// called with the default operands, and if that fails, with commuted
8183 /// operands.
8184 static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1,
8185                                           TargetLowering::DAGCombinerInfo &DCI,
8186                                           const ARMSubtarget *Subtarget){
8187
8188   // Attempt to create vpaddl for this add.
8189   SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget);
8190   if (Result.getNode())
8191     return Result;
8192
8193   // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
8194   if (N0.getNode()->hasOneUse()) {
8195     SDValue Result = combineSelectAndUse(N, N0, N1, DCI);
8196     if (Result.getNode()) return Result;
8197   }
8198   return SDValue();
8199 }
8200
8201 /// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
8202 ///
8203 static SDValue PerformADDCombine(SDNode *N,
8204                                  TargetLowering::DAGCombinerInfo &DCI,
8205                                  const ARMSubtarget *Subtarget) {
8206   SDValue N0 = N->getOperand(0);
8207   SDValue N1 = N->getOperand(1);
8208
8209   // First try with the default operand order.
8210   SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget);
8211   if (Result.getNode())
8212     return Result;
8213
8214   // If that didn't work, try again with the operands commuted.
8215   return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget);
8216 }
8217
8218 /// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
8219 ///
8220 static SDValue PerformSUBCombine(SDNode *N,
8221                                  TargetLowering::DAGCombinerInfo &DCI) {
8222   SDValue N0 = N->getOperand(0);
8223   SDValue N1 = N->getOperand(1);
8224
8225   // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
8226   if (N1.getNode()->hasOneUse()) {
8227     SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
8228     if (Result.getNode()) return Result;
8229   }
8230
8231   return SDValue();
8232 }
8233
8234 /// PerformVMULCombine
8235 /// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the
8236 /// special multiplier accumulator forwarding.
8237 ///   vmul d3, d0, d2
8238 ///   vmla d3, d1, d2
8239 /// is faster than
8240 ///   vadd d3, d0, d1
8241 ///   vmul d3, d3, d2
8242 //  However, for (A + B) * (A + B),
8243 //    vadd d2, d0, d1
8244 //    vmul d3, d0, d2
8245 //    vmla d3, d1, d2
8246 //  is slower than
8247 //    vadd d2, d0, d1
8248 //    vmul d3, d2, d2
8249 static SDValue PerformVMULCombine(SDNode *N,
8250                                   TargetLowering::DAGCombinerInfo &DCI,
8251                                   const ARMSubtarget *Subtarget) {
8252   if (!Subtarget->hasVMLxForwarding())
8253     return SDValue();
8254
8255   SelectionDAG &DAG = DCI.DAG;
8256   SDValue N0 = N->getOperand(0);
8257   SDValue N1 = N->getOperand(1);
8258   unsigned Opcode = N0.getOpcode();
8259   if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
8260       Opcode != ISD::FADD && Opcode != ISD::FSUB) {
8261     Opcode = N1.getOpcode();
8262     if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
8263         Opcode != ISD::FADD && Opcode != ISD::FSUB)
8264       return SDValue();
8265     std::swap(N0, N1);
8266   }
8267
8268   if (N0 == N1)
8269     return SDValue();
8270
8271   EVT VT = N->getValueType(0);
8272   SDLoc DL(N);
8273   SDValue N00 = N0->getOperand(0);
8274   SDValue N01 = N0->getOperand(1);
8275   return DAG.getNode(Opcode, DL, VT,
8276                      DAG.getNode(ISD::MUL, DL, VT, N00, N1),
8277                      DAG.getNode(ISD::MUL, DL, VT, N01, N1));
8278 }
8279
8280 static SDValue PerformMULCombine(SDNode *N,
8281                                  TargetLowering::DAGCombinerInfo &DCI,
8282                                  const ARMSubtarget *Subtarget) {
8283   SelectionDAG &DAG = DCI.DAG;
8284
8285   if (Subtarget->isThumb1Only())
8286     return SDValue();
8287
8288   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8289     return SDValue();
8290
8291   EVT VT = N->getValueType(0);
8292   if (VT.is64BitVector() || VT.is128BitVector())
8293     return PerformVMULCombine(N, DCI, Subtarget);
8294   if (VT != MVT::i32)
8295     return SDValue();
8296
8297   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8298   if (!C)
8299     return SDValue();
8300
8301   int64_t MulAmt = C->getSExtValue();
8302   unsigned ShiftAmt = countTrailingZeros<uint64_t>(MulAmt);
8303
8304   ShiftAmt = ShiftAmt & (32 - 1);
8305   SDValue V = N->getOperand(0);
8306   SDLoc DL(N);
8307
8308   SDValue Res;
8309   MulAmt >>= ShiftAmt;
8310
8311   if (MulAmt >= 0) {
8312     if (isPowerOf2_32(MulAmt - 1)) {
8313       // (mul x, 2^N + 1) => (add (shl x, N), x)
8314       Res = DAG.getNode(ISD::ADD, DL, VT,
8315                         V,
8316                         DAG.getNode(ISD::SHL, DL, VT,
8317                                     V,
8318                                     DAG.getConstant(Log2_32(MulAmt - 1), DL,
8319                                                     MVT::i32)));
8320     } else if (isPowerOf2_32(MulAmt + 1)) {
8321       // (mul x, 2^N - 1) => (sub (shl x, N), x)
8322       Res = DAG.getNode(ISD::SUB, DL, VT,
8323                         DAG.getNode(ISD::SHL, DL, VT,
8324                                     V,
8325                                     DAG.getConstant(Log2_32(MulAmt + 1), DL,
8326                                                     MVT::i32)),
8327                         V);
8328     } else
8329       return SDValue();
8330   } else {
8331     uint64_t MulAmtAbs = -MulAmt;
8332     if (isPowerOf2_32(MulAmtAbs + 1)) {
8333       // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
8334       Res = DAG.getNode(ISD::SUB, DL, VT,
8335                         V,
8336                         DAG.getNode(ISD::SHL, DL, VT,
8337                                     V,
8338                                     DAG.getConstant(Log2_32(MulAmtAbs + 1), DL,
8339                                                     MVT::i32)));
8340     } else if (isPowerOf2_32(MulAmtAbs - 1)) {
8341       // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
8342       Res = DAG.getNode(ISD::ADD, DL, VT,
8343                         V,
8344                         DAG.getNode(ISD::SHL, DL, VT,
8345                                     V,
8346                                     DAG.getConstant(Log2_32(MulAmtAbs - 1), DL,
8347                                                     MVT::i32)));
8348       Res = DAG.getNode(ISD::SUB, DL, VT,
8349                         DAG.getConstant(0, DL, MVT::i32), Res);
8350
8351     } else
8352       return SDValue();
8353   }
8354
8355   if (ShiftAmt != 0)
8356     Res = DAG.getNode(ISD::SHL, DL, VT,
8357                       Res, DAG.getConstant(ShiftAmt, DL, MVT::i32));
8358
8359   // Do not add new nodes to DAG combiner worklist.
8360   DCI.CombineTo(N, Res, false);
8361   return SDValue();
8362 }
8363
8364 static SDValue PerformANDCombine(SDNode *N,
8365                                  TargetLowering::DAGCombinerInfo &DCI,
8366                                  const ARMSubtarget *Subtarget) {
8367
8368   // Attempt to use immediate-form VBIC
8369   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
8370   SDLoc dl(N);
8371   EVT VT = N->getValueType(0);
8372   SelectionDAG &DAG = DCI.DAG;
8373
8374   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8375     return SDValue();
8376
8377   APInt SplatBits, SplatUndef;
8378   unsigned SplatBitSize;
8379   bool HasAnyUndefs;
8380   if (BVN &&
8381       BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8382     if (SplatBitSize <= 64) {
8383       EVT VbicVT;
8384       SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(),
8385                                       SplatUndef.getZExtValue(), SplatBitSize,
8386                                       DAG, dl, VbicVT, VT.is128BitVector(),
8387                                       OtherModImm);
8388       if (Val.getNode()) {
8389         SDValue Input =
8390           DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0));
8391         SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val);
8392         return DAG.getNode(ISD::BITCAST, dl, VT, Vbic);
8393       }
8394     }
8395   }
8396
8397   if (!Subtarget->isThumb1Only()) {
8398     // fold (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
8399     SDValue Result = combineSelectAndUseCommutative(N, true, DCI);
8400     if (Result.getNode())
8401       return Result;
8402   }
8403
8404   return SDValue();
8405 }
8406
8407 /// PerformORCombine - Target-specific dag combine xforms for ISD::OR
8408 static SDValue PerformORCombine(SDNode *N,
8409                                 TargetLowering::DAGCombinerInfo &DCI,
8410                                 const ARMSubtarget *Subtarget) {
8411   // Attempt to use immediate-form VORR
8412   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
8413   SDLoc dl(N);
8414   EVT VT = N->getValueType(0);
8415   SelectionDAG &DAG = DCI.DAG;
8416
8417   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8418     return SDValue();
8419
8420   APInt SplatBits, SplatUndef;
8421   unsigned SplatBitSize;
8422   bool HasAnyUndefs;
8423   if (BVN && Subtarget->hasNEON() &&
8424       BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8425     if (SplatBitSize <= 64) {
8426       EVT VorrVT;
8427       SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
8428                                       SplatUndef.getZExtValue(), SplatBitSize,
8429                                       DAG, dl, VorrVT, VT.is128BitVector(),
8430                                       OtherModImm);
8431       if (Val.getNode()) {
8432         SDValue Input =
8433           DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0));
8434         SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val);
8435         return DAG.getNode(ISD::BITCAST, dl, VT, Vorr);
8436       }
8437     }
8438   }
8439
8440   if (!Subtarget->isThumb1Only()) {
8441     // fold (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
8442     SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8443     if (Result.getNode())
8444       return Result;
8445   }
8446
8447   // The code below optimizes (or (and X, Y), Z).
8448   // The AND operand needs to have a single user to make these optimizations
8449   // profitable.
8450   SDValue N0 = N->getOperand(0);
8451   if (N0.getOpcode() != ISD::AND || !N0.hasOneUse())
8452     return SDValue();
8453   SDValue N1 = N->getOperand(1);
8454
8455   // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant.
8456   if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() &&
8457       DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
8458     APInt SplatUndef;
8459     unsigned SplatBitSize;
8460     bool HasAnyUndefs;
8461
8462     APInt SplatBits0, SplatBits1;
8463     BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1));
8464     BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1));
8465     // Ensure that the second operand of both ands are constants
8466     if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize,
8467                                       HasAnyUndefs) && !HasAnyUndefs) {
8468         if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize,
8469                                           HasAnyUndefs) && !HasAnyUndefs) {
8470             // Ensure that the bit width of the constants are the same and that
8471             // the splat arguments are logical inverses as per the pattern we
8472             // are trying to simplify.
8473             if (SplatBits0.getBitWidth() == SplatBits1.getBitWidth() &&
8474                 SplatBits0 == ~SplatBits1) {
8475                 // Canonicalize the vector type to make instruction selection
8476                 // simpler.
8477                 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
8478                 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT,
8479                                              N0->getOperand(1),
8480                                              N0->getOperand(0),
8481                                              N1->getOperand(0));
8482                 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
8483             }
8484         }
8485     }
8486   }
8487
8488   // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when
8489   // reasonable.
8490
8491   // BFI is only available on V6T2+
8492   if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops())
8493     return SDValue();
8494
8495   SDLoc DL(N);
8496   // 1) or (and A, mask), val => ARMbfi A, val, mask
8497   //      iff (val & mask) == val
8498   //
8499   // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
8500   //  2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2)
8501   //          && mask == ~mask2
8502   //  2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2)
8503   //          && ~mask == mask2
8504   //  (i.e., copy a bitfield value into another bitfield of the same width)
8505
8506   if (VT != MVT::i32)
8507     return SDValue();
8508
8509   SDValue N00 = N0.getOperand(0);
8510
8511   // The value and the mask need to be constants so we can verify this is
8512   // actually a bitfield set. If the mask is 0xffff, we can do better
8513   // via a movt instruction, so don't use BFI in that case.
8514   SDValue MaskOp = N0.getOperand(1);
8515   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp);
8516   if (!MaskC)
8517     return SDValue();
8518   unsigned Mask = MaskC->getZExtValue();
8519   if (Mask == 0xffff)
8520     return SDValue();
8521   SDValue Res;
8522   // Case (1): or (and A, mask), val => ARMbfi A, val, mask
8523   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
8524   if (N1C) {
8525     unsigned Val = N1C->getZExtValue();
8526     if ((Val & ~Mask) != Val)
8527       return SDValue();
8528
8529     if (ARM::isBitFieldInvertedMask(Mask)) {
8530       Val >>= countTrailingZeros(~Mask);
8531
8532       Res = DAG.getNode(ARMISD::BFI, DL, VT, N00,
8533                         DAG.getConstant(Val, DL, MVT::i32),
8534                         DAG.getConstant(Mask, DL, MVT::i32));
8535
8536       // Do not add new nodes to DAG combiner worklist.
8537       DCI.CombineTo(N, Res, false);
8538       return SDValue();
8539     }
8540   } else if (N1.getOpcode() == ISD::AND) {
8541     // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
8542     ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8543     if (!N11C)
8544       return SDValue();
8545     unsigned Mask2 = N11C->getZExtValue();
8546
8547     // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern
8548     // as is to match.
8549     if (ARM::isBitFieldInvertedMask(Mask) &&
8550         (Mask == ~Mask2)) {
8551       // The pack halfword instruction works better for masks that fit it,
8552       // so use that when it's available.
8553       if (Subtarget->hasT2ExtractPack() &&
8554           (Mask == 0xffff || Mask == 0xffff0000))
8555         return SDValue();
8556       // 2a
8557       unsigned amt = countTrailingZeros(Mask2);
8558       Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0),
8559                         DAG.getConstant(amt, DL, MVT::i32));
8560       Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res,
8561                         DAG.getConstant(Mask, DL, MVT::i32));
8562       // Do not add new nodes to DAG combiner worklist.
8563       DCI.CombineTo(N, Res, false);
8564       return SDValue();
8565     } else if (ARM::isBitFieldInvertedMask(~Mask) &&
8566                (~Mask == Mask2)) {
8567       // The pack halfword instruction works better for masks that fit it,
8568       // so use that when it's available.
8569       if (Subtarget->hasT2ExtractPack() &&
8570           (Mask2 == 0xffff || Mask2 == 0xffff0000))
8571         return SDValue();
8572       // 2b
8573       unsigned lsb = countTrailingZeros(Mask);
8574       Res = DAG.getNode(ISD::SRL, DL, VT, N00,
8575                         DAG.getConstant(lsb, DL, MVT::i32));
8576       Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res,
8577                         DAG.getConstant(Mask2, DL, MVT::i32));
8578       // Do not add new nodes to DAG combiner worklist.
8579       DCI.CombineTo(N, Res, false);
8580       return SDValue();
8581     }
8582   }
8583
8584   if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) &&
8585       N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) &&
8586       ARM::isBitFieldInvertedMask(~Mask)) {
8587     // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask
8588     // where lsb(mask) == #shamt and masked bits of B are known zero.
8589     SDValue ShAmt = N00.getOperand(1);
8590     unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue();
8591     unsigned LSB = countTrailingZeros(Mask);
8592     if (ShAmtC != LSB)
8593       return SDValue();
8594
8595     Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0),
8596                       DAG.getConstant(~Mask, DL, MVT::i32));
8597
8598     // Do not add new nodes to DAG combiner worklist.
8599     DCI.CombineTo(N, Res, false);
8600   }
8601
8602   return SDValue();
8603 }
8604
8605 static SDValue PerformXORCombine(SDNode *N,
8606                                  TargetLowering::DAGCombinerInfo &DCI,
8607                                  const ARMSubtarget *Subtarget) {
8608   EVT VT = N->getValueType(0);
8609   SelectionDAG &DAG = DCI.DAG;
8610
8611   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8612     return SDValue();
8613
8614   if (!Subtarget->isThumb1Only()) {
8615     // fold (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
8616     SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8617     if (Result.getNode())
8618       return Result;
8619   }
8620
8621   return SDValue();
8622 }
8623
8624 /// PerformBFICombine - (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff
8625 /// the bits being cleared by the AND are not demanded by the BFI.
8626 static SDValue PerformBFICombine(SDNode *N,
8627                                  TargetLowering::DAGCombinerInfo &DCI) {
8628   SDValue N1 = N->getOperand(1);
8629   if (N1.getOpcode() == ISD::AND) {
8630     ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8631     if (!N11C)
8632       return SDValue();
8633     unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
8634     unsigned LSB = countTrailingZeros(~InvMask);
8635     unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB;
8636     assert(Width <
8637                static_cast<unsigned>(std::numeric_limits<unsigned>::digits) &&
8638            "undefined behavior");
8639     unsigned Mask = (1u << Width) - 1;
8640     unsigned Mask2 = N11C->getZExtValue();
8641     if ((Mask & (~Mask2)) == 0)
8642       return DCI.DAG.getNode(ARMISD::BFI, SDLoc(N), N->getValueType(0),
8643                              N->getOperand(0), N1.getOperand(0),
8644                              N->getOperand(2));
8645   }
8646   return SDValue();
8647 }
8648
8649 /// PerformVMOVRRDCombine - Target-specific dag combine xforms for
8650 /// ARMISD::VMOVRRD.
8651 static SDValue PerformVMOVRRDCombine(SDNode *N,
8652                                      TargetLowering::DAGCombinerInfo &DCI,
8653                                      const ARMSubtarget *Subtarget) {
8654   // vmovrrd(vmovdrr x, y) -> x,y
8655   SDValue InDouble = N->getOperand(0);
8656   if (InDouble.getOpcode() == ARMISD::VMOVDRR && !Subtarget->isFPOnlySP())
8657     return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
8658
8659   // vmovrrd(load f64) -> (load i32), (load i32)
8660   SDNode *InNode = InDouble.getNode();
8661   if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() &&
8662       InNode->getValueType(0) == MVT::f64 &&
8663       InNode->getOperand(1).getOpcode() == ISD::FrameIndex &&
8664       !cast<LoadSDNode>(InNode)->isVolatile()) {
8665     // TODO: Should this be done for non-FrameIndex operands?
8666     LoadSDNode *LD = cast<LoadSDNode>(InNode);
8667
8668     SelectionDAG &DAG = DCI.DAG;
8669     SDLoc DL(LD);
8670     SDValue BasePtr = LD->getBasePtr();
8671     SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr,
8672                                  LD->getPointerInfo(), LD->isVolatile(),
8673                                  LD->isNonTemporal(), LD->isInvariant(),
8674                                  LD->getAlignment());
8675
8676     SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
8677                                     DAG.getConstant(4, DL, MVT::i32));
8678     SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr,
8679                                  LD->getPointerInfo(), LD->isVolatile(),
8680                                  LD->isNonTemporal(), LD->isInvariant(),
8681                                  std::min(4U, LD->getAlignment() / 2));
8682
8683     DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1));
8684     if (DCI.DAG.getTargetLoweringInfo().isBigEndian())
8685       std::swap (NewLD1, NewLD2);
8686     SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2);
8687     return Result;
8688   }
8689
8690   return SDValue();
8691 }
8692
8693 /// PerformVMOVDRRCombine - Target-specific dag combine xforms for
8694 /// ARMISD::VMOVDRR.  This is also used for BUILD_VECTORs with 2 operands.
8695 static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) {
8696   // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X)
8697   SDValue Op0 = N->getOperand(0);
8698   SDValue Op1 = N->getOperand(1);
8699   if (Op0.getOpcode() == ISD::BITCAST)
8700     Op0 = Op0.getOperand(0);
8701   if (Op1.getOpcode() == ISD::BITCAST)
8702     Op1 = Op1.getOperand(0);
8703   if (Op0.getOpcode() == ARMISD::VMOVRRD &&
8704       Op0.getNode() == Op1.getNode() &&
8705       Op0.getResNo() == 0 && Op1.getResNo() == 1)
8706     return DAG.getNode(ISD::BITCAST, SDLoc(N),
8707                        N->getValueType(0), Op0.getOperand(0));
8708   return SDValue();
8709 }
8710
8711 /// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node
8712 /// are normal, non-volatile loads.  If so, it is profitable to bitcast an
8713 /// i64 vector to have f64 elements, since the value can then be loaded
8714 /// directly into a VFP register.
8715 static bool hasNormalLoadOperand(SDNode *N) {
8716   unsigned NumElts = N->getValueType(0).getVectorNumElements();
8717   for (unsigned i = 0; i < NumElts; ++i) {
8718     SDNode *Elt = N->getOperand(i).getNode();
8719     if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile())
8720       return true;
8721   }
8722   return false;
8723 }
8724
8725 /// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for
8726 /// ISD::BUILD_VECTOR.
8727 static SDValue PerformBUILD_VECTORCombine(SDNode *N,
8728                                           TargetLowering::DAGCombinerInfo &DCI,
8729                                           const ARMSubtarget *Subtarget) {
8730   // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X):
8731   // VMOVRRD is introduced when legalizing i64 types.  It forces the i64 value
8732   // into a pair of GPRs, which is fine when the value is used as a scalar,
8733   // but if the i64 value is converted to a vector, we need to undo the VMOVRRD.
8734   SelectionDAG &DAG = DCI.DAG;
8735   if (N->getNumOperands() == 2) {
8736     SDValue RV = PerformVMOVDRRCombine(N, DAG);
8737     if (RV.getNode())
8738       return RV;
8739   }
8740
8741   // Load i64 elements as f64 values so that type legalization does not split
8742   // them up into i32 values.
8743   EVT VT = N->getValueType(0);
8744   if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N))
8745     return SDValue();
8746   SDLoc dl(N);
8747   SmallVector<SDValue, 8> Ops;
8748   unsigned NumElts = VT.getVectorNumElements();
8749   for (unsigned i = 0; i < NumElts; ++i) {
8750     SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i));
8751     Ops.push_back(V);
8752     // Make the DAGCombiner fold the bitcast.
8753     DCI.AddToWorklist(V.getNode());
8754   }
8755   EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts);
8756   SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops);
8757   return DAG.getNode(ISD::BITCAST, dl, VT, BV);
8758 }
8759
8760 /// \brief Target-specific dag combine xforms for ARMISD::BUILD_VECTOR.
8761 static SDValue
8762 PerformARMBUILD_VECTORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
8763   // ARMISD::BUILD_VECTOR is introduced when legalizing ISD::BUILD_VECTOR.
8764   // At that time, we may have inserted bitcasts from integer to float.
8765   // If these bitcasts have survived DAGCombine, change the lowering of this
8766   // BUILD_VECTOR in something more vector friendly, i.e., that does not
8767   // force to use floating point types.
8768
8769   // Make sure we can change the type of the vector.
8770   // This is possible iff:
8771   // 1. The vector is only used in a bitcast to a integer type. I.e.,
8772   //    1.1. Vector is used only once.
8773   //    1.2. Use is a bit convert to an integer type.
8774   // 2. The size of its operands are 32-bits (64-bits are not legal).
8775   EVT VT = N->getValueType(0);
8776   EVT EltVT = VT.getVectorElementType();
8777
8778   // Check 1.1. and 2.
8779   if (EltVT.getSizeInBits() != 32 || !N->hasOneUse())
8780     return SDValue();
8781
8782   // By construction, the input type must be float.
8783   assert(EltVT == MVT::f32 && "Unexpected type!");
8784
8785   // Check 1.2.
8786   SDNode *Use = *N->use_begin();
8787   if (Use->getOpcode() != ISD::BITCAST ||
8788       Use->getValueType(0).isFloatingPoint())
8789     return SDValue();
8790
8791   // Check profitability.
8792   // Model is, if more than half of the relevant operands are bitcast from
8793   // i32, turn the build_vector into a sequence of insert_vector_elt.
8794   // Relevant operands are everything that is not statically
8795   // (i.e., at compile time) bitcasted.
8796   unsigned NumOfBitCastedElts = 0;
8797   unsigned NumElts = VT.getVectorNumElements();
8798   unsigned NumOfRelevantElts = NumElts;
8799   for (unsigned Idx = 0; Idx < NumElts; ++Idx) {
8800     SDValue Elt = N->getOperand(Idx);
8801     if (Elt->getOpcode() == ISD::BITCAST) {
8802       // Assume only bit cast to i32 will go away.
8803       if (Elt->getOperand(0).getValueType() == MVT::i32)
8804         ++NumOfBitCastedElts;
8805     } else if (Elt.getOpcode() == ISD::UNDEF || isa<ConstantSDNode>(Elt))
8806       // Constants are statically casted, thus do not count them as
8807       // relevant operands.
8808       --NumOfRelevantElts;
8809   }
8810
8811   // Check if more than half of the elements require a non-free bitcast.
8812   if (NumOfBitCastedElts <= NumOfRelevantElts / 2)
8813     return SDValue();
8814
8815   SelectionDAG &DAG = DCI.DAG;
8816   // Create the new vector type.
8817   EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
8818   // Check if the type is legal.
8819   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8820   if (!TLI.isTypeLegal(VecVT))
8821     return SDValue();
8822
8823   // Combine:
8824   // ARMISD::BUILD_VECTOR E1, E2, ..., EN.
8825   // => BITCAST INSERT_VECTOR_ELT
8826   //                      (INSERT_VECTOR_ELT (...), (BITCAST EN-1), N-1),
8827   //                      (BITCAST EN), N.
8828   SDValue Vec = DAG.getUNDEF(VecVT);
8829   SDLoc dl(N);
8830   for (unsigned Idx = 0 ; Idx < NumElts; ++Idx) {
8831     SDValue V = N->getOperand(Idx);
8832     if (V.getOpcode() == ISD::UNDEF)
8833       continue;
8834     if (V.getOpcode() == ISD::BITCAST &&
8835         V->getOperand(0).getValueType() == MVT::i32)
8836       // Fold obvious case.
8837       V = V.getOperand(0);
8838     else {
8839       V = DAG.getNode(ISD::BITCAST, SDLoc(V), MVT::i32, V);
8840       // Make the DAGCombiner fold the bitcasts.
8841       DCI.AddToWorklist(V.getNode());
8842     }
8843     SDValue LaneIdx = DAG.getConstant(Idx, dl, MVT::i32);
8844     Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecVT, Vec, V, LaneIdx);
8845   }
8846   Vec = DAG.getNode(ISD::BITCAST, dl, VT, Vec);
8847   // Make the DAGCombiner fold the bitcasts.
8848   DCI.AddToWorklist(Vec.getNode());
8849   return Vec;
8850 }
8851
8852 /// PerformInsertEltCombine - Target-specific dag combine xforms for
8853 /// ISD::INSERT_VECTOR_ELT.
8854 static SDValue PerformInsertEltCombine(SDNode *N,
8855                                        TargetLowering::DAGCombinerInfo &DCI) {
8856   // Bitcast an i64 load inserted into a vector to f64.
8857   // Otherwise, the i64 value will be legalized to a pair of i32 values.
8858   EVT VT = N->getValueType(0);
8859   SDNode *Elt = N->getOperand(1).getNode();
8860   if (VT.getVectorElementType() != MVT::i64 ||
8861       !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile())
8862     return SDValue();
8863
8864   SelectionDAG &DAG = DCI.DAG;
8865   SDLoc dl(N);
8866   EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
8867                                  VT.getVectorNumElements());
8868   SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0));
8869   SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1));
8870   // Make the DAGCombiner fold the bitcasts.
8871   DCI.AddToWorklist(Vec.getNode());
8872   DCI.AddToWorklist(V.getNode());
8873   SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT,
8874                                Vec, V, N->getOperand(2));
8875   return DAG.getNode(ISD::BITCAST, dl, VT, InsElt);
8876 }
8877
8878 /// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for
8879 /// ISD::VECTOR_SHUFFLE.
8880 static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) {
8881   // The LLVM shufflevector instruction does not require the shuffle mask
8882   // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does
8883   // have that requirement.  When translating to ISD::VECTOR_SHUFFLE, if the
8884   // operands do not match the mask length, they are extended by concatenating
8885   // them with undef vectors.  That is probably the right thing for other
8886   // targets, but for NEON it is better to concatenate two double-register
8887   // size vector operands into a single quad-register size vector.  Do that
8888   // transformation here:
8889   //   shuffle(concat(v1, undef), concat(v2, undef)) ->
8890   //   shuffle(concat(v1, v2), undef)
8891   SDValue Op0 = N->getOperand(0);
8892   SDValue Op1 = N->getOperand(1);
8893   if (Op0.getOpcode() != ISD::CONCAT_VECTORS ||
8894       Op1.getOpcode() != ISD::CONCAT_VECTORS ||
8895       Op0.getNumOperands() != 2 ||
8896       Op1.getNumOperands() != 2)
8897     return SDValue();
8898   SDValue Concat0Op1 = Op0.getOperand(1);
8899   SDValue Concat1Op1 = Op1.getOperand(1);
8900   if (Concat0Op1.getOpcode() != ISD::UNDEF ||
8901       Concat1Op1.getOpcode() != ISD::UNDEF)
8902     return SDValue();
8903   // Skip the transformation if any of the types are illegal.
8904   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8905   EVT VT = N->getValueType(0);
8906   if (!TLI.isTypeLegal(VT) ||
8907       !TLI.isTypeLegal(Concat0Op1.getValueType()) ||
8908       !TLI.isTypeLegal(Concat1Op1.getValueType()))
8909     return SDValue();
8910
8911   SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
8912                                   Op0.getOperand(0), Op1.getOperand(0));
8913   // Translate the shuffle mask.
8914   SmallVector<int, 16> NewMask;
8915   unsigned NumElts = VT.getVectorNumElements();
8916   unsigned HalfElts = NumElts/2;
8917   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8918   for (unsigned n = 0; n < NumElts; ++n) {
8919     int MaskElt = SVN->getMaskElt(n);
8920     int NewElt = -1;
8921     if (MaskElt < (int)HalfElts)
8922       NewElt = MaskElt;
8923     else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts))
8924       NewElt = HalfElts + MaskElt - NumElts;
8925     NewMask.push_back(NewElt);
8926   }
8927   return DAG.getVectorShuffle(VT, SDLoc(N), NewConcat,
8928                               DAG.getUNDEF(VT), NewMask.data());
8929 }
8930
8931 /// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP,
8932 /// NEON load/store intrinsics, and generic vector load/stores, to merge
8933 /// base address updates.
8934 /// For generic load/stores, the memory type is assumed to be a vector.
8935 /// The caller is assumed to have checked legality.
8936 static SDValue CombineBaseUpdate(SDNode *N,
8937                                  TargetLowering::DAGCombinerInfo &DCI) {
8938   SelectionDAG &DAG = DCI.DAG;
8939   const bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID ||
8940                             N->getOpcode() == ISD::INTRINSIC_W_CHAIN);
8941   const bool isStore = N->getOpcode() == ISD::STORE;
8942   const unsigned AddrOpIdx = ((isIntrinsic || isStore) ? 2 : 1);
8943   SDValue Addr = N->getOperand(AddrOpIdx);
8944   MemSDNode *MemN = cast<MemSDNode>(N);
8945   SDLoc dl(N);
8946
8947   // Search for a use of the address operand that is an increment.
8948   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
8949          UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
8950     SDNode *User = *UI;
8951     if (User->getOpcode() != ISD::ADD ||
8952         UI.getUse().getResNo() != Addr.getResNo())
8953       continue;
8954
8955     // Check that the add is independent of the load/store.  Otherwise, folding
8956     // it would create a cycle.
8957     if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
8958       continue;
8959
8960     // Find the new opcode for the updating load/store.
8961     bool isLoadOp = true;
8962     bool isLaneOp = false;
8963     unsigned NewOpc = 0;
8964     unsigned NumVecs = 0;
8965     if (isIntrinsic) {
8966       unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
8967       switch (IntNo) {
8968       default: llvm_unreachable("unexpected intrinsic for Neon base update");
8969       case Intrinsic::arm_neon_vld1:     NewOpc = ARMISD::VLD1_UPD;
8970         NumVecs = 1; break;
8971       case Intrinsic::arm_neon_vld2:     NewOpc = ARMISD::VLD2_UPD;
8972         NumVecs = 2; break;
8973       case Intrinsic::arm_neon_vld3:     NewOpc = ARMISD::VLD3_UPD;
8974         NumVecs = 3; break;
8975       case Intrinsic::arm_neon_vld4:     NewOpc = ARMISD::VLD4_UPD;
8976         NumVecs = 4; break;
8977       case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD;
8978         NumVecs = 2; isLaneOp = true; break;
8979       case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD;
8980         NumVecs = 3; isLaneOp = true; break;
8981       case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD;
8982         NumVecs = 4; isLaneOp = true; break;
8983       case Intrinsic::arm_neon_vst1:     NewOpc = ARMISD::VST1_UPD;
8984         NumVecs = 1; isLoadOp = false; break;
8985       case Intrinsic::arm_neon_vst2:     NewOpc = ARMISD::VST2_UPD;
8986         NumVecs = 2; isLoadOp = false; break;
8987       case Intrinsic::arm_neon_vst3:     NewOpc = ARMISD::VST3_UPD;
8988         NumVecs = 3; isLoadOp = false; break;
8989       case Intrinsic::arm_neon_vst4:     NewOpc = ARMISD::VST4_UPD;
8990         NumVecs = 4; isLoadOp = false; break;
8991       case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD;
8992         NumVecs = 2; isLoadOp = false; isLaneOp = true; break;
8993       case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD;
8994         NumVecs = 3; isLoadOp = false; isLaneOp = true; break;
8995       case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD;
8996         NumVecs = 4; isLoadOp = false; isLaneOp = true; break;
8997       }
8998     } else {
8999       isLaneOp = true;
9000       switch (N->getOpcode()) {
9001       default: llvm_unreachable("unexpected opcode for Neon base update");
9002       case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break;
9003       case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break;
9004       case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break;
9005       case ISD::LOAD:       NewOpc = ARMISD::VLD1_UPD;
9006         NumVecs = 1; isLaneOp = false; break;
9007       case ISD::STORE:      NewOpc = ARMISD::VST1_UPD;
9008         NumVecs = 1; isLaneOp = false; isLoadOp = false; break;
9009       }
9010     }
9011
9012     // Find the size of memory referenced by the load/store.
9013     EVT VecTy;
9014     if (isLoadOp) {
9015       VecTy = N->getValueType(0);
9016     } else if (isIntrinsic) {
9017       VecTy = N->getOperand(AddrOpIdx+1).getValueType();
9018     } else {
9019       assert(isStore && "Node has to be a load, a store, or an intrinsic!");
9020       VecTy = N->getOperand(1).getValueType();
9021     }
9022
9023     unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
9024     if (isLaneOp)
9025       NumBytes /= VecTy.getVectorNumElements();
9026
9027     // If the increment is a constant, it must match the memory ref size.
9028     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
9029     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
9030       uint64_t IncVal = CInc->getZExtValue();
9031       if (IncVal != NumBytes)
9032         continue;
9033     } else if (NumBytes >= 3 * 16) {
9034       // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two
9035       // separate instructions that make it harder to use a non-constant update.
9036       continue;
9037     }
9038
9039     // OK, we found an ADD we can fold into the base update.
9040     // Now, create a _UPD node, taking care of not breaking alignment.
9041
9042     EVT AlignedVecTy = VecTy;
9043     unsigned Alignment = MemN->getAlignment();
9044
9045     // If this is a less-than-standard-aligned load/store, change the type to
9046     // match the standard alignment.
9047     // The alignment is overlooked when selecting _UPD variants; and it's
9048     // easier to introduce bitcasts here than fix that.
9049     // There are 3 ways to get to this base-update combine:
9050     // - intrinsics: they are assumed to be properly aligned (to the standard
9051     //   alignment of the memory type), so we don't need to do anything.
9052     // - ARMISD::VLDx nodes: they are only generated from the aforementioned
9053     //   intrinsics, so, likewise, there's nothing to do.
9054     // - generic load/store instructions: the alignment is specified as an
9055     //   explicit operand, rather than implicitly as the standard alignment
9056     //   of the memory type (like the intrisics).  We need to change the
9057     //   memory type to match the explicit alignment.  That way, we don't
9058     //   generate non-standard-aligned ARMISD::VLDx nodes.
9059     if (isa<LSBaseSDNode>(N)) {
9060       if (Alignment == 0)
9061         Alignment = 1;
9062       if (Alignment < VecTy.getScalarSizeInBits() / 8) {
9063         MVT EltTy = MVT::getIntegerVT(Alignment * 8);
9064         assert(NumVecs == 1 && "Unexpected multi-element generic load/store.");
9065         assert(!isLaneOp && "Unexpected generic load/store lane.");
9066         unsigned NumElts = NumBytes / (EltTy.getSizeInBits() / 8);
9067         AlignedVecTy = MVT::getVectorVT(EltTy, NumElts);
9068       }
9069       // Don't set an explicit alignment on regular load/stores that we want
9070       // to transform to VLD/VST 1_UPD nodes.
9071       // This matches the behavior of regular load/stores, which only get an
9072       // explicit alignment if the MMO alignment is larger than the standard
9073       // alignment of the memory type.
9074       // Intrinsics, however, always get an explicit alignment, set to the
9075       // alignment of the MMO.
9076       Alignment = 1;
9077     }
9078
9079     // Create the new updating load/store node.
9080     // First, create an SDVTList for the new updating node's results.
9081     EVT Tys[6];
9082     unsigned NumResultVecs = (isLoadOp ? NumVecs : 0);
9083     unsigned n;
9084     for (n = 0; n < NumResultVecs; ++n)
9085       Tys[n] = AlignedVecTy;
9086     Tys[n++] = MVT::i32;
9087     Tys[n] = MVT::Other;
9088     SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumResultVecs+2));
9089
9090     // Then, gather the new node's operands.
9091     SmallVector<SDValue, 8> Ops;
9092     Ops.push_back(N->getOperand(0)); // incoming chain
9093     Ops.push_back(N->getOperand(AddrOpIdx));
9094     Ops.push_back(Inc);
9095
9096     if (StoreSDNode *StN = dyn_cast<StoreSDNode>(N)) {
9097       // Try to match the intrinsic's signature
9098       Ops.push_back(StN->getValue());
9099     } else {
9100       // Loads (and of course intrinsics) match the intrinsics' signature,
9101       // so just add all but the alignment operand.
9102       for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands() - 1; ++i)
9103         Ops.push_back(N->getOperand(i));
9104     }
9105
9106     // For all node types, the alignment operand is always the last one.
9107     Ops.push_back(DAG.getConstant(Alignment, dl, MVT::i32));
9108
9109     // If this is a non-standard-aligned STORE, the penultimate operand is the
9110     // stored value.  Bitcast it to the aligned type.
9111     if (AlignedVecTy != VecTy && N->getOpcode() == ISD::STORE) {
9112       SDValue &StVal = Ops[Ops.size()-2];
9113       StVal = DAG.getNode(ISD::BITCAST, dl, AlignedVecTy, StVal);
9114     }
9115
9116     SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, dl, SDTys,
9117                                            Ops, AlignedVecTy,
9118                                            MemN->getMemOperand());
9119
9120     // Update the uses.
9121     SmallVector<SDValue, 5> NewResults;
9122     for (unsigned i = 0; i < NumResultVecs; ++i)
9123       NewResults.push_back(SDValue(UpdN.getNode(), i));
9124
9125     // If this is an non-standard-aligned LOAD, the first result is the loaded
9126     // value.  Bitcast it to the expected result type.
9127     if (AlignedVecTy != VecTy && N->getOpcode() == ISD::LOAD) {
9128       SDValue &LdVal = NewResults[0];
9129       LdVal = DAG.getNode(ISD::BITCAST, dl, VecTy, LdVal);
9130     }
9131
9132     NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain
9133     DCI.CombineTo(N, NewResults);
9134     DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
9135
9136     break;
9137   }
9138   return SDValue();
9139 }
9140
9141 static SDValue PerformVLDCombine(SDNode *N,
9142                                  TargetLowering::DAGCombinerInfo &DCI) {
9143   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
9144     return SDValue();
9145
9146   return CombineBaseUpdate(N, DCI);
9147 }
9148
9149 /// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a
9150 /// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic
9151 /// are also VDUPLANEs.  If so, combine them to a vldN-dup operation and
9152 /// return true.
9153 static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
9154   SelectionDAG &DAG = DCI.DAG;
9155   EVT VT = N->getValueType(0);
9156   // vldN-dup instructions only support 64-bit vectors for N > 1.
9157   if (!VT.is64BitVector())
9158     return false;
9159
9160   // Check if the VDUPLANE operand is a vldN-dup intrinsic.
9161   SDNode *VLD = N->getOperand(0).getNode();
9162   if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN)
9163     return false;
9164   unsigned NumVecs = 0;
9165   unsigned NewOpc = 0;
9166   unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue();
9167   if (IntNo == Intrinsic::arm_neon_vld2lane) {
9168     NumVecs = 2;
9169     NewOpc = ARMISD::VLD2DUP;
9170   } else if (IntNo == Intrinsic::arm_neon_vld3lane) {
9171     NumVecs = 3;
9172     NewOpc = ARMISD::VLD3DUP;
9173   } else if (IntNo == Intrinsic::arm_neon_vld4lane) {
9174     NumVecs = 4;
9175     NewOpc = ARMISD::VLD4DUP;
9176   } else {
9177     return false;
9178   }
9179
9180   // First check that all the vldN-lane uses are VDUPLANEs and that the lane
9181   // numbers match the load.
9182   unsigned VLDLaneNo =
9183     cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue();
9184   for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
9185        UI != UE; ++UI) {
9186     // Ignore uses of the chain result.
9187     if (UI.getUse().getResNo() == NumVecs)
9188       continue;
9189     SDNode *User = *UI;
9190     if (User->getOpcode() != ARMISD::VDUPLANE ||
9191         VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue())
9192       return false;
9193   }
9194
9195   // Create the vldN-dup node.
9196   EVT Tys[5];
9197   unsigned n;
9198   for (n = 0; n < NumVecs; ++n)
9199     Tys[n] = VT;
9200   Tys[n] = MVT::Other;
9201   SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumVecs+1));
9202   SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) };
9203   MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD);
9204   SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, SDLoc(VLD), SDTys,
9205                                            Ops, VLDMemInt->getMemoryVT(),
9206                                            VLDMemInt->getMemOperand());
9207
9208   // Update the uses.
9209   for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
9210        UI != UE; ++UI) {
9211     unsigned ResNo = UI.getUse().getResNo();
9212     // Ignore uses of the chain result.
9213     if (ResNo == NumVecs)
9214       continue;
9215     SDNode *User = *UI;
9216     DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));
9217   }
9218
9219   // Now the vldN-lane intrinsic is dead except for its chain result.
9220   // Update uses of the chain.
9221   std::vector<SDValue> VLDDupResults;
9222   for (unsigned n = 0; n < NumVecs; ++n)
9223     VLDDupResults.push_back(SDValue(VLDDup.getNode(), n));
9224   VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs));
9225   DCI.CombineTo(VLD, VLDDupResults);
9226
9227   return true;
9228 }
9229
9230 /// PerformVDUPLANECombine - Target-specific dag combine xforms for
9231 /// ARMISD::VDUPLANE.
9232 static SDValue PerformVDUPLANECombine(SDNode *N,
9233                                       TargetLowering::DAGCombinerInfo &DCI) {
9234   SDValue Op = N->getOperand(0);
9235
9236   // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses
9237   // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation.
9238   if (CombineVLDDUP(N, DCI))
9239     return SDValue(N, 0);
9240
9241   // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is
9242   // redundant.  Ignore bit_converts for now; element sizes are checked below.
9243   while (Op.getOpcode() == ISD::BITCAST)
9244     Op = Op.getOperand(0);
9245   if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM)
9246     return SDValue();
9247
9248   // Make sure the VMOV element size is not bigger than the VDUPLANE elements.
9249   unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits();
9250   // The canonical VMOV for a zero vector uses a 32-bit element size.
9251   unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9252   unsigned EltBits;
9253   if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0)
9254     EltSize = 8;
9255   EVT VT = N->getValueType(0);
9256   if (EltSize > VT.getVectorElementType().getSizeInBits())
9257     return SDValue();
9258
9259   return DCI.DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
9260 }
9261
9262 static SDValue PerformLOADCombine(SDNode *N,
9263                                   TargetLowering::DAGCombinerInfo &DCI) {
9264   EVT VT = N->getValueType(0);
9265
9266   // If this is a legal vector load, try to combine it into a VLD1_UPD.
9267   if (ISD::isNormalLoad(N) && VT.isVector() &&
9268       DCI.DAG.getTargetLoweringInfo().isTypeLegal(VT))
9269     return CombineBaseUpdate(N, DCI);
9270
9271   return SDValue();
9272 }
9273
9274 /// PerformSTORECombine - Target-specific dag combine xforms for
9275 /// ISD::STORE.
9276 static SDValue PerformSTORECombine(SDNode *N,
9277                                    TargetLowering::DAGCombinerInfo &DCI) {
9278   StoreSDNode *St = cast<StoreSDNode>(N);
9279   if (St->isVolatile())
9280     return SDValue();
9281
9282   // Optimize trunc store (of multiple scalars) to shuffle and store.  First,
9283   // pack all of the elements in one place.  Next, store to memory in fewer
9284   // chunks.
9285   SDValue StVal = St->getValue();
9286   EVT VT = StVal.getValueType();
9287   if (St->isTruncatingStore() && VT.isVector()) {
9288     SelectionDAG &DAG = DCI.DAG;
9289     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9290     EVT StVT = St->getMemoryVT();
9291     unsigned NumElems = VT.getVectorNumElements();
9292     assert(StVT != VT && "Cannot truncate to the same type");
9293     unsigned FromEltSz = VT.getVectorElementType().getSizeInBits();
9294     unsigned ToEltSz = StVT.getVectorElementType().getSizeInBits();
9295
9296     // From, To sizes and ElemCount must be pow of two
9297     if (!isPowerOf2_32(NumElems * FromEltSz * ToEltSz)) return SDValue();
9298
9299     // We are going to use the original vector elt for storing.
9300     // Accumulated smaller vector elements must be a multiple of the store size.
9301     if (0 != (NumElems * FromEltSz) % ToEltSz) return SDValue();
9302
9303     unsigned SizeRatio  = FromEltSz / ToEltSz;
9304     assert(SizeRatio * NumElems * ToEltSz == VT.getSizeInBits());
9305
9306     // Create a type on which we perform the shuffle.
9307     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(),
9308                                      NumElems*SizeRatio);
9309     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
9310
9311     SDLoc DL(St);
9312     SDValue WideVec = DAG.getNode(ISD::BITCAST, DL, WideVecVT, StVal);
9313     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
9314     for (unsigned i = 0; i < NumElems; ++i)
9315       ShuffleVec[i] = TLI.isBigEndian() ? (i+1) * SizeRatio - 1 : i * SizeRatio;
9316
9317     // Can't shuffle using an illegal type.
9318     if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
9319
9320     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, DL, WideVec,
9321                                 DAG.getUNDEF(WideVec.getValueType()),
9322                                 ShuffleVec.data());
9323     // At this point all of the data is stored at the bottom of the
9324     // register. We now need to save it to mem.
9325
9326     // Find the largest store unit
9327     MVT StoreType = MVT::i8;
9328     for (MVT Tp : MVT::integer_valuetypes()) {
9329       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToEltSz)
9330         StoreType = Tp;
9331     }
9332     // Didn't find a legal store type.
9333     if (!TLI.isTypeLegal(StoreType))
9334       return SDValue();
9335
9336     // Bitcast the original vector into a vector of store-size units
9337     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
9338             StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
9339     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
9340     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, DL, StoreVecVT, Shuff);
9341     SmallVector<SDValue, 8> Chains;
9342     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8, DL,
9343                                         TLI.getPointerTy());
9344     SDValue BasePtr = St->getBasePtr();
9345
9346     // Perform one or more big stores into memory.
9347     unsigned E = (ToEltSz*NumElems)/StoreType.getSizeInBits();
9348     for (unsigned I = 0; I < E; I++) {
9349       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
9350                                    StoreType, ShuffWide,
9351                                    DAG.getIntPtrConstant(I, DL));
9352       SDValue Ch = DAG.getStore(St->getChain(), DL, SubVec, BasePtr,
9353                                 St->getPointerInfo(), St->isVolatile(),
9354                                 St->isNonTemporal(), St->getAlignment());
9355       BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr,
9356                             Increment);
9357       Chains.push_back(Ch);
9358     }
9359     return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
9360   }
9361
9362   if (!ISD::isNormalStore(St))
9363     return SDValue();
9364
9365   // Split a store of a VMOVDRR into two integer stores to avoid mixing NEON and
9366   // ARM stores of arguments in the same cache line.
9367   if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR &&
9368       StVal.getNode()->hasOneUse()) {
9369     SelectionDAG  &DAG = DCI.DAG;
9370     bool isBigEndian = DAG.getTargetLoweringInfo().isBigEndian();
9371     SDLoc DL(St);
9372     SDValue BasePtr = St->getBasePtr();
9373     SDValue NewST1 = DAG.getStore(St->getChain(), DL,
9374                                   StVal.getNode()->getOperand(isBigEndian ? 1 : 0 ),
9375                                   BasePtr, St->getPointerInfo(), St->isVolatile(),
9376                                   St->isNonTemporal(), St->getAlignment());
9377
9378     SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
9379                                     DAG.getConstant(4, DL, MVT::i32));
9380     return DAG.getStore(NewST1.getValue(0), DL,
9381                         StVal.getNode()->getOperand(isBigEndian ? 0 : 1),
9382                         OffsetPtr, St->getPointerInfo(), St->isVolatile(),
9383                         St->isNonTemporal(),
9384                         std::min(4U, St->getAlignment() / 2));
9385   }
9386
9387   if (StVal.getValueType() == MVT::i64 &&
9388       StVal.getNode()->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
9389
9390     // Bitcast an i64 store extracted from a vector to f64.
9391     // Otherwise, the i64 value will be legalized to a pair of i32 values.
9392     SelectionDAG &DAG = DCI.DAG;
9393     SDLoc dl(StVal);
9394     SDValue IntVec = StVal.getOperand(0);
9395     EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
9396                                    IntVec.getValueType().getVectorNumElements());
9397     SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec);
9398     SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
9399                                  Vec, StVal.getOperand(1));
9400     dl = SDLoc(N);
9401     SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt);
9402     // Make the DAGCombiner fold the bitcasts.
9403     DCI.AddToWorklist(Vec.getNode());
9404     DCI.AddToWorklist(ExtElt.getNode());
9405     DCI.AddToWorklist(V.getNode());
9406     return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(),
9407                         St->getPointerInfo(), St->isVolatile(),
9408                         St->isNonTemporal(), St->getAlignment(),
9409                         St->getAAInfo());
9410   }
9411
9412   // If this is a legal vector store, try to combine it into a VST1_UPD.
9413   if (ISD::isNormalStore(N) && VT.isVector() &&
9414       DCI.DAG.getTargetLoweringInfo().isTypeLegal(VT))
9415     return CombineBaseUpdate(N, DCI);
9416
9417   return SDValue();
9418 }
9419
9420 // isConstVecPow2 - Return true if each vector element is a power of 2, all
9421 // elements are the same constant, C, and Log2(C) ranges from 1 to 32.
9422 static bool isConstVecPow2(SDValue ConstVec, bool isSigned, uint64_t &C)
9423 {
9424   integerPart cN;
9425   integerPart c0 = 0;
9426   for (unsigned I = 0, E = ConstVec.getValueType().getVectorNumElements();
9427        I != E; I++) {
9428     ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(ConstVec.getOperand(I));
9429     if (!C)
9430       return false;
9431
9432     bool isExact;
9433     APFloat APF = C->getValueAPF();
9434     if (APF.convertToInteger(&cN, 64, isSigned, APFloat::rmTowardZero, &isExact)
9435         != APFloat::opOK || !isExact)
9436       return false;
9437
9438     c0 = (I == 0) ? cN : c0;
9439     if (!isPowerOf2_64(cN) || c0 != cN || Log2_64(c0) < 1 || Log2_64(c0) > 32)
9440       return false;
9441   }
9442   C = c0;
9443   return true;
9444 }
9445
9446 /// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD)
9447 /// can replace combinations of VMUL and VCVT (floating-point to integer)
9448 /// when the VMUL has a constant operand that is a power of 2.
9449 ///
9450 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
9451 ///  vmul.f32        d16, d17, d16
9452 ///  vcvt.s32.f32    d16, d16
9453 /// becomes:
9454 ///  vcvt.s32.f32    d16, d16, #3
9455 static SDValue PerformVCVTCombine(SDNode *N,
9456                                   TargetLowering::DAGCombinerInfo &DCI,
9457                                   const ARMSubtarget *Subtarget) {
9458   SelectionDAG &DAG = DCI.DAG;
9459   SDValue Op = N->getOperand(0);
9460
9461   if (!Subtarget->hasNEON() || !Op.getValueType().isVector() ||
9462       Op.getOpcode() != ISD::FMUL)
9463     return SDValue();
9464
9465   uint64_t C;
9466   SDValue N0 = Op->getOperand(0);
9467   SDValue ConstVec = Op->getOperand(1);
9468   bool isSigned = N->getOpcode() == ISD::FP_TO_SINT;
9469
9470   if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
9471       !isConstVecPow2(ConstVec, isSigned, C))
9472     return SDValue();
9473
9474   MVT FloatTy = Op.getSimpleValueType().getVectorElementType();
9475   MVT IntTy = N->getSimpleValueType(0).getVectorElementType();
9476   unsigned NumLanes = Op.getValueType().getVectorNumElements();
9477   if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32 ||
9478       NumLanes > 4) {
9479     // These instructions only exist converting from f32 to i32. We can handle
9480     // smaller integers by generating an extra truncate, but larger ones would
9481     // be lossy. We also can't handle more then 4 lanes, since these intructions
9482     // only support v2i32/v4i32 types.
9483     return SDValue();
9484   }
9485
9486   SDLoc dl(N);
9487   unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs :
9488     Intrinsic::arm_neon_vcvtfp2fxu;
9489   SDValue FixConv =  DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl,
9490                                  NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
9491                                  DAG.getConstant(IntrinsicOpcode, dl, MVT::i32),
9492                                  N0,
9493                                  DAG.getConstant(Log2_64(C), dl, MVT::i32));
9494
9495   if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
9496     FixConv = DAG.getNode(ISD::TRUNCATE, dl, N->getValueType(0), FixConv);
9497
9498   return FixConv;
9499 }
9500
9501 /// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD)
9502 /// can replace combinations of VCVT (integer to floating-point) and VDIV
9503 /// when the VDIV has a constant operand that is a power of 2.
9504 ///
9505 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
9506 ///  vcvt.f32.s32    d16, d16
9507 ///  vdiv.f32        d16, d17, d16
9508 /// becomes:
9509 ///  vcvt.f32.s32    d16, d16, #3
9510 static SDValue PerformVDIVCombine(SDNode *N,
9511                                   TargetLowering::DAGCombinerInfo &DCI,
9512                                   const ARMSubtarget *Subtarget) {
9513   SelectionDAG &DAG = DCI.DAG;
9514   SDValue Op = N->getOperand(0);
9515   unsigned OpOpcode = Op.getNode()->getOpcode();
9516
9517   if (!Subtarget->hasNEON() || !N->getValueType(0).isVector() ||
9518       (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP))
9519     return SDValue();
9520
9521   uint64_t C;
9522   SDValue ConstVec = N->getOperand(1);
9523   bool isSigned = OpOpcode == ISD::SINT_TO_FP;
9524
9525   if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
9526       !isConstVecPow2(ConstVec, isSigned, C))
9527     return SDValue();
9528
9529   MVT FloatTy = N->getSimpleValueType(0).getVectorElementType();
9530   MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType();
9531   if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32) {
9532     // These instructions only exist converting from i32 to f32. We can handle
9533     // smaller integers by generating an extra extend, but larger ones would
9534     // be lossy.
9535     return SDValue();
9536   }
9537
9538   SDLoc dl(N);
9539   SDValue ConvInput = Op.getOperand(0);
9540   unsigned NumLanes = Op.getValueType().getVectorNumElements();
9541   if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
9542     ConvInput = DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
9543                             dl, NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
9544                             ConvInput);
9545
9546   unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp :
9547     Intrinsic::arm_neon_vcvtfxu2fp;
9548   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl,
9549                      Op.getValueType(),
9550                      DAG.getConstant(IntrinsicOpcode, dl, MVT::i32),
9551                      ConvInput, DAG.getConstant(Log2_64(C), dl, MVT::i32));
9552 }
9553
9554 /// Getvshiftimm - Check if this is a valid build_vector for the immediate
9555 /// operand of a vector shift operation, where all the elements of the
9556 /// build_vector must have the same constant integer value.
9557 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
9558   // Ignore bit_converts.
9559   while (Op.getOpcode() == ISD::BITCAST)
9560     Op = Op.getOperand(0);
9561   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
9562   APInt SplatBits, SplatUndef;
9563   unsigned SplatBitSize;
9564   bool HasAnyUndefs;
9565   if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
9566                                       HasAnyUndefs, ElementBits) ||
9567       SplatBitSize > ElementBits)
9568     return false;
9569   Cnt = SplatBits.getSExtValue();
9570   return true;
9571 }
9572
9573 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
9574 /// operand of a vector shift left operation.  That value must be in the range:
9575 ///   0 <= Value < ElementBits for a left shift; or
9576 ///   0 <= Value <= ElementBits for a long left shift.
9577 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
9578   assert(VT.isVector() && "vector shift count is not a vector type");
9579   unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
9580   if (! getVShiftImm(Op, ElementBits, Cnt))
9581     return false;
9582   return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
9583 }
9584
9585 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
9586 /// operand of a vector shift right operation.  For a shift opcode, the value
9587 /// is positive, but for an intrinsic the value count must be negative. The
9588 /// absolute value must be in the range:
9589 ///   1 <= |Value| <= ElementBits for a right shift; or
9590 ///   1 <= |Value| <= ElementBits/2 for a narrow right shift.
9591 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
9592                          int64_t &Cnt) {
9593   assert(VT.isVector() && "vector shift count is not a vector type");
9594   unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
9595   if (! getVShiftImm(Op, ElementBits, Cnt))
9596     return false;
9597   if (isIntrinsic)
9598     Cnt = -Cnt;
9599   return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
9600 }
9601
9602 /// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
9603 static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
9604   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
9605   switch (IntNo) {
9606   default:
9607     // Don't do anything for most intrinsics.
9608     break;
9609
9610   // Vector shifts: check for immediate versions and lower them.
9611   // Note: This is done during DAG combining instead of DAG legalizing because
9612   // the build_vectors for 64-bit vector element shift counts are generally
9613   // not legal, and it is hard to see their values after they get legalized to
9614   // loads from a constant pool.
9615   case Intrinsic::arm_neon_vshifts:
9616   case Intrinsic::arm_neon_vshiftu:
9617   case Intrinsic::arm_neon_vrshifts:
9618   case Intrinsic::arm_neon_vrshiftu:
9619   case Intrinsic::arm_neon_vrshiftn:
9620   case Intrinsic::arm_neon_vqshifts:
9621   case Intrinsic::arm_neon_vqshiftu:
9622   case Intrinsic::arm_neon_vqshiftsu:
9623   case Intrinsic::arm_neon_vqshiftns:
9624   case Intrinsic::arm_neon_vqshiftnu:
9625   case Intrinsic::arm_neon_vqshiftnsu:
9626   case Intrinsic::arm_neon_vqrshiftns:
9627   case Intrinsic::arm_neon_vqrshiftnu:
9628   case Intrinsic::arm_neon_vqrshiftnsu: {
9629     EVT VT = N->getOperand(1).getValueType();
9630     int64_t Cnt;
9631     unsigned VShiftOpc = 0;
9632
9633     switch (IntNo) {
9634     case Intrinsic::arm_neon_vshifts:
9635     case Intrinsic::arm_neon_vshiftu:
9636       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
9637         VShiftOpc = ARMISD::VSHL;
9638         break;
9639       }
9640       if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
9641         VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
9642                      ARMISD::VSHRs : ARMISD::VSHRu);
9643         break;
9644       }
9645       return SDValue();
9646
9647     case Intrinsic::arm_neon_vrshifts:
9648     case Intrinsic::arm_neon_vrshiftu:
9649       if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
9650         break;
9651       return SDValue();
9652
9653     case Intrinsic::arm_neon_vqshifts:
9654     case Intrinsic::arm_neon_vqshiftu:
9655       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9656         break;
9657       return SDValue();
9658
9659     case Intrinsic::arm_neon_vqshiftsu:
9660       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9661         break;
9662       llvm_unreachable("invalid shift count for vqshlu intrinsic");
9663
9664     case Intrinsic::arm_neon_vrshiftn:
9665     case Intrinsic::arm_neon_vqshiftns:
9666     case Intrinsic::arm_neon_vqshiftnu:
9667     case Intrinsic::arm_neon_vqshiftnsu:
9668     case Intrinsic::arm_neon_vqrshiftns:
9669     case Intrinsic::arm_neon_vqrshiftnu:
9670     case Intrinsic::arm_neon_vqrshiftnsu:
9671       // Narrowing shifts require an immediate right shift.
9672       if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
9673         break;
9674       llvm_unreachable("invalid shift count for narrowing vector shift "
9675                        "intrinsic");
9676
9677     default:
9678       llvm_unreachable("unhandled vector shift");
9679     }
9680
9681     switch (IntNo) {
9682     case Intrinsic::arm_neon_vshifts:
9683     case Intrinsic::arm_neon_vshiftu:
9684       // Opcode already set above.
9685       break;
9686     case Intrinsic::arm_neon_vrshifts:
9687       VShiftOpc = ARMISD::VRSHRs; break;
9688     case Intrinsic::arm_neon_vrshiftu:
9689       VShiftOpc = ARMISD::VRSHRu; break;
9690     case Intrinsic::arm_neon_vrshiftn:
9691       VShiftOpc = ARMISD::VRSHRN; break;
9692     case Intrinsic::arm_neon_vqshifts:
9693       VShiftOpc = ARMISD::VQSHLs; break;
9694     case Intrinsic::arm_neon_vqshiftu:
9695       VShiftOpc = ARMISD::VQSHLu; break;
9696     case Intrinsic::arm_neon_vqshiftsu:
9697       VShiftOpc = ARMISD::VQSHLsu; break;
9698     case Intrinsic::arm_neon_vqshiftns:
9699       VShiftOpc = ARMISD::VQSHRNs; break;
9700     case Intrinsic::arm_neon_vqshiftnu:
9701       VShiftOpc = ARMISD::VQSHRNu; break;
9702     case Intrinsic::arm_neon_vqshiftnsu:
9703       VShiftOpc = ARMISD::VQSHRNsu; break;
9704     case Intrinsic::arm_neon_vqrshiftns:
9705       VShiftOpc = ARMISD::VQRSHRNs; break;
9706     case Intrinsic::arm_neon_vqrshiftnu:
9707       VShiftOpc = ARMISD::VQRSHRNu; break;
9708     case Intrinsic::arm_neon_vqrshiftnsu:
9709       VShiftOpc = ARMISD::VQRSHRNsu; break;
9710     }
9711
9712     SDLoc dl(N);
9713     return DAG.getNode(VShiftOpc, dl, N->getValueType(0),
9714                        N->getOperand(1), DAG.getConstant(Cnt, dl, MVT::i32));
9715   }
9716
9717   case Intrinsic::arm_neon_vshiftins: {
9718     EVT VT = N->getOperand(1).getValueType();
9719     int64_t Cnt;
9720     unsigned VShiftOpc = 0;
9721
9722     if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
9723       VShiftOpc = ARMISD::VSLI;
9724     else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
9725       VShiftOpc = ARMISD::VSRI;
9726     else {
9727       llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
9728     }
9729
9730     SDLoc dl(N);
9731     return DAG.getNode(VShiftOpc, dl, N->getValueType(0),
9732                        N->getOperand(1), N->getOperand(2),
9733                        DAG.getConstant(Cnt, dl, MVT::i32));
9734   }
9735
9736   case Intrinsic::arm_neon_vqrshifts:
9737   case Intrinsic::arm_neon_vqrshiftu:
9738     // No immediate versions of these to check for.
9739     break;
9740   }
9741
9742   return SDValue();
9743 }
9744
9745 /// PerformShiftCombine - Checks for immediate versions of vector shifts and
9746 /// lowers them.  As with the vector shift intrinsics, this is done during DAG
9747 /// combining instead of DAG legalizing because the build_vectors for 64-bit
9748 /// vector element shift counts are generally not legal, and it is hard to see
9749 /// their values after they get legalized to loads from a constant pool.
9750 static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
9751                                    const ARMSubtarget *ST) {
9752   EVT VT = N->getValueType(0);
9753   if (N->getOpcode() == ISD::SRL && VT == MVT::i32 && ST->hasV6Ops()) {
9754     // Canonicalize (srl (bswap x), 16) to (rotr (bswap x), 16) if the high
9755     // 16-bits of x is zero. This optimizes rev + lsr 16 to rev16.
9756     SDValue N1 = N->getOperand(1);
9757     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
9758       SDValue N0 = N->getOperand(0);
9759       if (C->getZExtValue() == 16 && N0.getOpcode() == ISD::BSWAP &&
9760           DAG.MaskedValueIsZero(N0.getOperand(0),
9761                                 APInt::getHighBitsSet(32, 16)))
9762         return DAG.getNode(ISD::ROTR, SDLoc(N), VT, N0, N1);
9763     }
9764   }
9765
9766   // Nothing to be done for scalar shifts.
9767   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9768   if (!VT.isVector() || !TLI.isTypeLegal(VT))
9769     return SDValue();
9770
9771   assert(ST->hasNEON() && "unexpected vector shift");
9772   int64_t Cnt;
9773
9774   switch (N->getOpcode()) {
9775   default: llvm_unreachable("unexpected shift opcode");
9776
9777   case ISD::SHL:
9778     if (isVShiftLImm(N->getOperand(1), VT, false, Cnt)) {
9779       SDLoc dl(N);
9780       return DAG.getNode(ARMISD::VSHL, dl, VT, N->getOperand(0),
9781                          DAG.getConstant(Cnt, dl, MVT::i32));
9782     }
9783     break;
9784
9785   case ISD::SRA:
9786   case ISD::SRL:
9787     if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
9788       unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
9789                             ARMISD::VSHRs : ARMISD::VSHRu);
9790       SDLoc dl(N);
9791       return DAG.getNode(VShiftOpc, dl, VT, N->getOperand(0),
9792                          DAG.getConstant(Cnt, dl, MVT::i32));
9793     }
9794   }
9795   return SDValue();
9796 }
9797
9798 /// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
9799 /// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
9800 static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
9801                                     const ARMSubtarget *ST) {
9802   SDValue N0 = N->getOperand(0);
9803
9804   // Check for sign- and zero-extensions of vector extract operations of 8-
9805   // and 16-bit vector elements.  NEON supports these directly.  They are
9806   // handled during DAG combining because type legalization will promote them
9807   // to 32-bit types and it is messy to recognize the operations after that.
9808   if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
9809     SDValue Vec = N0.getOperand(0);
9810     SDValue Lane = N0.getOperand(1);
9811     EVT VT = N->getValueType(0);
9812     EVT EltVT = N0.getValueType();
9813     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9814
9815     if (VT == MVT::i32 &&
9816         (EltVT == MVT::i8 || EltVT == MVT::i16) &&
9817         TLI.isTypeLegal(Vec.getValueType()) &&
9818         isa<ConstantSDNode>(Lane)) {
9819
9820       unsigned Opc = 0;
9821       switch (N->getOpcode()) {
9822       default: llvm_unreachable("unexpected opcode");
9823       case ISD::SIGN_EXTEND:
9824         Opc = ARMISD::VGETLANEs;
9825         break;
9826       case ISD::ZERO_EXTEND:
9827       case ISD::ANY_EXTEND:
9828         Opc = ARMISD::VGETLANEu;
9829         break;
9830       }
9831       return DAG.getNode(Opc, SDLoc(N), VT, Vec, Lane);
9832     }
9833   }
9834
9835   return SDValue();
9836 }
9837
9838 /// PerformSELECT_CCCombine - Target-specific DAG combining for ISD::SELECT_CC
9839 /// to match f32 max/min patterns to use NEON vmax/vmin instructions.
9840 static SDValue PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG,
9841                                        const ARMSubtarget *ST) {
9842   // If the target supports NEON, try to use vmax/vmin instructions for f32
9843   // selects like "x < y ? x : y".  Unless the NoNaNsFPMath option is set,
9844   // be careful about NaNs:  NEON's vmax/vmin return NaN if either operand is
9845   // a NaN; only do the transformation when it matches that behavior.
9846
9847   // For now only do this when using NEON for FP operations; if using VFP, it
9848   // is not obvious that the benefit outweighs the cost of switching to the
9849   // NEON pipeline.
9850   if (!ST->hasNEON() || !ST->useNEONForSinglePrecisionFP() ||
9851       N->getValueType(0) != MVT::f32)
9852     return SDValue();
9853
9854   SDValue CondLHS = N->getOperand(0);
9855   SDValue CondRHS = N->getOperand(1);
9856   SDValue LHS = N->getOperand(2);
9857   SDValue RHS = N->getOperand(3);
9858   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
9859
9860   unsigned Opcode = 0;
9861   bool IsReversed;
9862   if (DAG.isEqualTo(LHS, CondLHS) && DAG.isEqualTo(RHS, CondRHS)) {
9863     IsReversed = false; // x CC y ? x : y
9864   } else if (DAG.isEqualTo(LHS, CondRHS) && DAG.isEqualTo(RHS, CondLHS)) {
9865     IsReversed = true ; // x CC y ? y : x
9866   } else {
9867     return SDValue();
9868   }
9869
9870   bool IsUnordered;
9871   switch (CC) {
9872   default: break;
9873   case ISD::SETOLT:
9874   case ISD::SETOLE:
9875   case ISD::SETLT:
9876   case ISD::SETLE:
9877   case ISD::SETULT:
9878   case ISD::SETULE:
9879     // If LHS is NaN, an ordered comparison will be false and the result will
9880     // be the RHS, but vmin(NaN, RHS) = NaN.  Avoid this by checking that LHS
9881     // != NaN.  Likewise, for unordered comparisons, check for RHS != NaN.
9882     IsUnordered = (CC == ISD::SETULT || CC == ISD::SETULE);
9883     if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
9884       break;
9885     // For less-than-or-equal comparisons, "+0 <= -0" will be true but vmin
9886     // will return -0, so vmin can only be used for unsafe math or if one of
9887     // the operands is known to be nonzero.
9888     if ((CC == ISD::SETLE || CC == ISD::SETOLE || CC == ISD::SETULE) &&
9889         !DAG.getTarget().Options.UnsafeFPMath &&
9890         !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9891       break;
9892     Opcode = IsReversed ? ARMISD::FMAX : ARMISD::FMIN;
9893     break;
9894
9895   case ISD::SETOGT:
9896   case ISD::SETOGE:
9897   case ISD::SETGT:
9898   case ISD::SETGE:
9899   case ISD::SETUGT:
9900   case ISD::SETUGE:
9901     // If LHS is NaN, an ordered comparison will be false and the result will
9902     // be the RHS, but vmax(NaN, RHS) = NaN.  Avoid this by checking that LHS
9903     // != NaN.  Likewise, for unordered comparisons, check for RHS != NaN.
9904     IsUnordered = (CC == ISD::SETUGT || CC == ISD::SETUGE);
9905     if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
9906       break;
9907     // For greater-than-or-equal comparisons, "-0 >= +0" will be true but vmax
9908     // will return +0, so vmax can only be used for unsafe math or if one of
9909     // the operands is known to be nonzero.
9910     if ((CC == ISD::SETGE || CC == ISD::SETOGE || CC == ISD::SETUGE) &&
9911         !DAG.getTarget().Options.UnsafeFPMath &&
9912         !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9913       break;
9914     Opcode = IsReversed ? ARMISD::FMIN : ARMISD::FMAX;
9915     break;
9916   }
9917
9918   if (!Opcode)
9919     return SDValue();
9920   return DAG.getNode(Opcode, SDLoc(N), N->getValueType(0), LHS, RHS);
9921 }
9922
9923 /// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV.
9924 SDValue
9925 ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const {
9926   SDValue Cmp = N->getOperand(4);
9927   if (Cmp.getOpcode() != ARMISD::CMPZ)
9928     // Only looking at EQ and NE cases.
9929     return SDValue();
9930
9931   EVT VT = N->getValueType(0);
9932   SDLoc dl(N);
9933   SDValue LHS = Cmp.getOperand(0);
9934   SDValue RHS = Cmp.getOperand(1);
9935   SDValue FalseVal = N->getOperand(0);
9936   SDValue TrueVal = N->getOperand(1);
9937   SDValue ARMcc = N->getOperand(2);
9938   ARMCC::CondCodes CC =
9939     (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue();
9940
9941   // Simplify
9942   //   mov     r1, r0
9943   //   cmp     r1, x
9944   //   mov     r0, y
9945   //   moveq   r0, x
9946   // to
9947   //   cmp     r0, x
9948   //   movne   r0, y
9949   //
9950   //   mov     r1, r0
9951   //   cmp     r1, x
9952   //   mov     r0, x
9953   //   movne   r0, y
9954   // to
9955   //   cmp     r0, x
9956   //   movne   r0, y
9957   /// FIXME: Turn this into a target neutral optimization?
9958   SDValue Res;
9959   if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) {
9960     Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc,
9961                       N->getOperand(3), Cmp);
9962   } else if (CC == ARMCC::EQ && TrueVal == RHS) {
9963     SDValue ARMcc;
9964     SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl);
9965     Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc,
9966                       N->getOperand(3), NewCmp);
9967   }
9968
9969   if (Res.getNode()) {
9970     APInt KnownZero, KnownOne;
9971     DAG.computeKnownBits(SDValue(N,0), KnownZero, KnownOne);
9972     // Capture demanded bits information that would be otherwise lost.
9973     if (KnownZero == 0xfffffffe)
9974       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9975                         DAG.getValueType(MVT::i1));
9976     else if (KnownZero == 0xffffff00)
9977       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9978                         DAG.getValueType(MVT::i8));
9979     else if (KnownZero == 0xffff0000)
9980       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9981                         DAG.getValueType(MVT::i16));
9982   }
9983
9984   return Res;
9985 }
9986
9987 SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
9988                                              DAGCombinerInfo &DCI) const {
9989   switch (N->getOpcode()) {
9990   default: break;
9991   case ISD::ADDC:       return PerformADDCCombine(N, DCI, Subtarget);
9992   case ISD::ADD:        return PerformADDCombine(N, DCI, Subtarget);
9993   case ISD::SUB:        return PerformSUBCombine(N, DCI);
9994   case ISD::MUL:        return PerformMULCombine(N, DCI, Subtarget);
9995   case ISD::OR:         return PerformORCombine(N, DCI, Subtarget);
9996   case ISD::XOR:        return PerformXORCombine(N, DCI, Subtarget);
9997   case ISD::AND:        return PerformANDCombine(N, DCI, Subtarget);
9998   case ARMISD::BFI:     return PerformBFICombine(N, DCI);
9999   case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI, Subtarget);
10000   case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG);
10001   case ISD::STORE:      return PerformSTORECombine(N, DCI);
10002   case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI, Subtarget);
10003   case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI);
10004   case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG);
10005   case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI);
10006   case ISD::FP_TO_SINT:
10007   case ISD::FP_TO_UINT: return PerformVCVTCombine(N, DCI, Subtarget);
10008   case ISD::FDIV:       return PerformVDIVCombine(N, DCI, Subtarget);
10009   case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG);
10010   case ISD::SHL:
10011   case ISD::SRA:
10012   case ISD::SRL:        return PerformShiftCombine(N, DCI.DAG, Subtarget);
10013   case ISD::SIGN_EXTEND:
10014   case ISD::ZERO_EXTEND:
10015   case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget);
10016   case ISD::SELECT_CC:  return PerformSELECT_CCCombine(N, DCI.DAG, Subtarget);
10017   case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG);
10018   case ISD::LOAD:       return PerformLOADCombine(N, DCI);
10019   case ARMISD::VLD2DUP:
10020   case ARMISD::VLD3DUP:
10021   case ARMISD::VLD4DUP:
10022     return PerformVLDCombine(N, DCI);
10023   case ARMISD::BUILD_VECTOR:
10024     return PerformARMBUILD_VECTORCombine(N, DCI);
10025   case ISD::INTRINSIC_VOID:
10026   case ISD::INTRINSIC_W_CHAIN:
10027     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10028     case Intrinsic::arm_neon_vld1:
10029     case Intrinsic::arm_neon_vld2:
10030     case Intrinsic::arm_neon_vld3:
10031     case Intrinsic::arm_neon_vld4:
10032     case Intrinsic::arm_neon_vld2lane:
10033     case Intrinsic::arm_neon_vld3lane:
10034     case Intrinsic::arm_neon_vld4lane:
10035     case Intrinsic::arm_neon_vst1:
10036     case Intrinsic::arm_neon_vst2:
10037     case Intrinsic::arm_neon_vst3:
10038     case Intrinsic::arm_neon_vst4:
10039     case Intrinsic::arm_neon_vst2lane:
10040     case Intrinsic::arm_neon_vst3lane:
10041     case Intrinsic::arm_neon_vst4lane:
10042       return PerformVLDCombine(N, DCI);
10043     default: break;
10044     }
10045     break;
10046   }
10047   return SDValue();
10048 }
10049
10050 bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc,
10051                                                           EVT VT) const {
10052   return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE);
10053 }
10054
10055 bool ARMTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
10056                                                        unsigned,
10057                                                        unsigned,
10058                                                        bool *Fast) const {
10059   // The AllowsUnaliged flag models the SCTLR.A setting in ARM cpus
10060   bool AllowsUnaligned = Subtarget->allowsUnalignedMem();
10061
10062   switch (VT.getSimpleVT().SimpleTy) {
10063   default:
10064     return false;
10065   case MVT::i8:
10066   case MVT::i16:
10067   case MVT::i32: {
10068     // Unaligned access can use (for example) LRDB, LRDH, LDR
10069     if (AllowsUnaligned) {
10070       if (Fast)
10071         *Fast = Subtarget->hasV7Ops();
10072       return true;
10073     }
10074     return false;
10075   }
10076   case MVT::f64:
10077   case MVT::v2f64: {
10078     // For any little-endian targets with neon, we can support unaligned ld/st
10079     // of D and Q (e.g. {D0,D1}) registers by using vld1.i8/vst1.i8.
10080     // A big-endian target may also explicitly support unaligned accesses
10081     if (Subtarget->hasNEON() && (AllowsUnaligned || isLittleEndian())) {
10082       if (Fast)
10083         *Fast = true;
10084       return true;
10085     }
10086     return false;
10087   }
10088   }
10089 }
10090
10091 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
10092                        unsigned AlignCheck) {
10093   return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
10094           (DstAlign == 0 || DstAlign % AlignCheck == 0));
10095 }
10096
10097 EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size,
10098                                            unsigned DstAlign, unsigned SrcAlign,
10099                                            bool IsMemset, bool ZeroMemset,
10100                                            bool MemcpyStrSrc,
10101                                            MachineFunction &MF) const {
10102   const Function *F = MF.getFunction();
10103
10104   // See if we can use NEON instructions for this...
10105   if ((!IsMemset || ZeroMemset) && Subtarget->hasNEON() &&
10106       !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
10107     bool Fast;
10108     if (Size >= 16 &&
10109         (memOpAlign(SrcAlign, DstAlign, 16) ||
10110          (allowsMisalignedMemoryAccesses(MVT::v2f64, 0, 1, &Fast) && Fast))) {
10111       return MVT::v2f64;
10112     } else if (Size >= 8 &&
10113                (memOpAlign(SrcAlign, DstAlign, 8) ||
10114                 (allowsMisalignedMemoryAccesses(MVT::f64, 0, 1, &Fast) &&
10115                  Fast))) {
10116       return MVT::f64;
10117     }
10118   }
10119
10120   // Lowering to i32/i16 if the size permits.
10121   if (Size >= 4)
10122     return MVT::i32;
10123   else if (Size >= 2)
10124     return MVT::i16;
10125
10126   // Let the target-independent logic figure it out.
10127   return MVT::Other;
10128 }
10129
10130 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
10131   if (Val.getOpcode() != ISD::LOAD)
10132     return false;
10133
10134   EVT VT1 = Val.getValueType();
10135   if (!VT1.isSimple() || !VT1.isInteger() ||
10136       !VT2.isSimple() || !VT2.isInteger())
10137     return false;
10138
10139   switch (VT1.getSimpleVT().SimpleTy) {
10140   default: break;
10141   case MVT::i1:
10142   case MVT::i8:
10143   case MVT::i16:
10144     // 8-bit and 16-bit loads implicitly zero-extend to 32-bits.
10145     return true;
10146   }
10147
10148   return false;
10149 }
10150
10151 bool ARMTargetLowering::isVectorLoadExtDesirable(SDValue ExtVal) const {
10152   EVT VT = ExtVal.getValueType();
10153
10154   if (!isTypeLegal(VT))
10155     return false;
10156
10157   // Don't create a loadext if we can fold the extension into a wide/long
10158   // instruction.
10159   // If there's more than one user instruction, the loadext is desirable no
10160   // matter what.  There can be two uses by the same instruction.
10161   if (ExtVal->use_empty() ||
10162       !ExtVal->use_begin()->isOnlyUserOf(ExtVal.getNode()))
10163     return true;
10164
10165   SDNode *U = *ExtVal->use_begin();
10166   if ((U->getOpcode() == ISD::ADD || U->getOpcode() == ISD::SUB ||
10167        U->getOpcode() == ISD::SHL || U->getOpcode() == ARMISD::VSHL))
10168     return false;
10169
10170   return true;
10171 }
10172
10173 bool ARMTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
10174   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
10175     return false;
10176
10177   if (!isTypeLegal(EVT::getEVT(Ty1)))
10178     return false;
10179
10180   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
10181
10182   // Assuming the caller doesn't have a zeroext or signext return parameter,
10183   // truncation all the way down to i1 is valid.
10184   return true;
10185 }
10186
10187
10188 static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
10189   if (V < 0)
10190     return false;
10191
10192   unsigned Scale = 1;
10193   switch (VT.getSimpleVT().SimpleTy) {
10194   default: return false;
10195   case MVT::i1:
10196   case MVT::i8:
10197     // Scale == 1;
10198     break;
10199   case MVT::i16:
10200     // Scale == 2;
10201     Scale = 2;
10202     break;
10203   case MVT::i32:
10204     // Scale == 4;
10205     Scale = 4;
10206     break;
10207   }
10208
10209   if ((V & (Scale - 1)) != 0)
10210     return false;
10211   V /= Scale;
10212   return V == (V & ((1LL << 5) - 1));
10213 }
10214
10215 static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
10216                                       const ARMSubtarget *Subtarget) {
10217   bool isNeg = false;
10218   if (V < 0) {
10219     isNeg = true;
10220     V = - V;
10221   }
10222
10223   switch (VT.getSimpleVT().SimpleTy) {
10224   default: return false;
10225   case MVT::i1:
10226   case MVT::i8:
10227   case MVT::i16:
10228   case MVT::i32:
10229     // + imm12 or - imm8
10230     if (isNeg)
10231       return V == (V & ((1LL << 8) - 1));
10232     return V == (V & ((1LL << 12) - 1));
10233   case MVT::f32:
10234   case MVT::f64:
10235     // Same as ARM mode. FIXME: NEON?
10236     if (!Subtarget->hasVFP2())
10237       return false;
10238     if ((V & 3) != 0)
10239       return false;
10240     V >>= 2;
10241     return V == (V & ((1LL << 8) - 1));
10242   }
10243 }
10244
10245 /// isLegalAddressImmediate - Return true if the integer value can be used
10246 /// as the offset of the target addressing mode for load / store of the
10247 /// given type.
10248 static bool isLegalAddressImmediate(int64_t V, EVT VT,
10249                                     const ARMSubtarget *Subtarget) {
10250   if (V == 0)
10251     return true;
10252
10253   if (!VT.isSimple())
10254     return false;
10255
10256   if (Subtarget->isThumb1Only())
10257     return isLegalT1AddressImmediate(V, VT);
10258   else if (Subtarget->isThumb2())
10259     return isLegalT2AddressImmediate(V, VT, Subtarget);
10260
10261   // ARM mode.
10262   if (V < 0)
10263     V = - V;
10264   switch (VT.getSimpleVT().SimpleTy) {
10265   default: return false;
10266   case MVT::i1:
10267   case MVT::i8:
10268   case MVT::i32:
10269     // +- imm12
10270     return V == (V & ((1LL << 12) - 1));
10271   case MVT::i16:
10272     // +- imm8
10273     return V == (V & ((1LL << 8) - 1));
10274   case MVT::f32:
10275   case MVT::f64:
10276     if (!Subtarget->hasVFP2()) // FIXME: NEON?
10277       return false;
10278     if ((V & 3) != 0)
10279       return false;
10280     V >>= 2;
10281     return V == (V & ((1LL << 8) - 1));
10282   }
10283 }
10284
10285 bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
10286                                                       EVT VT) const {
10287   int Scale = AM.Scale;
10288   if (Scale < 0)
10289     return false;
10290
10291   switch (VT.getSimpleVT().SimpleTy) {
10292   default: return false;
10293   case MVT::i1:
10294   case MVT::i8:
10295   case MVT::i16:
10296   case MVT::i32:
10297     if (Scale == 1)
10298       return true;
10299     // r + r << imm
10300     Scale = Scale & ~1;
10301     return Scale == 2 || Scale == 4 || Scale == 8;
10302   case MVT::i64:
10303     // r + r
10304     if (((unsigned)AM.HasBaseReg + Scale) <= 2)
10305       return true;
10306     return false;
10307   case MVT::isVoid:
10308     // Note, we allow "void" uses (basically, uses that aren't loads or
10309     // stores), because arm allows folding a scale into many arithmetic
10310     // operations.  This should be made more precise and revisited later.
10311
10312     // Allow r << imm, but the imm has to be a multiple of two.
10313     if (Scale & 1) return false;
10314     return isPowerOf2_32(Scale);
10315   }
10316 }
10317
10318 /// isLegalAddressingMode - Return true if the addressing mode represented
10319 /// by AM is legal for this target, for a load/store of the specified type.
10320 bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
10321                                               Type *Ty,
10322                                               unsigned AS) const {
10323   EVT VT = getValueType(Ty, true);
10324   if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
10325     return false;
10326
10327   // Can never fold addr of global into load/store.
10328   if (AM.BaseGV)
10329     return false;
10330
10331   switch (AM.Scale) {
10332   case 0:  // no scale reg, must be "r+i" or "r", or "i".
10333     break;
10334   case 1:
10335     if (Subtarget->isThumb1Only())
10336       return false;
10337     // FALL THROUGH.
10338   default:
10339     // ARM doesn't support any R+R*scale+imm addr modes.
10340     if (AM.BaseOffs)
10341       return false;
10342
10343     if (!VT.isSimple())
10344       return false;
10345
10346     if (Subtarget->isThumb2())
10347       return isLegalT2ScaledAddressingMode(AM, VT);
10348
10349     int Scale = AM.Scale;
10350     switch (VT.getSimpleVT().SimpleTy) {
10351     default: return false;
10352     case MVT::i1:
10353     case MVT::i8:
10354     case MVT::i32:
10355       if (Scale < 0) Scale = -Scale;
10356       if (Scale == 1)
10357         return true;
10358       // r + r << imm
10359       return isPowerOf2_32(Scale & ~1);
10360     case MVT::i16:
10361     case MVT::i64:
10362       // r + r
10363       if (((unsigned)AM.HasBaseReg + Scale) <= 2)
10364         return true;
10365       return false;
10366
10367     case MVT::isVoid:
10368       // Note, we allow "void" uses (basically, uses that aren't loads or
10369       // stores), because arm allows folding a scale into many arithmetic
10370       // operations.  This should be made more precise and revisited later.
10371
10372       // Allow r << imm, but the imm has to be a multiple of two.
10373       if (Scale & 1) return false;
10374       return isPowerOf2_32(Scale);
10375     }
10376   }
10377   return true;
10378 }
10379
10380 /// isLegalICmpImmediate - Return true if the specified immediate is legal
10381 /// icmp immediate, that is the target has icmp instructions which can compare
10382 /// a register against the immediate without having to materialize the
10383 /// immediate into a register.
10384 bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
10385   // Thumb2 and ARM modes can use cmn for negative immediates.
10386   if (!Subtarget->isThumb())
10387     return ARM_AM::getSOImmVal(std::abs(Imm)) != -1;
10388   if (Subtarget->isThumb2())
10389     return ARM_AM::getT2SOImmVal(std::abs(Imm)) != -1;
10390   // Thumb1 doesn't have cmn, and only 8-bit immediates.
10391   return Imm >= 0 && Imm <= 255;
10392 }
10393
10394 /// isLegalAddImmediate - Return true if the specified immediate is a legal add
10395 /// *or sub* immediate, that is the target has add or sub instructions which can
10396 /// add a register with the immediate without having to materialize the
10397 /// immediate into a register.
10398 bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const {
10399   // Same encoding for add/sub, just flip the sign.
10400   int64_t AbsImm = std::abs(Imm);
10401   if (!Subtarget->isThumb())
10402     return ARM_AM::getSOImmVal(AbsImm) != -1;
10403   if (Subtarget->isThumb2())
10404     return ARM_AM::getT2SOImmVal(AbsImm) != -1;
10405   // Thumb1 only has 8-bit unsigned immediate.
10406   return AbsImm >= 0 && AbsImm <= 255;
10407 }
10408
10409 static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
10410                                       bool isSEXTLoad, SDValue &Base,
10411                                       SDValue &Offset, bool &isInc,
10412                                       SelectionDAG &DAG) {
10413   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
10414     return false;
10415
10416   if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
10417     // AddressingMode 3
10418     Base = Ptr->getOperand(0);
10419     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10420       int RHSC = (int)RHS->getZExtValue();
10421       if (RHSC < 0 && RHSC > -256) {
10422         assert(Ptr->getOpcode() == ISD::ADD);
10423         isInc = false;
10424         Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
10425         return true;
10426       }
10427     }
10428     isInc = (Ptr->getOpcode() == ISD::ADD);
10429     Offset = Ptr->getOperand(1);
10430     return true;
10431   } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
10432     // AddressingMode 2
10433     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10434       int RHSC = (int)RHS->getZExtValue();
10435       if (RHSC < 0 && RHSC > -0x1000) {
10436         assert(Ptr->getOpcode() == ISD::ADD);
10437         isInc = false;
10438         Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
10439         Base = Ptr->getOperand(0);
10440         return true;
10441       }
10442     }
10443
10444     if (Ptr->getOpcode() == ISD::ADD) {
10445       isInc = true;
10446       ARM_AM::ShiftOpc ShOpcVal=
10447         ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode());
10448       if (ShOpcVal != ARM_AM::no_shift) {
10449         Base = Ptr->getOperand(1);
10450         Offset = Ptr->getOperand(0);
10451       } else {
10452         Base = Ptr->getOperand(0);
10453         Offset = Ptr->getOperand(1);
10454       }
10455       return true;
10456     }
10457
10458     isInc = (Ptr->getOpcode() == ISD::ADD);
10459     Base = Ptr->getOperand(0);
10460     Offset = Ptr->getOperand(1);
10461     return true;
10462   }
10463
10464   // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
10465   return false;
10466 }
10467
10468 static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
10469                                      bool isSEXTLoad, SDValue &Base,
10470                                      SDValue &Offset, bool &isInc,
10471                                      SelectionDAG &DAG) {
10472   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
10473     return false;
10474
10475   Base = Ptr->getOperand(0);
10476   if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10477     int RHSC = (int)RHS->getZExtValue();
10478     if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
10479       assert(Ptr->getOpcode() == ISD::ADD);
10480       isInc = false;
10481       Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
10482       return true;
10483     } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
10484       isInc = Ptr->getOpcode() == ISD::ADD;
10485       Offset = DAG.getConstant(RHSC, SDLoc(Ptr), RHS->getValueType(0));
10486       return true;
10487     }
10488   }
10489
10490   return false;
10491 }
10492
10493 /// getPreIndexedAddressParts - returns true by value, base pointer and
10494 /// offset pointer and addressing mode by reference if the node's address
10495 /// can be legally represented as pre-indexed load / store address.
10496 bool
10497 ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
10498                                              SDValue &Offset,
10499                                              ISD::MemIndexedMode &AM,
10500                                              SelectionDAG &DAG) const {
10501   if (Subtarget->isThumb1Only())
10502     return false;
10503
10504   EVT VT;
10505   SDValue Ptr;
10506   bool isSEXTLoad = false;
10507   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10508     Ptr = LD->getBasePtr();
10509     VT  = LD->getMemoryVT();
10510     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
10511   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10512     Ptr = ST->getBasePtr();
10513     VT  = ST->getMemoryVT();
10514   } else
10515     return false;
10516
10517   bool isInc;
10518   bool isLegal = false;
10519   if (Subtarget->isThumb2())
10520     isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
10521                                        Offset, isInc, DAG);
10522   else
10523     isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
10524                                         Offset, isInc, DAG);
10525   if (!isLegal)
10526     return false;
10527
10528   AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
10529   return true;
10530 }
10531
10532 /// getPostIndexedAddressParts - returns true by value, base pointer and
10533 /// offset pointer and addressing mode by reference if this node can be
10534 /// combined with a load / store to form a post-indexed load / store.
10535 bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
10536                                                    SDValue &Base,
10537                                                    SDValue &Offset,
10538                                                    ISD::MemIndexedMode &AM,
10539                                                    SelectionDAG &DAG) const {
10540   if (Subtarget->isThumb1Only())
10541     return false;
10542
10543   EVT VT;
10544   SDValue Ptr;
10545   bool isSEXTLoad = false;
10546   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10547     VT  = LD->getMemoryVT();
10548     Ptr = LD->getBasePtr();
10549     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
10550   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10551     VT  = ST->getMemoryVT();
10552     Ptr = ST->getBasePtr();
10553   } else
10554     return false;
10555
10556   bool isInc;
10557   bool isLegal = false;
10558   if (Subtarget->isThumb2())
10559     isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
10560                                        isInc, DAG);
10561   else
10562     isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
10563                                         isInc, DAG);
10564   if (!isLegal)
10565     return false;
10566
10567   if (Ptr != Base) {
10568     // Swap base ptr and offset to catch more post-index load / store when
10569     // it's legal. In Thumb2 mode, offset must be an immediate.
10570     if (Ptr == Offset && Op->getOpcode() == ISD::ADD &&
10571         !Subtarget->isThumb2())
10572       std::swap(Base, Offset);
10573
10574     // Post-indexed load / store update the base pointer.
10575     if (Ptr != Base)
10576       return false;
10577   }
10578
10579   AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
10580   return true;
10581 }
10582
10583 void ARMTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
10584                                                       APInt &KnownZero,
10585                                                       APInt &KnownOne,
10586                                                       const SelectionDAG &DAG,
10587                                                       unsigned Depth) const {
10588   unsigned BitWidth = KnownOne.getBitWidth();
10589   KnownZero = KnownOne = APInt(BitWidth, 0);
10590   switch (Op.getOpcode()) {
10591   default: break;
10592   case ARMISD::ADDC:
10593   case ARMISD::ADDE:
10594   case ARMISD::SUBC:
10595   case ARMISD::SUBE:
10596     // These nodes' second result is a boolean
10597     if (Op.getResNo() == 0)
10598       break;
10599     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
10600     break;
10601   case ARMISD::CMOV: {
10602     // Bits are known zero/one if known on the LHS and RHS.
10603     DAG.computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
10604     if (KnownZero == 0 && KnownOne == 0) return;
10605
10606     APInt KnownZeroRHS, KnownOneRHS;
10607     DAG.computeKnownBits(Op.getOperand(1), KnownZeroRHS, KnownOneRHS, Depth+1);
10608     KnownZero &= KnownZeroRHS;
10609     KnownOne  &= KnownOneRHS;
10610     return;
10611   }
10612   case ISD::INTRINSIC_W_CHAIN: {
10613     ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
10614     Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
10615     switch (IntID) {
10616     default: return;
10617     case Intrinsic::arm_ldaex:
10618     case Intrinsic::arm_ldrex: {
10619       EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
10620       unsigned MemBits = VT.getScalarType().getSizeInBits();
10621       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
10622       return;
10623     }
10624     }
10625   }
10626   }
10627 }
10628
10629 //===----------------------------------------------------------------------===//
10630 //                           ARM Inline Assembly Support
10631 //===----------------------------------------------------------------------===//
10632
10633 bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const {
10634   // Looking for "rev" which is V6+.
10635   if (!Subtarget->hasV6Ops())
10636     return false;
10637
10638   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
10639   std::string AsmStr = IA->getAsmString();
10640   SmallVector<StringRef, 4> AsmPieces;
10641   SplitString(AsmStr, AsmPieces, ";\n");
10642
10643   switch (AsmPieces.size()) {
10644   default: return false;
10645   case 1:
10646     AsmStr = AsmPieces[0];
10647     AsmPieces.clear();
10648     SplitString(AsmStr, AsmPieces, " \t,");
10649
10650     // rev $0, $1
10651     if (AsmPieces.size() == 3 &&
10652         AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" &&
10653         IA->getConstraintString().compare(0, 4, "=l,l") == 0) {
10654       IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
10655       if (Ty && Ty->getBitWidth() == 32)
10656         return IntrinsicLowering::LowerToByteSwap(CI);
10657     }
10658     break;
10659   }
10660
10661   return false;
10662 }
10663
10664 /// getConstraintType - Given a constraint letter, return the type of
10665 /// constraint it is for this target.
10666 ARMTargetLowering::ConstraintType
10667 ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
10668   if (Constraint.size() == 1) {
10669     switch (Constraint[0]) {
10670     default:  break;
10671     case 'l': return C_RegisterClass;
10672     case 'w': return C_RegisterClass;
10673     case 'h': return C_RegisterClass;
10674     case 'x': return C_RegisterClass;
10675     case 't': return C_RegisterClass;
10676     case 'j': return C_Other; // Constant for movw.
10677       // An address with a single base register. Due to the way we
10678       // currently handle addresses it is the same as an 'r' memory constraint.
10679     case 'Q': return C_Memory;
10680     }
10681   } else if (Constraint.size() == 2) {
10682     switch (Constraint[0]) {
10683     default: break;
10684     // All 'U+' constraints are addresses.
10685     case 'U': return C_Memory;
10686     }
10687   }
10688   return TargetLowering::getConstraintType(Constraint);
10689 }
10690
10691 /// Examine constraint type and operand type and determine a weight value.
10692 /// This object must already have been set up with the operand type
10693 /// and the current alternative constraint selected.
10694 TargetLowering::ConstraintWeight
10695 ARMTargetLowering::getSingleConstraintMatchWeight(
10696     AsmOperandInfo &info, const char *constraint) const {
10697   ConstraintWeight weight = CW_Invalid;
10698   Value *CallOperandVal = info.CallOperandVal;
10699     // If we don't have a value, we can't do a match,
10700     // but allow it at the lowest weight.
10701   if (!CallOperandVal)
10702     return CW_Default;
10703   Type *type = CallOperandVal->getType();
10704   // Look at the constraint type.
10705   switch (*constraint) {
10706   default:
10707     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
10708     break;
10709   case 'l':
10710     if (type->isIntegerTy()) {
10711       if (Subtarget->isThumb())
10712         weight = CW_SpecificReg;
10713       else
10714         weight = CW_Register;
10715     }
10716     break;
10717   case 'w':
10718     if (type->isFloatingPointTy())
10719       weight = CW_Register;
10720     break;
10721   }
10722   return weight;
10723 }
10724
10725 typedef std::pair<unsigned, const TargetRegisterClass*> RCPair;
10726 RCPair
10727 ARMTargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
10728                                                 const std::string &Constraint,
10729                                                 MVT VT) const {
10730   if (Constraint.size() == 1) {
10731     // GCC ARM Constraint Letters
10732     switch (Constraint[0]) {
10733     case 'l': // Low regs or general regs.
10734       if (Subtarget->isThumb())
10735         return RCPair(0U, &ARM::tGPRRegClass);
10736       return RCPair(0U, &ARM::GPRRegClass);
10737     case 'h': // High regs or no regs.
10738       if (Subtarget->isThumb())
10739         return RCPair(0U, &ARM::hGPRRegClass);
10740       break;
10741     case 'r':
10742       if (Subtarget->isThumb1Only())
10743         return RCPair(0U, &ARM::tGPRRegClass);
10744       return RCPair(0U, &ARM::GPRRegClass);
10745     case 'w':
10746       if (VT == MVT::Other)
10747         break;
10748       if (VT == MVT::f32)
10749         return RCPair(0U, &ARM::SPRRegClass);
10750       if (VT.getSizeInBits() == 64)
10751         return RCPair(0U, &ARM::DPRRegClass);
10752       if (VT.getSizeInBits() == 128)
10753         return RCPair(0U, &ARM::QPRRegClass);
10754       break;
10755     case 'x':
10756       if (VT == MVT::Other)
10757         break;
10758       if (VT == MVT::f32)
10759         return RCPair(0U, &ARM::SPR_8RegClass);
10760       if (VT.getSizeInBits() == 64)
10761         return RCPair(0U, &ARM::DPR_8RegClass);
10762       if (VT.getSizeInBits() == 128)
10763         return RCPair(0U, &ARM::QPR_8RegClass);
10764       break;
10765     case 't':
10766       if (VT == MVT::f32)
10767         return RCPair(0U, &ARM::SPRRegClass);
10768       break;
10769     }
10770   }
10771   if (StringRef("{cc}").equals_lower(Constraint))
10772     return std::make_pair(unsigned(ARM::CPSR), &ARM::CCRRegClass);
10773
10774   return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
10775 }
10776
10777 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
10778 /// vector.  If it is invalid, don't add anything to Ops.
10779 void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
10780                                                      std::string &Constraint,
10781                                                      std::vector<SDValue>&Ops,
10782                                                      SelectionDAG &DAG) const {
10783   SDValue Result;
10784
10785   // Currently only support length 1 constraints.
10786   if (Constraint.length() != 1) return;
10787
10788   char ConstraintLetter = Constraint[0];
10789   switch (ConstraintLetter) {
10790   default: break;
10791   case 'j':
10792   case 'I': case 'J': case 'K': case 'L':
10793   case 'M': case 'N': case 'O':
10794     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
10795     if (!C)
10796       return;
10797
10798     int64_t CVal64 = C->getSExtValue();
10799     int CVal = (int) CVal64;
10800     // None of these constraints allow values larger than 32 bits.  Check
10801     // that the value fits in an int.
10802     if (CVal != CVal64)
10803       return;
10804
10805     switch (ConstraintLetter) {
10806       case 'j':
10807         // Constant suitable for movw, must be between 0 and
10808         // 65535.
10809         if (Subtarget->hasV6T2Ops())
10810           if (CVal >= 0 && CVal <= 65535)
10811             break;
10812         return;
10813       case 'I':
10814         if (Subtarget->isThumb1Only()) {
10815           // This must be a constant between 0 and 255, for ADD
10816           // immediates.
10817           if (CVal >= 0 && CVal <= 255)
10818             break;
10819         } else if (Subtarget->isThumb2()) {
10820           // A constant that can be used as an immediate value in a
10821           // data-processing instruction.
10822           if (ARM_AM::getT2SOImmVal(CVal) != -1)
10823             break;
10824         } else {
10825           // A constant that can be used as an immediate value in a
10826           // data-processing instruction.
10827           if (ARM_AM::getSOImmVal(CVal) != -1)
10828             break;
10829         }
10830         return;
10831
10832       case 'J':
10833         if (Subtarget->isThumb()) {  // FIXME thumb2
10834           // This must be a constant between -255 and -1, for negated ADD
10835           // immediates. This can be used in GCC with an "n" modifier that
10836           // prints the negated value, for use with SUB instructions. It is
10837           // not useful otherwise but is implemented for compatibility.
10838           if (CVal >= -255 && CVal <= -1)
10839             break;
10840         } else {
10841           // This must be a constant between -4095 and 4095. It is not clear
10842           // what this constraint is intended for. Implemented for
10843           // compatibility with GCC.
10844           if (CVal >= -4095 && CVal <= 4095)
10845             break;
10846         }
10847         return;
10848
10849       case 'K':
10850         if (Subtarget->isThumb1Only()) {
10851           // A 32-bit value where only one byte has a nonzero value. Exclude
10852           // zero to match GCC. This constraint is used by GCC internally for
10853           // constants that can be loaded with a move/shift combination.
10854           // It is not useful otherwise but is implemented for compatibility.
10855           if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
10856             break;
10857         } else if (Subtarget->isThumb2()) {
10858           // A constant whose bitwise inverse can be used as an immediate
10859           // value in a data-processing instruction. This can be used in GCC
10860           // with a "B" modifier that prints the inverted value, for use with
10861           // BIC and MVN instructions. It is not useful otherwise but is
10862           // implemented for compatibility.
10863           if (ARM_AM::getT2SOImmVal(~CVal) != -1)
10864             break;
10865         } else {
10866           // A constant whose bitwise inverse can be used as an immediate
10867           // value in a data-processing instruction. This can be used in GCC
10868           // with a "B" modifier that prints the inverted value, for use with
10869           // BIC and MVN instructions. It is not useful otherwise but is
10870           // implemented for compatibility.
10871           if (ARM_AM::getSOImmVal(~CVal) != -1)
10872             break;
10873         }
10874         return;
10875
10876       case 'L':
10877         if (Subtarget->isThumb1Only()) {
10878           // This must be a constant between -7 and 7,
10879           // for 3-operand ADD/SUB immediate instructions.
10880           if (CVal >= -7 && CVal < 7)
10881             break;
10882         } else if (Subtarget->isThumb2()) {
10883           // A constant whose negation can be used as an immediate value in a
10884           // data-processing instruction. This can be used in GCC with an "n"
10885           // modifier that prints the negated value, for use with SUB
10886           // instructions. It is not useful otherwise but is implemented for
10887           // compatibility.
10888           if (ARM_AM::getT2SOImmVal(-CVal) != -1)
10889             break;
10890         } else {
10891           // A constant whose negation can be used as an immediate value in a
10892           // data-processing instruction. This can be used in GCC with an "n"
10893           // modifier that prints the negated value, for use with SUB
10894           // instructions. It is not useful otherwise but is implemented for
10895           // compatibility.
10896           if (ARM_AM::getSOImmVal(-CVal) != -1)
10897             break;
10898         }
10899         return;
10900
10901       case 'M':
10902         if (Subtarget->isThumb()) { // FIXME thumb2
10903           // This must be a multiple of 4 between 0 and 1020, for
10904           // ADD sp + immediate.
10905           if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
10906             break;
10907         } else {
10908           // A power of two or a constant between 0 and 32.  This is used in
10909           // GCC for the shift amount on shifted register operands, but it is
10910           // useful in general for any shift amounts.
10911           if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
10912             break;
10913         }
10914         return;
10915
10916       case 'N':
10917         if (Subtarget->isThumb()) {  // FIXME thumb2
10918           // This must be a constant between 0 and 31, for shift amounts.
10919           if (CVal >= 0 && CVal <= 31)
10920             break;
10921         }
10922         return;
10923
10924       case 'O':
10925         if (Subtarget->isThumb()) {  // FIXME thumb2
10926           // This must be a multiple of 4 between -508 and 508, for
10927           // ADD/SUB sp = sp + immediate.
10928           if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
10929             break;
10930         }
10931         return;
10932     }
10933     Result = DAG.getTargetConstant(CVal, SDLoc(Op), Op.getValueType());
10934     break;
10935   }
10936
10937   if (Result.getNode()) {
10938     Ops.push_back(Result);
10939     return;
10940   }
10941   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
10942 }
10943
10944 SDValue ARMTargetLowering::LowerDivRem(SDValue Op, SelectionDAG &DAG) const {
10945   assert(Subtarget->isTargetAEABI() && "Register-based DivRem lowering only");
10946   unsigned Opcode = Op->getOpcode();
10947   assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) &&
10948          "Invalid opcode for Div/Rem lowering");
10949   bool isSigned = (Opcode == ISD::SDIVREM);
10950   EVT VT = Op->getValueType(0);
10951   Type *Ty = VT.getTypeForEVT(*DAG.getContext());
10952
10953   RTLIB::Libcall LC;
10954   switch (VT.getSimpleVT().SimpleTy) {
10955   default: llvm_unreachable("Unexpected request for libcall!");
10956   case MVT::i8:  LC = isSigned ? RTLIB::SDIVREM_I8  : RTLIB::UDIVREM_I8;  break;
10957   case MVT::i16: LC = isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
10958   case MVT::i32: LC = isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
10959   case MVT::i64: LC = isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
10960   }
10961
10962   SDValue InChain = DAG.getEntryNode();
10963
10964   TargetLowering::ArgListTy Args;
10965   TargetLowering::ArgListEntry Entry;
10966   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
10967     EVT ArgVT = Op->getOperand(i).getValueType();
10968     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10969     Entry.Node = Op->getOperand(i);
10970     Entry.Ty = ArgTy;
10971     Entry.isSExt = isSigned;
10972     Entry.isZExt = !isSigned;
10973     Args.push_back(Entry);
10974   }
10975
10976   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
10977                                          getPointerTy());
10978
10979   Type *RetTy = (Type*)StructType::get(Ty, Ty, nullptr);
10980
10981   SDLoc dl(Op);
10982   TargetLowering::CallLoweringInfo CLI(DAG);
10983   CLI.setDebugLoc(dl).setChain(InChain)
10984     .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
10985     .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
10986
10987   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
10988   return CallInfo.first;
10989 }
10990
10991 SDValue
10992 ARMTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const {
10993   assert(Subtarget->isTargetWindows() && "unsupported target platform");
10994   SDLoc DL(Op);
10995
10996   // Get the inputs.
10997   SDValue Chain = Op.getOperand(0);
10998   SDValue Size  = Op.getOperand(1);
10999
11000   SDValue Words = DAG.getNode(ISD::SRL, DL, MVT::i32, Size,
11001                               DAG.getConstant(2, DL, MVT::i32));
11002
11003   SDValue Flag;
11004   Chain = DAG.getCopyToReg(Chain, DL, ARM::R4, Words, Flag);
11005   Flag = Chain.getValue(1);
11006
11007   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11008   Chain = DAG.getNode(ARMISD::WIN__CHKSTK, DL, NodeTys, Chain, Flag);
11009
11010   SDValue NewSP = DAG.getCopyFromReg(Chain, DL, ARM::SP, MVT::i32);
11011   Chain = NewSP.getValue(1);
11012
11013   SDValue Ops[2] = { NewSP, Chain };
11014   return DAG.getMergeValues(Ops, DL);
11015 }
11016
11017 SDValue ARMTargetLowering::LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) const {
11018   assert(Op.getValueType() == MVT::f64 && Subtarget->isFPOnlySP() &&
11019          "Unexpected type for custom-lowering FP_EXTEND");
11020
11021   RTLIB::Libcall LC;
11022   LC = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType());
11023
11024   SDValue SrcVal = Op.getOperand(0);
11025   return makeLibCall(DAG, LC, Op.getValueType(), &SrcVal, 1,
11026                      /*isSigned*/ false, SDLoc(Op)).first;
11027 }
11028
11029 SDValue ARMTargetLowering::LowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const {
11030   assert(Op.getOperand(0).getValueType() == MVT::f64 &&
11031          Subtarget->isFPOnlySP() &&
11032          "Unexpected type for custom-lowering FP_ROUND");
11033
11034   RTLIB::Libcall LC;
11035   LC = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType());
11036
11037   SDValue SrcVal = Op.getOperand(0);
11038   return makeLibCall(DAG, LC, Op.getValueType(), &SrcVal, 1,
11039                      /*isSigned*/ false, SDLoc(Op)).first;
11040 }
11041
11042 bool
11043 ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
11044   // The ARM target isn't yet aware of offsets.
11045   return false;
11046 }
11047
11048 bool ARM::isBitFieldInvertedMask(unsigned v) {
11049   if (v == 0xffffffff)
11050     return false;
11051
11052   // there can be 1's on either or both "outsides", all the "inside"
11053   // bits must be 0's
11054   return isShiftedMask_32(~v);
11055 }
11056
11057 /// isFPImmLegal - Returns true if the target can instruction select the
11058 /// specified FP immediate natively. If false, the legalizer will
11059 /// materialize the FP immediate as a load from a constant pool.
11060 bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
11061   if (!Subtarget->hasVFP3())
11062     return false;
11063   if (VT == MVT::f32)
11064     return ARM_AM::getFP32Imm(Imm) != -1;
11065   if (VT == MVT::f64 && !Subtarget->isFPOnlySP())
11066     return ARM_AM::getFP64Imm(Imm) != -1;
11067   return false;
11068 }
11069
11070 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
11071 /// MemIntrinsicNodes.  The associated MachineMemOperands record the alignment
11072 /// specified in the intrinsic calls.
11073 bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
11074                                            const CallInst &I,
11075                                            unsigned Intrinsic) const {
11076   switch (Intrinsic) {
11077   case Intrinsic::arm_neon_vld1:
11078   case Intrinsic::arm_neon_vld2:
11079   case Intrinsic::arm_neon_vld3:
11080   case Intrinsic::arm_neon_vld4:
11081   case Intrinsic::arm_neon_vld2lane:
11082   case Intrinsic::arm_neon_vld3lane:
11083   case Intrinsic::arm_neon_vld4lane: {
11084     Info.opc = ISD::INTRINSIC_W_CHAIN;
11085     // Conservatively set memVT to the entire set of vectors loaded.
11086     uint64_t NumElts = getDataLayout()->getTypeAllocSize(I.getType()) / 8;
11087     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
11088     Info.ptrVal = I.getArgOperand(0);
11089     Info.offset = 0;
11090     Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
11091     Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
11092     Info.vol = false; // volatile loads with NEON intrinsics not supported
11093     Info.readMem = true;
11094     Info.writeMem = false;
11095     return true;
11096   }
11097   case Intrinsic::arm_neon_vst1:
11098   case Intrinsic::arm_neon_vst2:
11099   case Intrinsic::arm_neon_vst3:
11100   case Intrinsic::arm_neon_vst4:
11101   case Intrinsic::arm_neon_vst2lane:
11102   case Intrinsic::arm_neon_vst3lane:
11103   case Intrinsic::arm_neon_vst4lane: {
11104     Info.opc = ISD::INTRINSIC_VOID;
11105     // Conservatively set memVT to the entire set of vectors stored.
11106     unsigned NumElts = 0;
11107     for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
11108       Type *ArgTy = I.getArgOperand(ArgI)->getType();
11109       if (!ArgTy->isVectorTy())
11110         break;
11111       NumElts += getDataLayout()->getTypeAllocSize(ArgTy) / 8;
11112     }
11113     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
11114     Info.ptrVal = I.getArgOperand(0);
11115     Info.offset = 0;
11116     Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
11117     Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
11118     Info.vol = false; // volatile stores with NEON intrinsics not supported
11119     Info.readMem = false;
11120     Info.writeMem = true;
11121     return true;
11122   }
11123   case Intrinsic::arm_ldaex:
11124   case Intrinsic::arm_ldrex: {
11125     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
11126     Info.opc = ISD::INTRINSIC_W_CHAIN;
11127     Info.memVT = MVT::getVT(PtrTy->getElementType());
11128     Info.ptrVal = I.getArgOperand(0);
11129     Info.offset = 0;
11130     Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
11131     Info.vol = true;
11132     Info.readMem = true;
11133     Info.writeMem = false;
11134     return true;
11135   }
11136   case Intrinsic::arm_stlex:
11137   case Intrinsic::arm_strex: {
11138     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
11139     Info.opc = ISD::INTRINSIC_W_CHAIN;
11140     Info.memVT = MVT::getVT(PtrTy->getElementType());
11141     Info.ptrVal = I.getArgOperand(1);
11142     Info.offset = 0;
11143     Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
11144     Info.vol = true;
11145     Info.readMem = false;
11146     Info.writeMem = true;
11147     return true;
11148   }
11149   case Intrinsic::arm_stlexd:
11150   case Intrinsic::arm_strexd: {
11151     Info.opc = ISD::INTRINSIC_W_CHAIN;
11152     Info.memVT = MVT::i64;
11153     Info.ptrVal = I.getArgOperand(2);
11154     Info.offset = 0;
11155     Info.align = 8;
11156     Info.vol = true;
11157     Info.readMem = false;
11158     Info.writeMem = true;
11159     return true;
11160   }
11161   case Intrinsic::arm_ldaexd:
11162   case Intrinsic::arm_ldrexd: {
11163     Info.opc = ISD::INTRINSIC_W_CHAIN;
11164     Info.memVT = MVT::i64;
11165     Info.ptrVal = I.getArgOperand(0);
11166     Info.offset = 0;
11167     Info.align = 8;
11168     Info.vol = true;
11169     Info.readMem = true;
11170     Info.writeMem = false;
11171     return true;
11172   }
11173   default:
11174     break;
11175   }
11176
11177   return false;
11178 }
11179
11180 /// \brief Returns true if it is beneficial to convert a load of a constant
11181 /// to just the constant itself.
11182 bool ARMTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
11183                                                           Type *Ty) const {
11184   assert(Ty->isIntegerTy());
11185
11186   unsigned Bits = Ty->getPrimitiveSizeInBits();
11187   if (Bits == 0 || Bits > 32)
11188     return false;
11189   return true;
11190 }
11191
11192 bool ARMTargetLowering::hasLoadLinkedStoreConditional() const { return true; }
11193
11194 Instruction* ARMTargetLowering::makeDMB(IRBuilder<> &Builder,
11195                                         ARM_MB::MemBOpt Domain) const {
11196   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
11197
11198   // First, if the target has no DMB, see what fallback we can use.
11199   if (!Subtarget->hasDataBarrier()) {
11200     // Some ARMv6 cpus can support data barriers with an mcr instruction.
11201     // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
11202     // here.
11203     if (Subtarget->hasV6Ops() && !Subtarget->isThumb()) {
11204       Function *MCR = llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_mcr);
11205       Value* args[6] = {Builder.getInt32(15), Builder.getInt32(0),
11206                         Builder.getInt32(0), Builder.getInt32(7),
11207                         Builder.getInt32(10), Builder.getInt32(5)};
11208       return Builder.CreateCall(MCR, args);
11209     } else {
11210       // Instead of using barriers, atomic accesses on these subtargets use
11211       // libcalls.
11212       llvm_unreachable("makeDMB on a target so old that it has no barriers");
11213     }
11214   } else {
11215     Function *DMB = llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_dmb);
11216     // Only a full system barrier exists in the M-class architectures.
11217     Domain = Subtarget->isMClass() ? ARM_MB::SY : Domain;
11218     Constant *CDomain = Builder.getInt32(Domain);
11219     return Builder.CreateCall(DMB, CDomain);
11220   }
11221 }
11222
11223 // Based on http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
11224 Instruction* ARMTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
11225                                          AtomicOrdering Ord, bool IsStore,
11226                                          bool IsLoad) const {
11227   if (!getInsertFencesForAtomic())
11228     return nullptr;
11229
11230   switch (Ord) {
11231   case NotAtomic:
11232   case Unordered:
11233     llvm_unreachable("Invalid fence: unordered/non-atomic");
11234   case Monotonic:
11235   case Acquire:
11236     return nullptr; // Nothing to do
11237   case SequentiallyConsistent:
11238     if (!IsStore)
11239       return nullptr; // Nothing to do
11240     /*FALLTHROUGH*/
11241   case Release:
11242   case AcquireRelease:
11243     if (Subtarget->isSwift())
11244       return makeDMB(Builder, ARM_MB::ISHST);
11245     // FIXME: add a comment with a link to documentation justifying this.
11246     else
11247       return makeDMB(Builder, ARM_MB::ISH);
11248   }
11249   llvm_unreachable("Unknown fence ordering in emitLeadingFence");
11250 }
11251
11252 Instruction* ARMTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
11253                                           AtomicOrdering Ord, bool IsStore,
11254                                           bool IsLoad) const {
11255   if (!getInsertFencesForAtomic())
11256     return nullptr;
11257
11258   switch (Ord) {
11259   case NotAtomic:
11260   case Unordered:
11261     llvm_unreachable("Invalid fence: unordered/not-atomic");
11262   case Monotonic:
11263   case Release:
11264     return nullptr; // Nothing to do
11265   case Acquire:
11266   case AcquireRelease:
11267   case SequentiallyConsistent:
11268     return makeDMB(Builder, ARM_MB::ISH);
11269   }
11270   llvm_unreachable("Unknown fence ordering in emitTrailingFence");
11271 }
11272
11273 // Loads and stores less than 64-bits are already atomic; ones above that
11274 // are doomed anyway, so defer to the default libcall and blame the OS when
11275 // things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit
11276 // anything for those.
11277 bool ARMTargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
11278   unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits();
11279   return (Size == 64) && !Subtarget->isMClass();
11280 }
11281
11282 // Loads and stores less than 64-bits are already atomic; ones above that
11283 // are doomed anyway, so defer to the default libcall and blame the OS when
11284 // things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit
11285 // anything for those.
11286 // FIXME: ldrd and strd are atomic if the CPU has LPAE (e.g. A15 has that
11287 // guarantee, see DDI0406C ARM architecture reference manual,
11288 // sections A8.8.72-74 LDRD)
11289 bool ARMTargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
11290   unsigned Size = LI->getType()->getPrimitiveSizeInBits();
11291   return (Size == 64) && !Subtarget->isMClass();
11292 }
11293
11294 // For the real atomic operations, we have ldrex/strex up to 32 bits,
11295 // and up to 64 bits on the non-M profiles
11296 TargetLoweringBase::AtomicRMWExpansionKind
11297 ARMTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
11298   unsigned Size = AI->getType()->getPrimitiveSizeInBits();
11299   return (Size <= (Subtarget->isMClass() ? 32U : 64U))
11300              ? AtomicRMWExpansionKind::LLSC
11301              : AtomicRMWExpansionKind::None;
11302 }
11303
11304 // This has so far only been implemented for MachO.
11305 bool ARMTargetLowering::useLoadStackGuardNode() const {
11306   return Subtarget->isTargetMachO();
11307 }
11308
11309 bool ARMTargetLowering::canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
11310                                                   unsigned &Cost) const {
11311   // If we do not have NEON, vector types are not natively supported.
11312   if (!Subtarget->hasNEON())
11313     return false;
11314
11315   // Floating point values and vector values map to the same register file.
11316   // Therefore, althought we could do a store extract of a vector type, this is
11317   // better to leave at float as we have more freedom in the addressing mode for
11318   // those.
11319   if (VectorTy->isFPOrFPVectorTy())
11320     return false;
11321
11322   // If the index is unknown at compile time, this is very expensive to lower
11323   // and it is not possible to combine the store with the extract.
11324   if (!isa<ConstantInt>(Idx))
11325     return false;
11326
11327   assert(VectorTy->isVectorTy() && "VectorTy is not a vector type");
11328   unsigned BitWidth = cast<VectorType>(VectorTy)->getBitWidth();
11329   // We can do a store + vector extract on any vector that fits perfectly in a D
11330   // or Q register.
11331   if (BitWidth == 64 || BitWidth == 128) {
11332     Cost = 0;
11333     return true;
11334   }
11335   return false;
11336 }
11337
11338 Value *ARMTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
11339                                          AtomicOrdering Ord) const {
11340   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
11341   Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
11342   bool IsAcquire = isAtLeastAcquire(Ord);
11343
11344   // Since i64 isn't legal and intrinsics don't get type-lowered, the ldrexd
11345   // intrinsic must return {i32, i32} and we have to recombine them into a
11346   // single i64 here.
11347   if (ValTy->getPrimitiveSizeInBits() == 64) {
11348     Intrinsic::ID Int =
11349         IsAcquire ? Intrinsic::arm_ldaexd : Intrinsic::arm_ldrexd;
11350     Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int);
11351
11352     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
11353     Value *LoHi = Builder.CreateCall(Ldrex, Addr, "lohi");
11354
11355     Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
11356     Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
11357     if (!Subtarget->isLittle())
11358       std::swap (Lo, Hi);
11359     Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
11360     Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
11361     return Builder.CreateOr(
11362         Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 32)), "val64");
11363   }
11364
11365   Type *Tys[] = { Addr->getType() };
11366   Intrinsic::ID Int = IsAcquire ? Intrinsic::arm_ldaex : Intrinsic::arm_ldrex;
11367   Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int, Tys);
11368
11369   return Builder.CreateTruncOrBitCast(
11370       Builder.CreateCall(Ldrex, Addr),
11371       cast<PointerType>(Addr->getType())->getElementType());
11372 }
11373
11374 Value *ARMTargetLowering::emitStoreConditional(IRBuilder<> &Builder, Value *Val,
11375                                                Value *Addr,
11376                                                AtomicOrdering Ord) const {
11377   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
11378   bool IsRelease = isAtLeastRelease(Ord);
11379
11380   // Since the intrinsics must have legal type, the i64 intrinsics take two
11381   // parameters: "i32, i32". We must marshal Val into the appropriate form
11382   // before the call.
11383   if (Val->getType()->getPrimitiveSizeInBits() == 64) {
11384     Intrinsic::ID Int =
11385         IsRelease ? Intrinsic::arm_stlexd : Intrinsic::arm_strexd;
11386     Function *Strex = Intrinsic::getDeclaration(M, Int);
11387     Type *Int32Ty = Type::getInt32Ty(M->getContext());
11388
11389     Value *Lo = Builder.CreateTrunc(Val, Int32Ty, "lo");
11390     Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 32), Int32Ty, "hi");
11391     if (!Subtarget->isLittle())
11392       std::swap (Lo, Hi);
11393     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
11394     return Builder.CreateCall(Strex, {Lo, Hi, Addr});
11395   }
11396
11397   Intrinsic::ID Int = IsRelease ? Intrinsic::arm_stlex : Intrinsic::arm_strex;
11398   Type *Tys[] = { Addr->getType() };
11399   Function *Strex = Intrinsic::getDeclaration(M, Int, Tys);
11400
11401   return Builder.CreateCall(
11402       Strex, {Builder.CreateZExtOrBitCast(
11403                   Val, Strex->getFunctionType()->getParamType(0)),
11404               Addr});
11405 }
11406
11407 enum HABaseType {
11408   HA_UNKNOWN = 0,
11409   HA_FLOAT,
11410   HA_DOUBLE,
11411   HA_VECT64,
11412   HA_VECT128
11413 };
11414
11415 static bool isHomogeneousAggregate(Type *Ty, HABaseType &Base,
11416                                    uint64_t &Members) {
11417   if (const StructType *ST = dyn_cast<StructType>(Ty)) {
11418     for (unsigned i = 0; i < ST->getNumElements(); ++i) {
11419       uint64_t SubMembers = 0;
11420       if (!isHomogeneousAggregate(ST->getElementType(i), Base, SubMembers))
11421         return false;
11422       Members += SubMembers;
11423     }
11424   } else if (const ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
11425     uint64_t SubMembers = 0;
11426     if (!isHomogeneousAggregate(AT->getElementType(), Base, SubMembers))
11427       return false;
11428     Members += SubMembers * AT->getNumElements();
11429   } else if (Ty->isFloatTy()) {
11430     if (Base != HA_UNKNOWN && Base != HA_FLOAT)
11431       return false;
11432     Members = 1;
11433     Base = HA_FLOAT;
11434   } else if (Ty->isDoubleTy()) {
11435     if (Base != HA_UNKNOWN && Base != HA_DOUBLE)
11436       return false;
11437     Members = 1;
11438     Base = HA_DOUBLE;
11439   } else if (const VectorType *VT = dyn_cast<VectorType>(Ty)) {
11440     Members = 1;
11441     switch (Base) {
11442     case HA_FLOAT:
11443     case HA_DOUBLE:
11444       return false;
11445     case HA_VECT64:
11446       return VT->getBitWidth() == 64;
11447     case HA_VECT128:
11448       return VT->getBitWidth() == 128;
11449     case HA_UNKNOWN:
11450       switch (VT->getBitWidth()) {
11451       case 64:
11452         Base = HA_VECT64;
11453         return true;
11454       case 128:
11455         Base = HA_VECT128;
11456         return true;
11457       default:
11458         return false;
11459       }
11460     }
11461   }
11462
11463   return (Members > 0 && Members <= 4);
11464 }
11465
11466 /// \brief Return true if a type is an AAPCS-VFP homogeneous aggregate or one of
11467 /// [N x i32] or [N x i64]. This allows front-ends to skip emitting padding when
11468 /// passing according to AAPCS rules.
11469 bool ARMTargetLowering::functionArgumentNeedsConsecutiveRegisters(
11470     Type *Ty, CallingConv::ID CallConv, bool isVarArg) const {
11471   if (getEffectiveCallingConv(CallConv, isVarArg) !=
11472       CallingConv::ARM_AAPCS_VFP)
11473     return false;
11474
11475   HABaseType Base = HA_UNKNOWN;
11476   uint64_t Members = 0;
11477   bool IsHA = isHomogeneousAggregate(Ty, Base, Members);
11478   DEBUG(dbgs() << "isHA: " << IsHA << " "; Ty->dump());
11479
11480   bool IsIntArray = Ty->isArrayTy() && Ty->getArrayElementType()->isIntegerTy();
11481   return IsHA || IsIntArray;
11482 }