[ARM] Update ReconstructShuffle to handle mismatched types
[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 static cl::opt<bool>
64 ARMInterworking("arm-interworking", cl::Hidden,
65   cl::desc("Enable / disable ARM interworking (for debugging only)"),
66   cl::init(true));
67
68 namespace {
69   class ARMCCState : public CCState {
70   public:
71     ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
72                SmallVectorImpl<CCValAssign> &locs, LLVMContext &C,
73                ParmContext PC)
74         : CCState(CC, isVarArg, MF, locs, C) {
75       assert(((PC == Call) || (PC == Prologue)) &&
76              "ARMCCState users must specify whether their context is call"
77              "or prologue generation.");
78       CallOrPrologue = PC;
79     }
80   };
81 }
82
83 // The APCS parameter registers.
84 static const MCPhysReg GPRArgRegs[] = {
85   ARM::R0, ARM::R1, ARM::R2, ARM::R3
86 };
87
88 void ARMTargetLowering::addTypeForNEON(MVT VT, MVT PromotedLdStVT,
89                                        MVT PromotedBitwiseVT) {
90   if (VT != PromotedLdStVT) {
91     setOperationAction(ISD::LOAD, VT, Promote);
92     AddPromotedToType (ISD::LOAD, VT, PromotedLdStVT);
93
94     setOperationAction(ISD::STORE, VT, Promote);
95     AddPromotedToType (ISD::STORE, VT, PromotedLdStVT);
96   }
97
98   MVT ElemTy = VT.getVectorElementType();
99   if (ElemTy != MVT::i64 && ElemTy != MVT::f64)
100     setOperationAction(ISD::SETCC, VT, Custom);
101   setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
102   setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
103   if (ElemTy == MVT::i32) {
104     setOperationAction(ISD::SINT_TO_FP, VT, Custom);
105     setOperationAction(ISD::UINT_TO_FP, VT, Custom);
106     setOperationAction(ISD::FP_TO_SINT, VT, Custom);
107     setOperationAction(ISD::FP_TO_UINT, VT, Custom);
108   } else {
109     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
110     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
111     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
112     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
113   }
114   setOperationAction(ISD::BUILD_VECTOR,      VT, Custom);
115   setOperationAction(ISD::VECTOR_SHUFFLE,    VT, Custom);
116   setOperationAction(ISD::CONCAT_VECTORS,    VT, Legal);
117   setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
118   setOperationAction(ISD::SELECT,            VT, Expand);
119   setOperationAction(ISD::SELECT_CC,         VT, Expand);
120   setOperationAction(ISD::VSELECT,           VT, Expand);
121   setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
122   if (VT.isInteger()) {
123     setOperationAction(ISD::SHL, VT, Custom);
124     setOperationAction(ISD::SRA, VT, Custom);
125     setOperationAction(ISD::SRL, VT, Custom);
126   }
127
128   // Promote all bit-wise operations.
129   if (VT.isInteger() && VT != PromotedBitwiseVT) {
130     setOperationAction(ISD::AND, VT, Promote);
131     AddPromotedToType (ISD::AND, VT, PromotedBitwiseVT);
132     setOperationAction(ISD::OR,  VT, Promote);
133     AddPromotedToType (ISD::OR,  VT, PromotedBitwiseVT);
134     setOperationAction(ISD::XOR, VT, Promote);
135     AddPromotedToType (ISD::XOR, VT, PromotedBitwiseVT);
136   }
137
138   // Neon does not support vector divide/remainder operations.
139   setOperationAction(ISD::SDIV, VT, Expand);
140   setOperationAction(ISD::UDIV, VT, Expand);
141   setOperationAction(ISD::FDIV, VT, Expand);
142   setOperationAction(ISD::SREM, VT, Expand);
143   setOperationAction(ISD::UREM, VT, Expand);
144   setOperationAction(ISD::FREM, VT, Expand);
145
146   if (VT.isInteger()) {
147     setOperationAction(ISD::SABSDIFF, VT, Legal);
148     setOperationAction(ISD::UABSDIFF, VT, Legal);
149   }
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       static const struct {
175         const RTLIB::Libcall Op;
176         const char * const Name;
177         const ISD::CondCode Cond;
178       } LibraryCalls[] = {
179         // Single-precision floating-point arithmetic.
180         { RTLIB::ADD_F32, "__addsf3vfp", ISD::SETCC_INVALID },
181         { RTLIB::SUB_F32, "__subsf3vfp", ISD::SETCC_INVALID },
182         { RTLIB::MUL_F32, "__mulsf3vfp", ISD::SETCC_INVALID },
183         { RTLIB::DIV_F32, "__divsf3vfp", ISD::SETCC_INVALID },
184
185         // Double-precision floating-point arithmetic.
186         { RTLIB::ADD_F64, "__adddf3vfp", ISD::SETCC_INVALID },
187         { RTLIB::SUB_F64, "__subdf3vfp", ISD::SETCC_INVALID },
188         { RTLIB::MUL_F64, "__muldf3vfp", ISD::SETCC_INVALID },
189         { RTLIB::DIV_F64, "__divdf3vfp", ISD::SETCC_INVALID },
190
191         // Single-precision comparisons.
192         { RTLIB::OEQ_F32, "__eqsf2vfp",    ISD::SETNE },
193         { RTLIB::UNE_F32, "__nesf2vfp",    ISD::SETNE },
194         { RTLIB::OLT_F32, "__ltsf2vfp",    ISD::SETNE },
195         { RTLIB::OLE_F32, "__lesf2vfp",    ISD::SETNE },
196         { RTLIB::OGE_F32, "__gesf2vfp",    ISD::SETNE },
197         { RTLIB::OGT_F32, "__gtsf2vfp",    ISD::SETNE },
198         { RTLIB::UO_F32,  "__unordsf2vfp", ISD::SETNE },
199         { RTLIB::O_F32,   "__unordsf2vfp", ISD::SETEQ },
200
201         // Double-precision comparisons.
202         { RTLIB::OEQ_F64, "__eqdf2vfp",    ISD::SETNE },
203         { RTLIB::UNE_F64, "__nedf2vfp",    ISD::SETNE },
204         { RTLIB::OLT_F64, "__ltdf2vfp",    ISD::SETNE },
205         { RTLIB::OLE_F64, "__ledf2vfp",    ISD::SETNE },
206         { RTLIB::OGE_F64, "__gedf2vfp",    ISD::SETNE },
207         { RTLIB::OGT_F64, "__gtdf2vfp",    ISD::SETNE },
208         { RTLIB::UO_F64,  "__unorddf2vfp", ISD::SETNE },
209         { RTLIB::O_F64,   "__unorddf2vfp", ISD::SETEQ },
210
211         // Floating-point to integer conversions.
212         // i64 conversions are done via library routines even when generating VFP
213         // instructions, so use the same ones.
214         { RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp",    ISD::SETCC_INVALID },
215         { RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp", ISD::SETCC_INVALID },
216         { RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp",    ISD::SETCC_INVALID },
217         { RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp", ISD::SETCC_INVALID },
218
219         // Conversions between floating types.
220         { RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp",  ISD::SETCC_INVALID },
221         { RTLIB::FPEXT_F32_F64,   "__extendsfdf2vfp", ISD::SETCC_INVALID },
222
223         // Integer to floating-point conversions.
224         // i64 conversions are done via library routines even when generating VFP
225         // instructions, so use the same ones.
226         // FIXME: There appears to be some naming inconsistency in ARM libgcc:
227         // e.g., __floatunsidf vs. __floatunssidfvfp.
228         { RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp",    ISD::SETCC_INVALID },
229         { RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp", ISD::SETCC_INVALID },
230         { RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp",    ISD::SETCC_INVALID },
231         { RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp", ISD::SETCC_INVALID },
232       };
233
234       for (const auto &LC : LibraryCalls) {
235         setLibcallName(LC.Op, LC.Name);
236         if (LC.Cond != ISD::SETCC_INVALID)
237           setCmpLibcallCC(LC.Op, LC.Cond);
238       }
239     }
240   }
241
242   // These libcalls are not available in 32-bit.
243   setLibcallName(RTLIB::SHL_I128, nullptr);
244   setLibcallName(RTLIB::SRL_I128, nullptr);
245   setLibcallName(RTLIB::SRA_I128, nullptr);
246
247   if (Subtarget->isAAPCS_ABI() && !Subtarget->isTargetMachO() &&
248       !Subtarget->isTargetWindows()) {
249     static const struct {
250       const RTLIB::Libcall Op;
251       const char * const Name;
252       const CallingConv::ID CC;
253       const ISD::CondCode Cond;
254     } LibraryCalls[] = {
255       // Double-precision floating-point arithmetic helper functions
256       // RTABI chapter 4.1.2, Table 2
257       { RTLIB::ADD_F64, "__aeabi_dadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
258       { RTLIB::DIV_F64, "__aeabi_ddiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
259       { RTLIB::MUL_F64, "__aeabi_dmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
260       { RTLIB::SUB_F64, "__aeabi_dsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
261
262       // Double-precision floating-point comparison helper functions
263       // RTABI chapter 4.1.2, Table 3
264       { RTLIB::OEQ_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
265       { RTLIB::UNE_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
266       { RTLIB::OLT_F64, "__aeabi_dcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
267       { RTLIB::OLE_F64, "__aeabi_dcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
268       { RTLIB::OGE_F64, "__aeabi_dcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
269       { RTLIB::OGT_F64, "__aeabi_dcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
270       { RTLIB::UO_F64,  "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
271       { RTLIB::O_F64,   "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
272
273       // Single-precision floating-point arithmetic helper functions
274       // RTABI chapter 4.1.2, Table 4
275       { RTLIB::ADD_F32, "__aeabi_fadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
276       { RTLIB::DIV_F32, "__aeabi_fdiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
277       { RTLIB::MUL_F32, "__aeabi_fmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
278       { RTLIB::SUB_F32, "__aeabi_fsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
279
280       // Single-precision floating-point comparison helper functions
281       // RTABI chapter 4.1.2, Table 5
282       { RTLIB::OEQ_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE },
283       { RTLIB::UNE_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ },
284       { RTLIB::OLT_F32, "__aeabi_fcmplt", CallingConv::ARM_AAPCS, ISD::SETNE },
285       { RTLIB::OLE_F32, "__aeabi_fcmple", CallingConv::ARM_AAPCS, ISD::SETNE },
286       { RTLIB::OGE_F32, "__aeabi_fcmpge", CallingConv::ARM_AAPCS, ISD::SETNE },
287       { RTLIB::OGT_F32, "__aeabi_fcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE },
288       { RTLIB::UO_F32,  "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETNE },
289       { RTLIB::O_F32,   "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ },
290
291       // Floating-point to integer conversions.
292       // RTABI chapter 4.1.2, Table 6
293       { RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
294       { RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
295       { RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
296       { RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
297       { RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
298       { RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
299       { RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
300       { RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
301
302       // Conversions between floating types.
303       // RTABI chapter 4.1.2, Table 7
304       { RTLIB::FPROUND_F64_F32, "__aeabi_d2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
305       { RTLIB::FPROUND_F64_F16, "__aeabi_d2h", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
306       { RTLIB::FPEXT_F32_F64,   "__aeabi_f2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
307
308       // Integer to floating-point conversions.
309       // RTABI chapter 4.1.2, Table 8
310       { RTLIB::SINTTOFP_I32_F64, "__aeabi_i2d",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
311       { RTLIB::UINTTOFP_I32_F64, "__aeabi_ui2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
312       { RTLIB::SINTTOFP_I64_F64, "__aeabi_l2d",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
313       { RTLIB::UINTTOFP_I64_F64, "__aeabi_ul2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
314       { RTLIB::SINTTOFP_I32_F32, "__aeabi_i2f",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
315       { RTLIB::UINTTOFP_I32_F32, "__aeabi_ui2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
316       { RTLIB::SINTTOFP_I64_F32, "__aeabi_l2f",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
317       { RTLIB::UINTTOFP_I64_F32, "__aeabi_ul2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
318
319       // Long long helper functions
320       // RTABI chapter 4.2, Table 9
321       { RTLIB::MUL_I64, "__aeabi_lmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
322       { RTLIB::SHL_I64, "__aeabi_llsl", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
323       { RTLIB::SRL_I64, "__aeabi_llsr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
324       { RTLIB::SRA_I64, "__aeabi_lasr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
325
326       // Integer division functions
327       // RTABI chapter 4.3.1
328       { RTLIB::SDIV_I8,  "__aeabi_idiv",     CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
329       { RTLIB::SDIV_I16, "__aeabi_idiv",     CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
330       { RTLIB::SDIV_I32, "__aeabi_idiv",     CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
331       { RTLIB::SDIV_I64, "__aeabi_ldivmod",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
332       { RTLIB::UDIV_I8,  "__aeabi_uidiv",    CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
333       { RTLIB::UDIV_I16, "__aeabi_uidiv",    CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
334       { RTLIB::UDIV_I32, "__aeabi_uidiv",    CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
335       { RTLIB::UDIV_I64, "__aeabi_uldivmod", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
336
337       // Memory operations
338       // RTABI chapter 4.3.4
339       { RTLIB::MEMCPY,  "__aeabi_memcpy",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
340       { RTLIB::MEMMOVE, "__aeabi_memmove", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
341       { RTLIB::MEMSET,  "__aeabi_memset",  CallingConv::ARM_AAPCS, ISD::SETCC_INVALID },
342     };
343
344     for (const auto &LC : LibraryCalls) {
345       setLibcallName(LC.Op, LC.Name);
346       setLibcallCallingConv(LC.Op, LC.CC);
347       if (LC.Cond != ISD::SETCC_INVALID)
348         setCmpLibcallCC(LC.Op, LC.Cond);
349     }
350   }
351
352   if (Subtarget->isTargetWindows()) {
353     static const struct {
354       const RTLIB::Libcall Op;
355       const char * const Name;
356       const CallingConv::ID CC;
357     } LibraryCalls[] = {
358       { RTLIB::FPTOSINT_F32_I64, "__stoi64", CallingConv::ARM_AAPCS_VFP },
359       { RTLIB::FPTOSINT_F64_I64, "__dtoi64", CallingConv::ARM_AAPCS_VFP },
360       { RTLIB::FPTOUINT_F32_I64, "__stou64", CallingConv::ARM_AAPCS_VFP },
361       { RTLIB::FPTOUINT_F64_I64, "__dtou64", CallingConv::ARM_AAPCS_VFP },
362       { RTLIB::SINTTOFP_I64_F32, "__i64tos", CallingConv::ARM_AAPCS_VFP },
363       { RTLIB::SINTTOFP_I64_F64, "__i64tod", CallingConv::ARM_AAPCS_VFP },
364       { RTLIB::UINTTOFP_I64_F32, "__u64tos", CallingConv::ARM_AAPCS_VFP },
365       { RTLIB::UINTTOFP_I64_F64, "__u64tod", CallingConv::ARM_AAPCS_VFP },
366
367       { RTLIB::SDIV_I32, "__rt_sdiv",   CallingConv::ARM_AAPCS_VFP },
368       { RTLIB::UDIV_I32, "__rt_udiv",   CallingConv::ARM_AAPCS_VFP },
369       { RTLIB::SDIV_I64, "__rt_sdiv64", CallingConv::ARM_AAPCS_VFP },
370       { RTLIB::UDIV_I64, "__rt_udiv64", CallingConv::ARM_AAPCS_VFP },
371     };
372
373     for (const auto &LC : LibraryCalls) {
374       setLibcallName(LC.Op, LC.Name);
375       setLibcallCallingConv(LC.Op, LC.CC);
376     }
377   }
378
379   // Use divmod compiler-rt calls for iOS 5.0 and later.
380   if (Subtarget->getTargetTriple().isiOS() &&
381       !Subtarget->getTargetTriple().isOSVersionLT(5, 0)) {
382     setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4");
383     setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4");
384   }
385
386   // The half <-> float conversion functions are always soft-float, but are
387   // needed for some targets which use a hard-float calling convention by
388   // default.
389   if (Subtarget->isAAPCS_ABI()) {
390     setLibcallCallingConv(RTLIB::FPROUND_F32_F16, CallingConv::ARM_AAPCS);
391     setLibcallCallingConv(RTLIB::FPROUND_F64_F16, CallingConv::ARM_AAPCS);
392     setLibcallCallingConv(RTLIB::FPEXT_F16_F32, CallingConv::ARM_AAPCS);
393   } else {
394     setLibcallCallingConv(RTLIB::FPROUND_F32_F16, CallingConv::ARM_APCS);
395     setLibcallCallingConv(RTLIB::FPROUND_F64_F16, CallingConv::ARM_APCS);
396     setLibcallCallingConv(RTLIB::FPEXT_F16_F32, CallingConv::ARM_APCS);
397   }
398
399   if (Subtarget->isThumb1Only())
400     addRegisterClass(MVT::i32, &ARM::tGPRRegClass);
401   else
402     addRegisterClass(MVT::i32, &ARM::GPRRegClass);
403   if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
404       !Subtarget->isThumb1Only()) {
405     addRegisterClass(MVT::f32, &ARM::SPRRegClass);
406     addRegisterClass(MVT::f64, &ARM::DPRRegClass);
407   }
408
409   for (MVT VT : MVT::vector_valuetypes()) {
410     for (MVT InnerVT : MVT::vector_valuetypes()) {
411       setTruncStoreAction(VT, InnerVT, Expand);
412       setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
413       setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
414       setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
415     }
416
417     setOperationAction(ISD::MULHS, VT, Expand);
418     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
419     setOperationAction(ISD::MULHU, VT, Expand);
420     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
421
422     setOperationAction(ISD::BSWAP, VT, Expand);
423   }
424
425   setOperationAction(ISD::ConstantFP, MVT::f32, Custom);
426   setOperationAction(ISD::ConstantFP, MVT::f64, Custom);
427
428   setOperationAction(ISD::READ_REGISTER, MVT::i64, Custom);
429   setOperationAction(ISD::WRITE_REGISTER, MVT::i64, Custom);
430
431   if (Subtarget->hasNEON()) {
432     addDRTypeForNEON(MVT::v2f32);
433     addDRTypeForNEON(MVT::v8i8);
434     addDRTypeForNEON(MVT::v4i16);
435     addDRTypeForNEON(MVT::v2i32);
436     addDRTypeForNEON(MVT::v1i64);
437
438     addQRTypeForNEON(MVT::v4f32);
439     addQRTypeForNEON(MVT::v2f64);
440     addQRTypeForNEON(MVT::v16i8);
441     addQRTypeForNEON(MVT::v8i16);
442     addQRTypeForNEON(MVT::v4i32);
443     addQRTypeForNEON(MVT::v2i64);
444
445     // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
446     // neither Neon nor VFP support any arithmetic operations on it.
447     // The same with v4f32. But keep in mind that vadd, vsub, vmul are natively
448     // supported for v4f32.
449     setOperationAction(ISD::FADD, MVT::v2f64, Expand);
450     setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
451     setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
452     // FIXME: Code duplication: FDIV and FREM are expanded always, see
453     // ARMTargetLowering::addTypeForNEON method for details.
454     setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
455     setOperationAction(ISD::FREM, MVT::v2f64, Expand);
456     // FIXME: Create unittest.
457     // In another words, find a way when "copysign" appears in DAG with vector
458     // operands.
459     setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
460     // FIXME: Code duplication: SETCC has custom operation action, see
461     // ARMTargetLowering::addTypeForNEON method for details.
462     setOperationAction(ISD::SETCC, MVT::v2f64, Expand);
463     // FIXME: Create unittest for FNEG and for FABS.
464     setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
465     setOperationAction(ISD::FABS, MVT::v2f64, Expand);
466     setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
467     setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
468     setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
469     setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
470     setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
471     setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
472     setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
473     setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
474     setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
475     setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
476     // FIXME: Create unittest for FCEIL, FTRUNC, FRINT, FNEARBYINT, FFLOOR.
477     setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
478     setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
479     setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
480     setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
481     setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
482     setOperationAction(ISD::FMA, MVT::v2f64, Expand);
483
484     setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
485     setOperationAction(ISD::FSIN, MVT::v4f32, Expand);
486     setOperationAction(ISD::FCOS, MVT::v4f32, Expand);
487     setOperationAction(ISD::FPOWI, MVT::v4f32, Expand);
488     setOperationAction(ISD::FPOW, MVT::v4f32, Expand);
489     setOperationAction(ISD::FLOG, MVT::v4f32, Expand);
490     setOperationAction(ISD::FLOG2, MVT::v4f32, Expand);
491     setOperationAction(ISD::FLOG10, MVT::v4f32, Expand);
492     setOperationAction(ISD::FEXP, MVT::v4f32, Expand);
493     setOperationAction(ISD::FEXP2, MVT::v4f32, Expand);
494     setOperationAction(ISD::FCEIL, MVT::v4f32, Expand);
495     setOperationAction(ISD::FTRUNC, MVT::v4f32, Expand);
496     setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
497     setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
498     setOperationAction(ISD::FFLOOR, MVT::v4f32, Expand);
499
500     // Mark v2f32 intrinsics.
501     setOperationAction(ISD::FSQRT, MVT::v2f32, Expand);
502     setOperationAction(ISD::FSIN, MVT::v2f32, Expand);
503     setOperationAction(ISD::FCOS, MVT::v2f32, Expand);
504     setOperationAction(ISD::FPOWI, MVT::v2f32, Expand);
505     setOperationAction(ISD::FPOW, MVT::v2f32, Expand);
506     setOperationAction(ISD::FLOG, MVT::v2f32, Expand);
507     setOperationAction(ISD::FLOG2, MVT::v2f32, Expand);
508     setOperationAction(ISD::FLOG10, MVT::v2f32, Expand);
509     setOperationAction(ISD::FEXP, MVT::v2f32, Expand);
510     setOperationAction(ISD::FEXP2, MVT::v2f32, Expand);
511     setOperationAction(ISD::FCEIL, MVT::v2f32, Expand);
512     setOperationAction(ISD::FTRUNC, MVT::v2f32, Expand);
513     setOperationAction(ISD::FRINT, MVT::v2f32, Expand);
514     setOperationAction(ISD::FNEARBYINT, MVT::v2f32, Expand);
515     setOperationAction(ISD::FFLOOR, MVT::v2f32, Expand);
516
517     // Neon does not support some operations on v1i64 and v2i64 types.
518     setOperationAction(ISD::MUL, MVT::v1i64, Expand);
519     // Custom handling for some quad-vector types to detect VMULL.
520     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
521     setOperationAction(ISD::MUL, MVT::v4i32, Custom);
522     setOperationAction(ISD::MUL, MVT::v2i64, Custom);
523     // Custom handling for some vector types to avoid expensive expansions
524     setOperationAction(ISD::SDIV, MVT::v4i16, Custom);
525     setOperationAction(ISD::SDIV, MVT::v8i8, Custom);
526     setOperationAction(ISD::UDIV, MVT::v4i16, Custom);
527     setOperationAction(ISD::UDIV, MVT::v8i8, Custom);
528     setOperationAction(ISD::SETCC, MVT::v1i64, Expand);
529     setOperationAction(ISD::SETCC, MVT::v2i64, Expand);
530     // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with
531     // a destination type that is wider than the source, and nor does
532     // it have a FP_TO_[SU]INT instruction with a narrower destination than
533     // source.
534     setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom);
535     setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
536     setOperationAction(ISD::FP_TO_UINT, MVT::v4i16, Custom);
537     setOperationAction(ISD::FP_TO_SINT, MVT::v4i16, Custom);
538
539     setOperationAction(ISD::FP_ROUND,   MVT::v2f32, Expand);
540     setOperationAction(ISD::FP_EXTEND,  MVT::v2f64, Expand);
541
542     // NEON does not have single instruction CTPOP for vectors with element
543     // types wider than 8-bits.  However, custom lowering can leverage the
544     // v8i8/v16i8 vcnt instruction.
545     setOperationAction(ISD::CTPOP,      MVT::v2i32, Custom);
546     setOperationAction(ISD::CTPOP,      MVT::v4i32, Custom);
547     setOperationAction(ISD::CTPOP,      MVT::v4i16, Custom);
548     setOperationAction(ISD::CTPOP,      MVT::v8i16, Custom);
549
550     // NEON does not have single instruction CTTZ for vectors.
551     setOperationAction(ISD::CTTZ, MVT::v8i8, Custom);
552     setOperationAction(ISD::CTTZ, MVT::v4i16, Custom);
553     setOperationAction(ISD::CTTZ, MVT::v2i32, Custom);
554     setOperationAction(ISD::CTTZ, MVT::v1i64, Custom);
555
556     setOperationAction(ISD::CTTZ, MVT::v16i8, Custom);
557     setOperationAction(ISD::CTTZ, MVT::v8i16, Custom);
558     setOperationAction(ISD::CTTZ, MVT::v4i32, Custom);
559     setOperationAction(ISD::CTTZ, MVT::v2i64, Custom);
560
561     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v8i8, Custom);
562     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v4i16, Custom);
563     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v2i32, Custom);
564     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v1i64, Custom);
565
566     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v16i8, Custom);
567     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v8i16, Custom);
568     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v4i32, Custom);
569     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v2i64, Custom);
570
571     // NEON only has FMA instructions as of VFP4.
572     if (!Subtarget->hasVFP4()) {
573       setOperationAction(ISD::FMA, MVT::v2f32, Expand);
574       setOperationAction(ISD::FMA, MVT::v4f32, Expand);
575     }
576
577     setTargetDAGCombine(ISD::INTRINSIC_VOID);
578     setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
579     setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
580     setTargetDAGCombine(ISD::SHL);
581     setTargetDAGCombine(ISD::SRL);
582     setTargetDAGCombine(ISD::SRA);
583     setTargetDAGCombine(ISD::SIGN_EXTEND);
584     setTargetDAGCombine(ISD::ZERO_EXTEND);
585     setTargetDAGCombine(ISD::ANY_EXTEND);
586     setTargetDAGCombine(ISD::SELECT_CC);
587     setTargetDAGCombine(ISD::BUILD_VECTOR);
588     setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
589     setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
590     setTargetDAGCombine(ISD::STORE);
591     setTargetDAGCombine(ISD::FP_TO_SINT);
592     setTargetDAGCombine(ISD::FP_TO_UINT);
593     setTargetDAGCombine(ISD::FDIV);
594     setTargetDAGCombine(ISD::LOAD);
595
596     // It is legal to extload from v4i8 to v4i16 or v4i32.
597     for (MVT Ty : {MVT::v8i8, MVT::v4i8, MVT::v2i8, MVT::v4i16, MVT::v2i16,
598                    MVT::v2i32}) {
599       for (MVT VT : MVT::integer_vector_valuetypes()) {
600         setLoadExtAction(ISD::EXTLOAD, VT, Ty, Legal);
601         setLoadExtAction(ISD::ZEXTLOAD, VT, Ty, Legal);
602         setLoadExtAction(ISD::SEXTLOAD, VT, Ty, Legal);
603       }
604     }
605   }
606
607   // ARM and Thumb2 support UMLAL/SMLAL.
608   if (!Subtarget->isThumb1Only())
609     setTargetDAGCombine(ISD::ADDC);
610
611   if (Subtarget->isFPOnlySP()) {
612     // When targetting a floating-point unit with only single-precision
613     // operations, f64 is legal for the few double-precision instructions which
614     // are present However, no double-precision operations other than moves,
615     // loads and stores are provided by the hardware.
616     setOperationAction(ISD::FADD,       MVT::f64, Expand);
617     setOperationAction(ISD::FSUB,       MVT::f64, Expand);
618     setOperationAction(ISD::FMUL,       MVT::f64, Expand);
619     setOperationAction(ISD::FMA,        MVT::f64, Expand);
620     setOperationAction(ISD::FDIV,       MVT::f64, Expand);
621     setOperationAction(ISD::FREM,       MVT::f64, Expand);
622     setOperationAction(ISD::FCOPYSIGN,  MVT::f64, Expand);
623     setOperationAction(ISD::FGETSIGN,   MVT::f64, Expand);
624     setOperationAction(ISD::FNEG,       MVT::f64, Expand);
625     setOperationAction(ISD::FABS,       MVT::f64, Expand);
626     setOperationAction(ISD::FSQRT,      MVT::f64, Expand);
627     setOperationAction(ISD::FSIN,       MVT::f64, Expand);
628     setOperationAction(ISD::FCOS,       MVT::f64, Expand);
629     setOperationAction(ISD::FPOWI,      MVT::f64, Expand);
630     setOperationAction(ISD::FPOW,       MVT::f64, Expand);
631     setOperationAction(ISD::FLOG,       MVT::f64, Expand);
632     setOperationAction(ISD::FLOG2,      MVT::f64, Expand);
633     setOperationAction(ISD::FLOG10,     MVT::f64, Expand);
634     setOperationAction(ISD::FEXP,       MVT::f64, Expand);
635     setOperationAction(ISD::FEXP2,      MVT::f64, Expand);
636     setOperationAction(ISD::FCEIL,      MVT::f64, Expand);
637     setOperationAction(ISD::FTRUNC,     MVT::f64, Expand);
638     setOperationAction(ISD::FRINT,      MVT::f64, Expand);
639     setOperationAction(ISD::FNEARBYINT, MVT::f64, Expand);
640     setOperationAction(ISD::FFLOOR,     MVT::f64, Expand);
641     setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
642     setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
643     setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
644     setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
645     setOperationAction(ISD::FP_TO_SINT, MVT::f64, Custom);
646     setOperationAction(ISD::FP_TO_UINT, MVT::f64, Custom);
647     setOperationAction(ISD::FP_ROUND,   MVT::f32, Custom);
648     setOperationAction(ISD::FP_EXTEND,  MVT::f64, Custom);
649   }
650
651   computeRegisterProperties(Subtarget->getRegisterInfo());
652
653   // ARM does not have floating-point extending loads.
654   for (MVT VT : MVT::fp_valuetypes()) {
655     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
656     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f16, Expand);
657   }
658
659   // ... or truncating stores
660   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
661   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
662   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
663
664   // ARM does not have i1 sign extending load.
665   for (MVT VT : MVT::integer_valuetypes())
666     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote);
667
668   // ARM supports all 4 flavors of integer indexed load / store.
669   if (!Subtarget->isThumb1Only()) {
670     for (unsigned im = (unsigned)ISD::PRE_INC;
671          im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
672       setIndexedLoadAction(im,  MVT::i1,  Legal);
673       setIndexedLoadAction(im,  MVT::i8,  Legal);
674       setIndexedLoadAction(im,  MVT::i16, Legal);
675       setIndexedLoadAction(im,  MVT::i32, Legal);
676       setIndexedStoreAction(im, MVT::i1,  Legal);
677       setIndexedStoreAction(im, MVT::i8,  Legal);
678       setIndexedStoreAction(im, MVT::i16, Legal);
679       setIndexedStoreAction(im, MVT::i32, Legal);
680     }
681   }
682
683   setOperationAction(ISD::SADDO, MVT::i32, Custom);
684   setOperationAction(ISD::UADDO, MVT::i32, Custom);
685   setOperationAction(ISD::SSUBO, MVT::i32, Custom);
686   setOperationAction(ISD::USUBO, MVT::i32, Custom);
687
688   // i64 operation support.
689   setOperationAction(ISD::MUL,     MVT::i64, Expand);
690   setOperationAction(ISD::MULHU,   MVT::i32, Expand);
691   if (Subtarget->isThumb1Only()) {
692     setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
693     setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
694   }
695   if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops()
696       || (Subtarget->isThumb2() && !Subtarget->hasThumb2DSP()))
697     setOperationAction(ISD::MULHS, MVT::i32, Expand);
698
699   setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
700   setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
701   setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
702   setOperationAction(ISD::SRL,       MVT::i64, Custom);
703   setOperationAction(ISD::SRA,       MVT::i64, Custom);
704
705   if (!Subtarget->isThumb1Only()) {
706     // FIXME: We should do this for Thumb1 as well.
707     setOperationAction(ISD::ADDC,    MVT::i32, Custom);
708     setOperationAction(ISD::ADDE,    MVT::i32, Custom);
709     setOperationAction(ISD::SUBC,    MVT::i32, Custom);
710     setOperationAction(ISD::SUBE,    MVT::i32, Custom);
711   }
712
713   // ARM does not have ROTL.
714   setOperationAction(ISD::ROTL,  MVT::i32, Expand);
715   setOperationAction(ISD::CTTZ,  MVT::i32, Custom);
716   setOperationAction(ISD::CTPOP, MVT::i32, Expand);
717   if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
718     setOperationAction(ISD::CTLZ, MVT::i32, Expand);
719
720   // These just redirect to CTTZ and CTLZ on ARM.
721   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i32  , Expand);
722   setOperationAction(ISD::CTLZ_ZERO_UNDEF  , MVT::i32  , Expand);
723
724   setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom);
725
726   // Only ARMv6 has BSWAP.
727   if (!Subtarget->hasV6Ops())
728     setOperationAction(ISD::BSWAP, MVT::i32, Expand);
729
730   if (!(Subtarget->hasDivide() && Subtarget->isThumb2()) &&
731       !(Subtarget->hasDivideInARMMode() && !Subtarget->isThumb())) {
732     // These are expanded into libcalls if the cpu doesn't have HW divider.
733     setOperationAction(ISD::SDIV,  MVT::i32, Expand);
734     setOperationAction(ISD::UDIV,  MVT::i32, Expand);
735   }
736
737   // FIXME: Also set divmod for SREM on EABI/androideabi
738   setOperationAction(ISD::SREM,  MVT::i32, Expand);
739   setOperationAction(ISD::UREM,  MVT::i32, Expand);
740   // Register based DivRem for AEABI (RTABI 4.2)
741   if (Subtarget->isTargetAEABI() || Subtarget->isTargetAndroid()) {
742     setLibcallName(RTLIB::SDIVREM_I8,  "__aeabi_idivmod");
743     setLibcallName(RTLIB::SDIVREM_I16, "__aeabi_idivmod");
744     setLibcallName(RTLIB::SDIVREM_I32, "__aeabi_idivmod");
745     setLibcallName(RTLIB::SDIVREM_I64, "__aeabi_ldivmod");
746     setLibcallName(RTLIB::UDIVREM_I8,  "__aeabi_uidivmod");
747     setLibcallName(RTLIB::UDIVREM_I16, "__aeabi_uidivmod");
748     setLibcallName(RTLIB::UDIVREM_I32, "__aeabi_uidivmod");
749     setLibcallName(RTLIB::UDIVREM_I64, "__aeabi_uldivmod");
750
751     setLibcallCallingConv(RTLIB::SDIVREM_I8, CallingConv::ARM_AAPCS);
752     setLibcallCallingConv(RTLIB::SDIVREM_I16, CallingConv::ARM_AAPCS);
753     setLibcallCallingConv(RTLIB::SDIVREM_I32, CallingConv::ARM_AAPCS);
754     setLibcallCallingConv(RTLIB::SDIVREM_I64, CallingConv::ARM_AAPCS);
755     setLibcallCallingConv(RTLIB::UDIVREM_I8, CallingConv::ARM_AAPCS);
756     setLibcallCallingConv(RTLIB::UDIVREM_I16, CallingConv::ARM_AAPCS);
757     setLibcallCallingConv(RTLIB::UDIVREM_I32, CallingConv::ARM_AAPCS);
758     setLibcallCallingConv(RTLIB::UDIVREM_I64, CallingConv::ARM_AAPCS);
759
760     setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
761     setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
762   } else {
763     setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
764     setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
765   }
766
767   setOperationAction(ISD::GlobalAddress, MVT::i32,   Custom);
768   setOperationAction(ISD::ConstantPool,  MVT::i32,   Custom);
769   setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
770   setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
771   setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
772
773   setOperationAction(ISD::TRAP, MVT::Other, Legal);
774
775   // Use the default implementation.
776   setOperationAction(ISD::VASTART,            MVT::Other, Custom);
777   setOperationAction(ISD::VAARG,              MVT::Other, Expand);
778   setOperationAction(ISD::VACOPY,             MVT::Other, Expand);
779   setOperationAction(ISD::VAEND,              MVT::Other, Expand);
780   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
781   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
782
783   if (!Subtarget->isTargetMachO()) {
784     // Non-MachO platforms may return values in these registers via the
785     // personality function.
786     setExceptionPointerRegister(ARM::R0);
787     setExceptionSelectorRegister(ARM::R1);
788   }
789
790   if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
791     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
792   else
793     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
794
795   // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use
796   // the default expansion. If we are targeting a single threaded system,
797   // then set them all for expand so we can lower them later into their
798   // non-atomic form.
799   if (TM.Options.ThreadModel == ThreadModel::Single)
800     setOperationAction(ISD::ATOMIC_FENCE,   MVT::Other, Expand);
801   else if (Subtarget->hasAnyDataBarrier() && !Subtarget->isThumb1Only()) {
802     // ATOMIC_FENCE needs custom lowering; the others should have been expanded
803     // to ldrex/strex loops already.
804     setOperationAction(ISD::ATOMIC_FENCE,     MVT::Other, Custom);
805
806     // On v8, we have particularly efficient implementations of atomic fences
807     // if they can be combined with nearby atomic loads and stores.
808     if (!Subtarget->hasV8Ops()) {
809       // Automatically insert fences (dmb ish) around ATOMIC_SWAP etc.
810       setInsertFencesForAtomic(true);
811     }
812   } else {
813     // If there's anything we can use as a barrier, go through custom lowering
814     // for ATOMIC_FENCE.
815     setOperationAction(ISD::ATOMIC_FENCE,   MVT::Other,
816                        Subtarget->hasAnyDataBarrier() ? Custom : Expand);
817
818     // Set them all for expansion, which will force libcalls.
819     setOperationAction(ISD::ATOMIC_CMP_SWAP,  MVT::i32, Expand);
820     setOperationAction(ISD::ATOMIC_SWAP,      MVT::i32, Expand);
821     setOperationAction(ISD::ATOMIC_LOAD_ADD,  MVT::i32, Expand);
822     setOperationAction(ISD::ATOMIC_LOAD_SUB,  MVT::i32, Expand);
823     setOperationAction(ISD::ATOMIC_LOAD_AND,  MVT::i32, Expand);
824     setOperationAction(ISD::ATOMIC_LOAD_OR,   MVT::i32, Expand);
825     setOperationAction(ISD::ATOMIC_LOAD_XOR,  MVT::i32, Expand);
826     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand);
827     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand);
828     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand);
829     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand);
830     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand);
831     // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the
832     // Unordered/Monotonic case.
833     setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom);
834     setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom);
835   }
836
837   setOperationAction(ISD::PREFETCH,         MVT::Other, Custom);
838
839   // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes.
840   if (!Subtarget->hasV6Ops()) {
841     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
842     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8,  Expand);
843   }
844   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
845
846   if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
847       !Subtarget->isThumb1Only()) {
848     // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR
849     // iff target supports vfp2.
850     setOperationAction(ISD::BITCAST, MVT::i64, Custom);
851     setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
852   }
853
854   // We want to custom lower some of our intrinsics.
855   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
856   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
857   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
858   setOperationAction(ISD::EH_SJLJ_SETUP_DISPATCH, MVT::Other, Custom);
859   if (Subtarget->isTargetDarwin())
860     setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume");
861
862   setOperationAction(ISD::SETCC,     MVT::i32, Expand);
863   setOperationAction(ISD::SETCC,     MVT::f32, Expand);
864   setOperationAction(ISD::SETCC,     MVT::f64, Expand);
865   setOperationAction(ISD::SELECT,    MVT::i32, Custom);
866   setOperationAction(ISD::SELECT,    MVT::f32, Custom);
867   setOperationAction(ISD::SELECT,    MVT::f64, Custom);
868   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
869   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
870   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
871
872   setOperationAction(ISD::BRCOND,    MVT::Other, Expand);
873   setOperationAction(ISD::BR_CC,     MVT::i32,   Custom);
874   setOperationAction(ISD::BR_CC,     MVT::f32,   Custom);
875   setOperationAction(ISD::BR_CC,     MVT::f64,   Custom);
876   setOperationAction(ISD::BR_JT,     MVT::Other, Custom);
877
878   // We don't support sin/cos/fmod/copysign/pow
879   setOperationAction(ISD::FSIN,      MVT::f64, Expand);
880   setOperationAction(ISD::FSIN,      MVT::f32, Expand);
881   setOperationAction(ISD::FCOS,      MVT::f32, Expand);
882   setOperationAction(ISD::FCOS,      MVT::f64, Expand);
883   setOperationAction(ISD::FSINCOS,   MVT::f64, Expand);
884   setOperationAction(ISD::FSINCOS,   MVT::f32, Expand);
885   setOperationAction(ISD::FREM,      MVT::f64, Expand);
886   setOperationAction(ISD::FREM,      MVT::f32, Expand);
887   if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() &&
888       !Subtarget->isThumb1Only()) {
889     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
890     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
891   }
892   setOperationAction(ISD::FPOW,      MVT::f64, Expand);
893   setOperationAction(ISD::FPOW,      MVT::f32, Expand);
894
895   if (!Subtarget->hasVFP4()) {
896     setOperationAction(ISD::FMA, MVT::f64, Expand);
897     setOperationAction(ISD::FMA, MVT::f32, Expand);
898   }
899
900   // Various VFP goodness
901   if (!Subtarget->useSoftFloat() && !Subtarget->isThumb1Only()) {
902     // FP-ARMv8 adds f64 <-> f16 conversion. Before that it should be expanded.
903     if (!Subtarget->hasFPARMv8() || Subtarget->isFPOnlySP()) {
904       setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand);
905       setOperationAction(ISD::FP_TO_FP16, MVT::f64, Expand);
906     }
907
908     // fp16 is a special v7 extension that adds f16 <-> f32 conversions.
909     if (!Subtarget->hasFP16()) {
910       setOperationAction(ISD::FP16_TO_FP, MVT::f32, Expand);
911       setOperationAction(ISD::FP_TO_FP16, MVT::f32, Expand);
912     }
913   }
914
915   // Combine sin / cos into one node or libcall if possible.
916   if (Subtarget->hasSinCos()) {
917     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
918     setLibcallName(RTLIB::SINCOS_F64, "sincos");
919     if (Subtarget->getTargetTriple().isiOS()) {
920       // For iOS, we don't want to the normal expansion of a libcall to
921       // sincos. We want to issue a libcall to __sincos_stret.
922       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
923       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
924     }
925   }
926
927   // FP-ARMv8 implements a lot of rounding-like FP operations.
928   if (Subtarget->hasFPARMv8()) {
929     setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
930     setOperationAction(ISD::FCEIL, MVT::f32, Legal);
931     setOperationAction(ISD::FROUND, MVT::f32, Legal);
932     setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
933     setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
934     setOperationAction(ISD::FRINT, MVT::f32, Legal);
935     if (!Subtarget->isFPOnlySP()) {
936       setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
937       setOperationAction(ISD::FCEIL, MVT::f64, Legal);
938       setOperationAction(ISD::FROUND, MVT::f64, Legal);
939       setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
940       setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
941       setOperationAction(ISD::FRINT, MVT::f64, Legal);
942     }
943   }
944   // We have target-specific dag combine patterns for the following nodes:
945   // ARMISD::VMOVRRD  - No need to call setTargetDAGCombine
946   setTargetDAGCombine(ISD::ADD);
947   setTargetDAGCombine(ISD::SUB);
948   setTargetDAGCombine(ISD::MUL);
949   setTargetDAGCombine(ISD::AND);
950   setTargetDAGCombine(ISD::OR);
951   setTargetDAGCombine(ISD::XOR);
952
953   if (Subtarget->hasV6Ops())
954     setTargetDAGCombine(ISD::SRL);
955
956   setStackPointerRegisterToSaveRestore(ARM::SP);
957
958   if (Subtarget->useSoftFloat() || Subtarget->isThumb1Only() ||
959       !Subtarget->hasVFP2())
960     setSchedulingPreference(Sched::RegPressure);
961   else
962     setSchedulingPreference(Sched::Hybrid);
963
964   //// temporary - rewrite interface to use type
965   MaxStoresPerMemset = 8;
966   MaxStoresPerMemsetOptSize = 4;
967   MaxStoresPerMemcpy = 4; // For @llvm.memcpy -> sequence of stores
968   MaxStoresPerMemcpyOptSize = 2;
969   MaxStoresPerMemmove = 4; // For @llvm.memmove -> sequence of stores
970   MaxStoresPerMemmoveOptSize = 2;
971
972   // On ARM arguments smaller than 4 bytes are extended, so all arguments
973   // are at least 4 bytes aligned.
974   setMinStackArgumentAlignment(4);
975
976   // Prefer likely predicted branches to selects on out-of-order cores.
977   PredictableSelectIsExpensive = Subtarget->isLikeA9();
978
979   setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2);
980 }
981
982 bool ARMTargetLowering::useSoftFloat() const {
983   return Subtarget->useSoftFloat();
984 }
985
986 // FIXME: It might make sense to define the representative register class as the
987 // nearest super-register that has a non-null superset. For example, DPR_VFP2 is
988 // a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently,
989 // SPR's representative would be DPR_VFP2. This should work well if register
990 // pressure tracking were modified such that a register use would increment the
991 // pressure of the register class's representative and all of it's super
992 // classes' representatives transitively. We have not implemented this because
993 // of the difficulty prior to coalescing of modeling operand register classes
994 // due to the common occurrence of cross class copies and subregister insertions
995 // and extractions.
996 std::pair<const TargetRegisterClass *, uint8_t>
997 ARMTargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI,
998                                            MVT VT) const {
999   const TargetRegisterClass *RRC = nullptr;
1000   uint8_t Cost = 1;
1001   switch (VT.SimpleTy) {
1002   default:
1003     return TargetLowering::findRepresentativeClass(TRI, VT);
1004   // Use DPR as representative register class for all floating point
1005   // and vector types. Since there are 32 SPR registers and 32 DPR registers so
1006   // the cost is 1 for both f32 and f64.
1007   case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16:
1008   case MVT::v2i32: case MVT::v1i64: case MVT::v2f32:
1009     RRC = &ARM::DPRRegClass;
1010     // When NEON is used for SP, only half of the register file is available
1011     // because operations that define both SP and DP results will be constrained
1012     // to the VFP2 class (D0-D15). We currently model this constraint prior to
1013     // coalescing by double-counting the SP regs. See the FIXME above.
1014     if (Subtarget->useNEONForSinglePrecisionFP())
1015       Cost = 2;
1016     break;
1017   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1018   case MVT::v4f32: case MVT::v2f64:
1019     RRC = &ARM::DPRRegClass;
1020     Cost = 2;
1021     break;
1022   case MVT::v4i64:
1023     RRC = &ARM::DPRRegClass;
1024     Cost = 4;
1025     break;
1026   case MVT::v8i64:
1027     RRC = &ARM::DPRRegClass;
1028     Cost = 8;
1029     break;
1030   }
1031   return std::make_pair(RRC, Cost);
1032 }
1033
1034 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
1035   switch ((ARMISD::NodeType)Opcode) {
1036   case ARMISD::FIRST_NUMBER:  break;
1037   case ARMISD::Wrapper:       return "ARMISD::Wrapper";
1038   case ARMISD::WrapperPIC:    return "ARMISD::WrapperPIC";
1039   case ARMISD::WrapperJT:     return "ARMISD::WrapperJT";
1040   case ARMISD::COPY_STRUCT_BYVAL: return "ARMISD::COPY_STRUCT_BYVAL";
1041   case ARMISD::CALL:          return "ARMISD::CALL";
1042   case ARMISD::CALL_PRED:     return "ARMISD::CALL_PRED";
1043   case ARMISD::CALL_NOLINK:   return "ARMISD::CALL_NOLINK";
1044   case ARMISD::tCALL:         return "ARMISD::tCALL";
1045   case ARMISD::BRCOND:        return "ARMISD::BRCOND";
1046   case ARMISD::BR_JT:         return "ARMISD::BR_JT";
1047   case ARMISD::BR2_JT:        return "ARMISD::BR2_JT";
1048   case ARMISD::RET_FLAG:      return "ARMISD::RET_FLAG";
1049   case ARMISD::INTRET_FLAG:   return "ARMISD::INTRET_FLAG";
1050   case ARMISD::PIC_ADD:       return "ARMISD::PIC_ADD";
1051   case ARMISD::CMP:           return "ARMISD::CMP";
1052   case ARMISD::CMN:           return "ARMISD::CMN";
1053   case ARMISD::CMPZ:          return "ARMISD::CMPZ";
1054   case ARMISD::CMPFP:         return "ARMISD::CMPFP";
1055   case ARMISD::CMPFPw0:       return "ARMISD::CMPFPw0";
1056   case ARMISD::BCC_i64:       return "ARMISD::BCC_i64";
1057   case ARMISD::FMSTAT:        return "ARMISD::FMSTAT";
1058
1059   case ARMISD::CMOV:          return "ARMISD::CMOV";
1060
1061   case ARMISD::RBIT:          return "ARMISD::RBIT";
1062
1063   case ARMISD::SRL_FLAG:      return "ARMISD::SRL_FLAG";
1064   case ARMISD::SRA_FLAG:      return "ARMISD::SRA_FLAG";
1065   case ARMISD::RRX:           return "ARMISD::RRX";
1066
1067   case ARMISD::ADDC:          return "ARMISD::ADDC";
1068   case ARMISD::ADDE:          return "ARMISD::ADDE";
1069   case ARMISD::SUBC:          return "ARMISD::SUBC";
1070   case ARMISD::SUBE:          return "ARMISD::SUBE";
1071
1072   case ARMISD::VMOVRRD:       return "ARMISD::VMOVRRD";
1073   case ARMISD::VMOVDRR:       return "ARMISD::VMOVDRR";
1074
1075   case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
1076   case ARMISD::EH_SJLJ_LONGJMP: return "ARMISD::EH_SJLJ_LONGJMP";
1077   case ARMISD::EH_SJLJ_SETUP_DISPATCH: return "ARMISD::EH_SJLJ_SETUP_DISPATCH";
1078
1079   case ARMISD::TC_RETURN:     return "ARMISD::TC_RETURN";
1080
1081   case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
1082
1083   case ARMISD::DYN_ALLOC:     return "ARMISD::DYN_ALLOC";
1084
1085   case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR";
1086
1087   case ARMISD::PRELOAD:       return "ARMISD::PRELOAD";
1088
1089   case ARMISD::WIN__CHKSTK:   return "ARMISD:::WIN__CHKSTK";
1090
1091   case ARMISD::VCEQ:          return "ARMISD::VCEQ";
1092   case ARMISD::VCEQZ:         return "ARMISD::VCEQZ";
1093   case ARMISD::VCGE:          return "ARMISD::VCGE";
1094   case ARMISD::VCGEZ:         return "ARMISD::VCGEZ";
1095   case ARMISD::VCLEZ:         return "ARMISD::VCLEZ";
1096   case ARMISD::VCGEU:         return "ARMISD::VCGEU";
1097   case ARMISD::VCGT:          return "ARMISD::VCGT";
1098   case ARMISD::VCGTZ:         return "ARMISD::VCGTZ";
1099   case ARMISD::VCLTZ:         return "ARMISD::VCLTZ";
1100   case ARMISD::VCGTU:         return "ARMISD::VCGTU";
1101   case ARMISD::VTST:          return "ARMISD::VTST";
1102
1103   case ARMISD::VSHL:          return "ARMISD::VSHL";
1104   case ARMISD::VSHRs:         return "ARMISD::VSHRs";
1105   case ARMISD::VSHRu:         return "ARMISD::VSHRu";
1106   case ARMISD::VRSHRs:        return "ARMISD::VRSHRs";
1107   case ARMISD::VRSHRu:        return "ARMISD::VRSHRu";
1108   case ARMISD::VRSHRN:        return "ARMISD::VRSHRN";
1109   case ARMISD::VQSHLs:        return "ARMISD::VQSHLs";
1110   case ARMISD::VQSHLu:        return "ARMISD::VQSHLu";
1111   case ARMISD::VQSHLsu:       return "ARMISD::VQSHLsu";
1112   case ARMISD::VQSHRNs:       return "ARMISD::VQSHRNs";
1113   case ARMISD::VQSHRNu:       return "ARMISD::VQSHRNu";
1114   case ARMISD::VQSHRNsu:      return "ARMISD::VQSHRNsu";
1115   case ARMISD::VQRSHRNs:      return "ARMISD::VQRSHRNs";
1116   case ARMISD::VQRSHRNu:      return "ARMISD::VQRSHRNu";
1117   case ARMISD::VQRSHRNsu:     return "ARMISD::VQRSHRNsu";
1118   case ARMISD::VSLI:          return "ARMISD::VSLI";
1119   case ARMISD::VSRI:          return "ARMISD::VSRI";
1120   case ARMISD::VGETLANEu:     return "ARMISD::VGETLANEu";
1121   case ARMISD::VGETLANEs:     return "ARMISD::VGETLANEs";
1122   case ARMISD::VMOVIMM:       return "ARMISD::VMOVIMM";
1123   case ARMISD::VMVNIMM:       return "ARMISD::VMVNIMM";
1124   case ARMISD::VMOVFPIMM:     return "ARMISD::VMOVFPIMM";
1125   case ARMISD::VDUP:          return "ARMISD::VDUP";
1126   case ARMISD::VDUPLANE:      return "ARMISD::VDUPLANE";
1127   case ARMISD::VEXT:          return "ARMISD::VEXT";
1128   case ARMISD::VREV64:        return "ARMISD::VREV64";
1129   case ARMISD::VREV32:        return "ARMISD::VREV32";
1130   case ARMISD::VREV16:        return "ARMISD::VREV16";
1131   case ARMISD::VZIP:          return "ARMISD::VZIP";
1132   case ARMISD::VUZP:          return "ARMISD::VUZP";
1133   case ARMISD::VTRN:          return "ARMISD::VTRN";
1134   case ARMISD::VTBL1:         return "ARMISD::VTBL1";
1135   case ARMISD::VTBL2:         return "ARMISD::VTBL2";
1136   case ARMISD::VMULLs:        return "ARMISD::VMULLs";
1137   case ARMISD::VMULLu:        return "ARMISD::VMULLu";
1138   case ARMISD::UMLAL:         return "ARMISD::UMLAL";
1139   case ARMISD::SMLAL:         return "ARMISD::SMLAL";
1140   case ARMISD::BUILD_VECTOR:  return "ARMISD::BUILD_VECTOR";
1141   case ARMISD::FMAX:          return "ARMISD::FMAX";
1142   case ARMISD::FMIN:          return "ARMISD::FMIN";
1143   case ARMISD::VMAXNM:        return "ARMISD::VMAX";
1144   case ARMISD::VMINNM:        return "ARMISD::VMIN";
1145   case ARMISD::BFI:           return "ARMISD::BFI";
1146   case ARMISD::VORRIMM:       return "ARMISD::VORRIMM";
1147   case ARMISD::VBICIMM:       return "ARMISD::VBICIMM";
1148   case ARMISD::VBSL:          return "ARMISD::VBSL";
1149   case ARMISD::VLD2DUP:       return "ARMISD::VLD2DUP";
1150   case ARMISD::VLD3DUP:       return "ARMISD::VLD3DUP";
1151   case ARMISD::VLD4DUP:       return "ARMISD::VLD4DUP";
1152   case ARMISD::VLD1_UPD:      return "ARMISD::VLD1_UPD";
1153   case ARMISD::VLD2_UPD:      return "ARMISD::VLD2_UPD";
1154   case ARMISD::VLD3_UPD:      return "ARMISD::VLD3_UPD";
1155   case ARMISD::VLD4_UPD:      return "ARMISD::VLD4_UPD";
1156   case ARMISD::VLD2LN_UPD:    return "ARMISD::VLD2LN_UPD";
1157   case ARMISD::VLD3LN_UPD:    return "ARMISD::VLD3LN_UPD";
1158   case ARMISD::VLD4LN_UPD:    return "ARMISD::VLD4LN_UPD";
1159   case ARMISD::VLD2DUP_UPD:   return "ARMISD::VLD2DUP_UPD";
1160   case ARMISD::VLD3DUP_UPD:   return "ARMISD::VLD3DUP_UPD";
1161   case ARMISD::VLD4DUP_UPD:   return "ARMISD::VLD4DUP_UPD";
1162   case ARMISD::VST1_UPD:      return "ARMISD::VST1_UPD";
1163   case ARMISD::VST2_UPD:      return "ARMISD::VST2_UPD";
1164   case ARMISD::VST3_UPD:      return "ARMISD::VST3_UPD";
1165   case ARMISD::VST4_UPD:      return "ARMISD::VST4_UPD";
1166   case ARMISD::VST2LN_UPD:    return "ARMISD::VST2LN_UPD";
1167   case ARMISD::VST3LN_UPD:    return "ARMISD::VST3LN_UPD";
1168   case ARMISD::VST4LN_UPD:    return "ARMISD::VST4LN_UPD";
1169   }
1170   return nullptr;
1171 }
1172
1173 EVT ARMTargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &,
1174                                           EVT VT) const {
1175   if (!VT.isVector())
1176     return getPointerTy(DL);
1177   return VT.changeVectorElementTypeToInteger();
1178 }
1179
1180 /// getRegClassFor - Return the register class that should be used for the
1181 /// specified value type.
1182 const TargetRegisterClass *ARMTargetLowering::getRegClassFor(MVT VT) const {
1183   // Map v4i64 to QQ registers but do not make the type legal. Similarly map
1184   // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to
1185   // load / store 4 to 8 consecutive D registers.
1186   if (Subtarget->hasNEON()) {
1187     if (VT == MVT::v4i64)
1188       return &ARM::QQPRRegClass;
1189     if (VT == MVT::v8i64)
1190       return &ARM::QQQQPRRegClass;
1191   }
1192   return TargetLowering::getRegClassFor(VT);
1193 }
1194
1195 // memcpy, and other memory intrinsics, typically tries to use LDM/STM if the
1196 // source/dest is aligned and the copy size is large enough. We therefore want
1197 // to align such objects passed to memory intrinsics.
1198 bool ARMTargetLowering::shouldAlignPointerArgs(CallInst *CI, unsigned &MinSize,
1199                                                unsigned &PrefAlign) const {
1200   if (!isa<MemIntrinsic>(CI))
1201     return false;
1202   MinSize = 8;
1203   // On ARM11 onwards (excluding M class) 8-byte aligned LDM is typically 1
1204   // cycle faster than 4-byte aligned LDM.
1205   PrefAlign = (Subtarget->hasV6Ops() && !Subtarget->isMClass() ? 8 : 4);
1206   return true;
1207 }
1208
1209 // Create a fast isel object.
1210 FastISel *
1211 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
1212                                   const TargetLibraryInfo *libInfo) const {
1213   return ARM::createFastISel(funcInfo, libInfo);
1214 }
1215
1216 Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
1217   unsigned NumVals = N->getNumValues();
1218   if (!NumVals)
1219     return Sched::RegPressure;
1220
1221   for (unsigned i = 0; i != NumVals; ++i) {
1222     EVT VT = N->getValueType(i);
1223     if (VT == MVT::Glue || VT == MVT::Other)
1224       continue;
1225     if (VT.isFloatingPoint() || VT.isVector())
1226       return Sched::ILP;
1227   }
1228
1229   if (!N->isMachineOpcode())
1230     return Sched::RegPressure;
1231
1232   // Load are scheduled for latency even if there instruction itinerary
1233   // is not available.
1234   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
1235   const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
1236
1237   if (MCID.getNumDefs() == 0)
1238     return Sched::RegPressure;
1239   if (!Itins->isEmpty() &&
1240       Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2)
1241     return Sched::ILP;
1242
1243   return Sched::RegPressure;
1244 }
1245
1246 //===----------------------------------------------------------------------===//
1247 // Lowering Code
1248 //===----------------------------------------------------------------------===//
1249
1250 /// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
1251 static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
1252   switch (CC) {
1253   default: llvm_unreachable("Unknown condition code!");
1254   case ISD::SETNE:  return ARMCC::NE;
1255   case ISD::SETEQ:  return ARMCC::EQ;
1256   case ISD::SETGT:  return ARMCC::GT;
1257   case ISD::SETGE:  return ARMCC::GE;
1258   case ISD::SETLT:  return ARMCC::LT;
1259   case ISD::SETLE:  return ARMCC::LE;
1260   case ISD::SETUGT: return ARMCC::HI;
1261   case ISD::SETUGE: return ARMCC::HS;
1262   case ISD::SETULT: return ARMCC::LO;
1263   case ISD::SETULE: return ARMCC::LS;
1264   }
1265 }
1266
1267 /// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
1268 static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
1269                         ARMCC::CondCodes &CondCode2) {
1270   CondCode2 = ARMCC::AL;
1271   switch (CC) {
1272   default: llvm_unreachable("Unknown FP condition!");
1273   case ISD::SETEQ:
1274   case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
1275   case ISD::SETGT:
1276   case ISD::SETOGT: CondCode = ARMCC::GT; break;
1277   case ISD::SETGE:
1278   case ISD::SETOGE: CondCode = ARMCC::GE; break;
1279   case ISD::SETOLT: CondCode = ARMCC::MI; break;
1280   case ISD::SETOLE: CondCode = ARMCC::LS; break;
1281   case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
1282   case ISD::SETO:   CondCode = ARMCC::VC; break;
1283   case ISD::SETUO:  CondCode = ARMCC::VS; break;
1284   case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
1285   case ISD::SETUGT: CondCode = ARMCC::HI; break;
1286   case ISD::SETUGE: CondCode = ARMCC::PL; break;
1287   case ISD::SETLT:
1288   case ISD::SETULT: CondCode = ARMCC::LT; break;
1289   case ISD::SETLE:
1290   case ISD::SETULE: CondCode = ARMCC::LE; break;
1291   case ISD::SETNE:
1292   case ISD::SETUNE: CondCode = ARMCC::NE; break;
1293   }
1294 }
1295
1296 //===----------------------------------------------------------------------===//
1297 //                      Calling Convention Implementation
1298 //===----------------------------------------------------------------------===//
1299
1300 #include "ARMGenCallingConv.inc"
1301
1302 /// getEffectiveCallingConv - Get the effective calling convention, taking into
1303 /// account presence of floating point hardware and calling convention
1304 /// limitations, such as support for variadic functions.
1305 CallingConv::ID
1306 ARMTargetLowering::getEffectiveCallingConv(CallingConv::ID CC,
1307                                            bool isVarArg) const {
1308   switch (CC) {
1309   default:
1310     llvm_unreachable("Unsupported calling convention");
1311   case CallingConv::ARM_AAPCS:
1312   case CallingConv::ARM_APCS:
1313   case CallingConv::GHC:
1314     return CC;
1315   case CallingConv::ARM_AAPCS_VFP:
1316     return isVarArg ? CallingConv::ARM_AAPCS : CallingConv::ARM_AAPCS_VFP;
1317   case CallingConv::C:
1318     if (!Subtarget->isAAPCS_ABI())
1319       return CallingConv::ARM_APCS;
1320     else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() &&
1321              getTargetMachine().Options.FloatABIType == FloatABI::Hard &&
1322              !isVarArg)
1323       return CallingConv::ARM_AAPCS_VFP;
1324     else
1325       return CallingConv::ARM_AAPCS;
1326   case CallingConv::Fast:
1327     if (!Subtarget->isAAPCS_ABI()) {
1328       if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
1329         return CallingConv::Fast;
1330       return CallingConv::ARM_APCS;
1331     } else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg)
1332       return CallingConv::ARM_AAPCS_VFP;
1333     else
1334       return CallingConv::ARM_AAPCS;
1335   }
1336 }
1337
1338 /// CCAssignFnForNode - Selects the correct CCAssignFn for the given
1339 /// CallingConvention.
1340 CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
1341                                                  bool Return,
1342                                                  bool isVarArg) const {
1343   switch (getEffectiveCallingConv(CC, isVarArg)) {
1344   default:
1345     llvm_unreachable("Unsupported calling convention");
1346   case CallingConv::ARM_APCS:
1347     return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
1348   case CallingConv::ARM_AAPCS:
1349     return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
1350   case CallingConv::ARM_AAPCS_VFP:
1351     return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1352   case CallingConv::Fast:
1353     return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
1354   case CallingConv::GHC:
1355     return (Return ? RetCC_ARM_APCS : CC_ARM_APCS_GHC);
1356   }
1357 }
1358
1359 /// LowerCallResult - Lower the result values of a call into the
1360 /// appropriate copies out of appropriate physical registers.
1361 SDValue
1362 ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1363                                    CallingConv::ID CallConv, bool isVarArg,
1364                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1365                                    SDLoc dl, SelectionDAG &DAG,
1366                                    SmallVectorImpl<SDValue> &InVals,
1367                                    bool isThisReturn, SDValue ThisVal) const {
1368
1369   // Assign locations to each value returned by this call.
1370   SmallVector<CCValAssign, 16> RVLocs;
1371   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
1372                     *DAG.getContext(), Call);
1373   CCInfo.AnalyzeCallResult(Ins,
1374                            CCAssignFnForNode(CallConv, /* Return*/ true,
1375                                              isVarArg));
1376
1377   // Copy all of the result registers out of their specified physreg.
1378   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1379     CCValAssign VA = RVLocs[i];
1380
1381     // Pass 'this' value directly from the argument to return value, to avoid
1382     // reg unit interference
1383     if (i == 0 && isThisReturn) {
1384       assert(!VA.needsCustom() && VA.getLocVT() == MVT::i32 &&
1385              "unexpected return calling convention register assignment");
1386       InVals.push_back(ThisVal);
1387       continue;
1388     }
1389
1390     SDValue Val;
1391     if (VA.needsCustom()) {
1392       // Handle f64 or half of a v2f64.
1393       SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
1394                                       InFlag);
1395       Chain = Lo.getValue(1);
1396       InFlag = Lo.getValue(2);
1397       VA = RVLocs[++i]; // skip ahead to next loc
1398       SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
1399                                       InFlag);
1400       Chain = Hi.getValue(1);
1401       InFlag = Hi.getValue(2);
1402       if (!Subtarget->isLittle())
1403         std::swap (Lo, Hi);
1404       Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
1405
1406       if (VA.getLocVT() == MVT::v2f64) {
1407         SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1408         Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1409                           DAG.getConstant(0, dl, MVT::i32));
1410
1411         VA = RVLocs[++i]; // skip ahead to next loc
1412         Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
1413         Chain = Lo.getValue(1);
1414         InFlag = Lo.getValue(2);
1415         VA = RVLocs[++i]; // skip ahead to next loc
1416         Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
1417         Chain = Hi.getValue(1);
1418         InFlag = Hi.getValue(2);
1419         if (!Subtarget->isLittle())
1420           std::swap (Lo, Hi);
1421         Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
1422         Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1423                           DAG.getConstant(1, dl, MVT::i32));
1424       }
1425     } else {
1426       Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1427                                InFlag);
1428       Chain = Val.getValue(1);
1429       InFlag = Val.getValue(2);
1430     }
1431
1432     switch (VA.getLocInfo()) {
1433     default: llvm_unreachable("Unknown loc info!");
1434     case CCValAssign::Full: break;
1435     case CCValAssign::BCvt:
1436       Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val);
1437       break;
1438     }
1439
1440     InVals.push_back(Val);
1441   }
1442
1443   return Chain;
1444 }
1445
1446 /// LowerMemOpCallTo - Store the argument to the stack.
1447 SDValue
1448 ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
1449                                     SDValue StackPtr, SDValue Arg,
1450                                     SDLoc dl, SelectionDAG &DAG,
1451                                     const CCValAssign &VA,
1452                                     ISD::ArgFlagsTy Flags) const {
1453   unsigned LocMemOffset = VA.getLocMemOffset();
1454   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
1455   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()),
1456                        StackPtr, PtrOff);
1457   return DAG.getStore(Chain, dl, Arg, PtrOff,
1458                       MachinePointerInfo::getStack(LocMemOffset),
1459                       false, false, 0);
1460 }
1461
1462 void ARMTargetLowering::PassF64ArgInRegs(SDLoc dl, SelectionDAG &DAG,
1463                                          SDValue Chain, SDValue &Arg,
1464                                          RegsToPassVector &RegsToPass,
1465                                          CCValAssign &VA, CCValAssign &NextVA,
1466                                          SDValue &StackPtr,
1467                                          SmallVectorImpl<SDValue> &MemOpChains,
1468                                          ISD::ArgFlagsTy Flags) const {
1469
1470   SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
1471                               DAG.getVTList(MVT::i32, MVT::i32), Arg);
1472   unsigned id = Subtarget->isLittle() ? 0 : 1;
1473   RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd.getValue(id)));
1474
1475   if (NextVA.isRegLoc())
1476     RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1-id)));
1477   else {
1478     assert(NextVA.isMemLoc());
1479     if (!StackPtr.getNode())
1480       StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP,
1481                                     getPointerTy(DAG.getDataLayout()));
1482
1483     MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1-id),
1484                                            dl, DAG, NextVA,
1485                                            Flags));
1486   }
1487 }
1488
1489 /// LowerCall - Lowering a call into a callseq_start <-
1490 /// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
1491 /// nodes.
1492 SDValue
1493 ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
1494                              SmallVectorImpl<SDValue> &InVals) const {
1495   SelectionDAG &DAG                     = CLI.DAG;
1496   SDLoc &dl                             = CLI.DL;
1497   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
1498   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
1499   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
1500   SDValue Chain                         = CLI.Chain;
1501   SDValue Callee                        = CLI.Callee;
1502   bool &isTailCall                      = CLI.IsTailCall;
1503   CallingConv::ID CallConv              = CLI.CallConv;
1504   bool doesNotRet                       = CLI.DoesNotReturn;
1505   bool isVarArg                         = CLI.IsVarArg;
1506
1507   MachineFunction &MF = DAG.getMachineFunction();
1508   bool isStructRet    = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
1509   bool isThisReturn   = false;
1510   bool isSibCall      = false;
1511   auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls");
1512
1513   // Disable tail calls if they're not supported.
1514   if (!Subtarget->supportsTailCall() || Attr.getValueAsString() == "true")
1515     isTailCall = false;
1516
1517   if (isTailCall) {
1518     // Check if it's really possible to do a tail call.
1519     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1520                     isVarArg, isStructRet, MF.getFunction()->hasStructRetAttr(),
1521                                                    Outs, OutVals, Ins, DAG);
1522     if (!isTailCall && CLI.CS && CLI.CS->isMustTailCall())
1523       report_fatal_error("failed to perform tail call elimination on a call "
1524                          "site marked musttail");
1525     // We don't support GuaranteedTailCallOpt for ARM, only automatically
1526     // detected sibcalls.
1527     if (isTailCall) {
1528       ++NumTailCalls;
1529       isSibCall = true;
1530     }
1531   }
1532
1533   // Analyze operands of the call, assigning locations to each operand.
1534   SmallVector<CCValAssign, 16> ArgLocs;
1535   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
1536                     *DAG.getContext(), Call);
1537   CCInfo.AnalyzeCallOperands(Outs,
1538                              CCAssignFnForNode(CallConv, /* Return*/ false,
1539                                                isVarArg));
1540
1541   // Get a count of how many bytes are to be pushed on the stack.
1542   unsigned NumBytes = CCInfo.getNextStackOffset();
1543
1544   // For tail calls, memory operands are available in our caller's stack.
1545   if (isSibCall)
1546     NumBytes = 0;
1547
1548   // Adjust the stack pointer for the new arguments...
1549   // These operations are automatically eliminated by the prolog/epilog pass
1550   if (!isSibCall)
1551     Chain = DAG.getCALLSEQ_START(Chain,
1552                                  DAG.getIntPtrConstant(NumBytes, dl, true), dl);
1553
1554   SDValue StackPtr =
1555       DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy(DAG.getDataLayout()));
1556
1557   RegsToPassVector RegsToPass;
1558   SmallVector<SDValue, 8> MemOpChains;
1559
1560   // Walk the register/memloc assignments, inserting copies/loads.  In the case
1561   // of tail call optimization, arguments are handled later.
1562   for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1563        i != e;
1564        ++i, ++realArgIdx) {
1565     CCValAssign &VA = ArgLocs[i];
1566     SDValue Arg = OutVals[realArgIdx];
1567     ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
1568     bool isByVal = Flags.isByVal();
1569
1570     // Promote the value if needed.
1571     switch (VA.getLocInfo()) {
1572     default: llvm_unreachable("Unknown loc info!");
1573     case CCValAssign::Full: break;
1574     case CCValAssign::SExt:
1575       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1576       break;
1577     case CCValAssign::ZExt:
1578       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1579       break;
1580     case CCValAssign::AExt:
1581       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1582       break;
1583     case CCValAssign::BCvt:
1584       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
1585       break;
1586     }
1587
1588     // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
1589     if (VA.needsCustom()) {
1590       if (VA.getLocVT() == MVT::v2f64) {
1591         SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1592                                   DAG.getConstant(0, dl, MVT::i32));
1593         SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1594                                   DAG.getConstant(1, dl, MVT::i32));
1595
1596         PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
1597                          VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1598
1599         VA = ArgLocs[++i]; // skip ahead to next loc
1600         if (VA.isRegLoc()) {
1601           PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
1602                            VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1603         } else {
1604           assert(VA.isMemLoc());
1605
1606           MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
1607                                                  dl, DAG, VA, Flags));
1608         }
1609       } else {
1610         PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
1611                          StackPtr, MemOpChains, Flags);
1612       }
1613     } else if (VA.isRegLoc()) {
1614       if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i32) {
1615         assert(VA.getLocVT() == MVT::i32 &&
1616                "unexpected calling convention register assignment");
1617         assert(!Ins.empty() && Ins[0].VT == MVT::i32 &&
1618                "unexpected use of 'returned'");
1619         isThisReturn = true;
1620       }
1621       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1622     } else if (isByVal) {
1623       assert(VA.isMemLoc());
1624       unsigned offset = 0;
1625
1626       // True if this byval aggregate will be split between registers
1627       // and memory.
1628       unsigned ByValArgsCount = CCInfo.getInRegsParamsCount();
1629       unsigned CurByValIdx = CCInfo.getInRegsParamsProcessed();
1630
1631       if (CurByValIdx < ByValArgsCount) {
1632
1633         unsigned RegBegin, RegEnd;
1634         CCInfo.getInRegsParamInfo(CurByValIdx, RegBegin, RegEnd);
1635
1636         EVT PtrVT =
1637             DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
1638         unsigned int i, j;
1639         for (i = 0, j = RegBegin; j < RegEnd; i++, j++) {
1640           SDValue Const = DAG.getConstant(4*i, dl, MVT::i32);
1641           SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
1642           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
1643                                      MachinePointerInfo(),
1644                                      false, false, false,
1645                                      DAG.InferPtrAlignment(AddArg));
1646           MemOpChains.push_back(Load.getValue(1));
1647           RegsToPass.push_back(std::make_pair(j, Load));
1648         }
1649
1650         // If parameter size outsides register area, "offset" value
1651         // helps us to calculate stack slot for remained part properly.
1652         offset = RegEnd - RegBegin;
1653
1654         CCInfo.nextInRegsParam();
1655       }
1656
1657       if (Flags.getByValSize() > 4*offset) {
1658         auto PtrVT = getPointerTy(DAG.getDataLayout());
1659         unsigned LocMemOffset = VA.getLocMemOffset();
1660         SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset, dl);
1661         SDValue Dst = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, StkPtrOff);
1662         SDValue SrcOffset = DAG.getIntPtrConstant(4*offset, dl);
1663         SDValue Src = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, SrcOffset);
1664         SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset, dl,
1665                                            MVT::i32);
1666         SDValue AlignNode = DAG.getConstant(Flags.getByValAlign(), dl,
1667                                             MVT::i32);
1668
1669         SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
1670         SDValue Ops[] = { Chain, Dst, Src, SizeNode, AlignNode};
1671         MemOpChains.push_back(DAG.getNode(ARMISD::COPY_STRUCT_BYVAL, dl, VTs,
1672                                           Ops));
1673       }
1674     } else if (!isSibCall) {
1675       assert(VA.isMemLoc());
1676
1677       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1678                                              dl, DAG, VA, Flags));
1679     }
1680   }
1681
1682   if (!MemOpChains.empty())
1683     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
1684
1685   // Build a sequence of copy-to-reg nodes chained together with token chain
1686   // and flag operands which copy the outgoing args into the appropriate regs.
1687   SDValue InFlag;
1688   // Tail call byval lowering might overwrite argument registers so in case of
1689   // tail call optimization the copies to registers are lowered later.
1690   if (!isTailCall)
1691     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1692       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1693                                RegsToPass[i].second, InFlag);
1694       InFlag = Chain.getValue(1);
1695     }
1696
1697   // For tail calls lower the arguments to the 'real' stack slot.
1698   if (isTailCall) {
1699     // Force all the incoming stack arguments to be loaded from the stack
1700     // before any new outgoing arguments are stored to the stack, because the
1701     // outgoing stack slots may alias the incoming argument stack slots, and
1702     // the alias isn't otherwise explicit. This is slightly more conservative
1703     // than necessary, because it means that each store effectively depends
1704     // on every argument instead of just those arguments it would clobber.
1705
1706     // Do not flag preceding copytoreg stuff together with the following stuff.
1707     InFlag = SDValue();
1708     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1709       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1710                                RegsToPass[i].second, InFlag);
1711       InFlag = Chain.getValue(1);
1712     }
1713     InFlag = SDValue();
1714   }
1715
1716   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1717   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1718   // node so that legalize doesn't hack it.
1719   bool isDirect = false;
1720   bool isARMFunc = false;
1721   bool isLocalARMFunc = false;
1722   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1723   auto PtrVt = getPointerTy(DAG.getDataLayout());
1724
1725   if (Subtarget->genLongCalls()) {
1726     assert((Subtarget->isTargetWindows() ||
1727             getTargetMachine().getRelocationModel() == Reloc::Static) &&
1728            "long-calls with non-static relocation model!");
1729     // Handle a global address or an external symbol. If it's not one of
1730     // those, the target's already in a register, so we don't need to do
1731     // anything extra.
1732     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1733       const GlobalValue *GV = G->getGlobal();
1734       // Create a constant pool entry for the callee address
1735       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1736       ARMConstantPoolValue *CPV =
1737         ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0);
1738
1739       // Get the address of the callee into a register
1740       SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4);
1741       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1742       Callee = DAG.getLoad(PtrVt, dl, DAG.getEntryNode(), CPAddr,
1743                            MachinePointerInfo::getConstantPool(), false, false,
1744                            false, 0);
1745     } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) {
1746       const char *Sym = S->getSymbol();
1747
1748       // Create a constant pool entry for the callee address
1749       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1750       ARMConstantPoolValue *CPV =
1751         ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1752                                       ARMPCLabelIndex, 0);
1753       // Get the address of the callee into a register
1754       SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4);
1755       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1756       Callee = DAG.getLoad(PtrVt, dl, DAG.getEntryNode(), CPAddr,
1757                            MachinePointerInfo::getConstantPool(), false, false,
1758                            false, 0);
1759     }
1760   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1761     const GlobalValue *GV = G->getGlobal();
1762     isDirect = true;
1763     bool isDef = GV->isStrongDefinitionForLinker();
1764     bool isStub = (!isDef && Subtarget->isTargetMachO()) &&
1765                    getTargetMachine().getRelocationModel() != Reloc::Static;
1766     isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass());
1767     // ARM call to a local ARM function is predicable.
1768     isLocalARMFunc = !Subtarget->isThumb() && (isDef || !ARMInterworking);
1769     // tBX takes a register source operand.
1770     if (isStub && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1771       assert(Subtarget->isTargetMachO() && "WrapperPIC use on non-MachO?");
1772       Callee = DAG.getNode(
1773           ARMISD::WrapperPIC, dl, PtrVt,
1774           DAG.getTargetGlobalAddress(GV, dl, PtrVt, 0, ARMII::MO_NONLAZY));
1775       Callee = DAG.getLoad(PtrVt, dl, DAG.getEntryNode(), Callee,
1776                            MachinePointerInfo::getGOT(), false, false, true, 0);
1777     } else if (Subtarget->isTargetCOFF()) {
1778       assert(Subtarget->isTargetWindows() &&
1779              "Windows is the only supported COFF target");
1780       unsigned TargetFlags = GV->hasDLLImportStorageClass()
1781                                  ? ARMII::MO_DLLIMPORT
1782                                  : ARMII::MO_NO_FLAG;
1783       Callee =
1784           DAG.getTargetGlobalAddress(GV, dl, PtrVt, /*Offset=*/0, TargetFlags);
1785       if (GV->hasDLLImportStorageClass())
1786         Callee =
1787             DAG.getLoad(PtrVt, dl, DAG.getEntryNode(),
1788                         DAG.getNode(ARMISD::Wrapper, dl, PtrVt, Callee),
1789                         MachinePointerInfo::getGOT(), false, false, false, 0);
1790     } else {
1791       // On ELF targets for PIC code, direct calls should go through the PLT
1792       unsigned OpFlags = 0;
1793       if (Subtarget->isTargetELF() &&
1794           getTargetMachine().getRelocationModel() == Reloc::PIC_)
1795         OpFlags = ARMII::MO_PLT;
1796       Callee = DAG.getTargetGlobalAddress(GV, dl, PtrVt, 0, OpFlags);
1797     }
1798   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1799     isDirect = true;
1800     bool isStub = Subtarget->isTargetMachO() &&
1801                   getTargetMachine().getRelocationModel() != Reloc::Static;
1802     isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass());
1803     // tBX takes a register source operand.
1804     const char *Sym = S->getSymbol();
1805     if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1806       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1807       ARMConstantPoolValue *CPV =
1808         ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1809                                       ARMPCLabelIndex, 4);
1810       SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4);
1811       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1812       Callee = DAG.getLoad(PtrVt, dl, DAG.getEntryNode(), CPAddr,
1813                            MachinePointerInfo::getConstantPool(), false, false,
1814                            false, 0);
1815       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
1816       Callee = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVt, Callee, PICLabel);
1817     } else {
1818       unsigned OpFlags = 0;
1819       // On ELF targets for PIC code, direct calls should go through the PLT
1820       if (Subtarget->isTargetELF() &&
1821                   getTargetMachine().getRelocationModel() == Reloc::PIC_)
1822         OpFlags = ARMII::MO_PLT;
1823       Callee = DAG.getTargetExternalSymbol(Sym, PtrVt, OpFlags);
1824     }
1825   }
1826
1827   // FIXME: handle tail calls differently.
1828   unsigned CallOpc;
1829   if (Subtarget->isThumb()) {
1830     if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
1831       CallOpc = ARMISD::CALL_NOLINK;
1832     else
1833       CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1834   } else {
1835     if (!isDirect && !Subtarget->hasV5TOps())
1836       CallOpc = ARMISD::CALL_NOLINK;
1837     else if (doesNotRet && isDirect && Subtarget->hasRAS() &&
1838              // Emit regular call when code size is the priority
1839              !MF.getFunction()->optForMinSize())
1840       // "mov lr, pc; b _foo" to avoid confusing the RSP
1841       CallOpc = ARMISD::CALL_NOLINK;
1842     else
1843       CallOpc = isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL;
1844   }
1845
1846   std::vector<SDValue> Ops;
1847   Ops.push_back(Chain);
1848   Ops.push_back(Callee);
1849
1850   // Add argument registers to the end of the list so that they are known live
1851   // into the call.
1852   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1853     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1854                                   RegsToPass[i].second.getValueType()));
1855
1856   // Add a register mask operand representing the call-preserved registers.
1857   if (!isTailCall) {
1858     const uint32_t *Mask;
1859     const ARMBaseRegisterInfo *ARI = Subtarget->getRegisterInfo();
1860     if (isThisReturn) {
1861       // For 'this' returns, use the R0-preserving mask if applicable
1862       Mask = ARI->getThisReturnPreservedMask(MF, CallConv);
1863       if (!Mask) {
1864         // Set isThisReturn to false if the calling convention is not one that
1865         // allows 'returned' to be modeled in this way, so LowerCallResult does
1866         // not try to pass 'this' straight through
1867         isThisReturn = false;
1868         Mask = ARI->getCallPreservedMask(MF, CallConv);
1869       }
1870     } else
1871       Mask = ARI->getCallPreservedMask(MF, CallConv);
1872
1873     assert(Mask && "Missing call preserved mask for calling convention");
1874     Ops.push_back(DAG.getRegisterMask(Mask));
1875   }
1876
1877   if (InFlag.getNode())
1878     Ops.push_back(InFlag);
1879
1880   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1881   if (isTailCall) {
1882     MF.getFrameInfo()->setHasTailCall();
1883     return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, Ops);
1884   }
1885
1886   // Returns a chain and a flag for retval copy to use.
1887   Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
1888   InFlag = Chain.getValue(1);
1889
1890   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true),
1891                              DAG.getIntPtrConstant(0, dl, true), InFlag, dl);
1892   if (!Ins.empty())
1893     InFlag = Chain.getValue(1);
1894
1895   // Handle result values, copying them out of physregs into vregs that we
1896   // return.
1897   return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG,
1898                          InVals, isThisReturn,
1899                          isThisReturn ? OutVals[0] : SDValue());
1900 }
1901
1902 /// HandleByVal - Every parameter *after* a byval parameter is passed
1903 /// on the stack.  Remember the next parameter register to allocate,
1904 /// and then confiscate the rest of the parameter registers to insure
1905 /// this.
1906 void ARMTargetLowering::HandleByVal(CCState *State, unsigned &Size,
1907                                     unsigned Align) const {
1908   assert((State->getCallOrPrologue() == Prologue ||
1909           State->getCallOrPrologue() == Call) &&
1910          "unhandled ParmContext");
1911
1912   // Byval (as with any stack) slots are always at least 4 byte aligned.
1913   Align = std::max(Align, 4U);
1914
1915   unsigned Reg = State->AllocateReg(GPRArgRegs);
1916   if (!Reg)
1917     return;
1918
1919   unsigned AlignInRegs = Align / 4;
1920   unsigned Waste = (ARM::R4 - Reg) % AlignInRegs;
1921   for (unsigned i = 0; i < Waste; ++i)
1922     Reg = State->AllocateReg(GPRArgRegs);
1923
1924   if (!Reg)
1925     return;
1926
1927   unsigned Excess = 4 * (ARM::R4 - Reg);
1928
1929   // Special case when NSAA != SP and parameter size greater than size of
1930   // all remained GPR regs. In that case we can't split parameter, we must
1931   // send it to stack. We also must set NCRN to R4, so waste all
1932   // remained registers.
1933   const unsigned NSAAOffset = State->getNextStackOffset();
1934   if (NSAAOffset != 0 && Size > Excess) {
1935     while (State->AllocateReg(GPRArgRegs))
1936       ;
1937     return;
1938   }
1939
1940   // First register for byval parameter is the first register that wasn't
1941   // allocated before this method call, so it would be "reg".
1942   // If parameter is small enough to be saved in range [reg, r4), then
1943   // the end (first after last) register would be reg + param-size-in-regs,
1944   // else parameter would be splitted between registers and stack,
1945   // end register would be r4 in this case.
1946   unsigned ByValRegBegin = Reg;
1947   unsigned ByValRegEnd = std::min<unsigned>(Reg + Size / 4, ARM::R4);
1948   State->addInRegsParamInfo(ByValRegBegin, ByValRegEnd);
1949   // Note, first register is allocated in the beginning of function already,
1950   // allocate remained amount of registers we need.
1951   for (unsigned i = Reg + 1; i != ByValRegEnd; ++i)
1952     State->AllocateReg(GPRArgRegs);
1953   // A byval parameter that is split between registers and memory needs its
1954   // size truncated here.
1955   // In the case where the entire structure fits in registers, we set the
1956   // size in memory to zero.
1957   Size = std::max<int>(Size - Excess, 0);
1958 }
1959
1960 /// MatchingStackOffset - Return true if the given stack call argument is
1961 /// already available in the same position (relatively) of the caller's
1962 /// incoming argument stack.
1963 static
1964 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
1965                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
1966                          const TargetInstrInfo *TII) {
1967   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
1968   int FI = INT_MAX;
1969   if (Arg.getOpcode() == ISD::CopyFromReg) {
1970     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
1971     if (!TargetRegisterInfo::isVirtualRegister(VR))
1972       return false;
1973     MachineInstr *Def = MRI->getVRegDef(VR);
1974     if (!Def)
1975       return false;
1976     if (!Flags.isByVal()) {
1977       if (!TII->isLoadFromStackSlot(Def, FI))
1978         return false;
1979     } else {
1980       return false;
1981     }
1982   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
1983     if (Flags.isByVal())
1984       // ByVal argument is passed in as a pointer but it's now being
1985       // dereferenced. e.g.
1986       // define @foo(%struct.X* %A) {
1987       //   tail call @bar(%struct.X* byval %A)
1988       // }
1989       return false;
1990     SDValue Ptr = Ld->getBasePtr();
1991     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
1992     if (!FINode)
1993       return false;
1994     FI = FINode->getIndex();
1995   } else
1996     return false;
1997
1998   assert(FI != INT_MAX);
1999   if (!MFI->isFixedObjectIndex(FI))
2000     return false;
2001   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
2002 }
2003
2004 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
2005 /// for tail call optimization. Targets which want to do tail call
2006 /// optimization should implement this function.
2007 bool
2008 ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
2009                                                      CallingConv::ID CalleeCC,
2010                                                      bool isVarArg,
2011                                                      bool isCalleeStructRet,
2012                                                      bool isCallerStructRet,
2013                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
2014                                     const SmallVectorImpl<SDValue> &OutVals,
2015                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2016                                                      SelectionDAG& DAG) const {
2017   const Function *CallerF = DAG.getMachineFunction().getFunction();
2018   CallingConv::ID CallerCC = CallerF->getCallingConv();
2019   bool CCMatch = CallerCC == CalleeCC;
2020
2021   // Look for obvious safe cases to perform tail call optimization that do not
2022   // require ABI changes. This is what gcc calls sibcall.
2023
2024   // Do not sibcall optimize vararg calls unless the call site is not passing
2025   // any arguments.
2026   if (isVarArg && !Outs.empty())
2027     return false;
2028
2029   // Exception-handling functions need a special set of instructions to indicate
2030   // a return to the hardware. Tail-calling another function would probably
2031   // break this.
2032   if (CallerF->hasFnAttribute("interrupt"))
2033     return false;
2034
2035   // Also avoid sibcall optimization if either caller or callee uses struct
2036   // return semantics.
2037   if (isCalleeStructRet || isCallerStructRet)
2038     return false;
2039
2040   // FIXME: Completely disable sibcall for Thumb1 since ThumbRegisterInfo::
2041   // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
2042   // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
2043   // support in the assembler and linker to be used. This would need to be
2044   // fixed to fully support tail calls in Thumb1.
2045   //
2046   // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
2047   // LR.  This means if we need to reload LR, it takes an extra instructions,
2048   // which outweighs the value of the tail call; but here we don't know yet
2049   // whether LR is going to be used.  Probably the right approach is to
2050   // generate the tail call here and turn it back into CALL/RET in
2051   // emitEpilogue if LR is used.
2052
2053   // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
2054   // but we need to make sure there are enough registers; the only valid
2055   // registers are the 4 used for parameters.  We don't currently do this
2056   // case.
2057   if (Subtarget->isThumb1Only())
2058     return false;
2059
2060   // Externally-defined functions with weak linkage should not be
2061   // tail-called on ARM when the OS does not support dynamic
2062   // pre-emption of symbols, as the AAELF spec requires normal calls
2063   // to undefined weak functions to be replaced with a NOP or jump to the
2064   // next instruction. The behaviour of branch instructions in this
2065   // situation (as used for tail calls) is implementation-defined, so we
2066   // cannot rely on the linker replacing the tail call with a return.
2067   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2068     const GlobalValue *GV = G->getGlobal();
2069     const Triple &TT = getTargetMachine().getTargetTriple();
2070     if (GV->hasExternalWeakLinkage() &&
2071         (!TT.isOSWindows() || TT.isOSBinFormatELF() || TT.isOSBinFormatMachO()))
2072       return false;
2073   }
2074
2075   // If the calling conventions do not match, then we'd better make sure the
2076   // results are returned in the same way as what the caller expects.
2077   if (!CCMatch) {
2078     SmallVector<CCValAssign, 16> RVLocs1;
2079     ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), RVLocs1,
2080                        *DAG.getContext(), Call);
2081     CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg));
2082
2083     SmallVector<CCValAssign, 16> RVLocs2;
2084     ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), RVLocs2,
2085                        *DAG.getContext(), Call);
2086     CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg));
2087
2088     if (RVLocs1.size() != RVLocs2.size())
2089       return false;
2090     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2091       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2092         return false;
2093       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2094         return false;
2095       if (RVLocs1[i].isRegLoc()) {
2096         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2097           return false;
2098       } else {
2099         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2100           return false;
2101       }
2102     }
2103   }
2104
2105   // If Caller's vararg or byval argument has been split between registers and
2106   // stack, do not perform tail call, since part of the argument is in caller's
2107   // local frame.
2108   const ARMFunctionInfo *AFI_Caller = DAG.getMachineFunction().
2109                                       getInfo<ARMFunctionInfo>();
2110   if (AFI_Caller->getArgRegsSaveSize())
2111     return false;
2112
2113   // If the callee takes no arguments then go on to check the results of the
2114   // call.
2115   if (!Outs.empty()) {
2116     // Check if stack adjustment is needed. For now, do not do this if any
2117     // argument is passed on the stack.
2118     SmallVector<CCValAssign, 16> ArgLocs;
2119     ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
2120                       *DAG.getContext(), Call);
2121     CCInfo.AnalyzeCallOperands(Outs,
2122                                CCAssignFnForNode(CalleeCC, false, isVarArg));
2123     if (CCInfo.getNextStackOffset()) {
2124       MachineFunction &MF = DAG.getMachineFunction();
2125
2126       // Check if the arguments are already laid out in the right way as
2127       // the caller's fixed stack objects.
2128       MachineFrameInfo *MFI = MF.getFrameInfo();
2129       const MachineRegisterInfo *MRI = &MF.getRegInfo();
2130       const TargetInstrInfo *TII = Subtarget->getInstrInfo();
2131       for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
2132            i != e;
2133            ++i, ++realArgIdx) {
2134         CCValAssign &VA = ArgLocs[i];
2135         EVT RegVT = VA.getLocVT();
2136         SDValue Arg = OutVals[realArgIdx];
2137         ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
2138         if (VA.getLocInfo() == CCValAssign::Indirect)
2139           return false;
2140         if (VA.needsCustom()) {
2141           // f64 and vector types are split into multiple registers or
2142           // register/stack-slot combinations.  The types will not match
2143           // the registers; give up on memory f64 refs until we figure
2144           // out what to do about this.
2145           if (!VA.isRegLoc())
2146             return false;
2147           if (!ArgLocs[++i].isRegLoc())
2148             return false;
2149           if (RegVT == MVT::v2f64) {
2150             if (!ArgLocs[++i].isRegLoc())
2151               return false;
2152             if (!ArgLocs[++i].isRegLoc())
2153               return false;
2154           }
2155         } else if (!VA.isRegLoc()) {
2156           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2157                                    MFI, MRI, TII))
2158             return false;
2159         }
2160       }
2161     }
2162   }
2163
2164   return true;
2165 }
2166
2167 bool
2168 ARMTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
2169                                   MachineFunction &MF, bool isVarArg,
2170                                   const SmallVectorImpl<ISD::OutputArg> &Outs,
2171                                   LLVMContext &Context) const {
2172   SmallVector<CCValAssign, 16> RVLocs;
2173   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
2174   return CCInfo.CheckReturn(Outs, CCAssignFnForNode(CallConv, /*Return=*/true,
2175                                                     isVarArg));
2176 }
2177
2178 static SDValue LowerInterruptReturn(SmallVectorImpl<SDValue> &RetOps,
2179                                     SDLoc DL, SelectionDAG &DAG) {
2180   const MachineFunction &MF = DAG.getMachineFunction();
2181   const Function *F = MF.getFunction();
2182
2183   StringRef IntKind = F->getFnAttribute("interrupt").getValueAsString();
2184
2185   // See ARM ARM v7 B1.8.3. On exception entry LR is set to a possibly offset
2186   // version of the "preferred return address". These offsets affect the return
2187   // instruction if this is a return from PL1 without hypervisor extensions.
2188   //    IRQ/FIQ: +4     "subs pc, lr, #4"
2189   //    SWI:     0      "subs pc, lr, #0"
2190   //    ABORT:   +4     "subs pc, lr, #4"
2191   //    UNDEF:   +4/+2  "subs pc, lr, #0"
2192   // UNDEF varies depending on where the exception came from ARM or Thumb
2193   // mode. Alongside GCC, we throw our hands up in disgust and pretend it's 0.
2194
2195   int64_t LROffset;
2196   if (IntKind == "" || IntKind == "IRQ" || IntKind == "FIQ" ||
2197       IntKind == "ABORT")
2198     LROffset = 4;
2199   else if (IntKind == "SWI" || IntKind == "UNDEF")
2200     LROffset = 0;
2201   else
2202     report_fatal_error("Unsupported interrupt attribute. If present, value "
2203                        "must be one of: IRQ, FIQ, SWI, ABORT or UNDEF");
2204
2205   RetOps.insert(RetOps.begin() + 1,
2206                 DAG.getConstant(LROffset, DL, MVT::i32, false));
2207
2208   return DAG.getNode(ARMISD::INTRET_FLAG, DL, MVT::Other, RetOps);
2209 }
2210
2211 SDValue
2212 ARMTargetLowering::LowerReturn(SDValue Chain,
2213                                CallingConv::ID CallConv, bool isVarArg,
2214                                const SmallVectorImpl<ISD::OutputArg> &Outs,
2215                                const SmallVectorImpl<SDValue> &OutVals,
2216                                SDLoc dl, SelectionDAG &DAG) const {
2217
2218   // CCValAssign - represent the assignment of the return value to a location.
2219   SmallVector<CCValAssign, 16> RVLocs;
2220
2221   // CCState - Info about the registers and stack slots.
2222   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
2223                     *DAG.getContext(), Call);
2224
2225   // Analyze outgoing return values.
2226   CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
2227                                                isVarArg));
2228
2229   SDValue Flag;
2230   SmallVector<SDValue, 4> RetOps;
2231   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
2232   bool isLittleEndian = Subtarget->isLittle();
2233
2234   MachineFunction &MF = DAG.getMachineFunction();
2235   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2236   AFI->setReturnRegsCount(RVLocs.size());
2237
2238   // Copy the result values into the output registers.
2239   for (unsigned i = 0, realRVLocIdx = 0;
2240        i != RVLocs.size();
2241        ++i, ++realRVLocIdx) {
2242     CCValAssign &VA = RVLocs[i];
2243     assert(VA.isRegLoc() && "Can only return in registers!");
2244
2245     SDValue Arg = OutVals[realRVLocIdx];
2246
2247     switch (VA.getLocInfo()) {
2248     default: llvm_unreachable("Unknown loc info!");
2249     case CCValAssign::Full: break;
2250     case CCValAssign::BCvt:
2251       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
2252       break;
2253     }
2254
2255     if (VA.needsCustom()) {
2256       if (VA.getLocVT() == MVT::v2f64) {
2257         // Extract the first half and return it in two registers.
2258         SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2259                                    DAG.getConstant(0, dl, MVT::i32));
2260         SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
2261                                        DAG.getVTList(MVT::i32, MVT::i32), Half);
2262
2263         Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2264                                  HalfGPRs.getValue(isLittleEndian ? 0 : 1),
2265                                  Flag);
2266         Flag = Chain.getValue(1);
2267         RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2268         VA = RVLocs[++i]; // skip ahead to next loc
2269         Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2270                                  HalfGPRs.getValue(isLittleEndian ? 1 : 0),
2271                                  Flag);
2272         Flag = Chain.getValue(1);
2273         RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2274         VA = RVLocs[++i]; // skip ahead to next loc
2275
2276         // Extract the 2nd half and fall through to handle it as an f64 value.
2277         Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2278                           DAG.getConstant(1, dl, MVT::i32));
2279       }
2280       // Legalize ret f64 -> ret 2 x i32.  We always have fmrrd if f64 is
2281       // available.
2282       SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
2283                                   DAG.getVTList(MVT::i32, MVT::i32), Arg);
2284       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2285                                fmrrd.getValue(isLittleEndian ? 0 : 1),
2286                                Flag);
2287       Flag = Chain.getValue(1);
2288       RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2289       VA = RVLocs[++i]; // skip ahead to next loc
2290       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2291                                fmrrd.getValue(isLittleEndian ? 1 : 0),
2292                                Flag);
2293     } else
2294       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
2295
2296     // Guarantee that all emitted copies are
2297     // stuck together, avoiding something bad.
2298     Flag = Chain.getValue(1);
2299     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2300   }
2301
2302   // Update chain and glue.
2303   RetOps[0] = Chain;
2304   if (Flag.getNode())
2305     RetOps.push_back(Flag);
2306
2307   // CPUs which aren't M-class use a special sequence to return from
2308   // exceptions (roughly, any instruction setting pc and cpsr simultaneously,
2309   // though we use "subs pc, lr, #N").
2310   //
2311   // M-class CPUs actually use a normal return sequence with a special
2312   // (hardware-provided) value in LR, so the normal code path works.
2313   if (DAG.getMachineFunction().getFunction()->hasFnAttribute("interrupt") &&
2314       !Subtarget->isMClass()) {
2315     if (Subtarget->isThumb1Only())
2316       report_fatal_error("interrupt attribute is not supported in Thumb1");
2317     return LowerInterruptReturn(RetOps, dl, DAG);
2318   }
2319
2320   return DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, RetOps);
2321 }
2322
2323 bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
2324   if (N->getNumValues() != 1)
2325     return false;
2326   if (!N->hasNUsesOfValue(1, 0))
2327     return false;
2328
2329   SDValue TCChain = Chain;
2330   SDNode *Copy = *N->use_begin();
2331   if (Copy->getOpcode() == ISD::CopyToReg) {
2332     // If the copy has a glue operand, we conservatively assume it isn't safe to
2333     // perform a tail call.
2334     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2335       return false;
2336     TCChain = Copy->getOperand(0);
2337   } else if (Copy->getOpcode() == ARMISD::VMOVRRD) {
2338     SDNode *VMov = Copy;
2339     // f64 returned in a pair of GPRs.
2340     SmallPtrSet<SDNode*, 2> Copies;
2341     for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2342          UI != UE; ++UI) {
2343       if (UI->getOpcode() != ISD::CopyToReg)
2344         return false;
2345       Copies.insert(*UI);
2346     }
2347     if (Copies.size() > 2)
2348       return false;
2349
2350     for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2351          UI != UE; ++UI) {
2352       SDValue UseChain = UI->getOperand(0);
2353       if (Copies.count(UseChain.getNode()))
2354         // Second CopyToReg
2355         Copy = *UI;
2356       else {
2357         // We are at the top of this chain.
2358         // If the copy has a glue operand, we conservatively assume it
2359         // isn't safe to perform a tail call.
2360         if (UI->getOperand(UI->getNumOperands()-1).getValueType() == MVT::Glue)
2361           return false;
2362         // First CopyToReg
2363         TCChain = UseChain;
2364       }
2365     }
2366   } else if (Copy->getOpcode() == ISD::BITCAST) {
2367     // f32 returned in a single GPR.
2368     if (!Copy->hasOneUse())
2369       return false;
2370     Copy = *Copy->use_begin();
2371     if (Copy->getOpcode() != ISD::CopyToReg || !Copy->hasNUsesOfValue(1, 0))
2372       return false;
2373     // If the copy has a glue operand, we conservatively assume it isn't safe to
2374     // perform a tail call.
2375     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2376       return false;
2377     TCChain = Copy->getOperand(0);
2378   } else {
2379     return false;
2380   }
2381
2382   bool HasRet = false;
2383   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2384        UI != UE; ++UI) {
2385     if (UI->getOpcode() != ARMISD::RET_FLAG &&
2386         UI->getOpcode() != ARMISD::INTRET_FLAG)
2387       return false;
2388     HasRet = true;
2389   }
2390
2391   if (!HasRet)
2392     return false;
2393
2394   Chain = TCChain;
2395   return true;
2396 }
2397
2398 bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2399   if (!Subtarget->supportsTailCall())
2400     return false;
2401
2402   auto Attr =
2403       CI->getParent()->getParent()->getFnAttribute("disable-tail-calls");
2404   if (!CI->isTailCall() || Attr.getValueAsString() == "true")
2405     return false;
2406
2407   return !Subtarget->isThumb1Only();
2408 }
2409
2410 // Trying to write a 64 bit value so need to split into two 32 bit values first,
2411 // and pass the lower and high parts through.
2412 static SDValue LowerWRITE_REGISTER(SDValue Op, SelectionDAG &DAG) {
2413   SDLoc DL(Op);
2414   SDValue WriteValue = Op->getOperand(2);
2415
2416   // This function is only supposed to be called for i64 type argument.
2417   assert(WriteValue.getValueType() == MVT::i64
2418           && "LowerWRITE_REGISTER called for non-i64 type argument.");
2419
2420   SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, WriteValue,
2421                            DAG.getConstant(0, DL, MVT::i32));
2422   SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, WriteValue,
2423                            DAG.getConstant(1, DL, MVT::i32));
2424   SDValue Ops[] = { Op->getOperand(0), Op->getOperand(1), Lo, Hi };
2425   return DAG.getNode(ISD::WRITE_REGISTER, DL, MVT::Other, Ops);
2426 }
2427
2428 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
2429 // their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
2430 // one of the above mentioned nodes. It has to be wrapped because otherwise
2431 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
2432 // be used to form addressing mode. These wrapped nodes will be selected
2433 // into MOVi.
2434 static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
2435   EVT PtrVT = Op.getValueType();
2436   // FIXME there is no actual debug info here
2437   SDLoc dl(Op);
2438   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
2439   SDValue Res;
2440   if (CP->isMachineConstantPoolEntry())
2441     Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
2442                                     CP->getAlignment());
2443   else
2444     Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
2445                                     CP->getAlignment());
2446   return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
2447 }
2448
2449 unsigned ARMTargetLowering::getJumpTableEncoding() const {
2450   return MachineJumpTableInfo::EK_Inline;
2451 }
2452
2453 SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op,
2454                                              SelectionDAG &DAG) const {
2455   MachineFunction &MF = DAG.getMachineFunction();
2456   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2457   unsigned ARMPCLabelIndex = 0;
2458   SDLoc DL(Op);
2459   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2460   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
2461   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2462   SDValue CPAddr;
2463   if (RelocM == Reloc::Static) {
2464     CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
2465   } else {
2466     unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2467     ARMPCLabelIndex = AFI->createPICLabelUId();
2468     ARMConstantPoolValue *CPV =
2469       ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex,
2470                                       ARMCP::CPBlockAddress, PCAdj);
2471     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2472   }
2473   CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
2474   SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
2475                                MachinePointerInfo::getConstantPool(),
2476                                false, false, false, 0);
2477   if (RelocM == Reloc::Static)
2478     return Result;
2479   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, DL, MVT::i32);
2480   return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
2481 }
2482
2483 // Lower ISD::GlobalTLSAddress using the "general dynamic" model
2484 SDValue
2485 ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
2486                                                  SelectionDAG &DAG) const {
2487   SDLoc dl(GA);
2488   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2489   unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2490   MachineFunction &MF = DAG.getMachineFunction();
2491   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2492   unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2493   ARMConstantPoolValue *CPV =
2494     ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2495                                     ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true);
2496   SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2497   Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
2498   Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
2499                          MachinePointerInfo::getConstantPool(),
2500                          false, false, false, 0);
2501   SDValue Chain = Argument.getValue(1);
2502
2503   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2504   Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
2505
2506   // call __tls_get_addr.
2507   ArgListTy Args;
2508   ArgListEntry Entry;
2509   Entry.Node = Argument;
2510   Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext());
2511   Args.push_back(Entry);
2512
2513   // FIXME: is there useful debug info available here?
2514   TargetLowering::CallLoweringInfo CLI(DAG);
2515   CLI.setDebugLoc(dl).setChain(Chain)
2516     .setCallee(CallingConv::C, Type::getInt32Ty(*DAG.getContext()),
2517                DAG.getExternalSymbol("__tls_get_addr", PtrVT), std::move(Args),
2518                0);
2519
2520   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
2521   return CallResult.first;
2522 }
2523
2524 // Lower ISD::GlobalTLSAddress using the "initial exec" or
2525 // "local exec" model.
2526 SDValue
2527 ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
2528                                         SelectionDAG &DAG,
2529                                         TLSModel::Model model) const {
2530   const GlobalValue *GV = GA->getGlobal();
2531   SDLoc dl(GA);
2532   SDValue Offset;
2533   SDValue Chain = DAG.getEntryNode();
2534   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2535   // Get the Thread Pointer
2536   SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2537
2538   if (model == TLSModel::InitialExec) {
2539     MachineFunction &MF = DAG.getMachineFunction();
2540     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2541     unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2542     // Initial exec model.
2543     unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2544     ARMConstantPoolValue *CPV =
2545       ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2546                                       ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF,
2547                                       true);
2548     Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2549     Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
2550     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2551                          MachinePointerInfo::getConstantPool(),
2552                          false, false, false, 0);
2553     Chain = Offset.getValue(1);
2554
2555     SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2556     Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
2557
2558     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2559                          MachinePointerInfo::getConstantPool(),
2560                          false, false, false, 0);
2561   } else {
2562     // local exec model
2563     assert(model == TLSModel::LocalExec);
2564     ARMConstantPoolValue *CPV =
2565       ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF);
2566     Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2567     Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
2568     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2569                          MachinePointerInfo::getConstantPool(),
2570                          false, false, false, 0);
2571   }
2572
2573   // The address of the thread local variable is the add of the thread
2574   // pointer with the offset of the variable.
2575   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
2576 }
2577
2578 SDValue
2579 ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
2580   // TODO: implement the "local dynamic" model
2581   assert(Subtarget->isTargetELF() &&
2582          "TLS not implemented for non-ELF targets");
2583   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
2584   if (DAG.getTarget().Options.EmulatedTLS)
2585     return LowerToTLSEmulatedModel(GA, DAG);
2586
2587   TLSModel::Model model = getTargetMachine().getTLSModel(GA->getGlobal());
2588
2589   switch (model) {
2590     case TLSModel::GeneralDynamic:
2591     case TLSModel::LocalDynamic:
2592       return LowerToTLSGeneralDynamicModel(GA, DAG);
2593     case TLSModel::InitialExec:
2594     case TLSModel::LocalExec:
2595       return LowerToTLSExecModels(GA, DAG, model);
2596   }
2597   llvm_unreachable("bogus TLS model");
2598 }
2599
2600 SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
2601                                                  SelectionDAG &DAG) const {
2602   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2603   SDLoc dl(Op);
2604   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2605   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2606     bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
2607     ARMConstantPoolValue *CPV =
2608       ARMConstantPoolConstant::Create(GV,
2609                                       UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT);
2610     SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2611     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2612     SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
2613                                  CPAddr,
2614                                  MachinePointerInfo::getConstantPool(),
2615                                  false, false, false, 0);
2616     SDValue Chain = Result.getValue(1);
2617     SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
2618     Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT);
2619     if (!UseGOTOFF)
2620       Result = DAG.getLoad(PtrVT, dl, Chain, Result,
2621                            MachinePointerInfo::getGOT(),
2622                            false, false, false, 0);
2623     return Result;
2624   }
2625
2626   // If we have T2 ops, we can materialize the address directly via movt/movw
2627   // pair. This is always cheaper.
2628   if (Subtarget->useMovt(DAG.getMachineFunction())) {
2629     ++NumMovwMovt;
2630     // FIXME: Once remat is capable of dealing with instructions with register
2631     // operands, expand this into two nodes.
2632     return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
2633                        DAG.getTargetGlobalAddress(GV, dl, PtrVT));
2634   } else {
2635     SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
2636     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2637     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2638                        MachinePointerInfo::getConstantPool(),
2639                        false, false, false, 0);
2640   }
2641 }
2642
2643 SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
2644                                                     SelectionDAG &DAG) const {
2645   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2646   SDLoc dl(Op);
2647   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2648   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2649
2650   if (Subtarget->useMovt(DAG.getMachineFunction()))
2651     ++NumMovwMovt;
2652
2653   // FIXME: Once remat is capable of dealing with instructions with register
2654   // operands, expand this into multiple nodes
2655   unsigned Wrapper =
2656       RelocM == Reloc::PIC_ ? ARMISD::WrapperPIC : ARMISD::Wrapper;
2657
2658   SDValue G = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, ARMII::MO_NONLAZY);
2659   SDValue Result = DAG.getNode(Wrapper, dl, PtrVT, G);
2660
2661   if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
2662     Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
2663                          MachinePointerInfo::getGOT(), false, false, false, 0);
2664   return Result;
2665 }
2666
2667 SDValue ARMTargetLowering::LowerGlobalAddressWindows(SDValue Op,
2668                                                      SelectionDAG &DAG) const {
2669   assert(Subtarget->isTargetWindows() && "non-Windows COFF is not supported");
2670   assert(Subtarget->useMovt(DAG.getMachineFunction()) &&
2671          "Windows on ARM expects to use movw/movt");
2672
2673   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2674   const ARMII::TOF TargetFlags =
2675     (GV->hasDLLImportStorageClass() ? ARMII::MO_DLLIMPORT : ARMII::MO_NO_FLAG);
2676   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2677   SDValue Result;
2678   SDLoc DL(Op);
2679
2680   ++NumMovwMovt;
2681
2682   // FIXME: Once remat is capable of dealing with instructions with register
2683   // operands, expand this into two nodes.
2684   Result = DAG.getNode(ARMISD::Wrapper, DL, PtrVT,
2685                        DAG.getTargetGlobalAddress(GV, DL, PtrVT, /*Offset=*/0,
2686                                                   TargetFlags));
2687   if (GV->hasDLLImportStorageClass())
2688     Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result,
2689                          MachinePointerInfo::getGOT(), false, false, false, 0);
2690   return Result;
2691 }
2692
2693 SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op,
2694                                                     SelectionDAG &DAG) const {
2695   assert(Subtarget->isTargetELF() &&
2696          "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
2697   MachineFunction &MF = DAG.getMachineFunction();
2698   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2699   unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2700   EVT PtrVT = getPointerTy(DAG.getDataLayout());
2701   SDLoc dl(Op);
2702   unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2703   ARMConstantPoolValue *CPV =
2704     ARMConstantPoolSymbol::Create(*DAG.getContext(), "_GLOBAL_OFFSET_TABLE_",
2705                                   ARMPCLabelIndex, PCAdj);
2706   SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2707   CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2708   SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2709                                MachinePointerInfo::getConstantPool(),
2710                                false, false, false, 0);
2711   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2712   return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2713 }
2714
2715 SDValue
2716 ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const {
2717   SDLoc dl(Op);
2718   SDValue Val = DAG.getConstant(0, dl, MVT::i32);
2719   return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl,
2720                      DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0),
2721                      Op.getOperand(1), Val);
2722 }
2723
2724 SDValue
2725 ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const {
2726   SDLoc dl(Op);
2727   return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0),
2728                      Op.getOperand(1), DAG.getConstant(0, dl, MVT::i32));
2729 }
2730
2731 SDValue ARMTargetLowering::LowerEH_SJLJ_SETUP_DISPATCH(SDValue Op,
2732                                                       SelectionDAG &DAG) const {
2733   SDLoc dl(Op);
2734   return DAG.getNode(ARMISD::EH_SJLJ_SETUP_DISPATCH, dl, MVT::Other,
2735                      Op.getOperand(0));
2736 }
2737
2738 SDValue
2739 ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
2740                                           const ARMSubtarget *Subtarget) const {
2741   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
2742   SDLoc dl(Op);
2743   switch (IntNo) {
2744   default: return SDValue();    // Don't custom lower most intrinsics.
2745   case Intrinsic::arm_rbit: {
2746     assert(Op.getOperand(1).getValueType() == MVT::i32 &&
2747            "RBIT intrinsic must have i32 type!");
2748     return DAG.getNode(ARMISD::RBIT, dl, MVT::i32, Op.getOperand(1));
2749   }
2750   case Intrinsic::arm_thread_pointer: {
2751     EVT PtrVT = getPointerTy(DAG.getDataLayout());
2752     return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2753   }
2754   case Intrinsic::eh_sjlj_lsda: {
2755     MachineFunction &MF = DAG.getMachineFunction();
2756     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2757     unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2758     EVT PtrVT = getPointerTy(DAG.getDataLayout());
2759     Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2760     SDValue CPAddr;
2761     unsigned PCAdj = (RelocM != Reloc::PIC_)
2762       ? 0 : (Subtarget->isThumb() ? 4 : 8);
2763     ARMConstantPoolValue *CPV =
2764       ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex,
2765                                       ARMCP::CPLSDA, PCAdj);
2766     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2767     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2768     SDValue Result =
2769       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2770                   MachinePointerInfo::getConstantPool(),
2771                   false, false, false, 0);
2772
2773     if (RelocM == Reloc::PIC_) {
2774       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32);
2775       Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2776     }
2777     return Result;
2778   }
2779   case Intrinsic::arm_neon_vmulls:
2780   case Intrinsic::arm_neon_vmullu: {
2781     unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls)
2782       ? ARMISD::VMULLs : ARMISD::VMULLu;
2783     return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
2784                        Op.getOperand(1), Op.getOperand(2));
2785   }
2786   }
2787 }
2788
2789 static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG,
2790                                  const ARMSubtarget *Subtarget) {
2791   // FIXME: handle "fence singlethread" more efficiently.
2792   SDLoc dl(Op);
2793   if (!Subtarget->hasDataBarrier()) {
2794     // Some ARMv6 cpus can support data barriers with an mcr instruction.
2795     // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
2796     // here.
2797     assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() &&
2798            "Unexpected ISD::ATOMIC_FENCE encountered. Should be libcall!");
2799     return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0),
2800                        DAG.getConstant(0, dl, MVT::i32));
2801   }
2802
2803   ConstantSDNode *OrdN = cast<ConstantSDNode>(Op.getOperand(1));
2804   AtomicOrdering Ord = static_cast<AtomicOrdering>(OrdN->getZExtValue());
2805   ARM_MB::MemBOpt Domain = ARM_MB::ISH;
2806   if (Subtarget->isMClass()) {
2807     // Only a full system barrier exists in the M-class architectures.
2808     Domain = ARM_MB::SY;
2809   } else if (Subtarget->isSwift() && Ord == Release) {
2810     // Swift happens to implement ISHST barriers in a way that's compatible with
2811     // Release semantics but weaker than ISH so we'd be fools not to use
2812     // it. Beware: other processors probably don't!
2813     Domain = ARM_MB::ISHST;
2814   }
2815
2816   return DAG.getNode(ISD::INTRINSIC_VOID, dl, MVT::Other, Op.getOperand(0),
2817                      DAG.getConstant(Intrinsic::arm_dmb, dl, MVT::i32),
2818                      DAG.getConstant(Domain, dl, MVT::i32));
2819 }
2820
2821 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG,
2822                              const ARMSubtarget *Subtarget) {
2823   // ARM pre v5TE and Thumb1 does not have preload instructions.
2824   if (!(Subtarget->isThumb2() ||
2825         (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps())))
2826     // Just preserve the chain.
2827     return Op.getOperand(0);
2828
2829   SDLoc dl(Op);
2830   unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1;
2831   if (!isRead &&
2832       (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension()))
2833     // ARMv7 with MP extension has PLDW.
2834     return Op.getOperand(0);
2835
2836   unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2837   if (Subtarget->isThumb()) {
2838     // Invert the bits.
2839     isRead = ~isRead & 1;
2840     isData = ~isData & 1;
2841   }
2842
2843   return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0),
2844                      Op.getOperand(1), DAG.getConstant(isRead, dl, MVT::i32),
2845                      DAG.getConstant(isData, dl, MVT::i32));
2846 }
2847
2848 static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) {
2849   MachineFunction &MF = DAG.getMachineFunction();
2850   ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>();
2851
2852   // vastart just stores the address of the VarArgsFrameIndex slot into the
2853   // memory location argument.
2854   SDLoc dl(Op);
2855   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout());
2856   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2857   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2858   return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2859                       MachinePointerInfo(SV), false, false, 0);
2860 }
2861
2862 SDValue
2863 ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
2864                                         SDValue &Root, SelectionDAG &DAG,
2865                                         SDLoc dl) const {
2866   MachineFunction &MF = DAG.getMachineFunction();
2867   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2868
2869   const TargetRegisterClass *RC;
2870   if (AFI->isThumb1OnlyFunction())
2871     RC = &ARM::tGPRRegClass;
2872   else
2873     RC = &ARM::GPRRegClass;
2874
2875   // Transform the arguments stored in physical registers into virtual ones.
2876   unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2877   SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
2878
2879   SDValue ArgValue2;
2880   if (NextVA.isMemLoc()) {
2881     MachineFrameInfo *MFI = MF.getFrameInfo();
2882     int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true);
2883
2884     // Create load node to retrieve arguments from the stack.
2885     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
2886     ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN,
2887                             MachinePointerInfo::getFixedStack(FI),
2888                             false, false, false, 0);
2889   } else {
2890     Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
2891     ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
2892   }
2893   if (!Subtarget->isLittle())
2894     std::swap (ArgValue, ArgValue2);
2895   return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
2896 }
2897
2898 // The remaining GPRs hold either the beginning of variable-argument
2899 // data, or the beginning of an aggregate passed by value (usually
2900 // byval).  Either way, we allocate stack slots adjacent to the data
2901 // provided by our caller, and store the unallocated registers there.
2902 // If this is a variadic function, the va_list pointer will begin with
2903 // these values; otherwise, this reassembles a (byval) structure that
2904 // was split between registers and memory.
2905 // Return: The frame index registers were stored into.
2906 int
2907 ARMTargetLowering::StoreByValRegs(CCState &CCInfo, SelectionDAG &DAG,
2908                                   SDLoc dl, SDValue &Chain,
2909                                   const Value *OrigArg,
2910                                   unsigned InRegsParamRecordIdx,
2911                                   int ArgOffset,
2912                                   unsigned ArgSize) const {
2913   // Currently, two use-cases possible:
2914   // Case #1. Non-var-args function, and we meet first byval parameter.
2915   //          Setup first unallocated register as first byval register;
2916   //          eat all remained registers
2917   //          (these two actions are performed by HandleByVal method).
2918   //          Then, here, we initialize stack frame with
2919   //          "store-reg" instructions.
2920   // Case #2. Var-args function, that doesn't contain byval parameters.
2921   //          The same: eat all remained unallocated registers,
2922   //          initialize stack frame.
2923
2924   MachineFunction &MF = DAG.getMachineFunction();
2925   MachineFrameInfo *MFI = MF.getFrameInfo();
2926   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2927   unsigned RBegin, REnd;
2928   if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
2929     CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
2930   } else {
2931     unsigned RBeginIdx = CCInfo.getFirstUnallocated(GPRArgRegs);
2932     RBegin = RBeginIdx == 4 ? (unsigned)ARM::R4 : GPRArgRegs[RBeginIdx];
2933     REnd = ARM::R4;
2934   }
2935
2936   if (REnd != RBegin)
2937     ArgOffset = -4 * (ARM::R4 - RBegin);
2938
2939   auto PtrVT = getPointerTy(DAG.getDataLayout());
2940   int FrameIndex = MFI->CreateFixedObject(ArgSize, ArgOffset, false);
2941   SDValue FIN = DAG.getFrameIndex(FrameIndex, PtrVT);
2942
2943   SmallVector<SDValue, 4> MemOps;
2944   const TargetRegisterClass *RC =
2945       AFI->isThumb1OnlyFunction() ? &ARM::tGPRRegClass : &ARM::GPRRegClass;
2946
2947   for (unsigned Reg = RBegin, i = 0; Reg < REnd; ++Reg, ++i) {
2948     unsigned VReg = MF.addLiveIn(Reg, RC);
2949     SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
2950     SDValue Store =
2951         DAG.getStore(Val.getValue(1), dl, Val, FIN,
2952                      MachinePointerInfo(OrigArg, 4 * i), false, false, 0);
2953     MemOps.push_back(Store);
2954     FIN = DAG.getNode(ISD::ADD, dl, PtrVT, FIN, DAG.getConstant(4, dl, PtrVT));
2955   }
2956
2957   if (!MemOps.empty())
2958     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2959   return FrameIndex;
2960 }
2961
2962 // Setup stack frame, the va_list pointer will start from.
2963 void
2964 ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG,
2965                                         SDLoc dl, SDValue &Chain,
2966                                         unsigned ArgOffset,
2967                                         unsigned TotalArgRegsSaveSize,
2968                                         bool ForceMutable) const {
2969   MachineFunction &MF = DAG.getMachineFunction();
2970   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2971
2972   // Try to store any remaining integer argument regs
2973   // to their spots on the stack so that they may be loaded by deferencing
2974   // the result of va_next.
2975   // If there is no regs to be stored, just point address after last
2976   // argument passed via stack.
2977   int FrameIndex = StoreByValRegs(CCInfo, DAG, dl, Chain, nullptr,
2978                                   CCInfo.getInRegsParamsCount(),
2979                                   CCInfo.getNextStackOffset(), 4);
2980   AFI->setVarArgsFrameIndex(FrameIndex);
2981 }
2982
2983 SDValue
2984 ARMTargetLowering::LowerFormalArguments(SDValue Chain,
2985                                         CallingConv::ID CallConv, bool isVarArg,
2986                                         const SmallVectorImpl<ISD::InputArg>
2987                                           &Ins,
2988                                         SDLoc dl, SelectionDAG &DAG,
2989                                         SmallVectorImpl<SDValue> &InVals)
2990                                           const {
2991   MachineFunction &MF = DAG.getMachineFunction();
2992   MachineFrameInfo *MFI = MF.getFrameInfo();
2993
2994   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2995
2996   // Assign locations to all of the incoming arguments.
2997   SmallVector<CCValAssign, 16> ArgLocs;
2998   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2999                     *DAG.getContext(), Prologue);
3000   CCInfo.AnalyzeFormalArguments(Ins,
3001                                 CCAssignFnForNode(CallConv, /* Return*/ false,
3002                                                   isVarArg));
3003
3004   SmallVector<SDValue, 16> ArgValues;
3005   SDValue ArgValue;
3006   Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
3007   unsigned CurArgIdx = 0;
3008
3009   // Initially ArgRegsSaveSize is zero.
3010   // Then we increase this value each time we meet byval parameter.
3011   // We also increase this value in case of varargs function.
3012   AFI->setArgRegsSaveSize(0);
3013
3014   // Calculate the amount of stack space that we need to allocate to store
3015   // byval and variadic arguments that are passed in registers.
3016   // We need to know this before we allocate the first byval or variadic
3017   // argument, as they will be allocated a stack slot below the CFA (Canonical
3018   // Frame Address, the stack pointer at entry to the function).
3019   unsigned ArgRegBegin = ARM::R4;
3020   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3021     if (CCInfo.getInRegsParamsProcessed() >= CCInfo.getInRegsParamsCount())
3022       break;
3023
3024     CCValAssign &VA = ArgLocs[i];
3025     unsigned Index = VA.getValNo();
3026     ISD::ArgFlagsTy Flags = Ins[Index].Flags;
3027     if (!Flags.isByVal())
3028       continue;
3029
3030     assert(VA.isMemLoc() && "unexpected byval pointer in reg");
3031     unsigned RBegin, REnd;
3032     CCInfo.getInRegsParamInfo(CCInfo.getInRegsParamsProcessed(), RBegin, REnd);
3033     ArgRegBegin = std::min(ArgRegBegin, RBegin);
3034
3035     CCInfo.nextInRegsParam();
3036   }
3037   CCInfo.rewindByValRegsInfo();
3038
3039   int lastInsIndex = -1;
3040   if (isVarArg && MFI->hasVAStart()) {
3041     unsigned RegIdx = CCInfo.getFirstUnallocated(GPRArgRegs);
3042     if (RegIdx != array_lengthof(GPRArgRegs))
3043       ArgRegBegin = std::min(ArgRegBegin, (unsigned)GPRArgRegs[RegIdx]);
3044   }
3045
3046   unsigned TotalArgRegsSaveSize = 4 * (ARM::R4 - ArgRegBegin);
3047   AFI->setArgRegsSaveSize(TotalArgRegsSaveSize);
3048   auto PtrVT = getPointerTy(DAG.getDataLayout());
3049
3050   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3051     CCValAssign &VA = ArgLocs[i];
3052     if (Ins[VA.getValNo()].isOrigArg()) {
3053       std::advance(CurOrigArg,
3054                    Ins[VA.getValNo()].getOrigArgIndex() - CurArgIdx);
3055       CurArgIdx = Ins[VA.getValNo()].getOrigArgIndex();
3056     }
3057     // Arguments stored in registers.
3058     if (VA.isRegLoc()) {
3059       EVT RegVT = VA.getLocVT();
3060
3061       if (VA.needsCustom()) {
3062         // f64 and vector types are split up into multiple registers or
3063         // combinations of registers and stack slots.
3064         if (VA.getLocVT() == MVT::v2f64) {
3065           SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
3066                                                    Chain, DAG, dl);
3067           VA = ArgLocs[++i]; // skip ahead to next loc
3068           SDValue ArgValue2;
3069           if (VA.isMemLoc()) {
3070             int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true);
3071             SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3072             ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN,
3073                                     MachinePointerInfo::getFixedStack(FI),
3074                                     false, false, false, 0);
3075           } else {
3076             ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
3077                                              Chain, DAG, dl);
3078           }
3079           ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
3080           ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
3081                                  ArgValue, ArgValue1,
3082                                  DAG.getIntPtrConstant(0, dl));
3083           ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
3084                                  ArgValue, ArgValue2,
3085                                  DAG.getIntPtrConstant(1, dl));
3086         } else
3087           ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
3088
3089       } else {
3090         const TargetRegisterClass *RC;
3091
3092         if (RegVT == MVT::f32)
3093           RC = &ARM::SPRRegClass;
3094         else if (RegVT == MVT::f64)
3095           RC = &ARM::DPRRegClass;
3096         else if (RegVT == MVT::v2f64)
3097           RC = &ARM::QPRRegClass;
3098         else if (RegVT == MVT::i32)
3099           RC = AFI->isThumb1OnlyFunction() ? &ARM::tGPRRegClass
3100                                            : &ARM::GPRRegClass;
3101         else
3102           llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
3103
3104         // Transform the arguments in physical registers into virtual ones.
3105         unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
3106         ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
3107       }
3108
3109       // If this is an 8 or 16-bit value, it is really passed promoted
3110       // to 32 bits.  Insert an assert[sz]ext to capture this, then
3111       // truncate to the right size.
3112       switch (VA.getLocInfo()) {
3113       default: llvm_unreachable("Unknown loc info!");
3114       case CCValAssign::Full: break;
3115       case CCValAssign::BCvt:
3116         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
3117         break;
3118       case CCValAssign::SExt:
3119         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
3120                                DAG.getValueType(VA.getValVT()));
3121         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3122         break;
3123       case CCValAssign::ZExt:
3124         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
3125                                DAG.getValueType(VA.getValVT()));
3126         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3127         break;
3128       }
3129
3130       InVals.push_back(ArgValue);
3131
3132     } else { // VA.isRegLoc()
3133
3134       // sanity check
3135       assert(VA.isMemLoc());
3136       assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
3137
3138       int index = VA.getValNo();
3139
3140       // Some Ins[] entries become multiple ArgLoc[] entries.
3141       // Process them only once.
3142       if (index != lastInsIndex)
3143         {
3144           ISD::ArgFlagsTy Flags = Ins[index].Flags;
3145           // FIXME: For now, all byval parameter objects are marked mutable.
3146           // This can be changed with more analysis.
3147           // In case of tail call optimization mark all arguments mutable.
3148           // Since they could be overwritten by lowering of arguments in case of
3149           // a tail call.
3150           if (Flags.isByVal()) {
3151             assert(Ins[index].isOrigArg() &&
3152                    "Byval arguments cannot be implicit");
3153             unsigned CurByValIndex = CCInfo.getInRegsParamsProcessed();
3154
3155             int FrameIndex = StoreByValRegs(CCInfo, DAG, dl, Chain, CurOrigArg,
3156                                             CurByValIndex, VA.getLocMemOffset(),
3157                                             Flags.getByValSize());
3158             InVals.push_back(DAG.getFrameIndex(FrameIndex, PtrVT));
3159             CCInfo.nextInRegsParam();
3160           } else {
3161             unsigned FIOffset = VA.getLocMemOffset();
3162             int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
3163                                             FIOffset, true);
3164
3165             // Create load nodes to retrieve arguments from the stack.
3166             SDValue FIN = DAG.getFrameIndex(FI, PtrVT);
3167             InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
3168                                          MachinePointerInfo::getFixedStack(FI),
3169                                          false, false, false, 0));
3170           }
3171           lastInsIndex = index;
3172         }
3173     }
3174   }
3175
3176   // varargs
3177   if (isVarArg && MFI->hasVAStart())
3178     VarArgStyleRegisters(CCInfo, DAG, dl, Chain,
3179                          CCInfo.getNextStackOffset(),
3180                          TotalArgRegsSaveSize);
3181
3182   AFI->setArgumentStackSize(CCInfo.getNextStackOffset());
3183
3184   return Chain;
3185 }
3186
3187 /// isFloatingPointZero - Return true if this is +0.0.
3188 static bool isFloatingPointZero(SDValue Op) {
3189   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
3190     return CFP->getValueAPF().isPosZero();
3191   else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
3192     // Maybe this has already been legalized into the constant pool?
3193     if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
3194       SDValue WrapperOp = Op.getOperand(1).getOperand(0);
3195       if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
3196         if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
3197           return CFP->getValueAPF().isPosZero();
3198     }
3199   } else if (Op->getOpcode() == ISD::BITCAST &&
3200              Op->getValueType(0) == MVT::f64) {
3201     // Handle (ISD::BITCAST (ARMISD::VMOVIMM (ISD::TargetConstant 0)) MVT::f64)
3202     // created by LowerConstantFP().
3203     SDValue BitcastOp = Op->getOperand(0);
3204     if (BitcastOp->getOpcode() == ARMISD::VMOVIMM) {
3205       SDValue MoveOp = BitcastOp->getOperand(0);
3206       if (MoveOp->getOpcode() == ISD::TargetConstant &&
3207           cast<ConstantSDNode>(MoveOp)->getZExtValue() == 0) {
3208         return true;
3209       }
3210     }
3211   }
3212   return false;
3213 }
3214
3215 /// Returns appropriate ARM CMP (cmp) and corresponding condition code for
3216 /// the given operands.
3217 SDValue
3218 ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
3219                              SDValue &ARMcc, SelectionDAG &DAG,
3220                              SDLoc dl) const {
3221   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
3222     unsigned C = RHSC->getZExtValue();
3223     if (!isLegalICmpImmediate(C)) {
3224       // Constant does not fit, try adjusting it by one?
3225       switch (CC) {
3226       default: break;
3227       case ISD::SETLT:
3228       case ISD::SETGE:
3229         if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
3230           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
3231           RHS = DAG.getConstant(C - 1, dl, MVT::i32);
3232         }
3233         break;
3234       case ISD::SETULT:
3235       case ISD::SETUGE:
3236         if (C != 0 && isLegalICmpImmediate(C-1)) {
3237           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
3238           RHS = DAG.getConstant(C - 1, dl, MVT::i32);
3239         }
3240         break;
3241       case ISD::SETLE:
3242       case ISD::SETGT:
3243         if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
3244           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
3245           RHS = DAG.getConstant(C + 1, dl, MVT::i32);
3246         }
3247         break;
3248       case ISD::SETULE:
3249       case ISD::SETUGT:
3250         if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
3251           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
3252           RHS = DAG.getConstant(C + 1, dl, MVT::i32);
3253         }
3254         break;
3255       }
3256     }
3257   }
3258
3259   ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3260   ARMISD::NodeType CompareType;
3261   switch (CondCode) {
3262   default:
3263     CompareType = ARMISD::CMP;
3264     break;
3265   case ARMCC::EQ:
3266   case ARMCC::NE:
3267     // Uses only Z Flag
3268     CompareType = ARMISD::CMPZ;
3269     break;
3270   }
3271   ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
3272   return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS);
3273 }
3274
3275 /// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
3276 SDValue
3277 ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
3278                              SDLoc dl) const {
3279   assert(!Subtarget->isFPOnlySP() || RHS.getValueType() != MVT::f64);
3280   SDValue Cmp;
3281   if (!isFloatingPointZero(RHS))
3282     Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS);
3283   else
3284     Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS);
3285   return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp);
3286 }
3287
3288 /// duplicateCmp - Glue values can have only one use, so this function
3289 /// duplicates a comparison node.
3290 SDValue
3291 ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const {
3292   unsigned Opc = Cmp.getOpcode();
3293   SDLoc DL(Cmp);
3294   if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ)
3295     return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3296
3297   assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation");
3298   Cmp = Cmp.getOperand(0);
3299   Opc = Cmp.getOpcode();
3300   if (Opc == ARMISD::CMPFP)
3301     Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3302   else {
3303     assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT");
3304     Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0));
3305   }
3306   return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp);
3307 }
3308
3309 std::pair<SDValue, SDValue>
3310 ARMTargetLowering::getARMXALUOOp(SDValue Op, SelectionDAG &DAG,
3311                                  SDValue &ARMcc) const {
3312   assert(Op.getValueType() == MVT::i32 &&  "Unsupported value type");
3313
3314   SDValue Value, OverflowCmp;
3315   SDValue LHS = Op.getOperand(0);
3316   SDValue RHS = Op.getOperand(1);
3317   SDLoc dl(Op);
3318
3319   // FIXME: We are currently always generating CMPs because we don't support
3320   // generating CMN through the backend. This is not as good as the natural
3321   // CMP case because it causes a register dependency and cannot be folded
3322   // later.
3323
3324   switch (Op.getOpcode()) {
3325   default:
3326     llvm_unreachable("Unknown overflow instruction!");
3327   case ISD::SADDO:
3328     ARMcc = DAG.getConstant(ARMCC::VC, dl, MVT::i32);
3329     Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS);
3330     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS);
3331     break;
3332   case ISD::UADDO:
3333     ARMcc = DAG.getConstant(ARMCC::HS, dl, MVT::i32);
3334     Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS);
3335     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS);
3336     break;
3337   case ISD::SSUBO:
3338     ARMcc = DAG.getConstant(ARMCC::VC, dl, MVT::i32);
3339     Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS);
3340     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, LHS, RHS);
3341     break;
3342   case ISD::USUBO:
3343     ARMcc = DAG.getConstant(ARMCC::HS, dl, MVT::i32);
3344     Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS);
3345     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, LHS, RHS);
3346     break;
3347   } // switch (...)
3348
3349   return std::make_pair(Value, OverflowCmp);
3350 }
3351
3352
3353 SDValue
3354 ARMTargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
3355   // Let legalize expand this if it isn't a legal type yet.
3356   if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
3357     return SDValue();
3358
3359   SDValue Value, OverflowCmp;
3360   SDValue ARMcc;
3361   std::tie(Value, OverflowCmp) = getARMXALUOOp(Op, DAG, ARMcc);
3362   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3363   SDLoc dl(Op);
3364   // We use 0 and 1 as false and true values.
3365   SDValue TVal = DAG.getConstant(1, dl, MVT::i32);
3366   SDValue FVal = DAG.getConstant(0, dl, MVT::i32);
3367   EVT VT = Op.getValueType();
3368
3369   SDValue Overflow = DAG.getNode(ARMISD::CMOV, dl, VT, TVal, FVal,
3370                                  ARMcc, CCR, OverflowCmp);
3371
3372   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
3373   return DAG.getNode(ISD::MERGE_VALUES, dl, VTs, Value, Overflow);
3374 }
3375
3376
3377 SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
3378   SDValue Cond = Op.getOperand(0);
3379   SDValue SelectTrue = Op.getOperand(1);
3380   SDValue SelectFalse = Op.getOperand(2);
3381   SDLoc dl(Op);
3382   unsigned Opc = Cond.getOpcode();
3383
3384   if (Cond.getResNo() == 1 &&
3385       (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
3386        Opc == ISD::USUBO)) {
3387     if (!DAG.getTargetLoweringInfo().isTypeLegal(Cond->getValueType(0)))
3388       return SDValue();
3389
3390     SDValue Value, OverflowCmp;
3391     SDValue ARMcc;
3392     std::tie(Value, OverflowCmp) = getARMXALUOOp(Cond, DAG, ARMcc);
3393     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3394     EVT VT = Op.getValueType();
3395
3396     return getCMOV(dl, VT, SelectTrue, SelectFalse, ARMcc, CCR,
3397                    OverflowCmp, DAG);
3398   }
3399
3400   // Convert:
3401   //
3402   //   (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond)
3403   //   (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond)
3404   //
3405   if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) {
3406     const ConstantSDNode *CMOVTrue =
3407       dyn_cast<ConstantSDNode>(Cond.getOperand(0));
3408     const ConstantSDNode *CMOVFalse =
3409       dyn_cast<ConstantSDNode>(Cond.getOperand(1));
3410
3411     if (CMOVTrue && CMOVFalse) {
3412       unsigned CMOVTrueVal = CMOVTrue->getZExtValue();
3413       unsigned CMOVFalseVal = CMOVFalse->getZExtValue();
3414
3415       SDValue True;
3416       SDValue False;
3417       if (CMOVTrueVal == 1 && CMOVFalseVal == 0) {
3418         True = SelectTrue;
3419         False = SelectFalse;
3420       } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) {
3421         True = SelectFalse;
3422         False = SelectTrue;
3423       }
3424
3425       if (True.getNode() && False.getNode()) {
3426         EVT VT = Op.getValueType();
3427         SDValue ARMcc = Cond.getOperand(2);
3428         SDValue CCR = Cond.getOperand(3);
3429         SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG);
3430         assert(True.getValueType() == VT);
3431         return getCMOV(dl, VT, True, False, ARMcc, CCR, Cmp, DAG);
3432       }
3433     }
3434   }
3435
3436   // ARM's BooleanContents value is UndefinedBooleanContent. Mask out the
3437   // undefined bits before doing a full-word comparison with zero.
3438   Cond = DAG.getNode(ISD::AND, dl, Cond.getValueType(), Cond,
3439                      DAG.getConstant(1, dl, Cond.getValueType()));
3440
3441   return DAG.getSelectCC(dl, Cond,
3442                          DAG.getConstant(0, dl, Cond.getValueType()),
3443                          SelectTrue, SelectFalse, ISD::SETNE);
3444 }
3445
3446 static void checkVSELConstraints(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
3447                                  bool &swpCmpOps, bool &swpVselOps) {
3448   // Start by selecting the GE condition code for opcodes that return true for
3449   // 'equality'
3450   if (CC == ISD::SETUGE || CC == ISD::SETOGE || CC == ISD::SETOLE ||
3451       CC == ISD::SETULE)
3452     CondCode = ARMCC::GE;
3453
3454   // and GT for opcodes that return false for 'equality'.
3455   else if (CC == ISD::SETUGT || CC == ISD::SETOGT || CC == ISD::SETOLT ||
3456            CC == ISD::SETULT)
3457     CondCode = ARMCC::GT;
3458
3459   // Since we are constrained to GE/GT, if the opcode contains 'less', we need
3460   // to swap the compare operands.
3461   if (CC == ISD::SETOLE || CC == ISD::SETULE || CC == ISD::SETOLT ||
3462       CC == ISD::SETULT)
3463     swpCmpOps = true;
3464
3465   // Both GT and GE are ordered comparisons, and return false for 'unordered'.
3466   // If we have an unordered opcode, we need to swap the operands to the VSEL
3467   // instruction (effectively negating the condition).
3468   //
3469   // This also has the effect of swapping which one of 'less' or 'greater'
3470   // returns true, so we also swap the compare operands. It also switches
3471   // whether we return true for 'equality', so we compensate by picking the
3472   // opposite condition code to our original choice.
3473   if (CC == ISD::SETULE || CC == ISD::SETULT || CC == ISD::SETUGE ||
3474       CC == ISD::SETUGT) {
3475     swpCmpOps = !swpCmpOps;
3476     swpVselOps = !swpVselOps;
3477     CondCode = CondCode == ARMCC::GT ? ARMCC::GE : ARMCC::GT;
3478   }
3479
3480   // 'ordered' is 'anything but unordered', so use the VS condition code and
3481   // swap the VSEL operands.
3482   if (CC == ISD::SETO) {
3483     CondCode = ARMCC::VS;
3484     swpVselOps = true;
3485   }
3486
3487   // 'unordered or not equal' is 'anything but equal', so use the EQ condition
3488   // code and swap the VSEL operands.
3489   if (CC == ISD::SETUNE) {
3490     CondCode = ARMCC::EQ;
3491     swpVselOps = true;
3492   }
3493 }
3494
3495 SDValue ARMTargetLowering::getCMOV(SDLoc dl, EVT VT, SDValue FalseVal,
3496                                    SDValue TrueVal, SDValue ARMcc, SDValue CCR,
3497                                    SDValue Cmp, SelectionDAG &DAG) const {
3498   if (Subtarget->isFPOnlySP() && VT == MVT::f64) {
3499     FalseVal = DAG.getNode(ARMISD::VMOVRRD, dl,
3500                            DAG.getVTList(MVT::i32, MVT::i32), FalseVal);
3501     TrueVal = DAG.getNode(ARMISD::VMOVRRD, dl,
3502                           DAG.getVTList(MVT::i32, MVT::i32), TrueVal);
3503
3504     SDValue TrueLow = TrueVal.getValue(0);
3505     SDValue TrueHigh = TrueVal.getValue(1);
3506     SDValue FalseLow = FalseVal.getValue(0);
3507     SDValue FalseHigh = FalseVal.getValue(1);
3508
3509     SDValue Low = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseLow, TrueLow,
3510                               ARMcc, CCR, Cmp);
3511     SDValue High = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseHigh, TrueHigh,
3512                                ARMcc, CCR, duplicateCmp(Cmp, DAG));
3513
3514     return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Low, High);
3515   } else {
3516     return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,
3517                        Cmp);
3518   }
3519 }
3520
3521 SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
3522   EVT VT = Op.getValueType();
3523   SDValue LHS = Op.getOperand(0);
3524   SDValue RHS = Op.getOperand(1);
3525   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
3526   SDValue TrueVal = Op.getOperand(2);
3527   SDValue FalseVal = Op.getOperand(3);
3528   SDLoc dl(Op);
3529
3530   if (Subtarget->isFPOnlySP() && LHS.getValueType() == MVT::f64) {
3531     DAG.getTargetLoweringInfo().softenSetCCOperands(DAG, MVT::f64, LHS, RHS, CC,
3532                                                     dl);
3533
3534     // If softenSetCCOperands only returned one value, we should compare it to
3535     // zero.
3536     if (!RHS.getNode()) {
3537       RHS = DAG.getConstant(0, dl, LHS.getValueType());
3538       CC = ISD::SETNE;
3539     }
3540   }
3541
3542   if (LHS.getValueType() == MVT::i32) {
3543     // Try to generate VSEL on ARMv8.
3544     // The VSEL instruction can't use all the usual ARM condition
3545     // codes: it only has two bits to select the condition code, so it's
3546     // constrained to use only GE, GT, VS and EQ.
3547     //
3548     // To implement all the various ISD::SETXXX opcodes, we sometimes need to
3549     // swap the operands of the previous compare instruction (effectively
3550     // inverting the compare condition, swapping 'less' and 'greater') and
3551     // sometimes need to swap the operands to the VSEL (which inverts the
3552     // condition in the sense of firing whenever the previous condition didn't)
3553     if (Subtarget->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3554                                     TrueVal.getValueType() == MVT::f64)) {
3555       ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3556       if (CondCode == ARMCC::LT || CondCode == ARMCC::LE ||
3557           CondCode == ARMCC::VC || CondCode == ARMCC::NE) {
3558         CC = ISD::getSetCCInverse(CC, true);
3559         std::swap(TrueVal, FalseVal);
3560       }
3561     }
3562
3563     SDValue ARMcc;
3564     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3565     SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3566     return getCMOV(dl, VT, FalseVal, TrueVal, ARMcc, CCR, Cmp, DAG);
3567   }
3568
3569   ARMCC::CondCodes CondCode, CondCode2;
3570   FPCCToARMCC(CC, CondCode, CondCode2);
3571
3572   // Try to generate VMAXNM/VMINNM on ARMv8.
3573   if (Subtarget->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3574                                   TrueVal.getValueType() == MVT::f64)) {
3575     // We can use VMAXNM/VMINNM for a compare followed by a select with the
3576     // same operands, as follows:
3577     //   c = fcmp [?gt, ?ge, ?lt, ?le] a, b
3578     //   select c, a, b
3579     // In NoNaNsFPMath the CC will have been changed from, e.g., 'ogt' to 'gt'.
3580     bool swapSides = false;
3581     if (!getTargetMachine().Options.NoNaNsFPMath) {
3582       // transformability may depend on which way around we compare
3583       switch (CC) {
3584       default:
3585         break;
3586       case ISD::SETOGT:
3587       case ISD::SETOGE:
3588       case ISD::SETOLT:
3589       case ISD::SETOLE:
3590         // the non-NaN should be RHS
3591         swapSides = DAG.isKnownNeverNaN(LHS) && !DAG.isKnownNeverNaN(RHS);
3592         break;
3593       case ISD::SETUGT:
3594       case ISD::SETUGE:
3595       case ISD::SETULT:
3596       case ISD::SETULE:
3597         // the non-NaN should be LHS
3598         swapSides = DAG.isKnownNeverNaN(RHS) && !DAG.isKnownNeverNaN(LHS);
3599         break;
3600       }
3601     }
3602     swapSides = swapSides || (LHS == FalseVal && RHS == TrueVal);
3603     if (swapSides) {
3604       CC = ISD::getSetCCSwappedOperands(CC);
3605       std::swap(LHS, RHS);
3606     }
3607     if (LHS == TrueVal && RHS == FalseVal) {
3608       bool canTransform = true;
3609       // FIXME: FastMathFlags::noSignedZeros() doesn't appear reachable from here
3610       if (!getTargetMachine().Options.UnsafeFPMath &&
3611           !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
3612         const ConstantFPSDNode *Zero;
3613         switch (CC) {
3614         default:
3615           break;
3616         case ISD::SETOGT:
3617         case ISD::SETUGT:
3618         case ISD::SETGT:
3619           // RHS must not be -0
3620           canTransform = (Zero = dyn_cast<ConstantFPSDNode>(RHS)) &&
3621                          !Zero->isNegative();
3622           break;
3623         case ISD::SETOGE:
3624         case ISD::SETUGE:
3625         case ISD::SETGE:
3626           // LHS must not be -0
3627           canTransform = (Zero = dyn_cast<ConstantFPSDNode>(LHS)) &&
3628                          !Zero->isNegative();
3629           break;
3630         case ISD::SETOLT:
3631         case ISD::SETULT:
3632         case ISD::SETLT:
3633           // RHS must not be +0
3634           canTransform = (Zero = dyn_cast<ConstantFPSDNode>(RHS)) &&
3635                           Zero->isNegative();
3636           break;
3637         case ISD::SETOLE:
3638         case ISD::SETULE:
3639         case ISD::SETLE:
3640           // LHS must not be +0
3641           canTransform = (Zero = dyn_cast<ConstantFPSDNode>(LHS)) &&
3642                           Zero->isNegative();
3643           break;
3644         }
3645       }
3646       if (canTransform) {
3647         // Note: If one of the elements in a pair is a number and the other
3648         // element is NaN, the corresponding result element is the number.
3649         // This is consistent with the IEEE 754-2008 standard.
3650         // Therefore, a > b ? a : b <=> vmax(a,b), if b is constant and a is NaN
3651         switch (CC) {
3652         default:
3653           break;
3654         case ISD::SETOGT:
3655         case ISD::SETOGE:
3656           if (!DAG.isKnownNeverNaN(RHS))
3657             break;
3658           return DAG.getNode(ARMISD::VMAXNM, dl, VT, LHS, RHS);
3659         case ISD::SETUGT:
3660         case ISD::SETUGE:
3661           if (!DAG.isKnownNeverNaN(LHS))
3662             break;
3663         case ISD::SETGT:
3664         case ISD::SETGE:
3665           return DAG.getNode(ARMISD::VMAXNM, dl, VT, LHS, RHS);
3666         case ISD::SETOLT:
3667         case ISD::SETOLE:
3668           if (!DAG.isKnownNeverNaN(RHS))
3669             break;
3670           return DAG.getNode(ARMISD::VMINNM, dl, VT, LHS, RHS);
3671         case ISD::SETULT:
3672         case ISD::SETULE:
3673           if (!DAG.isKnownNeverNaN(LHS))
3674             break;
3675         case ISD::SETLT:
3676         case ISD::SETLE:
3677           return DAG.getNode(ARMISD::VMINNM, dl, VT, LHS, RHS);
3678         }
3679       }
3680     }
3681
3682     bool swpCmpOps = false;
3683     bool swpVselOps = false;
3684     checkVSELConstraints(CC, CondCode, swpCmpOps, swpVselOps);
3685
3686     if (CondCode == ARMCC::GT || CondCode == ARMCC::GE ||
3687         CondCode == ARMCC::VS || CondCode == ARMCC::EQ) {
3688       if (swpCmpOps)
3689         std::swap(LHS, RHS);
3690       if (swpVselOps)
3691         std::swap(TrueVal, FalseVal);
3692     }
3693   }
3694
3695   SDValue ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
3696   SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
3697   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3698   SDValue Result = getCMOV(dl, VT, FalseVal, TrueVal, ARMcc, CCR, Cmp, DAG);
3699   if (CondCode2 != ARMCC::AL) {
3700     SDValue ARMcc2 = DAG.getConstant(CondCode2, dl, MVT::i32);
3701     // FIXME: Needs another CMP because flag can have but one use.
3702     SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
3703     Result = getCMOV(dl, VT, Result, TrueVal, ARMcc2, CCR, Cmp2, DAG);
3704   }
3705   return Result;
3706 }
3707
3708 /// canChangeToInt - Given the fp compare operand, return true if it is suitable
3709 /// to morph to an integer compare sequence.
3710 static bool canChangeToInt(SDValue Op, bool &SeenZero,
3711                            const ARMSubtarget *Subtarget) {
3712   SDNode *N = Op.getNode();
3713   if (!N->hasOneUse())
3714     // Otherwise it requires moving the value from fp to integer registers.
3715     return false;
3716   if (!N->getNumValues())
3717     return false;
3718   EVT VT = Op.getValueType();
3719   if (VT != MVT::f32 && !Subtarget->isFPBrccSlow())
3720     // f32 case is generally profitable. f64 case only makes sense when vcmpe +
3721     // vmrs are very slow, e.g. cortex-a8.
3722     return false;
3723
3724   if (isFloatingPointZero(Op)) {
3725     SeenZero = true;
3726     return true;
3727   }
3728   return ISD::isNormalLoad(N);
3729 }
3730
3731 static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) {
3732   if (isFloatingPointZero(Op))
3733     return DAG.getConstant(0, SDLoc(Op), MVT::i32);
3734
3735   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op))
3736     return DAG.getLoad(MVT::i32, SDLoc(Op),
3737                        Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(),
3738                        Ld->isVolatile(), Ld->isNonTemporal(),
3739                        Ld->isInvariant(), Ld->getAlignment());
3740
3741   llvm_unreachable("Unknown VFP cmp argument!");
3742 }
3743
3744 static void expandf64Toi32(SDValue Op, SelectionDAG &DAG,
3745                            SDValue &RetVal1, SDValue &RetVal2) {
3746   SDLoc dl(Op);
3747
3748   if (isFloatingPointZero(Op)) {
3749     RetVal1 = DAG.getConstant(0, dl, MVT::i32);
3750     RetVal2 = DAG.getConstant(0, dl, MVT::i32);
3751     return;
3752   }
3753
3754   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) {
3755     SDValue Ptr = Ld->getBasePtr();
3756     RetVal1 = DAG.getLoad(MVT::i32, dl,
3757                           Ld->getChain(), Ptr,
3758                           Ld->getPointerInfo(),
3759                           Ld->isVolatile(), Ld->isNonTemporal(),
3760                           Ld->isInvariant(), Ld->getAlignment());
3761
3762     EVT PtrType = Ptr.getValueType();
3763     unsigned NewAlign = MinAlign(Ld->getAlignment(), 4);
3764     SDValue NewPtr = DAG.getNode(ISD::ADD, dl,
3765                                  PtrType, Ptr, DAG.getConstant(4, dl, PtrType));
3766     RetVal2 = DAG.getLoad(MVT::i32, dl,
3767                           Ld->getChain(), NewPtr,
3768                           Ld->getPointerInfo().getWithOffset(4),
3769                           Ld->isVolatile(), Ld->isNonTemporal(),
3770                           Ld->isInvariant(), NewAlign);
3771     return;
3772   }
3773
3774   llvm_unreachable("Unknown VFP cmp argument!");
3775 }
3776
3777 /// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some
3778 /// f32 and even f64 comparisons to integer ones.
3779 SDValue
3780 ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
3781   SDValue Chain = Op.getOperand(0);
3782   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3783   SDValue LHS = Op.getOperand(2);
3784   SDValue RHS = Op.getOperand(3);
3785   SDValue Dest = Op.getOperand(4);
3786   SDLoc dl(Op);
3787
3788   bool LHSSeenZero = false;
3789   bool LHSOk = canChangeToInt(LHS, LHSSeenZero, Subtarget);
3790   bool RHSSeenZero = false;
3791   bool RHSOk = canChangeToInt(RHS, RHSSeenZero, Subtarget);
3792   if (LHSOk && RHSOk && (LHSSeenZero || RHSSeenZero)) {
3793     // If unsafe fp math optimization is enabled and there are no other uses of
3794     // the CMP operands, and the condition code is EQ or NE, we can optimize it
3795     // to an integer comparison.
3796     if (CC == ISD::SETOEQ)
3797       CC = ISD::SETEQ;
3798     else if (CC == ISD::SETUNE)
3799       CC = ISD::SETNE;
3800
3801     SDValue Mask = DAG.getConstant(0x7fffffff, dl, MVT::i32);
3802     SDValue ARMcc;
3803     if (LHS.getValueType() == MVT::f32) {
3804       LHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3805                         bitcastf32Toi32(LHS, DAG), Mask);
3806       RHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3807                         bitcastf32Toi32(RHS, DAG), Mask);
3808       SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3809       SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3810       return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3811                          Chain, Dest, ARMcc, CCR, Cmp);
3812     }
3813
3814     SDValue LHS1, LHS2;
3815     SDValue RHS1, RHS2;
3816     expandf64Toi32(LHS, DAG, LHS1, LHS2);
3817     expandf64Toi32(RHS, DAG, RHS1, RHS2);
3818     LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask);
3819     RHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, RHS2, Mask);
3820     ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3821     ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
3822     SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3823     SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest };
3824     return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops);
3825   }
3826
3827   return SDValue();
3828 }
3829
3830 SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3831   SDValue Chain = Op.getOperand(0);
3832   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3833   SDValue LHS = Op.getOperand(2);
3834   SDValue RHS = Op.getOperand(3);
3835   SDValue Dest = Op.getOperand(4);
3836   SDLoc dl(Op);
3837
3838   if (Subtarget->isFPOnlySP() && LHS.getValueType() == MVT::f64) {
3839     DAG.getTargetLoweringInfo().softenSetCCOperands(DAG, MVT::f64, LHS, RHS, CC,
3840                                                     dl);
3841
3842     // If softenSetCCOperands only returned one value, we should compare it to
3843     // zero.
3844     if (!RHS.getNode()) {
3845       RHS = DAG.getConstant(0, dl, LHS.getValueType());
3846       CC = ISD::SETNE;
3847     }
3848   }
3849
3850   if (LHS.getValueType() == MVT::i32) {
3851     SDValue ARMcc;
3852     SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3853     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3854     return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3855                        Chain, Dest, ARMcc, CCR, Cmp);
3856   }
3857
3858   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3859
3860   if (getTargetMachine().Options.UnsafeFPMath &&
3861       (CC == ISD::SETEQ || CC == ISD::SETOEQ ||
3862        CC == ISD::SETNE || CC == ISD::SETUNE)) {
3863     SDValue Result = OptimizeVFPBrcond(Op, DAG);
3864     if (Result.getNode())
3865       return Result;
3866   }
3867
3868   ARMCC::CondCodes CondCode, CondCode2;
3869   FPCCToARMCC(CC, CondCode, CondCode2);
3870
3871   SDValue ARMcc = DAG.getConstant(CondCode, dl, MVT::i32);
3872   SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
3873   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3874   SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3875   SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp };
3876   SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
3877   if (CondCode2 != ARMCC::AL) {
3878     ARMcc = DAG.getConstant(CondCode2, dl, MVT::i32);
3879     SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) };
3880     Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
3881   }
3882   return Res;
3883 }
3884
3885 SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
3886   SDValue Chain = Op.getOperand(0);
3887   SDValue Table = Op.getOperand(1);
3888   SDValue Index = Op.getOperand(2);
3889   SDLoc dl(Op);
3890
3891   EVT PTy = getPointerTy(DAG.getDataLayout());
3892   JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
3893   SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
3894   Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI);
3895   Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, dl, PTy));
3896   SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3897   if (Subtarget->isThumb2()) {
3898     // Thumb2 uses a two-level jump. That is, it jumps into the jump table
3899     // which does another jump to the destination. This also makes it easier
3900     // to translate it to TBB / TBH later.
3901     // FIXME: This might not work if the function is extremely large.
3902     return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
3903                        Addr, Op.getOperand(2), JTI);
3904   }
3905   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
3906     Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
3907                        MachinePointerInfo::getJumpTable(),
3908                        false, false, false, 0);
3909     Chain = Addr.getValue(1);
3910     Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
3911     return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI);
3912   } else {
3913     Addr = DAG.getLoad(PTy, dl, Chain, Addr,
3914                        MachinePointerInfo::getJumpTable(),
3915                        false, false, false, 0);
3916     Chain = Addr.getValue(1);
3917     return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI);
3918   }
3919 }
3920
3921 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
3922   EVT VT = Op.getValueType();
3923   SDLoc dl(Op);
3924
3925   if (Op.getValueType().getVectorElementType() == MVT::i32) {
3926     if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::f32)
3927       return Op;
3928     return DAG.UnrollVectorOp(Op.getNode());
3929   }
3930
3931   assert(Op.getOperand(0).getValueType() == MVT::v4f32 &&
3932          "Invalid type for custom lowering!");
3933   if (VT != MVT::v4i16)
3934     return DAG.UnrollVectorOp(Op.getNode());
3935
3936   Op = DAG.getNode(Op.getOpcode(), dl, MVT::v4i32, Op.getOperand(0));
3937   return DAG.getNode(ISD::TRUNCATE, dl, VT, Op);
3938 }
3939
3940 SDValue ARMTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) const {
3941   EVT VT = Op.getValueType();
3942   if (VT.isVector())
3943     return LowerVectorFP_TO_INT(Op, DAG);
3944   if (Subtarget->isFPOnlySP() && Op.getOperand(0).getValueType() == MVT::f64) {
3945     RTLIB::Libcall LC;
3946     if (Op.getOpcode() == ISD::FP_TO_SINT)
3947       LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(),
3948                               Op.getValueType());
3949     else
3950       LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(),
3951                               Op.getValueType());
3952     return makeLibCall(DAG, LC, Op.getValueType(), &Op.getOperand(0), 1,
3953                        /*isSigned*/ false, SDLoc(Op)).first;
3954   }
3955
3956   return Op;
3957 }
3958
3959 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3960   EVT VT = Op.getValueType();
3961   SDLoc dl(Op);
3962
3963   if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::i32) {
3964     if (VT.getVectorElementType() == MVT::f32)
3965       return Op;
3966     return DAG.UnrollVectorOp(Op.getNode());
3967   }
3968
3969   assert(Op.getOperand(0).getValueType() == MVT::v4i16 &&
3970          "Invalid type for custom lowering!");
3971   if (VT != MVT::v4f32)
3972     return DAG.UnrollVectorOp(Op.getNode());
3973
3974   unsigned CastOpc;
3975   unsigned Opc;
3976   switch (Op.getOpcode()) {
3977   default: llvm_unreachable("Invalid opcode!");
3978   case ISD::SINT_TO_FP:
3979     CastOpc = ISD::SIGN_EXTEND;
3980     Opc = ISD::SINT_TO_FP;
3981     break;
3982   case ISD::UINT_TO_FP:
3983     CastOpc = ISD::ZERO_EXTEND;
3984     Opc = ISD::UINT_TO_FP;
3985     break;
3986   }
3987
3988   Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0));
3989   return DAG.getNode(Opc, dl, VT, Op);
3990 }
3991
3992 SDValue ARMTargetLowering::LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) const {
3993   EVT VT = Op.getValueType();
3994   if (VT.isVector())
3995     return LowerVectorINT_TO_FP(Op, DAG);
3996   if (Subtarget->isFPOnlySP() && Op.getValueType() == MVT::f64) {
3997     RTLIB::Libcall LC;
3998     if (Op.getOpcode() == ISD::SINT_TO_FP)
3999       LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(),
4000                               Op.getValueType());
4001     else
4002       LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(),
4003                               Op.getValueType());
4004     return makeLibCall(DAG, LC, Op.getValueType(), &Op.getOperand(0), 1,
4005                        /*isSigned*/ false, SDLoc(Op)).first;
4006   }
4007
4008   return Op;
4009 }
4010
4011 SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
4012   // Implement fcopysign with a fabs and a conditional fneg.
4013   SDValue Tmp0 = Op.getOperand(0);
4014   SDValue Tmp1 = Op.getOperand(1);
4015   SDLoc dl(Op);
4016   EVT VT = Op.getValueType();
4017   EVT SrcVT = Tmp1.getValueType();
4018   bool InGPR = Tmp0.getOpcode() == ISD::BITCAST ||
4019     Tmp0.getOpcode() == ARMISD::VMOVDRR;
4020   bool UseNEON = !InGPR && Subtarget->hasNEON();
4021
4022   if (UseNEON) {
4023     // Use VBSL to copy the sign bit.
4024     unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80);
4025     SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32,
4026                                DAG.getTargetConstant(EncodedVal, dl, MVT::i32));
4027     EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64;
4028     if (VT == MVT::f64)
4029       Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT,
4030                          DAG.getNode(ISD::BITCAST, dl, OpVT, Mask),
4031                          DAG.getConstant(32, dl, MVT::i32));
4032     else /*if (VT == MVT::f32)*/
4033       Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0);
4034     if (SrcVT == MVT::f32) {
4035       Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1);
4036       if (VT == MVT::f64)
4037         Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT,
4038                            DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1),
4039                            DAG.getConstant(32, dl, MVT::i32));
4040     } else if (VT == MVT::f32)
4041       Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64,
4042                          DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1),
4043                          DAG.getConstant(32, dl, MVT::i32));
4044     Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0);
4045     Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1);
4046
4047     SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff),
4048                                             dl, MVT::i32);
4049     AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes);
4050     SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask,
4051                                   DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes));
4052
4053     SDValue Res = DAG.getNode(ISD::OR, dl, OpVT,
4054                               DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask),
4055                               DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot));
4056     if (VT == MVT::f32) {
4057       Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res);
4058       Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res,
4059                         DAG.getConstant(0, dl, MVT::i32));
4060     } else {
4061       Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res);
4062     }
4063
4064     return Res;
4065   }
4066
4067   // Bitcast operand 1 to i32.
4068   if (SrcVT == MVT::f64)
4069     Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
4070                        Tmp1).getValue(1);
4071   Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1);
4072
4073   // Or in the signbit with integer operations.
4074   SDValue Mask1 = DAG.getConstant(0x80000000, dl, MVT::i32);
4075   SDValue Mask2 = DAG.getConstant(0x7fffffff, dl, MVT::i32);
4076   Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1);
4077   if (VT == MVT::f32) {
4078     Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32,
4079                        DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2);
4080     return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
4081                        DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1));
4082   }
4083
4084   // f64: Or the high part with signbit and then combine two parts.
4085   Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
4086                      Tmp0);
4087   SDValue Lo = Tmp0.getValue(0);
4088   SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2);
4089   Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1);
4090   return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
4091 }
4092
4093 SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{
4094   MachineFunction &MF = DAG.getMachineFunction();
4095   MachineFrameInfo *MFI = MF.getFrameInfo();
4096   MFI->setReturnAddressIsTaken(true);
4097
4098   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
4099     return SDValue();
4100
4101   EVT VT = Op.getValueType();
4102   SDLoc dl(Op);
4103   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4104   if (Depth) {
4105     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
4106     SDValue Offset = DAG.getConstant(4, dl, MVT::i32);
4107     return DAG.getLoad(VT, dl, DAG.getEntryNode(),
4108                        DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
4109                        MachinePointerInfo(), false, false, false, 0);
4110   }
4111
4112   // Return LR, which contains the return address. Mark it an implicit live-in.
4113   unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32));
4114   return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
4115 }
4116
4117 SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
4118   const ARMBaseRegisterInfo &ARI =
4119     *static_cast<const ARMBaseRegisterInfo*>(RegInfo);
4120   MachineFunction &MF = DAG.getMachineFunction();
4121   MachineFrameInfo *MFI = MF.getFrameInfo();
4122   MFI->setFrameAddressIsTaken(true);
4123
4124   EVT VT = Op.getValueType();
4125   SDLoc dl(Op);  // FIXME probably not meaningful
4126   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4127   unsigned FrameReg = ARI.getFrameRegister(MF);
4128   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
4129   while (Depth--)
4130     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
4131                             MachinePointerInfo(),
4132                             false, false, false, 0);
4133   return FrameAddr;
4134 }
4135
4136 // FIXME? Maybe this could be a TableGen attribute on some registers and
4137 // this table could be generated automatically from RegInfo.
4138 unsigned ARMTargetLowering::getRegisterByName(const char* RegName, EVT VT,
4139                                               SelectionDAG &DAG) const {
4140   unsigned Reg = StringSwitch<unsigned>(RegName)
4141                        .Case("sp", ARM::SP)
4142                        .Default(0);
4143   if (Reg)
4144     return Reg;
4145   report_fatal_error(Twine("Invalid register name \""
4146                               + StringRef(RegName)  + "\"."));
4147 }
4148
4149 // Result is 64 bit value so split into two 32 bit values and return as a
4150 // pair of values.
4151 static void ExpandREAD_REGISTER(SDNode *N, SmallVectorImpl<SDValue> &Results,
4152                                 SelectionDAG &DAG) {
4153   SDLoc DL(N);
4154
4155   // This function is only supposed to be called for i64 type destination.
4156   assert(N->getValueType(0) == MVT::i64
4157           && "ExpandREAD_REGISTER called for non-i64 type result.");
4158
4159   SDValue Read = DAG.getNode(ISD::READ_REGISTER, DL,
4160                              DAG.getVTList(MVT::i32, MVT::i32, MVT::Other),
4161                              N->getOperand(0),
4162                              N->getOperand(1));
4163
4164   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Read.getValue(0),
4165                     Read.getValue(1)));
4166   Results.push_back(Read.getOperand(0));
4167 }
4168
4169 /// ExpandBITCAST - If the target supports VFP, this function is called to
4170 /// expand a bit convert where either the source or destination type is i64 to
4171 /// use a VMOVDRR or VMOVRRD node.  This should not be done when the non-i64
4172 /// operand type is illegal (e.g., v2f32 for a target that doesn't support
4173 /// vectors), since the legalizer won't know what to do with that.
4174 static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) {
4175   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
4176   SDLoc dl(N);
4177   SDValue Op = N->getOperand(0);
4178
4179   // This function is only supposed to be called for i64 types, either as the
4180   // source or destination of the bit convert.
4181   EVT SrcVT = Op.getValueType();
4182   EVT DstVT = N->getValueType(0);
4183   assert((SrcVT == MVT::i64 || DstVT == MVT::i64) &&
4184          "ExpandBITCAST called for non-i64 type");
4185
4186   // Turn i64->f64 into VMOVDRR.
4187   if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) {
4188     SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
4189                              DAG.getConstant(0, dl, MVT::i32));
4190     SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
4191                              DAG.getConstant(1, dl, MVT::i32));
4192     return DAG.getNode(ISD::BITCAST, dl, DstVT,
4193                        DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi));
4194   }
4195
4196   // Turn f64->i64 into VMOVRRD.
4197   if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) {
4198     SDValue Cvt;
4199     if (DAG.getDataLayout().isBigEndian() && SrcVT.isVector() &&
4200         SrcVT.getVectorNumElements() > 1)
4201       Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
4202                         DAG.getVTList(MVT::i32, MVT::i32),
4203                         DAG.getNode(ARMISD::VREV64, dl, SrcVT, Op));
4204     else
4205       Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
4206                         DAG.getVTList(MVT::i32, MVT::i32), Op);
4207     // Merge the pieces into a single i64 value.
4208     return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
4209   }
4210
4211   return SDValue();
4212 }
4213
4214 /// getZeroVector - Returns a vector of specified type with all zero elements.
4215 /// Zero vectors are used to represent vector negation and in those cases
4216 /// will be implemented with the NEON VNEG instruction.  However, VNEG does
4217 /// not support i64 elements, so sometimes the zero vectors will need to be
4218 /// explicitly constructed.  Regardless, use a canonical VMOV to create the
4219 /// zero vector.
4220 static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, SDLoc dl) {
4221   assert(VT.isVector() && "Expected a vector type");
4222   // The canonical modified immediate encoding of a zero vector is....0!
4223   SDValue EncodedVal = DAG.getTargetConstant(0, dl, MVT::i32);
4224   EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
4225   SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal);
4226   return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
4227 }
4228
4229 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
4230 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
4231 SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op,
4232                                                 SelectionDAG &DAG) const {
4233   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4234   EVT VT = Op.getValueType();
4235   unsigned VTBits = VT.getSizeInBits();
4236   SDLoc dl(Op);
4237   SDValue ShOpLo = Op.getOperand(0);
4238   SDValue ShOpHi = Op.getOperand(1);
4239   SDValue ShAmt  = Op.getOperand(2);
4240   SDValue ARMcc;
4241   unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
4242
4243   assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
4244
4245   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
4246                                  DAG.getConstant(VTBits, dl, MVT::i32), ShAmt);
4247   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
4248   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
4249                                    DAG.getConstant(VTBits, dl, MVT::i32));
4250   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
4251   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4252   SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
4253
4254   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
4255   SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, dl, MVT::i32),
4256                           ISD::SETGE, ARMcc, DAG, dl);
4257   SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
4258   SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc,
4259                            CCR, Cmp);
4260
4261   SDValue Ops[2] = { Lo, Hi };
4262   return DAG.getMergeValues(Ops, dl);
4263 }
4264
4265 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
4266 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
4267 SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op,
4268                                                SelectionDAG &DAG) const {
4269   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4270   EVT VT = Op.getValueType();
4271   unsigned VTBits = VT.getSizeInBits();
4272   SDLoc dl(Op);
4273   SDValue ShOpLo = Op.getOperand(0);
4274   SDValue ShOpHi = Op.getOperand(1);
4275   SDValue ShAmt  = Op.getOperand(2);
4276   SDValue ARMcc;
4277
4278   assert(Op.getOpcode() == ISD::SHL_PARTS);
4279   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
4280                                  DAG.getConstant(VTBits, dl, MVT::i32), ShAmt);
4281   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
4282   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
4283                                    DAG.getConstant(VTBits, dl, MVT::i32));
4284   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
4285   SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
4286
4287   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4288   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
4289   SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, dl, MVT::i32),
4290                           ISD::SETGE, ARMcc, DAG, dl);
4291   SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
4292   SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc,
4293                            CCR, Cmp);
4294
4295   SDValue Ops[2] = { Lo, Hi };
4296   return DAG.getMergeValues(Ops, dl);
4297 }
4298
4299 SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
4300                                             SelectionDAG &DAG) const {
4301   // The rounding mode is in bits 23:22 of the FPSCR.
4302   // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0
4303   // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3)
4304   // so that the shift + and get folded into a bitfield extract.
4305   SDLoc dl(Op);
4306   SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32,
4307                               DAG.getConstant(Intrinsic::arm_get_fpscr, dl,
4308                                               MVT::i32));
4309   SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR,
4310                                   DAG.getConstant(1U << 22, dl, MVT::i32));
4311   SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds,
4312                               DAG.getConstant(22, dl, MVT::i32));
4313   return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE,
4314                      DAG.getConstant(3, dl, MVT::i32));
4315 }
4316
4317 static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG,
4318                          const ARMSubtarget *ST) {
4319   SDLoc dl(N);
4320   EVT VT = N->getValueType(0);
4321   if (VT.isVector()) {
4322     assert(ST->hasNEON());
4323
4324     // Compute the least significant set bit: LSB = X & -X
4325     SDValue X = N->getOperand(0);
4326     SDValue NX = DAG.getNode(ISD::SUB, dl, VT, getZeroVector(VT, DAG, dl), X);
4327     SDValue LSB = DAG.getNode(ISD::AND, dl, VT, X, NX);
4328
4329     EVT ElemTy = VT.getVectorElementType();
4330
4331     if (ElemTy == MVT::i8) {
4332       // Compute with: cttz(x) = ctpop(lsb - 1)
4333       SDValue One = DAG.getNode(ARMISD::VMOVIMM, dl, VT,
4334                                 DAG.getTargetConstant(1, dl, ElemTy));
4335       SDValue Bits = DAG.getNode(ISD::SUB, dl, VT, LSB, One);
4336       return DAG.getNode(ISD::CTPOP, dl, VT, Bits);
4337     }
4338
4339     if ((ElemTy == MVT::i16 || ElemTy == MVT::i32) &&
4340         (N->getOpcode() == ISD::CTTZ_ZERO_UNDEF)) {
4341       // Compute with: cttz(x) = (width - 1) - ctlz(lsb), if x != 0
4342       unsigned NumBits = ElemTy.getSizeInBits();
4343       SDValue WidthMinus1 =
4344           DAG.getNode(ARMISD::VMOVIMM, dl, VT,
4345                       DAG.getTargetConstant(NumBits - 1, dl, ElemTy));
4346       SDValue CTLZ = DAG.getNode(ISD::CTLZ, dl, VT, LSB);
4347       return DAG.getNode(ISD::SUB, dl, VT, WidthMinus1, CTLZ);
4348     }
4349
4350     // Compute with: cttz(x) = ctpop(lsb - 1)
4351
4352     // Since we can only compute the number of bits in a byte with vcnt.8, we
4353     // have to gather the result with pairwise addition (vpaddl) for i16, i32,
4354     // and i64.
4355
4356     // Compute LSB - 1.
4357     SDValue Bits;
4358     if (ElemTy == MVT::i64) {
4359       // Load constant 0xffff'ffff'ffff'ffff to register.
4360       SDValue FF = DAG.getNode(ARMISD::VMOVIMM, dl, VT,
4361                                DAG.getTargetConstant(0x1eff, dl, MVT::i32));
4362       Bits = DAG.getNode(ISD::ADD, dl, VT, LSB, FF);
4363     } else {
4364       SDValue One = DAG.getNode(ARMISD::VMOVIMM, dl, VT,
4365                                 DAG.getTargetConstant(1, dl, ElemTy));
4366       Bits = DAG.getNode(ISD::SUB, dl, VT, LSB, One);
4367     }
4368
4369     // Count #bits with vcnt.8.
4370     EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8;
4371     SDValue BitsVT8 = DAG.getNode(ISD::BITCAST, dl, VT8Bit, Bits);
4372     SDValue Cnt8 = DAG.getNode(ISD::CTPOP, dl, VT8Bit, BitsVT8);
4373
4374     // Gather the #bits with vpaddl (pairwise add.)
4375     EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16;
4376     SDValue Cnt16 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT16Bit,
4377         DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32),
4378         Cnt8);
4379     if (ElemTy == MVT::i16)
4380       return Cnt16;
4381
4382     EVT VT32Bit = VT.is64BitVector() ? MVT::v2i32 : MVT::v4i32;
4383     SDValue Cnt32 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT32Bit,
4384         DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32),
4385         Cnt16);
4386     if (ElemTy == MVT::i32)
4387       return Cnt32;
4388
4389     assert(ElemTy == MVT::i64);
4390     SDValue Cnt64 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4391         DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32),
4392         Cnt32);
4393     return Cnt64;
4394   }
4395
4396   if (!ST->hasV6T2Ops())
4397     return SDValue();
4398
4399   SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0));
4400   return DAG.getNode(ISD::CTLZ, dl, VT, rbit);
4401 }
4402
4403 /// getCTPOP16BitCounts - Returns a v8i8/v16i8 vector containing the bit-count
4404 /// for each 16-bit element from operand, repeated.  The basic idea is to
4405 /// leverage vcnt to get the 8-bit counts, gather and add the results.
4406 ///
4407 /// Trace for v4i16:
4408 /// input    = [v0    v1    v2    v3   ] (vi 16-bit element)
4409 /// cast: N0 = [w0 w1 w2 w3 w4 w5 w6 w7] (v0 = [w0 w1], wi 8-bit element)
4410 /// vcnt: N1 = [b0 b1 b2 b3 b4 b5 b6 b7] (bi = bit-count of 8-bit element wi)
4411 /// vrev: N2 = [b1 b0 b3 b2 b5 b4 b7 b6]
4412 ///            [b0 b1 b2 b3 b4 b5 b6 b7]
4413 ///           +[b1 b0 b3 b2 b5 b4 b7 b6]
4414 /// N3=N1+N2 = [k0 k0 k1 k1 k2 k2 k3 k3] (k0 = b0+b1 = bit-count of 16-bit v0,
4415 /// vuzp:    = [k0 k1 k2 k3 k0 k1 k2 k3]  each ki is 8-bits)
4416 static SDValue getCTPOP16BitCounts(SDNode *N, SelectionDAG &DAG) {
4417   EVT VT = N->getValueType(0);
4418   SDLoc DL(N);
4419
4420   EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8;
4421   SDValue N0 = DAG.getNode(ISD::BITCAST, DL, VT8Bit, N->getOperand(0));
4422   SDValue N1 = DAG.getNode(ISD::CTPOP, DL, VT8Bit, N0);
4423   SDValue N2 = DAG.getNode(ARMISD::VREV16, DL, VT8Bit, N1);
4424   SDValue N3 = DAG.getNode(ISD::ADD, DL, VT8Bit, N1, N2);
4425   return DAG.getNode(ARMISD::VUZP, DL, VT8Bit, N3, N3);
4426 }
4427
4428 /// lowerCTPOP16BitElements - Returns a v4i16/v8i16 vector containing the
4429 /// bit-count for each 16-bit element from the operand.  We need slightly
4430 /// different sequencing for v4i16 and v8i16 to stay within NEON's available
4431 /// 64/128-bit registers.
4432 ///
4433 /// Trace for v4i16:
4434 /// input           = [v0    v1    v2    v3    ] (vi 16-bit element)
4435 /// v8i8: BitCounts = [k0 k1 k2 k3 k0 k1 k2 k3 ] (ki is the bit-count of vi)
4436 /// v8i16:Extended  = [k0    k1    k2    k3    k0    k1    k2    k3    ]
4437 /// v4i16:Extracted = [k0    k1    k2    k3    ]
4438 static SDValue lowerCTPOP16BitElements(SDNode *N, SelectionDAG &DAG) {
4439   EVT VT = N->getValueType(0);
4440   SDLoc DL(N);
4441
4442   SDValue BitCounts = getCTPOP16BitCounts(N, DAG);
4443   if (VT.is64BitVector()) {
4444     SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, BitCounts);
4445     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, Extended,
4446                        DAG.getIntPtrConstant(0, DL));
4447   } else {
4448     SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v8i8,
4449                                     BitCounts, DAG.getIntPtrConstant(0, DL));
4450     return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, Extracted);
4451   }
4452 }
4453
4454 /// lowerCTPOP32BitElements - Returns a v2i32/v4i32 vector containing the
4455 /// bit-count for each 32-bit element from the operand.  The idea here is
4456 /// to split the vector into 16-bit elements, leverage the 16-bit count
4457 /// routine, and then combine the results.
4458 ///
4459 /// Trace for v2i32 (v4i32 similar with Extracted/Extended exchanged):
4460 /// input    = [v0    v1    ] (vi: 32-bit elements)
4461 /// Bitcast  = [w0 w1 w2 w3 ] (wi: 16-bit elements, v0 = [w0 w1])
4462 /// Counts16 = [k0 k1 k2 k3 ] (ki: 16-bit elements, bit-count of wi)
4463 /// vrev: N0 = [k1 k0 k3 k2 ]
4464 ///            [k0 k1 k2 k3 ]
4465 ///       N1 =+[k1 k0 k3 k2 ]
4466 ///            [k0 k2 k1 k3 ]
4467 ///       N2 =+[k1 k3 k0 k2 ]
4468 ///            [k0    k2    k1    k3    ]
4469 /// Extended =+[k1    k3    k0    k2    ]
4470 ///            [k0    k2    ]
4471 /// Extracted=+[k1    k3    ]
4472 ///
4473 static SDValue lowerCTPOP32BitElements(SDNode *N, SelectionDAG &DAG) {
4474   EVT VT = N->getValueType(0);
4475   SDLoc DL(N);
4476
4477   EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16;
4478
4479   SDValue Bitcast = DAG.getNode(ISD::BITCAST, DL, VT16Bit, N->getOperand(0));
4480   SDValue Counts16 = lowerCTPOP16BitElements(Bitcast.getNode(), DAG);
4481   SDValue N0 = DAG.getNode(ARMISD::VREV32, DL, VT16Bit, Counts16);
4482   SDValue N1 = DAG.getNode(ISD::ADD, DL, VT16Bit, Counts16, N0);
4483   SDValue N2 = DAG.getNode(ARMISD::VUZP, DL, VT16Bit, N1, N1);
4484
4485   if (VT.is64BitVector()) {
4486     SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, N2);
4487     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i32, Extended,
4488                        DAG.getIntPtrConstant(0, DL));
4489   } else {
4490     SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, N2,
4491                                     DAG.getIntPtrConstant(0, DL));
4492     return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, Extracted);
4493   }
4494 }
4495
4496 static SDValue LowerCTPOP(SDNode *N, SelectionDAG &DAG,
4497                           const ARMSubtarget *ST) {
4498   EVT VT = N->getValueType(0);
4499
4500   assert(ST->hasNEON() && "Custom ctpop lowering requires NEON.");
4501   assert((VT == MVT::v2i32 || VT == MVT::v4i32 ||
4502           VT == MVT::v4i16 || VT == MVT::v8i16) &&
4503          "Unexpected type for custom ctpop lowering");
4504
4505   if (VT.getVectorElementType() == MVT::i32)
4506     return lowerCTPOP32BitElements(N, DAG);
4507   else
4508     return lowerCTPOP16BitElements(N, DAG);
4509 }
4510
4511 static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
4512                           const ARMSubtarget *ST) {
4513   EVT VT = N->getValueType(0);
4514   SDLoc dl(N);
4515
4516   if (!VT.isVector())
4517     return SDValue();
4518
4519   // Lower vector shifts on NEON to use VSHL.
4520   assert(ST->hasNEON() && "unexpected vector shift");
4521
4522   // Left shifts translate directly to the vshiftu intrinsic.
4523   if (N->getOpcode() == ISD::SHL)
4524     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4525                        DAG.getConstant(Intrinsic::arm_neon_vshiftu, dl,
4526                                        MVT::i32),
4527                        N->getOperand(0), N->getOperand(1));
4528
4529   assert((N->getOpcode() == ISD::SRA ||
4530           N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
4531
4532   // NEON uses the same intrinsics for both left and right shifts.  For
4533   // right shifts, the shift amounts are negative, so negate the vector of
4534   // shift amounts.
4535   EVT ShiftVT = N->getOperand(1).getValueType();
4536   SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
4537                                      getZeroVector(ShiftVT, DAG, dl),
4538                                      N->getOperand(1));
4539   Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
4540                              Intrinsic::arm_neon_vshifts :
4541                              Intrinsic::arm_neon_vshiftu);
4542   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4543                      DAG.getConstant(vshiftInt, dl, MVT::i32),
4544                      N->getOperand(0), NegatedCount);
4545 }
4546
4547 static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG,
4548                                 const ARMSubtarget *ST) {
4549   EVT VT = N->getValueType(0);
4550   SDLoc dl(N);
4551
4552   // We can get here for a node like i32 = ISD::SHL i32, i64
4553   if (VT != MVT::i64)
4554     return SDValue();
4555
4556   assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
4557          "Unknown shift to lower!");
4558
4559   // We only lower SRA, SRL of 1 here, all others use generic lowering.
4560   if (!isa<ConstantSDNode>(N->getOperand(1)) ||
4561       cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1)
4562     return SDValue();
4563
4564   // If we are in thumb mode, we don't have RRX.
4565   if (ST->isThumb1Only()) return SDValue();
4566
4567   // Okay, we have a 64-bit SRA or SRL of 1.  Lower this to an RRX expr.
4568   SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
4569                            DAG.getConstant(0, dl, MVT::i32));
4570   SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
4571                            DAG.getConstant(1, dl, MVT::i32));
4572
4573   // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
4574   // captures the result into a carry flag.
4575   unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
4576   Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), Hi);
4577
4578   // The low part is an ARMISD::RRX operand, which shifts the carry in.
4579   Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
4580
4581   // Merge the pieces into a single i64 value.
4582  return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
4583 }
4584
4585 static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
4586   SDValue TmpOp0, TmpOp1;
4587   bool Invert = false;
4588   bool Swap = false;
4589   unsigned Opc = 0;
4590
4591   SDValue Op0 = Op.getOperand(0);
4592   SDValue Op1 = Op.getOperand(1);
4593   SDValue CC = Op.getOperand(2);
4594   EVT CmpVT = Op0.getValueType().changeVectorElementTypeToInteger();
4595   EVT VT = Op.getValueType();
4596   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
4597   SDLoc dl(Op);
4598
4599   if (Op1.getValueType().isFloatingPoint()) {
4600     switch (SetCCOpcode) {
4601     default: llvm_unreachable("Illegal FP comparison");
4602     case ISD::SETUNE:
4603     case ISD::SETNE:  Invert = true; // Fallthrough
4604     case ISD::SETOEQ:
4605     case ISD::SETEQ:  Opc = ARMISD::VCEQ; break;
4606     case ISD::SETOLT:
4607     case ISD::SETLT: Swap = true; // Fallthrough
4608     case ISD::SETOGT:
4609     case ISD::SETGT:  Opc = ARMISD::VCGT; break;
4610     case ISD::SETOLE:
4611     case ISD::SETLE:  Swap = true; // Fallthrough
4612     case ISD::SETOGE:
4613     case ISD::SETGE: Opc = ARMISD::VCGE; break;
4614     case ISD::SETUGE: Swap = true; // Fallthrough
4615     case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
4616     case ISD::SETUGT: Swap = true; // Fallthrough
4617     case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
4618     case ISD::SETUEQ: Invert = true; // Fallthrough
4619     case ISD::SETONE:
4620       // Expand this to (OLT | OGT).
4621       TmpOp0 = Op0;
4622       TmpOp1 = Op1;
4623       Opc = ISD::OR;
4624       Op0 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp1, TmpOp0);
4625       Op1 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp0, TmpOp1);
4626       break;
4627     case ISD::SETUO: Invert = true; // Fallthrough
4628     case ISD::SETO:
4629       // Expand this to (OLT | OGE).
4630       TmpOp0 = Op0;
4631       TmpOp1 = Op1;
4632       Opc = ISD::OR;
4633       Op0 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp1, TmpOp0);
4634       Op1 = DAG.getNode(ARMISD::VCGE, dl, CmpVT, TmpOp0, TmpOp1);
4635       break;
4636     }
4637   } else {
4638     // Integer comparisons.
4639     switch (SetCCOpcode) {
4640     default: llvm_unreachable("Illegal integer comparison");
4641     case ISD::SETNE:  Invert = true;
4642     case ISD::SETEQ:  Opc = ARMISD::VCEQ; break;
4643     case ISD::SETLT:  Swap = true;
4644     case ISD::SETGT:  Opc = ARMISD::VCGT; break;
4645     case ISD::SETLE:  Swap = true;
4646     case ISD::SETGE:  Opc = ARMISD::VCGE; break;
4647     case ISD::SETULT: Swap = true;
4648     case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
4649     case ISD::SETULE: Swap = true;
4650     case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
4651     }
4652
4653     // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
4654     if (Opc == ARMISD::VCEQ) {
4655
4656       SDValue AndOp;
4657       if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4658         AndOp = Op0;
4659       else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
4660         AndOp = Op1;
4661
4662       // Ignore bitconvert.
4663       if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST)
4664         AndOp = AndOp.getOperand(0);
4665
4666       if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
4667         Opc = ARMISD::VTST;
4668         Op0 = DAG.getNode(ISD::BITCAST, dl, CmpVT, AndOp.getOperand(0));
4669         Op1 = DAG.getNode(ISD::BITCAST, dl, CmpVT, AndOp.getOperand(1));
4670         Invert = !Invert;
4671       }
4672     }
4673   }
4674
4675   if (Swap)
4676     std::swap(Op0, Op1);
4677
4678   // If one of the operands is a constant vector zero, attempt to fold the
4679   // comparison to a specialized compare-against-zero form.
4680   SDValue SingleOp;
4681   if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4682     SingleOp = Op0;
4683   else if (ISD::isBuildVectorAllZeros(Op0.getNode())) {
4684     if (Opc == ARMISD::VCGE)
4685       Opc = ARMISD::VCLEZ;
4686     else if (Opc == ARMISD::VCGT)
4687       Opc = ARMISD::VCLTZ;
4688     SingleOp = Op1;
4689   }
4690
4691   SDValue Result;
4692   if (SingleOp.getNode()) {
4693     switch (Opc) {
4694     case ARMISD::VCEQ:
4695       Result = DAG.getNode(ARMISD::VCEQZ, dl, CmpVT, SingleOp); break;
4696     case ARMISD::VCGE:
4697       Result = DAG.getNode(ARMISD::VCGEZ, dl, CmpVT, SingleOp); break;
4698     case ARMISD::VCLEZ:
4699       Result = DAG.getNode(ARMISD::VCLEZ, dl, CmpVT, SingleOp); break;
4700     case ARMISD::VCGT:
4701       Result = DAG.getNode(ARMISD::VCGTZ, dl, CmpVT, SingleOp); break;
4702     case ARMISD::VCLTZ:
4703       Result = DAG.getNode(ARMISD::VCLTZ, dl, CmpVT, SingleOp); break;
4704     default:
4705       Result = DAG.getNode(Opc, dl, CmpVT, Op0, Op1);
4706     }
4707   } else {
4708      Result = DAG.getNode(Opc, dl, CmpVT, Op0, Op1);
4709   }
4710
4711   Result = DAG.getSExtOrTrunc(Result, dl, VT);
4712
4713   if (Invert)
4714     Result = DAG.getNOT(dl, Result, VT);
4715
4716   return Result;
4717 }
4718
4719 /// isNEONModifiedImm - Check if the specified splat value corresponds to a
4720 /// valid vector constant for a NEON instruction with a "modified immediate"
4721 /// operand (e.g., VMOV).  If so, return the encoded value.
4722 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
4723                                  unsigned SplatBitSize, SelectionDAG &DAG,
4724                                  SDLoc dl, EVT &VT, bool is128Bits,
4725                                  NEONModImmType type) {
4726   unsigned OpCmode, Imm;
4727
4728   // SplatBitSize is set to the smallest size that splats the vector, so a
4729   // zero vector will always have SplatBitSize == 8.  However, NEON modified
4730   // immediate instructions others than VMOV do not support the 8-bit encoding
4731   // of a zero vector, and the default encoding of zero is supposed to be the
4732   // 32-bit version.
4733   if (SplatBits == 0)
4734     SplatBitSize = 32;
4735
4736   switch (SplatBitSize) {
4737   case 8:
4738     if (type != VMOVModImm)
4739       return SDValue();
4740     // Any 1-byte value is OK.  Op=0, Cmode=1110.
4741     assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
4742     OpCmode = 0xe;
4743     Imm = SplatBits;
4744     VT = is128Bits ? MVT::v16i8 : MVT::v8i8;
4745     break;
4746
4747   case 16:
4748     // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
4749     VT = is128Bits ? MVT::v8i16 : MVT::v4i16;
4750     if ((SplatBits & ~0xff) == 0) {
4751       // Value = 0x00nn: Op=x, Cmode=100x.
4752       OpCmode = 0x8;
4753       Imm = SplatBits;
4754       break;
4755     }
4756     if ((SplatBits & ~0xff00) == 0) {
4757       // Value = 0xnn00: Op=x, Cmode=101x.
4758       OpCmode = 0xa;
4759       Imm = SplatBits >> 8;
4760       break;
4761     }
4762     return SDValue();
4763
4764   case 32:
4765     // NEON's 32-bit VMOV supports splat values where:
4766     // * only one byte is nonzero, or
4767     // * the least significant byte is 0xff and the second byte is nonzero, or
4768     // * the least significant 2 bytes are 0xff and the third is nonzero.
4769     VT = is128Bits ? MVT::v4i32 : MVT::v2i32;
4770     if ((SplatBits & ~0xff) == 0) {
4771       // Value = 0x000000nn: Op=x, Cmode=000x.
4772       OpCmode = 0;
4773       Imm = SplatBits;
4774       break;
4775     }
4776     if ((SplatBits & ~0xff00) == 0) {
4777       // Value = 0x0000nn00: Op=x, Cmode=001x.
4778       OpCmode = 0x2;
4779       Imm = SplatBits >> 8;
4780       break;
4781     }
4782     if ((SplatBits & ~0xff0000) == 0) {
4783       // Value = 0x00nn0000: Op=x, Cmode=010x.
4784       OpCmode = 0x4;
4785       Imm = SplatBits >> 16;
4786       break;
4787     }
4788     if ((SplatBits & ~0xff000000) == 0) {
4789       // Value = 0xnn000000: Op=x, Cmode=011x.
4790       OpCmode = 0x6;
4791       Imm = SplatBits >> 24;
4792       break;
4793     }
4794
4795     // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC
4796     if (type == OtherModImm) return SDValue();
4797
4798     if ((SplatBits & ~0xffff) == 0 &&
4799         ((SplatBits | SplatUndef) & 0xff) == 0xff) {
4800       // Value = 0x0000nnff: Op=x, Cmode=1100.
4801       OpCmode = 0xc;
4802       Imm = SplatBits >> 8;
4803       break;
4804     }
4805
4806     if ((SplatBits & ~0xffffff) == 0 &&
4807         ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
4808       // Value = 0x00nnffff: Op=x, Cmode=1101.
4809       OpCmode = 0xd;
4810       Imm = SplatBits >> 16;
4811       break;
4812     }
4813
4814     // Note: there are a few 32-bit splat values (specifically: 00ffff00,
4815     // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
4816     // VMOV.I32.  A (very) minor optimization would be to replicate the value
4817     // and fall through here to test for a valid 64-bit splat.  But, then the
4818     // caller would also need to check and handle the change in size.
4819     return SDValue();
4820
4821   case 64: {
4822     if (type != VMOVModImm)
4823       return SDValue();
4824     // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
4825     uint64_t BitMask = 0xff;
4826     uint64_t Val = 0;
4827     unsigned ImmMask = 1;
4828     Imm = 0;
4829     for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
4830       if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
4831         Val |= BitMask;
4832         Imm |= ImmMask;
4833       } else if ((SplatBits & BitMask) != 0) {
4834         return SDValue();
4835       }
4836       BitMask <<= 8;
4837       ImmMask <<= 1;
4838     }
4839
4840     if (DAG.getDataLayout().isBigEndian())
4841       // swap higher and lower 32 bit word
4842       Imm = ((Imm & 0xf) << 4) | ((Imm & 0xf0) >> 4);
4843
4844     // Op=1, Cmode=1110.
4845     OpCmode = 0x1e;
4846     VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
4847     break;
4848   }
4849
4850   default:
4851     llvm_unreachable("unexpected size for isNEONModifiedImm");
4852   }
4853
4854   unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm);
4855   return DAG.getTargetConstant(EncodedVal, dl, MVT::i32);
4856 }
4857
4858 SDValue ARMTargetLowering::LowerConstantFP(SDValue Op, SelectionDAG &DAG,
4859                                            const ARMSubtarget *ST) const {
4860   if (!ST->hasVFP3())
4861     return SDValue();
4862
4863   bool IsDouble = Op.getValueType() == MVT::f64;
4864   ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Op);
4865
4866   // Use the default (constant pool) lowering for double constants when we have
4867   // an SP-only FPU
4868   if (IsDouble && Subtarget->isFPOnlySP())
4869     return SDValue();
4870
4871   // Try splatting with a VMOV.f32...
4872   APFloat FPVal = CFP->getValueAPF();
4873   int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal);
4874
4875   if (ImmVal != -1) {
4876     if (IsDouble || !ST->useNEONForSinglePrecisionFP()) {
4877       // We have code in place to select a valid ConstantFP already, no need to
4878       // do any mangling.
4879       return Op;
4880     }
4881
4882     // It's a float and we are trying to use NEON operations where
4883     // possible. Lower it to a splat followed by an extract.
4884     SDLoc DL(Op);
4885     SDValue NewVal = DAG.getTargetConstant(ImmVal, DL, MVT::i32);
4886     SDValue VecConstant = DAG.getNode(ARMISD::VMOVFPIMM, DL, MVT::v2f32,
4887                                       NewVal);
4888     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecConstant,
4889                        DAG.getConstant(0, DL, MVT::i32));
4890   }
4891
4892   // The rest of our options are NEON only, make sure that's allowed before
4893   // proceeding..
4894   if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP()))
4895     return SDValue();
4896
4897   EVT VMovVT;
4898   uint64_t iVal = FPVal.bitcastToAPInt().getZExtValue();
4899
4900   // It wouldn't really be worth bothering for doubles except for one very
4901   // important value, which does happen to match: 0.0. So make sure we don't do
4902   // anything stupid.
4903   if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32))
4904     return SDValue();
4905
4906   // Try a VMOV.i32 (FIXME: i8, i16, or i64 could work too).
4907   SDValue NewVal = isNEONModifiedImm(iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op),
4908                                      VMovVT, false, VMOVModImm);
4909   if (NewVal != SDValue()) {
4910     SDLoc DL(Op);
4911     SDValue VecConstant = DAG.getNode(ARMISD::VMOVIMM, DL, VMovVT,
4912                                       NewVal);
4913     if (IsDouble)
4914       return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4915
4916     // It's a float: cast and extract a vector element.
4917     SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4918                                        VecConstant);
4919     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4920                        DAG.getConstant(0, DL, MVT::i32));
4921   }
4922
4923   // Finally, try a VMVN.i32
4924   NewVal = isNEONModifiedImm(~iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op), VMovVT,
4925                              false, VMVNModImm);
4926   if (NewVal != SDValue()) {
4927     SDLoc DL(Op);
4928     SDValue VecConstant = DAG.getNode(ARMISD::VMVNIMM, DL, VMovVT, NewVal);
4929
4930     if (IsDouble)
4931       return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4932
4933     // It's a float: cast and extract a vector element.
4934     SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4935                                        VecConstant);
4936     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4937                        DAG.getConstant(0, DL, MVT::i32));
4938   }
4939
4940   return SDValue();
4941 }
4942
4943 // check if an VEXT instruction can handle the shuffle mask when the
4944 // vector sources of the shuffle are the same.
4945 static bool isSingletonVEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
4946   unsigned NumElts = VT.getVectorNumElements();
4947
4948   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
4949   if (M[0] < 0)
4950     return false;
4951
4952   Imm = M[0];
4953
4954   // If this is a VEXT shuffle, the immediate value is the index of the first
4955   // element.  The other shuffle indices must be the successive elements after
4956   // the first one.
4957   unsigned ExpectedElt = Imm;
4958   for (unsigned i = 1; i < NumElts; ++i) {
4959     // Increment the expected index.  If it wraps around, just follow it
4960     // back to index zero and keep going.
4961     ++ExpectedElt;
4962     if (ExpectedElt == NumElts)
4963       ExpectedElt = 0;
4964
4965     if (M[i] < 0) continue; // ignore UNDEF indices
4966     if (ExpectedElt != static_cast<unsigned>(M[i]))
4967       return false;
4968   }
4969
4970   return true;
4971 }
4972
4973
4974 static bool isVEXTMask(ArrayRef<int> M, EVT VT,
4975                        bool &ReverseVEXT, unsigned &Imm) {
4976   unsigned NumElts = VT.getVectorNumElements();
4977   ReverseVEXT = false;
4978
4979   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
4980   if (M[0] < 0)
4981     return false;
4982
4983   Imm = M[0];
4984
4985   // If this is a VEXT shuffle, the immediate value is the index of the first
4986   // element.  The other shuffle indices must be the successive elements after
4987   // the first one.
4988   unsigned ExpectedElt = Imm;
4989   for (unsigned i = 1; i < NumElts; ++i) {
4990     // Increment the expected index.  If it wraps around, it may still be
4991     // a VEXT but the source vectors must be swapped.
4992     ExpectedElt += 1;
4993     if (ExpectedElt == NumElts * 2) {
4994       ExpectedElt = 0;
4995       ReverseVEXT = true;
4996     }
4997
4998     if (M[i] < 0) continue; // ignore UNDEF indices
4999     if (ExpectedElt != static_cast<unsigned>(M[i]))
5000       return false;
5001   }
5002
5003   // Adjust the index value if the source operands will be swapped.
5004   if (ReverseVEXT)
5005     Imm -= NumElts;
5006
5007   return true;
5008 }
5009
5010 /// isVREVMask - Check if a vector shuffle corresponds to a VREV
5011 /// instruction with the specified blocksize.  (The order of the elements
5012 /// within each block of the vector is reversed.)
5013 static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
5014   assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
5015          "Only possible block sizes for VREV are: 16, 32, 64");
5016
5017   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5018   if (EltSz == 64)
5019     return false;
5020
5021   unsigned NumElts = VT.getVectorNumElements();
5022   unsigned BlockElts = M[0] + 1;
5023   // If the first shuffle index is UNDEF, be optimistic.
5024   if (M[0] < 0)
5025     BlockElts = BlockSize / EltSz;
5026
5027   if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
5028     return false;
5029
5030   for (unsigned i = 0; i < NumElts; ++i) {
5031     if (M[i] < 0) continue; // ignore UNDEF indices
5032     if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
5033       return false;
5034   }
5035
5036   return true;
5037 }
5038
5039 static bool isVTBLMask(ArrayRef<int> M, EVT VT) {
5040   // We can handle <8 x i8> vector shuffles. If the index in the mask is out of
5041   // range, then 0 is placed into the resulting vector. So pretty much any mask
5042   // of 8 elements can work here.
5043   return VT == MVT::v8i8 && M.size() == 8;
5044 }
5045
5046 // Checks whether the shuffle mask represents a vector transpose (VTRN) by
5047 // checking that pairs of elements in the shuffle mask represent the same index
5048 // in each vector, incrementing the expected index by 2 at each step.
5049 // e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 4, 2, 6]
5050 //  v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,e,c,g}
5051 //  v2={e,f,g,h}
5052 // WhichResult gives the offset for each element in the mask based on which
5053 // of the two results it belongs to.
5054 //
5055 // The transpose can be represented either as:
5056 // result1 = shufflevector v1, v2, result1_shuffle_mask
5057 // result2 = shufflevector v1, v2, result2_shuffle_mask
5058 // where v1/v2 and the shuffle masks have the same number of elements
5059 // (here WhichResult (see below) indicates which result is being checked)
5060 //
5061 // or as:
5062 // results = shufflevector v1, v2, shuffle_mask
5063 // where both results are returned in one vector and the shuffle mask has twice
5064 // as many elements as v1/v2 (here WhichResult will always be 0 if true) here we
5065 // want to check the low half and high half of the shuffle mask as if it were
5066 // the other case
5067 static bool isVTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5068   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5069   if (EltSz == 64)
5070     return false;
5071
5072   unsigned NumElts = VT.getVectorNumElements();
5073   if (M.size() != NumElts && M.size() != NumElts*2)
5074     return false;
5075
5076   // If the mask is twice as long as the result then we need to check the upper
5077   // and lower parts of the mask
5078   for (unsigned i = 0; i < M.size(); i += NumElts) {
5079     WhichResult = M[i] == 0 ? 0 : 1;
5080     for (unsigned j = 0; j < NumElts; j += 2) {
5081       if ((M[i+j] >= 0 && (unsigned) M[i+j] != j + WhichResult) ||
5082           (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != j + NumElts + WhichResult))
5083         return false;
5084     }
5085   }
5086
5087   if (M.size() == NumElts*2)
5088     WhichResult = 0;
5089
5090   return true;
5091 }
5092
5093 /// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
5094 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5095 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
5096 static bool isVTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
5097   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5098   if (EltSz == 64)
5099     return false;
5100
5101   unsigned NumElts = VT.getVectorNumElements();
5102   if (M.size() != NumElts && M.size() != NumElts*2)
5103     return false;
5104
5105   for (unsigned i = 0; i < M.size(); i += NumElts) {
5106     WhichResult = M[i] == 0 ? 0 : 1;
5107     for (unsigned j = 0; j < NumElts; j += 2) {
5108       if ((M[i+j] >= 0 && (unsigned) M[i+j] != j + WhichResult) ||
5109           (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != j + WhichResult))
5110         return false;
5111     }
5112   }
5113
5114   if (M.size() == NumElts*2)
5115     WhichResult = 0;
5116
5117   return true;
5118 }
5119
5120 // Checks whether the shuffle mask represents a vector unzip (VUZP) by checking
5121 // that the mask elements are either all even and in steps of size 2 or all odd
5122 // and in steps of size 2.
5123 // e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 2, 4, 6]
5124 //  v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,c,e,g}
5125 //  v2={e,f,g,h}
5126 // Requires similar checks to that of isVTRNMask with
5127 // respect the how results are returned.
5128 static bool isVUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5129   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5130   if (EltSz == 64)
5131     return false;
5132
5133   unsigned NumElts = VT.getVectorNumElements();
5134   if (M.size() != NumElts && M.size() != NumElts*2)
5135     return false;
5136
5137   for (unsigned i = 0; i < M.size(); i += NumElts) {
5138     WhichResult = M[i] == 0 ? 0 : 1;
5139     for (unsigned j = 0; j < NumElts; ++j) {
5140       if (M[i+j] >= 0 && (unsigned) M[i+j] != 2 * j + WhichResult)
5141         return false;
5142     }
5143   }
5144
5145   if (M.size() == NumElts*2)
5146     WhichResult = 0;
5147
5148   // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5149   if (VT.is64BitVector() && EltSz == 32)
5150     return false;
5151
5152   return true;
5153 }
5154
5155 /// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
5156 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5157 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
5158 static bool isVUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
5159   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5160   if (EltSz == 64)
5161     return false;
5162
5163   unsigned NumElts = VT.getVectorNumElements();
5164   if (M.size() != NumElts && M.size() != NumElts*2)
5165     return false;
5166
5167   unsigned Half = NumElts / 2;
5168   for (unsigned i = 0; i < M.size(); i += NumElts) {
5169     WhichResult = M[i] == 0 ? 0 : 1;
5170     for (unsigned j = 0; j < NumElts; j += Half) {
5171       unsigned Idx = WhichResult;
5172       for (unsigned k = 0; k < Half; ++k) {
5173         int MIdx = M[i + j + k];
5174         if (MIdx >= 0 && (unsigned) MIdx != Idx)
5175           return false;
5176         Idx += 2;
5177       }
5178     }
5179   }
5180
5181   if (M.size() == NumElts*2)
5182     WhichResult = 0;
5183
5184   // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5185   if (VT.is64BitVector() && EltSz == 32)
5186     return false;
5187
5188   return true;
5189 }
5190
5191 // Checks whether the shuffle mask represents a vector zip (VZIP) by checking
5192 // that pairs of elements of the shufflemask represent the same index in each
5193 // vector incrementing sequentially through the vectors.
5194 // e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 4, 1, 5]
5195 //  v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,e,b,f}
5196 //  v2={e,f,g,h}
5197 // Requires similar checks to that of isVTRNMask with respect the how results
5198 // are returned.
5199 static bool isVZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5200   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5201   if (EltSz == 64)
5202     return false;
5203
5204   unsigned NumElts = VT.getVectorNumElements();
5205   if (M.size() != NumElts && M.size() != NumElts*2)
5206     return false;
5207
5208   for (unsigned i = 0; i < M.size(); i += NumElts) {
5209     WhichResult = M[i] == 0 ? 0 : 1;
5210     unsigned Idx = WhichResult * NumElts / 2;
5211     for (unsigned j = 0; j < NumElts; j += 2) {
5212       if ((M[i+j] >= 0 && (unsigned) M[i+j] != Idx) ||
5213           (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != Idx + NumElts))
5214         return false;
5215       Idx += 1;
5216     }
5217   }
5218
5219   if (M.size() == NumElts*2)
5220     WhichResult = 0;
5221
5222   // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5223   if (VT.is64BitVector() && EltSz == 32)
5224     return false;
5225
5226   return true;
5227 }
5228
5229 /// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
5230 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5231 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
5232 static bool isVZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
5233   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5234   if (EltSz == 64)
5235     return false;
5236
5237   unsigned NumElts = VT.getVectorNumElements();
5238   if (M.size() != NumElts && M.size() != NumElts*2)
5239     return false;
5240
5241   for (unsigned i = 0; i < M.size(); i += NumElts) {
5242     WhichResult = M[i] == 0 ? 0 : 1;
5243     unsigned Idx = WhichResult * NumElts / 2;
5244     for (unsigned j = 0; j < NumElts; j += 2) {
5245       if ((M[i+j] >= 0 && (unsigned) M[i+j] != Idx) ||
5246           (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != Idx))
5247         return false;
5248       Idx += 1;
5249     }
5250   }
5251
5252   if (M.size() == NumElts*2)
5253     WhichResult = 0;
5254
5255   // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
5256   if (VT.is64BitVector() && EltSz == 32)
5257     return false;
5258
5259   return true;
5260 }
5261
5262 /// Check if \p ShuffleMask is a NEON two-result shuffle (VZIP, VUZP, VTRN),
5263 /// and return the corresponding ARMISD opcode if it is, or 0 if it isn't.
5264 static unsigned isNEONTwoResultShuffleMask(ArrayRef<int> ShuffleMask, EVT VT,
5265                                            unsigned &WhichResult,
5266                                            bool &isV_UNDEF) {
5267   isV_UNDEF = false;
5268   if (isVTRNMask(ShuffleMask, VT, WhichResult))
5269     return ARMISD::VTRN;
5270   if (isVUZPMask(ShuffleMask, VT, WhichResult))
5271     return ARMISD::VUZP;
5272   if (isVZIPMask(ShuffleMask, VT, WhichResult))
5273     return ARMISD::VZIP;
5274
5275   isV_UNDEF = true;
5276   if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
5277     return ARMISD::VTRN;
5278   if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5279     return ARMISD::VUZP;
5280   if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5281     return ARMISD::VZIP;
5282
5283   return 0;
5284 }
5285
5286 /// \return true if this is a reverse operation on an vector.
5287 static bool isReverseMask(ArrayRef<int> M, EVT VT) {
5288   unsigned NumElts = VT.getVectorNumElements();
5289   // Make sure the mask has the right size.
5290   if (NumElts != M.size())
5291       return false;
5292
5293   // Look for <15, ..., 3, -1, 1, 0>.
5294   for (unsigned i = 0; i != NumElts; ++i)
5295     if (M[i] >= 0 && M[i] != (int) (NumElts - 1 - i))
5296       return false;
5297
5298   return true;
5299 }
5300
5301 // If N is an integer constant that can be moved into a register in one
5302 // instruction, return an SDValue of such a constant (will become a MOV
5303 // instruction).  Otherwise return null.
5304 static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG,
5305                                      const ARMSubtarget *ST, SDLoc dl) {
5306   uint64_t Val;
5307   if (!isa<ConstantSDNode>(N))
5308     return SDValue();
5309   Val = cast<ConstantSDNode>(N)->getZExtValue();
5310
5311   if (ST->isThumb1Only()) {
5312     if (Val <= 255 || ~Val <= 255)
5313       return DAG.getConstant(Val, dl, MVT::i32);
5314   } else {
5315     if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1)
5316       return DAG.getConstant(Val, dl, MVT::i32);
5317   }
5318   return SDValue();
5319 }
5320
5321 // If this is a case we can't handle, return null and let the default
5322 // expansion code take care of it.
5323 SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
5324                                              const ARMSubtarget *ST) const {
5325   BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
5326   SDLoc dl(Op);
5327   EVT VT = Op.getValueType();
5328
5329   APInt SplatBits, SplatUndef;
5330   unsigned SplatBitSize;
5331   bool HasAnyUndefs;
5332   if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
5333     if (SplatBitSize <= 64) {
5334       // Check if an immediate VMOV works.
5335       EVT VmovVT;
5336       SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
5337                                       SplatUndef.getZExtValue(), SplatBitSize,
5338                                       DAG, dl, VmovVT, VT.is128BitVector(),
5339                                       VMOVModImm);
5340       if (Val.getNode()) {
5341         SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val);
5342         return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
5343       }
5344
5345       // Try an immediate VMVN.
5346       uint64_t NegatedImm = (~SplatBits).getZExtValue();
5347       Val = isNEONModifiedImm(NegatedImm,
5348                                       SplatUndef.getZExtValue(), SplatBitSize,
5349                                       DAG, dl, VmovVT, VT.is128BitVector(),
5350                                       VMVNModImm);
5351       if (Val.getNode()) {
5352         SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val);
5353         return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
5354       }
5355
5356       // Use vmov.f32 to materialize other v2f32 and v4f32 splats.
5357       if ((VT == MVT::v2f32 || VT == MVT::v4f32) && SplatBitSize == 32) {
5358         int ImmVal = ARM_AM::getFP32Imm(SplatBits);
5359         if (ImmVal != -1) {
5360           SDValue Val = DAG.getTargetConstant(ImmVal, dl, MVT::i32);
5361           return DAG.getNode(ARMISD::VMOVFPIMM, dl, VT, Val);
5362         }
5363       }
5364     }
5365   }
5366
5367   // Scan through the operands to see if only one value is used.
5368   //
5369   // As an optimisation, even if more than one value is used it may be more
5370   // profitable to splat with one value then change some lanes.
5371   //
5372   // Heuristically we decide to do this if the vector has a "dominant" value,
5373   // defined as splatted to more than half of the lanes.
5374   unsigned NumElts = VT.getVectorNumElements();
5375   bool isOnlyLowElement = true;
5376   bool usesOnlyOneValue = true;
5377   bool hasDominantValue = false;
5378   bool isConstant = true;
5379
5380   // Map of the number of times a particular SDValue appears in the
5381   // element list.
5382   DenseMap<SDValue, unsigned> ValueCounts;
5383   SDValue Value;
5384   for (unsigned i = 0; i < NumElts; ++i) {
5385     SDValue V = Op.getOperand(i);
5386     if (V.getOpcode() == ISD::UNDEF)
5387       continue;
5388     if (i > 0)
5389       isOnlyLowElement = false;
5390     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
5391       isConstant = false;
5392
5393     ValueCounts.insert(std::make_pair(V, 0));
5394     unsigned &Count = ValueCounts[V];
5395
5396     // Is this value dominant? (takes up more than half of the lanes)
5397     if (++Count > (NumElts / 2)) {
5398       hasDominantValue = true;
5399       Value = V;
5400     }
5401   }
5402   if (ValueCounts.size() != 1)
5403     usesOnlyOneValue = false;
5404   if (!Value.getNode() && ValueCounts.size() > 0)
5405     Value = ValueCounts.begin()->first;
5406
5407   if (ValueCounts.size() == 0)
5408     return DAG.getUNDEF(VT);
5409
5410   // Loads are better lowered with insert_vector_elt/ARMISD::BUILD_VECTOR.
5411   // Keep going if we are hitting this case.
5412   if (isOnlyLowElement && !ISD::isNormalLoad(Value.getNode()))
5413     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
5414
5415   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5416
5417   // Use VDUP for non-constant splats.  For f32 constant splats, reduce to
5418   // i32 and try again.
5419   if (hasDominantValue && EltSize <= 32) {
5420     if (!isConstant) {
5421       SDValue N;
5422
5423       // If we are VDUPing a value that comes directly from a vector, that will
5424       // cause an unnecessary move to and from a GPR, where instead we could
5425       // just use VDUPLANE. We can only do this if the lane being extracted
5426       // is at a constant index, as the VDUP from lane instructions only have
5427       // constant-index forms.
5428       if (Value->getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5429           isa<ConstantSDNode>(Value->getOperand(1))) {
5430         // We need to create a new undef vector to use for the VDUPLANE if the
5431         // size of the vector from which we get the value is different than the
5432         // size of the vector that we need to create. We will insert the element
5433         // such that the register coalescer will remove unnecessary copies.
5434         if (VT != Value->getOperand(0).getValueType()) {
5435           ConstantSDNode *constIndex;
5436           constIndex = dyn_cast<ConstantSDNode>(Value->getOperand(1));
5437           assert(constIndex && "The index is not a constant!");
5438           unsigned index = constIndex->getAPIntValue().getLimitedValue() %
5439                              VT.getVectorNumElements();
5440           N =  DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5441                  DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DAG.getUNDEF(VT),
5442                         Value, DAG.getConstant(index, dl, MVT::i32)),
5443                            DAG.getConstant(index, dl, MVT::i32));
5444         } else
5445           N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5446                         Value->getOperand(0), Value->getOperand(1));
5447       } else
5448         N = DAG.getNode(ARMISD::VDUP, dl, VT, Value);
5449
5450       if (!usesOnlyOneValue) {
5451         // The dominant value was splatted as 'N', but we now have to insert
5452         // all differing elements.
5453         for (unsigned I = 0; I < NumElts; ++I) {
5454           if (Op.getOperand(I) == Value)
5455             continue;
5456           SmallVector<SDValue, 3> Ops;
5457           Ops.push_back(N);
5458           Ops.push_back(Op.getOperand(I));
5459           Ops.push_back(DAG.getConstant(I, dl, MVT::i32));
5460           N = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Ops);
5461         }
5462       }
5463       return N;
5464     }
5465     if (VT.getVectorElementType().isFloatingPoint()) {
5466       SmallVector<SDValue, 8> Ops;
5467       for (unsigned i = 0; i < NumElts; ++i)
5468         Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32,
5469                                   Op.getOperand(i)));
5470       EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
5471       SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops);
5472       Val = LowerBUILD_VECTOR(Val, DAG, ST);
5473       if (Val.getNode())
5474         return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5475     }
5476     if (usesOnlyOneValue) {
5477       SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl);
5478       if (isConstant && Val.getNode())
5479         return DAG.getNode(ARMISD::VDUP, dl, VT, Val);
5480     }
5481   }
5482
5483   // If all elements are constants and the case above didn't get hit, fall back
5484   // to the default expansion, which will generate a load from the constant
5485   // pool.
5486   if (isConstant)
5487     return SDValue();
5488
5489   // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
5490   if (NumElts >= 4) {
5491     SDValue shuffle = ReconstructShuffle(Op, DAG);
5492     if (shuffle != SDValue())
5493       return shuffle;
5494   }
5495
5496   // Vectors with 32- or 64-bit elements can be built by directly assigning
5497   // the subregisters.  Lower it to an ARMISD::BUILD_VECTOR so the operands
5498   // will be legalized.
5499   if (EltSize >= 32) {
5500     // Do the expansion with floating-point types, since that is what the VFP
5501     // registers are defined to use, and since i64 is not legal.
5502     EVT EltVT = EVT::getFloatingPointVT(EltSize);
5503     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
5504     SmallVector<SDValue, 8> Ops;
5505     for (unsigned i = 0; i < NumElts; ++i)
5506       Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i)));
5507     SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
5508     return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5509   }
5510
5511   // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
5512   // know the default expansion would otherwise fall back on something even
5513   // worse. For a vector with one or two non-undef values, that's
5514   // scalar_to_vector for the elements followed by a shuffle (provided the
5515   // shuffle is valid for the target) and materialization element by element
5516   // on the stack followed by a load for everything else.
5517   if (!isConstant && !usesOnlyOneValue) {
5518     SDValue Vec = DAG.getUNDEF(VT);
5519     for (unsigned i = 0 ; i < NumElts; ++i) {
5520       SDValue V = Op.getOperand(i);
5521       if (V.getOpcode() == ISD::UNDEF)
5522         continue;
5523       SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i32);
5524       Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
5525     }
5526     return Vec;
5527   }
5528
5529   return SDValue();
5530 }
5531
5532 /// getExtFactor - Determine the adjustment factor for the position when
5533 /// generating an "extract from vector registers" instruction.
5534 static unsigned getExtFactor(SDValue &V) {
5535   EVT EltType = V.getValueType().getVectorElementType();
5536   return EltType.getSizeInBits() / 8;
5537 }
5538
5539 // Gather data to see if the operation can be modelled as a
5540 // shuffle in combination with VEXTs.
5541 SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op,
5542                                               SelectionDAG &DAG) const {
5543   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
5544   SDLoc dl(Op);
5545   EVT VT = Op.getValueType();
5546   unsigned NumElts = VT.getVectorNumElements();
5547
5548   struct ShuffleSourceInfo {
5549     SDValue Vec;
5550     unsigned MinElt;
5551     unsigned MaxElt;
5552
5553     // We may insert some combination of BITCASTs and VEXT nodes to force Vec to
5554     // be compatible with the shuffle we intend to construct. As a result
5555     // ShuffleVec will be some sliding window into the original Vec.
5556     SDValue ShuffleVec;
5557
5558     // Code should guarantee that element i in Vec starts at element "WindowBase
5559     // + i * WindowScale in ShuffleVec".
5560     int WindowBase;
5561     int WindowScale;
5562
5563     bool operator ==(SDValue OtherVec) { return Vec == OtherVec; }
5564     ShuffleSourceInfo(SDValue Vec)
5565         : Vec(Vec), MinElt(UINT_MAX), MaxElt(0), ShuffleVec(Vec), WindowBase(0),
5566           WindowScale(1) {}
5567   };
5568
5569   // First gather all vectors used as an immediate source for this BUILD_VECTOR
5570   // node.
5571   SmallVector<ShuffleSourceInfo, 2> Sources;
5572   for (unsigned i = 0; i < NumElts; ++i) {
5573     SDValue V = Op.getOperand(i);
5574     if (V.getOpcode() == ISD::UNDEF)
5575       continue;
5576     else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
5577       // A shuffle can only come from building a vector from various
5578       // elements of other vectors.
5579       return SDValue();
5580     }
5581
5582     // Add this element source to the list if it's not already there.
5583     SDValue SourceVec = V.getOperand(0);
5584     auto Source = std::find(Sources.begin(), Sources.end(), SourceVec);
5585     if (Source == Sources.end())
5586       Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec));
5587
5588     // Update the minimum and maximum lane number seen.
5589     unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
5590     Source->MinElt = std::min(Source->MinElt, EltNo);
5591     Source->MaxElt = std::max(Source->MaxElt, EltNo);
5592   }
5593
5594   // Currently only do something sane when at most two source vectors
5595   // are involved.
5596   if (Sources.size() > 2)
5597     return SDValue();
5598
5599   // Find out the smallest element size among result and two sources, and use
5600   // it as element size to build the shuffle_vector.
5601   EVT SmallestEltTy = VT.getVectorElementType();
5602   for (auto &Source : Sources) {
5603     EVT SrcEltTy = Source.Vec.getValueType().getVectorElementType();
5604     if (SrcEltTy.bitsLT(SmallestEltTy))
5605       SmallestEltTy = SrcEltTy;
5606   }
5607   unsigned ResMultiplier =
5608       VT.getVectorElementType().getSizeInBits() / SmallestEltTy.getSizeInBits();
5609   NumElts = VT.getSizeInBits() / SmallestEltTy.getSizeInBits();
5610   EVT ShuffleVT = EVT::getVectorVT(*DAG.getContext(), SmallestEltTy, NumElts);
5611
5612   // If the source vector is too wide or too narrow, we may nevertheless be able
5613   // to construct a compatible shuffle either by concatenating it with UNDEF or
5614   // extracting a suitable range of elements.
5615   for (auto &Src : Sources) {
5616     EVT SrcVT = Src.ShuffleVec.getValueType();
5617
5618     if (SrcVT.getSizeInBits() == VT.getSizeInBits())
5619       continue;
5620
5621     // This stage of the search produces a source with the same element type as
5622     // the original, but with a total width matching the BUILD_VECTOR output.
5623     EVT EltVT = SrcVT.getVectorElementType();
5624     unsigned NumSrcElts = VT.getSizeInBits() / EltVT.getSizeInBits();
5625     EVT DestVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumSrcElts);
5626
5627     if (SrcVT.getSizeInBits() < VT.getSizeInBits()) {
5628       if (2 * SrcVT.getSizeInBits() != VT.getSizeInBits())
5629         return SDValue();
5630       // We can pad out the smaller vector for free, so if it's part of a
5631       // shuffle...
5632       Src.ShuffleVec =
5633           DAG.getNode(ISD::CONCAT_VECTORS, dl, DestVT, Src.ShuffleVec,
5634                       DAG.getUNDEF(Src.ShuffleVec.getValueType()));
5635       continue;
5636     }
5637
5638     if (SrcVT.getSizeInBits() != 2 * VT.getSizeInBits())
5639       return SDValue();
5640
5641     if (Src.MaxElt - Src.MinElt >= NumSrcElts) {
5642       // Span too large for a VEXT to cope
5643       return SDValue();
5644     }
5645
5646     if (Src.MinElt >= NumSrcElts) {
5647       // The extraction can just take the second half
5648       Src.ShuffleVec =
5649           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5650                       DAG.getConstant(NumSrcElts, dl, MVT::i32));
5651       Src.WindowBase = -NumSrcElts;
5652     } else if (Src.MaxElt < NumSrcElts) {
5653       // The extraction can just take the first half
5654       Src.ShuffleVec =
5655           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5656                       DAG.getConstant(0, dl, MVT::i32));
5657     } else {
5658       // An actual VEXT is needed
5659       SDValue VEXTSrc1 =
5660           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5661                       DAG.getConstant(0, dl, MVT::i32));
5662       SDValue VEXTSrc2 =
5663           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
5664                       DAG.getConstant(NumSrcElts, dl, MVT::i32));
5665       unsigned Imm = Src.MinElt * getExtFactor(VEXTSrc1);
5666
5667       Src.ShuffleVec = DAG.getNode(ARMISD::VEXT, dl, DestVT, VEXTSrc1,
5668                                    VEXTSrc2,
5669                                    DAG.getConstant(Imm, dl, MVT::i32));
5670       Src.WindowBase = -Src.MinElt;
5671     }
5672   }
5673
5674   // Another possible incompatibility occurs from the vector element types. We
5675   // can fix this by bitcasting the source vectors to the same type we intend
5676   // for the shuffle.
5677   for (auto &Src : Sources) {
5678     EVT SrcEltTy = Src.ShuffleVec.getValueType().getVectorElementType();
5679     if (SrcEltTy == SmallestEltTy)
5680       continue;
5681     assert(ShuffleVT.getVectorElementType() == SmallestEltTy);
5682     Src.ShuffleVec = DAG.getNode(ISD::BITCAST, dl, ShuffleVT, Src.ShuffleVec);
5683     Src.WindowScale = SrcEltTy.getSizeInBits() / SmallestEltTy.getSizeInBits();
5684     Src.WindowBase *= Src.WindowScale;
5685   }
5686
5687   // Final sanity check before we try to actually produce a shuffle.
5688   for (auto Src : Sources)
5689     assert(Src.ShuffleVec.getValueType() == ShuffleVT);
5690
5691   // The stars all align, our next step is to produce the mask for the shuffle.
5692   SmallVector<int, 8> Mask(ShuffleVT.getVectorNumElements(), -1);
5693   int BitsPerShuffleLane = ShuffleVT.getVectorElementType().getSizeInBits();
5694   for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
5695     SDValue Entry = Op.getOperand(i);
5696     if (Entry.getOpcode() == ISD::UNDEF)
5697       continue;
5698
5699     auto Src = std::find(Sources.begin(), Sources.end(), Entry.getOperand(0));
5700     int EltNo = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue();
5701
5702     // EXTRACT_VECTOR_ELT performs an implicit any_ext; BUILD_VECTOR an implicit
5703     // trunc. So only std::min(SrcBits, DestBits) actually get defined in this
5704     // segment.
5705     EVT OrigEltTy = Entry.getOperand(0).getValueType().getVectorElementType();
5706     int BitsDefined = std::min(OrigEltTy.getSizeInBits(),
5707                                VT.getVectorElementType().getSizeInBits());
5708     int LanesDefined = BitsDefined / BitsPerShuffleLane;
5709
5710     // This source is expected to fill ResMultiplier lanes of the final shuffle,
5711     // starting at the appropriate offset.
5712     int *LaneMask = &Mask[i * ResMultiplier];
5713
5714     int ExtractBase = EltNo * Src->WindowScale + Src->WindowBase;
5715     ExtractBase += NumElts * (Src - Sources.begin());
5716     for (int j = 0; j < LanesDefined; ++j)
5717       LaneMask[j] = ExtractBase + j;
5718   }
5719
5720   // Final check before we try to produce nonsense...
5721   if (!isShuffleMaskLegal(Mask, ShuffleVT))
5722     return SDValue();
5723
5724   // We can't handle more than two sources. This should have already
5725   // been checked before this point.
5726   assert(Sources.size() <= 2 && "Too many sources!");
5727
5728   SDValue ShuffleOps[] = { DAG.getUNDEF(ShuffleVT), DAG.getUNDEF(ShuffleVT) };
5729   for (unsigned i = 0; i < Sources.size(); ++i)
5730     ShuffleOps[i] = Sources[i].ShuffleVec;
5731
5732   SDValue Shuffle = DAG.getVectorShuffle(ShuffleVT, dl, ShuffleOps[0],
5733                                          ShuffleOps[1], &Mask[0]);
5734   return DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
5735 }
5736
5737 /// isShuffleMaskLegal - Targets can use this to indicate that they only
5738 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
5739 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
5740 /// are assumed to be legal.
5741 bool
5742 ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
5743                                       EVT VT) const {
5744   if (VT.getVectorNumElements() == 4 &&
5745       (VT.is128BitVector() || VT.is64BitVector())) {
5746     unsigned PFIndexes[4];
5747     for (unsigned i = 0; i != 4; ++i) {
5748       if (M[i] < 0)
5749         PFIndexes[i] = 8;
5750       else
5751         PFIndexes[i] = M[i];
5752     }
5753
5754     // Compute the index in the perfect shuffle table.
5755     unsigned PFTableIndex =
5756       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5757     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5758     unsigned Cost = (PFEntry >> 30);
5759
5760     if (Cost <= 4)
5761       return true;
5762   }
5763
5764   bool ReverseVEXT, isV_UNDEF;
5765   unsigned Imm, WhichResult;
5766
5767   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5768   return (EltSize >= 32 ||
5769           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
5770           isVREVMask(M, VT, 64) ||
5771           isVREVMask(M, VT, 32) ||
5772           isVREVMask(M, VT, 16) ||
5773           isVEXTMask(M, VT, ReverseVEXT, Imm) ||
5774           isVTBLMask(M, VT) ||
5775           isNEONTwoResultShuffleMask(M, VT, WhichResult, isV_UNDEF) ||
5776           ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(M, VT)));
5777 }
5778
5779 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5780 /// the specified operations to build the shuffle.
5781 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5782                                       SDValue RHS, SelectionDAG &DAG,
5783                                       SDLoc dl) {
5784   unsigned OpNum = (PFEntry >> 26) & 0x0F;
5785   unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
5786   unsigned RHSID = (PFEntry >>  0) & ((1 << 13)-1);
5787
5788   enum {
5789     OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5790     OP_VREV,
5791     OP_VDUP0,
5792     OP_VDUP1,
5793     OP_VDUP2,
5794     OP_VDUP3,
5795     OP_VEXT1,
5796     OP_VEXT2,
5797     OP_VEXT3,
5798     OP_VUZPL, // VUZP, left result
5799     OP_VUZPR, // VUZP, right result
5800     OP_VZIPL, // VZIP, left result
5801     OP_VZIPR, // VZIP, right result
5802     OP_VTRNL, // VTRN, left result
5803     OP_VTRNR  // VTRN, right result
5804   };
5805
5806   if (OpNum == OP_COPY) {
5807     if (LHSID == (1*9+2)*9+3) return LHS;
5808     assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5809     return RHS;
5810   }
5811
5812   SDValue OpLHS, OpRHS;
5813   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5814   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5815   EVT VT = OpLHS.getValueType();
5816
5817   switch (OpNum) {
5818   default: llvm_unreachable("Unknown shuffle opcode!");
5819   case OP_VREV:
5820     // VREV divides the vector in half and swaps within the half.
5821     if (VT.getVectorElementType() == MVT::i32 ||
5822         VT.getVectorElementType() == MVT::f32)
5823       return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
5824     // vrev <4 x i16> -> VREV32
5825     if (VT.getVectorElementType() == MVT::i16)
5826       return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS);
5827     // vrev <4 x i8> -> VREV16
5828     assert(VT.getVectorElementType() == MVT::i8);
5829     return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS);
5830   case OP_VDUP0:
5831   case OP_VDUP1:
5832   case OP_VDUP2:
5833   case OP_VDUP3:
5834     return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5835                        OpLHS, DAG.getConstant(OpNum-OP_VDUP0, dl, MVT::i32));
5836   case OP_VEXT1:
5837   case OP_VEXT2:
5838   case OP_VEXT3:
5839     return DAG.getNode(ARMISD::VEXT, dl, VT,
5840                        OpLHS, OpRHS,
5841                        DAG.getConstant(OpNum - OP_VEXT1 + 1, dl, MVT::i32));
5842   case OP_VUZPL:
5843   case OP_VUZPR:
5844     return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5845                        OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
5846   case OP_VZIPL:
5847   case OP_VZIPR:
5848     return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5849                        OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
5850   case OP_VTRNL:
5851   case OP_VTRNR:
5852     return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5853                        OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
5854   }
5855 }
5856
5857 static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op,
5858                                        ArrayRef<int> ShuffleMask,
5859                                        SelectionDAG &DAG) {
5860   // Check to see if we can use the VTBL instruction.
5861   SDValue V1 = Op.getOperand(0);
5862   SDValue V2 = Op.getOperand(1);
5863   SDLoc DL(Op);
5864
5865   SmallVector<SDValue, 8> VTBLMask;
5866   for (ArrayRef<int>::iterator
5867          I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I)
5868     VTBLMask.push_back(DAG.getConstant(*I, DL, MVT::i32));
5869
5870   if (V2.getNode()->getOpcode() == ISD::UNDEF)
5871     return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1,
5872                        DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
5873
5874   return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2,
5875                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
5876 }
5877
5878 static SDValue LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(SDValue Op,
5879                                                       SelectionDAG &DAG) {
5880   SDLoc DL(Op);
5881   SDValue OpLHS = Op.getOperand(0);
5882   EVT VT = OpLHS.getValueType();
5883
5884   assert((VT == MVT::v8i16 || VT == MVT::v16i8) &&
5885          "Expect an v8i16/v16i8 type");
5886   OpLHS = DAG.getNode(ARMISD::VREV64, DL, VT, OpLHS);
5887   // For a v16i8 type: After the VREV, we have got <8, ...15, 8, ..., 0>. Now,
5888   // extract the first 8 bytes into the top double word and the last 8 bytes
5889   // into the bottom double word. The v8i16 case is similar.
5890   unsigned ExtractNum = (VT == MVT::v16i8) ? 8 : 4;
5891   return DAG.getNode(ARMISD::VEXT, DL, VT, OpLHS, OpLHS,
5892                      DAG.getConstant(ExtractNum, DL, MVT::i32));
5893 }
5894
5895 static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
5896   SDValue V1 = Op.getOperand(0);
5897   SDValue V2 = Op.getOperand(1);
5898   SDLoc dl(Op);
5899   EVT VT = Op.getValueType();
5900   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
5901
5902   // Convert shuffles that are directly supported on NEON to target-specific
5903   // DAG nodes, instead of keeping them as shuffles and matching them again
5904   // during code selection.  This is more efficient and avoids the possibility
5905   // of inconsistencies between legalization and selection.
5906   // FIXME: floating-point vectors should be canonicalized to integer vectors
5907   // of the same time so that they get CSEd properly.
5908   ArrayRef<int> ShuffleMask = SVN->getMask();
5909
5910   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5911   if (EltSize <= 32) {
5912     if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
5913       int Lane = SVN->getSplatIndex();
5914       // If this is undef splat, generate it via "just" vdup, if possible.
5915       if (Lane == -1) Lane = 0;
5916
5917       // Test if V1 is a SCALAR_TO_VECTOR.
5918       if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5919         return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5920       }
5921       // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
5922       // (and probably will turn into a SCALAR_TO_VECTOR once legalization
5923       // reaches it).
5924       if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
5925           !isa<ConstantSDNode>(V1.getOperand(0))) {
5926         bool IsScalarToVector = true;
5927         for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i)
5928           if (V1.getOperand(i).getOpcode() != ISD::UNDEF) {
5929             IsScalarToVector = false;
5930             break;
5931           }
5932         if (IsScalarToVector)
5933           return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5934       }
5935       return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
5936                          DAG.getConstant(Lane, dl, MVT::i32));
5937     }
5938
5939     bool ReverseVEXT;
5940     unsigned Imm;
5941     if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
5942       if (ReverseVEXT)
5943         std::swap(V1, V2);
5944       return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
5945                          DAG.getConstant(Imm, dl, MVT::i32));
5946     }
5947
5948     if (isVREVMask(ShuffleMask, VT, 64))
5949       return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
5950     if (isVREVMask(ShuffleMask, VT, 32))
5951       return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
5952     if (isVREVMask(ShuffleMask, VT, 16))
5953       return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
5954
5955     if (V2->getOpcode() == ISD::UNDEF &&
5956         isSingletonVEXTMask(ShuffleMask, VT, Imm)) {
5957       return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V1,
5958                          DAG.getConstant(Imm, dl, MVT::i32));
5959     }
5960
5961     // Check for Neon shuffles that modify both input vectors in place.
5962     // If both results are used, i.e., if there are two shuffles with the same
5963     // source operands and with masks corresponding to both results of one of
5964     // these operations, DAG memoization will ensure that a single node is
5965     // used for both shuffles.
5966     unsigned WhichResult;
5967     bool isV_UNDEF;
5968     if (unsigned ShuffleOpc = isNEONTwoResultShuffleMask(
5969             ShuffleMask, VT, WhichResult, isV_UNDEF)) {
5970       if (isV_UNDEF)
5971         V2 = V1;
5972       return DAG.getNode(ShuffleOpc, dl, DAG.getVTList(VT, VT), V1, V2)
5973           .getValue(WhichResult);
5974     }
5975
5976     // Also check for these shuffles through CONCAT_VECTORS: we canonicalize
5977     // shuffles that produce a result larger than their operands with:
5978     //   shuffle(concat(v1, undef), concat(v2, undef))
5979     // ->
5980     //   shuffle(concat(v1, v2), undef)
5981     // because we can access quad vectors (see PerformVECTOR_SHUFFLECombine).
5982     //
5983     // This is useful in the general case, but there are special cases where
5984     // native shuffles produce larger results: the two-result ops.
5985     //
5986     // Look through the concat when lowering them:
5987     //   shuffle(concat(v1, v2), undef)
5988     // ->
5989     //   concat(VZIP(v1, v2):0, :1)
5990     //
5991     if (V1->getOpcode() == ISD::CONCAT_VECTORS &&
5992         V2->getOpcode() == ISD::UNDEF) {
5993       SDValue SubV1 = V1->getOperand(0);
5994       SDValue SubV2 = V1->getOperand(1);
5995       EVT SubVT = SubV1.getValueType();
5996
5997       // We expect these to have been canonicalized to -1.
5998       assert(std::all_of(ShuffleMask.begin(), ShuffleMask.end(), [&](int i) {
5999         return i < (int)VT.getVectorNumElements();
6000       }) && "Unexpected shuffle index into UNDEF operand!");
6001
6002       if (unsigned ShuffleOpc = isNEONTwoResultShuffleMask(
6003               ShuffleMask, SubVT, WhichResult, isV_UNDEF)) {
6004         if (isV_UNDEF)
6005           SubV2 = SubV1;
6006         assert((WhichResult == 0) &&
6007                "In-place shuffle of concat can only have one result!");
6008         SDValue Res = DAG.getNode(ShuffleOpc, dl, DAG.getVTList(SubVT, SubVT),
6009                                   SubV1, SubV2);
6010         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Res.getValue(0),
6011                            Res.getValue(1));
6012       }
6013     }
6014   }
6015
6016   // If the shuffle is not directly supported and it has 4 elements, use
6017   // the PerfectShuffle-generated table to synthesize it from other shuffles.
6018   unsigned NumElts = VT.getVectorNumElements();
6019   if (NumElts == 4) {
6020     unsigned PFIndexes[4];
6021     for (unsigned i = 0; i != 4; ++i) {
6022       if (ShuffleMask[i] < 0)
6023         PFIndexes[i] = 8;
6024       else
6025         PFIndexes[i] = ShuffleMask[i];
6026     }
6027
6028     // Compute the index in the perfect shuffle table.
6029     unsigned PFTableIndex =
6030       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
6031     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6032     unsigned Cost = (PFEntry >> 30);
6033
6034     if (Cost <= 4)
6035       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
6036   }
6037
6038   // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs.
6039   if (EltSize >= 32) {
6040     // Do the expansion with floating-point types, since that is what the VFP
6041     // registers are defined to use, and since i64 is not legal.
6042     EVT EltVT = EVT::getFloatingPointVT(EltSize);
6043     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
6044     V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1);
6045     V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2);
6046     SmallVector<SDValue, 8> Ops;
6047     for (unsigned i = 0; i < NumElts; ++i) {
6048       if (ShuffleMask[i] < 0)
6049         Ops.push_back(DAG.getUNDEF(EltVT));
6050       else
6051         Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6052                                   ShuffleMask[i] < (int)NumElts ? V1 : V2,
6053                                   DAG.getConstant(ShuffleMask[i] & (NumElts-1),
6054                                                   dl, MVT::i32)));
6055     }
6056     SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
6057     return DAG.getNode(ISD::BITCAST, dl, VT, Val);
6058   }
6059
6060   if ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(ShuffleMask, VT))
6061     return LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(Op, DAG);
6062
6063   if (VT == MVT::v8i8) {
6064     SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG);
6065     if (NewOp.getNode())
6066       return NewOp;
6067   }
6068
6069   return SDValue();
6070 }
6071
6072 static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
6073   // INSERT_VECTOR_ELT is legal only for immediate indexes.
6074   SDValue Lane = Op.getOperand(2);
6075   if (!isa<ConstantSDNode>(Lane))
6076     return SDValue();
6077
6078   return Op;
6079 }
6080
6081 static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
6082   // EXTRACT_VECTOR_ELT is legal only for immediate indexes.
6083   SDValue Lane = Op.getOperand(1);
6084   if (!isa<ConstantSDNode>(Lane))
6085     return SDValue();
6086
6087   SDValue Vec = Op.getOperand(0);
6088   if (Op.getValueType() == MVT::i32 &&
6089       Vec.getValueType().getVectorElementType().getSizeInBits() < 32) {
6090     SDLoc dl(Op);
6091     return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
6092   }
6093
6094   return Op;
6095 }
6096
6097 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6098   // The only time a CONCAT_VECTORS operation can have legal types is when
6099   // two 64-bit vectors are concatenated to a 128-bit vector.
6100   assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
6101          "unexpected CONCAT_VECTORS");
6102   SDLoc dl(Op);
6103   SDValue Val = DAG.getUNDEF(MVT::v2f64);
6104   SDValue Op0 = Op.getOperand(0);
6105   SDValue Op1 = Op.getOperand(1);
6106   if (Op0.getOpcode() != ISD::UNDEF)
6107     Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
6108                       DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0),
6109                       DAG.getIntPtrConstant(0, dl));
6110   if (Op1.getOpcode() != ISD::UNDEF)
6111     Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
6112                       DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1),
6113                       DAG.getIntPtrConstant(1, dl));
6114   return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val);
6115 }
6116
6117 /// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each
6118 /// element has been zero/sign-extended, depending on the isSigned parameter,
6119 /// from an integer type half its size.
6120 static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
6121                                    bool isSigned) {
6122   // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32.
6123   EVT VT = N->getValueType(0);
6124   if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) {
6125     SDNode *BVN = N->getOperand(0).getNode();
6126     if (BVN->getValueType(0) != MVT::v4i32 ||
6127         BVN->getOpcode() != ISD::BUILD_VECTOR)
6128       return false;
6129     unsigned LoElt = DAG.getDataLayout().isBigEndian() ? 1 : 0;
6130     unsigned HiElt = 1 - LoElt;
6131     ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt));
6132     ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt));
6133     ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2));
6134     ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2));
6135     if (!Lo0 || !Hi0 || !Lo1 || !Hi1)
6136       return false;
6137     if (isSigned) {
6138       if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 &&
6139           Hi1->getSExtValue() == Lo1->getSExtValue() >> 32)
6140         return true;
6141     } else {
6142       if (Hi0->isNullValue() && Hi1->isNullValue())
6143         return true;
6144     }
6145     return false;
6146   }
6147
6148   if (N->getOpcode() != ISD::BUILD_VECTOR)
6149     return false;
6150
6151   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
6152     SDNode *Elt = N->getOperand(i).getNode();
6153     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
6154       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
6155       unsigned HalfSize = EltSize / 2;
6156       if (isSigned) {
6157         if (!isIntN(HalfSize, C->getSExtValue()))
6158           return false;
6159       } else {
6160         if (!isUIntN(HalfSize, C->getZExtValue()))
6161           return false;
6162       }
6163       continue;
6164     }
6165     return false;
6166   }
6167
6168   return true;
6169 }
6170
6171 /// isSignExtended - Check if a node is a vector value that is sign-extended
6172 /// or a constant BUILD_VECTOR with sign-extended elements.
6173 static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
6174   if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N))
6175     return true;
6176   if (isExtendedBUILD_VECTOR(N, DAG, true))
6177     return true;
6178   return false;
6179 }
6180
6181 /// isZeroExtended - Check if a node is a vector value that is zero-extended
6182 /// or a constant BUILD_VECTOR with zero-extended elements.
6183 static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
6184   if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N))
6185     return true;
6186   if (isExtendedBUILD_VECTOR(N, DAG, false))
6187     return true;
6188   return false;
6189 }
6190
6191 static EVT getExtensionTo64Bits(const EVT &OrigVT) {
6192   if (OrigVT.getSizeInBits() >= 64)
6193     return OrigVT;
6194
6195   assert(OrigVT.isSimple() && "Expecting a simple value type");
6196
6197   MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
6198   switch (OrigSimpleTy) {
6199   default: llvm_unreachable("Unexpected Vector Type");
6200   case MVT::v2i8:
6201   case MVT::v2i16:
6202      return MVT::v2i32;
6203   case MVT::v4i8:
6204     return  MVT::v4i16;
6205   }
6206 }
6207
6208 /// AddRequiredExtensionForVMULL - Add a sign/zero extension to extend the total
6209 /// value size to 64 bits. We need a 64-bit D register as an operand to VMULL.
6210 /// We insert the required extension here to get the vector to fill a D register.
6211 static SDValue AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG,
6212                                             const EVT &OrigTy,
6213                                             const EVT &ExtTy,
6214                                             unsigned ExtOpcode) {
6215   // The vector originally had a size of OrigTy. It was then extended to ExtTy.
6216   // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
6217   // 64-bits we need to insert a new extension so that it will be 64-bits.
6218   assert(ExtTy.is128BitVector() && "Unexpected extension size");
6219   if (OrigTy.getSizeInBits() >= 64)
6220     return N;
6221
6222   // Must extend size to at least 64 bits to be used as an operand for VMULL.
6223   EVT NewVT = getExtensionTo64Bits(OrigTy);
6224
6225   return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N);
6226 }
6227
6228 /// SkipLoadExtensionForVMULL - return a load of the original vector size that
6229 /// does not do any sign/zero extension. If the original vector is less
6230 /// than 64 bits, an appropriate extension will be added after the load to
6231 /// reach a total size of 64 bits. We have to add the extension separately
6232 /// because ARM does not have a sign/zero extending load for vectors.
6233 static SDValue SkipLoadExtensionForVMULL(LoadSDNode *LD, SelectionDAG& DAG) {
6234   EVT ExtendedTy = getExtensionTo64Bits(LD->getMemoryVT());
6235
6236   // The load already has the right type.
6237   if (ExtendedTy == LD->getMemoryVT())
6238     return DAG.getLoad(LD->getMemoryVT(), SDLoc(LD), LD->getChain(),
6239                 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(),
6240                 LD->isNonTemporal(), LD->isInvariant(),
6241                 LD->getAlignment());
6242
6243   // We need to create a zextload/sextload. We cannot just create a load
6244   // followed by a zext/zext node because LowerMUL is also run during normal
6245   // operation legalization where we can't create illegal types.
6246   return DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), ExtendedTy,
6247                         LD->getChain(), LD->getBasePtr(), LD->getPointerInfo(),
6248                         LD->getMemoryVT(), LD->isVolatile(), LD->isInvariant(),
6249                         LD->isNonTemporal(), LD->getAlignment());
6250 }
6251
6252 /// SkipExtensionForVMULL - For a node that is a SIGN_EXTEND, ZERO_EXTEND,
6253 /// extending load, or BUILD_VECTOR with extended elements, return the
6254 /// unextended value. The unextended vector should be 64 bits so that it can
6255 /// be used as an operand to a VMULL instruction. If the original vector size
6256 /// before extension is less than 64 bits we add a an extension to resize
6257 /// the vector to 64 bits.
6258 static SDValue SkipExtensionForVMULL(SDNode *N, SelectionDAG &DAG) {
6259   if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
6260     return AddRequiredExtensionForVMULL(N->getOperand(0), DAG,
6261                                         N->getOperand(0)->getValueType(0),
6262                                         N->getValueType(0),
6263                                         N->getOpcode());
6264
6265   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
6266     return SkipLoadExtensionForVMULL(LD, DAG);
6267
6268   // Otherwise, the value must be a BUILD_VECTOR.  For v2i64, it will
6269   // have been legalized as a BITCAST from v4i32.
6270   if (N->getOpcode() == ISD::BITCAST) {
6271     SDNode *BVN = N->getOperand(0).getNode();
6272     assert(BVN->getOpcode() == ISD::BUILD_VECTOR &&
6273            BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR");
6274     unsigned LowElt = DAG.getDataLayout().isBigEndian() ? 1 : 0;
6275     return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), MVT::v2i32,
6276                        BVN->getOperand(LowElt), BVN->getOperand(LowElt+2));
6277   }
6278   // Construct a new BUILD_VECTOR with elements truncated to half the size.
6279   assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
6280   EVT VT = N->getValueType(0);
6281   unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2;
6282   unsigned NumElts = VT.getVectorNumElements();
6283   MVT TruncVT = MVT::getIntegerVT(EltSize);
6284   SmallVector<SDValue, 8> Ops;
6285   SDLoc dl(N);
6286   for (unsigned i = 0; i != NumElts; ++i) {
6287     ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
6288     const APInt &CInt = C->getAPIntValue();
6289     // Element types smaller than 32 bits are not legal, so use i32 elements.
6290     // The values are implicitly truncated so sext vs. zext doesn't matter.
6291     Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32));
6292   }
6293   return DAG.getNode(ISD::BUILD_VECTOR, dl,
6294                      MVT::getVectorVT(TruncVT, NumElts), Ops);
6295 }
6296
6297 static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
6298   unsigned Opcode = N->getOpcode();
6299   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
6300     SDNode *N0 = N->getOperand(0).getNode();
6301     SDNode *N1 = N->getOperand(1).getNode();
6302     return N0->hasOneUse() && N1->hasOneUse() &&
6303       isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
6304   }
6305   return false;
6306 }
6307
6308 static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
6309   unsigned Opcode = N->getOpcode();
6310   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
6311     SDNode *N0 = N->getOperand(0).getNode();
6312     SDNode *N1 = N->getOperand(1).getNode();
6313     return N0->hasOneUse() && N1->hasOneUse() &&
6314       isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
6315   }
6316   return false;
6317 }
6318
6319 static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
6320   // Multiplications are only custom-lowered for 128-bit vectors so that
6321   // VMULL can be detected.  Otherwise v2i64 multiplications are not legal.
6322   EVT VT = Op.getValueType();
6323   assert(VT.is128BitVector() && VT.isInteger() &&
6324          "unexpected type for custom-lowering ISD::MUL");
6325   SDNode *N0 = Op.getOperand(0).getNode();
6326   SDNode *N1 = Op.getOperand(1).getNode();
6327   unsigned NewOpc = 0;
6328   bool isMLA = false;
6329   bool isN0SExt = isSignExtended(N0, DAG);
6330   bool isN1SExt = isSignExtended(N1, DAG);
6331   if (isN0SExt && isN1SExt)
6332     NewOpc = ARMISD::VMULLs;
6333   else {
6334     bool isN0ZExt = isZeroExtended(N0, DAG);
6335     bool isN1ZExt = isZeroExtended(N1, DAG);
6336     if (isN0ZExt && isN1ZExt)
6337       NewOpc = ARMISD::VMULLu;
6338     else if (isN1SExt || isN1ZExt) {
6339       // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
6340       // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
6341       if (isN1SExt && isAddSubSExt(N0, DAG)) {
6342         NewOpc = ARMISD::VMULLs;
6343         isMLA = true;
6344       } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
6345         NewOpc = ARMISD::VMULLu;
6346         isMLA = true;
6347       } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
6348         std::swap(N0, N1);
6349         NewOpc = ARMISD::VMULLu;
6350         isMLA = true;
6351       }
6352     }
6353
6354     if (!NewOpc) {
6355       if (VT == MVT::v2i64)
6356         // Fall through to expand this.  It is not legal.
6357         return SDValue();
6358       else
6359         // Other vector multiplications are legal.
6360         return Op;
6361     }
6362   }
6363
6364   // Legalize to a VMULL instruction.
6365   SDLoc DL(Op);
6366   SDValue Op0;
6367   SDValue Op1 = SkipExtensionForVMULL(N1, DAG);
6368   if (!isMLA) {
6369     Op0 = SkipExtensionForVMULL(N0, DAG);
6370     assert(Op0.getValueType().is64BitVector() &&
6371            Op1.getValueType().is64BitVector() &&
6372            "unexpected types for extended operands to VMULL");
6373     return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
6374   }
6375
6376   // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during
6377   // isel lowering to take advantage of no-stall back to back vmul + vmla.
6378   //   vmull q0, d4, d6
6379   //   vmlal q0, d5, d6
6380   // is faster than
6381   //   vaddl q0, d4, d5
6382   //   vmovl q1, d6
6383   //   vmul  q0, q0, q1
6384   SDValue N00 = SkipExtensionForVMULL(N0->getOperand(0).getNode(), DAG);
6385   SDValue N01 = SkipExtensionForVMULL(N0->getOperand(1).getNode(), DAG);
6386   EVT Op1VT = Op1.getValueType();
6387   return DAG.getNode(N0->getOpcode(), DL, VT,
6388                      DAG.getNode(NewOpc, DL, VT,
6389                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
6390                      DAG.getNode(NewOpc, DL, VT,
6391                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
6392 }
6393
6394 static SDValue
6395 LowerSDIV_v4i8(SDValue X, SDValue Y, SDLoc dl, SelectionDAG &DAG) {
6396   // Convert to float
6397   // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo));
6398   // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo));
6399   X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X);
6400   Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y);
6401   X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X);
6402   Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y);
6403   // Get reciprocal estimate.
6404   // float4 recip = vrecpeq_f32(yf);
6405   Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6406                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6407                    Y);
6408   // Because char has a smaller range than uchar, we can actually get away
6409   // without any newton steps.  This requires that we use a weird bias
6410   // of 0xb000, however (again, this has been exhaustively tested).
6411   // float4 result = as_float4(as_int4(xf*recip) + 0xb000);
6412   X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y);
6413   X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X);
6414   Y = DAG.getConstant(0xb000, dl, MVT::i32);
6415   Y = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Y, Y, Y, Y);
6416   X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y);
6417   X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X);
6418   // Convert back to short.
6419   X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X);
6420   X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X);
6421   return X;
6422 }
6423
6424 static SDValue
6425 LowerSDIV_v4i16(SDValue N0, SDValue N1, SDLoc dl, SelectionDAG &DAG) {
6426   SDValue N2;
6427   // Convert to float.
6428   // float4 yf = vcvt_f32_s32(vmovl_s16(y));
6429   // float4 xf = vcvt_f32_s32(vmovl_s16(x));
6430   N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0);
6431   N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1);
6432   N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
6433   N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
6434
6435   // Use reciprocal estimate and one refinement step.
6436   // float4 recip = vrecpeq_f32(yf);
6437   // recip *= vrecpsq_f32(yf, recip);
6438   N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6439                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6440                    N1);
6441   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6442                    DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
6443                    N1, N2);
6444   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6445   // Because short has a smaller range than ushort, we can actually get away
6446   // with only a single newton step.  This requires that we use a weird bias
6447   // of 89, however (again, this has been exhaustively tested).
6448   // float4 result = as_float4(as_int4(xf*recip) + 0x89);
6449   N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
6450   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
6451   N1 = DAG.getConstant(0x89, dl, MVT::i32);
6452   N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
6453   N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
6454   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
6455   // Convert back to integer and return.
6456   // return vmovn_s32(vcvt_s32_f32(result));
6457   N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
6458   N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
6459   return N0;
6460 }
6461
6462 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
6463   EVT VT = Op.getValueType();
6464   assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
6465          "unexpected type for custom-lowering ISD::SDIV");
6466
6467   SDLoc dl(Op);
6468   SDValue N0 = Op.getOperand(0);
6469   SDValue N1 = Op.getOperand(1);
6470   SDValue N2, N3;
6471
6472   if (VT == MVT::v8i8) {
6473     N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0);
6474     N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1);
6475
6476     N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
6477                      DAG.getIntPtrConstant(4, dl));
6478     N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
6479                      DAG.getIntPtrConstant(4, dl));
6480     N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
6481                      DAG.getIntPtrConstant(0, dl));
6482     N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
6483                      DAG.getIntPtrConstant(0, dl));
6484
6485     N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16
6486     N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16
6487
6488     N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
6489     N0 = LowerCONCAT_VECTORS(N0, DAG);
6490
6491     N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0);
6492     return N0;
6493   }
6494   return LowerSDIV_v4i16(N0, N1, dl, DAG);
6495 }
6496
6497 static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) {
6498   EVT VT = Op.getValueType();
6499   assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
6500          "unexpected type for custom-lowering ISD::UDIV");
6501
6502   SDLoc dl(Op);
6503   SDValue N0 = Op.getOperand(0);
6504   SDValue N1 = Op.getOperand(1);
6505   SDValue N2, N3;
6506
6507   if (VT == MVT::v8i8) {
6508     N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0);
6509     N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1);
6510
6511     N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
6512                      DAG.getIntPtrConstant(4, dl));
6513     N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
6514                      DAG.getIntPtrConstant(4, dl));
6515     N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
6516                      DAG.getIntPtrConstant(0, dl));
6517     N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
6518                      DAG.getIntPtrConstant(0, dl));
6519
6520     N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16
6521     N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16
6522
6523     N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
6524     N0 = LowerCONCAT_VECTORS(N0, DAG);
6525
6526     N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8,
6527                      DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, dl,
6528                                      MVT::i32),
6529                      N0);
6530     return N0;
6531   }
6532
6533   // v4i16 sdiv ... Convert to float.
6534   // float4 yf = vcvt_f32_s32(vmovl_u16(y));
6535   // float4 xf = vcvt_f32_s32(vmovl_u16(x));
6536   N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0);
6537   N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1);
6538   N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
6539   SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
6540
6541   // Use reciprocal estimate and two refinement steps.
6542   // float4 recip = vrecpeq_f32(yf);
6543   // recip *= vrecpsq_f32(yf, recip);
6544   // recip *= vrecpsq_f32(yf, recip);
6545   N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6546                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32),
6547                    BN1);
6548   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6549                    DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
6550                    BN1, N2);
6551   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6552   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
6553                    DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32),
6554                    BN1, N2);
6555   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
6556   // Simply multiplying by the reciprocal estimate can leave us a few ulps
6557   // too low, so we add 2 ulps (exhaustive testing shows that this is enough,
6558   // and that it will never cause us to return an answer too large).
6559   // float4 result = as_float4(as_int4(xf*recip) + 2);
6560   N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
6561   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
6562   N1 = DAG.getConstant(2, dl, MVT::i32);
6563   N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
6564   N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
6565   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
6566   // Convert back to integer and return.
6567   // return vmovn_u32(vcvt_s32_f32(result));
6568   N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
6569   N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
6570   return N0;
6571 }
6572
6573 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
6574   EVT VT = Op.getNode()->getValueType(0);
6575   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
6576
6577   unsigned Opc;
6578   bool ExtraOp = false;
6579   switch (Op.getOpcode()) {
6580   default: llvm_unreachable("Invalid code");
6581   case ISD::ADDC: Opc = ARMISD::ADDC; break;
6582   case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break;
6583   case ISD::SUBC: Opc = ARMISD::SUBC; break;
6584   case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break;
6585   }
6586
6587   if (!ExtraOp)
6588     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
6589                        Op.getOperand(1));
6590   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
6591                      Op.getOperand(1), Op.getOperand(2));
6592 }
6593
6594 SDValue ARMTargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const {
6595   assert(Subtarget->isTargetDarwin());
6596
6597   // For iOS, we want to call an alternative entry point: __sincos_stret,
6598   // return values are passed via sret.
6599   SDLoc dl(Op);
6600   SDValue Arg = Op.getOperand(0);
6601   EVT ArgVT = Arg.getValueType();
6602   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
6603   auto PtrVT = getPointerTy(DAG.getDataLayout());
6604
6605   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
6606
6607   // Pair of floats / doubles used to pass the result.
6608   StructType *RetTy = StructType::get(ArgTy, ArgTy, nullptr);
6609
6610   // Create stack object for sret.
6611   auto &DL = DAG.getDataLayout();
6612   const uint64_t ByteSize = DL.getTypeAllocSize(RetTy);
6613   const unsigned StackAlign = DL.getPrefTypeAlignment(RetTy);
6614   int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
6615   SDValue SRet = DAG.getFrameIndex(FrameIdx, getPointerTy(DL));
6616
6617   ArgListTy Args;
6618   ArgListEntry Entry;
6619
6620   Entry.Node = SRet;
6621   Entry.Ty = RetTy->getPointerTo();
6622   Entry.isSExt = false;
6623   Entry.isZExt = false;
6624   Entry.isSRet = true;
6625   Args.push_back(Entry);
6626
6627   Entry.Node = Arg;
6628   Entry.Ty = ArgTy;
6629   Entry.isSExt = false;
6630   Entry.isZExt = false;
6631   Args.push_back(Entry);
6632
6633   const char *LibcallName  = (ArgVT == MVT::f64)
6634   ? "__sincos_stret" : "__sincosf_stret";
6635   SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy(DL));
6636
6637   TargetLowering::CallLoweringInfo CLI(DAG);
6638   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
6639     .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()), Callee,
6640                std::move(Args), 0)
6641     .setDiscardResult();
6642
6643   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
6644
6645   SDValue LoadSin = DAG.getLoad(ArgVT, dl, CallResult.second, SRet,
6646                                 MachinePointerInfo(), false, false, false, 0);
6647
6648   // Address of cos field.
6649   SDValue Add = DAG.getNode(ISD::ADD, dl, PtrVT, SRet,
6650                             DAG.getIntPtrConstant(ArgVT.getStoreSize(), dl));
6651   SDValue LoadCos = DAG.getLoad(ArgVT, dl, LoadSin.getValue(1), Add,
6652                                 MachinePointerInfo(), false, false, false, 0);
6653
6654   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
6655   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys,
6656                      LoadSin.getValue(0), LoadCos.getValue(0));
6657 }
6658
6659 static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) {
6660   // Monotonic load/store is legal for all targets
6661   if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic)
6662     return Op;
6663
6664   // Acquire/Release load/store is not legal for targets without a
6665   // dmb or equivalent available.
6666   return SDValue();
6667 }
6668
6669 static void ReplaceREADCYCLECOUNTER(SDNode *N,
6670                                     SmallVectorImpl<SDValue> &Results,
6671                                     SelectionDAG &DAG,
6672                                     const ARMSubtarget *Subtarget) {
6673   SDLoc DL(N);
6674   SDValue Cycles32, OutChain;
6675
6676   if (Subtarget->hasPerfMon()) {
6677     // Under Power Management extensions, the cycle-count is:
6678     //    mrc p15, #0, <Rt>, c9, c13, #0
6679     SDValue Ops[] = { N->getOperand(0), // Chain
6680                       DAG.getConstant(Intrinsic::arm_mrc, DL, MVT::i32),
6681                       DAG.getConstant(15, DL, MVT::i32),
6682                       DAG.getConstant(0, DL, MVT::i32),
6683                       DAG.getConstant(9, DL, MVT::i32),
6684                       DAG.getConstant(13, DL, MVT::i32),
6685                       DAG.getConstant(0, DL, MVT::i32)
6686     };
6687
6688     Cycles32 = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DL,
6689                            DAG.getVTList(MVT::i32, MVT::Other), Ops);
6690     OutChain = Cycles32.getValue(1);
6691   } else {
6692     // Intrinsic is defined to return 0 on unsupported platforms. Technically
6693     // there are older ARM CPUs that have implementation-specific ways of
6694     // obtaining this information (FIXME!).
6695     Cycles32 = DAG.getConstant(0, DL, MVT::i32);
6696     OutChain = DAG.getEntryNode();
6697   }
6698
6699
6700   SDValue Cycles64 = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64,
6701                                  Cycles32, DAG.getConstant(0, DL, MVT::i32));
6702   Results.push_back(Cycles64);
6703   Results.push_back(OutChain);
6704 }
6705
6706 SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
6707   switch (Op.getOpcode()) {
6708   default: llvm_unreachable("Don't know how to custom lower this!");
6709   case ISD::WRITE_REGISTER: return LowerWRITE_REGISTER(Op, DAG);
6710   case ISD::ConstantPool:  return LowerConstantPool(Op, DAG);
6711   case ISD::BlockAddress:  return LowerBlockAddress(Op, DAG);
6712   case ISD::GlobalAddress:
6713     switch (Subtarget->getTargetTriple().getObjectFormat()) {
6714     default: llvm_unreachable("unknown object format");
6715     case Triple::COFF:
6716       return LowerGlobalAddressWindows(Op, DAG);
6717     case Triple::ELF:
6718       return LowerGlobalAddressELF(Op, DAG);
6719     case Triple::MachO:
6720       return LowerGlobalAddressDarwin(Op, DAG);
6721     }
6722   case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
6723   case ISD::SELECT:        return LowerSELECT(Op, DAG);
6724   case ISD::SELECT_CC:     return LowerSELECT_CC(Op, DAG);
6725   case ISD::BR_CC:         return LowerBR_CC(Op, DAG);
6726   case ISD::BR_JT:         return LowerBR_JT(Op, DAG);
6727   case ISD::VASTART:       return LowerVASTART(Op, DAG);
6728   case ISD::ATOMIC_FENCE:  return LowerATOMIC_FENCE(Op, DAG, Subtarget);
6729   case ISD::PREFETCH:      return LowerPREFETCH(Op, DAG, Subtarget);
6730   case ISD::SINT_TO_FP:
6731   case ISD::UINT_TO_FP:    return LowerINT_TO_FP(Op, DAG);
6732   case ISD::FP_TO_SINT:
6733   case ISD::FP_TO_UINT:    return LowerFP_TO_INT(Op, DAG);
6734   case ISD::FCOPYSIGN:     return LowerFCOPYSIGN(Op, DAG);
6735   case ISD::RETURNADDR:    return LowerRETURNADDR(Op, DAG);
6736   case ISD::FRAMEADDR:     return LowerFRAMEADDR(Op, DAG);
6737   case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
6738   case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG);
6739   case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG);
6740   case ISD::EH_SJLJ_SETUP_DISPATCH: return LowerEH_SJLJ_SETUP_DISPATCH(Op, DAG);
6741   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG,
6742                                                                Subtarget);
6743   case ISD::BITCAST:       return ExpandBITCAST(Op.getNode(), DAG);
6744   case ISD::SHL:
6745   case ISD::SRL:
6746   case ISD::SRA:           return LowerShift(Op.getNode(), DAG, Subtarget);
6747   case ISD::SHL_PARTS:     return LowerShiftLeftParts(Op, DAG);
6748   case ISD::SRL_PARTS:
6749   case ISD::SRA_PARTS:     return LowerShiftRightParts(Op, DAG);
6750   case ISD::CTTZ:
6751   case ISD::CTTZ_ZERO_UNDEF: return LowerCTTZ(Op.getNode(), DAG, Subtarget);
6752   case ISD::CTPOP:         return LowerCTPOP(Op.getNode(), DAG, Subtarget);
6753   case ISD::SETCC:         return LowerVSETCC(Op, DAG);
6754   case ISD::ConstantFP:    return LowerConstantFP(Op, DAG, Subtarget);
6755   case ISD::BUILD_VECTOR:  return LowerBUILD_VECTOR(Op, DAG, Subtarget);
6756   case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6757   case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6758   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6759   case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
6760   case ISD::FLT_ROUNDS_:   return LowerFLT_ROUNDS_(Op, DAG);
6761   case ISD::MUL:           return LowerMUL(Op, DAG);
6762   case ISD::SDIV:          return LowerSDIV(Op, DAG);
6763   case ISD::UDIV:          return LowerUDIV(Op, DAG);
6764   case ISD::ADDC:
6765   case ISD::ADDE:
6766   case ISD::SUBC:
6767   case ISD::SUBE:          return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
6768   case ISD::SADDO:
6769   case ISD::UADDO:
6770   case ISD::SSUBO:
6771   case ISD::USUBO:
6772     return LowerXALUO(Op, DAG);
6773   case ISD::ATOMIC_LOAD:
6774   case ISD::ATOMIC_STORE:  return LowerAtomicLoadStore(Op, DAG);
6775   case ISD::FSINCOS:       return LowerFSINCOS(Op, DAG);
6776   case ISD::SDIVREM:
6777   case ISD::UDIVREM:       return LowerDivRem(Op, DAG);
6778   case ISD::DYNAMIC_STACKALLOC:
6779     if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment())
6780       return LowerDYNAMIC_STACKALLOC(Op, DAG);
6781     llvm_unreachable("Don't know how to custom lower this!");
6782   case ISD::FP_ROUND: return LowerFP_ROUND(Op, DAG);
6783   case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
6784   }
6785 }
6786
6787 /// ReplaceNodeResults - Replace the results of node with an illegal result
6788 /// type with new values built out of custom code.
6789 void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
6790                                            SmallVectorImpl<SDValue>&Results,
6791                                            SelectionDAG &DAG) const {
6792   SDValue Res;
6793   switch (N->getOpcode()) {
6794   default:
6795     llvm_unreachable("Don't know how to custom expand this!");
6796   case ISD::READ_REGISTER:
6797     ExpandREAD_REGISTER(N, Results, DAG);
6798     break;
6799   case ISD::BITCAST:
6800     Res = ExpandBITCAST(N, DAG);
6801     break;
6802   case ISD::SRL:
6803   case ISD::SRA:
6804     Res = Expand64BitShift(N, DAG, Subtarget);
6805     break;
6806   case ISD::READCYCLECOUNTER:
6807     ReplaceREADCYCLECOUNTER(N, Results, DAG, Subtarget);
6808     return;
6809   }
6810   if (Res.getNode())
6811     Results.push_back(Res);
6812 }
6813
6814 //===----------------------------------------------------------------------===//
6815 //                           ARM Scheduler Hooks
6816 //===----------------------------------------------------------------------===//
6817
6818 /// SetupEntryBlockForSjLj - Insert code into the entry block that creates and
6819 /// registers the function context.
6820 void ARMTargetLowering::
6821 SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB,
6822                        MachineBasicBlock *DispatchBB, int FI) const {
6823   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
6824   DebugLoc dl = MI->getDebugLoc();
6825   MachineFunction *MF = MBB->getParent();
6826   MachineRegisterInfo *MRI = &MF->getRegInfo();
6827   MachineConstantPool *MCP = MF->getConstantPool();
6828   ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
6829   const Function *F = MF->getFunction();
6830
6831   bool isThumb = Subtarget->isThumb();
6832   bool isThumb2 = Subtarget->isThumb2();
6833
6834   unsigned PCLabelId = AFI->createPICLabelUId();
6835   unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8;
6836   ARMConstantPoolValue *CPV =
6837     ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj);
6838   unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
6839
6840   const TargetRegisterClass *TRC = isThumb ? &ARM::tGPRRegClass
6841                                            : &ARM::GPRRegClass;
6842
6843   // Grab constant pool and fixed stack memory operands.
6844   MachineMemOperand *CPMMO =
6845     MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(),
6846                              MachineMemOperand::MOLoad, 4, 4);
6847
6848   MachineMemOperand *FIMMOSt =
6849     MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
6850                              MachineMemOperand::MOStore, 4, 4);
6851
6852   // Load the address of the dispatch MBB into the jump buffer.
6853   if (isThumb2) {
6854     // Incoming value: jbuf
6855     //   ldr.n  r5, LCPI1_1
6856     //   orr    r5, r5, #1
6857     //   add    r5, pc
6858     //   str    r5, [$jbuf, #+4] ; &jbuf[1]
6859     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6860     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1)
6861                    .addConstantPoolIndex(CPI)
6862                    .addMemOperand(CPMMO));
6863     // Set the low bit because of thumb mode.
6864     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6865     AddDefaultCC(
6866       AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2)
6867                      .addReg(NewVReg1, RegState::Kill)
6868                      .addImm(0x01)));
6869     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6870     BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3)
6871       .addReg(NewVReg2, RegState::Kill)
6872       .addImm(PCLabelId);
6873     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12))
6874                    .addReg(NewVReg3, RegState::Kill)
6875                    .addFrameIndex(FI)
6876                    .addImm(36)  // &jbuf[1] :: pc
6877                    .addMemOperand(FIMMOSt));
6878   } else if (isThumb) {
6879     // Incoming value: jbuf
6880     //   ldr.n  r1, LCPI1_4
6881     //   add    r1, pc
6882     //   mov    r2, #1
6883     //   orrs   r1, r2
6884     //   add    r2, $jbuf, #+4 ; &jbuf[1]
6885     //   str    r1, [r2]
6886     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6887     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1)
6888                    .addConstantPoolIndex(CPI)
6889                    .addMemOperand(CPMMO));
6890     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6891     BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2)
6892       .addReg(NewVReg1, RegState::Kill)
6893       .addImm(PCLabelId);
6894     // Set the low bit because of thumb mode.
6895     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6896     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3)
6897                    .addReg(ARM::CPSR, RegState::Define)
6898                    .addImm(1));
6899     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6900     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4)
6901                    .addReg(ARM::CPSR, RegState::Define)
6902                    .addReg(NewVReg2, RegState::Kill)
6903                    .addReg(NewVReg3, RegState::Kill));
6904     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6905     BuildMI(*MBB, MI, dl, TII->get(ARM::tADDframe), NewVReg5)
6906             .addFrameIndex(FI)
6907             .addImm(36); // &jbuf[1] :: pc
6908     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi))
6909                    .addReg(NewVReg4, RegState::Kill)
6910                    .addReg(NewVReg5, RegState::Kill)
6911                    .addImm(0)
6912                    .addMemOperand(FIMMOSt));
6913   } else {
6914     // Incoming value: jbuf
6915     //   ldr  r1, LCPI1_1
6916     //   add  r1, pc, r1
6917     //   str  r1, [$jbuf, #+4] ; &jbuf[1]
6918     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6919     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12),  NewVReg1)
6920                    .addConstantPoolIndex(CPI)
6921                    .addImm(0)
6922                    .addMemOperand(CPMMO));
6923     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6924     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2)
6925                    .addReg(NewVReg1, RegState::Kill)
6926                    .addImm(PCLabelId));
6927     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12))
6928                    .addReg(NewVReg2, RegState::Kill)
6929                    .addFrameIndex(FI)
6930                    .addImm(36)  // &jbuf[1] :: pc
6931                    .addMemOperand(FIMMOSt));
6932   }
6933 }
6934
6935 void ARMTargetLowering::EmitSjLjDispatchBlock(MachineInstr *MI,
6936                                               MachineBasicBlock *MBB) const {
6937   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
6938   DebugLoc dl = MI->getDebugLoc();
6939   MachineFunction *MF = MBB->getParent();
6940   MachineRegisterInfo *MRI = &MF->getRegInfo();
6941   MachineFrameInfo *MFI = MF->getFrameInfo();
6942   int FI = MFI->getFunctionContextIndex();
6943
6944   const TargetRegisterClass *TRC = Subtarget->isThumb() ? &ARM::tGPRRegClass
6945                                                         : &ARM::GPRnopcRegClass;
6946
6947   // Get a mapping of the call site numbers to all of the landing pads they're
6948   // associated with.
6949   DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad;
6950   unsigned MaxCSNum = 0;
6951   MachineModuleInfo &MMI = MF->getMMI();
6952   for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E;
6953        ++BB) {
6954     if (!BB->isLandingPad()) continue;
6955
6956     // FIXME: We should assert that the EH_LABEL is the first MI in the landing
6957     // pad.
6958     for (MachineBasicBlock::iterator
6959            II = BB->begin(), IE = BB->end(); II != IE; ++II) {
6960       if (!II->isEHLabel()) continue;
6961
6962       MCSymbol *Sym = II->getOperand(0).getMCSymbol();
6963       if (!MMI.hasCallSiteLandingPad(Sym)) continue;
6964
6965       SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym);
6966       for (SmallVectorImpl<unsigned>::iterator
6967              CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end();
6968            CSI != CSE; ++CSI) {
6969         CallSiteNumToLPad[*CSI].push_back(BB);
6970         MaxCSNum = std::max(MaxCSNum, *CSI);
6971       }
6972       break;
6973     }
6974   }
6975
6976   // Get an ordered list of the machine basic blocks for the jump table.
6977   std::vector<MachineBasicBlock*> LPadList;
6978   SmallPtrSet<MachineBasicBlock*, 64> InvokeBBs;
6979   LPadList.reserve(CallSiteNumToLPad.size());
6980   for (unsigned I = 1; I <= MaxCSNum; ++I) {
6981     SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I];
6982     for (SmallVectorImpl<MachineBasicBlock*>::iterator
6983            II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) {
6984       LPadList.push_back(*II);
6985       InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end());
6986     }
6987   }
6988
6989   assert(!LPadList.empty() &&
6990          "No landing pad destinations for the dispatch jump table!");
6991
6992   // Create the jump table and associated information.
6993   MachineJumpTableInfo *JTI =
6994     MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline);
6995   unsigned MJTI = JTI->createJumpTableIndex(LPadList);
6996   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
6997
6998   // Create the MBBs for the dispatch code.
6999
7000   // Shove the dispatch's address into the return slot in the function context.
7001   MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock();
7002   DispatchBB->setIsLandingPad();
7003
7004   MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock();
7005   unsigned trap_opcode;
7006   if (Subtarget->isThumb())
7007     trap_opcode = ARM::tTRAP;
7008   else
7009     trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP;
7010
7011   BuildMI(TrapBB, dl, TII->get(trap_opcode));
7012   DispatchBB->addSuccessor(TrapBB);
7013
7014   MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock();
7015   DispatchBB->addSuccessor(DispContBB);
7016
7017   // Insert and MBBs.
7018   MF->insert(MF->end(), DispatchBB);
7019   MF->insert(MF->end(), DispContBB);
7020   MF->insert(MF->end(), TrapBB);
7021
7022   // Insert code into the entry block that creates and registers the function
7023   // context.
7024   SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI);
7025
7026   MachineMemOperand *FIMMOLd =
7027     MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
7028                              MachineMemOperand::MOLoad |
7029                              MachineMemOperand::MOVolatile, 4, 4);
7030
7031   MachineInstrBuilder MIB;
7032   MIB = BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup));
7033
7034   const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII);
7035   const ARMBaseRegisterInfo &RI = AII->getRegisterInfo();
7036
7037   // Add a register mask with no preserved registers.  This results in all
7038   // registers being marked as clobbered.
7039   MIB.addRegMask(RI.getNoPreservedMask());
7040
7041   unsigned NumLPads = LPadList.size();
7042   if (Subtarget->isThumb2()) {
7043     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7044     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1)
7045                    .addFrameIndex(FI)
7046                    .addImm(4)
7047                    .addMemOperand(FIMMOLd));
7048
7049     if (NumLPads < 256) {
7050       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri))
7051                      .addReg(NewVReg1)
7052                      .addImm(LPadList.size()));
7053     } else {
7054       unsigned VReg1 = MRI->createVirtualRegister(TRC);
7055       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVi16), VReg1)
7056                      .addImm(NumLPads & 0xFFFF));
7057
7058       unsigned VReg2 = VReg1;
7059       if ((NumLPads & 0xFFFF0000) != 0) {
7060         VReg2 = MRI->createVirtualRegister(TRC);
7061         AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVTi16), VReg2)
7062                        .addReg(VReg1)
7063                        .addImm(NumLPads >> 16));
7064       }
7065
7066       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPrr))
7067                      .addReg(NewVReg1)
7068                      .addReg(VReg2));
7069     }
7070
7071     BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc))
7072       .addMBB(TrapBB)
7073       .addImm(ARMCC::HI)
7074       .addReg(ARM::CPSR);
7075
7076     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
7077     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg3)
7078                    .addJumpTableIndex(MJTI));
7079
7080     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
7081     AddDefaultCC(
7082       AddDefaultPred(
7083         BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg4)
7084         .addReg(NewVReg3, RegState::Kill)
7085         .addReg(NewVReg1)
7086         .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
7087
7088     BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT))
7089       .addReg(NewVReg4, RegState::Kill)
7090       .addReg(NewVReg1)
7091       .addJumpTableIndex(MJTI);
7092   } else if (Subtarget->isThumb()) {
7093     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7094     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1)
7095                    .addFrameIndex(FI)
7096                    .addImm(1)
7097                    .addMemOperand(FIMMOLd));
7098
7099     if (NumLPads < 256) {
7100       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8))
7101                      .addReg(NewVReg1)
7102                      .addImm(NumLPads));
7103     } else {
7104       MachineConstantPool *ConstantPool = MF->getConstantPool();
7105       Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7106       const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
7107
7108       // MachineConstantPool wants an explicit alignment.
7109       unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty);
7110       if (Align == 0)
7111         Align = MF->getDataLayout().getTypeAllocSize(C->getType());
7112       unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7113
7114       unsigned VReg1 = MRI->createVirtualRegister(TRC);
7115       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRpci))
7116                      .addReg(VReg1, RegState::Define)
7117                      .addConstantPoolIndex(Idx));
7118       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPr))
7119                      .addReg(NewVReg1)
7120                      .addReg(VReg1));
7121     }
7122
7123     BuildMI(DispatchBB, dl, TII->get(ARM::tBcc))
7124       .addMBB(TrapBB)
7125       .addImm(ARMCC::HI)
7126       .addReg(ARM::CPSR);
7127
7128     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
7129     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2)
7130                    .addReg(ARM::CPSR, RegState::Define)
7131                    .addReg(NewVReg1)
7132                    .addImm(2));
7133
7134     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
7135     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3)
7136                    .addJumpTableIndex(MJTI));
7137
7138     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
7139     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4)
7140                    .addReg(ARM::CPSR, RegState::Define)
7141                    .addReg(NewVReg2, RegState::Kill)
7142                    .addReg(NewVReg3));
7143
7144     MachineMemOperand *JTMMOLd =
7145       MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
7146                                MachineMemOperand::MOLoad, 4, 4);
7147
7148     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
7149     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5)
7150                    .addReg(NewVReg4, RegState::Kill)
7151                    .addImm(0)
7152                    .addMemOperand(JTMMOLd));
7153
7154     unsigned NewVReg6 = NewVReg5;
7155     if (RelocM == Reloc::PIC_) {
7156       NewVReg6 = MRI->createVirtualRegister(TRC);
7157       AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6)
7158                      .addReg(ARM::CPSR, RegState::Define)
7159                      .addReg(NewVReg5, RegState::Kill)
7160                      .addReg(NewVReg3));
7161     }
7162
7163     BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr))
7164       .addReg(NewVReg6, RegState::Kill)
7165       .addJumpTableIndex(MJTI);
7166   } else {
7167     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
7168     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1)
7169                    .addFrameIndex(FI)
7170                    .addImm(4)
7171                    .addMemOperand(FIMMOLd));
7172
7173     if (NumLPads < 256) {
7174       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri))
7175                      .addReg(NewVReg1)
7176                      .addImm(NumLPads));
7177     } else if (Subtarget->hasV6T2Ops() && isUInt<16>(NumLPads)) {
7178       unsigned VReg1 = MRI->createVirtualRegister(TRC);
7179       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVi16), VReg1)
7180                      .addImm(NumLPads & 0xFFFF));
7181
7182       unsigned VReg2 = VReg1;
7183       if ((NumLPads & 0xFFFF0000) != 0) {
7184         VReg2 = MRI->createVirtualRegister(TRC);
7185         AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVTi16), VReg2)
7186                        .addReg(VReg1)
7187                        .addImm(NumLPads >> 16));
7188       }
7189
7190       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
7191                      .addReg(NewVReg1)
7192                      .addReg(VReg2));
7193     } else {
7194       MachineConstantPool *ConstantPool = MF->getConstantPool();
7195       Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7196       const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
7197
7198       // MachineConstantPool wants an explicit alignment.
7199       unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty);
7200       if (Align == 0)
7201         Align = MF->getDataLayout().getTypeAllocSize(C->getType());
7202       unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7203
7204       unsigned VReg1 = MRI->createVirtualRegister(TRC);
7205       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRcp))
7206                      .addReg(VReg1, RegState::Define)
7207                      .addConstantPoolIndex(Idx)
7208                      .addImm(0));
7209       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
7210                      .addReg(NewVReg1)
7211                      .addReg(VReg1, RegState::Kill));
7212     }
7213
7214     BuildMI(DispatchBB, dl, TII->get(ARM::Bcc))
7215       .addMBB(TrapBB)
7216       .addImm(ARMCC::HI)
7217       .addReg(ARM::CPSR);
7218
7219     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
7220     AddDefaultCC(
7221       AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg3)
7222                      .addReg(NewVReg1)
7223                      .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
7224     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
7225     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg4)
7226                    .addJumpTableIndex(MJTI));
7227
7228     MachineMemOperand *JTMMOLd =
7229       MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
7230                                MachineMemOperand::MOLoad, 4, 4);
7231     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
7232     AddDefaultPred(
7233       BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg5)
7234       .addReg(NewVReg3, RegState::Kill)
7235       .addReg(NewVReg4)
7236       .addImm(0)
7237       .addMemOperand(JTMMOLd));
7238
7239     if (RelocM == Reloc::PIC_) {
7240       BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd))
7241         .addReg(NewVReg5, RegState::Kill)
7242         .addReg(NewVReg4)
7243         .addJumpTableIndex(MJTI);
7244     } else {
7245       BuildMI(DispContBB, dl, TII->get(ARM::BR_JTr))
7246         .addReg(NewVReg5, RegState::Kill)
7247         .addJumpTableIndex(MJTI);
7248     }
7249   }
7250
7251   // Add the jump table entries as successors to the MBB.
7252   SmallPtrSet<MachineBasicBlock*, 8> SeenMBBs;
7253   for (std::vector<MachineBasicBlock*>::iterator
7254          I = LPadList.begin(), E = LPadList.end(); I != E; ++I) {
7255     MachineBasicBlock *CurMBB = *I;
7256     if (SeenMBBs.insert(CurMBB).second)
7257       DispContBB->addSuccessor(CurMBB);
7258   }
7259
7260   // N.B. the order the invoke BBs are processed in doesn't matter here.
7261   const MCPhysReg *SavedRegs = RI.getCalleeSavedRegs(MF);
7262   SmallVector<MachineBasicBlock*, 64> MBBLPads;
7263   for (MachineBasicBlock *BB : InvokeBBs) {
7264
7265     // Remove the landing pad successor from the invoke block and replace it
7266     // with the new dispatch block.
7267     SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(),
7268                                                   BB->succ_end());
7269     while (!Successors.empty()) {
7270       MachineBasicBlock *SMBB = Successors.pop_back_val();
7271       if (SMBB->isLandingPad()) {
7272         BB->removeSuccessor(SMBB);
7273         MBBLPads.push_back(SMBB);
7274       }
7275     }
7276
7277     BB->addSuccessor(DispatchBB);
7278
7279     // Find the invoke call and mark all of the callee-saved registers as
7280     // 'implicit defined' so that they're spilled. This prevents code from
7281     // moving instructions to before the EH block, where they will never be
7282     // executed.
7283     for (MachineBasicBlock::reverse_iterator
7284            II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) {
7285       if (!II->isCall()) continue;
7286
7287       DenseMap<unsigned, bool> DefRegs;
7288       for (MachineInstr::mop_iterator
7289              OI = II->operands_begin(), OE = II->operands_end();
7290            OI != OE; ++OI) {
7291         if (!OI->isReg()) continue;
7292         DefRegs[OI->getReg()] = true;
7293       }
7294
7295       MachineInstrBuilder MIB(*MF, &*II);
7296
7297       for (unsigned i = 0; SavedRegs[i] != 0; ++i) {
7298         unsigned Reg = SavedRegs[i];
7299         if (Subtarget->isThumb2() &&
7300             !ARM::tGPRRegClass.contains(Reg) &&
7301             !ARM::hGPRRegClass.contains(Reg))
7302           continue;
7303         if (Subtarget->isThumb1Only() && !ARM::tGPRRegClass.contains(Reg))
7304           continue;
7305         if (!Subtarget->isThumb() && !ARM::GPRRegClass.contains(Reg))
7306           continue;
7307         if (!DefRegs[Reg])
7308           MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);
7309       }
7310
7311       break;
7312     }
7313   }
7314
7315   // Mark all former landing pads as non-landing pads. The dispatch is the only
7316   // landing pad now.
7317   for (SmallVectorImpl<MachineBasicBlock*>::iterator
7318          I = MBBLPads.begin(), E = MBBLPads.end(); I != E; ++I)
7319     (*I)->setIsLandingPad(false);
7320
7321   // The instruction is gone now.
7322   MI->eraseFromParent();
7323 }
7324
7325 static
7326 MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) {
7327   for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
7328        E = MBB->succ_end(); I != E; ++I)
7329     if (*I != Succ)
7330       return *I;
7331   llvm_unreachable("Expecting a BB with two successors!");
7332 }
7333
7334 /// Return the load opcode for a given load size. If load size >= 8,
7335 /// neon opcode will be returned.
7336 static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) {
7337   if (LdSize >= 8)
7338     return LdSize == 16 ? ARM::VLD1q32wb_fixed
7339                         : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0;
7340   if (IsThumb1)
7341     return LdSize == 4 ? ARM::tLDRi
7342                        : LdSize == 2 ? ARM::tLDRHi
7343                                      : LdSize == 1 ? ARM::tLDRBi : 0;
7344   if (IsThumb2)
7345     return LdSize == 4 ? ARM::t2LDR_POST
7346                        : LdSize == 2 ? ARM::t2LDRH_POST
7347                                      : LdSize == 1 ? ARM::t2LDRB_POST : 0;
7348   return LdSize == 4 ? ARM::LDR_POST_IMM
7349                      : LdSize == 2 ? ARM::LDRH_POST
7350                                    : LdSize == 1 ? ARM::LDRB_POST_IMM : 0;
7351 }
7352
7353 /// Return the store opcode for a given store size. If store size >= 8,
7354 /// neon opcode will be returned.
7355 static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) {
7356   if (StSize >= 8)
7357     return StSize == 16 ? ARM::VST1q32wb_fixed
7358                         : StSize == 8 ? ARM::VST1d32wb_fixed : 0;
7359   if (IsThumb1)
7360     return StSize == 4 ? ARM::tSTRi
7361                        : StSize == 2 ? ARM::tSTRHi
7362                                      : StSize == 1 ? ARM::tSTRBi : 0;
7363   if (IsThumb2)
7364     return StSize == 4 ? ARM::t2STR_POST
7365                        : StSize == 2 ? ARM::t2STRH_POST
7366                                      : StSize == 1 ? ARM::t2STRB_POST : 0;
7367   return StSize == 4 ? ARM::STR_POST_IMM
7368                      : StSize == 2 ? ARM::STRH_POST
7369                                    : StSize == 1 ? ARM::STRB_POST_IMM : 0;
7370 }
7371
7372 /// Emit a post-increment load operation with given size. The instructions
7373 /// will be added to BB at Pos.
7374 static void emitPostLd(MachineBasicBlock *BB, MachineInstr *Pos,
7375                        const TargetInstrInfo *TII, DebugLoc dl,
7376                        unsigned LdSize, unsigned Data, unsigned AddrIn,
7377                        unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
7378   unsigned LdOpc = getLdOpcode(LdSize, IsThumb1, IsThumb2);
7379   assert(LdOpc != 0 && "Should have a load opcode");
7380   if (LdSize >= 8) {
7381     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7382                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7383                        .addImm(0));
7384   } else if (IsThumb1) {
7385     // load + update AddrIn
7386     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7387                        .addReg(AddrIn).addImm(0));
7388     MachineInstrBuilder MIB =
7389         BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
7390     MIB = AddDefaultT1CC(MIB);
7391     MIB.addReg(AddrIn).addImm(LdSize);
7392     AddDefaultPred(MIB);
7393   } else if (IsThumb2) {
7394     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7395                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7396                        .addImm(LdSize));
7397   } else { // arm
7398     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
7399                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
7400                        .addReg(0).addImm(LdSize));
7401   }
7402 }
7403
7404 /// Emit a post-increment store operation with given size. The instructions
7405 /// will be added to BB at Pos.
7406 static void emitPostSt(MachineBasicBlock *BB, MachineInstr *Pos,
7407                        const TargetInstrInfo *TII, DebugLoc dl,
7408                        unsigned StSize, unsigned Data, unsigned AddrIn,
7409                        unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
7410   unsigned StOpc = getStOpcode(StSize, IsThumb1, IsThumb2);
7411   assert(StOpc != 0 && "Should have a store opcode");
7412   if (StSize >= 8) {
7413     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7414                        .addReg(AddrIn).addImm(0).addReg(Data));
7415   } else if (IsThumb1) {
7416     // store + update AddrIn
7417     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc)).addReg(Data)
7418                        .addReg(AddrIn).addImm(0));
7419     MachineInstrBuilder MIB =
7420         BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
7421     MIB = AddDefaultT1CC(MIB);
7422     MIB.addReg(AddrIn).addImm(StSize);
7423     AddDefaultPred(MIB);
7424   } else if (IsThumb2) {
7425     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7426                        .addReg(Data).addReg(AddrIn).addImm(StSize));
7427   } else { // arm
7428     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
7429                        .addReg(Data).addReg(AddrIn).addReg(0)
7430                        .addImm(StSize));
7431   }
7432 }
7433
7434 MachineBasicBlock *
7435 ARMTargetLowering::EmitStructByval(MachineInstr *MI,
7436                                    MachineBasicBlock *BB) const {
7437   // This pseudo instruction has 3 operands: dst, src, size
7438   // We expand it to a loop if size > Subtarget->getMaxInlineSizeThreshold().
7439   // Otherwise, we will generate unrolled scalar copies.
7440   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
7441   const BasicBlock *LLVM_BB = BB->getBasicBlock();
7442   MachineFunction::iterator It = BB;
7443   ++It;
7444
7445   unsigned dest = MI->getOperand(0).getReg();
7446   unsigned src = MI->getOperand(1).getReg();
7447   unsigned SizeVal = MI->getOperand(2).getImm();
7448   unsigned Align = MI->getOperand(3).getImm();
7449   DebugLoc dl = MI->getDebugLoc();
7450
7451   MachineFunction *MF = BB->getParent();
7452   MachineRegisterInfo &MRI = MF->getRegInfo();
7453   unsigned UnitSize = 0;
7454   const TargetRegisterClass *TRC = nullptr;
7455   const TargetRegisterClass *VecTRC = nullptr;
7456
7457   bool IsThumb1 = Subtarget->isThumb1Only();
7458   bool IsThumb2 = Subtarget->isThumb2();
7459
7460   if (Align & 1) {
7461     UnitSize = 1;
7462   } else if (Align & 2) {
7463     UnitSize = 2;
7464   } else {
7465     // Check whether we can use NEON instructions.
7466     if (!MF->getFunction()->hasFnAttribute(Attribute::NoImplicitFloat) &&
7467         Subtarget->hasNEON()) {
7468       if ((Align % 16 == 0) && SizeVal >= 16)
7469         UnitSize = 16;
7470       else if ((Align % 8 == 0) && SizeVal >= 8)
7471         UnitSize = 8;
7472     }
7473     // Can't use NEON instructions.
7474     if (UnitSize == 0)
7475       UnitSize = 4;
7476   }
7477
7478   // Select the correct opcode and register class for unit size load/store
7479   bool IsNeon = UnitSize >= 8;
7480   TRC = (IsThumb1 || IsThumb2) ? &ARM::tGPRRegClass : &ARM::GPRRegClass;
7481   if (IsNeon)
7482     VecTRC = UnitSize == 16 ? &ARM::DPairRegClass
7483                             : UnitSize == 8 ? &ARM::DPRRegClass
7484                                             : nullptr;
7485
7486   unsigned BytesLeft = SizeVal % UnitSize;
7487   unsigned LoopSize = SizeVal - BytesLeft;
7488
7489   if (SizeVal <= Subtarget->getMaxInlineSizeThreshold()) {
7490     // Use LDR and STR to copy.
7491     // [scratch, srcOut] = LDR_POST(srcIn, UnitSize)
7492     // [destOut] = STR_POST(scratch, destIn, UnitSize)
7493     unsigned srcIn = src;
7494     unsigned destIn = dest;
7495     for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
7496       unsigned srcOut = MRI.createVirtualRegister(TRC);
7497       unsigned destOut = MRI.createVirtualRegister(TRC);
7498       unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
7499       emitPostLd(BB, MI, TII, dl, UnitSize, scratch, srcIn, srcOut,
7500                  IsThumb1, IsThumb2);
7501       emitPostSt(BB, MI, TII, dl, UnitSize, scratch, destIn, destOut,
7502                  IsThumb1, IsThumb2);
7503       srcIn = srcOut;
7504       destIn = destOut;
7505     }
7506
7507     // Handle the leftover bytes with LDRB and STRB.
7508     // [scratch, srcOut] = LDRB_POST(srcIn, 1)
7509     // [destOut] = STRB_POST(scratch, destIn, 1)
7510     for (unsigned i = 0; i < BytesLeft; i++) {
7511       unsigned srcOut = MRI.createVirtualRegister(TRC);
7512       unsigned destOut = MRI.createVirtualRegister(TRC);
7513       unsigned scratch = MRI.createVirtualRegister(TRC);
7514       emitPostLd(BB, MI, TII, dl, 1, scratch, srcIn, srcOut,
7515                  IsThumb1, IsThumb2);
7516       emitPostSt(BB, MI, TII, dl, 1, scratch, destIn, destOut,
7517                  IsThumb1, IsThumb2);
7518       srcIn = srcOut;
7519       destIn = destOut;
7520     }
7521     MI->eraseFromParent();   // The instruction is gone now.
7522     return BB;
7523   }
7524
7525   // Expand the pseudo op to a loop.
7526   // thisMBB:
7527   //   ...
7528   //   movw varEnd, # --> with thumb2
7529   //   movt varEnd, #
7530   //   ldrcp varEnd, idx --> without thumb2
7531   //   fallthrough --> loopMBB
7532   // loopMBB:
7533   //   PHI varPhi, varEnd, varLoop
7534   //   PHI srcPhi, src, srcLoop
7535   //   PHI destPhi, dst, destLoop
7536   //   [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7537   //   [destLoop] = STR_POST(scratch, destPhi, UnitSize)
7538   //   subs varLoop, varPhi, #UnitSize
7539   //   bne loopMBB
7540   //   fallthrough --> exitMBB
7541   // exitMBB:
7542   //   epilogue to handle left-over bytes
7543   //   [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7544   //   [destOut] = STRB_POST(scratch, destLoop, 1)
7545   MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7546   MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
7547   MF->insert(It, loopMBB);
7548   MF->insert(It, exitMBB);
7549
7550   // Transfer the remainder of BB and its successor edges to exitMBB.
7551   exitMBB->splice(exitMBB->begin(), BB,
7552                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
7553   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
7554
7555   // Load an immediate to varEnd.
7556   unsigned varEnd = MRI.createVirtualRegister(TRC);
7557   if (Subtarget->useMovt(*MF)) {
7558     unsigned Vtmp = varEnd;
7559     if ((LoopSize & 0xFFFF0000) != 0)
7560       Vtmp = MRI.createVirtualRegister(TRC);
7561     AddDefaultPred(BuildMI(BB, dl,
7562                            TII->get(IsThumb2 ? ARM::t2MOVi16 : ARM::MOVi16),
7563                            Vtmp).addImm(LoopSize & 0xFFFF));
7564
7565     if ((LoopSize & 0xFFFF0000) != 0)
7566       AddDefaultPred(BuildMI(BB, dl,
7567                              TII->get(IsThumb2 ? ARM::t2MOVTi16 : ARM::MOVTi16),
7568                              varEnd)
7569                          .addReg(Vtmp)
7570                          .addImm(LoopSize >> 16));
7571   } else {
7572     MachineConstantPool *ConstantPool = MF->getConstantPool();
7573     Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
7574     const Constant *C = ConstantInt::get(Int32Ty, LoopSize);
7575
7576     // MachineConstantPool wants an explicit alignment.
7577     unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty);
7578     if (Align == 0)
7579       Align = MF->getDataLayout().getTypeAllocSize(C->getType());
7580     unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7581
7582     if (IsThumb1)
7583       AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::tLDRpci)).addReg(
7584           varEnd, RegState::Define).addConstantPoolIndex(Idx));
7585     else
7586       AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::LDRcp)).addReg(
7587           varEnd, RegState::Define).addConstantPoolIndex(Idx).addImm(0));
7588   }
7589   BB->addSuccessor(loopMBB);
7590
7591   // Generate the loop body:
7592   //   varPhi = PHI(varLoop, varEnd)
7593   //   srcPhi = PHI(srcLoop, src)
7594   //   destPhi = PHI(destLoop, dst)
7595   MachineBasicBlock *entryBB = BB;
7596   BB = loopMBB;
7597   unsigned varLoop = MRI.createVirtualRegister(TRC);
7598   unsigned varPhi = MRI.createVirtualRegister(TRC);
7599   unsigned srcLoop = MRI.createVirtualRegister(TRC);
7600   unsigned srcPhi = MRI.createVirtualRegister(TRC);
7601   unsigned destLoop = MRI.createVirtualRegister(TRC);
7602   unsigned destPhi = MRI.createVirtualRegister(TRC);
7603
7604   BuildMI(*BB, BB->begin(), dl, TII->get(ARM::PHI), varPhi)
7605     .addReg(varLoop).addMBB(loopMBB)
7606     .addReg(varEnd).addMBB(entryBB);
7607   BuildMI(BB, dl, TII->get(ARM::PHI), srcPhi)
7608     .addReg(srcLoop).addMBB(loopMBB)
7609     .addReg(src).addMBB(entryBB);
7610   BuildMI(BB, dl, TII->get(ARM::PHI), destPhi)
7611     .addReg(destLoop).addMBB(loopMBB)
7612     .addReg(dest).addMBB(entryBB);
7613
7614   //   [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
7615   //   [destLoop] = STR_POST(scratch, destPhi, UnitSiz)
7616   unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
7617   emitPostLd(BB, BB->end(), TII, dl, UnitSize, scratch, srcPhi, srcLoop,
7618              IsThumb1, IsThumb2);
7619   emitPostSt(BB, BB->end(), TII, dl, UnitSize, scratch, destPhi, destLoop,
7620              IsThumb1, IsThumb2);
7621
7622   // Decrement loop variable by UnitSize.
7623   if (IsThumb1) {
7624     MachineInstrBuilder MIB =
7625         BuildMI(*BB, BB->end(), dl, TII->get(ARM::tSUBi8), varLoop);
7626     MIB = AddDefaultT1CC(MIB);
7627     MIB.addReg(varPhi).addImm(UnitSize);
7628     AddDefaultPred(MIB);
7629   } else {
7630     MachineInstrBuilder MIB =
7631         BuildMI(*BB, BB->end(), dl,
7632                 TII->get(IsThumb2 ? ARM::t2SUBri : ARM::SUBri), varLoop);
7633     AddDefaultCC(AddDefaultPred(MIB.addReg(varPhi).addImm(UnitSize)));
7634     MIB->getOperand(5).setReg(ARM::CPSR);
7635     MIB->getOperand(5).setIsDef(true);
7636   }
7637   BuildMI(*BB, BB->end(), dl,
7638           TII->get(IsThumb1 ? ARM::tBcc : IsThumb2 ? ARM::t2Bcc : ARM::Bcc))
7639       .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
7640
7641   // loopMBB can loop back to loopMBB or fall through to exitMBB.
7642   BB->addSuccessor(loopMBB);
7643   BB->addSuccessor(exitMBB);
7644
7645   // Add epilogue to handle BytesLeft.
7646   BB = exitMBB;
7647   MachineInstr *StartOfExit = exitMBB->begin();
7648
7649   //   [scratch, srcOut] = LDRB_POST(srcLoop, 1)
7650   //   [destOut] = STRB_POST(scratch, destLoop, 1)
7651   unsigned srcIn = srcLoop;
7652   unsigned destIn = destLoop;
7653   for (unsigned i = 0; i < BytesLeft; i++) {
7654     unsigned srcOut = MRI.createVirtualRegister(TRC);
7655     unsigned destOut = MRI.createVirtualRegister(TRC);
7656     unsigned scratch = MRI.createVirtualRegister(TRC);
7657     emitPostLd(BB, StartOfExit, TII, dl, 1, scratch, srcIn, srcOut,
7658                IsThumb1, IsThumb2);
7659     emitPostSt(BB, StartOfExit, TII, dl, 1, scratch, destIn, destOut,
7660                IsThumb1, IsThumb2);
7661     srcIn = srcOut;
7662     destIn = destOut;
7663   }
7664
7665   MI->eraseFromParent();   // The instruction is gone now.
7666   return BB;
7667 }
7668
7669 MachineBasicBlock *
7670 ARMTargetLowering::EmitLowered__chkstk(MachineInstr *MI,
7671                                        MachineBasicBlock *MBB) const {
7672   const TargetMachine &TM = getTargetMachine();
7673   const TargetInstrInfo &TII = *Subtarget->getInstrInfo();
7674   DebugLoc DL = MI->getDebugLoc();
7675
7676   assert(Subtarget->isTargetWindows() &&
7677          "__chkstk is only supported on Windows");
7678   assert(Subtarget->isThumb2() && "Windows on ARM requires Thumb-2 mode");
7679
7680   // __chkstk takes the number of words to allocate on the stack in R4, and
7681   // returns the stack adjustment in number of bytes in R4.  This will not
7682   // clober any other registers (other than the obvious lr).
7683   //
7684   // Although, technically, IP should be considered a register which may be
7685   // clobbered, the call itself will not touch it.  Windows on ARM is a pure
7686   // thumb-2 environment, so there is no interworking required.  As a result, we
7687   // do not expect a veneer to be emitted by the linker, clobbering IP.
7688   //
7689   // Each module receives its own copy of __chkstk, so no import thunk is
7690   // required, again, ensuring that IP is not clobbered.
7691   //
7692   // Finally, although some linkers may theoretically provide a trampoline for
7693   // out of range calls (which is quite common due to a 32M range limitation of
7694   // branches for Thumb), we can generate the long-call version via
7695   // -mcmodel=large, alleviating the need for the trampoline which may clobber
7696   // IP.
7697
7698   switch (TM.getCodeModel()) {
7699   case CodeModel::Small:
7700   case CodeModel::Medium:
7701   case CodeModel::Default:
7702   case CodeModel::Kernel:
7703     BuildMI(*MBB, MI, DL, TII.get(ARM::tBL))
7704       .addImm((unsigned)ARMCC::AL).addReg(0)
7705       .addExternalSymbol("__chkstk")
7706       .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7707       .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7708       .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7709     break;
7710   case CodeModel::Large:
7711   case CodeModel::JITDefault: {
7712     MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
7713     unsigned Reg = MRI.createVirtualRegister(&ARM::rGPRRegClass);
7714
7715     BuildMI(*MBB, MI, DL, TII.get(ARM::t2MOVi32imm), Reg)
7716       .addExternalSymbol("__chkstk");
7717     BuildMI(*MBB, MI, DL, TII.get(ARM::tBLXr))
7718       .addImm((unsigned)ARMCC::AL).addReg(0)
7719       .addReg(Reg, RegState::Kill)
7720       .addReg(ARM::R4, RegState::Implicit | RegState::Kill)
7721       .addReg(ARM::R4, RegState::Implicit | RegState::Define)
7722       .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead);
7723     break;
7724   }
7725   }
7726
7727   AddDefaultCC(AddDefaultPred(BuildMI(*MBB, MI, DL, TII.get(ARM::t2SUBrr),
7728                                       ARM::SP)
7729                               .addReg(ARM::SP).addReg(ARM::R4)));
7730
7731   MI->eraseFromParent();
7732   return MBB;
7733 }
7734
7735 MachineBasicBlock *
7736 ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
7737                                                MachineBasicBlock *BB) const {
7738   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
7739   DebugLoc dl = MI->getDebugLoc();
7740   bool isThumb2 = Subtarget->isThumb2();
7741   switch (MI->getOpcode()) {
7742   default: {
7743     MI->dump();
7744     llvm_unreachable("Unexpected instr type to insert");
7745   }
7746   // The Thumb2 pre-indexed stores have the same MI operands, they just
7747   // define them differently in the .td files from the isel patterns, so
7748   // they need pseudos.
7749   case ARM::t2STR_preidx:
7750     MI->setDesc(TII->get(ARM::t2STR_PRE));
7751     return BB;
7752   case ARM::t2STRB_preidx:
7753     MI->setDesc(TII->get(ARM::t2STRB_PRE));
7754     return BB;
7755   case ARM::t2STRH_preidx:
7756     MI->setDesc(TII->get(ARM::t2STRH_PRE));
7757     return BB;
7758
7759   case ARM::STRi_preidx:
7760   case ARM::STRBi_preidx: {
7761     unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ?
7762       ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM;
7763     // Decode the offset.
7764     unsigned Offset = MI->getOperand(4).getImm();
7765     bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub;
7766     Offset = ARM_AM::getAM2Offset(Offset);
7767     if (isSub)
7768       Offset = -Offset;
7769
7770     MachineMemOperand *MMO = *MI->memoperands_begin();
7771     BuildMI(*BB, MI, dl, TII->get(NewOpc))
7772       .addOperand(MI->getOperand(0))  // Rn_wb
7773       .addOperand(MI->getOperand(1))  // Rt
7774       .addOperand(MI->getOperand(2))  // Rn
7775       .addImm(Offset)                 // offset (skip GPR==zero_reg)
7776       .addOperand(MI->getOperand(5))  // pred
7777       .addOperand(MI->getOperand(6))
7778       .addMemOperand(MMO);
7779     MI->eraseFromParent();
7780     return BB;
7781   }
7782   case ARM::STRr_preidx:
7783   case ARM::STRBr_preidx:
7784   case ARM::STRH_preidx: {
7785     unsigned NewOpc;
7786     switch (MI->getOpcode()) {
7787     default: llvm_unreachable("unexpected opcode!");
7788     case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break;
7789     case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break;
7790     case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break;
7791     }
7792     MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc));
7793     for (unsigned i = 0; i < MI->getNumOperands(); ++i)
7794       MIB.addOperand(MI->getOperand(i));
7795     MI->eraseFromParent();
7796     return BB;
7797   }
7798
7799   case ARM::tMOVCCr_pseudo: {
7800     // To "insert" a SELECT_CC instruction, we actually have to insert the
7801     // diamond control-flow pattern.  The incoming instruction knows the
7802     // destination vreg to set, the condition code register to branch on, the
7803     // true/false values to select between, and a branch opcode to use.
7804     const BasicBlock *LLVM_BB = BB->getBasicBlock();
7805     MachineFunction::iterator It = BB;
7806     ++It;
7807
7808     //  thisMBB:
7809     //  ...
7810     //   TrueVal = ...
7811     //   cmpTY ccX, r1, r2
7812     //   bCC copy1MBB
7813     //   fallthrough --> copy0MBB
7814     MachineBasicBlock *thisMBB  = BB;
7815     MachineFunction *F = BB->getParent();
7816     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7817     MachineBasicBlock *sinkMBB  = F->CreateMachineBasicBlock(LLVM_BB);
7818     F->insert(It, copy0MBB);
7819     F->insert(It, sinkMBB);
7820
7821     // Transfer the remainder of BB and its successor edges to sinkMBB.
7822     sinkMBB->splice(sinkMBB->begin(), BB,
7823                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
7824     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7825
7826     BB->addSuccessor(copy0MBB);
7827     BB->addSuccessor(sinkMBB);
7828
7829     BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
7830       .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
7831
7832     //  copy0MBB:
7833     //   %FalseValue = ...
7834     //   # fallthrough to sinkMBB
7835     BB = copy0MBB;
7836
7837     // Update machine-CFG edges
7838     BB->addSuccessor(sinkMBB);
7839
7840     //  sinkMBB:
7841     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7842     //  ...
7843     BB = sinkMBB;
7844     BuildMI(*BB, BB->begin(), dl,
7845             TII->get(ARM::PHI), MI->getOperand(0).getReg())
7846       .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7847       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7848
7849     MI->eraseFromParent();   // The pseudo instruction is gone now.
7850     return BB;
7851   }
7852
7853   case ARM::BCCi64:
7854   case ARM::BCCZi64: {
7855     // If there is an unconditional branch to the other successor, remove it.
7856     BB->erase(std::next(MachineBasicBlock::iterator(MI)), BB->end());
7857
7858     // Compare both parts that make up the double comparison separately for
7859     // equality.
7860     bool RHSisZero = MI->getOpcode() == ARM::BCCZi64;
7861
7862     unsigned LHS1 = MI->getOperand(1).getReg();
7863     unsigned LHS2 = MI->getOperand(2).getReg();
7864     if (RHSisZero) {
7865       AddDefaultPred(BuildMI(BB, dl,
7866                              TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7867                      .addReg(LHS1).addImm(0));
7868       BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7869         .addReg(LHS2).addImm(0)
7870         .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7871     } else {
7872       unsigned RHS1 = MI->getOperand(3).getReg();
7873       unsigned RHS2 = MI->getOperand(4).getReg();
7874       AddDefaultPred(BuildMI(BB, dl,
7875                              TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7876                      .addReg(LHS1).addReg(RHS1));
7877       BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7878         .addReg(LHS2).addReg(RHS2)
7879         .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7880     }
7881
7882     MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB();
7883     MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
7884     if (MI->getOperand(0).getImm() == ARMCC::NE)
7885       std::swap(destMBB, exitMBB);
7886
7887     BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
7888       .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR);
7889     if (isThumb2)
7890       AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB));
7891     else
7892       BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB);
7893
7894     MI->eraseFromParent();   // The pseudo instruction is gone now.
7895     return BB;
7896   }
7897
7898   case ARM::Int_eh_sjlj_setjmp:
7899   case ARM::Int_eh_sjlj_setjmp_nofp:
7900   case ARM::tInt_eh_sjlj_setjmp:
7901   case ARM::t2Int_eh_sjlj_setjmp:
7902   case ARM::t2Int_eh_sjlj_setjmp_nofp:
7903     return BB;
7904
7905   case ARM::Int_eh_sjlj_setup_dispatch:
7906     EmitSjLjDispatchBlock(MI, BB);
7907     return BB;
7908
7909   case ARM::ABS:
7910   case ARM::t2ABS: {
7911     // To insert an ABS instruction, we have to insert the
7912     // diamond control-flow pattern.  The incoming instruction knows the
7913     // source vreg to test against 0, the destination vreg to set,
7914     // the condition code register to branch on, the
7915     // true/false values to select between, and a branch opcode to use.
7916     // It transforms
7917     //     V1 = ABS V0
7918     // into
7919     //     V2 = MOVS V0
7920     //     BCC                      (branch to SinkBB if V0 >= 0)
7921     //     RSBBB: V3 = RSBri V2, 0  (compute ABS if V2 < 0)
7922     //     SinkBB: V1 = PHI(V2, V3)
7923     const BasicBlock *LLVM_BB = BB->getBasicBlock();
7924     MachineFunction::iterator BBI = BB;
7925     ++BBI;
7926     MachineFunction *Fn = BB->getParent();
7927     MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB);
7928     MachineBasicBlock *SinkBB  = Fn->CreateMachineBasicBlock(LLVM_BB);
7929     Fn->insert(BBI, RSBBB);
7930     Fn->insert(BBI, SinkBB);
7931
7932     unsigned int ABSSrcReg = MI->getOperand(1).getReg();
7933     unsigned int ABSDstReg = MI->getOperand(0).getReg();
7934     bool ABSSrcKIll = MI->getOperand(1).isKill();
7935     bool isThumb2 = Subtarget->isThumb2();
7936     MachineRegisterInfo &MRI = Fn->getRegInfo();
7937     // In Thumb mode S must not be specified if source register is the SP or
7938     // PC and if destination register is the SP, so restrict register class
7939     unsigned NewRsbDstReg =
7940       MRI.createVirtualRegister(isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRRegClass);
7941
7942     // Transfer the remainder of BB and its successor edges to sinkMBB.
7943     SinkBB->splice(SinkBB->begin(), BB,
7944                    std::next(MachineBasicBlock::iterator(MI)), BB->end());
7945     SinkBB->transferSuccessorsAndUpdatePHIs(BB);
7946
7947     BB->addSuccessor(RSBBB);
7948     BB->addSuccessor(SinkBB);
7949
7950     // fall through to SinkMBB
7951     RSBBB->addSuccessor(SinkBB);
7952
7953     // insert a cmp at the end of BB
7954     AddDefaultPred(BuildMI(BB, dl,
7955                            TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7956                    .addReg(ABSSrcReg).addImm(0));
7957
7958     // insert a bcc with opposite CC to ARMCC::MI at the end of BB
7959     BuildMI(BB, dl,
7960       TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB)
7961       .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR);
7962
7963     // insert rsbri in RSBBB
7964     // Note: BCC and rsbri will be converted into predicated rsbmi
7965     // by if-conversion pass
7966     BuildMI(*RSBBB, RSBBB->begin(), dl,
7967       TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg)
7968       .addReg(ABSSrcReg, ABSSrcKIll ? RegState::Kill : 0)
7969       .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
7970
7971     // insert PHI in SinkBB,
7972     // reuse ABSDstReg to not change uses of ABS instruction
7973     BuildMI(*SinkBB, SinkBB->begin(), dl,
7974       TII->get(ARM::PHI), ABSDstReg)
7975       .addReg(NewRsbDstReg).addMBB(RSBBB)
7976       .addReg(ABSSrcReg).addMBB(BB);
7977
7978     // remove ABS instruction
7979     MI->eraseFromParent();
7980
7981     // return last added BB
7982     return SinkBB;
7983   }
7984   case ARM::COPY_STRUCT_BYVAL_I32:
7985     ++NumLoopByVals;
7986     return EmitStructByval(MI, BB);
7987   case ARM::WIN__CHKSTK:
7988     return EmitLowered__chkstk(MI, BB);
7989   }
7990 }
7991
7992 void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI,
7993                                                       SDNode *Node) const {
7994   const MCInstrDesc *MCID = &MI->getDesc();
7995   // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB,
7996   // RSC. Coming out of isel, they have an implicit CPSR def, but the optional
7997   // operand is still set to noreg. If needed, set the optional operand's
7998   // register to CPSR, and remove the redundant implicit def.
7999   //
8000   // e.g. ADCS (..., CPSR<imp-def>) -> ADC (... opt:CPSR<def>).
8001
8002   // Rename pseudo opcodes.
8003   unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode());
8004   if (NewOpc) {
8005     const ARMBaseInstrInfo *TII = Subtarget->getInstrInfo();
8006     MCID = &TII->get(NewOpc);
8007
8008     assert(MCID->getNumOperands() == MI->getDesc().getNumOperands() + 1 &&
8009            "converted opcode should be the same except for cc_out");
8010
8011     MI->setDesc(*MCID);
8012
8013     // Add the optional cc_out operand
8014     MI->addOperand(MachineOperand::CreateReg(0, /*isDef=*/true));
8015   }
8016   unsigned ccOutIdx = MCID->getNumOperands() - 1;
8017
8018   // Any ARM instruction that sets the 's' bit should specify an optional
8019   // "cc_out" operand in the last operand position.
8020   if (!MI->hasOptionalDef() || !MCID->OpInfo[ccOutIdx].isOptionalDef()) {
8021     assert(!NewOpc && "Optional cc_out operand required");
8022     return;
8023   }
8024   // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it
8025   // since we already have an optional CPSR def.
8026   bool definesCPSR = false;
8027   bool deadCPSR = false;
8028   for (unsigned i = MCID->getNumOperands(), e = MI->getNumOperands();
8029        i != e; ++i) {
8030     const MachineOperand &MO = MI->getOperand(i);
8031     if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) {
8032       definesCPSR = true;
8033       if (MO.isDead())
8034         deadCPSR = true;
8035       MI->RemoveOperand(i);
8036       break;
8037     }
8038   }
8039   if (!definesCPSR) {
8040     assert(!NewOpc && "Optional cc_out operand required");
8041     return;
8042   }
8043   assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag");
8044   if (deadCPSR) {
8045     assert(!MI->getOperand(ccOutIdx).getReg() &&
8046            "expect uninitialized optional cc_out operand");
8047     return;
8048   }
8049
8050   // If this instruction was defined with an optional CPSR def and its dag node
8051   // had a live implicit CPSR def, then activate the optional CPSR def.
8052   MachineOperand &MO = MI->getOperand(ccOutIdx);
8053   MO.setReg(ARM::CPSR);
8054   MO.setIsDef(true);
8055 }
8056
8057 //===----------------------------------------------------------------------===//
8058 //                           ARM Optimization Hooks
8059 //===----------------------------------------------------------------------===//
8060
8061 // Helper function that checks if N is a null or all ones constant.
8062 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) {
8063   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N);
8064   if (!C)
8065     return false;
8066   return AllOnes ? C->isAllOnesValue() : C->isNullValue();
8067 }
8068
8069 // Return true if N is conditionally 0 or all ones.
8070 // Detects these expressions where cc is an i1 value:
8071 //
8072 //   (select cc 0, y)   [AllOnes=0]
8073 //   (select cc y, 0)   [AllOnes=0]
8074 //   (zext cc)          [AllOnes=0]
8075 //   (sext cc)          [AllOnes=0/1]
8076 //   (select cc -1, y)  [AllOnes=1]
8077 //   (select cc y, -1)  [AllOnes=1]
8078 //
8079 // Invert is set when N is the null/all ones constant when CC is false.
8080 // OtherOp is set to the alternative value of N.
8081 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes,
8082                                        SDValue &CC, bool &Invert,
8083                                        SDValue &OtherOp,
8084                                        SelectionDAG &DAG) {
8085   switch (N->getOpcode()) {
8086   default: return false;
8087   case ISD::SELECT: {
8088     CC = N->getOperand(0);
8089     SDValue N1 = N->getOperand(1);
8090     SDValue N2 = N->getOperand(2);
8091     if (isZeroOrAllOnes(N1, AllOnes)) {
8092       Invert = false;
8093       OtherOp = N2;
8094       return true;
8095     }
8096     if (isZeroOrAllOnes(N2, AllOnes)) {
8097       Invert = true;
8098       OtherOp = N1;
8099       return true;
8100     }
8101     return false;
8102   }
8103   case ISD::ZERO_EXTEND:
8104     // (zext cc) can never be the all ones value.
8105     if (AllOnes)
8106       return false;
8107     // Fall through.
8108   case ISD::SIGN_EXTEND: {
8109     SDLoc dl(N);
8110     EVT VT = N->getValueType(0);
8111     CC = N->getOperand(0);
8112     if (CC.getValueType() != MVT::i1)
8113       return false;
8114     Invert = !AllOnes;
8115     if (AllOnes)
8116       // When looking for an AllOnes constant, N is an sext, and the 'other'
8117       // value is 0.
8118       OtherOp = DAG.getConstant(0, dl, VT);
8119     else if (N->getOpcode() == ISD::ZERO_EXTEND)
8120       // When looking for a 0 constant, N can be zext or sext.
8121       OtherOp = DAG.getConstant(1, dl, VT);
8122     else
8123       OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl,
8124                                 VT);
8125     return true;
8126   }
8127   }
8128 }
8129
8130 // Combine a constant select operand into its use:
8131 //
8132 //   (add (select cc, 0, c), x)  -> (select cc, x, (add, x, c))
8133 //   (sub x, (select cc, 0, c))  -> (select cc, x, (sub, x, c))
8134 //   (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))  [AllOnes=1]
8135 //   (or  (select cc, 0, c), x)  -> (select cc, x, (or, x, c))
8136 //   (xor (select cc, 0, c), x)  -> (select cc, x, (xor, x, c))
8137 //
8138 // The transform is rejected if the select doesn't have a constant operand that
8139 // is null, or all ones when AllOnes is set.
8140 //
8141 // Also recognize sext/zext from i1:
8142 //
8143 //   (add (zext cc), x) -> (select cc (add x, 1), x)
8144 //   (add (sext cc), x) -> (select cc (add x, -1), x)
8145 //
8146 // These transformations eventually create predicated instructions.
8147 //
8148 // @param N       The node to transform.
8149 // @param Slct    The N operand that is a select.
8150 // @param OtherOp The other N operand (x above).
8151 // @param DCI     Context.
8152 // @param AllOnes Require the select constant to be all ones instead of null.
8153 // @returns The new node, or SDValue() on failure.
8154 static
8155 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
8156                             TargetLowering::DAGCombinerInfo &DCI,
8157                             bool AllOnes = false) {
8158   SelectionDAG &DAG = DCI.DAG;
8159   EVT VT = N->getValueType(0);
8160   SDValue NonConstantVal;
8161   SDValue CCOp;
8162   bool SwapSelectOps;
8163   if (!isConditionalZeroOrAllOnes(Slct.getNode(), AllOnes, CCOp, SwapSelectOps,
8164                                   NonConstantVal, DAG))
8165     return SDValue();
8166
8167   // Slct is now know to be the desired identity constant when CC is true.
8168   SDValue TrueVal = OtherOp;
8169   SDValue FalseVal = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
8170                                  OtherOp, NonConstantVal);
8171   // Unless SwapSelectOps says CC should be false.
8172   if (SwapSelectOps)
8173     std::swap(TrueVal, FalseVal);
8174
8175   return DAG.getNode(ISD::SELECT, SDLoc(N), VT,
8176                      CCOp, TrueVal, FalseVal);
8177 }
8178
8179 // Attempt combineSelectAndUse on each operand of a commutative operator N.
8180 static
8181 SDValue combineSelectAndUseCommutative(SDNode *N, bool AllOnes,
8182                                        TargetLowering::DAGCombinerInfo &DCI) {
8183   SDValue N0 = N->getOperand(0);
8184   SDValue N1 = N->getOperand(1);
8185   if (N0.getNode()->hasOneUse()) {
8186     SDValue Result = combineSelectAndUse(N, N0, N1, DCI, AllOnes);
8187     if (Result.getNode())
8188       return Result;
8189   }
8190   if (N1.getNode()->hasOneUse()) {
8191     SDValue Result = combineSelectAndUse(N, N1, N0, DCI, AllOnes);
8192     if (Result.getNode())
8193       return Result;
8194   }
8195   return SDValue();
8196 }
8197
8198 // AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction
8199 // (only after legalization).
8200 static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1,
8201                                  TargetLowering::DAGCombinerInfo &DCI,
8202                                  const ARMSubtarget *Subtarget) {
8203
8204   // Only perform optimization if after legalize, and if NEON is available. We
8205   // also expected both operands to be BUILD_VECTORs.
8206   if (DCI.isBeforeLegalize() || !Subtarget->hasNEON()
8207       || N0.getOpcode() != ISD::BUILD_VECTOR
8208       || N1.getOpcode() != ISD::BUILD_VECTOR)
8209     return SDValue();
8210
8211   // Check output type since VPADDL operand elements can only be 8, 16, or 32.
8212   EVT VT = N->getValueType(0);
8213   if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64)
8214     return SDValue();
8215
8216   // Check that the vector operands are of the right form.
8217   // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR
8218   // operands, where N is the size of the formed vector.
8219   // Each EXTRACT_VECTOR should have the same input vector and odd or even
8220   // index such that we have a pair wise add pattern.
8221
8222   // Grab the vector that all EXTRACT_VECTOR nodes should be referencing.
8223   if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
8224     return SDValue();
8225   SDValue Vec = N0->getOperand(0)->getOperand(0);
8226   SDNode *V = Vec.getNode();
8227   unsigned nextIndex = 0;
8228
8229   // For each operands to the ADD which are BUILD_VECTORs,
8230   // check to see if each of their operands are an EXTRACT_VECTOR with
8231   // the same vector and appropriate index.
8232   for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) {
8233     if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT
8234         && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
8235
8236       SDValue ExtVec0 = N0->getOperand(i);
8237       SDValue ExtVec1 = N1->getOperand(i);
8238
8239       // First operand is the vector, verify its the same.
8240       if (V != ExtVec0->getOperand(0).getNode() ||
8241           V != ExtVec1->getOperand(0).getNode())
8242         return SDValue();
8243
8244       // Second is the constant, verify its correct.
8245       ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1));
8246       ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1));
8247
8248       // For the constant, we want to see all the even or all the odd.
8249       if (!C0 || !C1 || C0->getZExtValue() != nextIndex
8250           || C1->getZExtValue() != nextIndex+1)
8251         return SDValue();
8252
8253       // Increment index.
8254       nextIndex+=2;
8255     } else
8256       return SDValue();
8257   }
8258
8259   // Create VPADDL node.
8260   SelectionDAG &DAG = DCI.DAG;
8261   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8262
8263   SDLoc dl(N);
8264
8265   // Build operand list.
8266   SmallVector<SDValue, 8> Ops;
8267   Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls, dl,
8268                                 TLI.getPointerTy(DAG.getDataLayout())));
8269
8270   // Input is the vector.
8271   Ops.push_back(Vec);
8272
8273   // Get widened type and narrowed type.
8274   MVT widenType;
8275   unsigned numElem = VT.getVectorNumElements();
8276   
8277   EVT inputLaneType = Vec.getValueType().getVectorElementType();
8278   switch (inputLaneType.getSimpleVT().SimpleTy) {
8279     case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break;
8280     case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break;
8281     case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break;
8282     default:
8283       llvm_unreachable("Invalid vector element type for padd optimization.");
8284   }
8285
8286   SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, widenType, Ops);
8287   unsigned ExtOp = VT.bitsGT(tmp.getValueType()) ? ISD::ANY_EXTEND : ISD::TRUNCATE;
8288   return DAG.getNode(ExtOp, dl, VT, tmp);
8289 }
8290
8291 static SDValue findMUL_LOHI(SDValue V) {
8292   if (V->getOpcode() == ISD::UMUL_LOHI ||
8293       V->getOpcode() == ISD::SMUL_LOHI)
8294     return V;
8295   return SDValue();
8296 }
8297
8298 static SDValue AddCombineTo64bitMLAL(SDNode *AddcNode,
8299                                      TargetLowering::DAGCombinerInfo &DCI,
8300                                      const ARMSubtarget *Subtarget) {
8301
8302   if (Subtarget->isThumb1Only()) return SDValue();
8303
8304   // Only perform the checks after legalize when the pattern is available.
8305   if (DCI.isBeforeLegalize()) return SDValue();
8306
8307   // Look for multiply add opportunities.
8308   // The pattern is a ISD::UMUL_LOHI followed by two add nodes, where
8309   // each add nodes consumes a value from ISD::UMUL_LOHI and there is
8310   // a glue link from the first add to the second add.
8311   // If we find this pattern, we can replace the U/SMUL_LOHI, ADDC, and ADDE by
8312   // a S/UMLAL instruction.
8313   //                  UMUL_LOHI
8314   //                 / :lo    \ :hi
8315   //                /          \          [no multiline comment]
8316   //    loAdd ->  ADDE         |
8317   //                 \ :glue  /
8318   //                  \      /
8319   //                    ADDC   <- hiAdd
8320   //
8321   assert(AddcNode->getOpcode() == ISD::ADDC && "Expect an ADDC");
8322   SDValue AddcOp0 = AddcNode->getOperand(0);
8323   SDValue AddcOp1 = AddcNode->getOperand(1);
8324
8325   // Check if the two operands are from the same mul_lohi node.
8326   if (AddcOp0.getNode() == AddcOp1.getNode())
8327     return SDValue();
8328
8329   assert(AddcNode->getNumValues() == 2 &&
8330          AddcNode->getValueType(0) == MVT::i32 &&
8331          "Expect ADDC with two result values. First: i32");
8332
8333   // Check that we have a glued ADDC node.
8334   if (AddcNode->getValueType(1) != MVT::Glue)
8335     return SDValue();
8336
8337   // Check that the ADDC adds the low result of the S/UMUL_LOHI.
8338   if (AddcOp0->getOpcode() != ISD::UMUL_LOHI &&
8339       AddcOp0->getOpcode() != ISD::SMUL_LOHI &&
8340       AddcOp1->getOpcode() != ISD::UMUL_LOHI &&
8341       AddcOp1->getOpcode() != ISD::SMUL_LOHI)
8342     return SDValue();
8343
8344   // Look for the glued ADDE.
8345   SDNode* AddeNode = AddcNode->getGluedUser();
8346   if (!AddeNode)
8347     return SDValue();
8348
8349   // Make sure it is really an ADDE.
8350   if (AddeNode->getOpcode() != ISD::ADDE)
8351     return SDValue();
8352
8353   assert(AddeNode->getNumOperands() == 3 &&
8354          AddeNode->getOperand(2).getValueType() == MVT::Glue &&
8355          "ADDE node has the wrong inputs");
8356
8357   // Check for the triangle shape.
8358   SDValue AddeOp0 = AddeNode->getOperand(0);
8359   SDValue AddeOp1 = AddeNode->getOperand(1);
8360
8361   // Make sure that the ADDE operands are not coming from the same node.
8362   if (AddeOp0.getNode() == AddeOp1.getNode())
8363     return SDValue();
8364
8365   // Find the MUL_LOHI node walking up ADDE's operands.
8366   bool IsLeftOperandMUL = false;
8367   SDValue MULOp = findMUL_LOHI(AddeOp0);
8368   if (MULOp == SDValue())
8369    MULOp = findMUL_LOHI(AddeOp1);
8370   else
8371     IsLeftOperandMUL = true;
8372   if (MULOp == SDValue())
8373     return SDValue();
8374
8375   // Figure out the right opcode.
8376   unsigned Opc = MULOp->getOpcode();
8377   unsigned FinalOpc = (Opc == ISD::SMUL_LOHI) ? ARMISD::SMLAL : ARMISD::UMLAL;
8378
8379   // Figure out the high and low input values to the MLAL node.
8380   SDValue* HiAdd = nullptr;
8381   SDValue* LoMul = nullptr;
8382   SDValue* LowAdd = nullptr;
8383
8384   // Ensure that ADDE is from high result of ISD::SMUL_LOHI.
8385   if ((AddeOp0 != MULOp.getValue(1)) && (AddeOp1 != MULOp.getValue(1)))
8386     return SDValue();
8387
8388   if (IsLeftOperandMUL)
8389     HiAdd = &AddeOp1;
8390   else
8391     HiAdd = &AddeOp0;
8392
8393
8394   // Ensure that LoMul and LowAdd are taken from correct ISD::SMUL_LOHI node
8395   // whose low result is fed to the ADDC we are checking.
8396
8397   if (AddcOp0 == MULOp.getValue(0)) {
8398     LoMul = &AddcOp0;
8399     LowAdd = &AddcOp1;
8400   }
8401   if (AddcOp1 == MULOp.getValue(0)) {
8402     LoMul = &AddcOp1;
8403     LowAdd = &AddcOp0;
8404   }
8405
8406   if (!LoMul)
8407     return SDValue();
8408
8409   // Create the merged node.
8410   SelectionDAG &DAG = DCI.DAG;
8411
8412   // Build operand list.
8413   SmallVector<SDValue, 8> Ops;
8414   Ops.push_back(LoMul->getOperand(0));
8415   Ops.push_back(LoMul->getOperand(1));
8416   Ops.push_back(*LowAdd);
8417   Ops.push_back(*HiAdd);
8418
8419   SDValue MLALNode =  DAG.getNode(FinalOpc, SDLoc(AddcNode),
8420                                  DAG.getVTList(MVT::i32, MVT::i32), Ops);
8421
8422   // Replace the ADDs' nodes uses by the MLA node's values.
8423   SDValue HiMLALResult(MLALNode.getNode(), 1);
8424   DAG.ReplaceAllUsesOfValueWith(SDValue(AddeNode, 0), HiMLALResult);
8425
8426   SDValue LoMLALResult(MLALNode.getNode(), 0);
8427   DAG.ReplaceAllUsesOfValueWith(SDValue(AddcNode, 0), LoMLALResult);
8428
8429   // Return original node to notify the driver to stop replacing.
8430   SDValue resNode(AddcNode, 0);
8431   return resNode;
8432 }
8433
8434 /// PerformADDCCombine - Target-specific dag combine transform from
8435 /// ISD::ADDC, ISD::ADDE, and ISD::MUL_LOHI to MLAL.
8436 static SDValue PerformADDCCombine(SDNode *N,
8437                                  TargetLowering::DAGCombinerInfo &DCI,
8438                                  const ARMSubtarget *Subtarget) {
8439
8440   return AddCombineTo64bitMLAL(N, DCI, Subtarget);
8441
8442 }
8443
8444 /// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
8445 /// operands N0 and N1.  This is a helper for PerformADDCombine that is
8446 /// called with the default operands, and if that fails, with commuted
8447 /// operands.
8448 static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1,
8449                                           TargetLowering::DAGCombinerInfo &DCI,
8450                                           const ARMSubtarget *Subtarget){
8451
8452   // Attempt to create vpaddl for this add.
8453   SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget);
8454   if (Result.getNode())
8455     return Result;
8456
8457   // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
8458   if (N0.getNode()->hasOneUse()) {
8459     SDValue Result = combineSelectAndUse(N, N0, N1, DCI);
8460     if (Result.getNode()) return Result;
8461   }
8462   return SDValue();
8463 }
8464
8465 /// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
8466 ///
8467 static SDValue PerformADDCombine(SDNode *N,
8468                                  TargetLowering::DAGCombinerInfo &DCI,
8469                                  const ARMSubtarget *Subtarget) {
8470   SDValue N0 = N->getOperand(0);
8471   SDValue N1 = N->getOperand(1);
8472
8473   // First try with the default operand order.
8474   SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget);
8475   if (Result.getNode())
8476     return Result;
8477
8478   // If that didn't work, try again with the operands commuted.
8479   return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget);
8480 }
8481
8482 /// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
8483 ///
8484 static SDValue PerformSUBCombine(SDNode *N,
8485                                  TargetLowering::DAGCombinerInfo &DCI) {
8486   SDValue N0 = N->getOperand(0);
8487   SDValue N1 = N->getOperand(1);
8488
8489   // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
8490   if (N1.getNode()->hasOneUse()) {
8491     SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
8492     if (Result.getNode()) return Result;
8493   }
8494
8495   return SDValue();
8496 }
8497
8498 /// PerformVMULCombine
8499 /// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the
8500 /// special multiplier accumulator forwarding.
8501 ///   vmul d3, d0, d2
8502 ///   vmla d3, d1, d2
8503 /// is faster than
8504 ///   vadd d3, d0, d1
8505 ///   vmul d3, d3, d2
8506 //  However, for (A + B) * (A + B),
8507 //    vadd d2, d0, d1
8508 //    vmul d3, d0, d2
8509 //    vmla d3, d1, d2
8510 //  is slower than
8511 //    vadd d2, d0, d1
8512 //    vmul d3, d2, d2
8513 static SDValue PerformVMULCombine(SDNode *N,
8514                                   TargetLowering::DAGCombinerInfo &DCI,
8515                                   const ARMSubtarget *Subtarget) {
8516   if (!Subtarget->hasVMLxForwarding())
8517     return SDValue();
8518
8519   SelectionDAG &DAG = DCI.DAG;
8520   SDValue N0 = N->getOperand(0);
8521   SDValue N1 = N->getOperand(1);
8522   unsigned Opcode = N0.getOpcode();
8523   if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
8524       Opcode != ISD::FADD && Opcode != ISD::FSUB) {
8525     Opcode = N1.getOpcode();
8526     if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
8527         Opcode != ISD::FADD && Opcode != ISD::FSUB)
8528       return SDValue();
8529     std::swap(N0, N1);
8530   }
8531
8532   if (N0 == N1)
8533     return SDValue();
8534
8535   EVT VT = N->getValueType(0);
8536   SDLoc DL(N);
8537   SDValue N00 = N0->getOperand(0);
8538   SDValue N01 = N0->getOperand(1);
8539   return DAG.getNode(Opcode, DL, VT,
8540                      DAG.getNode(ISD::MUL, DL, VT, N00, N1),
8541                      DAG.getNode(ISD::MUL, DL, VT, N01, N1));
8542 }
8543
8544 static SDValue PerformMULCombine(SDNode *N,
8545                                  TargetLowering::DAGCombinerInfo &DCI,
8546                                  const ARMSubtarget *Subtarget) {
8547   SelectionDAG &DAG = DCI.DAG;
8548
8549   if (Subtarget->isThumb1Only())
8550     return SDValue();
8551
8552   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8553     return SDValue();
8554
8555   EVT VT = N->getValueType(0);
8556   if (VT.is64BitVector() || VT.is128BitVector())
8557     return PerformVMULCombine(N, DCI, Subtarget);
8558   if (VT != MVT::i32)
8559     return SDValue();
8560
8561   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8562   if (!C)
8563     return SDValue();
8564
8565   int64_t MulAmt = C->getSExtValue();
8566   unsigned ShiftAmt = countTrailingZeros<uint64_t>(MulAmt);
8567
8568   ShiftAmt = ShiftAmt & (32 - 1);
8569   SDValue V = N->getOperand(0);
8570   SDLoc DL(N);
8571
8572   SDValue Res;
8573   MulAmt >>= ShiftAmt;
8574
8575   if (MulAmt >= 0) {
8576     if (isPowerOf2_32(MulAmt - 1)) {
8577       // (mul x, 2^N + 1) => (add (shl x, N), x)
8578       Res = DAG.getNode(ISD::ADD, DL, VT,
8579                         V,
8580                         DAG.getNode(ISD::SHL, DL, VT,
8581                                     V,
8582                                     DAG.getConstant(Log2_32(MulAmt - 1), DL,
8583                                                     MVT::i32)));
8584     } else if (isPowerOf2_32(MulAmt + 1)) {
8585       // (mul x, 2^N - 1) => (sub (shl x, N), x)
8586       Res = DAG.getNode(ISD::SUB, DL, VT,
8587                         DAG.getNode(ISD::SHL, DL, VT,
8588                                     V,
8589                                     DAG.getConstant(Log2_32(MulAmt + 1), DL,
8590                                                     MVT::i32)),
8591                         V);
8592     } else
8593       return SDValue();
8594   } else {
8595     uint64_t MulAmtAbs = -MulAmt;
8596     if (isPowerOf2_32(MulAmtAbs + 1)) {
8597       // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
8598       Res = DAG.getNode(ISD::SUB, DL, VT,
8599                         V,
8600                         DAG.getNode(ISD::SHL, DL, VT,
8601                                     V,
8602                                     DAG.getConstant(Log2_32(MulAmtAbs + 1), DL,
8603                                                     MVT::i32)));
8604     } else if (isPowerOf2_32(MulAmtAbs - 1)) {
8605       // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
8606       Res = DAG.getNode(ISD::ADD, DL, VT,
8607                         V,
8608                         DAG.getNode(ISD::SHL, DL, VT,
8609                                     V,
8610                                     DAG.getConstant(Log2_32(MulAmtAbs - 1), DL,
8611                                                     MVT::i32)));
8612       Res = DAG.getNode(ISD::SUB, DL, VT,
8613                         DAG.getConstant(0, DL, MVT::i32), Res);
8614
8615     } else
8616       return SDValue();
8617   }
8618
8619   if (ShiftAmt != 0)
8620     Res = DAG.getNode(ISD::SHL, DL, VT,
8621                       Res, DAG.getConstant(ShiftAmt, DL, MVT::i32));
8622
8623   // Do not add new nodes to DAG combiner worklist.
8624   DCI.CombineTo(N, Res, false);
8625   return SDValue();
8626 }
8627
8628 static SDValue PerformANDCombine(SDNode *N,
8629                                  TargetLowering::DAGCombinerInfo &DCI,
8630                                  const ARMSubtarget *Subtarget) {
8631
8632   // Attempt to use immediate-form VBIC
8633   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
8634   SDLoc dl(N);
8635   EVT VT = N->getValueType(0);
8636   SelectionDAG &DAG = DCI.DAG;
8637
8638   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8639     return SDValue();
8640
8641   APInt SplatBits, SplatUndef;
8642   unsigned SplatBitSize;
8643   bool HasAnyUndefs;
8644   if (BVN &&
8645       BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8646     if (SplatBitSize <= 64) {
8647       EVT VbicVT;
8648       SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(),
8649                                       SplatUndef.getZExtValue(), SplatBitSize,
8650                                       DAG, dl, VbicVT, VT.is128BitVector(),
8651                                       OtherModImm);
8652       if (Val.getNode()) {
8653         SDValue Input =
8654           DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0));
8655         SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val);
8656         return DAG.getNode(ISD::BITCAST, dl, VT, Vbic);
8657       }
8658     }
8659   }
8660
8661   if (!Subtarget->isThumb1Only()) {
8662     // fold (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
8663     SDValue Result = combineSelectAndUseCommutative(N, true, DCI);
8664     if (Result.getNode())
8665       return Result;
8666   }
8667
8668   return SDValue();
8669 }
8670
8671 /// PerformORCombine - Target-specific dag combine xforms for ISD::OR
8672 static SDValue PerformORCombine(SDNode *N,
8673                                 TargetLowering::DAGCombinerInfo &DCI,
8674                                 const ARMSubtarget *Subtarget) {
8675   // Attempt to use immediate-form VORR
8676   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
8677   SDLoc dl(N);
8678   EVT VT = N->getValueType(0);
8679   SelectionDAG &DAG = DCI.DAG;
8680
8681   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8682     return SDValue();
8683
8684   APInt SplatBits, SplatUndef;
8685   unsigned SplatBitSize;
8686   bool HasAnyUndefs;
8687   if (BVN && Subtarget->hasNEON() &&
8688       BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
8689     if (SplatBitSize <= 64) {
8690       EVT VorrVT;
8691       SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
8692                                       SplatUndef.getZExtValue(), SplatBitSize,
8693                                       DAG, dl, VorrVT, VT.is128BitVector(),
8694                                       OtherModImm);
8695       if (Val.getNode()) {
8696         SDValue Input =
8697           DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0));
8698         SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val);
8699         return DAG.getNode(ISD::BITCAST, dl, VT, Vorr);
8700       }
8701     }
8702   }
8703
8704   if (!Subtarget->isThumb1Only()) {
8705     // fold (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
8706     SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8707     if (Result.getNode())
8708       return Result;
8709   }
8710
8711   // The code below optimizes (or (and X, Y), Z).
8712   // The AND operand needs to have a single user to make these optimizations
8713   // profitable.
8714   SDValue N0 = N->getOperand(0);
8715   if (N0.getOpcode() != ISD::AND || !N0.hasOneUse())
8716     return SDValue();
8717   SDValue N1 = N->getOperand(1);
8718
8719   // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant.
8720   if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() &&
8721       DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
8722     APInt SplatUndef;
8723     unsigned SplatBitSize;
8724     bool HasAnyUndefs;
8725
8726     APInt SplatBits0, SplatBits1;
8727     BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1));
8728     BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1));
8729     // Ensure that the second operand of both ands are constants
8730     if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize,
8731                                       HasAnyUndefs) && !HasAnyUndefs) {
8732         if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize,
8733                                           HasAnyUndefs) && !HasAnyUndefs) {
8734             // Ensure that the bit width of the constants are the same and that
8735             // the splat arguments are logical inverses as per the pattern we
8736             // are trying to simplify.
8737             if (SplatBits0.getBitWidth() == SplatBits1.getBitWidth() &&
8738                 SplatBits0 == ~SplatBits1) {
8739                 // Canonicalize the vector type to make instruction selection
8740                 // simpler.
8741                 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
8742                 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT,
8743                                              N0->getOperand(1),
8744                                              N0->getOperand(0),
8745                                              N1->getOperand(0));
8746                 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
8747             }
8748         }
8749     }
8750   }
8751
8752   // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when
8753   // reasonable.
8754
8755   // BFI is only available on V6T2+
8756   if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops())
8757     return SDValue();
8758
8759   SDLoc DL(N);
8760   // 1) or (and A, mask), val => ARMbfi A, val, mask
8761   //      iff (val & mask) == val
8762   //
8763   // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
8764   //  2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2)
8765   //          && mask == ~mask2
8766   //  2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2)
8767   //          && ~mask == mask2
8768   //  (i.e., copy a bitfield value into another bitfield of the same width)
8769
8770   if (VT != MVT::i32)
8771     return SDValue();
8772
8773   SDValue N00 = N0.getOperand(0);
8774
8775   // The value and the mask need to be constants so we can verify this is
8776   // actually a bitfield set. If the mask is 0xffff, we can do better
8777   // via a movt instruction, so don't use BFI in that case.
8778   SDValue MaskOp = N0.getOperand(1);
8779   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp);
8780   if (!MaskC)
8781     return SDValue();
8782   unsigned Mask = MaskC->getZExtValue();
8783   if (Mask == 0xffff)
8784     return SDValue();
8785   SDValue Res;
8786   // Case (1): or (and A, mask), val => ARMbfi A, val, mask
8787   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
8788   if (N1C) {
8789     unsigned Val = N1C->getZExtValue();
8790     if ((Val & ~Mask) != Val)
8791       return SDValue();
8792
8793     if (ARM::isBitFieldInvertedMask(Mask)) {
8794       Val >>= countTrailingZeros(~Mask);
8795
8796       Res = DAG.getNode(ARMISD::BFI, DL, VT, N00,
8797                         DAG.getConstant(Val, DL, MVT::i32),
8798                         DAG.getConstant(Mask, DL, MVT::i32));
8799
8800       // Do not add new nodes to DAG combiner worklist.
8801       DCI.CombineTo(N, Res, false);
8802       return SDValue();
8803     }
8804   } else if (N1.getOpcode() == ISD::AND) {
8805     // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
8806     ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8807     if (!N11C)
8808       return SDValue();
8809     unsigned Mask2 = N11C->getZExtValue();
8810
8811     // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern
8812     // as is to match.
8813     if (ARM::isBitFieldInvertedMask(Mask) &&
8814         (Mask == ~Mask2)) {
8815       // The pack halfword instruction works better for masks that fit it,
8816       // so use that when it's available.
8817       if (Subtarget->hasT2ExtractPack() &&
8818           (Mask == 0xffff || Mask == 0xffff0000))
8819         return SDValue();
8820       // 2a
8821       unsigned amt = countTrailingZeros(Mask2);
8822       Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0),
8823                         DAG.getConstant(amt, DL, MVT::i32));
8824       Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res,
8825                         DAG.getConstant(Mask, DL, MVT::i32));
8826       // Do not add new nodes to DAG combiner worklist.
8827       DCI.CombineTo(N, Res, false);
8828       return SDValue();
8829     } else if (ARM::isBitFieldInvertedMask(~Mask) &&
8830                (~Mask == Mask2)) {
8831       // The pack halfword instruction works better for masks that fit it,
8832       // so use that when it's available.
8833       if (Subtarget->hasT2ExtractPack() &&
8834           (Mask2 == 0xffff || Mask2 == 0xffff0000))
8835         return SDValue();
8836       // 2b
8837       unsigned lsb = countTrailingZeros(Mask);
8838       Res = DAG.getNode(ISD::SRL, DL, VT, N00,
8839                         DAG.getConstant(lsb, DL, MVT::i32));
8840       Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res,
8841                         DAG.getConstant(Mask2, DL, MVT::i32));
8842       // Do not add new nodes to DAG combiner worklist.
8843       DCI.CombineTo(N, Res, false);
8844       return SDValue();
8845     }
8846   }
8847
8848   if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) &&
8849       N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) &&
8850       ARM::isBitFieldInvertedMask(~Mask)) {
8851     // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask
8852     // where lsb(mask) == #shamt and masked bits of B are known zero.
8853     SDValue ShAmt = N00.getOperand(1);
8854     unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue();
8855     unsigned LSB = countTrailingZeros(Mask);
8856     if (ShAmtC != LSB)
8857       return SDValue();
8858
8859     Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0),
8860                       DAG.getConstant(~Mask, DL, MVT::i32));
8861
8862     // Do not add new nodes to DAG combiner worklist.
8863     DCI.CombineTo(N, Res, false);
8864   }
8865
8866   return SDValue();
8867 }
8868
8869 static SDValue PerformXORCombine(SDNode *N,
8870                                  TargetLowering::DAGCombinerInfo &DCI,
8871                                  const ARMSubtarget *Subtarget) {
8872   EVT VT = N->getValueType(0);
8873   SelectionDAG &DAG = DCI.DAG;
8874
8875   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8876     return SDValue();
8877
8878   if (!Subtarget->isThumb1Only()) {
8879     // fold (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
8880     SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8881     if (Result.getNode())
8882       return Result;
8883   }
8884
8885   return SDValue();
8886 }
8887
8888 /// PerformBFICombine - (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff
8889 /// the bits being cleared by the AND are not demanded by the BFI.
8890 static SDValue PerformBFICombine(SDNode *N,
8891                                  TargetLowering::DAGCombinerInfo &DCI) {
8892   SDValue N1 = N->getOperand(1);
8893   if (N1.getOpcode() == ISD::AND) {
8894     ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8895     if (!N11C)
8896       return SDValue();
8897     unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
8898     unsigned LSB = countTrailingZeros(~InvMask);
8899     unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB;
8900     assert(Width <
8901                static_cast<unsigned>(std::numeric_limits<unsigned>::digits) &&
8902            "undefined behavior");
8903     unsigned Mask = (1u << Width) - 1;
8904     unsigned Mask2 = N11C->getZExtValue();
8905     if ((Mask & (~Mask2)) == 0)
8906       return DCI.DAG.getNode(ARMISD::BFI, SDLoc(N), N->getValueType(0),
8907                              N->getOperand(0), N1.getOperand(0),
8908                              N->getOperand(2));
8909   }
8910   return SDValue();
8911 }
8912
8913 /// PerformVMOVRRDCombine - Target-specific dag combine xforms for
8914 /// ARMISD::VMOVRRD.
8915 static SDValue PerformVMOVRRDCombine(SDNode *N,
8916                                      TargetLowering::DAGCombinerInfo &DCI,
8917                                      const ARMSubtarget *Subtarget) {
8918   // vmovrrd(vmovdrr x, y) -> x,y
8919   SDValue InDouble = N->getOperand(0);
8920   if (InDouble.getOpcode() == ARMISD::VMOVDRR && !Subtarget->isFPOnlySP())
8921     return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
8922
8923   // vmovrrd(load f64) -> (load i32), (load i32)
8924   SDNode *InNode = InDouble.getNode();
8925   if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() &&
8926       InNode->getValueType(0) == MVT::f64 &&
8927       InNode->getOperand(1).getOpcode() == ISD::FrameIndex &&
8928       !cast<LoadSDNode>(InNode)->isVolatile()) {
8929     // TODO: Should this be done for non-FrameIndex operands?
8930     LoadSDNode *LD = cast<LoadSDNode>(InNode);
8931
8932     SelectionDAG &DAG = DCI.DAG;
8933     SDLoc DL(LD);
8934     SDValue BasePtr = LD->getBasePtr();
8935     SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr,
8936                                  LD->getPointerInfo(), LD->isVolatile(),
8937                                  LD->isNonTemporal(), LD->isInvariant(),
8938                                  LD->getAlignment());
8939
8940     SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
8941                                     DAG.getConstant(4, DL, MVT::i32));
8942     SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr,
8943                                  LD->getPointerInfo(), LD->isVolatile(),
8944                                  LD->isNonTemporal(), LD->isInvariant(),
8945                                  std::min(4U, LD->getAlignment() / 2));
8946
8947     DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1));
8948     if (DCI.DAG.getDataLayout().isBigEndian())
8949       std::swap (NewLD1, NewLD2);
8950     SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2);
8951     return Result;
8952   }
8953
8954   return SDValue();
8955 }
8956
8957 /// PerformVMOVDRRCombine - Target-specific dag combine xforms for
8958 /// ARMISD::VMOVDRR.  This is also used for BUILD_VECTORs with 2 operands.
8959 static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) {
8960   // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X)
8961   SDValue Op0 = N->getOperand(0);
8962   SDValue Op1 = N->getOperand(1);
8963   if (Op0.getOpcode() == ISD::BITCAST)
8964     Op0 = Op0.getOperand(0);
8965   if (Op1.getOpcode() == ISD::BITCAST)
8966     Op1 = Op1.getOperand(0);
8967   if (Op0.getOpcode() == ARMISD::VMOVRRD &&
8968       Op0.getNode() == Op1.getNode() &&
8969       Op0.getResNo() == 0 && Op1.getResNo() == 1)
8970     return DAG.getNode(ISD::BITCAST, SDLoc(N),
8971                        N->getValueType(0), Op0.getOperand(0));
8972   return SDValue();
8973 }
8974
8975 /// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node
8976 /// are normal, non-volatile loads.  If so, it is profitable to bitcast an
8977 /// i64 vector to have f64 elements, since the value can then be loaded
8978 /// directly into a VFP register.
8979 static bool hasNormalLoadOperand(SDNode *N) {
8980   unsigned NumElts = N->getValueType(0).getVectorNumElements();
8981   for (unsigned i = 0; i < NumElts; ++i) {
8982     SDNode *Elt = N->getOperand(i).getNode();
8983     if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile())
8984       return true;
8985   }
8986   return false;
8987 }
8988
8989 /// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for
8990 /// ISD::BUILD_VECTOR.
8991 static SDValue PerformBUILD_VECTORCombine(SDNode *N,
8992                                           TargetLowering::DAGCombinerInfo &DCI,
8993                                           const ARMSubtarget *Subtarget) {
8994   // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X):
8995   // VMOVRRD is introduced when legalizing i64 types.  It forces the i64 value
8996   // into a pair of GPRs, which is fine when the value is used as a scalar,
8997   // but if the i64 value is converted to a vector, we need to undo the VMOVRRD.
8998   SelectionDAG &DAG = DCI.DAG;
8999   if (N->getNumOperands() == 2) {
9000     SDValue RV = PerformVMOVDRRCombine(N, DAG);
9001     if (RV.getNode())
9002       return RV;
9003   }
9004
9005   // Load i64 elements as f64 values so that type legalization does not split
9006   // them up into i32 values.
9007   EVT VT = N->getValueType(0);
9008   if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N))
9009     return SDValue();
9010   SDLoc dl(N);
9011   SmallVector<SDValue, 8> Ops;
9012   unsigned NumElts = VT.getVectorNumElements();
9013   for (unsigned i = 0; i < NumElts; ++i) {
9014     SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i));
9015     Ops.push_back(V);
9016     // Make the DAGCombiner fold the bitcast.
9017     DCI.AddToWorklist(V.getNode());
9018   }
9019   EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts);
9020   SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops);
9021   return DAG.getNode(ISD::BITCAST, dl, VT, BV);
9022 }
9023
9024 /// \brief Target-specific dag combine xforms for ARMISD::BUILD_VECTOR.
9025 static SDValue
9026 PerformARMBUILD_VECTORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
9027   // ARMISD::BUILD_VECTOR is introduced when legalizing ISD::BUILD_VECTOR.
9028   // At that time, we may have inserted bitcasts from integer to float.
9029   // If these bitcasts have survived DAGCombine, change the lowering of this
9030   // BUILD_VECTOR in something more vector friendly, i.e., that does not
9031   // force to use floating point types.
9032
9033   // Make sure we can change the type of the vector.
9034   // This is possible iff:
9035   // 1. The vector is only used in a bitcast to a integer type. I.e.,
9036   //    1.1. Vector is used only once.
9037   //    1.2. Use is a bit convert to an integer type.
9038   // 2. The size of its operands are 32-bits (64-bits are not legal).
9039   EVT VT = N->getValueType(0);
9040   EVT EltVT = VT.getVectorElementType();
9041
9042   // Check 1.1. and 2.
9043   if (EltVT.getSizeInBits() != 32 || !N->hasOneUse())
9044     return SDValue();
9045
9046   // By construction, the input type must be float.
9047   assert(EltVT == MVT::f32 && "Unexpected type!");
9048
9049   // Check 1.2.
9050   SDNode *Use = *N->use_begin();
9051   if (Use->getOpcode() != ISD::BITCAST ||
9052       Use->getValueType(0).isFloatingPoint())
9053     return SDValue();
9054
9055   // Check profitability.
9056   // Model is, if more than half of the relevant operands are bitcast from
9057   // i32, turn the build_vector into a sequence of insert_vector_elt.
9058   // Relevant operands are everything that is not statically
9059   // (i.e., at compile time) bitcasted.
9060   unsigned NumOfBitCastedElts = 0;
9061   unsigned NumElts = VT.getVectorNumElements();
9062   unsigned NumOfRelevantElts = NumElts;
9063   for (unsigned Idx = 0; Idx < NumElts; ++Idx) {
9064     SDValue Elt = N->getOperand(Idx);
9065     if (Elt->getOpcode() == ISD::BITCAST) {
9066       // Assume only bit cast to i32 will go away.
9067       if (Elt->getOperand(0).getValueType() == MVT::i32)
9068         ++NumOfBitCastedElts;
9069     } else if (Elt.getOpcode() == ISD::UNDEF || isa<ConstantSDNode>(Elt))
9070       // Constants are statically casted, thus do not count them as
9071       // relevant operands.
9072       --NumOfRelevantElts;
9073   }
9074
9075   // Check if more than half of the elements require a non-free bitcast.
9076   if (NumOfBitCastedElts <= NumOfRelevantElts / 2)
9077     return SDValue();
9078
9079   SelectionDAG &DAG = DCI.DAG;
9080   // Create the new vector type.
9081   EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
9082   // Check if the type is legal.
9083   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9084   if (!TLI.isTypeLegal(VecVT))
9085     return SDValue();
9086
9087   // Combine:
9088   // ARMISD::BUILD_VECTOR E1, E2, ..., EN.
9089   // => BITCAST INSERT_VECTOR_ELT
9090   //                      (INSERT_VECTOR_ELT (...), (BITCAST EN-1), N-1),
9091   //                      (BITCAST EN), N.
9092   SDValue Vec = DAG.getUNDEF(VecVT);
9093   SDLoc dl(N);
9094   for (unsigned Idx = 0 ; Idx < NumElts; ++Idx) {
9095     SDValue V = N->getOperand(Idx);
9096     if (V.getOpcode() == ISD::UNDEF)
9097       continue;
9098     if (V.getOpcode() == ISD::BITCAST &&
9099         V->getOperand(0).getValueType() == MVT::i32)
9100       // Fold obvious case.
9101       V = V.getOperand(0);
9102     else {
9103       V = DAG.getNode(ISD::BITCAST, SDLoc(V), MVT::i32, V);
9104       // Make the DAGCombiner fold the bitcasts.
9105       DCI.AddToWorklist(V.getNode());
9106     }
9107     SDValue LaneIdx = DAG.getConstant(Idx, dl, MVT::i32);
9108     Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecVT, Vec, V, LaneIdx);
9109   }
9110   Vec = DAG.getNode(ISD::BITCAST, dl, VT, Vec);
9111   // Make the DAGCombiner fold the bitcasts.
9112   DCI.AddToWorklist(Vec.getNode());
9113   return Vec;
9114 }
9115
9116 /// PerformInsertEltCombine - Target-specific dag combine xforms for
9117 /// ISD::INSERT_VECTOR_ELT.
9118 static SDValue PerformInsertEltCombine(SDNode *N,
9119                                        TargetLowering::DAGCombinerInfo &DCI) {
9120   // Bitcast an i64 load inserted into a vector to f64.
9121   // Otherwise, the i64 value will be legalized to a pair of i32 values.
9122   EVT VT = N->getValueType(0);
9123   SDNode *Elt = N->getOperand(1).getNode();
9124   if (VT.getVectorElementType() != MVT::i64 ||
9125       !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile())
9126     return SDValue();
9127
9128   SelectionDAG &DAG = DCI.DAG;
9129   SDLoc dl(N);
9130   EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
9131                                  VT.getVectorNumElements());
9132   SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0));
9133   SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1));
9134   // Make the DAGCombiner fold the bitcasts.
9135   DCI.AddToWorklist(Vec.getNode());
9136   DCI.AddToWorklist(V.getNode());
9137   SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT,
9138                                Vec, V, N->getOperand(2));
9139   return DAG.getNode(ISD::BITCAST, dl, VT, InsElt);
9140 }
9141
9142 /// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for
9143 /// ISD::VECTOR_SHUFFLE.
9144 static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) {
9145   // The LLVM shufflevector instruction does not require the shuffle mask
9146   // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does
9147   // have that requirement.  When translating to ISD::VECTOR_SHUFFLE, if the
9148   // operands do not match the mask length, they are extended by concatenating
9149   // them with undef vectors.  That is probably the right thing for other
9150   // targets, but for NEON it is better to concatenate two double-register
9151   // size vector operands into a single quad-register size vector.  Do that
9152   // transformation here:
9153   //   shuffle(concat(v1, undef), concat(v2, undef)) ->
9154   //   shuffle(concat(v1, v2), undef)
9155   SDValue Op0 = N->getOperand(0);
9156   SDValue Op1 = N->getOperand(1);
9157   if (Op0.getOpcode() != ISD::CONCAT_VECTORS ||
9158       Op1.getOpcode() != ISD::CONCAT_VECTORS ||
9159       Op0.getNumOperands() != 2 ||
9160       Op1.getNumOperands() != 2)
9161     return SDValue();
9162   SDValue Concat0Op1 = Op0.getOperand(1);
9163   SDValue Concat1Op1 = Op1.getOperand(1);
9164   if (Concat0Op1.getOpcode() != ISD::UNDEF ||
9165       Concat1Op1.getOpcode() != ISD::UNDEF)
9166     return SDValue();
9167   // Skip the transformation if any of the types are illegal.
9168   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9169   EVT VT = N->getValueType(0);
9170   if (!TLI.isTypeLegal(VT) ||
9171       !TLI.isTypeLegal(Concat0Op1.getValueType()) ||
9172       !TLI.isTypeLegal(Concat1Op1.getValueType()))
9173     return SDValue();
9174
9175   SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
9176                                   Op0.getOperand(0), Op1.getOperand(0));
9177   // Translate the shuffle mask.
9178   SmallVector<int, 16> NewMask;
9179   unsigned NumElts = VT.getVectorNumElements();
9180   unsigned HalfElts = NumElts/2;
9181   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9182   for (unsigned n = 0; n < NumElts; ++n) {
9183     int MaskElt = SVN->getMaskElt(n);
9184     int NewElt = -1;
9185     if (MaskElt < (int)HalfElts)
9186       NewElt = MaskElt;
9187     else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts))
9188       NewElt = HalfElts + MaskElt - NumElts;
9189     NewMask.push_back(NewElt);
9190   }
9191   return DAG.getVectorShuffle(VT, SDLoc(N), NewConcat,
9192                               DAG.getUNDEF(VT), NewMask.data());
9193 }
9194
9195 /// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP,
9196 /// NEON load/store intrinsics, and generic vector load/stores, to merge
9197 /// base address updates.
9198 /// For generic load/stores, the memory type is assumed to be a vector.
9199 /// The caller is assumed to have checked legality.
9200 static SDValue CombineBaseUpdate(SDNode *N,
9201                                  TargetLowering::DAGCombinerInfo &DCI) {
9202   SelectionDAG &DAG = DCI.DAG;
9203   const bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID ||
9204                             N->getOpcode() == ISD::INTRINSIC_W_CHAIN);
9205   const bool isStore = N->getOpcode() == ISD::STORE;
9206   const unsigned AddrOpIdx = ((isIntrinsic || isStore) ? 2 : 1);
9207   SDValue Addr = N->getOperand(AddrOpIdx);
9208   MemSDNode *MemN = cast<MemSDNode>(N);
9209   SDLoc dl(N);
9210
9211   // Search for a use of the address operand that is an increment.
9212   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
9213          UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
9214     SDNode *User = *UI;
9215     if (User->getOpcode() != ISD::ADD ||
9216         UI.getUse().getResNo() != Addr.getResNo())
9217       continue;
9218
9219     // Check that the add is independent of the load/store.  Otherwise, folding
9220     // it would create a cycle.
9221     if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
9222       continue;
9223
9224     // Find the new opcode for the updating load/store.
9225     bool isLoadOp = true;
9226     bool isLaneOp = false;
9227     unsigned NewOpc = 0;
9228     unsigned NumVecs = 0;
9229     if (isIntrinsic) {
9230       unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9231       switch (IntNo) {
9232       default: llvm_unreachable("unexpected intrinsic for Neon base update");
9233       case Intrinsic::arm_neon_vld1:     NewOpc = ARMISD::VLD1_UPD;
9234         NumVecs = 1; break;
9235       case Intrinsic::arm_neon_vld2:     NewOpc = ARMISD::VLD2_UPD;
9236         NumVecs = 2; break;
9237       case Intrinsic::arm_neon_vld3:     NewOpc = ARMISD::VLD3_UPD;
9238         NumVecs = 3; break;
9239       case Intrinsic::arm_neon_vld4:     NewOpc = ARMISD::VLD4_UPD;
9240         NumVecs = 4; break;
9241       case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD;
9242         NumVecs = 2; isLaneOp = true; break;
9243       case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD;
9244         NumVecs = 3; isLaneOp = true; break;
9245       case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD;
9246         NumVecs = 4; isLaneOp = true; break;
9247       case Intrinsic::arm_neon_vst1:     NewOpc = ARMISD::VST1_UPD;
9248         NumVecs = 1; isLoadOp = false; break;
9249       case Intrinsic::arm_neon_vst2:     NewOpc = ARMISD::VST2_UPD;
9250         NumVecs = 2; isLoadOp = false; break;
9251       case Intrinsic::arm_neon_vst3:     NewOpc = ARMISD::VST3_UPD;
9252         NumVecs = 3; isLoadOp = false; break;
9253       case Intrinsic::arm_neon_vst4:     NewOpc = ARMISD::VST4_UPD;
9254         NumVecs = 4; isLoadOp = false; break;
9255       case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD;
9256         NumVecs = 2; isLoadOp = false; isLaneOp = true; break;
9257       case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD;
9258         NumVecs = 3; isLoadOp = false; isLaneOp = true; break;
9259       case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD;
9260         NumVecs = 4; isLoadOp = false; isLaneOp = true; break;
9261       }
9262     } else {
9263       isLaneOp = true;
9264       switch (N->getOpcode()) {
9265       default: llvm_unreachable("unexpected opcode for Neon base update");
9266       case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break;
9267       case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break;
9268       case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break;
9269       case ISD::LOAD:       NewOpc = ARMISD::VLD1_UPD;
9270         NumVecs = 1; isLaneOp = false; break;
9271       case ISD::STORE:      NewOpc = ARMISD::VST1_UPD;
9272         NumVecs = 1; isLaneOp = false; isLoadOp = false; break;
9273       }
9274     }
9275
9276     // Find the size of memory referenced by the load/store.
9277     EVT VecTy;
9278     if (isLoadOp) {
9279       VecTy = N->getValueType(0);
9280     } else if (isIntrinsic) {
9281       VecTy = N->getOperand(AddrOpIdx+1).getValueType();
9282     } else {
9283       assert(isStore && "Node has to be a load, a store, or an intrinsic!");
9284       VecTy = N->getOperand(1).getValueType();
9285     }
9286
9287     unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
9288     if (isLaneOp)
9289       NumBytes /= VecTy.getVectorNumElements();
9290
9291     // If the increment is a constant, it must match the memory ref size.
9292     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
9293     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
9294       uint64_t IncVal = CInc->getZExtValue();
9295       if (IncVal != NumBytes)
9296         continue;
9297     } else if (NumBytes >= 3 * 16) {
9298       // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two
9299       // separate instructions that make it harder to use a non-constant update.
9300       continue;
9301     }
9302
9303     // OK, we found an ADD we can fold into the base update.
9304     // Now, create a _UPD node, taking care of not breaking alignment.
9305
9306     EVT AlignedVecTy = VecTy;
9307     unsigned Alignment = MemN->getAlignment();
9308
9309     // If this is a less-than-standard-aligned load/store, change the type to
9310     // match the standard alignment.
9311     // The alignment is overlooked when selecting _UPD variants; and it's
9312     // easier to introduce bitcasts here than fix that.
9313     // There are 3 ways to get to this base-update combine:
9314     // - intrinsics: they are assumed to be properly aligned (to the standard
9315     //   alignment of the memory type), so we don't need to do anything.
9316     // - ARMISD::VLDx nodes: they are only generated from the aforementioned
9317     //   intrinsics, so, likewise, there's nothing to do.
9318     // - generic load/store instructions: the alignment is specified as an
9319     //   explicit operand, rather than implicitly as the standard alignment
9320     //   of the memory type (like the intrisics).  We need to change the
9321     //   memory type to match the explicit alignment.  That way, we don't
9322     //   generate non-standard-aligned ARMISD::VLDx nodes.
9323     if (isa<LSBaseSDNode>(N)) {
9324       if (Alignment == 0)
9325         Alignment = 1;
9326       if (Alignment < VecTy.getScalarSizeInBits() / 8) {
9327         MVT EltTy = MVT::getIntegerVT(Alignment * 8);
9328         assert(NumVecs == 1 && "Unexpected multi-element generic load/store.");
9329         assert(!isLaneOp && "Unexpected generic load/store lane.");
9330         unsigned NumElts = NumBytes / (EltTy.getSizeInBits() / 8);
9331         AlignedVecTy = MVT::getVectorVT(EltTy, NumElts);
9332       }
9333       // Don't set an explicit alignment on regular load/stores that we want
9334       // to transform to VLD/VST 1_UPD nodes.
9335       // This matches the behavior of regular load/stores, which only get an
9336       // explicit alignment if the MMO alignment is larger than the standard
9337       // alignment of the memory type.
9338       // Intrinsics, however, always get an explicit alignment, set to the
9339       // alignment of the MMO.
9340       Alignment = 1;
9341     }
9342
9343     // Create the new updating load/store node.
9344     // First, create an SDVTList for the new updating node's results.
9345     EVT Tys[6];
9346     unsigned NumResultVecs = (isLoadOp ? NumVecs : 0);
9347     unsigned n;
9348     for (n = 0; n < NumResultVecs; ++n)
9349       Tys[n] = AlignedVecTy;
9350     Tys[n++] = MVT::i32;
9351     Tys[n] = MVT::Other;
9352     SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumResultVecs+2));
9353
9354     // Then, gather the new node's operands.
9355     SmallVector<SDValue, 8> Ops;
9356     Ops.push_back(N->getOperand(0)); // incoming chain
9357     Ops.push_back(N->getOperand(AddrOpIdx));
9358     Ops.push_back(Inc);
9359
9360     if (StoreSDNode *StN = dyn_cast<StoreSDNode>(N)) {
9361       // Try to match the intrinsic's signature
9362       Ops.push_back(StN->getValue());
9363     } else {
9364       // Loads (and of course intrinsics) match the intrinsics' signature,
9365       // so just add all but the alignment operand.
9366       for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands() - 1; ++i)
9367         Ops.push_back(N->getOperand(i));
9368     }
9369
9370     // For all node types, the alignment operand is always the last one.
9371     Ops.push_back(DAG.getConstant(Alignment, dl, MVT::i32));
9372
9373     // If this is a non-standard-aligned STORE, the penultimate operand is the
9374     // stored value.  Bitcast it to the aligned type.
9375     if (AlignedVecTy != VecTy && N->getOpcode() == ISD::STORE) {
9376       SDValue &StVal = Ops[Ops.size()-2];
9377       StVal = DAG.getNode(ISD::BITCAST, dl, AlignedVecTy, StVal);
9378     }
9379
9380     SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, dl, SDTys,
9381                                            Ops, AlignedVecTy,
9382                                            MemN->getMemOperand());
9383
9384     // Update the uses.
9385     SmallVector<SDValue, 5> NewResults;
9386     for (unsigned i = 0; i < NumResultVecs; ++i)
9387       NewResults.push_back(SDValue(UpdN.getNode(), i));
9388
9389     // If this is an non-standard-aligned LOAD, the first result is the loaded
9390     // value.  Bitcast it to the expected result type.
9391     if (AlignedVecTy != VecTy && N->getOpcode() == ISD::LOAD) {
9392       SDValue &LdVal = NewResults[0];
9393       LdVal = DAG.getNode(ISD::BITCAST, dl, VecTy, LdVal);
9394     }
9395
9396     NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain
9397     DCI.CombineTo(N, NewResults);
9398     DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
9399
9400     break;
9401   }
9402   return SDValue();
9403 }
9404
9405 static SDValue PerformVLDCombine(SDNode *N,
9406                                  TargetLowering::DAGCombinerInfo &DCI) {
9407   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
9408     return SDValue();
9409
9410   return CombineBaseUpdate(N, DCI);
9411 }
9412
9413 /// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a
9414 /// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic
9415 /// are also VDUPLANEs.  If so, combine them to a vldN-dup operation and
9416 /// return true.
9417 static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
9418   SelectionDAG &DAG = DCI.DAG;
9419   EVT VT = N->getValueType(0);
9420   // vldN-dup instructions only support 64-bit vectors for N > 1.
9421   if (!VT.is64BitVector())
9422     return false;
9423
9424   // Check if the VDUPLANE operand is a vldN-dup intrinsic.
9425   SDNode *VLD = N->getOperand(0).getNode();
9426   if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN)
9427     return false;
9428   unsigned NumVecs = 0;
9429   unsigned NewOpc = 0;
9430   unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue();
9431   if (IntNo == Intrinsic::arm_neon_vld2lane) {
9432     NumVecs = 2;
9433     NewOpc = ARMISD::VLD2DUP;
9434   } else if (IntNo == Intrinsic::arm_neon_vld3lane) {
9435     NumVecs = 3;
9436     NewOpc = ARMISD::VLD3DUP;
9437   } else if (IntNo == Intrinsic::arm_neon_vld4lane) {
9438     NumVecs = 4;
9439     NewOpc = ARMISD::VLD4DUP;
9440   } else {
9441     return false;
9442   }
9443
9444   // First check that all the vldN-lane uses are VDUPLANEs and that the lane
9445   // numbers match the load.
9446   unsigned VLDLaneNo =
9447     cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue();
9448   for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
9449        UI != UE; ++UI) {
9450     // Ignore uses of the chain result.
9451     if (UI.getUse().getResNo() == NumVecs)
9452       continue;
9453     SDNode *User = *UI;
9454     if (User->getOpcode() != ARMISD::VDUPLANE ||
9455         VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue())
9456       return false;
9457   }
9458
9459   // Create the vldN-dup node.
9460   EVT Tys[5];
9461   unsigned n;
9462   for (n = 0; n < NumVecs; ++n)
9463     Tys[n] = VT;
9464   Tys[n] = MVT::Other;
9465   SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumVecs+1));
9466   SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) };
9467   MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD);
9468   SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, SDLoc(VLD), SDTys,
9469                                            Ops, VLDMemInt->getMemoryVT(),
9470                                            VLDMemInt->getMemOperand());
9471
9472   // Update the uses.
9473   for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
9474        UI != UE; ++UI) {
9475     unsigned ResNo = UI.getUse().getResNo();
9476     // Ignore uses of the chain result.
9477     if (ResNo == NumVecs)
9478       continue;
9479     SDNode *User = *UI;
9480     DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));
9481   }
9482
9483   // Now the vldN-lane intrinsic is dead except for its chain result.
9484   // Update uses of the chain.
9485   std::vector<SDValue> VLDDupResults;
9486   for (unsigned n = 0; n < NumVecs; ++n)
9487     VLDDupResults.push_back(SDValue(VLDDup.getNode(), n));
9488   VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs));
9489   DCI.CombineTo(VLD, VLDDupResults);
9490
9491   return true;
9492 }
9493
9494 /// PerformVDUPLANECombine - Target-specific dag combine xforms for
9495 /// ARMISD::VDUPLANE.
9496 static SDValue PerformVDUPLANECombine(SDNode *N,
9497                                       TargetLowering::DAGCombinerInfo &DCI) {
9498   SDValue Op = N->getOperand(0);
9499
9500   // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses
9501   // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation.
9502   if (CombineVLDDUP(N, DCI))
9503     return SDValue(N, 0);
9504
9505   // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is
9506   // redundant.  Ignore bit_converts for now; element sizes are checked below.
9507   while (Op.getOpcode() == ISD::BITCAST)
9508     Op = Op.getOperand(0);
9509   if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM)
9510     return SDValue();
9511
9512   // Make sure the VMOV element size is not bigger than the VDUPLANE elements.
9513   unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits();
9514   // The canonical VMOV for a zero vector uses a 32-bit element size.
9515   unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9516   unsigned EltBits;
9517   if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0)
9518     EltSize = 8;
9519   EVT VT = N->getValueType(0);
9520   if (EltSize > VT.getVectorElementType().getSizeInBits())
9521     return SDValue();
9522
9523   return DCI.DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
9524 }
9525
9526 static SDValue PerformLOADCombine(SDNode *N,
9527                                   TargetLowering::DAGCombinerInfo &DCI) {
9528   EVT VT = N->getValueType(0);
9529
9530   // If this is a legal vector load, try to combine it into a VLD1_UPD.
9531   if (ISD::isNormalLoad(N) && VT.isVector() &&
9532       DCI.DAG.getTargetLoweringInfo().isTypeLegal(VT))
9533     return CombineBaseUpdate(N, DCI);
9534
9535   return SDValue();
9536 }
9537
9538 /// PerformSTORECombine - Target-specific dag combine xforms for
9539 /// ISD::STORE.
9540 static SDValue PerformSTORECombine(SDNode *N,
9541                                    TargetLowering::DAGCombinerInfo &DCI) {
9542   StoreSDNode *St = cast<StoreSDNode>(N);
9543   if (St->isVolatile())
9544     return SDValue();
9545
9546   // Optimize trunc store (of multiple scalars) to shuffle and store.  First,
9547   // pack all of the elements in one place.  Next, store to memory in fewer
9548   // chunks.
9549   SDValue StVal = St->getValue();
9550   EVT VT = StVal.getValueType();
9551   if (St->isTruncatingStore() && VT.isVector()) {
9552     SelectionDAG &DAG = DCI.DAG;
9553     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9554     EVT StVT = St->getMemoryVT();
9555     unsigned NumElems = VT.getVectorNumElements();
9556     assert(StVT != VT && "Cannot truncate to the same type");
9557     unsigned FromEltSz = VT.getVectorElementType().getSizeInBits();
9558     unsigned ToEltSz = StVT.getVectorElementType().getSizeInBits();
9559
9560     // From, To sizes and ElemCount must be pow of two
9561     if (!isPowerOf2_32(NumElems * FromEltSz * ToEltSz)) return SDValue();
9562
9563     // We are going to use the original vector elt for storing.
9564     // Accumulated smaller vector elements must be a multiple of the store size.
9565     if (0 != (NumElems * FromEltSz) % ToEltSz) return SDValue();
9566
9567     unsigned SizeRatio  = FromEltSz / ToEltSz;
9568     assert(SizeRatio * NumElems * ToEltSz == VT.getSizeInBits());
9569
9570     // Create a type on which we perform the shuffle.
9571     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(),
9572                                      NumElems*SizeRatio);
9573     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
9574
9575     SDLoc DL(St);
9576     SDValue WideVec = DAG.getNode(ISD::BITCAST, DL, WideVecVT, StVal);
9577     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
9578     for (unsigned i = 0; i < NumElems; ++i)
9579       ShuffleVec[i] = DAG.getDataLayout().isBigEndian()
9580                           ? (i + 1) * SizeRatio - 1
9581                           : i * SizeRatio;
9582
9583     // Can't shuffle using an illegal type.
9584     if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
9585
9586     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, DL, WideVec,
9587                                 DAG.getUNDEF(WideVec.getValueType()),
9588                                 ShuffleVec.data());
9589     // At this point all of the data is stored at the bottom of the
9590     // register. We now need to save it to mem.
9591
9592     // Find the largest store unit
9593     MVT StoreType = MVT::i8;
9594     for (MVT Tp : MVT::integer_valuetypes()) {
9595       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToEltSz)
9596         StoreType = Tp;
9597     }
9598     // Didn't find a legal store type.
9599     if (!TLI.isTypeLegal(StoreType))
9600       return SDValue();
9601
9602     // Bitcast the original vector into a vector of store-size units
9603     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
9604             StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
9605     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
9606     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, DL, StoreVecVT, Shuff);
9607     SmallVector<SDValue, 8> Chains;
9608     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits() / 8, DL,
9609                                         TLI.getPointerTy(DAG.getDataLayout()));
9610     SDValue BasePtr = St->getBasePtr();
9611
9612     // Perform one or more big stores into memory.
9613     unsigned E = (ToEltSz*NumElems)/StoreType.getSizeInBits();
9614     for (unsigned I = 0; I < E; I++) {
9615       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
9616                                    StoreType, ShuffWide,
9617                                    DAG.getIntPtrConstant(I, DL));
9618       SDValue Ch = DAG.getStore(St->getChain(), DL, SubVec, BasePtr,
9619                                 St->getPointerInfo(), St->isVolatile(),
9620                                 St->isNonTemporal(), St->getAlignment());
9621       BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr,
9622                             Increment);
9623       Chains.push_back(Ch);
9624     }
9625     return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
9626   }
9627
9628   if (!ISD::isNormalStore(St))
9629     return SDValue();
9630
9631   // Split a store of a VMOVDRR into two integer stores to avoid mixing NEON and
9632   // ARM stores of arguments in the same cache line.
9633   if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR &&
9634       StVal.getNode()->hasOneUse()) {
9635     SelectionDAG  &DAG = DCI.DAG;
9636     bool isBigEndian = DAG.getDataLayout().isBigEndian();
9637     SDLoc DL(St);
9638     SDValue BasePtr = St->getBasePtr();
9639     SDValue NewST1 = DAG.getStore(St->getChain(), DL,
9640                                   StVal.getNode()->getOperand(isBigEndian ? 1 : 0 ),
9641                                   BasePtr, St->getPointerInfo(), St->isVolatile(),
9642                                   St->isNonTemporal(), St->getAlignment());
9643
9644     SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
9645                                     DAG.getConstant(4, DL, MVT::i32));
9646     return DAG.getStore(NewST1.getValue(0), DL,
9647                         StVal.getNode()->getOperand(isBigEndian ? 0 : 1),
9648                         OffsetPtr, St->getPointerInfo(), St->isVolatile(),
9649                         St->isNonTemporal(),
9650                         std::min(4U, St->getAlignment() / 2));
9651   }
9652
9653   if (StVal.getValueType() == MVT::i64 &&
9654       StVal.getNode()->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
9655
9656     // Bitcast an i64 store extracted from a vector to f64.
9657     // Otherwise, the i64 value will be legalized to a pair of i32 values.
9658     SelectionDAG &DAG = DCI.DAG;
9659     SDLoc dl(StVal);
9660     SDValue IntVec = StVal.getOperand(0);
9661     EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
9662                                    IntVec.getValueType().getVectorNumElements());
9663     SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec);
9664     SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
9665                                  Vec, StVal.getOperand(1));
9666     dl = SDLoc(N);
9667     SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt);
9668     // Make the DAGCombiner fold the bitcasts.
9669     DCI.AddToWorklist(Vec.getNode());
9670     DCI.AddToWorklist(ExtElt.getNode());
9671     DCI.AddToWorklist(V.getNode());
9672     return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(),
9673                         St->getPointerInfo(), St->isVolatile(),
9674                         St->isNonTemporal(), St->getAlignment(),
9675                         St->getAAInfo());
9676   }
9677
9678   // If this is a legal vector store, try to combine it into a VST1_UPD.
9679   if (ISD::isNormalStore(N) && VT.isVector() &&
9680       DCI.DAG.getTargetLoweringInfo().isTypeLegal(VT))
9681     return CombineBaseUpdate(N, DCI);
9682
9683   return SDValue();
9684 }
9685
9686 // isConstVecPow2 - Return true if each vector element is a power of 2, all
9687 // elements are the same constant, C, and Log2(C) ranges from 1 to 32.
9688 static bool isConstVecPow2(SDValue ConstVec, bool isSigned, uint64_t &C)
9689 {
9690   integerPart cN;
9691   integerPart c0 = 0;
9692   for (unsigned I = 0, E = ConstVec.getValueType().getVectorNumElements();
9693        I != E; I++) {
9694     ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(ConstVec.getOperand(I));
9695     if (!C)
9696       return false;
9697
9698     bool isExact;
9699     APFloat APF = C->getValueAPF();
9700     if (APF.convertToInteger(&cN, 64, isSigned, APFloat::rmTowardZero, &isExact)
9701         != APFloat::opOK || !isExact)
9702       return false;
9703
9704     c0 = (I == 0) ? cN : c0;
9705     if (!isPowerOf2_64(cN) || c0 != cN || Log2_64(c0) < 1 || Log2_64(c0) > 32)
9706       return false;
9707   }
9708   C = c0;
9709   return true;
9710 }
9711
9712 /// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD)
9713 /// can replace combinations of VMUL and VCVT (floating-point to integer)
9714 /// when the VMUL has a constant operand that is a power of 2.
9715 ///
9716 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
9717 ///  vmul.f32        d16, d17, d16
9718 ///  vcvt.s32.f32    d16, d16
9719 /// becomes:
9720 ///  vcvt.s32.f32    d16, d16, #3
9721 static SDValue PerformVCVTCombine(SDNode *N,
9722                                   TargetLowering::DAGCombinerInfo &DCI,
9723                                   const ARMSubtarget *Subtarget) {
9724   SelectionDAG &DAG = DCI.DAG;
9725   SDValue Op = N->getOperand(0);
9726
9727   if (!Subtarget->hasNEON() || !Op.getValueType().isVector() ||
9728       Op.getOpcode() != ISD::FMUL)
9729     return SDValue();
9730
9731   uint64_t C;
9732   SDValue N0 = Op->getOperand(0);
9733   SDValue ConstVec = Op->getOperand(1);
9734   bool isSigned = N->getOpcode() == ISD::FP_TO_SINT;
9735
9736   if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
9737       !isConstVecPow2(ConstVec, isSigned, C))
9738     return SDValue();
9739
9740   MVT FloatTy = Op.getSimpleValueType().getVectorElementType();
9741   MVT IntTy = N->getSimpleValueType(0).getVectorElementType();
9742   unsigned NumLanes = Op.getValueType().getVectorNumElements();
9743   if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32 ||
9744       NumLanes > 4) {
9745     // These instructions only exist converting from f32 to i32. We can handle
9746     // smaller integers by generating an extra truncate, but larger ones would
9747     // be lossy. We also can't handle more then 4 lanes, since these intructions
9748     // only support v2i32/v4i32 types.
9749     return SDValue();
9750   }
9751
9752   SDLoc dl(N);
9753   unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs :
9754     Intrinsic::arm_neon_vcvtfp2fxu;
9755   SDValue FixConv =  DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl,
9756                                  NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
9757                                  DAG.getConstant(IntrinsicOpcode, dl, MVT::i32),
9758                                  N0,
9759                                  DAG.getConstant(Log2_64(C), dl, MVT::i32));
9760
9761   if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
9762     FixConv = DAG.getNode(ISD::TRUNCATE, dl, N->getValueType(0), FixConv);
9763
9764   return FixConv;
9765 }
9766
9767 /// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD)
9768 /// can replace combinations of VCVT (integer to floating-point) and VDIV
9769 /// when the VDIV has a constant operand that is a power of 2.
9770 ///
9771 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
9772 ///  vcvt.f32.s32    d16, d16
9773 ///  vdiv.f32        d16, d17, d16
9774 /// becomes:
9775 ///  vcvt.f32.s32    d16, d16, #3
9776 static SDValue PerformVDIVCombine(SDNode *N,
9777                                   TargetLowering::DAGCombinerInfo &DCI,
9778                                   const ARMSubtarget *Subtarget) {
9779   SelectionDAG &DAG = DCI.DAG;
9780   SDValue Op = N->getOperand(0);
9781   unsigned OpOpcode = Op.getNode()->getOpcode();
9782
9783   if (!Subtarget->hasNEON() || !N->getValueType(0).isVector() ||
9784       (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP))
9785     return SDValue();
9786
9787   uint64_t C;
9788   SDValue ConstVec = N->getOperand(1);
9789   bool isSigned = OpOpcode == ISD::SINT_TO_FP;
9790
9791   if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
9792       !isConstVecPow2(ConstVec, isSigned, C))
9793     return SDValue();
9794
9795   MVT FloatTy = N->getSimpleValueType(0).getVectorElementType();
9796   MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType();
9797   if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32) {
9798     // These instructions only exist converting from i32 to f32. We can handle
9799     // smaller integers by generating an extra extend, but larger ones would
9800     // be lossy.
9801     return SDValue();
9802   }
9803
9804   SDLoc dl(N);
9805   SDValue ConvInput = Op.getOperand(0);
9806   unsigned NumLanes = Op.getValueType().getVectorNumElements();
9807   if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
9808     ConvInput = DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
9809                             dl, NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
9810                             ConvInput);
9811
9812   unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp :
9813     Intrinsic::arm_neon_vcvtfxu2fp;
9814   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl,
9815                      Op.getValueType(),
9816                      DAG.getConstant(IntrinsicOpcode, dl, MVT::i32),
9817                      ConvInput, DAG.getConstant(Log2_64(C), dl, MVT::i32));
9818 }
9819
9820 /// Getvshiftimm - Check if this is a valid build_vector for the immediate
9821 /// operand of a vector shift operation, where all the elements of the
9822 /// build_vector must have the same constant integer value.
9823 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
9824   // Ignore bit_converts.
9825   while (Op.getOpcode() == ISD::BITCAST)
9826     Op = Op.getOperand(0);
9827   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
9828   APInt SplatBits, SplatUndef;
9829   unsigned SplatBitSize;
9830   bool HasAnyUndefs;
9831   if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
9832                                       HasAnyUndefs, ElementBits) ||
9833       SplatBitSize > ElementBits)
9834     return false;
9835   Cnt = SplatBits.getSExtValue();
9836   return true;
9837 }
9838
9839 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
9840 /// operand of a vector shift left operation.  That value must be in the range:
9841 ///   0 <= Value < ElementBits for a left shift; or
9842 ///   0 <= Value <= ElementBits for a long left shift.
9843 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
9844   assert(VT.isVector() && "vector shift count is not a vector type");
9845   int64_t ElementBits = VT.getVectorElementType().getSizeInBits();
9846   if (! getVShiftImm(Op, ElementBits, Cnt))
9847     return false;
9848   return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
9849 }
9850
9851 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
9852 /// operand of a vector shift right operation.  For a shift opcode, the value
9853 /// is positive, but for an intrinsic the value count must be negative. The
9854 /// absolute value must be in the range:
9855 ///   1 <= |Value| <= ElementBits for a right shift; or
9856 ///   1 <= |Value| <= ElementBits/2 for a narrow right shift.
9857 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
9858                          int64_t &Cnt) {
9859   assert(VT.isVector() && "vector shift count is not a vector type");
9860   int64_t ElementBits = VT.getVectorElementType().getSizeInBits();
9861   if (! getVShiftImm(Op, ElementBits, Cnt))
9862     return false;
9863   if (!isIntrinsic)
9864     return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
9865   if (Cnt >= -(isNarrow ? ElementBits/2 : ElementBits) && Cnt <= -1) {
9866     Cnt = -Cnt;
9867     return true;
9868   }
9869   return false;
9870 }
9871
9872 /// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
9873 static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
9874   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
9875   switch (IntNo) {
9876   default:
9877     // Don't do anything for most intrinsics.
9878     break;
9879
9880   case Intrinsic::arm_neon_vabds:
9881     if (!N->getValueType(0).isInteger())
9882       return SDValue();
9883     return DAG.getNode(ISD::SABSDIFF, SDLoc(N), N->getValueType(0),
9884                        N->getOperand(1), N->getOperand(2));
9885   case Intrinsic::arm_neon_vabdu:
9886     return DAG.getNode(ISD::UABSDIFF, SDLoc(N), N->getValueType(0),
9887                        N->getOperand(1), N->getOperand(2));
9888
9889   // Vector shifts: check for immediate versions and lower them.
9890   // Note: This is done during DAG combining instead of DAG legalizing because
9891   // the build_vectors for 64-bit vector element shift counts are generally
9892   // not legal, and it is hard to see their values after they get legalized to
9893   // loads from a constant pool.
9894   case Intrinsic::arm_neon_vshifts:
9895   case Intrinsic::arm_neon_vshiftu:
9896   case Intrinsic::arm_neon_vrshifts:
9897   case Intrinsic::arm_neon_vrshiftu:
9898   case Intrinsic::arm_neon_vrshiftn:
9899   case Intrinsic::arm_neon_vqshifts:
9900   case Intrinsic::arm_neon_vqshiftu:
9901   case Intrinsic::arm_neon_vqshiftsu:
9902   case Intrinsic::arm_neon_vqshiftns:
9903   case Intrinsic::arm_neon_vqshiftnu:
9904   case Intrinsic::arm_neon_vqshiftnsu:
9905   case Intrinsic::arm_neon_vqrshiftns:
9906   case Intrinsic::arm_neon_vqrshiftnu:
9907   case Intrinsic::arm_neon_vqrshiftnsu: {
9908     EVT VT = N->getOperand(1).getValueType();
9909     int64_t Cnt;
9910     unsigned VShiftOpc = 0;
9911
9912     switch (IntNo) {
9913     case Intrinsic::arm_neon_vshifts:
9914     case Intrinsic::arm_neon_vshiftu:
9915       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
9916         VShiftOpc = ARMISD::VSHL;
9917         break;
9918       }
9919       if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
9920         VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
9921                      ARMISD::VSHRs : ARMISD::VSHRu);
9922         break;
9923       }
9924       return SDValue();
9925
9926     case Intrinsic::arm_neon_vrshifts:
9927     case Intrinsic::arm_neon_vrshiftu:
9928       if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
9929         break;
9930       return SDValue();
9931
9932     case Intrinsic::arm_neon_vqshifts:
9933     case Intrinsic::arm_neon_vqshiftu:
9934       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9935         break;
9936       return SDValue();
9937
9938     case Intrinsic::arm_neon_vqshiftsu:
9939       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9940         break;
9941       llvm_unreachable("invalid shift count for vqshlu intrinsic");
9942
9943     case Intrinsic::arm_neon_vrshiftn:
9944     case Intrinsic::arm_neon_vqshiftns:
9945     case Intrinsic::arm_neon_vqshiftnu:
9946     case Intrinsic::arm_neon_vqshiftnsu:
9947     case Intrinsic::arm_neon_vqrshiftns:
9948     case Intrinsic::arm_neon_vqrshiftnu:
9949     case Intrinsic::arm_neon_vqrshiftnsu:
9950       // Narrowing shifts require an immediate right shift.
9951       if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
9952         break;
9953       llvm_unreachable("invalid shift count for narrowing vector shift "
9954                        "intrinsic");
9955
9956     default:
9957       llvm_unreachable("unhandled vector shift");
9958     }
9959
9960     switch (IntNo) {
9961     case Intrinsic::arm_neon_vshifts:
9962     case Intrinsic::arm_neon_vshiftu:
9963       // Opcode already set above.
9964       break;
9965     case Intrinsic::arm_neon_vrshifts:
9966       VShiftOpc = ARMISD::VRSHRs; break;
9967     case Intrinsic::arm_neon_vrshiftu:
9968       VShiftOpc = ARMISD::VRSHRu; break;
9969     case Intrinsic::arm_neon_vrshiftn:
9970       VShiftOpc = ARMISD::VRSHRN; break;
9971     case Intrinsic::arm_neon_vqshifts:
9972       VShiftOpc = ARMISD::VQSHLs; break;
9973     case Intrinsic::arm_neon_vqshiftu:
9974       VShiftOpc = ARMISD::VQSHLu; break;
9975     case Intrinsic::arm_neon_vqshiftsu:
9976       VShiftOpc = ARMISD::VQSHLsu; break;
9977     case Intrinsic::arm_neon_vqshiftns:
9978       VShiftOpc = ARMISD::VQSHRNs; break;
9979     case Intrinsic::arm_neon_vqshiftnu:
9980       VShiftOpc = ARMISD::VQSHRNu; break;
9981     case Intrinsic::arm_neon_vqshiftnsu:
9982       VShiftOpc = ARMISD::VQSHRNsu; break;
9983     case Intrinsic::arm_neon_vqrshiftns:
9984       VShiftOpc = ARMISD::VQRSHRNs; break;
9985     case Intrinsic::arm_neon_vqrshiftnu:
9986       VShiftOpc = ARMISD::VQRSHRNu; break;
9987     case Intrinsic::arm_neon_vqrshiftnsu:
9988       VShiftOpc = ARMISD::VQRSHRNsu; break;
9989     }
9990
9991     SDLoc dl(N);
9992     return DAG.getNode(VShiftOpc, dl, N->getValueType(0),
9993                        N->getOperand(1), DAG.getConstant(Cnt, dl, MVT::i32));
9994   }
9995
9996   case Intrinsic::arm_neon_vshiftins: {
9997     EVT VT = N->getOperand(1).getValueType();
9998     int64_t Cnt;
9999     unsigned VShiftOpc = 0;
10000
10001     if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
10002       VShiftOpc = ARMISD::VSLI;
10003     else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
10004       VShiftOpc = ARMISD::VSRI;
10005     else {
10006       llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
10007     }
10008
10009     SDLoc dl(N);
10010     return DAG.getNode(VShiftOpc, dl, N->getValueType(0),
10011                        N->getOperand(1), N->getOperand(2),
10012                        DAG.getConstant(Cnt, dl, MVT::i32));
10013   }
10014
10015   case Intrinsic::arm_neon_vqrshifts:
10016   case Intrinsic::arm_neon_vqrshiftu:
10017     // No immediate versions of these to check for.
10018     break;
10019   }
10020
10021   return SDValue();
10022 }
10023
10024 /// PerformShiftCombine - Checks for immediate versions of vector shifts and
10025 /// lowers them.  As with the vector shift intrinsics, this is done during DAG
10026 /// combining instead of DAG legalizing because the build_vectors for 64-bit
10027 /// vector element shift counts are generally not legal, and it is hard to see
10028 /// their values after they get legalized to loads from a constant pool.
10029 static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
10030                                    const ARMSubtarget *ST) {
10031   EVT VT = N->getValueType(0);
10032   if (N->getOpcode() == ISD::SRL && VT == MVT::i32 && ST->hasV6Ops()) {
10033     // Canonicalize (srl (bswap x), 16) to (rotr (bswap x), 16) if the high
10034     // 16-bits of x is zero. This optimizes rev + lsr 16 to rev16.
10035     SDValue N1 = N->getOperand(1);
10036     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
10037       SDValue N0 = N->getOperand(0);
10038       if (C->getZExtValue() == 16 && N0.getOpcode() == ISD::BSWAP &&
10039           DAG.MaskedValueIsZero(N0.getOperand(0),
10040                                 APInt::getHighBitsSet(32, 16)))
10041         return DAG.getNode(ISD::ROTR, SDLoc(N), VT, N0, N1);
10042     }
10043   }
10044
10045   // Nothing to be done for scalar shifts.
10046   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10047   if (!VT.isVector() || !TLI.isTypeLegal(VT))
10048     return SDValue();
10049
10050   assert(ST->hasNEON() && "unexpected vector shift");
10051   int64_t Cnt;
10052
10053   switch (N->getOpcode()) {
10054   default: llvm_unreachable("unexpected shift opcode");
10055
10056   case ISD::SHL:
10057     if (isVShiftLImm(N->getOperand(1), VT, false, Cnt)) {
10058       SDLoc dl(N);
10059       return DAG.getNode(ARMISD::VSHL, dl, VT, N->getOperand(0),
10060                          DAG.getConstant(Cnt, dl, MVT::i32));
10061     }
10062     break;
10063
10064   case ISD::SRA:
10065   case ISD::SRL:
10066     if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
10067       unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
10068                             ARMISD::VSHRs : ARMISD::VSHRu);
10069       SDLoc dl(N);
10070       return DAG.getNode(VShiftOpc, dl, VT, N->getOperand(0),
10071                          DAG.getConstant(Cnt, dl, MVT::i32));
10072     }
10073   }
10074   return SDValue();
10075 }
10076
10077 /// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
10078 /// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
10079 static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
10080                                     const ARMSubtarget *ST) {
10081   SDValue N0 = N->getOperand(0);
10082
10083   // Check for sign- and zero-extensions of vector extract operations of 8-
10084   // and 16-bit vector elements.  NEON supports these directly.  They are
10085   // handled during DAG combining because type legalization will promote them
10086   // to 32-bit types and it is messy to recognize the operations after that.
10087   if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
10088     SDValue Vec = N0.getOperand(0);
10089     SDValue Lane = N0.getOperand(1);
10090     EVT VT = N->getValueType(0);
10091     EVT EltVT = N0.getValueType();
10092     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10093
10094     if (VT == MVT::i32 &&
10095         (EltVT == MVT::i8 || EltVT == MVT::i16) &&
10096         TLI.isTypeLegal(Vec.getValueType()) &&
10097         isa<ConstantSDNode>(Lane)) {
10098
10099       unsigned Opc = 0;
10100       switch (N->getOpcode()) {
10101       default: llvm_unreachable("unexpected opcode");
10102       case ISD::SIGN_EXTEND:
10103         Opc = ARMISD::VGETLANEs;
10104         break;
10105       case ISD::ZERO_EXTEND:
10106       case ISD::ANY_EXTEND:
10107         Opc = ARMISD::VGETLANEu;
10108         break;
10109       }
10110       return DAG.getNode(Opc, SDLoc(N), VT, Vec, Lane);
10111     }
10112   }
10113
10114   return SDValue();
10115 }
10116
10117 /// PerformSELECT_CCCombine - Target-specific DAG combining for ISD::SELECT_CC
10118 /// to match f32 max/min patterns to use NEON vmax/vmin instructions.
10119 static SDValue PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG,
10120                                        const ARMSubtarget *ST) {
10121   // If the target supports NEON, try to use vmax/vmin instructions for f32
10122   // selects like "x < y ? x : y".  Unless the NoNaNsFPMath option is set,
10123   // be careful about NaNs:  NEON's vmax/vmin return NaN if either operand is
10124   // a NaN; only do the transformation when it matches that behavior.
10125
10126   // For now only do this when using NEON for FP operations; if using VFP, it
10127   // is not obvious that the benefit outweighs the cost of switching to the
10128   // NEON pipeline.
10129   if (!ST->hasNEON() || !ST->useNEONForSinglePrecisionFP() ||
10130       N->getValueType(0) != MVT::f32)
10131     return SDValue();
10132
10133   SDValue CondLHS = N->getOperand(0);
10134   SDValue CondRHS = N->getOperand(1);
10135   SDValue LHS = N->getOperand(2);
10136   SDValue RHS = N->getOperand(3);
10137   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
10138
10139   unsigned Opcode = 0;
10140   bool IsReversed;
10141   if (DAG.isEqualTo(LHS, CondLHS) && DAG.isEqualTo(RHS, CondRHS)) {
10142     IsReversed = false; // x CC y ? x : y
10143   } else if (DAG.isEqualTo(LHS, CondRHS) && DAG.isEqualTo(RHS, CondLHS)) {
10144     IsReversed = true ; // x CC y ? y : x
10145   } else {
10146     return SDValue();
10147   }
10148
10149   bool IsUnordered;
10150   switch (CC) {
10151   default: break;
10152   case ISD::SETOLT:
10153   case ISD::SETOLE:
10154   case ISD::SETLT:
10155   case ISD::SETLE:
10156   case ISD::SETULT:
10157   case ISD::SETULE:
10158     // If LHS is NaN, an ordered comparison will be false and the result will
10159     // be the RHS, but vmin(NaN, RHS) = NaN.  Avoid this by checking that LHS
10160     // != NaN.  Likewise, for unordered comparisons, check for RHS != NaN.
10161     IsUnordered = (CC == ISD::SETULT || CC == ISD::SETULE);
10162     if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
10163       break;
10164     // For less-than-or-equal comparisons, "+0 <= -0" will be true but vmin
10165     // will return -0, so vmin can only be used for unsafe math or if one of
10166     // the operands is known to be nonzero.
10167     if ((CC == ISD::SETLE || CC == ISD::SETOLE || CC == ISD::SETULE) &&
10168         !DAG.getTarget().Options.UnsafeFPMath &&
10169         !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10170       break;
10171     Opcode = IsReversed ? ARMISD::FMAX : ARMISD::FMIN;
10172     break;
10173
10174   case ISD::SETOGT:
10175   case ISD::SETOGE:
10176   case ISD::SETGT:
10177   case ISD::SETGE:
10178   case ISD::SETUGT:
10179   case ISD::SETUGE:
10180     // If LHS is NaN, an ordered comparison will be false and the result will
10181     // be the RHS, but vmax(NaN, RHS) = NaN.  Avoid this by checking that LHS
10182     // != NaN.  Likewise, for unordered comparisons, check for RHS != NaN.
10183     IsUnordered = (CC == ISD::SETUGT || CC == ISD::SETUGE);
10184     if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
10185       break;
10186     // For greater-than-or-equal comparisons, "-0 >= +0" will be true but vmax
10187     // will return +0, so vmax can only be used for unsafe math or if one of
10188     // the operands is known to be nonzero.
10189     if ((CC == ISD::SETGE || CC == ISD::SETOGE || CC == ISD::SETUGE) &&
10190         !DAG.getTarget().Options.UnsafeFPMath &&
10191         !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10192       break;
10193     Opcode = IsReversed ? ARMISD::FMIN : ARMISD::FMAX;
10194     break;
10195   }
10196
10197   if (!Opcode)
10198     return SDValue();
10199   return DAG.getNode(Opcode, SDLoc(N), N->getValueType(0), LHS, RHS);
10200 }
10201
10202 /// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV.
10203 SDValue
10204 ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const {
10205   SDValue Cmp = N->getOperand(4);
10206   if (Cmp.getOpcode() != ARMISD::CMPZ)
10207     // Only looking at EQ and NE cases.
10208     return SDValue();
10209
10210   EVT VT = N->getValueType(0);
10211   SDLoc dl(N);
10212   SDValue LHS = Cmp.getOperand(0);
10213   SDValue RHS = Cmp.getOperand(1);
10214   SDValue FalseVal = N->getOperand(0);
10215   SDValue TrueVal = N->getOperand(1);
10216   SDValue ARMcc = N->getOperand(2);
10217   ARMCC::CondCodes CC =
10218     (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue();
10219
10220   // Simplify
10221   //   mov     r1, r0
10222   //   cmp     r1, x
10223   //   mov     r0, y
10224   //   moveq   r0, x
10225   // to
10226   //   cmp     r0, x
10227   //   movne   r0, y
10228   //
10229   //   mov     r1, r0
10230   //   cmp     r1, x
10231   //   mov     r0, x
10232   //   movne   r0, y
10233   // to
10234   //   cmp     r0, x
10235   //   movne   r0, y
10236   /// FIXME: Turn this into a target neutral optimization?
10237   SDValue Res;
10238   if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) {
10239     Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc,
10240                       N->getOperand(3), Cmp);
10241   } else if (CC == ARMCC::EQ && TrueVal == RHS) {
10242     SDValue ARMcc;
10243     SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl);
10244     Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc,
10245                       N->getOperand(3), NewCmp);
10246   }
10247
10248   if (Res.getNode()) {
10249     APInt KnownZero, KnownOne;
10250     DAG.computeKnownBits(SDValue(N,0), KnownZero, KnownOne);
10251     // Capture demanded bits information that would be otherwise lost.
10252     if (KnownZero == 0xfffffffe)
10253       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
10254                         DAG.getValueType(MVT::i1));
10255     else if (KnownZero == 0xffffff00)
10256       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
10257                         DAG.getValueType(MVT::i8));
10258     else if (KnownZero == 0xffff0000)
10259       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
10260                         DAG.getValueType(MVT::i16));
10261   }
10262
10263   return Res;
10264 }
10265
10266 SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
10267                                              DAGCombinerInfo &DCI) const {
10268   switch (N->getOpcode()) {
10269   default: break;
10270   case ISD::ADDC:       return PerformADDCCombine(N, DCI, Subtarget);
10271   case ISD::ADD:        return PerformADDCombine(N, DCI, Subtarget);
10272   case ISD::SUB:        return PerformSUBCombine(N, DCI);
10273   case ISD::MUL:        return PerformMULCombine(N, DCI, Subtarget);
10274   case ISD::OR:         return PerformORCombine(N, DCI, Subtarget);
10275   case ISD::XOR:        return PerformXORCombine(N, DCI, Subtarget);
10276   case ISD::AND:        return PerformANDCombine(N, DCI, Subtarget);
10277   case ARMISD::BFI:     return PerformBFICombine(N, DCI);
10278   case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI, Subtarget);
10279   case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG);
10280   case ISD::STORE:      return PerformSTORECombine(N, DCI);
10281   case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI, Subtarget);
10282   case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI);
10283   case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG);
10284   case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI);
10285   case ISD::FP_TO_SINT:
10286   case ISD::FP_TO_UINT: return PerformVCVTCombine(N, DCI, Subtarget);
10287   case ISD::FDIV:       return PerformVDIVCombine(N, DCI, Subtarget);
10288   case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG);
10289   case ISD::SHL:
10290   case ISD::SRA:
10291   case ISD::SRL:        return PerformShiftCombine(N, DCI.DAG, Subtarget);
10292   case ISD::SIGN_EXTEND:
10293   case ISD::ZERO_EXTEND:
10294   case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget);
10295   case ISD::SELECT_CC:  return PerformSELECT_CCCombine(N, DCI.DAG, Subtarget);
10296   case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG);
10297   case ISD::LOAD:       return PerformLOADCombine(N, DCI);
10298   case ARMISD::VLD2DUP:
10299   case ARMISD::VLD3DUP:
10300   case ARMISD::VLD4DUP:
10301     return PerformVLDCombine(N, DCI);
10302   case ARMISD::BUILD_VECTOR:
10303     return PerformARMBUILD_VECTORCombine(N, DCI);
10304   case ISD::INTRINSIC_VOID:
10305   case ISD::INTRINSIC_W_CHAIN:
10306     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
10307     case Intrinsic::arm_neon_vld1:
10308     case Intrinsic::arm_neon_vld2:
10309     case Intrinsic::arm_neon_vld3:
10310     case Intrinsic::arm_neon_vld4:
10311     case Intrinsic::arm_neon_vld2lane:
10312     case Intrinsic::arm_neon_vld3lane:
10313     case Intrinsic::arm_neon_vld4lane:
10314     case Intrinsic::arm_neon_vst1:
10315     case Intrinsic::arm_neon_vst2:
10316     case Intrinsic::arm_neon_vst3:
10317     case Intrinsic::arm_neon_vst4:
10318     case Intrinsic::arm_neon_vst2lane:
10319     case Intrinsic::arm_neon_vst3lane:
10320     case Intrinsic::arm_neon_vst4lane:
10321       return PerformVLDCombine(N, DCI);
10322     default: break;
10323     }
10324     break;
10325   }
10326   return SDValue();
10327 }
10328
10329 bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc,
10330                                                           EVT VT) const {
10331   return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE);
10332 }
10333
10334 bool ARMTargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
10335                                                        unsigned,
10336                                                        unsigned,
10337                                                        bool *Fast) const {
10338   // The AllowsUnaliged flag models the SCTLR.A setting in ARM cpus
10339   bool AllowsUnaligned = Subtarget->allowsUnalignedMem();
10340
10341   switch (VT.getSimpleVT().SimpleTy) {
10342   default:
10343     return false;
10344   case MVT::i8:
10345   case MVT::i16:
10346   case MVT::i32: {
10347     // Unaligned access can use (for example) LRDB, LRDH, LDR
10348     if (AllowsUnaligned) {
10349       if (Fast)
10350         *Fast = Subtarget->hasV7Ops();
10351       return true;
10352     }
10353     return false;
10354   }
10355   case MVT::f64:
10356   case MVT::v2f64: {
10357     // For any little-endian targets with neon, we can support unaligned ld/st
10358     // of D and Q (e.g. {D0,D1}) registers by using vld1.i8/vst1.i8.
10359     // A big-endian target may also explicitly support unaligned accesses
10360     if (Subtarget->hasNEON() && (AllowsUnaligned || Subtarget->isLittle())) {
10361       if (Fast)
10362         *Fast = true;
10363       return true;
10364     }
10365     return false;
10366   }
10367   }
10368 }
10369
10370 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
10371                        unsigned AlignCheck) {
10372   return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
10373           (DstAlign == 0 || DstAlign % AlignCheck == 0));
10374 }
10375
10376 EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size,
10377                                            unsigned DstAlign, unsigned SrcAlign,
10378                                            bool IsMemset, bool ZeroMemset,
10379                                            bool MemcpyStrSrc,
10380                                            MachineFunction &MF) const {
10381   const Function *F = MF.getFunction();
10382
10383   // See if we can use NEON instructions for this...
10384   if ((!IsMemset || ZeroMemset) && Subtarget->hasNEON() &&
10385       !F->hasFnAttribute(Attribute::NoImplicitFloat)) {
10386     bool Fast;
10387     if (Size >= 16 &&
10388         (memOpAlign(SrcAlign, DstAlign, 16) ||
10389          (allowsMisalignedMemoryAccesses(MVT::v2f64, 0, 1, &Fast) && Fast))) {
10390       return MVT::v2f64;
10391     } else if (Size >= 8 &&
10392                (memOpAlign(SrcAlign, DstAlign, 8) ||
10393                 (allowsMisalignedMemoryAccesses(MVT::f64, 0, 1, &Fast) &&
10394                  Fast))) {
10395       return MVT::f64;
10396     }
10397   }
10398
10399   // Lowering to i32/i16 if the size permits.
10400   if (Size >= 4)
10401     return MVT::i32;
10402   else if (Size >= 2)
10403     return MVT::i16;
10404
10405   // Let the target-independent logic figure it out.
10406   return MVT::Other;
10407 }
10408
10409 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
10410   if (Val.getOpcode() != ISD::LOAD)
10411     return false;
10412
10413   EVT VT1 = Val.getValueType();
10414   if (!VT1.isSimple() || !VT1.isInteger() ||
10415       !VT2.isSimple() || !VT2.isInteger())
10416     return false;
10417
10418   switch (VT1.getSimpleVT().SimpleTy) {
10419   default: break;
10420   case MVT::i1:
10421   case MVT::i8:
10422   case MVT::i16:
10423     // 8-bit and 16-bit loads implicitly zero-extend to 32-bits.
10424     return true;
10425   }
10426
10427   return false;
10428 }
10429
10430 bool ARMTargetLowering::isVectorLoadExtDesirable(SDValue ExtVal) const {
10431   EVT VT = ExtVal.getValueType();
10432
10433   if (!isTypeLegal(VT))
10434     return false;
10435
10436   // Don't create a loadext if we can fold the extension into a wide/long
10437   // instruction.
10438   // If there's more than one user instruction, the loadext is desirable no
10439   // matter what.  There can be two uses by the same instruction.
10440   if (ExtVal->use_empty() ||
10441       !ExtVal->use_begin()->isOnlyUserOf(ExtVal.getNode()))
10442     return true;
10443
10444   SDNode *U = *ExtVal->use_begin();
10445   if ((U->getOpcode() == ISD::ADD || U->getOpcode() == ISD::SUB ||
10446        U->getOpcode() == ISD::SHL || U->getOpcode() == ARMISD::VSHL))
10447     return false;
10448
10449   return true;
10450 }
10451
10452 bool ARMTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
10453   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
10454     return false;
10455
10456   if (!isTypeLegal(EVT::getEVT(Ty1)))
10457     return false;
10458
10459   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
10460
10461   // Assuming the caller doesn't have a zeroext or signext return parameter,
10462   // truncation all the way down to i1 is valid.
10463   return true;
10464 }
10465
10466
10467 static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
10468   if (V < 0)
10469     return false;
10470
10471   unsigned Scale = 1;
10472   switch (VT.getSimpleVT().SimpleTy) {
10473   default: return false;
10474   case MVT::i1:
10475   case MVT::i8:
10476     // Scale == 1;
10477     break;
10478   case MVT::i16:
10479     // Scale == 2;
10480     Scale = 2;
10481     break;
10482   case MVT::i32:
10483     // Scale == 4;
10484     Scale = 4;
10485     break;
10486   }
10487
10488   if ((V & (Scale - 1)) != 0)
10489     return false;
10490   V /= Scale;
10491   return V == (V & ((1LL << 5) - 1));
10492 }
10493
10494 static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
10495                                       const ARMSubtarget *Subtarget) {
10496   bool isNeg = false;
10497   if (V < 0) {
10498     isNeg = true;
10499     V = - V;
10500   }
10501
10502   switch (VT.getSimpleVT().SimpleTy) {
10503   default: return false;
10504   case MVT::i1:
10505   case MVT::i8:
10506   case MVT::i16:
10507   case MVT::i32:
10508     // + imm12 or - imm8
10509     if (isNeg)
10510       return V == (V & ((1LL << 8) - 1));
10511     return V == (V & ((1LL << 12) - 1));
10512   case MVT::f32:
10513   case MVT::f64:
10514     // Same as ARM mode. FIXME: NEON?
10515     if (!Subtarget->hasVFP2())
10516       return false;
10517     if ((V & 3) != 0)
10518       return false;
10519     V >>= 2;
10520     return V == (V & ((1LL << 8) - 1));
10521   }
10522 }
10523
10524 /// isLegalAddressImmediate - Return true if the integer value can be used
10525 /// as the offset of the target addressing mode for load / store of the
10526 /// given type.
10527 static bool isLegalAddressImmediate(int64_t V, EVT VT,
10528                                     const ARMSubtarget *Subtarget) {
10529   if (V == 0)
10530     return true;
10531
10532   if (!VT.isSimple())
10533     return false;
10534
10535   if (Subtarget->isThumb1Only())
10536     return isLegalT1AddressImmediate(V, VT);
10537   else if (Subtarget->isThumb2())
10538     return isLegalT2AddressImmediate(V, VT, Subtarget);
10539
10540   // ARM mode.
10541   if (V < 0)
10542     V = - V;
10543   switch (VT.getSimpleVT().SimpleTy) {
10544   default: return false;
10545   case MVT::i1:
10546   case MVT::i8:
10547   case MVT::i32:
10548     // +- imm12
10549     return V == (V & ((1LL << 12) - 1));
10550   case MVT::i16:
10551     // +- imm8
10552     return V == (V & ((1LL << 8) - 1));
10553   case MVT::f32:
10554   case MVT::f64:
10555     if (!Subtarget->hasVFP2()) // FIXME: NEON?
10556       return false;
10557     if ((V & 3) != 0)
10558       return false;
10559     V >>= 2;
10560     return V == (V & ((1LL << 8) - 1));
10561   }
10562 }
10563
10564 bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
10565                                                       EVT VT) const {
10566   int Scale = AM.Scale;
10567   if (Scale < 0)
10568     return false;
10569
10570   switch (VT.getSimpleVT().SimpleTy) {
10571   default: return false;
10572   case MVT::i1:
10573   case MVT::i8:
10574   case MVT::i16:
10575   case MVT::i32:
10576     if (Scale == 1)
10577       return true;
10578     // r + r << imm
10579     Scale = Scale & ~1;
10580     return Scale == 2 || Scale == 4 || Scale == 8;
10581   case MVT::i64:
10582     // r + r
10583     if (((unsigned)AM.HasBaseReg + Scale) <= 2)
10584       return true;
10585     return false;
10586   case MVT::isVoid:
10587     // Note, we allow "void" uses (basically, uses that aren't loads or
10588     // stores), because arm allows folding a scale into many arithmetic
10589     // operations.  This should be made more precise and revisited later.
10590
10591     // Allow r << imm, but the imm has to be a multiple of two.
10592     if (Scale & 1) return false;
10593     return isPowerOf2_32(Scale);
10594   }
10595 }
10596
10597 /// isLegalAddressingMode - Return true if the addressing mode represented
10598 /// by AM is legal for this target, for a load/store of the specified type.
10599 bool ARMTargetLowering::isLegalAddressingMode(const DataLayout &DL,
10600                                               const AddrMode &AM, Type *Ty,
10601                                               unsigned AS) const {
10602   EVT VT = getValueType(DL, Ty, true);
10603   if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
10604     return false;
10605
10606   // Can never fold addr of global into load/store.
10607   if (AM.BaseGV)
10608     return false;
10609
10610   switch (AM.Scale) {
10611   case 0:  // no scale reg, must be "r+i" or "r", or "i".
10612     break;
10613   case 1:
10614     if (Subtarget->isThumb1Only())
10615       return false;
10616     // FALL THROUGH.
10617   default:
10618     // ARM doesn't support any R+R*scale+imm addr modes.
10619     if (AM.BaseOffs)
10620       return false;
10621
10622     if (!VT.isSimple())
10623       return false;
10624
10625     if (Subtarget->isThumb2())
10626       return isLegalT2ScaledAddressingMode(AM, VT);
10627
10628     int Scale = AM.Scale;
10629     switch (VT.getSimpleVT().SimpleTy) {
10630     default: return false;
10631     case MVT::i1:
10632     case MVT::i8:
10633     case MVT::i32:
10634       if (Scale < 0) Scale = -Scale;
10635       if (Scale == 1)
10636         return true;
10637       // r + r << imm
10638       return isPowerOf2_32(Scale & ~1);
10639     case MVT::i16:
10640     case MVT::i64:
10641       // r + r
10642       if (((unsigned)AM.HasBaseReg + Scale) <= 2)
10643         return true;
10644       return false;
10645
10646     case MVT::isVoid:
10647       // Note, we allow "void" uses (basically, uses that aren't loads or
10648       // stores), because arm allows folding a scale into many arithmetic
10649       // operations.  This should be made more precise and revisited later.
10650
10651       // Allow r << imm, but the imm has to be a multiple of two.
10652       if (Scale & 1) return false;
10653       return isPowerOf2_32(Scale);
10654     }
10655   }
10656   return true;
10657 }
10658
10659 /// isLegalICmpImmediate - Return true if the specified immediate is legal
10660 /// icmp immediate, that is the target has icmp instructions which can compare
10661 /// a register against the immediate without having to materialize the
10662 /// immediate into a register.
10663 bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
10664   // Thumb2 and ARM modes can use cmn for negative immediates.
10665   if (!Subtarget->isThumb())
10666     return ARM_AM::getSOImmVal(std::abs(Imm)) != -1;
10667   if (Subtarget->isThumb2())
10668     return ARM_AM::getT2SOImmVal(std::abs(Imm)) != -1;
10669   // Thumb1 doesn't have cmn, and only 8-bit immediates.
10670   return Imm >= 0 && Imm <= 255;
10671 }
10672
10673 /// isLegalAddImmediate - Return true if the specified immediate is a legal add
10674 /// *or sub* immediate, that is the target has add or sub instructions which can
10675 /// add a register with the immediate without having to materialize the
10676 /// immediate into a register.
10677 bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const {
10678   // Same encoding for add/sub, just flip the sign.
10679   int64_t AbsImm = std::abs(Imm);
10680   if (!Subtarget->isThumb())
10681     return ARM_AM::getSOImmVal(AbsImm) != -1;
10682   if (Subtarget->isThumb2())
10683     return ARM_AM::getT2SOImmVal(AbsImm) != -1;
10684   // Thumb1 only has 8-bit unsigned immediate.
10685   return AbsImm >= 0 && AbsImm <= 255;
10686 }
10687
10688 static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
10689                                       bool isSEXTLoad, SDValue &Base,
10690                                       SDValue &Offset, bool &isInc,
10691                                       SelectionDAG &DAG) {
10692   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
10693     return false;
10694
10695   if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
10696     // AddressingMode 3
10697     Base = Ptr->getOperand(0);
10698     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10699       int RHSC = (int)RHS->getZExtValue();
10700       if (RHSC < 0 && RHSC > -256) {
10701         assert(Ptr->getOpcode() == ISD::ADD);
10702         isInc = false;
10703         Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
10704         return true;
10705       }
10706     }
10707     isInc = (Ptr->getOpcode() == ISD::ADD);
10708     Offset = Ptr->getOperand(1);
10709     return true;
10710   } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
10711     // AddressingMode 2
10712     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10713       int RHSC = (int)RHS->getZExtValue();
10714       if (RHSC < 0 && RHSC > -0x1000) {
10715         assert(Ptr->getOpcode() == ISD::ADD);
10716         isInc = false;
10717         Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
10718         Base = Ptr->getOperand(0);
10719         return true;
10720       }
10721     }
10722
10723     if (Ptr->getOpcode() == ISD::ADD) {
10724       isInc = true;
10725       ARM_AM::ShiftOpc ShOpcVal=
10726         ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode());
10727       if (ShOpcVal != ARM_AM::no_shift) {
10728         Base = Ptr->getOperand(1);
10729         Offset = Ptr->getOperand(0);
10730       } else {
10731         Base = Ptr->getOperand(0);
10732         Offset = Ptr->getOperand(1);
10733       }
10734       return true;
10735     }
10736
10737     isInc = (Ptr->getOpcode() == ISD::ADD);
10738     Base = Ptr->getOperand(0);
10739     Offset = Ptr->getOperand(1);
10740     return true;
10741   }
10742
10743   // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
10744   return false;
10745 }
10746
10747 static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
10748                                      bool isSEXTLoad, SDValue &Base,
10749                                      SDValue &Offset, bool &isInc,
10750                                      SelectionDAG &DAG) {
10751   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
10752     return false;
10753
10754   Base = Ptr->getOperand(0);
10755   if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
10756     int RHSC = (int)RHS->getZExtValue();
10757     if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
10758       assert(Ptr->getOpcode() == ISD::ADD);
10759       isInc = false;
10760       Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0));
10761       return true;
10762     } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
10763       isInc = Ptr->getOpcode() == ISD::ADD;
10764       Offset = DAG.getConstant(RHSC, SDLoc(Ptr), RHS->getValueType(0));
10765       return true;
10766     }
10767   }
10768
10769   return false;
10770 }
10771
10772 /// getPreIndexedAddressParts - returns true by value, base pointer and
10773 /// offset pointer and addressing mode by reference if the node's address
10774 /// can be legally represented as pre-indexed load / store address.
10775 bool
10776 ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
10777                                              SDValue &Offset,
10778                                              ISD::MemIndexedMode &AM,
10779                                              SelectionDAG &DAG) const {
10780   if (Subtarget->isThumb1Only())
10781     return false;
10782
10783   EVT VT;
10784   SDValue Ptr;
10785   bool isSEXTLoad = false;
10786   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10787     Ptr = LD->getBasePtr();
10788     VT  = LD->getMemoryVT();
10789     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
10790   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10791     Ptr = ST->getBasePtr();
10792     VT  = ST->getMemoryVT();
10793   } else
10794     return false;
10795
10796   bool isInc;
10797   bool isLegal = false;
10798   if (Subtarget->isThumb2())
10799     isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
10800                                        Offset, isInc, DAG);
10801   else
10802     isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
10803                                         Offset, isInc, DAG);
10804   if (!isLegal)
10805     return false;
10806
10807   AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
10808   return true;
10809 }
10810
10811 /// getPostIndexedAddressParts - returns true by value, base pointer and
10812 /// offset pointer and addressing mode by reference if this node can be
10813 /// combined with a load / store to form a post-indexed load / store.
10814 bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
10815                                                    SDValue &Base,
10816                                                    SDValue &Offset,
10817                                                    ISD::MemIndexedMode &AM,
10818                                                    SelectionDAG &DAG) const {
10819   if (Subtarget->isThumb1Only())
10820     return false;
10821
10822   EVT VT;
10823   SDValue Ptr;
10824   bool isSEXTLoad = false;
10825   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
10826     VT  = LD->getMemoryVT();
10827     Ptr = LD->getBasePtr();
10828     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
10829   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
10830     VT  = ST->getMemoryVT();
10831     Ptr = ST->getBasePtr();
10832   } else
10833     return false;
10834
10835   bool isInc;
10836   bool isLegal = false;
10837   if (Subtarget->isThumb2())
10838     isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
10839                                        isInc, DAG);
10840   else
10841     isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
10842                                         isInc, DAG);
10843   if (!isLegal)
10844     return false;
10845
10846   if (Ptr != Base) {
10847     // Swap base ptr and offset to catch more post-index load / store when
10848     // it's legal. In Thumb2 mode, offset must be an immediate.
10849     if (Ptr == Offset && Op->getOpcode() == ISD::ADD &&
10850         !Subtarget->isThumb2())
10851       std::swap(Base, Offset);
10852
10853     // Post-indexed load / store update the base pointer.
10854     if (Ptr != Base)
10855       return false;
10856   }
10857
10858   AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
10859   return true;
10860 }
10861
10862 void ARMTargetLowering::computeKnownBitsForTargetNode(const SDValue Op,
10863                                                       APInt &KnownZero,
10864                                                       APInt &KnownOne,
10865                                                       const SelectionDAG &DAG,
10866                                                       unsigned Depth) const {
10867   unsigned BitWidth = KnownOne.getBitWidth();
10868   KnownZero = KnownOne = APInt(BitWidth, 0);
10869   switch (Op.getOpcode()) {
10870   default: break;
10871   case ARMISD::ADDC:
10872   case ARMISD::ADDE:
10873   case ARMISD::SUBC:
10874   case ARMISD::SUBE:
10875     // These nodes' second result is a boolean
10876     if (Op.getResNo() == 0)
10877       break;
10878     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
10879     break;
10880   case ARMISD::CMOV: {
10881     // Bits are known zero/one if known on the LHS and RHS.
10882     DAG.computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
10883     if (KnownZero == 0 && KnownOne == 0) return;
10884
10885     APInt KnownZeroRHS, KnownOneRHS;
10886     DAG.computeKnownBits(Op.getOperand(1), KnownZeroRHS, KnownOneRHS, Depth+1);
10887     KnownZero &= KnownZeroRHS;
10888     KnownOne  &= KnownOneRHS;
10889     return;
10890   }
10891   case ISD::INTRINSIC_W_CHAIN: {
10892     ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
10893     Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
10894     switch (IntID) {
10895     default: return;
10896     case Intrinsic::arm_ldaex:
10897     case Intrinsic::arm_ldrex: {
10898       EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
10899       unsigned MemBits = VT.getScalarType().getSizeInBits();
10900       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
10901       return;
10902     }
10903     }
10904   }
10905   }
10906 }
10907
10908 //===----------------------------------------------------------------------===//
10909 //                           ARM Inline Assembly Support
10910 //===----------------------------------------------------------------------===//
10911
10912 bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const {
10913   // Looking for "rev" which is V6+.
10914   if (!Subtarget->hasV6Ops())
10915     return false;
10916
10917   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
10918   std::string AsmStr = IA->getAsmString();
10919   SmallVector<StringRef, 4> AsmPieces;
10920   SplitString(AsmStr, AsmPieces, ";\n");
10921
10922   switch (AsmPieces.size()) {
10923   default: return false;
10924   case 1:
10925     AsmStr = AsmPieces[0];
10926     AsmPieces.clear();
10927     SplitString(AsmStr, AsmPieces, " \t,");
10928
10929     // rev $0, $1
10930     if (AsmPieces.size() == 3 &&
10931         AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" &&
10932         IA->getConstraintString().compare(0, 4, "=l,l") == 0) {
10933       IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
10934       if (Ty && Ty->getBitWidth() == 32)
10935         return IntrinsicLowering::LowerToByteSwap(CI);
10936     }
10937     break;
10938   }
10939
10940   return false;
10941 }
10942
10943 /// getConstraintType - Given a constraint letter, return the type of
10944 /// constraint it is for this target.
10945 ARMTargetLowering::ConstraintType
10946 ARMTargetLowering::getConstraintType(StringRef Constraint) const {
10947   if (Constraint.size() == 1) {
10948     switch (Constraint[0]) {
10949     default:  break;
10950     case 'l': return C_RegisterClass;
10951     case 'w': return C_RegisterClass;
10952     case 'h': return C_RegisterClass;
10953     case 'x': return C_RegisterClass;
10954     case 't': return C_RegisterClass;
10955     case 'j': return C_Other; // Constant for movw.
10956       // An address with a single base register. Due to the way we
10957       // currently handle addresses it is the same as an 'r' memory constraint.
10958     case 'Q': return C_Memory;
10959     }
10960   } else if (Constraint.size() == 2) {
10961     switch (Constraint[0]) {
10962     default: break;
10963     // All 'U+' constraints are addresses.
10964     case 'U': return C_Memory;
10965     }
10966   }
10967   return TargetLowering::getConstraintType(Constraint);
10968 }
10969
10970 /// Examine constraint type and operand type and determine a weight value.
10971 /// This object must already have been set up with the operand type
10972 /// and the current alternative constraint selected.
10973 TargetLowering::ConstraintWeight
10974 ARMTargetLowering::getSingleConstraintMatchWeight(
10975     AsmOperandInfo &info, const char *constraint) const {
10976   ConstraintWeight weight = CW_Invalid;
10977   Value *CallOperandVal = info.CallOperandVal;
10978     // If we don't have a value, we can't do a match,
10979     // but allow it at the lowest weight.
10980   if (!CallOperandVal)
10981     return CW_Default;
10982   Type *type = CallOperandVal->getType();
10983   // Look at the constraint type.
10984   switch (*constraint) {
10985   default:
10986     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
10987     break;
10988   case 'l':
10989     if (type->isIntegerTy()) {
10990       if (Subtarget->isThumb())
10991         weight = CW_SpecificReg;
10992       else
10993         weight = CW_Register;
10994     }
10995     break;
10996   case 'w':
10997     if (type->isFloatingPointTy())
10998       weight = CW_Register;
10999     break;
11000   }
11001   return weight;
11002 }
11003
11004 typedef std::pair<unsigned, const TargetRegisterClass*> RCPair;
11005 RCPair ARMTargetLowering::getRegForInlineAsmConstraint(
11006     const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
11007   if (Constraint.size() == 1) {
11008     // GCC ARM Constraint Letters
11009     switch (Constraint[0]) {
11010     case 'l': // Low regs or general regs.
11011       if (Subtarget->isThumb())
11012         return RCPair(0U, &ARM::tGPRRegClass);
11013       return RCPair(0U, &ARM::GPRRegClass);
11014     case 'h': // High regs or no regs.
11015       if (Subtarget->isThumb())
11016         return RCPair(0U, &ARM::hGPRRegClass);
11017       break;
11018     case 'r':
11019       if (Subtarget->isThumb1Only())
11020         return RCPair(0U, &ARM::tGPRRegClass);
11021       return RCPair(0U, &ARM::GPRRegClass);
11022     case 'w':
11023       if (VT == MVT::Other)
11024         break;
11025       if (VT == MVT::f32)
11026         return RCPair(0U, &ARM::SPRRegClass);
11027       if (VT.getSizeInBits() == 64)
11028         return RCPair(0U, &ARM::DPRRegClass);
11029       if (VT.getSizeInBits() == 128)
11030         return RCPair(0U, &ARM::QPRRegClass);
11031       break;
11032     case 'x':
11033       if (VT == MVT::Other)
11034         break;
11035       if (VT == MVT::f32)
11036         return RCPair(0U, &ARM::SPR_8RegClass);
11037       if (VT.getSizeInBits() == 64)
11038         return RCPair(0U, &ARM::DPR_8RegClass);
11039       if (VT.getSizeInBits() == 128)
11040         return RCPair(0U, &ARM::QPR_8RegClass);
11041       break;
11042     case 't':
11043       if (VT == MVT::f32)
11044         return RCPair(0U, &ARM::SPRRegClass);
11045       break;
11046     }
11047   }
11048   if (StringRef("{cc}").equals_lower(Constraint))
11049     return std::make_pair(unsigned(ARM::CPSR), &ARM::CCRRegClass);
11050
11051   return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
11052 }
11053
11054 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11055 /// vector.  If it is invalid, don't add anything to Ops.
11056 void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
11057                                                      std::string &Constraint,
11058                                                      std::vector<SDValue>&Ops,
11059                                                      SelectionDAG &DAG) const {
11060   SDValue Result;
11061
11062   // Currently only support length 1 constraints.
11063   if (Constraint.length() != 1) return;
11064
11065   char ConstraintLetter = Constraint[0];
11066   switch (ConstraintLetter) {
11067   default: break;
11068   case 'j':
11069   case 'I': case 'J': case 'K': case 'L':
11070   case 'M': case 'N': case 'O':
11071     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
11072     if (!C)
11073       return;
11074
11075     int64_t CVal64 = C->getSExtValue();
11076     int CVal = (int) CVal64;
11077     // None of these constraints allow values larger than 32 bits.  Check
11078     // that the value fits in an int.
11079     if (CVal != CVal64)
11080       return;
11081
11082     switch (ConstraintLetter) {
11083       case 'j':
11084         // Constant suitable for movw, must be between 0 and
11085         // 65535.
11086         if (Subtarget->hasV6T2Ops())
11087           if (CVal >= 0 && CVal <= 65535)
11088             break;
11089         return;
11090       case 'I':
11091         if (Subtarget->isThumb1Only()) {
11092           // This must be a constant between 0 and 255, for ADD
11093           // immediates.
11094           if (CVal >= 0 && CVal <= 255)
11095             break;
11096         } else if (Subtarget->isThumb2()) {
11097           // A constant that can be used as an immediate value in a
11098           // data-processing instruction.
11099           if (ARM_AM::getT2SOImmVal(CVal) != -1)
11100             break;
11101         } else {
11102           // A constant that can be used as an immediate value in a
11103           // data-processing instruction.
11104           if (ARM_AM::getSOImmVal(CVal) != -1)
11105             break;
11106         }
11107         return;
11108
11109       case 'J':
11110         if (Subtarget->isThumb()) {  // FIXME thumb2
11111           // This must be a constant between -255 and -1, for negated ADD
11112           // immediates. This can be used in GCC with an "n" modifier that
11113           // prints the negated value, for use with SUB instructions. It is
11114           // not useful otherwise but is implemented for compatibility.
11115           if (CVal >= -255 && CVal <= -1)
11116             break;
11117         } else {
11118           // This must be a constant between -4095 and 4095. It is not clear
11119           // what this constraint is intended for. Implemented for
11120           // compatibility with GCC.
11121           if (CVal >= -4095 && CVal <= 4095)
11122             break;
11123         }
11124         return;
11125
11126       case 'K':
11127         if (Subtarget->isThumb1Only()) {
11128           // A 32-bit value where only one byte has a nonzero value. Exclude
11129           // zero to match GCC. This constraint is used by GCC internally for
11130           // constants that can be loaded with a move/shift combination.
11131           // It is not useful otherwise but is implemented for compatibility.
11132           if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
11133             break;
11134         } else if (Subtarget->isThumb2()) {
11135           // A constant whose bitwise inverse can be used as an immediate
11136           // value in a data-processing instruction. This can be used in GCC
11137           // with a "B" modifier that prints the inverted value, for use with
11138           // BIC and MVN instructions. It is not useful otherwise but is
11139           // implemented for compatibility.
11140           if (ARM_AM::getT2SOImmVal(~CVal) != -1)
11141             break;
11142         } else {
11143           // A constant whose bitwise inverse can be used as an immediate
11144           // value in a data-processing instruction. This can be used in GCC
11145           // with a "B" modifier that prints the inverted value, for use with
11146           // BIC and MVN instructions. It is not useful otherwise but is
11147           // implemented for compatibility.
11148           if (ARM_AM::getSOImmVal(~CVal) != -1)
11149             break;
11150         }
11151         return;
11152
11153       case 'L':
11154         if (Subtarget->isThumb1Only()) {
11155           // This must be a constant between -7 and 7,
11156           // for 3-operand ADD/SUB immediate instructions.
11157           if (CVal >= -7 && CVal < 7)
11158             break;
11159         } else if (Subtarget->isThumb2()) {
11160           // A constant whose negation can be used as an immediate value in a
11161           // data-processing instruction. This can be used in GCC with an "n"
11162           // modifier that prints the negated value, for use with SUB
11163           // instructions. It is not useful otherwise but is implemented for
11164           // compatibility.
11165           if (ARM_AM::getT2SOImmVal(-CVal) != -1)
11166             break;
11167         } else {
11168           // A constant whose negation can be used as an immediate value in a
11169           // data-processing instruction. This can be used in GCC with an "n"
11170           // modifier that prints the negated value, for use with SUB
11171           // instructions. It is not useful otherwise but is implemented for
11172           // compatibility.
11173           if (ARM_AM::getSOImmVal(-CVal) != -1)
11174             break;
11175         }
11176         return;
11177
11178       case 'M':
11179         if (Subtarget->isThumb()) { // FIXME thumb2
11180           // This must be a multiple of 4 between 0 and 1020, for
11181           // ADD sp + immediate.
11182           if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
11183             break;
11184         } else {
11185           // A power of two or a constant between 0 and 32.  This is used in
11186           // GCC for the shift amount on shifted register operands, but it is
11187           // useful in general for any shift amounts.
11188           if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
11189             break;
11190         }
11191         return;
11192
11193       case 'N':
11194         if (Subtarget->isThumb()) {  // FIXME thumb2
11195           // This must be a constant between 0 and 31, for shift amounts.
11196           if (CVal >= 0 && CVal <= 31)
11197             break;
11198         }
11199         return;
11200
11201       case 'O':
11202         if (Subtarget->isThumb()) {  // FIXME thumb2
11203           // This must be a multiple of 4 between -508 and 508, for
11204           // ADD/SUB sp = sp + immediate.
11205           if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
11206             break;
11207         }
11208         return;
11209     }
11210     Result = DAG.getTargetConstant(CVal, SDLoc(Op), Op.getValueType());
11211     break;
11212   }
11213
11214   if (Result.getNode()) {
11215     Ops.push_back(Result);
11216     return;
11217   }
11218   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
11219 }
11220
11221 SDValue ARMTargetLowering::LowerDivRem(SDValue Op, SelectionDAG &DAG) const {
11222   assert((Subtarget->isTargetAEABI() || Subtarget->isTargetAndroid()) &&
11223          "Register-based DivRem lowering only");
11224   unsigned Opcode = Op->getOpcode();
11225   assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) &&
11226          "Invalid opcode for Div/Rem lowering");
11227   bool isSigned = (Opcode == ISD::SDIVREM);
11228   EVT VT = Op->getValueType(0);
11229   Type *Ty = VT.getTypeForEVT(*DAG.getContext());
11230
11231   RTLIB::Libcall LC;
11232   switch (VT.getSimpleVT().SimpleTy) {
11233   default: llvm_unreachable("Unexpected request for libcall!");
11234   case MVT::i8:  LC = isSigned ? RTLIB::SDIVREM_I8  : RTLIB::UDIVREM_I8;  break;
11235   case MVT::i16: LC = isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
11236   case MVT::i32: LC = isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
11237   case MVT::i64: LC = isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
11238   }
11239
11240   SDValue InChain = DAG.getEntryNode();
11241
11242   TargetLowering::ArgListTy Args;
11243   TargetLowering::ArgListEntry Entry;
11244   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
11245     EVT ArgVT = Op->getOperand(i).getValueType();
11246     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
11247     Entry.Node = Op->getOperand(i);
11248     Entry.Ty = ArgTy;
11249     Entry.isSExt = isSigned;
11250     Entry.isZExt = !isSigned;
11251     Args.push_back(Entry);
11252   }
11253
11254   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
11255                                          getPointerTy(DAG.getDataLayout()));
11256
11257   Type *RetTy = (Type*)StructType::get(Ty, Ty, nullptr);
11258
11259   SDLoc dl(Op);
11260   TargetLowering::CallLoweringInfo CLI(DAG);
11261   CLI.setDebugLoc(dl).setChain(InChain)
11262     .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0)
11263     .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned);
11264
11265   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
11266   return CallInfo.first;
11267 }
11268
11269 SDValue
11270 ARMTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const {
11271   assert(Subtarget->isTargetWindows() && "unsupported target platform");
11272   SDLoc DL(Op);
11273
11274   // Get the inputs.
11275   SDValue Chain = Op.getOperand(0);
11276   SDValue Size  = Op.getOperand(1);
11277
11278   SDValue Words = DAG.getNode(ISD::SRL, DL, MVT::i32, Size,
11279                               DAG.getConstant(2, DL, MVT::i32));
11280
11281   SDValue Flag;
11282   Chain = DAG.getCopyToReg(Chain, DL, ARM::R4, Words, Flag);
11283   Flag = Chain.getValue(1);
11284
11285   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11286   Chain = DAG.getNode(ARMISD::WIN__CHKSTK, DL, NodeTys, Chain, Flag);
11287
11288   SDValue NewSP = DAG.getCopyFromReg(Chain, DL, ARM::SP, MVT::i32);
11289   Chain = NewSP.getValue(1);
11290
11291   SDValue Ops[2] = { NewSP, Chain };
11292   return DAG.getMergeValues(Ops, DL);
11293 }
11294
11295 SDValue ARMTargetLowering::LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) const {
11296   assert(Op.getValueType() == MVT::f64 && Subtarget->isFPOnlySP() &&
11297          "Unexpected type for custom-lowering FP_EXTEND");
11298
11299   RTLIB::Libcall LC;
11300   LC = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType());
11301
11302   SDValue SrcVal = Op.getOperand(0);
11303   return makeLibCall(DAG, LC, Op.getValueType(), &SrcVal, 1,
11304                      /*isSigned*/ false, SDLoc(Op)).first;
11305 }
11306
11307 SDValue ARMTargetLowering::LowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const {
11308   assert(Op.getOperand(0).getValueType() == MVT::f64 &&
11309          Subtarget->isFPOnlySP() &&
11310          "Unexpected type for custom-lowering FP_ROUND");
11311
11312   RTLIB::Libcall LC;
11313   LC = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType());
11314
11315   SDValue SrcVal = Op.getOperand(0);
11316   return makeLibCall(DAG, LC, Op.getValueType(), &SrcVal, 1,
11317                      /*isSigned*/ false, SDLoc(Op)).first;
11318 }
11319
11320 bool
11321 ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
11322   // The ARM target isn't yet aware of offsets.
11323   return false;
11324 }
11325
11326 bool ARM::isBitFieldInvertedMask(unsigned v) {
11327   if (v == 0xffffffff)
11328     return false;
11329
11330   // there can be 1's on either or both "outsides", all the "inside"
11331   // bits must be 0's
11332   return isShiftedMask_32(~v);
11333 }
11334
11335 /// isFPImmLegal - Returns true if the target can instruction select the
11336 /// specified FP immediate natively. If false, the legalizer will
11337 /// materialize the FP immediate as a load from a constant pool.
11338 bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
11339   if (!Subtarget->hasVFP3())
11340     return false;
11341   if (VT == MVT::f32)
11342     return ARM_AM::getFP32Imm(Imm) != -1;
11343   if (VT == MVT::f64 && !Subtarget->isFPOnlySP())
11344     return ARM_AM::getFP64Imm(Imm) != -1;
11345   return false;
11346 }
11347
11348 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
11349 /// MemIntrinsicNodes.  The associated MachineMemOperands record the alignment
11350 /// specified in the intrinsic calls.
11351 bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
11352                                            const CallInst &I,
11353                                            unsigned Intrinsic) const {
11354   switch (Intrinsic) {
11355   case Intrinsic::arm_neon_vld1:
11356   case Intrinsic::arm_neon_vld2:
11357   case Intrinsic::arm_neon_vld3:
11358   case Intrinsic::arm_neon_vld4:
11359   case Intrinsic::arm_neon_vld2lane:
11360   case Intrinsic::arm_neon_vld3lane:
11361   case Intrinsic::arm_neon_vld4lane: {
11362     Info.opc = ISD::INTRINSIC_W_CHAIN;
11363     // Conservatively set memVT to the entire set of vectors loaded.
11364     auto &DL = I.getCalledFunction()->getParent()->getDataLayout();
11365     uint64_t NumElts = DL.getTypeAllocSize(I.getType()) / 8;
11366     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
11367     Info.ptrVal = I.getArgOperand(0);
11368     Info.offset = 0;
11369     Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
11370     Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
11371     Info.vol = false; // volatile loads with NEON intrinsics not supported
11372     Info.readMem = true;
11373     Info.writeMem = false;
11374     return true;
11375   }
11376   case Intrinsic::arm_neon_vst1:
11377   case Intrinsic::arm_neon_vst2:
11378   case Intrinsic::arm_neon_vst3:
11379   case Intrinsic::arm_neon_vst4:
11380   case Intrinsic::arm_neon_vst2lane:
11381   case Intrinsic::arm_neon_vst3lane:
11382   case Intrinsic::arm_neon_vst4lane: {
11383     Info.opc = ISD::INTRINSIC_VOID;
11384     // Conservatively set memVT to the entire set of vectors stored.
11385     auto &DL = I.getCalledFunction()->getParent()->getDataLayout();
11386     unsigned NumElts = 0;
11387     for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
11388       Type *ArgTy = I.getArgOperand(ArgI)->getType();
11389       if (!ArgTy->isVectorTy())
11390         break;
11391       NumElts += DL.getTypeAllocSize(ArgTy) / 8;
11392     }
11393     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
11394     Info.ptrVal = I.getArgOperand(0);
11395     Info.offset = 0;
11396     Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
11397     Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
11398     Info.vol = false; // volatile stores with NEON intrinsics not supported
11399     Info.readMem = false;
11400     Info.writeMem = true;
11401     return true;
11402   }
11403   case Intrinsic::arm_ldaex:
11404   case Intrinsic::arm_ldrex: {
11405     auto &DL = I.getCalledFunction()->getParent()->getDataLayout();
11406     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
11407     Info.opc = ISD::INTRINSIC_W_CHAIN;
11408     Info.memVT = MVT::getVT(PtrTy->getElementType());
11409     Info.ptrVal = I.getArgOperand(0);
11410     Info.offset = 0;
11411     Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
11412     Info.vol = true;
11413     Info.readMem = true;
11414     Info.writeMem = false;
11415     return true;
11416   }
11417   case Intrinsic::arm_stlex:
11418   case Intrinsic::arm_strex: {
11419     auto &DL = I.getCalledFunction()->getParent()->getDataLayout();
11420     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
11421     Info.opc = ISD::INTRINSIC_W_CHAIN;
11422     Info.memVT = MVT::getVT(PtrTy->getElementType());
11423     Info.ptrVal = I.getArgOperand(1);
11424     Info.offset = 0;
11425     Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
11426     Info.vol = true;
11427     Info.readMem = false;
11428     Info.writeMem = true;
11429     return true;
11430   }
11431   case Intrinsic::arm_stlexd:
11432   case Intrinsic::arm_strexd: {
11433     Info.opc = ISD::INTRINSIC_W_CHAIN;
11434     Info.memVT = MVT::i64;
11435     Info.ptrVal = I.getArgOperand(2);
11436     Info.offset = 0;
11437     Info.align = 8;
11438     Info.vol = true;
11439     Info.readMem = false;
11440     Info.writeMem = true;
11441     return true;
11442   }
11443   case Intrinsic::arm_ldaexd:
11444   case Intrinsic::arm_ldrexd: {
11445     Info.opc = ISD::INTRINSIC_W_CHAIN;
11446     Info.memVT = MVT::i64;
11447     Info.ptrVal = I.getArgOperand(0);
11448     Info.offset = 0;
11449     Info.align = 8;
11450     Info.vol = true;
11451     Info.readMem = true;
11452     Info.writeMem = false;
11453     return true;
11454   }
11455   default:
11456     break;
11457   }
11458
11459   return false;
11460 }
11461
11462 /// \brief Returns true if it is beneficial to convert a load of a constant
11463 /// to just the constant itself.
11464 bool ARMTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
11465                                                           Type *Ty) const {
11466   assert(Ty->isIntegerTy());
11467
11468   unsigned Bits = Ty->getPrimitiveSizeInBits();
11469   if (Bits == 0 || Bits > 32)
11470     return false;
11471   return true;
11472 }
11473
11474 bool ARMTargetLowering::hasLoadLinkedStoreConditional() const { return true; }
11475
11476 Instruction* ARMTargetLowering::makeDMB(IRBuilder<> &Builder,
11477                                         ARM_MB::MemBOpt Domain) const {
11478   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
11479
11480   // First, if the target has no DMB, see what fallback we can use.
11481   if (!Subtarget->hasDataBarrier()) {
11482     // Some ARMv6 cpus can support data barriers with an mcr instruction.
11483     // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
11484     // here.
11485     if (Subtarget->hasV6Ops() && !Subtarget->isThumb()) {
11486       Function *MCR = llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_mcr);
11487       Value* args[6] = {Builder.getInt32(15), Builder.getInt32(0),
11488                         Builder.getInt32(0), Builder.getInt32(7),
11489                         Builder.getInt32(10), Builder.getInt32(5)};
11490       return Builder.CreateCall(MCR, args);
11491     } else {
11492       // Instead of using barriers, atomic accesses on these subtargets use
11493       // libcalls.
11494       llvm_unreachable("makeDMB on a target so old that it has no barriers");
11495     }
11496   } else {
11497     Function *DMB = llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_dmb);
11498     // Only a full system barrier exists in the M-class architectures.
11499     Domain = Subtarget->isMClass() ? ARM_MB::SY : Domain;
11500     Constant *CDomain = Builder.getInt32(Domain);
11501     return Builder.CreateCall(DMB, CDomain);
11502   }
11503 }
11504
11505 // Based on http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html
11506 Instruction* ARMTargetLowering::emitLeadingFence(IRBuilder<> &Builder,
11507                                          AtomicOrdering Ord, bool IsStore,
11508                                          bool IsLoad) const {
11509   if (!getInsertFencesForAtomic())
11510     return nullptr;
11511
11512   switch (Ord) {
11513   case NotAtomic:
11514   case Unordered:
11515     llvm_unreachable("Invalid fence: unordered/non-atomic");
11516   case Monotonic:
11517   case Acquire:
11518     return nullptr; // Nothing to do
11519   case SequentiallyConsistent:
11520     if (!IsStore)
11521       return nullptr; // Nothing to do
11522     /*FALLTHROUGH*/
11523   case Release:
11524   case AcquireRelease:
11525     if (Subtarget->isSwift())
11526       return makeDMB(Builder, ARM_MB::ISHST);
11527     // FIXME: add a comment with a link to documentation justifying this.
11528     else
11529       return makeDMB(Builder, ARM_MB::ISH);
11530   }
11531   llvm_unreachable("Unknown fence ordering in emitLeadingFence");
11532 }
11533
11534 Instruction* ARMTargetLowering::emitTrailingFence(IRBuilder<> &Builder,
11535                                           AtomicOrdering Ord, bool IsStore,
11536                                           bool IsLoad) const {
11537   if (!getInsertFencesForAtomic())
11538     return nullptr;
11539
11540   switch (Ord) {
11541   case NotAtomic:
11542   case Unordered:
11543     llvm_unreachable("Invalid fence: unordered/not-atomic");
11544   case Monotonic:
11545   case Release:
11546     return nullptr; // Nothing to do
11547   case Acquire:
11548   case AcquireRelease:
11549   case SequentiallyConsistent:
11550     return makeDMB(Builder, ARM_MB::ISH);
11551   }
11552   llvm_unreachable("Unknown fence ordering in emitTrailingFence");
11553 }
11554
11555 // Loads and stores less than 64-bits are already atomic; ones above that
11556 // are doomed anyway, so defer to the default libcall and blame the OS when
11557 // things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit
11558 // anything for those.
11559 bool ARMTargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
11560   unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits();
11561   return (Size == 64) && !Subtarget->isMClass();
11562 }
11563
11564 // Loads and stores less than 64-bits are already atomic; ones above that
11565 // are doomed anyway, so defer to the default libcall and blame the OS when
11566 // things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit
11567 // anything for those.
11568 // FIXME: ldrd and strd are atomic if the CPU has LPAE (e.g. A15 has that
11569 // guarantee, see DDI0406C ARM architecture reference manual,
11570 // sections A8.8.72-74 LDRD)
11571 bool ARMTargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
11572   unsigned Size = LI->getType()->getPrimitiveSizeInBits();
11573   return (Size == 64) && !Subtarget->isMClass();
11574 }
11575
11576 // For the real atomic operations, we have ldrex/strex up to 32 bits,
11577 // and up to 64 bits on the non-M profiles
11578 TargetLoweringBase::AtomicRMWExpansionKind
11579 ARMTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
11580   unsigned Size = AI->getType()->getPrimitiveSizeInBits();
11581   return (Size <= (Subtarget->isMClass() ? 32U : 64U))
11582              ? AtomicRMWExpansionKind::LLSC
11583              : AtomicRMWExpansionKind::None;
11584 }
11585
11586 // This has so far only been implemented for MachO.
11587 bool ARMTargetLowering::useLoadStackGuardNode() const {
11588   return Subtarget->isTargetMachO();
11589 }
11590
11591 bool ARMTargetLowering::canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
11592                                                   unsigned &Cost) const {
11593   // If we do not have NEON, vector types are not natively supported.
11594   if (!Subtarget->hasNEON())
11595     return false;
11596
11597   // Floating point values and vector values map to the same register file.
11598   // Therefore, althought we could do a store extract of a vector type, this is
11599   // better to leave at float as we have more freedom in the addressing mode for
11600   // those.
11601   if (VectorTy->isFPOrFPVectorTy())
11602     return false;
11603
11604   // If the index is unknown at compile time, this is very expensive to lower
11605   // and it is not possible to combine the store with the extract.
11606   if (!isa<ConstantInt>(Idx))
11607     return false;
11608
11609   assert(VectorTy->isVectorTy() && "VectorTy is not a vector type");
11610   unsigned BitWidth = cast<VectorType>(VectorTy)->getBitWidth();
11611   // We can do a store + vector extract on any vector that fits perfectly in a D
11612   // or Q register.
11613   if (BitWidth == 64 || BitWidth == 128) {
11614     Cost = 0;
11615     return true;
11616   }
11617   return false;
11618 }
11619
11620 Value *ARMTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
11621                                          AtomicOrdering Ord) const {
11622   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
11623   Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
11624   bool IsAcquire = isAtLeastAcquire(Ord);
11625
11626   // Since i64 isn't legal and intrinsics don't get type-lowered, the ldrexd
11627   // intrinsic must return {i32, i32} and we have to recombine them into a
11628   // single i64 here.
11629   if (ValTy->getPrimitiveSizeInBits() == 64) {
11630     Intrinsic::ID Int =
11631         IsAcquire ? Intrinsic::arm_ldaexd : Intrinsic::arm_ldrexd;
11632     Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int);
11633
11634     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
11635     Value *LoHi = Builder.CreateCall(Ldrex, Addr, "lohi");
11636
11637     Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
11638     Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
11639     if (!Subtarget->isLittle())
11640       std::swap (Lo, Hi);
11641     Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
11642     Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
11643     return Builder.CreateOr(
11644         Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 32)), "val64");
11645   }
11646
11647   Type *Tys[] = { Addr->getType() };
11648   Intrinsic::ID Int = IsAcquire ? Intrinsic::arm_ldaex : Intrinsic::arm_ldrex;
11649   Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int, Tys);
11650
11651   return Builder.CreateTruncOrBitCast(
11652       Builder.CreateCall(Ldrex, Addr),
11653       cast<PointerType>(Addr->getType())->getElementType());
11654 }
11655
11656 Value *ARMTargetLowering::emitStoreConditional(IRBuilder<> &Builder, Value *Val,
11657                                                Value *Addr,
11658                                                AtomicOrdering Ord) const {
11659   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
11660   bool IsRelease = isAtLeastRelease(Ord);
11661
11662   // Since the intrinsics must have legal type, the i64 intrinsics take two
11663   // parameters: "i32, i32". We must marshal Val into the appropriate form
11664   // before the call.
11665   if (Val->getType()->getPrimitiveSizeInBits() == 64) {
11666     Intrinsic::ID Int =
11667         IsRelease ? Intrinsic::arm_stlexd : Intrinsic::arm_strexd;
11668     Function *Strex = Intrinsic::getDeclaration(M, Int);
11669     Type *Int32Ty = Type::getInt32Ty(M->getContext());
11670
11671     Value *Lo = Builder.CreateTrunc(Val, Int32Ty, "lo");
11672     Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 32), Int32Ty, "hi");
11673     if (!Subtarget->isLittle())
11674       std::swap (Lo, Hi);
11675     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
11676     return Builder.CreateCall(Strex, {Lo, Hi, Addr});
11677   }
11678
11679   Intrinsic::ID Int = IsRelease ? Intrinsic::arm_stlex : Intrinsic::arm_strex;
11680   Type *Tys[] = { Addr->getType() };
11681   Function *Strex = Intrinsic::getDeclaration(M, Int, Tys);
11682
11683   return Builder.CreateCall(
11684       Strex, {Builder.CreateZExtOrBitCast(
11685                   Val, Strex->getFunctionType()->getParamType(0)),
11686               Addr});
11687 }
11688
11689 /// \brief Lower an interleaved load into a vldN intrinsic.
11690 ///
11691 /// E.g. Lower an interleaved load (Factor = 2):
11692 ///        %wide.vec = load <8 x i32>, <8 x i32>* %ptr, align 4
11693 ///        %v0 = shuffle %wide.vec, undef, <0, 2, 4, 6>  ; Extract even elements
11694 ///        %v1 = shuffle %wide.vec, undef, <1, 3, 5, 7>  ; Extract odd elements
11695 ///
11696 ///      Into:
11697 ///        %vld2 = { <4 x i32>, <4 x i32> } call llvm.arm.neon.vld2(%ptr, 4)
11698 ///        %vec0 = extractelement { <4 x i32>, <4 x i32> } %vld2, i32 0
11699 ///        %vec1 = extractelement { <4 x i32>, <4 x i32> } %vld2, i32 1
11700 bool ARMTargetLowering::lowerInterleavedLoad(
11701     LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles,
11702     ArrayRef<unsigned> Indices, unsigned Factor) const {
11703   assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
11704          "Invalid interleave factor");
11705   assert(!Shuffles.empty() && "Empty shufflevector input");
11706   assert(Shuffles.size() == Indices.size() &&
11707          "Unmatched number of shufflevectors and indices");
11708
11709   VectorType *VecTy = Shuffles[0]->getType();
11710   Type *EltTy = VecTy->getVectorElementType();
11711
11712   const DataLayout &DL = LI->getModule()->getDataLayout();
11713   unsigned VecSize = DL.getTypeAllocSizeInBits(VecTy);
11714   bool EltIs64Bits = DL.getTypeAllocSizeInBits(EltTy) == 64;
11715
11716   // Skip illegal vector types and vector types of i64/f64 element (vldN doesn't
11717   // support i64/f64 element).
11718   if ((VecSize != 64 && VecSize != 128) || EltIs64Bits)
11719     return false;
11720
11721   // A pointer vector can not be the return type of the ldN intrinsics. Need to
11722   // load integer vectors first and then convert to pointer vectors.
11723   if (EltTy->isPointerTy())
11724     VecTy =
11725         VectorType::get(DL.getIntPtrType(EltTy), VecTy->getVectorNumElements());
11726
11727   static const Intrinsic::ID LoadInts[3] = {Intrinsic::arm_neon_vld2,
11728                                             Intrinsic::arm_neon_vld3,
11729                                             Intrinsic::arm_neon_vld4};
11730
11731   Function *VldnFunc =
11732       Intrinsic::getDeclaration(LI->getModule(), LoadInts[Factor - 2], VecTy);
11733
11734   IRBuilder<> Builder(LI);
11735   SmallVector<Value *, 2> Ops;
11736
11737   Type *Int8Ptr = Builder.getInt8PtrTy(LI->getPointerAddressSpace());
11738   Ops.push_back(Builder.CreateBitCast(LI->getPointerOperand(), Int8Ptr));
11739   Ops.push_back(Builder.getInt32(LI->getAlignment()));
11740
11741   CallInst *VldN = Builder.CreateCall(VldnFunc, Ops, "vldN");
11742
11743   // Replace uses of each shufflevector with the corresponding vector loaded
11744   // by ldN.
11745   for (unsigned i = 0; i < Shuffles.size(); i++) {
11746     ShuffleVectorInst *SV = Shuffles[i];
11747     unsigned Index = Indices[i];
11748
11749     Value *SubVec = Builder.CreateExtractValue(VldN, Index);
11750
11751     // Convert the integer vector to pointer vector if the element is pointer.
11752     if (EltTy->isPointerTy())
11753       SubVec = Builder.CreateIntToPtr(SubVec, SV->getType());
11754
11755     SV->replaceAllUsesWith(SubVec);
11756   }
11757
11758   return true;
11759 }
11760
11761 /// \brief Get a mask consisting of sequential integers starting from \p Start.
11762 ///
11763 /// I.e. <Start, Start + 1, ..., Start + NumElts - 1>
11764 static Constant *getSequentialMask(IRBuilder<> &Builder, unsigned Start,
11765                                    unsigned NumElts) {
11766   SmallVector<Constant *, 16> Mask;
11767   for (unsigned i = 0; i < NumElts; i++)
11768     Mask.push_back(Builder.getInt32(Start + i));
11769
11770   return ConstantVector::get(Mask);
11771 }
11772
11773 /// \brief Lower an interleaved store into a vstN intrinsic.
11774 ///
11775 /// E.g. Lower an interleaved store (Factor = 3):
11776 ///        %i.vec = shuffle <8 x i32> %v0, <8 x i32> %v1,
11777 ///                                  <0, 4, 8, 1, 5, 9, 2, 6, 10, 3, 7, 11>
11778 ///        store <12 x i32> %i.vec, <12 x i32>* %ptr, align 4
11779 ///
11780 ///      Into:
11781 ///        %sub.v0 = shuffle <8 x i32> %v0, <8 x i32> v1, <0, 1, 2, 3>
11782 ///        %sub.v1 = shuffle <8 x i32> %v0, <8 x i32> v1, <4, 5, 6, 7>
11783 ///        %sub.v2 = shuffle <8 x i32> %v0, <8 x i32> v1, <8, 9, 10, 11>
11784 ///        call void llvm.arm.neon.vst3(%ptr, %sub.v0, %sub.v1, %sub.v2, 4)
11785 ///
11786 /// Note that the new shufflevectors will be removed and we'll only generate one
11787 /// vst3 instruction in CodeGen.
11788 bool ARMTargetLowering::lowerInterleavedStore(StoreInst *SI,
11789                                               ShuffleVectorInst *SVI,
11790                                               unsigned Factor) const {
11791   assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
11792          "Invalid interleave factor");
11793
11794   VectorType *VecTy = SVI->getType();
11795   assert(VecTy->getVectorNumElements() % Factor == 0 &&
11796          "Invalid interleaved store");
11797
11798   unsigned NumSubElts = VecTy->getVectorNumElements() / Factor;
11799   Type *EltTy = VecTy->getVectorElementType();
11800   VectorType *SubVecTy = VectorType::get(EltTy, NumSubElts);
11801
11802   const DataLayout &DL = SI->getModule()->getDataLayout();
11803   unsigned SubVecSize = DL.getTypeAllocSizeInBits(SubVecTy);
11804   bool EltIs64Bits = DL.getTypeAllocSizeInBits(EltTy) == 64;
11805
11806   // Skip illegal sub vector types and vector types of i64/f64 element (vstN
11807   // doesn't support i64/f64 element).
11808   if ((SubVecSize != 64 && SubVecSize != 128) || EltIs64Bits)
11809     return false;
11810
11811   Value *Op0 = SVI->getOperand(0);
11812   Value *Op1 = SVI->getOperand(1);
11813   IRBuilder<> Builder(SI);
11814
11815   // StN intrinsics don't support pointer vectors as arguments. Convert pointer
11816   // vectors to integer vectors.
11817   if (EltTy->isPointerTy()) {
11818     Type *IntTy = DL.getIntPtrType(EltTy);
11819
11820     // Convert to the corresponding integer vector.
11821     Type *IntVecTy =
11822         VectorType::get(IntTy, Op0->getType()->getVectorNumElements());
11823     Op0 = Builder.CreatePtrToInt(Op0, IntVecTy);
11824     Op1 = Builder.CreatePtrToInt(Op1, IntVecTy);
11825
11826     SubVecTy = VectorType::get(IntTy, NumSubElts);
11827   }
11828
11829   static Intrinsic::ID StoreInts[3] = {Intrinsic::arm_neon_vst2,
11830                                        Intrinsic::arm_neon_vst3,
11831                                        Intrinsic::arm_neon_vst4};
11832   Function *VstNFunc = Intrinsic::getDeclaration(
11833       SI->getModule(), StoreInts[Factor - 2], SubVecTy);
11834
11835   SmallVector<Value *, 6> Ops;
11836
11837   Type *Int8Ptr = Builder.getInt8PtrTy(SI->getPointerAddressSpace());
11838   Ops.push_back(Builder.CreateBitCast(SI->getPointerOperand(), Int8Ptr));
11839
11840   // Split the shufflevector operands into sub vectors for the new vstN call.
11841   for (unsigned i = 0; i < Factor; i++)
11842     Ops.push_back(Builder.CreateShuffleVector(
11843         Op0, Op1, getSequentialMask(Builder, NumSubElts * i, NumSubElts)));
11844
11845   Ops.push_back(Builder.getInt32(SI->getAlignment()));
11846   Builder.CreateCall(VstNFunc, Ops);
11847   return true;
11848 }
11849
11850 enum HABaseType {
11851   HA_UNKNOWN = 0,
11852   HA_FLOAT,
11853   HA_DOUBLE,
11854   HA_VECT64,
11855   HA_VECT128
11856 };
11857
11858 static bool isHomogeneousAggregate(Type *Ty, HABaseType &Base,
11859                                    uint64_t &Members) {
11860   if (auto *ST = dyn_cast<StructType>(Ty)) {
11861     for (unsigned i = 0; i < ST->getNumElements(); ++i) {
11862       uint64_t SubMembers = 0;
11863       if (!isHomogeneousAggregate(ST->getElementType(i), Base, SubMembers))
11864         return false;
11865       Members += SubMembers;
11866     }
11867   } else if (auto *AT = dyn_cast<ArrayType>(Ty)) {
11868     uint64_t SubMembers = 0;
11869     if (!isHomogeneousAggregate(AT->getElementType(), Base, SubMembers))
11870       return false;
11871     Members += SubMembers * AT->getNumElements();
11872   } else if (Ty->isFloatTy()) {
11873     if (Base != HA_UNKNOWN && Base != HA_FLOAT)
11874       return false;
11875     Members = 1;
11876     Base = HA_FLOAT;
11877   } else if (Ty->isDoubleTy()) {
11878     if (Base != HA_UNKNOWN && Base != HA_DOUBLE)
11879       return false;
11880     Members = 1;
11881     Base = HA_DOUBLE;
11882   } else if (auto *VT = dyn_cast<VectorType>(Ty)) {
11883     Members = 1;
11884     switch (Base) {
11885     case HA_FLOAT:
11886     case HA_DOUBLE:
11887       return false;
11888     case HA_VECT64:
11889       return VT->getBitWidth() == 64;
11890     case HA_VECT128:
11891       return VT->getBitWidth() == 128;
11892     case HA_UNKNOWN:
11893       switch (VT->getBitWidth()) {
11894       case 64:
11895         Base = HA_VECT64;
11896         return true;
11897       case 128:
11898         Base = HA_VECT128;
11899         return true;
11900       default:
11901         return false;
11902       }
11903     }
11904   }
11905
11906   return (Members > 0 && Members <= 4);
11907 }
11908
11909 /// \brief Return true if a type is an AAPCS-VFP homogeneous aggregate or one of
11910 /// [N x i32] or [N x i64]. This allows front-ends to skip emitting padding when
11911 /// passing according to AAPCS rules.
11912 bool ARMTargetLowering::functionArgumentNeedsConsecutiveRegisters(
11913     Type *Ty, CallingConv::ID CallConv, bool isVarArg) const {
11914   if (getEffectiveCallingConv(CallConv, isVarArg) !=
11915       CallingConv::ARM_AAPCS_VFP)
11916     return false;
11917
11918   HABaseType Base = HA_UNKNOWN;
11919   uint64_t Members = 0;
11920   bool IsHA = isHomogeneousAggregate(Ty, Base, Members);
11921   DEBUG(dbgs() << "isHA: " << IsHA << " "; Ty->dump());
11922
11923   bool IsIntArray = Ty->isArrayTy() && Ty->getArrayElementType()->isIntegerTy();
11924   return IsHA || IsIntArray;
11925 }