Implememting named register intrinsics
[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/CodeGen/CallingConvLower.h"
27 #include "llvm/CodeGen/IntrinsicLowering.h"
28 #include "llvm/CodeGen/MachineBasicBlock.h"
29 #include "llvm/CodeGen/MachineFrameInfo.h"
30 #include "llvm/CodeGen/MachineFunction.h"
31 #include "llvm/CodeGen/MachineInstrBuilder.h"
32 #include "llvm/CodeGen/MachineModuleInfo.h"
33 #include "llvm/CodeGen/MachineRegisterInfo.h"
34 #include "llvm/CodeGen/SelectionDAG.h"
35 #include "llvm/IR/CallingConv.h"
36 #include "llvm/IR/Constants.h"
37 #include "llvm/IR/Function.h"
38 #include "llvm/IR/GlobalValue.h"
39 #include "llvm/IR/IRBuilder.h"
40 #include "llvm/IR/Instruction.h"
41 #include "llvm/IR/Instructions.h"
42 #include "llvm/IR/Intrinsics.h"
43 #include "llvm/IR/Type.h"
44 #include "llvm/MC/MCSectionMachO.h"
45 #include "llvm/Support/CommandLine.h"
46 #include "llvm/Support/ErrorHandling.h"
47 #include "llvm/Support/MathExtras.h"
48 #include "llvm/Target/TargetOptions.h"
49 #include <utility>
50 using namespace llvm;
51
52 #define DEBUG_TYPE "arm-isel"
53
54 STATISTIC(NumTailCalls, "Number of tail calls");
55 STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
56 STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments");
57
58 cl::opt<bool>
59 EnableARMLongCalls("arm-long-calls", cl::Hidden,
60   cl::desc("Generate calls via indirect call instructions"),
61   cl::init(false));
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                const TargetMachine &TM, SmallVectorImpl<CCValAssign> &locs,
73                LLVMContext &C, ParmContext PC)
74         : CCState(CC, isVarArg, MF, TM, 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
147 void ARMTargetLowering::addDRTypeForNEON(MVT VT) {
148   addRegisterClass(VT, &ARM::DPRRegClass);
149   addTypeForNEON(VT, MVT::f64, MVT::v2i32);
150 }
151
152 void ARMTargetLowering::addQRTypeForNEON(MVT VT) {
153   addRegisterClass(VT, &ARM::DPairRegClass);
154   addTypeForNEON(VT, MVT::v2f64, MVT::v4i32);
155 }
156
157 static TargetLoweringObjectFile *createTLOF(TargetMachine &TM) {
158   if (TM.getSubtarget<ARMSubtarget>().isTargetMachO())
159     return new TargetLoweringObjectFileMachO();
160
161   return new ARMElfTargetObjectFile();
162 }
163
164 ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
165     : TargetLowering(TM, createTLOF(TM)) {
166   Subtarget = &TM.getSubtarget<ARMSubtarget>();
167   RegInfo = TM.getRegisterInfo();
168   Itins = TM.getInstrItineraryData();
169
170   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
171
172   if (Subtarget->isTargetMachO()) {
173     // Uses VFP for Thumb libfuncs if available.
174     if (Subtarget->isThumb() && Subtarget->hasVFP2() &&
175         Subtarget->hasARMOps() && !TM.Options.UseSoftFloat) {
176       // Single-precision floating-point arithmetic.
177       setLibcallName(RTLIB::ADD_F32, "__addsf3vfp");
178       setLibcallName(RTLIB::SUB_F32, "__subsf3vfp");
179       setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp");
180       setLibcallName(RTLIB::DIV_F32, "__divsf3vfp");
181
182       // Double-precision floating-point arithmetic.
183       setLibcallName(RTLIB::ADD_F64, "__adddf3vfp");
184       setLibcallName(RTLIB::SUB_F64, "__subdf3vfp");
185       setLibcallName(RTLIB::MUL_F64, "__muldf3vfp");
186       setLibcallName(RTLIB::DIV_F64, "__divdf3vfp");
187
188       // Single-precision comparisons.
189       setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp");
190       setLibcallName(RTLIB::UNE_F32, "__nesf2vfp");
191       setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp");
192       setLibcallName(RTLIB::OLE_F32, "__lesf2vfp");
193       setLibcallName(RTLIB::OGE_F32, "__gesf2vfp");
194       setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp");
195       setLibcallName(RTLIB::UO_F32,  "__unordsf2vfp");
196       setLibcallName(RTLIB::O_F32,   "__unordsf2vfp");
197
198       setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
199       setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE);
200       setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
201       setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
202       setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
203       setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
204       setCmpLibcallCC(RTLIB::UO_F32,  ISD::SETNE);
205       setCmpLibcallCC(RTLIB::O_F32,   ISD::SETEQ);
206
207       // Double-precision comparisons.
208       setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp");
209       setLibcallName(RTLIB::UNE_F64, "__nedf2vfp");
210       setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp");
211       setLibcallName(RTLIB::OLE_F64, "__ledf2vfp");
212       setLibcallName(RTLIB::OGE_F64, "__gedf2vfp");
213       setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp");
214       setLibcallName(RTLIB::UO_F64,  "__unorddf2vfp");
215       setLibcallName(RTLIB::O_F64,   "__unorddf2vfp");
216
217       setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
218       setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE);
219       setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
220       setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
221       setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
222       setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
223       setCmpLibcallCC(RTLIB::UO_F64,  ISD::SETNE);
224       setCmpLibcallCC(RTLIB::O_F64,   ISD::SETEQ);
225
226       // Floating-point to integer conversions.
227       // i64 conversions are done via library routines even when generating VFP
228       // instructions, so use the same ones.
229       setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp");
230       setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp");
231       setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp");
232       setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp");
233
234       // Conversions between floating types.
235       setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp");
236       setLibcallName(RTLIB::FPEXT_F32_F64,   "__extendsfdf2vfp");
237
238       // Integer to floating-point conversions.
239       // i64 conversions are done via library routines even when generating VFP
240       // instructions, so use the same ones.
241       // FIXME: There appears to be some naming inconsistency in ARM libgcc:
242       // e.g., __floatunsidf vs. __floatunssidfvfp.
243       setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp");
244       setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp");
245       setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp");
246       setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp");
247     }
248   }
249
250   // These libcalls are not available in 32-bit.
251   setLibcallName(RTLIB::SHL_I128, nullptr);
252   setLibcallName(RTLIB::SRL_I128, nullptr);
253   setLibcallName(RTLIB::SRA_I128, nullptr);
254
255   if (Subtarget->isAAPCS_ABI() && !Subtarget->isTargetMachO() &&
256       !Subtarget->isTargetWindows()) {
257     // Double-precision floating-point arithmetic helper functions
258     // RTABI chapter 4.1.2, Table 2
259     setLibcallName(RTLIB::ADD_F64, "__aeabi_dadd");
260     setLibcallName(RTLIB::DIV_F64, "__aeabi_ddiv");
261     setLibcallName(RTLIB::MUL_F64, "__aeabi_dmul");
262     setLibcallName(RTLIB::SUB_F64, "__aeabi_dsub");
263     setLibcallCallingConv(RTLIB::ADD_F64, CallingConv::ARM_AAPCS);
264     setLibcallCallingConv(RTLIB::DIV_F64, CallingConv::ARM_AAPCS);
265     setLibcallCallingConv(RTLIB::MUL_F64, CallingConv::ARM_AAPCS);
266     setLibcallCallingConv(RTLIB::SUB_F64, CallingConv::ARM_AAPCS);
267
268     // Double-precision floating-point comparison helper functions
269     // RTABI chapter 4.1.2, Table 3
270     setLibcallName(RTLIB::OEQ_F64, "__aeabi_dcmpeq");
271     setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE);
272     setLibcallName(RTLIB::UNE_F64, "__aeabi_dcmpeq");
273     setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETEQ);
274     setLibcallName(RTLIB::OLT_F64, "__aeabi_dcmplt");
275     setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE);
276     setLibcallName(RTLIB::OLE_F64, "__aeabi_dcmple");
277     setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE);
278     setLibcallName(RTLIB::OGE_F64, "__aeabi_dcmpge");
279     setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE);
280     setLibcallName(RTLIB::OGT_F64, "__aeabi_dcmpgt");
281     setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE);
282     setLibcallName(RTLIB::UO_F64,  "__aeabi_dcmpun");
283     setCmpLibcallCC(RTLIB::UO_F64,  ISD::SETNE);
284     setLibcallName(RTLIB::O_F64,   "__aeabi_dcmpun");
285     setCmpLibcallCC(RTLIB::O_F64,   ISD::SETEQ);
286     setLibcallCallingConv(RTLIB::OEQ_F64, CallingConv::ARM_AAPCS);
287     setLibcallCallingConv(RTLIB::UNE_F64, CallingConv::ARM_AAPCS);
288     setLibcallCallingConv(RTLIB::OLT_F64, CallingConv::ARM_AAPCS);
289     setLibcallCallingConv(RTLIB::OLE_F64, CallingConv::ARM_AAPCS);
290     setLibcallCallingConv(RTLIB::OGE_F64, CallingConv::ARM_AAPCS);
291     setLibcallCallingConv(RTLIB::OGT_F64, CallingConv::ARM_AAPCS);
292     setLibcallCallingConv(RTLIB::UO_F64, CallingConv::ARM_AAPCS);
293     setLibcallCallingConv(RTLIB::O_F64, CallingConv::ARM_AAPCS);
294
295     // Single-precision floating-point arithmetic helper functions
296     // RTABI chapter 4.1.2, Table 4
297     setLibcallName(RTLIB::ADD_F32, "__aeabi_fadd");
298     setLibcallName(RTLIB::DIV_F32, "__aeabi_fdiv");
299     setLibcallName(RTLIB::MUL_F32, "__aeabi_fmul");
300     setLibcallName(RTLIB::SUB_F32, "__aeabi_fsub");
301     setLibcallCallingConv(RTLIB::ADD_F32, CallingConv::ARM_AAPCS);
302     setLibcallCallingConv(RTLIB::DIV_F32, CallingConv::ARM_AAPCS);
303     setLibcallCallingConv(RTLIB::MUL_F32, CallingConv::ARM_AAPCS);
304     setLibcallCallingConv(RTLIB::SUB_F32, CallingConv::ARM_AAPCS);
305
306     // Single-precision floating-point comparison helper functions
307     // RTABI chapter 4.1.2, Table 5
308     setLibcallName(RTLIB::OEQ_F32, "__aeabi_fcmpeq");
309     setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE);
310     setLibcallName(RTLIB::UNE_F32, "__aeabi_fcmpeq");
311     setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETEQ);
312     setLibcallName(RTLIB::OLT_F32, "__aeabi_fcmplt");
313     setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE);
314     setLibcallName(RTLIB::OLE_F32, "__aeabi_fcmple");
315     setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE);
316     setLibcallName(RTLIB::OGE_F32, "__aeabi_fcmpge");
317     setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE);
318     setLibcallName(RTLIB::OGT_F32, "__aeabi_fcmpgt");
319     setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE);
320     setLibcallName(RTLIB::UO_F32,  "__aeabi_fcmpun");
321     setCmpLibcallCC(RTLIB::UO_F32,  ISD::SETNE);
322     setLibcallName(RTLIB::O_F32,   "__aeabi_fcmpun");
323     setCmpLibcallCC(RTLIB::O_F32,   ISD::SETEQ);
324     setLibcallCallingConv(RTLIB::OEQ_F32, CallingConv::ARM_AAPCS);
325     setLibcallCallingConv(RTLIB::UNE_F32, CallingConv::ARM_AAPCS);
326     setLibcallCallingConv(RTLIB::OLT_F32, CallingConv::ARM_AAPCS);
327     setLibcallCallingConv(RTLIB::OLE_F32, CallingConv::ARM_AAPCS);
328     setLibcallCallingConv(RTLIB::OGE_F32, CallingConv::ARM_AAPCS);
329     setLibcallCallingConv(RTLIB::OGT_F32, CallingConv::ARM_AAPCS);
330     setLibcallCallingConv(RTLIB::UO_F32, CallingConv::ARM_AAPCS);
331     setLibcallCallingConv(RTLIB::O_F32, CallingConv::ARM_AAPCS);
332
333     // Floating-point to integer conversions.
334     // RTABI chapter 4.1.2, Table 6
335     setLibcallName(RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz");
336     setLibcallName(RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz");
337     setLibcallName(RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz");
338     setLibcallName(RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz");
339     setLibcallName(RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz");
340     setLibcallName(RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz");
341     setLibcallName(RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz");
342     setLibcallName(RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz");
343     setLibcallCallingConv(RTLIB::FPTOSINT_F64_I32, CallingConv::ARM_AAPCS);
344     setLibcallCallingConv(RTLIB::FPTOUINT_F64_I32, CallingConv::ARM_AAPCS);
345     setLibcallCallingConv(RTLIB::FPTOSINT_F64_I64, CallingConv::ARM_AAPCS);
346     setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::ARM_AAPCS);
347     setLibcallCallingConv(RTLIB::FPTOSINT_F32_I32, CallingConv::ARM_AAPCS);
348     setLibcallCallingConv(RTLIB::FPTOUINT_F32_I32, CallingConv::ARM_AAPCS);
349     setLibcallCallingConv(RTLIB::FPTOSINT_F32_I64, CallingConv::ARM_AAPCS);
350     setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::ARM_AAPCS);
351
352     // Conversions between floating types.
353     // RTABI chapter 4.1.2, Table 7
354     setLibcallName(RTLIB::FPROUND_F64_F32, "__aeabi_d2f");
355     setLibcallName(RTLIB::FPEXT_F32_F64,   "__aeabi_f2d");
356     setLibcallCallingConv(RTLIB::FPROUND_F64_F32, CallingConv::ARM_AAPCS);
357     setLibcallCallingConv(RTLIB::FPEXT_F32_F64, CallingConv::ARM_AAPCS);
358
359     // Integer to floating-point conversions.
360     // RTABI chapter 4.1.2, Table 8
361     setLibcallName(RTLIB::SINTTOFP_I32_F64, "__aeabi_i2d");
362     setLibcallName(RTLIB::UINTTOFP_I32_F64, "__aeabi_ui2d");
363     setLibcallName(RTLIB::SINTTOFP_I64_F64, "__aeabi_l2d");
364     setLibcallName(RTLIB::UINTTOFP_I64_F64, "__aeabi_ul2d");
365     setLibcallName(RTLIB::SINTTOFP_I32_F32, "__aeabi_i2f");
366     setLibcallName(RTLIB::UINTTOFP_I32_F32, "__aeabi_ui2f");
367     setLibcallName(RTLIB::SINTTOFP_I64_F32, "__aeabi_l2f");
368     setLibcallName(RTLIB::UINTTOFP_I64_F32, "__aeabi_ul2f");
369     setLibcallCallingConv(RTLIB::SINTTOFP_I32_F64, CallingConv::ARM_AAPCS);
370     setLibcallCallingConv(RTLIB::UINTTOFP_I32_F64, CallingConv::ARM_AAPCS);
371     setLibcallCallingConv(RTLIB::SINTTOFP_I64_F64, CallingConv::ARM_AAPCS);
372     setLibcallCallingConv(RTLIB::UINTTOFP_I64_F64, CallingConv::ARM_AAPCS);
373     setLibcallCallingConv(RTLIB::SINTTOFP_I32_F32, CallingConv::ARM_AAPCS);
374     setLibcallCallingConv(RTLIB::UINTTOFP_I32_F32, CallingConv::ARM_AAPCS);
375     setLibcallCallingConv(RTLIB::SINTTOFP_I64_F32, CallingConv::ARM_AAPCS);
376     setLibcallCallingConv(RTLIB::UINTTOFP_I64_F32, CallingConv::ARM_AAPCS);
377
378     // Long long helper functions
379     // RTABI chapter 4.2, Table 9
380     setLibcallName(RTLIB::MUL_I64,  "__aeabi_lmul");
381     setLibcallName(RTLIB::SHL_I64, "__aeabi_llsl");
382     setLibcallName(RTLIB::SRL_I64, "__aeabi_llsr");
383     setLibcallName(RTLIB::SRA_I64, "__aeabi_lasr");
384     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::ARM_AAPCS);
385     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::ARM_AAPCS);
386     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::ARM_AAPCS);
387     setLibcallCallingConv(RTLIB::SHL_I64, CallingConv::ARM_AAPCS);
388     setLibcallCallingConv(RTLIB::SRL_I64, CallingConv::ARM_AAPCS);
389     setLibcallCallingConv(RTLIB::SRA_I64, CallingConv::ARM_AAPCS);
390
391     // Integer division functions
392     // RTABI chapter 4.3.1
393     setLibcallName(RTLIB::SDIV_I8,  "__aeabi_idiv");
394     setLibcallName(RTLIB::SDIV_I16, "__aeabi_idiv");
395     setLibcallName(RTLIB::SDIV_I32, "__aeabi_idiv");
396     setLibcallName(RTLIB::SDIV_I64, "__aeabi_ldivmod");
397     setLibcallName(RTLIB::UDIV_I8,  "__aeabi_uidiv");
398     setLibcallName(RTLIB::UDIV_I16, "__aeabi_uidiv");
399     setLibcallName(RTLIB::UDIV_I32, "__aeabi_uidiv");
400     setLibcallName(RTLIB::UDIV_I64, "__aeabi_uldivmod");
401     setLibcallCallingConv(RTLIB::SDIV_I8, CallingConv::ARM_AAPCS);
402     setLibcallCallingConv(RTLIB::SDIV_I16, CallingConv::ARM_AAPCS);
403     setLibcallCallingConv(RTLIB::SDIV_I32, CallingConv::ARM_AAPCS);
404     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::ARM_AAPCS);
405     setLibcallCallingConv(RTLIB::UDIV_I8, CallingConv::ARM_AAPCS);
406     setLibcallCallingConv(RTLIB::UDIV_I16, CallingConv::ARM_AAPCS);
407     setLibcallCallingConv(RTLIB::UDIV_I32, CallingConv::ARM_AAPCS);
408     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::ARM_AAPCS);
409
410     // Memory operations
411     // RTABI chapter 4.3.4
412     setLibcallName(RTLIB::MEMCPY,  "__aeabi_memcpy");
413     setLibcallName(RTLIB::MEMMOVE, "__aeabi_memmove");
414     setLibcallName(RTLIB::MEMSET,  "__aeabi_memset");
415     setLibcallCallingConv(RTLIB::MEMCPY, CallingConv::ARM_AAPCS);
416     setLibcallCallingConv(RTLIB::MEMMOVE, CallingConv::ARM_AAPCS);
417     setLibcallCallingConv(RTLIB::MEMSET, CallingConv::ARM_AAPCS);
418   }
419
420   // Use divmod compiler-rt calls for iOS 5.0 and later.
421   if (Subtarget->getTargetTriple().isiOS() &&
422       !Subtarget->getTargetTriple().isOSVersionLT(5, 0)) {
423     setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4");
424     setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4");
425   }
426
427   if (Subtarget->isThumb1Only())
428     addRegisterClass(MVT::i32, &ARM::tGPRRegClass);
429   else
430     addRegisterClass(MVT::i32, &ARM::GPRRegClass);
431   if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
432       !Subtarget->isThumb1Only()) {
433     addRegisterClass(MVT::f32, &ARM::SPRRegClass);
434     if (!Subtarget->isFPOnlySP())
435       addRegisterClass(MVT::f64, &ARM::DPRRegClass);
436
437     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
438   }
439
440   for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
441        VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
442     for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
443          InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
444       setTruncStoreAction((MVT::SimpleValueType)VT,
445                           (MVT::SimpleValueType)InnerVT, Expand);
446     setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
447     setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
448     setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
449
450     setOperationAction(ISD::MULHS, (MVT::SimpleValueType)VT, Expand);
451     setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
452     setOperationAction(ISD::MULHU, (MVT::SimpleValueType)VT, Expand);
453     setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
454   }
455
456   setOperationAction(ISD::ConstantFP, MVT::f32, Custom);
457   setOperationAction(ISD::ConstantFP, MVT::f64, Custom);
458
459   if (Subtarget->hasNEON()) {
460     addDRTypeForNEON(MVT::v2f32);
461     addDRTypeForNEON(MVT::v8i8);
462     addDRTypeForNEON(MVT::v4i16);
463     addDRTypeForNEON(MVT::v2i32);
464     addDRTypeForNEON(MVT::v1i64);
465
466     addQRTypeForNEON(MVT::v4f32);
467     addQRTypeForNEON(MVT::v2f64);
468     addQRTypeForNEON(MVT::v16i8);
469     addQRTypeForNEON(MVT::v8i16);
470     addQRTypeForNEON(MVT::v4i32);
471     addQRTypeForNEON(MVT::v2i64);
472
473     // v2f64 is legal so that QR subregs can be extracted as f64 elements, but
474     // neither Neon nor VFP support any arithmetic operations on it.
475     // The same with v4f32. But keep in mind that vadd, vsub, vmul are natively
476     // supported for v4f32.
477     setOperationAction(ISD::FADD, MVT::v2f64, Expand);
478     setOperationAction(ISD::FSUB, MVT::v2f64, Expand);
479     setOperationAction(ISD::FMUL, MVT::v2f64, Expand);
480     // FIXME: Code duplication: FDIV and FREM are expanded always, see
481     // ARMTargetLowering::addTypeForNEON method for details.
482     setOperationAction(ISD::FDIV, MVT::v2f64, Expand);
483     setOperationAction(ISD::FREM, MVT::v2f64, Expand);
484     // FIXME: Create unittest.
485     // In another words, find a way when "copysign" appears in DAG with vector
486     // operands.
487     setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand);
488     // FIXME: Code duplication: SETCC has custom operation action, see
489     // ARMTargetLowering::addTypeForNEON method for details.
490     setOperationAction(ISD::SETCC, MVT::v2f64, Expand);
491     // FIXME: Create unittest for FNEG and for FABS.
492     setOperationAction(ISD::FNEG, MVT::v2f64, Expand);
493     setOperationAction(ISD::FABS, MVT::v2f64, Expand);
494     setOperationAction(ISD::FSQRT, MVT::v2f64, Expand);
495     setOperationAction(ISD::FSIN, MVT::v2f64, Expand);
496     setOperationAction(ISD::FCOS, MVT::v2f64, Expand);
497     setOperationAction(ISD::FPOWI, MVT::v2f64, Expand);
498     setOperationAction(ISD::FPOW, MVT::v2f64, Expand);
499     setOperationAction(ISD::FLOG, MVT::v2f64, Expand);
500     setOperationAction(ISD::FLOG2, MVT::v2f64, Expand);
501     setOperationAction(ISD::FLOG10, MVT::v2f64, Expand);
502     setOperationAction(ISD::FEXP, MVT::v2f64, Expand);
503     setOperationAction(ISD::FEXP2, MVT::v2f64, Expand);
504     // FIXME: Create unittest for FCEIL, FTRUNC, FRINT, FNEARBYINT, FFLOOR.
505     setOperationAction(ISD::FCEIL, MVT::v2f64, Expand);
506     setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand);
507     setOperationAction(ISD::FRINT, MVT::v2f64, Expand);
508     setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand);
509     setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand);
510     setOperationAction(ISD::FMA, MVT::v2f64, Expand);
511
512     setOperationAction(ISD::FSQRT, MVT::v4f32, Expand);
513     setOperationAction(ISD::FSIN, MVT::v4f32, Expand);
514     setOperationAction(ISD::FCOS, MVT::v4f32, Expand);
515     setOperationAction(ISD::FPOWI, MVT::v4f32, Expand);
516     setOperationAction(ISD::FPOW, MVT::v4f32, Expand);
517     setOperationAction(ISD::FLOG, MVT::v4f32, Expand);
518     setOperationAction(ISD::FLOG2, MVT::v4f32, Expand);
519     setOperationAction(ISD::FLOG10, MVT::v4f32, Expand);
520     setOperationAction(ISD::FEXP, MVT::v4f32, Expand);
521     setOperationAction(ISD::FEXP2, MVT::v4f32, Expand);
522     setOperationAction(ISD::FCEIL, MVT::v4f32, Expand);
523     setOperationAction(ISD::FTRUNC, MVT::v4f32, Expand);
524     setOperationAction(ISD::FRINT, MVT::v4f32, Expand);
525     setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand);
526     setOperationAction(ISD::FFLOOR, MVT::v4f32, Expand);
527
528     // Mark v2f32 intrinsics.
529     setOperationAction(ISD::FSQRT, MVT::v2f32, Expand);
530     setOperationAction(ISD::FSIN, MVT::v2f32, Expand);
531     setOperationAction(ISD::FCOS, MVT::v2f32, Expand);
532     setOperationAction(ISD::FPOWI, MVT::v2f32, Expand);
533     setOperationAction(ISD::FPOW, MVT::v2f32, Expand);
534     setOperationAction(ISD::FLOG, MVT::v2f32, Expand);
535     setOperationAction(ISD::FLOG2, MVT::v2f32, Expand);
536     setOperationAction(ISD::FLOG10, MVT::v2f32, Expand);
537     setOperationAction(ISD::FEXP, MVT::v2f32, Expand);
538     setOperationAction(ISD::FEXP2, MVT::v2f32, Expand);
539     setOperationAction(ISD::FCEIL, MVT::v2f32, Expand);
540     setOperationAction(ISD::FTRUNC, MVT::v2f32, Expand);
541     setOperationAction(ISD::FRINT, MVT::v2f32, Expand);
542     setOperationAction(ISD::FNEARBYINT, MVT::v2f32, Expand);
543     setOperationAction(ISD::FFLOOR, MVT::v2f32, Expand);
544
545     // Neon does not support some operations on v1i64 and v2i64 types.
546     setOperationAction(ISD::MUL, MVT::v1i64, Expand);
547     // Custom handling for some quad-vector types to detect VMULL.
548     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
549     setOperationAction(ISD::MUL, MVT::v4i32, Custom);
550     setOperationAction(ISD::MUL, MVT::v2i64, Custom);
551     // Custom handling for some vector types to avoid expensive expansions
552     setOperationAction(ISD::SDIV, MVT::v4i16, Custom);
553     setOperationAction(ISD::SDIV, MVT::v8i8, Custom);
554     setOperationAction(ISD::UDIV, MVT::v4i16, Custom);
555     setOperationAction(ISD::UDIV, MVT::v8i8, Custom);
556     setOperationAction(ISD::SETCC, MVT::v1i64, Expand);
557     setOperationAction(ISD::SETCC, MVT::v2i64, Expand);
558     // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with
559     // a destination type that is wider than the source, and nor does
560     // it have a FP_TO_[SU]INT instruction with a narrower destination than
561     // source.
562     setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom);
563     setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom);
564     setOperationAction(ISD::FP_TO_UINT, MVT::v4i16, Custom);
565     setOperationAction(ISD::FP_TO_SINT, MVT::v4i16, Custom);
566
567     setOperationAction(ISD::FP_ROUND,   MVT::v2f32, Expand);
568     setOperationAction(ISD::FP_EXTEND,  MVT::v2f64, Expand);
569
570     // NEON does not have single instruction CTPOP for vectors with element
571     // types wider than 8-bits.  However, custom lowering can leverage the
572     // v8i8/v16i8 vcnt instruction.
573     setOperationAction(ISD::CTPOP,      MVT::v2i32, Custom);
574     setOperationAction(ISD::CTPOP,      MVT::v4i32, Custom);
575     setOperationAction(ISD::CTPOP,      MVT::v4i16, Custom);
576     setOperationAction(ISD::CTPOP,      MVT::v8i16, Custom);
577
578     // NEON only has FMA instructions as of VFP4.
579     if (!Subtarget->hasVFP4()) {
580       setOperationAction(ISD::FMA, MVT::v2f32, Expand);
581       setOperationAction(ISD::FMA, MVT::v4f32, Expand);
582     }
583
584     setTargetDAGCombine(ISD::INTRINSIC_VOID);
585     setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
586     setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
587     setTargetDAGCombine(ISD::SHL);
588     setTargetDAGCombine(ISD::SRL);
589     setTargetDAGCombine(ISD::SRA);
590     setTargetDAGCombine(ISD::SIGN_EXTEND);
591     setTargetDAGCombine(ISD::ZERO_EXTEND);
592     setTargetDAGCombine(ISD::ANY_EXTEND);
593     setTargetDAGCombine(ISD::SELECT_CC);
594     setTargetDAGCombine(ISD::BUILD_VECTOR);
595     setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
596     setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
597     setTargetDAGCombine(ISD::STORE);
598     setTargetDAGCombine(ISD::FP_TO_SINT);
599     setTargetDAGCombine(ISD::FP_TO_UINT);
600     setTargetDAGCombine(ISD::FDIV);
601
602     // It is legal to extload from v4i8 to v4i16 or v4i32.
603     MVT Tys[6] = {MVT::v8i8, MVT::v4i8, MVT::v2i8,
604                   MVT::v4i16, MVT::v2i16,
605                   MVT::v2i32};
606     for (unsigned i = 0; i < 6; ++i) {
607       setLoadExtAction(ISD::EXTLOAD, Tys[i], Legal);
608       setLoadExtAction(ISD::ZEXTLOAD, Tys[i], Legal);
609       setLoadExtAction(ISD::SEXTLOAD, Tys[i], Legal);
610     }
611   }
612
613   // ARM and Thumb2 support UMLAL/SMLAL.
614   if (!Subtarget->isThumb1Only())
615     setTargetDAGCombine(ISD::ADDC);
616
617
618   computeRegisterProperties();
619
620   // ARM does not have f32 extending load.
621   setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
622
623   // ARM does not have i1 sign extending load.
624   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
625
626   // ARM supports all 4 flavors of integer indexed load / store.
627   if (!Subtarget->isThumb1Only()) {
628     for (unsigned im = (unsigned)ISD::PRE_INC;
629          im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
630       setIndexedLoadAction(im,  MVT::i1,  Legal);
631       setIndexedLoadAction(im,  MVT::i8,  Legal);
632       setIndexedLoadAction(im,  MVT::i16, Legal);
633       setIndexedLoadAction(im,  MVT::i32, Legal);
634       setIndexedStoreAction(im, MVT::i1,  Legal);
635       setIndexedStoreAction(im, MVT::i8,  Legal);
636       setIndexedStoreAction(im, MVT::i16, Legal);
637       setIndexedStoreAction(im, MVT::i32, Legal);
638     }
639   }
640
641   // i64 operation support.
642   setOperationAction(ISD::MUL,     MVT::i64, Expand);
643   setOperationAction(ISD::MULHU,   MVT::i32, Expand);
644   if (Subtarget->isThumb1Only()) {
645     setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
646     setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
647   }
648   if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops()
649       || (Subtarget->isThumb2() && !Subtarget->hasThumb2DSP()))
650     setOperationAction(ISD::MULHS, MVT::i32, Expand);
651
652   setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom);
653   setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom);
654   setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom);
655   setOperationAction(ISD::SRL,       MVT::i64, Custom);
656   setOperationAction(ISD::SRA,       MVT::i64, Custom);
657
658   if (!Subtarget->isThumb1Only()) {
659     // FIXME: We should do this for Thumb1 as well.
660     setOperationAction(ISD::ADDC,    MVT::i32, Custom);
661     setOperationAction(ISD::ADDE,    MVT::i32, Custom);
662     setOperationAction(ISD::SUBC,    MVT::i32, Custom);
663     setOperationAction(ISD::SUBE,    MVT::i32, Custom);
664   }
665
666   // ARM does not have ROTL.
667   setOperationAction(ISD::ROTL,  MVT::i32, Expand);
668   setOperationAction(ISD::CTTZ,  MVT::i32, Custom);
669   setOperationAction(ISD::CTPOP, MVT::i32, Expand);
670   if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only())
671     setOperationAction(ISD::CTLZ, MVT::i32, Expand);
672
673   // These just redirect to CTTZ and CTLZ on ARM.
674   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i32  , Expand);
675   setOperationAction(ISD::CTLZ_ZERO_UNDEF  , MVT::i32  , Expand);
676
677   setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom);
678
679   // Only ARMv6 has BSWAP.
680   if (!Subtarget->hasV6Ops())
681     setOperationAction(ISD::BSWAP, MVT::i32, Expand);
682
683   if (!(Subtarget->hasDivide() && Subtarget->isThumb2()) &&
684       !(Subtarget->hasDivideInARMMode() && !Subtarget->isThumb())) {
685     // These are expanded into libcalls if the cpu doesn't have HW divider.
686     setOperationAction(ISD::SDIV,  MVT::i32, Expand);
687     setOperationAction(ISD::UDIV,  MVT::i32, Expand);
688   }
689
690   // FIXME: Also set divmod for SREM on EABI
691   setOperationAction(ISD::SREM,  MVT::i32, Expand);
692   setOperationAction(ISD::UREM,  MVT::i32, Expand);
693   // Register based DivRem for AEABI (RTABI 4.2)
694   if (Subtarget->isTargetAEABI()) {
695     setLibcallName(RTLIB::SDIVREM_I8,  "__aeabi_idivmod");
696     setLibcallName(RTLIB::SDIVREM_I16, "__aeabi_idivmod");
697     setLibcallName(RTLIB::SDIVREM_I32, "__aeabi_idivmod");
698     setLibcallName(RTLIB::SDIVREM_I64, "__aeabi_ldivmod");
699     setLibcallName(RTLIB::UDIVREM_I8,  "__aeabi_uidivmod");
700     setLibcallName(RTLIB::UDIVREM_I16, "__aeabi_uidivmod");
701     setLibcallName(RTLIB::UDIVREM_I32, "__aeabi_uidivmod");
702     setLibcallName(RTLIB::UDIVREM_I64, "__aeabi_uldivmod");
703
704     setLibcallCallingConv(RTLIB::SDIVREM_I8, CallingConv::ARM_AAPCS);
705     setLibcallCallingConv(RTLIB::SDIVREM_I16, CallingConv::ARM_AAPCS);
706     setLibcallCallingConv(RTLIB::SDIVREM_I32, CallingConv::ARM_AAPCS);
707     setLibcallCallingConv(RTLIB::SDIVREM_I64, CallingConv::ARM_AAPCS);
708     setLibcallCallingConv(RTLIB::UDIVREM_I8, CallingConv::ARM_AAPCS);
709     setLibcallCallingConv(RTLIB::UDIVREM_I16, CallingConv::ARM_AAPCS);
710     setLibcallCallingConv(RTLIB::UDIVREM_I32, CallingConv::ARM_AAPCS);
711     setLibcallCallingConv(RTLIB::UDIVREM_I64, CallingConv::ARM_AAPCS);
712
713     setOperationAction(ISD::SDIVREM, MVT::i32, Custom);
714     setOperationAction(ISD::UDIVREM, MVT::i32, Custom);
715   } else {
716     setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
717     setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
718   }
719
720   setOperationAction(ISD::GlobalAddress, MVT::i32,   Custom);
721   setOperationAction(ISD::ConstantPool,  MVT::i32,   Custom);
722   setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom);
723   setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
724   setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
725
726   setOperationAction(ISD::TRAP, MVT::Other, Legal);
727
728   // Use the default implementation.
729   setOperationAction(ISD::VASTART,            MVT::Other, Custom);
730   setOperationAction(ISD::VAARG,              MVT::Other, Expand);
731   setOperationAction(ISD::VACOPY,             MVT::Other, Expand);
732   setOperationAction(ISD::VAEND,              MVT::Other, Expand);
733   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
734   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
735
736   if (!Subtarget->isTargetMachO()) {
737     // Non-MachO platforms may return values in these registers via the
738     // personality function.
739     setExceptionPointerRegister(ARM::R0);
740     setExceptionSelectorRegister(ARM::R1);
741   }
742
743   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
744   // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use
745   // the default expansion.
746   if (Subtarget->hasAnyDataBarrier() && !Subtarget->isThumb1Only()) {
747     // ATOMIC_FENCE needs custom lowering; the others should have been expanded
748     // to ldrex/strex loops already.
749     setOperationAction(ISD::ATOMIC_FENCE,     MVT::Other, Custom);
750
751     // On v8, we have particularly efficient implementations of atomic fences
752     // if they can be combined with nearby atomic loads and stores.
753     if (!Subtarget->hasV8Ops()) {
754       // Automatically insert fences (dmb ist) around ATOMIC_SWAP etc.
755       setInsertFencesForAtomic(true);
756     }
757   } else {
758     // If there's anything we can use as a barrier, go through custom lowering
759     // for ATOMIC_FENCE.
760     setOperationAction(ISD::ATOMIC_FENCE,   MVT::Other,
761                        Subtarget->hasAnyDataBarrier() ? Custom : Expand);
762
763     // Set them all for expansion, which will force libcalls.
764     setOperationAction(ISD::ATOMIC_CMP_SWAP,  MVT::i32, Expand);
765     setOperationAction(ISD::ATOMIC_SWAP,      MVT::i32, Expand);
766     setOperationAction(ISD::ATOMIC_LOAD_ADD,  MVT::i32, Expand);
767     setOperationAction(ISD::ATOMIC_LOAD_SUB,  MVT::i32, Expand);
768     setOperationAction(ISD::ATOMIC_LOAD_AND,  MVT::i32, Expand);
769     setOperationAction(ISD::ATOMIC_LOAD_OR,   MVT::i32, Expand);
770     setOperationAction(ISD::ATOMIC_LOAD_XOR,  MVT::i32, Expand);
771     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand);
772     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand);
773     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand);
774     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand);
775     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand);
776     // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the
777     // Unordered/Monotonic case.
778     setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom);
779     setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom);
780   }
781
782   setOperationAction(ISD::PREFETCH,         MVT::Other, Custom);
783
784   // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes.
785   if (!Subtarget->hasV6Ops()) {
786     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
787     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8,  Expand);
788   }
789   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
790
791   if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
792       !Subtarget->isThumb1Only()) {
793     // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR
794     // iff target supports vfp2.
795     setOperationAction(ISD::BITCAST, MVT::i64, Custom);
796     setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom);
797   }
798
799   // We want to custom lower some of our intrinsics.
800   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
801   if (Subtarget->isTargetDarwin()) {
802     setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
803     setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
804     setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume");
805   }
806
807   setOperationAction(ISD::SETCC,     MVT::i32, Expand);
808   setOperationAction(ISD::SETCC,     MVT::f32, Expand);
809   setOperationAction(ISD::SETCC,     MVT::f64, Expand);
810   setOperationAction(ISD::SELECT,    MVT::i32, Custom);
811   setOperationAction(ISD::SELECT,    MVT::f32, Custom);
812   setOperationAction(ISD::SELECT,    MVT::f64, Custom);
813   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
814   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
815   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
816
817   setOperationAction(ISD::BRCOND,    MVT::Other, Expand);
818   setOperationAction(ISD::BR_CC,     MVT::i32,   Custom);
819   setOperationAction(ISD::BR_CC,     MVT::f32,   Custom);
820   setOperationAction(ISD::BR_CC,     MVT::f64,   Custom);
821   setOperationAction(ISD::BR_JT,     MVT::Other, Custom);
822
823   // We don't support sin/cos/fmod/copysign/pow
824   setOperationAction(ISD::FSIN,      MVT::f64, Expand);
825   setOperationAction(ISD::FSIN,      MVT::f32, Expand);
826   setOperationAction(ISD::FCOS,      MVT::f32, Expand);
827   setOperationAction(ISD::FCOS,      MVT::f64, Expand);
828   setOperationAction(ISD::FSINCOS,   MVT::f64, Expand);
829   setOperationAction(ISD::FSINCOS,   MVT::f32, Expand);
830   setOperationAction(ISD::FREM,      MVT::f64, Expand);
831   setOperationAction(ISD::FREM,      MVT::f32, Expand);
832   if (!TM.Options.UseSoftFloat && Subtarget->hasVFP2() &&
833       !Subtarget->isThumb1Only()) {
834     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
835     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
836   }
837   setOperationAction(ISD::FPOW,      MVT::f64, Expand);
838   setOperationAction(ISD::FPOW,      MVT::f32, Expand);
839
840   if (!Subtarget->hasVFP4()) {
841     setOperationAction(ISD::FMA, MVT::f64, Expand);
842     setOperationAction(ISD::FMA, MVT::f32, Expand);
843   }
844
845   // Various VFP goodness
846   if (!TM.Options.UseSoftFloat && !Subtarget->isThumb1Only()) {
847     // int <-> fp are custom expanded into bit_convert + ARMISD ops.
848     if (Subtarget->hasVFP2()) {
849       setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
850       setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
851       setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
852       setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
853     }
854     // Special handling for half-precision FP.
855     if (!Subtarget->hasFP16()) {
856       setOperationAction(ISD::FP16_TO_FP32, MVT::f32, Expand);
857       setOperationAction(ISD::FP32_TO_FP16, MVT::i32, Expand);
858     }
859   }
860
861   // Combine sin / cos into one node or libcall if possible.
862   if (Subtarget->hasSinCos()) {
863     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
864     setLibcallName(RTLIB::SINCOS_F64, "sincos");
865     if (Subtarget->getTargetTriple().getOS() == Triple::IOS) {
866       // For iOS, we don't want to the normal expansion of a libcall to
867       // sincos. We want to issue a libcall to __sincos_stret.
868       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
869       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
870     }
871   }
872
873   // We have target-specific dag combine patterns for the following nodes:
874   // ARMISD::VMOVRRD  - No need to call setTargetDAGCombine
875   setTargetDAGCombine(ISD::ADD);
876   setTargetDAGCombine(ISD::SUB);
877   setTargetDAGCombine(ISD::MUL);
878   setTargetDAGCombine(ISD::AND);
879   setTargetDAGCombine(ISD::OR);
880   setTargetDAGCombine(ISD::XOR);
881
882   if (Subtarget->hasV6Ops())
883     setTargetDAGCombine(ISD::SRL);
884
885   setStackPointerRegisterToSaveRestore(ARM::SP);
886
887   if (TM.Options.UseSoftFloat || Subtarget->isThumb1Only() ||
888       !Subtarget->hasVFP2())
889     setSchedulingPreference(Sched::RegPressure);
890   else
891     setSchedulingPreference(Sched::Hybrid);
892
893   //// temporary - rewrite interface to use type
894   MaxStoresPerMemset = 8;
895   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
896   MaxStoresPerMemcpy = 4; // For @llvm.memcpy -> sequence of stores
897   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 4 : 2;
898   MaxStoresPerMemmove = 4; // For @llvm.memmove -> sequence of stores
899   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 4 : 2;
900
901   // On ARM arguments smaller than 4 bytes are extended, so all arguments
902   // are at least 4 bytes aligned.
903   setMinStackArgumentAlignment(4);
904
905   // Prefer likely predicted branches to selects on out-of-order cores.
906   PredictableSelectIsExpensive = Subtarget->isLikeA9();
907
908   setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2);
909 }
910
911 // FIXME: It might make sense to define the representative register class as the
912 // nearest super-register that has a non-null superset. For example, DPR_VFP2 is
913 // a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently,
914 // SPR's representative would be DPR_VFP2. This should work well if register
915 // pressure tracking were modified such that a register use would increment the
916 // pressure of the register class's representative and all of it's super
917 // classes' representatives transitively. We have not implemented this because
918 // of the difficulty prior to coalescing of modeling operand register classes
919 // due to the common occurrence of cross class copies and subregister insertions
920 // and extractions.
921 std::pair<const TargetRegisterClass*, uint8_t>
922 ARMTargetLowering::findRepresentativeClass(MVT VT) const{
923   const TargetRegisterClass *RRC = nullptr;
924   uint8_t Cost = 1;
925   switch (VT.SimpleTy) {
926   default:
927     return TargetLowering::findRepresentativeClass(VT);
928   // Use DPR as representative register class for all floating point
929   // and vector types. Since there are 32 SPR registers and 32 DPR registers so
930   // the cost is 1 for both f32 and f64.
931   case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16:
932   case MVT::v2i32: case MVT::v1i64: case MVT::v2f32:
933     RRC = &ARM::DPRRegClass;
934     // When NEON is used for SP, only half of the register file is available
935     // because operations that define both SP and DP results will be constrained
936     // to the VFP2 class (D0-D15). We currently model this constraint prior to
937     // coalescing by double-counting the SP regs. See the FIXME above.
938     if (Subtarget->useNEONForSinglePrecisionFP())
939       Cost = 2;
940     break;
941   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
942   case MVT::v4f32: case MVT::v2f64:
943     RRC = &ARM::DPRRegClass;
944     Cost = 2;
945     break;
946   case MVT::v4i64:
947     RRC = &ARM::DPRRegClass;
948     Cost = 4;
949     break;
950   case MVT::v8i64:
951     RRC = &ARM::DPRRegClass;
952     Cost = 8;
953     break;
954   }
955   return std::make_pair(RRC, Cost);
956 }
957
958 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const {
959   switch (Opcode) {
960   default: return nullptr;
961   case ARMISD::Wrapper:       return "ARMISD::Wrapper";
962   case ARMISD::WrapperPIC:    return "ARMISD::WrapperPIC";
963   case ARMISD::WrapperJT:     return "ARMISD::WrapperJT";
964   case ARMISD::CALL:          return "ARMISD::CALL";
965   case ARMISD::CALL_PRED:     return "ARMISD::CALL_PRED";
966   case ARMISD::CALL_NOLINK:   return "ARMISD::CALL_NOLINK";
967   case ARMISD::tCALL:         return "ARMISD::tCALL";
968   case ARMISD::BRCOND:        return "ARMISD::BRCOND";
969   case ARMISD::BR_JT:         return "ARMISD::BR_JT";
970   case ARMISD::BR2_JT:        return "ARMISD::BR2_JT";
971   case ARMISD::RET_FLAG:      return "ARMISD::RET_FLAG";
972   case ARMISD::INTRET_FLAG:   return "ARMISD::INTRET_FLAG";
973   case ARMISD::PIC_ADD:       return "ARMISD::PIC_ADD";
974   case ARMISD::CMP:           return "ARMISD::CMP";
975   case ARMISD::CMN:           return "ARMISD::CMN";
976   case ARMISD::CMPZ:          return "ARMISD::CMPZ";
977   case ARMISD::CMPFP:         return "ARMISD::CMPFP";
978   case ARMISD::CMPFPw0:       return "ARMISD::CMPFPw0";
979   case ARMISD::BCC_i64:       return "ARMISD::BCC_i64";
980   case ARMISD::FMSTAT:        return "ARMISD::FMSTAT";
981
982   case ARMISD::CMOV:          return "ARMISD::CMOV";
983
984   case ARMISD::RBIT:          return "ARMISD::RBIT";
985
986   case ARMISD::FTOSI:         return "ARMISD::FTOSI";
987   case ARMISD::FTOUI:         return "ARMISD::FTOUI";
988   case ARMISD::SITOF:         return "ARMISD::SITOF";
989   case ARMISD::UITOF:         return "ARMISD::UITOF";
990
991   case ARMISD::SRL_FLAG:      return "ARMISD::SRL_FLAG";
992   case ARMISD::SRA_FLAG:      return "ARMISD::SRA_FLAG";
993   case ARMISD::RRX:           return "ARMISD::RRX";
994
995   case ARMISD::ADDC:          return "ARMISD::ADDC";
996   case ARMISD::ADDE:          return "ARMISD::ADDE";
997   case ARMISD::SUBC:          return "ARMISD::SUBC";
998   case ARMISD::SUBE:          return "ARMISD::SUBE";
999
1000   case ARMISD::VMOVRRD:       return "ARMISD::VMOVRRD";
1001   case ARMISD::VMOVDRR:       return "ARMISD::VMOVDRR";
1002
1003   case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP";
1004   case ARMISD::EH_SJLJ_LONGJMP:return "ARMISD::EH_SJLJ_LONGJMP";
1005
1006   case ARMISD::TC_RETURN:     return "ARMISD::TC_RETURN";
1007
1008   case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER";
1009
1010   case ARMISD::DYN_ALLOC:     return "ARMISD::DYN_ALLOC";
1011
1012   case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR";
1013
1014   case ARMISD::PRELOAD:       return "ARMISD::PRELOAD";
1015
1016   case ARMISD::VCEQ:          return "ARMISD::VCEQ";
1017   case ARMISD::VCEQZ:         return "ARMISD::VCEQZ";
1018   case ARMISD::VCGE:          return "ARMISD::VCGE";
1019   case ARMISD::VCGEZ:         return "ARMISD::VCGEZ";
1020   case ARMISD::VCLEZ:         return "ARMISD::VCLEZ";
1021   case ARMISD::VCGEU:         return "ARMISD::VCGEU";
1022   case ARMISD::VCGT:          return "ARMISD::VCGT";
1023   case ARMISD::VCGTZ:         return "ARMISD::VCGTZ";
1024   case ARMISD::VCLTZ:         return "ARMISD::VCLTZ";
1025   case ARMISD::VCGTU:         return "ARMISD::VCGTU";
1026   case ARMISD::VTST:          return "ARMISD::VTST";
1027
1028   case ARMISD::VSHL:          return "ARMISD::VSHL";
1029   case ARMISD::VSHRs:         return "ARMISD::VSHRs";
1030   case ARMISD::VSHRu:         return "ARMISD::VSHRu";
1031   case ARMISD::VRSHRs:        return "ARMISD::VRSHRs";
1032   case ARMISD::VRSHRu:        return "ARMISD::VRSHRu";
1033   case ARMISD::VRSHRN:        return "ARMISD::VRSHRN";
1034   case ARMISD::VQSHLs:        return "ARMISD::VQSHLs";
1035   case ARMISD::VQSHLu:        return "ARMISD::VQSHLu";
1036   case ARMISD::VQSHLsu:       return "ARMISD::VQSHLsu";
1037   case ARMISD::VQSHRNs:       return "ARMISD::VQSHRNs";
1038   case ARMISD::VQSHRNu:       return "ARMISD::VQSHRNu";
1039   case ARMISD::VQSHRNsu:      return "ARMISD::VQSHRNsu";
1040   case ARMISD::VQRSHRNs:      return "ARMISD::VQRSHRNs";
1041   case ARMISD::VQRSHRNu:      return "ARMISD::VQRSHRNu";
1042   case ARMISD::VQRSHRNsu:     return "ARMISD::VQRSHRNsu";
1043   case ARMISD::VGETLANEu:     return "ARMISD::VGETLANEu";
1044   case ARMISD::VGETLANEs:     return "ARMISD::VGETLANEs";
1045   case ARMISD::VMOVIMM:       return "ARMISD::VMOVIMM";
1046   case ARMISD::VMVNIMM:       return "ARMISD::VMVNIMM";
1047   case ARMISD::VMOVFPIMM:     return "ARMISD::VMOVFPIMM";
1048   case ARMISD::VDUP:          return "ARMISD::VDUP";
1049   case ARMISD::VDUPLANE:      return "ARMISD::VDUPLANE";
1050   case ARMISD::VEXT:          return "ARMISD::VEXT";
1051   case ARMISD::VREV64:        return "ARMISD::VREV64";
1052   case ARMISD::VREV32:        return "ARMISD::VREV32";
1053   case ARMISD::VREV16:        return "ARMISD::VREV16";
1054   case ARMISD::VZIP:          return "ARMISD::VZIP";
1055   case ARMISD::VUZP:          return "ARMISD::VUZP";
1056   case ARMISD::VTRN:          return "ARMISD::VTRN";
1057   case ARMISD::VTBL1:         return "ARMISD::VTBL1";
1058   case ARMISD::VTBL2:         return "ARMISD::VTBL2";
1059   case ARMISD::VMULLs:        return "ARMISD::VMULLs";
1060   case ARMISD::VMULLu:        return "ARMISD::VMULLu";
1061   case ARMISD::UMLAL:         return "ARMISD::UMLAL";
1062   case ARMISD::SMLAL:         return "ARMISD::SMLAL";
1063   case ARMISD::BUILD_VECTOR:  return "ARMISD::BUILD_VECTOR";
1064   case ARMISD::FMAX:          return "ARMISD::FMAX";
1065   case ARMISD::FMIN:          return "ARMISD::FMIN";
1066   case ARMISD::VMAXNM:        return "ARMISD::VMAX";
1067   case ARMISD::VMINNM:        return "ARMISD::VMIN";
1068   case ARMISD::BFI:           return "ARMISD::BFI";
1069   case ARMISD::VORRIMM:       return "ARMISD::VORRIMM";
1070   case ARMISD::VBICIMM:       return "ARMISD::VBICIMM";
1071   case ARMISD::VBSL:          return "ARMISD::VBSL";
1072   case ARMISD::VLD2DUP:       return "ARMISD::VLD2DUP";
1073   case ARMISD::VLD3DUP:       return "ARMISD::VLD3DUP";
1074   case ARMISD::VLD4DUP:       return "ARMISD::VLD4DUP";
1075   case ARMISD::VLD1_UPD:      return "ARMISD::VLD1_UPD";
1076   case ARMISD::VLD2_UPD:      return "ARMISD::VLD2_UPD";
1077   case ARMISD::VLD3_UPD:      return "ARMISD::VLD3_UPD";
1078   case ARMISD::VLD4_UPD:      return "ARMISD::VLD4_UPD";
1079   case ARMISD::VLD2LN_UPD:    return "ARMISD::VLD2LN_UPD";
1080   case ARMISD::VLD3LN_UPD:    return "ARMISD::VLD3LN_UPD";
1081   case ARMISD::VLD4LN_UPD:    return "ARMISD::VLD4LN_UPD";
1082   case ARMISD::VLD2DUP_UPD:   return "ARMISD::VLD2DUP_UPD";
1083   case ARMISD::VLD3DUP_UPD:   return "ARMISD::VLD3DUP_UPD";
1084   case ARMISD::VLD4DUP_UPD:   return "ARMISD::VLD4DUP_UPD";
1085   case ARMISD::VST1_UPD:      return "ARMISD::VST1_UPD";
1086   case ARMISD::VST2_UPD:      return "ARMISD::VST2_UPD";
1087   case ARMISD::VST3_UPD:      return "ARMISD::VST3_UPD";
1088   case ARMISD::VST4_UPD:      return "ARMISD::VST4_UPD";
1089   case ARMISD::VST2LN_UPD:    return "ARMISD::VST2LN_UPD";
1090   case ARMISD::VST3LN_UPD:    return "ARMISD::VST3LN_UPD";
1091   case ARMISD::VST4LN_UPD:    return "ARMISD::VST4LN_UPD";
1092   }
1093 }
1094
1095 EVT ARMTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1096   if (!VT.isVector()) return getPointerTy();
1097   return VT.changeVectorElementTypeToInteger();
1098 }
1099
1100 /// getRegClassFor - Return the register class that should be used for the
1101 /// specified value type.
1102 const TargetRegisterClass *ARMTargetLowering::getRegClassFor(MVT VT) const {
1103   // Map v4i64 to QQ registers but do not make the type legal. Similarly map
1104   // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to
1105   // load / store 4 to 8 consecutive D registers.
1106   if (Subtarget->hasNEON()) {
1107     if (VT == MVT::v4i64)
1108       return &ARM::QQPRRegClass;
1109     if (VT == MVT::v8i64)
1110       return &ARM::QQQQPRRegClass;
1111   }
1112   return TargetLowering::getRegClassFor(VT);
1113 }
1114
1115 // Create a fast isel object.
1116 FastISel *
1117 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
1118                                   const TargetLibraryInfo *libInfo) const {
1119   return ARM::createFastISel(funcInfo, libInfo);
1120 }
1121
1122 /// getMaximalGlobalOffset - Returns the maximal possible offset which can
1123 /// be used for loads / stores from the global.
1124 unsigned ARMTargetLowering::getMaximalGlobalOffset() const {
1125   return (Subtarget->isThumb1Only() ? 127 : 4095);
1126 }
1127
1128 Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
1129   unsigned NumVals = N->getNumValues();
1130   if (!NumVals)
1131     return Sched::RegPressure;
1132
1133   for (unsigned i = 0; i != NumVals; ++i) {
1134     EVT VT = N->getValueType(i);
1135     if (VT == MVT::Glue || VT == MVT::Other)
1136       continue;
1137     if (VT.isFloatingPoint() || VT.isVector())
1138       return Sched::ILP;
1139   }
1140
1141   if (!N->isMachineOpcode())
1142     return Sched::RegPressure;
1143
1144   // Load are scheduled for latency even if there instruction itinerary
1145   // is not available.
1146   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
1147   const MCInstrDesc &MCID = TII->get(N->getMachineOpcode());
1148
1149   if (MCID.getNumDefs() == 0)
1150     return Sched::RegPressure;
1151   if (!Itins->isEmpty() &&
1152       Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2)
1153     return Sched::ILP;
1154
1155   return Sched::RegPressure;
1156 }
1157
1158 //===----------------------------------------------------------------------===//
1159 // Lowering Code
1160 //===----------------------------------------------------------------------===//
1161
1162 /// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC
1163 static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) {
1164   switch (CC) {
1165   default: llvm_unreachable("Unknown condition code!");
1166   case ISD::SETNE:  return ARMCC::NE;
1167   case ISD::SETEQ:  return ARMCC::EQ;
1168   case ISD::SETGT:  return ARMCC::GT;
1169   case ISD::SETGE:  return ARMCC::GE;
1170   case ISD::SETLT:  return ARMCC::LT;
1171   case ISD::SETLE:  return ARMCC::LE;
1172   case ISD::SETUGT: return ARMCC::HI;
1173   case ISD::SETUGE: return ARMCC::HS;
1174   case ISD::SETULT: return ARMCC::LO;
1175   case ISD::SETULE: return ARMCC::LS;
1176   }
1177 }
1178
1179 /// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC.
1180 static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
1181                         ARMCC::CondCodes &CondCode2) {
1182   CondCode2 = ARMCC::AL;
1183   switch (CC) {
1184   default: llvm_unreachable("Unknown FP condition!");
1185   case ISD::SETEQ:
1186   case ISD::SETOEQ: CondCode = ARMCC::EQ; break;
1187   case ISD::SETGT:
1188   case ISD::SETOGT: CondCode = ARMCC::GT; break;
1189   case ISD::SETGE:
1190   case ISD::SETOGE: CondCode = ARMCC::GE; break;
1191   case ISD::SETOLT: CondCode = ARMCC::MI; break;
1192   case ISD::SETOLE: CondCode = ARMCC::LS; break;
1193   case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break;
1194   case ISD::SETO:   CondCode = ARMCC::VC; break;
1195   case ISD::SETUO:  CondCode = ARMCC::VS; break;
1196   case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break;
1197   case ISD::SETUGT: CondCode = ARMCC::HI; break;
1198   case ISD::SETUGE: CondCode = ARMCC::PL; break;
1199   case ISD::SETLT:
1200   case ISD::SETULT: CondCode = ARMCC::LT; break;
1201   case ISD::SETLE:
1202   case ISD::SETULE: CondCode = ARMCC::LE; break;
1203   case ISD::SETNE:
1204   case ISD::SETUNE: CondCode = ARMCC::NE; break;
1205   }
1206 }
1207
1208 //===----------------------------------------------------------------------===//
1209 //                      Calling Convention Implementation
1210 //===----------------------------------------------------------------------===//
1211
1212 #include "ARMGenCallingConv.inc"
1213
1214 /// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1215 /// given CallingConvention value.
1216 CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC,
1217                                                  bool Return,
1218                                                  bool isVarArg) const {
1219   switch (CC) {
1220   default:
1221     llvm_unreachable("Unsupported calling convention");
1222   case CallingConv::Fast:
1223     if (Subtarget->hasVFP2() && !isVarArg) {
1224       if (!Subtarget->isAAPCS_ABI())
1225         return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS);
1226       // For AAPCS ABI targets, just use VFP variant of the calling convention.
1227       return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1228     }
1229     // Fallthrough
1230   case CallingConv::C: {
1231     // Use target triple & subtarget features to do actual dispatch.
1232     if (!Subtarget->isAAPCS_ABI())
1233       return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
1234     else if (Subtarget->hasVFP2() &&
1235              getTargetMachine().Options.FloatABIType == FloatABI::Hard &&
1236              !isVarArg)
1237       return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1238     return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
1239   }
1240   case CallingConv::ARM_AAPCS_VFP:
1241     if (!isVarArg)
1242       return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP);
1243     // Fallthrough
1244   case CallingConv::ARM_AAPCS:
1245     return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS);
1246   case CallingConv::ARM_APCS:
1247     return (Return ? RetCC_ARM_APCS : CC_ARM_APCS);
1248   case CallingConv::GHC:
1249     return (Return ? RetCC_ARM_APCS : CC_ARM_APCS_GHC);
1250   }
1251 }
1252
1253 /// LowerCallResult - Lower the result values of a call into the
1254 /// appropriate copies out of appropriate physical registers.
1255 SDValue
1256 ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1257                                    CallingConv::ID CallConv, bool isVarArg,
1258                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1259                                    SDLoc dl, SelectionDAG &DAG,
1260                                    SmallVectorImpl<SDValue> &InVals,
1261                                    bool isThisReturn, SDValue ThisVal) const {
1262
1263   // Assign locations to each value returned by this call.
1264   SmallVector<CCValAssign, 16> RVLocs;
1265   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1266                     getTargetMachine(), RVLocs, *DAG.getContext(), Call);
1267   CCInfo.AnalyzeCallResult(Ins,
1268                            CCAssignFnForNode(CallConv, /* Return*/ true,
1269                                              isVarArg));
1270
1271   // Copy all of the result registers out of their specified physreg.
1272   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1273     CCValAssign VA = RVLocs[i];
1274
1275     // Pass 'this' value directly from the argument to return value, to avoid
1276     // reg unit interference
1277     if (i == 0 && isThisReturn) {
1278       assert(!VA.needsCustom() && VA.getLocVT() == MVT::i32 &&
1279              "unexpected return calling convention register assignment");
1280       InVals.push_back(ThisVal);
1281       continue;
1282     }
1283
1284     SDValue Val;
1285     if (VA.needsCustom()) {
1286       // Handle f64 or half of a v2f64.
1287       SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
1288                                       InFlag);
1289       Chain = Lo.getValue(1);
1290       InFlag = Lo.getValue(2);
1291       VA = RVLocs[++i]; // skip ahead to next loc
1292       SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32,
1293                                       InFlag);
1294       Chain = Hi.getValue(1);
1295       InFlag = Hi.getValue(2);
1296       Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
1297
1298       if (VA.getLocVT() == MVT::v2f64) {
1299         SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
1300         Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1301                           DAG.getConstant(0, MVT::i32));
1302
1303         VA = RVLocs[++i]; // skip ahead to next loc
1304         Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
1305         Chain = Lo.getValue(1);
1306         InFlag = Lo.getValue(2);
1307         VA = RVLocs[++i]; // skip ahead to next loc
1308         Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag);
1309         Chain = Hi.getValue(1);
1310         InFlag = Hi.getValue(2);
1311         Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
1312         Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val,
1313                           DAG.getConstant(1, MVT::i32));
1314       }
1315     } else {
1316       Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(),
1317                                InFlag);
1318       Chain = Val.getValue(1);
1319       InFlag = Val.getValue(2);
1320     }
1321
1322     switch (VA.getLocInfo()) {
1323     default: llvm_unreachable("Unknown loc info!");
1324     case CCValAssign::Full: break;
1325     case CCValAssign::BCvt:
1326       Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val);
1327       break;
1328     }
1329
1330     InVals.push_back(Val);
1331   }
1332
1333   return Chain;
1334 }
1335
1336 /// LowerMemOpCallTo - Store the argument to the stack.
1337 SDValue
1338 ARMTargetLowering::LowerMemOpCallTo(SDValue Chain,
1339                                     SDValue StackPtr, SDValue Arg,
1340                                     SDLoc dl, SelectionDAG &DAG,
1341                                     const CCValAssign &VA,
1342                                     ISD::ArgFlagsTy Flags) const {
1343   unsigned LocMemOffset = VA.getLocMemOffset();
1344   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
1345   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
1346   return DAG.getStore(Chain, dl, Arg, PtrOff,
1347                       MachinePointerInfo::getStack(LocMemOffset),
1348                       false, false, 0);
1349 }
1350
1351 void ARMTargetLowering::PassF64ArgInRegs(SDLoc dl, SelectionDAG &DAG,
1352                                          SDValue Chain, SDValue &Arg,
1353                                          RegsToPassVector &RegsToPass,
1354                                          CCValAssign &VA, CCValAssign &NextVA,
1355                                          SDValue &StackPtr,
1356                                          SmallVectorImpl<SDValue> &MemOpChains,
1357                                          ISD::ArgFlagsTy Flags) const {
1358
1359   SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
1360                               DAG.getVTList(MVT::i32, MVT::i32), Arg);
1361   RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd));
1362
1363   if (NextVA.isRegLoc())
1364     RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1)));
1365   else {
1366     assert(NextVA.isMemLoc());
1367     if (!StackPtr.getNode())
1368       StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1369
1370     MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1),
1371                                            dl, DAG, NextVA,
1372                                            Flags));
1373   }
1374 }
1375
1376 /// LowerCall - Lowering a call into a callseq_start <-
1377 /// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
1378 /// nodes.
1379 SDValue
1380 ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
1381                              SmallVectorImpl<SDValue> &InVals) const {
1382   SelectionDAG &DAG                     = CLI.DAG;
1383   SDLoc &dl                          = CLI.DL;
1384   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
1385   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
1386   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
1387   SDValue Chain                         = CLI.Chain;
1388   SDValue Callee                        = CLI.Callee;
1389   bool &isTailCall                      = CLI.IsTailCall;
1390   CallingConv::ID CallConv              = CLI.CallConv;
1391   bool doesNotRet                       = CLI.DoesNotReturn;
1392   bool isVarArg                         = CLI.IsVarArg;
1393
1394   MachineFunction &MF = DAG.getMachineFunction();
1395   bool isStructRet    = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
1396   bool isThisReturn   = false;
1397   bool isSibCall      = false;
1398
1399   // Disable tail calls if they're not supported.
1400   if (!Subtarget->supportsTailCall() || MF.getTarget().Options.DisableTailCalls)
1401     isTailCall = false;
1402
1403   if (isTailCall) {
1404     // Check if it's really possible to do a tail call.
1405     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1406                     isVarArg, isStructRet, MF.getFunction()->hasStructRetAttr(),
1407                                                    Outs, OutVals, Ins, DAG);
1408     if (!isTailCall && CLI.CS && CLI.CS->isMustTailCall())
1409       report_fatal_error("failed to perform tail call elimination on a call "
1410                          "site marked musttail");
1411     // We don't support GuaranteedTailCallOpt for ARM, only automatically
1412     // detected sibcalls.
1413     if (isTailCall) {
1414       ++NumTailCalls;
1415       isSibCall = true;
1416     }
1417   }
1418
1419   // Analyze operands of the call, assigning locations to each operand.
1420   SmallVector<CCValAssign, 16> ArgLocs;
1421   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1422                  getTargetMachine(), ArgLocs, *DAG.getContext(), Call);
1423   CCInfo.AnalyzeCallOperands(Outs,
1424                              CCAssignFnForNode(CallConv, /* Return*/ false,
1425                                                isVarArg));
1426
1427   // Get a count of how many bytes are to be pushed on the stack.
1428   unsigned NumBytes = CCInfo.getNextStackOffset();
1429
1430   // For tail calls, memory operands are available in our caller's stack.
1431   if (isSibCall)
1432     NumBytes = 0;
1433
1434   // Adjust the stack pointer for the new arguments...
1435   // These operations are automatically eliminated by the prolog/epilog pass
1436   if (!isSibCall)
1437     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
1438                                  dl);
1439
1440   SDValue StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy());
1441
1442   RegsToPassVector RegsToPass;
1443   SmallVector<SDValue, 8> MemOpChains;
1444
1445   // Walk the register/memloc assignments, inserting copies/loads.  In the case
1446   // of tail call optimization, arguments are handled later.
1447   for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1448        i != e;
1449        ++i, ++realArgIdx) {
1450     CCValAssign &VA = ArgLocs[i];
1451     SDValue Arg = OutVals[realArgIdx];
1452     ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
1453     bool isByVal = Flags.isByVal();
1454
1455     // Promote the value if needed.
1456     switch (VA.getLocInfo()) {
1457     default: llvm_unreachable("Unknown loc info!");
1458     case CCValAssign::Full: break;
1459     case CCValAssign::SExt:
1460       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1461       break;
1462     case CCValAssign::ZExt:
1463       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1464       break;
1465     case CCValAssign::AExt:
1466       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1467       break;
1468     case CCValAssign::BCvt:
1469       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
1470       break;
1471     }
1472
1473     // f64 and v2f64 might be passed in i32 pairs and must be split into pieces
1474     if (VA.needsCustom()) {
1475       if (VA.getLocVT() == MVT::v2f64) {
1476         SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1477                                   DAG.getConstant(0, MVT::i32));
1478         SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
1479                                   DAG.getConstant(1, MVT::i32));
1480
1481         PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass,
1482                          VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1483
1484         VA = ArgLocs[++i]; // skip ahead to next loc
1485         if (VA.isRegLoc()) {
1486           PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass,
1487                            VA, ArgLocs[++i], StackPtr, MemOpChains, Flags);
1488         } else {
1489           assert(VA.isMemLoc());
1490
1491           MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1,
1492                                                  dl, DAG, VA, Flags));
1493         }
1494       } else {
1495         PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i],
1496                          StackPtr, MemOpChains, Flags);
1497       }
1498     } else if (VA.isRegLoc()) {
1499       if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i32) {
1500         assert(VA.getLocVT() == MVT::i32 &&
1501                "unexpected calling convention register assignment");
1502         assert(!Ins.empty() && Ins[0].VT == MVT::i32 &&
1503                "unexpected use of 'returned'");
1504         isThisReturn = true;
1505       }
1506       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1507     } else if (isByVal) {
1508       assert(VA.isMemLoc());
1509       unsigned offset = 0;
1510
1511       // True if this byval aggregate will be split between registers
1512       // and memory.
1513       unsigned ByValArgsCount = CCInfo.getInRegsParamsCount();
1514       unsigned CurByValIdx = CCInfo.getInRegsParamsProceed();
1515
1516       if (CurByValIdx < ByValArgsCount) {
1517
1518         unsigned RegBegin, RegEnd;
1519         CCInfo.getInRegsParamInfo(CurByValIdx, RegBegin, RegEnd);
1520
1521         EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
1522         unsigned int i, j;
1523         for (i = 0, j = RegBegin; j < RegEnd; i++, j++) {
1524           SDValue Const = DAG.getConstant(4*i, MVT::i32);
1525           SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const);
1526           SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg,
1527                                      MachinePointerInfo(),
1528                                      false, false, false,
1529                                      DAG.InferPtrAlignment(AddArg));
1530           MemOpChains.push_back(Load.getValue(1));
1531           RegsToPass.push_back(std::make_pair(j, Load));
1532         }
1533
1534         // If parameter size outsides register area, "offset" value
1535         // helps us to calculate stack slot for remained part properly.
1536         offset = RegEnd - RegBegin;
1537
1538         CCInfo.nextInRegsParam();
1539       }
1540
1541       if (Flags.getByValSize() > 4*offset) {
1542         unsigned LocMemOffset = VA.getLocMemOffset();
1543         SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset);
1544         SDValue Dst = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr,
1545                                   StkPtrOff);
1546         SDValue SrcOffset = DAG.getIntPtrConstant(4*offset);
1547         SDValue Src = DAG.getNode(ISD::ADD, dl, getPointerTy(), Arg, SrcOffset);
1548         SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset,
1549                                            MVT::i32);
1550         SDValue AlignNode = DAG.getConstant(Flags.getByValAlign(), MVT::i32);
1551
1552         SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue);
1553         SDValue Ops[] = { Chain, Dst, Src, SizeNode, AlignNode};
1554         MemOpChains.push_back(DAG.getNode(ARMISD::COPY_STRUCT_BYVAL, dl, VTs,
1555                                           Ops));
1556       }
1557     } else if (!isSibCall) {
1558       assert(VA.isMemLoc());
1559
1560       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1561                                              dl, DAG, VA, Flags));
1562     }
1563   }
1564
1565   if (!MemOpChains.empty())
1566     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
1567
1568   // Build a sequence of copy-to-reg nodes chained together with token chain
1569   // and flag operands which copy the outgoing args into the appropriate regs.
1570   SDValue InFlag;
1571   // Tail call byval lowering might overwrite argument registers so in case of
1572   // tail call optimization the copies to registers are lowered later.
1573   if (!isTailCall)
1574     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1575       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1576                                RegsToPass[i].second, InFlag);
1577       InFlag = Chain.getValue(1);
1578     }
1579
1580   // For tail calls lower the arguments to the 'real' stack slot.
1581   if (isTailCall) {
1582     // Force all the incoming stack arguments to be loaded from the stack
1583     // before any new outgoing arguments are stored to the stack, because the
1584     // outgoing stack slots may alias the incoming argument stack slots, and
1585     // the alias isn't otherwise explicit. This is slightly more conservative
1586     // than necessary, because it means that each store effectively depends
1587     // on every argument instead of just those arguments it would clobber.
1588
1589     // Do not flag preceding copytoreg stuff together with the following stuff.
1590     InFlag = SDValue();
1591     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1592       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1593                                RegsToPass[i].second, InFlag);
1594       InFlag = Chain.getValue(1);
1595     }
1596     InFlag = SDValue();
1597   }
1598
1599   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
1600   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
1601   // node so that legalize doesn't hack it.
1602   bool isDirect = false;
1603   bool isARMFunc = false;
1604   bool isLocalARMFunc = false;
1605   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
1606
1607   if (EnableARMLongCalls) {
1608     assert (getTargetMachine().getRelocationModel() == Reloc::Static
1609             && "long-calls with non-static relocation model!");
1610     // Handle a global address or an external symbol. If it's not one of
1611     // those, the target's already in a register, so we don't need to do
1612     // anything extra.
1613     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1614       const GlobalValue *GV = G->getGlobal();
1615       // Create a constant pool entry for the callee address
1616       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1617       ARMConstantPoolValue *CPV =
1618         ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0);
1619
1620       // Get the address of the callee into a register
1621       SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1622       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1623       Callee = DAG.getLoad(getPointerTy(), dl,
1624                            DAG.getEntryNode(), CPAddr,
1625                            MachinePointerInfo::getConstantPool(),
1626                            false, false, false, 0);
1627     } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) {
1628       const char *Sym = S->getSymbol();
1629
1630       // Create a constant pool entry for the callee address
1631       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1632       ARMConstantPoolValue *CPV =
1633         ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1634                                       ARMPCLabelIndex, 0);
1635       // Get the address of the callee into a register
1636       SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1637       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1638       Callee = DAG.getLoad(getPointerTy(), dl,
1639                            DAG.getEntryNode(), CPAddr,
1640                            MachinePointerInfo::getConstantPool(),
1641                            false, false, false, 0);
1642     }
1643   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1644     const GlobalValue *GV = G->getGlobal();
1645     isDirect = true;
1646     bool isExt = GV->isDeclaration() || GV->isWeakForLinker();
1647     bool isStub = (isExt && Subtarget->isTargetMachO()) &&
1648                    getTargetMachine().getRelocationModel() != Reloc::Static;
1649     isARMFunc = !Subtarget->isThumb() || isStub;
1650     // ARM call to a local ARM function is predicable.
1651     isLocalARMFunc = !Subtarget->isThumb() && (!isExt || !ARMInterworking);
1652     // tBX takes a register source operand.
1653     if (isStub && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1654       assert(Subtarget->isTargetMachO() && "WrapperPIC use on non-MachO?");
1655       Callee = DAG.getNode(ARMISD::WrapperPIC, dl, getPointerTy(),
1656                            DAG.getTargetGlobalAddress(GV, dl, getPointerTy()));
1657     } else {
1658       // On ELF targets for PIC code, direct calls should go through the PLT
1659       unsigned OpFlags = 0;
1660       if (Subtarget->isTargetELF() &&
1661           getTargetMachine().getRelocationModel() == Reloc::PIC_)
1662         OpFlags = ARMII::MO_PLT;
1663       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
1664     }
1665   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1666     isDirect = true;
1667     bool isStub = Subtarget->isTargetMachO() &&
1668                   getTargetMachine().getRelocationModel() != Reloc::Static;
1669     isARMFunc = !Subtarget->isThumb() || isStub;
1670     // tBX takes a register source operand.
1671     const char *Sym = S->getSymbol();
1672     if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) {
1673       unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
1674       ARMConstantPoolValue *CPV =
1675         ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym,
1676                                       ARMPCLabelIndex, 4);
1677       SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4);
1678       CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
1679       Callee = DAG.getLoad(getPointerTy(), dl,
1680                            DAG.getEntryNode(), CPAddr,
1681                            MachinePointerInfo::getConstantPool(),
1682                            false, false, false, 0);
1683       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
1684       Callee = DAG.getNode(ARMISD::PIC_ADD, dl,
1685                            getPointerTy(), Callee, PICLabel);
1686     } else {
1687       unsigned OpFlags = 0;
1688       // On ELF targets for PIC code, direct calls should go through the PLT
1689       if (Subtarget->isTargetELF() &&
1690                   getTargetMachine().getRelocationModel() == Reloc::PIC_)
1691         OpFlags = ARMII::MO_PLT;
1692       Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlags);
1693     }
1694   }
1695
1696   // FIXME: handle tail calls differently.
1697   unsigned CallOpc;
1698   bool HasMinSizeAttr = Subtarget->isMinSize();
1699   if (Subtarget->isThumb()) {
1700     if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps())
1701       CallOpc = ARMISD::CALL_NOLINK;
1702     else
1703       CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL;
1704   } else {
1705     if (!isDirect && !Subtarget->hasV5TOps())
1706       CallOpc = ARMISD::CALL_NOLINK;
1707     else if (doesNotRet && isDirect && Subtarget->hasRAS() &&
1708                // Emit regular call when code size is the priority
1709                !HasMinSizeAttr)
1710       // "mov lr, pc; b _foo" to avoid confusing the RSP
1711       CallOpc = ARMISD::CALL_NOLINK;
1712     else
1713       CallOpc = isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL;
1714   }
1715
1716   std::vector<SDValue> Ops;
1717   Ops.push_back(Chain);
1718   Ops.push_back(Callee);
1719
1720   // Add argument registers to the end of the list so that they are known live
1721   // into the call.
1722   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1723     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1724                                   RegsToPass[i].second.getValueType()));
1725
1726   // Add a register mask operand representing the call-preserved registers.
1727   if (!isTailCall) {
1728     const uint32_t *Mask;
1729     const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
1730     const ARMBaseRegisterInfo *ARI = static_cast<const ARMBaseRegisterInfo*>(TRI);
1731     if (isThisReturn) {
1732       // For 'this' returns, use the R0-preserving mask if applicable
1733       Mask = ARI->getThisReturnPreservedMask(CallConv);
1734       if (!Mask) {
1735         // Set isThisReturn to false if the calling convention is not one that
1736         // allows 'returned' to be modeled in this way, so LowerCallResult does
1737         // not try to pass 'this' straight through
1738         isThisReturn = false;
1739         Mask = ARI->getCallPreservedMask(CallConv);
1740       }
1741     } else
1742       Mask = ARI->getCallPreservedMask(CallConv);
1743
1744     assert(Mask && "Missing call preserved mask for calling convention");
1745     Ops.push_back(DAG.getRegisterMask(Mask));
1746   }
1747
1748   if (InFlag.getNode())
1749     Ops.push_back(InFlag);
1750
1751   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1752   if (isTailCall)
1753     return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, Ops);
1754
1755   // Returns a chain and a flag for retval copy to use.
1756   Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops);
1757   InFlag = Chain.getValue(1);
1758
1759   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1760                              DAG.getIntPtrConstant(0, true), InFlag, dl);
1761   if (!Ins.empty())
1762     InFlag = Chain.getValue(1);
1763
1764   // Handle result values, copying them out of physregs into vregs that we
1765   // return.
1766   return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG,
1767                          InVals, isThisReturn,
1768                          isThisReturn ? OutVals[0] : SDValue());
1769 }
1770
1771 /// HandleByVal - Every parameter *after* a byval parameter is passed
1772 /// on the stack.  Remember the next parameter register to allocate,
1773 /// and then confiscate the rest of the parameter registers to insure
1774 /// this.
1775 void
1776 ARMTargetLowering::HandleByVal(
1777     CCState *State, unsigned &size, unsigned Align) const {
1778   unsigned reg = State->AllocateReg(GPRArgRegs, 4);
1779   assert((State->getCallOrPrologue() == Prologue ||
1780           State->getCallOrPrologue() == Call) &&
1781          "unhandled ParmContext");
1782
1783   if ((ARM::R0 <= reg) && (reg <= ARM::R3)) {
1784     if (Subtarget->isAAPCS_ABI() && Align > 4) {
1785       unsigned AlignInRegs = Align / 4;
1786       unsigned Waste = (ARM::R4 - reg) % AlignInRegs;
1787       for (unsigned i = 0; i < Waste; ++i)
1788         reg = State->AllocateReg(GPRArgRegs, 4);
1789     }
1790     if (reg != 0) {
1791       unsigned excess = 4 * (ARM::R4 - reg);
1792
1793       // Special case when NSAA != SP and parameter size greater than size of
1794       // all remained GPR regs. In that case we can't split parameter, we must
1795       // send it to stack. We also must set NCRN to R4, so waste all
1796       // remained registers.
1797       const unsigned NSAAOffset = State->getNextStackOffset();
1798       if (Subtarget->isAAPCS_ABI() && NSAAOffset != 0 && size > excess) {
1799         while (State->AllocateReg(GPRArgRegs, 4))
1800           ;
1801         return;
1802       }
1803
1804       // First register for byval parameter is the first register that wasn't
1805       // allocated before this method call, so it would be "reg".
1806       // If parameter is small enough to be saved in range [reg, r4), then
1807       // the end (first after last) register would be reg + param-size-in-regs,
1808       // else parameter would be splitted between registers and stack,
1809       // end register would be r4 in this case.
1810       unsigned ByValRegBegin = reg;
1811       unsigned ByValRegEnd = (size < excess) ? reg + size/4 : (unsigned)ARM::R4;
1812       State->addInRegsParamInfo(ByValRegBegin, ByValRegEnd);
1813       // Note, first register is allocated in the beginning of function already,
1814       // allocate remained amount of registers we need.
1815       for (unsigned i = reg+1; i != ByValRegEnd; ++i)
1816         State->AllocateReg(GPRArgRegs, 4);
1817       // A byval parameter that is split between registers and memory needs its
1818       // size truncated here.
1819       // In the case where the entire structure fits in registers, we set the
1820       // size in memory to zero.
1821       if (size < excess)
1822         size = 0;
1823       else
1824         size -= excess;
1825     }
1826   }
1827 }
1828
1829 /// MatchingStackOffset - Return true if the given stack call argument is
1830 /// already available in the same position (relatively) of the caller's
1831 /// incoming argument stack.
1832 static
1833 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
1834                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
1835                          const TargetInstrInfo *TII) {
1836   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
1837   int FI = INT_MAX;
1838   if (Arg.getOpcode() == ISD::CopyFromReg) {
1839     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
1840     if (!TargetRegisterInfo::isVirtualRegister(VR))
1841       return false;
1842     MachineInstr *Def = MRI->getVRegDef(VR);
1843     if (!Def)
1844       return false;
1845     if (!Flags.isByVal()) {
1846       if (!TII->isLoadFromStackSlot(Def, FI))
1847         return false;
1848     } else {
1849       return false;
1850     }
1851   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
1852     if (Flags.isByVal())
1853       // ByVal argument is passed in as a pointer but it's now being
1854       // dereferenced. e.g.
1855       // define @foo(%struct.X* %A) {
1856       //   tail call @bar(%struct.X* byval %A)
1857       // }
1858       return false;
1859     SDValue Ptr = Ld->getBasePtr();
1860     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
1861     if (!FINode)
1862       return false;
1863     FI = FINode->getIndex();
1864   } else
1865     return false;
1866
1867   assert(FI != INT_MAX);
1868   if (!MFI->isFixedObjectIndex(FI))
1869     return false;
1870   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
1871 }
1872
1873 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
1874 /// for tail call optimization. Targets which want to do tail call
1875 /// optimization should implement this function.
1876 bool
1877 ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
1878                                                      CallingConv::ID CalleeCC,
1879                                                      bool isVarArg,
1880                                                      bool isCalleeStructRet,
1881                                                      bool isCallerStructRet,
1882                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
1883                                     const SmallVectorImpl<SDValue> &OutVals,
1884                                     const SmallVectorImpl<ISD::InputArg> &Ins,
1885                                                      SelectionDAG& DAG) const {
1886   const Function *CallerF = DAG.getMachineFunction().getFunction();
1887   CallingConv::ID CallerCC = CallerF->getCallingConv();
1888   bool CCMatch = CallerCC == CalleeCC;
1889
1890   // Look for obvious safe cases to perform tail call optimization that do not
1891   // require ABI changes. This is what gcc calls sibcall.
1892
1893   // Do not sibcall optimize vararg calls unless the call site is not passing
1894   // any arguments.
1895   if (isVarArg && !Outs.empty())
1896     return false;
1897
1898   // Exception-handling functions need a special set of instructions to indicate
1899   // a return to the hardware. Tail-calling another function would probably
1900   // break this.
1901   if (CallerF->hasFnAttribute("interrupt"))
1902     return false;
1903
1904   // Also avoid sibcall optimization if either caller or callee uses struct
1905   // return semantics.
1906   if (isCalleeStructRet || isCallerStructRet)
1907     return false;
1908
1909   // FIXME: Completely disable sibcall for Thumb1 since Thumb1RegisterInfo::
1910   // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as
1911   // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation
1912   // support in the assembler and linker to be used. This would need to be
1913   // fixed to fully support tail calls in Thumb1.
1914   //
1915   // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take
1916   // LR.  This means if we need to reload LR, it takes an extra instructions,
1917   // which outweighs the value of the tail call; but here we don't know yet
1918   // whether LR is going to be used.  Probably the right approach is to
1919   // generate the tail call here and turn it back into CALL/RET in
1920   // emitEpilogue if LR is used.
1921
1922   // Thumb1 PIC calls to external symbols use BX, so they can be tail calls,
1923   // but we need to make sure there are enough registers; the only valid
1924   // registers are the 4 used for parameters.  We don't currently do this
1925   // case.
1926   if (Subtarget->isThumb1Only())
1927     return false;
1928
1929   // If the calling conventions do not match, then we'd better make sure the
1930   // results are returned in the same way as what the caller expects.
1931   if (!CCMatch) {
1932     SmallVector<CCValAssign, 16> RVLocs1;
1933     ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
1934                        getTargetMachine(), RVLocs1, *DAG.getContext(), Call);
1935     CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg));
1936
1937     SmallVector<CCValAssign, 16> RVLocs2;
1938     ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
1939                        getTargetMachine(), RVLocs2, *DAG.getContext(), Call);
1940     CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg));
1941
1942     if (RVLocs1.size() != RVLocs2.size())
1943       return false;
1944     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
1945       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
1946         return false;
1947       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
1948         return false;
1949       if (RVLocs1[i].isRegLoc()) {
1950         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
1951           return false;
1952       } else {
1953         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
1954           return false;
1955       }
1956     }
1957   }
1958
1959   // If Caller's vararg or byval argument has been split between registers and
1960   // stack, do not perform tail call, since part of the argument is in caller's
1961   // local frame.
1962   const ARMFunctionInfo *AFI_Caller = DAG.getMachineFunction().
1963                                       getInfo<ARMFunctionInfo>();
1964   if (AFI_Caller->getArgRegsSaveSize())
1965     return false;
1966
1967   // If the callee takes no arguments then go on to check the results of the
1968   // call.
1969   if (!Outs.empty()) {
1970     // Check if stack adjustment is needed. For now, do not do this if any
1971     // argument is passed on the stack.
1972     SmallVector<CCValAssign, 16> ArgLocs;
1973     ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
1974                       getTargetMachine(), ArgLocs, *DAG.getContext(), Call);
1975     CCInfo.AnalyzeCallOperands(Outs,
1976                                CCAssignFnForNode(CalleeCC, false, isVarArg));
1977     if (CCInfo.getNextStackOffset()) {
1978       MachineFunction &MF = DAG.getMachineFunction();
1979
1980       // Check if the arguments are already laid out in the right way as
1981       // the caller's fixed stack objects.
1982       MachineFrameInfo *MFI = MF.getFrameInfo();
1983       const MachineRegisterInfo *MRI = &MF.getRegInfo();
1984       const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
1985       for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size();
1986            i != e;
1987            ++i, ++realArgIdx) {
1988         CCValAssign &VA = ArgLocs[i];
1989         EVT RegVT = VA.getLocVT();
1990         SDValue Arg = OutVals[realArgIdx];
1991         ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
1992         if (VA.getLocInfo() == CCValAssign::Indirect)
1993           return false;
1994         if (VA.needsCustom()) {
1995           // f64 and vector types are split into multiple registers or
1996           // register/stack-slot combinations.  The types will not match
1997           // the registers; give up on memory f64 refs until we figure
1998           // out what to do about this.
1999           if (!VA.isRegLoc())
2000             return false;
2001           if (!ArgLocs[++i].isRegLoc())
2002             return false;
2003           if (RegVT == MVT::v2f64) {
2004             if (!ArgLocs[++i].isRegLoc())
2005               return false;
2006             if (!ArgLocs[++i].isRegLoc())
2007               return false;
2008           }
2009         } else if (!VA.isRegLoc()) {
2010           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2011                                    MFI, MRI, TII))
2012             return false;
2013         }
2014       }
2015     }
2016   }
2017
2018   return true;
2019 }
2020
2021 bool
2022 ARMTargetLowering::CanLowerReturn(CallingConv::ID CallConv,
2023                                   MachineFunction &MF, bool isVarArg,
2024                                   const SmallVectorImpl<ISD::OutputArg> &Outs,
2025                                   LLVMContext &Context) const {
2026   SmallVector<CCValAssign, 16> RVLocs;
2027   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(), RVLocs, Context);
2028   return CCInfo.CheckReturn(Outs, CCAssignFnForNode(CallConv, /*Return=*/true,
2029                                                     isVarArg));
2030 }
2031
2032 static SDValue LowerInterruptReturn(SmallVectorImpl<SDValue> &RetOps,
2033                                     SDLoc DL, SelectionDAG &DAG) {
2034   const MachineFunction &MF = DAG.getMachineFunction();
2035   const Function *F = MF.getFunction();
2036
2037   StringRef IntKind = F->getFnAttribute("interrupt").getValueAsString();
2038
2039   // See ARM ARM v7 B1.8.3. On exception entry LR is set to a possibly offset
2040   // version of the "preferred return address". These offsets affect the return
2041   // instruction if this is a return from PL1 without hypervisor extensions.
2042   //    IRQ/FIQ: +4     "subs pc, lr, #4"
2043   //    SWI:     0      "subs pc, lr, #0"
2044   //    ABORT:   +4     "subs pc, lr, #4"
2045   //    UNDEF:   +4/+2  "subs pc, lr, #0"
2046   // UNDEF varies depending on where the exception came from ARM or Thumb
2047   // mode. Alongside GCC, we throw our hands up in disgust and pretend it's 0.
2048
2049   int64_t LROffset;
2050   if (IntKind == "" || IntKind == "IRQ" || IntKind == "FIQ" ||
2051       IntKind == "ABORT")
2052     LROffset = 4;
2053   else if (IntKind == "SWI" || IntKind == "UNDEF")
2054     LROffset = 0;
2055   else
2056     report_fatal_error("Unsupported interrupt attribute. If present, value "
2057                        "must be one of: IRQ, FIQ, SWI, ABORT or UNDEF");
2058
2059   RetOps.insert(RetOps.begin() + 1, DAG.getConstant(LROffset, MVT::i32, false));
2060
2061   return DAG.getNode(ARMISD::INTRET_FLAG, DL, MVT::Other, RetOps);
2062 }
2063
2064 SDValue
2065 ARMTargetLowering::LowerReturn(SDValue Chain,
2066                                CallingConv::ID CallConv, bool isVarArg,
2067                                const SmallVectorImpl<ISD::OutputArg> &Outs,
2068                                const SmallVectorImpl<SDValue> &OutVals,
2069                                SDLoc dl, SelectionDAG &DAG) const {
2070
2071   // CCValAssign - represent the assignment of the return value to a location.
2072   SmallVector<CCValAssign, 16> RVLocs;
2073
2074   // CCState - Info about the registers and stack slots.
2075   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2076                     getTargetMachine(), RVLocs, *DAG.getContext(), Call);
2077
2078   // Analyze outgoing return values.
2079   CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true,
2080                                                isVarArg));
2081
2082   SDValue Flag;
2083   SmallVector<SDValue, 4> RetOps;
2084   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
2085
2086   // Copy the result values into the output registers.
2087   for (unsigned i = 0, realRVLocIdx = 0;
2088        i != RVLocs.size();
2089        ++i, ++realRVLocIdx) {
2090     CCValAssign &VA = RVLocs[i];
2091     assert(VA.isRegLoc() && "Can only return in registers!");
2092
2093     SDValue Arg = OutVals[realRVLocIdx];
2094
2095     switch (VA.getLocInfo()) {
2096     default: llvm_unreachable("Unknown loc info!");
2097     case CCValAssign::Full: break;
2098     case CCValAssign::BCvt:
2099       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
2100       break;
2101     }
2102
2103     if (VA.needsCustom()) {
2104       if (VA.getLocVT() == MVT::v2f64) {
2105         // Extract the first half and return it in two registers.
2106         SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2107                                    DAG.getConstant(0, MVT::i32));
2108         SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl,
2109                                        DAG.getVTList(MVT::i32, MVT::i32), Half);
2110
2111         Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), HalfGPRs, Flag);
2112         Flag = Chain.getValue(1);
2113         RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2114         VA = RVLocs[++i]; // skip ahead to next loc
2115         Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
2116                                  HalfGPRs.getValue(1), Flag);
2117         Flag = Chain.getValue(1);
2118         RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2119         VA = RVLocs[++i]; // skip ahead to next loc
2120
2121         // Extract the 2nd half and fall through to handle it as an f64 value.
2122         Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg,
2123                           DAG.getConstant(1, MVT::i32));
2124       }
2125       // Legalize ret f64 -> ret 2 x i32.  We always have fmrrd if f64 is
2126       // available.
2127       SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl,
2128                                   DAG.getVTList(MVT::i32, MVT::i32), Arg);
2129       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd, Flag);
2130       Flag = Chain.getValue(1);
2131       RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2132       VA = RVLocs[++i]; // skip ahead to next loc
2133       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd.getValue(1),
2134                                Flag);
2135     } else
2136       Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag);
2137
2138     // Guarantee that all emitted copies are
2139     // stuck together, avoiding something bad.
2140     Flag = Chain.getValue(1);
2141     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2142   }
2143
2144   // Update chain and glue.
2145   RetOps[0] = Chain;
2146   if (Flag.getNode())
2147     RetOps.push_back(Flag);
2148
2149   // CPUs which aren't M-class use a special sequence to return from
2150   // exceptions (roughly, any instruction setting pc and cpsr simultaneously,
2151   // though we use "subs pc, lr, #N").
2152   //
2153   // M-class CPUs actually use a normal return sequence with a special
2154   // (hardware-provided) value in LR, so the normal code path works.
2155   if (DAG.getMachineFunction().getFunction()->hasFnAttribute("interrupt") &&
2156       !Subtarget->isMClass()) {
2157     if (Subtarget->isThumb1Only())
2158       report_fatal_error("interrupt attribute is not supported in Thumb1");
2159     return LowerInterruptReturn(RetOps, dl, DAG);
2160   }
2161
2162   return DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, RetOps);
2163 }
2164
2165 bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
2166   if (N->getNumValues() != 1)
2167     return false;
2168   if (!N->hasNUsesOfValue(1, 0))
2169     return false;
2170
2171   SDValue TCChain = Chain;
2172   SDNode *Copy = *N->use_begin();
2173   if (Copy->getOpcode() == ISD::CopyToReg) {
2174     // If the copy has a glue operand, we conservatively assume it isn't safe to
2175     // perform a tail call.
2176     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
2177       return false;
2178     TCChain = Copy->getOperand(0);
2179   } else if (Copy->getOpcode() == ARMISD::VMOVRRD) {
2180     SDNode *VMov = Copy;
2181     // f64 returned in a pair of GPRs.
2182     SmallPtrSet<SDNode*, 2> Copies;
2183     for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2184          UI != UE; ++UI) {
2185       if (UI->getOpcode() != ISD::CopyToReg)
2186         return false;
2187       Copies.insert(*UI);
2188     }
2189     if (Copies.size() > 2)
2190       return false;
2191
2192     for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end();
2193          UI != UE; ++UI) {
2194       SDValue UseChain = UI->getOperand(0);
2195       if (Copies.count(UseChain.getNode()))
2196         // Second CopyToReg
2197         Copy = *UI;
2198       else
2199         // First CopyToReg
2200         TCChain = UseChain;
2201     }
2202   } else if (Copy->getOpcode() == ISD::BITCAST) {
2203     // f32 returned in a single GPR.
2204     if (!Copy->hasOneUse())
2205       return false;
2206     Copy = *Copy->use_begin();
2207     if (Copy->getOpcode() != ISD::CopyToReg || !Copy->hasNUsesOfValue(1, 0))
2208       return false;
2209     TCChain = Copy->getOperand(0);
2210   } else {
2211     return false;
2212   }
2213
2214   bool HasRet = false;
2215   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
2216        UI != UE; ++UI) {
2217     if (UI->getOpcode() != ARMISD::RET_FLAG &&
2218         UI->getOpcode() != ARMISD::INTRET_FLAG)
2219       return false;
2220     HasRet = true;
2221   }
2222
2223   if (!HasRet)
2224     return false;
2225
2226   Chain = TCChain;
2227   return true;
2228 }
2229
2230 bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2231   if (!Subtarget->supportsTailCall())
2232     return false;
2233
2234   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2235     return false;
2236
2237   return !Subtarget->isThumb1Only();
2238 }
2239
2240 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
2241 // their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is
2242 // one of the above mentioned nodes. It has to be wrapped because otherwise
2243 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
2244 // be used to form addressing mode. These wrapped nodes will be selected
2245 // into MOVi.
2246 static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
2247   EVT PtrVT = Op.getValueType();
2248   // FIXME there is no actual debug info here
2249   SDLoc dl(Op);
2250   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
2251   SDValue Res;
2252   if (CP->isMachineConstantPoolEntry())
2253     Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT,
2254                                     CP->getAlignment());
2255   else
2256     Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT,
2257                                     CP->getAlignment());
2258   return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res);
2259 }
2260
2261 unsigned ARMTargetLowering::getJumpTableEncoding() const {
2262   return MachineJumpTableInfo::EK_Inline;
2263 }
2264
2265 SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op,
2266                                              SelectionDAG &DAG) const {
2267   MachineFunction &MF = DAG.getMachineFunction();
2268   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2269   unsigned ARMPCLabelIndex = 0;
2270   SDLoc DL(Op);
2271   EVT PtrVT = getPointerTy();
2272   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
2273   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2274   SDValue CPAddr;
2275   if (RelocM == Reloc::Static) {
2276     CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
2277   } else {
2278     unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2279     ARMPCLabelIndex = AFI->createPICLabelUId();
2280     ARMConstantPoolValue *CPV =
2281       ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex,
2282                                       ARMCP::CPBlockAddress, PCAdj);
2283     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2284   }
2285   CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr);
2286   SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr,
2287                                MachinePointerInfo::getConstantPool(),
2288                                false, false, false, 0);
2289   if (RelocM == Reloc::Static)
2290     return Result;
2291   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2292   return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel);
2293 }
2294
2295 // Lower ISD::GlobalTLSAddress using the "general dynamic" model
2296 SDValue
2297 ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
2298                                                  SelectionDAG &DAG) const {
2299   SDLoc dl(GA);
2300   EVT PtrVT = getPointerTy();
2301   unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2302   MachineFunction &MF = DAG.getMachineFunction();
2303   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2304   unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2305   ARMConstantPoolValue *CPV =
2306     ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2307                                     ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true);
2308   SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2309   Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument);
2310   Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument,
2311                          MachinePointerInfo::getConstantPool(),
2312                          false, false, false, 0);
2313   SDValue Chain = Argument.getValue(1);
2314
2315   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2316   Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel);
2317
2318   // call __tls_get_addr.
2319   ArgListTy Args;
2320   ArgListEntry Entry;
2321   Entry.Node = Argument;
2322   Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext());
2323   Args.push_back(Entry);
2324   // FIXME: is there useful debug info available here?
2325   TargetLowering::CallLoweringInfo CLI(Chain,
2326                 (Type *) Type::getInt32Ty(*DAG.getContext()),
2327                 false, false, false, false,
2328                 0, CallingConv::C, /*isTailCall=*/false,
2329                 /*doesNotRet=*/false, /*isReturnValueUsed=*/true,
2330                 DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG, dl);
2331   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
2332   return CallResult.first;
2333 }
2334
2335 // Lower ISD::GlobalTLSAddress using the "initial exec" or
2336 // "local exec" model.
2337 SDValue
2338 ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA,
2339                                         SelectionDAG &DAG,
2340                                         TLSModel::Model model) const {
2341   const GlobalValue *GV = GA->getGlobal();
2342   SDLoc dl(GA);
2343   SDValue Offset;
2344   SDValue Chain = DAG.getEntryNode();
2345   EVT PtrVT = getPointerTy();
2346   // Get the Thread Pointer
2347   SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2348
2349   if (model == TLSModel::InitialExec) {
2350     MachineFunction &MF = DAG.getMachineFunction();
2351     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2352     unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2353     // Initial exec model.
2354     unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8;
2355     ARMConstantPoolValue *CPV =
2356       ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex,
2357                                       ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF,
2358                                       true);
2359     Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2360     Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
2361     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2362                          MachinePointerInfo::getConstantPool(),
2363                          false, false, false, 0);
2364     Chain = Offset.getValue(1);
2365
2366     SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2367     Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel);
2368
2369     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2370                          MachinePointerInfo::getConstantPool(),
2371                          false, false, false, 0);
2372   } else {
2373     // local exec model
2374     assert(model == TLSModel::LocalExec);
2375     ARMConstantPoolValue *CPV =
2376       ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF);
2377     Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2378     Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset);
2379     Offset = DAG.getLoad(PtrVT, dl, Chain, Offset,
2380                          MachinePointerInfo::getConstantPool(),
2381                          false, false, false, 0);
2382   }
2383
2384   // The address of the thread local variable is the add of the thread
2385   // pointer with the offset of the variable.
2386   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
2387 }
2388
2389 SDValue
2390 ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
2391   // TODO: implement the "local dynamic" model
2392   assert(Subtarget->isTargetELF() &&
2393          "TLS not implemented for non-ELF targets");
2394   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
2395
2396   TLSModel::Model model = getTargetMachine().getTLSModel(GA->getGlobal());
2397
2398   switch (model) {
2399     case TLSModel::GeneralDynamic:
2400     case TLSModel::LocalDynamic:
2401       return LowerToTLSGeneralDynamicModel(GA, DAG);
2402     case TLSModel::InitialExec:
2403     case TLSModel::LocalExec:
2404       return LowerToTLSExecModels(GA, DAG, model);
2405   }
2406   llvm_unreachable("bogus TLS model");
2407 }
2408
2409 SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op,
2410                                                  SelectionDAG &DAG) const {
2411   EVT PtrVT = getPointerTy();
2412   SDLoc dl(Op);
2413   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2414   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2415     bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility();
2416     ARMConstantPoolValue *CPV =
2417       ARMConstantPoolConstant::Create(GV,
2418                                       UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT);
2419     SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2420     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2421     SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
2422                                  CPAddr,
2423                                  MachinePointerInfo::getConstantPool(),
2424                                  false, false, false, 0);
2425     SDValue Chain = Result.getValue(1);
2426     SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT);
2427     Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT);
2428     if (!UseGOTOFF)
2429       Result = DAG.getLoad(PtrVT, dl, Chain, Result,
2430                            MachinePointerInfo::getGOT(),
2431                            false, false, false, 0);
2432     return Result;
2433   }
2434
2435   // If we have T2 ops, we can materialize the address directly via movt/movw
2436   // pair. This is always cheaper.
2437   if (Subtarget->useMovt()) {
2438     ++NumMovwMovt;
2439     // FIXME: Once remat is capable of dealing with instructions with register
2440     // operands, expand this into two nodes.
2441     return DAG.getNode(ARMISD::Wrapper, dl, PtrVT,
2442                        DAG.getTargetGlobalAddress(GV, dl, PtrVT));
2443   } else {
2444     SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4);
2445     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2446     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2447                        MachinePointerInfo::getConstantPool(),
2448                        false, false, false, 0);
2449   }
2450 }
2451
2452 SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op,
2453                                                     SelectionDAG &DAG) const {
2454   EVT PtrVT = getPointerTy();
2455   SDLoc dl(Op);
2456   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2457   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2458
2459   if (Subtarget->useMovt())
2460     ++NumMovwMovt;
2461
2462   // FIXME: Once remat is capable of dealing with instructions with register
2463   // operands, expand this into multiple nodes
2464   unsigned Wrapper =
2465       RelocM == Reloc::PIC_ ? ARMISD::WrapperPIC : ARMISD::Wrapper;
2466
2467   SDValue G = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, ARMII::MO_NONLAZY);
2468   SDValue Result = DAG.getNode(Wrapper, dl, PtrVT, G);
2469
2470   if (Subtarget->GVIsIndirectSymbol(GV, RelocM))
2471     Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result,
2472                          MachinePointerInfo::getGOT(), false, false, false, 0);
2473   return Result;
2474 }
2475
2476 SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op,
2477                                                     SelectionDAG &DAG) const {
2478   assert(Subtarget->isTargetELF() &&
2479          "GLOBAL OFFSET TABLE not implemented for non-ELF targets");
2480   MachineFunction &MF = DAG.getMachineFunction();
2481   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2482   unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2483   EVT PtrVT = getPointerTy();
2484   SDLoc dl(Op);
2485   unsigned PCAdj = Subtarget->isThumb() ? 4 : 8;
2486   ARMConstantPoolValue *CPV =
2487     ARMConstantPoolSymbol::Create(*DAG.getContext(), "_GLOBAL_OFFSET_TABLE_",
2488                                   ARMPCLabelIndex, PCAdj);
2489   SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2490   CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2491   SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2492                                MachinePointerInfo::getConstantPool(),
2493                                false, false, false, 0);
2494   SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2495   return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2496 }
2497
2498 SDValue
2499 ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const {
2500   SDLoc dl(Op);
2501   SDValue Val = DAG.getConstant(0, MVT::i32);
2502   return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl,
2503                      DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0),
2504                      Op.getOperand(1), Val);
2505 }
2506
2507 SDValue
2508 ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const {
2509   SDLoc dl(Op);
2510   return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0),
2511                      Op.getOperand(1), DAG.getConstant(0, MVT::i32));
2512 }
2513
2514 SDValue
2515 ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG,
2516                                           const ARMSubtarget *Subtarget) const {
2517   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
2518   SDLoc dl(Op);
2519   switch (IntNo) {
2520   default: return SDValue();    // Don't custom lower most intrinsics.
2521   case Intrinsic::arm_thread_pointer: {
2522     EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2523     return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT);
2524   }
2525   case Intrinsic::eh_sjlj_lsda: {
2526     MachineFunction &MF = DAG.getMachineFunction();
2527     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2528     unsigned ARMPCLabelIndex = AFI->createPICLabelUId();
2529     EVT PtrVT = getPointerTy();
2530     Reloc::Model RelocM = getTargetMachine().getRelocationModel();
2531     SDValue CPAddr;
2532     unsigned PCAdj = (RelocM != Reloc::PIC_)
2533       ? 0 : (Subtarget->isThumb() ? 4 : 8);
2534     ARMConstantPoolValue *CPV =
2535       ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex,
2536                                       ARMCP::CPLSDA, PCAdj);
2537     CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4);
2538     CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr);
2539     SDValue Result =
2540       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr,
2541                   MachinePointerInfo::getConstantPool(),
2542                   false, false, false, 0);
2543
2544     if (RelocM == Reloc::PIC_) {
2545       SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32);
2546       Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel);
2547     }
2548     return Result;
2549   }
2550   case Intrinsic::arm_neon_vmulls:
2551   case Intrinsic::arm_neon_vmullu: {
2552     unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls)
2553       ? ARMISD::VMULLs : ARMISD::VMULLu;
2554     return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(),
2555                        Op.getOperand(1), Op.getOperand(2));
2556   }
2557   }
2558 }
2559
2560 static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG,
2561                                  const ARMSubtarget *Subtarget) {
2562   // FIXME: handle "fence singlethread" more efficiently.
2563   SDLoc dl(Op);
2564   if (!Subtarget->hasDataBarrier()) {
2565     // Some ARMv6 cpus can support data barriers with an mcr instruction.
2566     // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get
2567     // here.
2568     assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() &&
2569            "Unexpected ISD::ATOMIC_FENCE encountered. Should be libcall!");
2570     return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0),
2571                        DAG.getConstant(0, MVT::i32));
2572   }
2573
2574   ConstantSDNode *OrdN = cast<ConstantSDNode>(Op.getOperand(1));
2575   AtomicOrdering Ord = static_cast<AtomicOrdering>(OrdN->getZExtValue());
2576   unsigned Domain = ARM_MB::ISH;
2577   if (Subtarget->isMClass()) {
2578     // Only a full system barrier exists in the M-class architectures.
2579     Domain = ARM_MB::SY;
2580   } else if (Subtarget->isSwift() && Ord == Release) {
2581     // Swift happens to implement ISHST barriers in a way that's compatible with
2582     // Release semantics but weaker than ISH so we'd be fools not to use
2583     // it. Beware: other processors probably don't!
2584     Domain = ARM_MB::ISHST;
2585   }
2586
2587   return DAG.getNode(ISD::INTRINSIC_VOID, dl, MVT::Other, Op.getOperand(0),
2588                      DAG.getConstant(Intrinsic::arm_dmb, MVT::i32),
2589                      DAG.getConstant(Domain, MVT::i32));
2590 }
2591
2592 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG,
2593                              const ARMSubtarget *Subtarget) {
2594   // ARM pre v5TE and Thumb1 does not have preload instructions.
2595   if (!(Subtarget->isThumb2() ||
2596         (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps())))
2597     // Just preserve the chain.
2598     return Op.getOperand(0);
2599
2600   SDLoc dl(Op);
2601   unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1;
2602   if (!isRead &&
2603       (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension()))
2604     // ARMv7 with MP extension has PLDW.
2605     return Op.getOperand(0);
2606
2607   unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
2608   if (Subtarget->isThumb()) {
2609     // Invert the bits.
2610     isRead = ~isRead & 1;
2611     isData = ~isData & 1;
2612   }
2613
2614   return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0),
2615                      Op.getOperand(1), DAG.getConstant(isRead, MVT::i32),
2616                      DAG.getConstant(isData, MVT::i32));
2617 }
2618
2619 static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) {
2620   MachineFunction &MF = DAG.getMachineFunction();
2621   ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>();
2622
2623   // vastart just stores the address of the VarArgsFrameIndex slot into the
2624   // memory location argument.
2625   SDLoc dl(Op);
2626   EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2627   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT);
2628   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2629   return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1),
2630                       MachinePointerInfo(SV), false, false, 0);
2631 }
2632
2633 SDValue
2634 ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
2635                                         SDValue &Root, SelectionDAG &DAG,
2636                                         SDLoc dl) const {
2637   MachineFunction &MF = DAG.getMachineFunction();
2638   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2639
2640   const TargetRegisterClass *RC;
2641   if (AFI->isThumb1OnlyFunction())
2642     RC = &ARM::tGPRRegClass;
2643   else
2644     RC = &ARM::GPRRegClass;
2645
2646   // Transform the arguments stored in physical registers into virtual ones.
2647   unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2648   SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
2649
2650   SDValue ArgValue2;
2651   if (NextVA.isMemLoc()) {
2652     MachineFrameInfo *MFI = MF.getFrameInfo();
2653     int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true);
2654
2655     // Create load node to retrieve arguments from the stack.
2656     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2657     ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN,
2658                             MachinePointerInfo::getFixedStack(FI),
2659                             false, false, false, 0);
2660   } else {
2661     Reg = MF.addLiveIn(NextVA.getLocReg(), RC);
2662     ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32);
2663   }
2664
2665   return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2);
2666 }
2667
2668 void
2669 ARMTargetLowering::computeRegArea(CCState &CCInfo, MachineFunction &MF,
2670                                   unsigned InRegsParamRecordIdx,
2671                                   unsigned ArgSize,
2672                                   unsigned &ArgRegsSize,
2673                                   unsigned &ArgRegsSaveSize)
2674   const {
2675   unsigned NumGPRs;
2676   if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
2677     unsigned RBegin, REnd;
2678     CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
2679     NumGPRs = REnd - RBegin;
2680   } else {
2681     unsigned int firstUnalloced;
2682     firstUnalloced = CCInfo.getFirstUnallocated(GPRArgRegs,
2683                                                 sizeof(GPRArgRegs) /
2684                                                 sizeof(GPRArgRegs[0]));
2685     NumGPRs = (firstUnalloced <= 3) ? (4 - firstUnalloced) : 0;
2686   }
2687
2688   unsigned Align = MF.getTarget().getFrameLowering()->getStackAlignment();
2689   ArgRegsSize = NumGPRs * 4;
2690
2691   // If parameter is split between stack and GPRs...
2692   if (NumGPRs && Align > 4 &&
2693       (ArgRegsSize < ArgSize ||
2694         InRegsParamRecordIdx >= CCInfo.getInRegsParamsCount())) {
2695     // Add padding for part of param recovered from GPRs.  For example,
2696     // if Align == 8, its last byte must be at address K*8 - 1.
2697     // We need to do it, since remained (stack) part of parameter has
2698     // stack alignment, and we need to "attach" "GPRs head" without gaps
2699     // to it:
2700     // Stack:
2701     // |---- 8 bytes block ----| |---- 8 bytes block ----| |---- 8 bytes...
2702     // [ [padding] [GPRs head] ] [        Tail passed via stack       ....
2703     //
2704     ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2705     unsigned Padding =
2706         OffsetToAlignment(ArgRegsSize + AFI->getArgRegsSaveSize(), Align);
2707     ArgRegsSaveSize = ArgRegsSize + Padding;
2708   } else
2709     // We don't need to extend regs save size for byval parameters if they
2710     // are passed via GPRs only.
2711     ArgRegsSaveSize = ArgRegsSize;
2712 }
2713
2714 // The remaining GPRs hold either the beginning of variable-argument
2715 // data, or the beginning of an aggregate passed by value (usually
2716 // byval).  Either way, we allocate stack slots adjacent to the data
2717 // provided by our caller, and store the unallocated registers there.
2718 // If this is a variadic function, the va_list pointer will begin with
2719 // these values; otherwise, this reassembles a (byval) structure that
2720 // was split between registers and memory.
2721 // Return: The frame index registers were stored into.
2722 int
2723 ARMTargetLowering::StoreByValRegs(CCState &CCInfo, SelectionDAG &DAG,
2724                                   SDLoc dl, SDValue &Chain,
2725                                   const Value *OrigArg,
2726                                   unsigned InRegsParamRecordIdx,
2727                                   unsigned OffsetFromOrigArg,
2728                                   unsigned ArgOffset,
2729                                   unsigned ArgSize,
2730                                   bool ForceMutable,
2731                                   unsigned ByValStoreOffset,
2732                                   unsigned TotalArgRegsSaveSize) const {
2733
2734   // Currently, two use-cases possible:
2735   // Case #1. Non-var-args function, and we meet first byval parameter.
2736   //          Setup first unallocated register as first byval register;
2737   //          eat all remained registers
2738   //          (these two actions are performed by HandleByVal method).
2739   //          Then, here, we initialize stack frame with
2740   //          "store-reg" instructions.
2741   // Case #2. Var-args function, that doesn't contain byval parameters.
2742   //          The same: eat all remained unallocated registers,
2743   //          initialize stack frame.
2744
2745   MachineFunction &MF = DAG.getMachineFunction();
2746   MachineFrameInfo *MFI = MF.getFrameInfo();
2747   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2748   unsigned firstRegToSaveIndex, lastRegToSaveIndex;
2749   unsigned RBegin, REnd;
2750   if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) {
2751     CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd);
2752     firstRegToSaveIndex = RBegin - ARM::R0;
2753     lastRegToSaveIndex = REnd - ARM::R0;
2754   } else {
2755     firstRegToSaveIndex = CCInfo.getFirstUnallocated
2756       (GPRArgRegs, array_lengthof(GPRArgRegs));
2757     lastRegToSaveIndex = 4;
2758   }
2759
2760   unsigned ArgRegsSize, ArgRegsSaveSize;
2761   computeRegArea(CCInfo, MF, InRegsParamRecordIdx, ArgSize,
2762                  ArgRegsSize, ArgRegsSaveSize);
2763
2764   // Store any by-val regs to their spots on the stack so that they may be
2765   // loaded by deferencing the result of formal parameter pointer or va_next.
2766   // Note: once stack area for byval/varargs registers
2767   // was initialized, it can't be initialized again.
2768   if (ArgRegsSaveSize) {
2769     unsigned Padding = ArgRegsSaveSize - ArgRegsSize;
2770
2771     if (Padding) {
2772       assert(AFI->getStoredByValParamsPadding() == 0 &&
2773              "The only parameter may be padded.");
2774       AFI->setStoredByValParamsPadding(Padding);
2775     }
2776
2777     int FrameIndex = MFI->CreateFixedObject(ArgRegsSaveSize,
2778                                             Padding +
2779                                               ByValStoreOffset -
2780                                               (int64_t)TotalArgRegsSaveSize,
2781                                             false);
2782     SDValue FIN = DAG.getFrameIndex(FrameIndex, getPointerTy());
2783     if (Padding) {
2784        MFI->CreateFixedObject(Padding,
2785                               ArgOffset + ByValStoreOffset -
2786                                 (int64_t)ArgRegsSaveSize,
2787                               false);
2788     }
2789
2790     SmallVector<SDValue, 4> MemOps;
2791     for (unsigned i = 0; firstRegToSaveIndex < lastRegToSaveIndex;
2792          ++firstRegToSaveIndex, ++i) {
2793       const TargetRegisterClass *RC;
2794       if (AFI->isThumb1OnlyFunction())
2795         RC = &ARM::tGPRRegClass;
2796       else
2797         RC = &ARM::GPRRegClass;
2798
2799       unsigned VReg = MF.addLiveIn(GPRArgRegs[firstRegToSaveIndex], RC);
2800       SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
2801       SDValue Store =
2802         DAG.getStore(Val.getValue(1), dl, Val, FIN,
2803                      MachinePointerInfo(OrigArg, OffsetFromOrigArg + 4*i),
2804                      false, false, 0);
2805       MemOps.push_back(Store);
2806       FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
2807                         DAG.getConstant(4, getPointerTy()));
2808     }
2809
2810     AFI->setArgRegsSaveSize(ArgRegsSaveSize + AFI->getArgRegsSaveSize());
2811
2812     if (!MemOps.empty())
2813       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps);
2814     return FrameIndex;
2815   } else {
2816     if (ArgSize == 0) {
2817       // We cannot allocate a zero-byte object for the first variadic argument,
2818       // so just make up a size.
2819       ArgSize = 4;
2820     }
2821     // This will point to the next argument passed via stack.
2822     return MFI->CreateFixedObject(
2823       ArgSize, ArgOffset, !ForceMutable);
2824   }
2825 }
2826
2827 // Setup stack frame, the va_list pointer will start from.
2828 void
2829 ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG,
2830                                         SDLoc dl, SDValue &Chain,
2831                                         unsigned ArgOffset,
2832                                         unsigned TotalArgRegsSaveSize,
2833                                         bool ForceMutable) const {
2834   MachineFunction &MF = DAG.getMachineFunction();
2835   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2836
2837   // Try to store any remaining integer argument regs
2838   // to their spots on the stack so that they may be loaded by deferencing
2839   // the result of va_next.
2840   // If there is no regs to be stored, just point address after last
2841   // argument passed via stack.
2842   int FrameIndex =
2843     StoreByValRegs(CCInfo, DAG, dl, Chain, nullptr,
2844                    CCInfo.getInRegsParamsCount(), 0, ArgOffset, 0, ForceMutable,
2845                    0, TotalArgRegsSaveSize);
2846
2847   AFI->setVarArgsFrameIndex(FrameIndex);
2848 }
2849
2850 SDValue
2851 ARMTargetLowering::LowerFormalArguments(SDValue Chain,
2852                                         CallingConv::ID CallConv, bool isVarArg,
2853                                         const SmallVectorImpl<ISD::InputArg>
2854                                           &Ins,
2855                                         SDLoc dl, SelectionDAG &DAG,
2856                                         SmallVectorImpl<SDValue> &InVals)
2857                                           const {
2858   MachineFunction &MF = DAG.getMachineFunction();
2859   MachineFrameInfo *MFI = MF.getFrameInfo();
2860
2861   ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>();
2862
2863   // Assign locations to all of the incoming arguments.
2864   SmallVector<CCValAssign, 16> ArgLocs;
2865   ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2866                     getTargetMachine(), ArgLocs, *DAG.getContext(), Prologue);
2867   CCInfo.AnalyzeFormalArguments(Ins,
2868                                 CCAssignFnForNode(CallConv, /* Return*/ false,
2869                                                   isVarArg));
2870
2871   SmallVector<SDValue, 16> ArgValues;
2872   int lastInsIndex = -1;
2873   SDValue ArgValue;
2874   Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
2875   unsigned CurArgIdx = 0;
2876
2877   // Initially ArgRegsSaveSize is zero.
2878   // Then we increase this value each time we meet byval parameter.
2879   // We also increase this value in case of varargs function.
2880   AFI->setArgRegsSaveSize(0);
2881
2882   unsigned ByValStoreOffset = 0;
2883   unsigned TotalArgRegsSaveSize = 0;
2884   unsigned ArgRegsSaveSizeMaxAlign = 4;
2885
2886   // Calculate the amount of stack space that we need to allocate to store
2887   // byval and variadic arguments that are passed in registers.
2888   // We need to know this before we allocate the first byval or variadic
2889   // argument, as they will be allocated a stack slot below the CFA (Canonical
2890   // Frame Address, the stack pointer at entry to the function).
2891   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2892     CCValAssign &VA = ArgLocs[i];
2893     if (VA.isMemLoc()) {
2894       int index = VA.getValNo();
2895       if (index != lastInsIndex) {
2896         ISD::ArgFlagsTy Flags = Ins[index].Flags;
2897         if (Flags.isByVal()) {
2898           unsigned ExtraArgRegsSize;
2899           unsigned ExtraArgRegsSaveSize;
2900           computeRegArea(CCInfo, MF, CCInfo.getInRegsParamsProceed(),
2901                          Flags.getByValSize(),
2902                          ExtraArgRegsSize, ExtraArgRegsSaveSize);
2903
2904           TotalArgRegsSaveSize += ExtraArgRegsSaveSize;
2905           if (Flags.getByValAlign() > ArgRegsSaveSizeMaxAlign)
2906               ArgRegsSaveSizeMaxAlign = Flags.getByValAlign();
2907           CCInfo.nextInRegsParam();
2908         }
2909         lastInsIndex = index;
2910       }
2911     }
2912   }
2913   CCInfo.rewindByValRegsInfo();
2914   lastInsIndex = -1;
2915   if (isVarArg) {
2916     unsigned ExtraArgRegsSize;
2917     unsigned ExtraArgRegsSaveSize;
2918     computeRegArea(CCInfo, MF, CCInfo.getInRegsParamsCount(), 0,
2919                    ExtraArgRegsSize, ExtraArgRegsSaveSize);
2920     TotalArgRegsSaveSize += ExtraArgRegsSaveSize;
2921   }
2922   // If the arg regs save area contains N-byte aligned values, the
2923   // bottom of it must be at least N-byte aligned.
2924   TotalArgRegsSaveSize = RoundUpToAlignment(TotalArgRegsSaveSize, ArgRegsSaveSizeMaxAlign);
2925   TotalArgRegsSaveSize = std::min(TotalArgRegsSaveSize, 16U);
2926
2927   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2928     CCValAssign &VA = ArgLocs[i];
2929     std::advance(CurOrigArg, Ins[VA.getValNo()].OrigArgIndex - CurArgIdx);
2930     CurArgIdx = Ins[VA.getValNo()].OrigArgIndex;
2931     // Arguments stored in registers.
2932     if (VA.isRegLoc()) {
2933       EVT RegVT = VA.getLocVT();
2934
2935       if (VA.needsCustom()) {
2936         // f64 and vector types are split up into multiple registers or
2937         // combinations of registers and stack slots.
2938         if (VA.getLocVT() == MVT::v2f64) {
2939           SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
2940                                                    Chain, DAG, dl);
2941           VA = ArgLocs[++i]; // skip ahead to next loc
2942           SDValue ArgValue2;
2943           if (VA.isMemLoc()) {
2944             int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true);
2945             SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2946             ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN,
2947                                     MachinePointerInfo::getFixedStack(FI),
2948                                     false, false, false, 0);
2949           } else {
2950             ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
2951                                              Chain, DAG, dl);
2952           }
2953           ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
2954           ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
2955                                  ArgValue, ArgValue1, DAG.getIntPtrConstant(0));
2956           ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
2957                                  ArgValue, ArgValue2, DAG.getIntPtrConstant(1));
2958         } else
2959           ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl);
2960
2961       } else {
2962         const TargetRegisterClass *RC;
2963
2964         if (RegVT == MVT::f32)
2965           RC = &ARM::SPRRegClass;
2966         else if (RegVT == MVT::f64)
2967           RC = &ARM::DPRRegClass;
2968         else if (RegVT == MVT::v2f64)
2969           RC = &ARM::QPRRegClass;
2970         else if (RegVT == MVT::i32)
2971           RC = AFI->isThumb1OnlyFunction() ?
2972             (const TargetRegisterClass*)&ARM::tGPRRegClass :
2973             (const TargetRegisterClass*)&ARM::GPRRegClass;
2974         else
2975           llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
2976
2977         // Transform the arguments in physical registers into virtual ones.
2978         unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2979         ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2980       }
2981
2982       // If this is an 8 or 16-bit value, it is really passed promoted
2983       // to 32 bits.  Insert an assert[sz]ext to capture this, then
2984       // truncate to the right size.
2985       switch (VA.getLocInfo()) {
2986       default: llvm_unreachable("Unknown loc info!");
2987       case CCValAssign::Full: break;
2988       case CCValAssign::BCvt:
2989         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2990         break;
2991       case CCValAssign::SExt:
2992         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2993                                DAG.getValueType(VA.getValVT()));
2994         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2995         break;
2996       case CCValAssign::ZExt:
2997         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2998                                DAG.getValueType(VA.getValVT()));
2999         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
3000         break;
3001       }
3002
3003       InVals.push_back(ArgValue);
3004
3005     } else { // VA.isRegLoc()
3006
3007       // sanity check
3008       assert(VA.isMemLoc());
3009       assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered");
3010
3011       int index = ArgLocs[i].getValNo();
3012
3013       // Some Ins[] entries become multiple ArgLoc[] entries.
3014       // Process them only once.
3015       if (index != lastInsIndex)
3016         {
3017           ISD::ArgFlagsTy Flags = Ins[index].Flags;
3018           // FIXME: For now, all byval parameter objects are marked mutable.
3019           // This can be changed with more analysis.
3020           // In case of tail call optimization mark all arguments mutable.
3021           // Since they could be overwritten by lowering of arguments in case of
3022           // a tail call.
3023           if (Flags.isByVal()) {
3024             unsigned CurByValIndex = CCInfo.getInRegsParamsProceed();
3025
3026             ByValStoreOffset = RoundUpToAlignment(ByValStoreOffset, Flags.getByValAlign());
3027             int FrameIndex = StoreByValRegs(
3028                 CCInfo, DAG, dl, Chain, CurOrigArg,
3029                 CurByValIndex,
3030                 Ins[VA.getValNo()].PartOffset,
3031                 VA.getLocMemOffset(),
3032                 Flags.getByValSize(),
3033                 true /*force mutable frames*/,
3034                 ByValStoreOffset,
3035                 TotalArgRegsSaveSize);
3036             ByValStoreOffset += Flags.getByValSize();
3037             ByValStoreOffset = std::min(ByValStoreOffset, 16U);
3038             InVals.push_back(DAG.getFrameIndex(FrameIndex, getPointerTy()));
3039             CCInfo.nextInRegsParam();
3040           } else {
3041             unsigned FIOffset = VA.getLocMemOffset();
3042             int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8,
3043                                             FIOffset, true);
3044
3045             // Create load nodes to retrieve arguments from the stack.
3046             SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
3047             InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN,
3048                                          MachinePointerInfo::getFixedStack(FI),
3049                                          false, false, false, 0));
3050           }
3051           lastInsIndex = index;
3052         }
3053     }
3054   }
3055
3056   // varargs
3057   if (isVarArg)
3058     VarArgStyleRegisters(CCInfo, DAG, dl, Chain,
3059                          CCInfo.getNextStackOffset(),
3060                          TotalArgRegsSaveSize);
3061
3062   AFI->setArgumentStackSize(CCInfo.getNextStackOffset());
3063
3064   return Chain;
3065 }
3066
3067 /// isFloatingPointZero - Return true if this is +0.0.
3068 static bool isFloatingPointZero(SDValue Op) {
3069   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op))
3070     return CFP->getValueAPF().isPosZero();
3071   else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) {
3072     // Maybe this has already been legalized into the constant pool?
3073     if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) {
3074       SDValue WrapperOp = Op.getOperand(1).getOperand(0);
3075       if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp))
3076         if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
3077           return CFP->getValueAPF().isPosZero();
3078     }
3079   }
3080   return false;
3081 }
3082
3083 /// Returns appropriate ARM CMP (cmp) and corresponding condition code for
3084 /// the given operands.
3085 SDValue
3086 ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
3087                              SDValue &ARMcc, SelectionDAG &DAG,
3088                              SDLoc dl) const {
3089   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
3090     unsigned C = RHSC->getZExtValue();
3091     if (!isLegalICmpImmediate(C)) {
3092       // Constant does not fit, try adjusting it by one?
3093       switch (CC) {
3094       default: break;
3095       case ISD::SETLT:
3096       case ISD::SETGE:
3097         if (C != 0x80000000 && isLegalICmpImmediate(C-1)) {
3098           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
3099           RHS = DAG.getConstant(C-1, MVT::i32);
3100         }
3101         break;
3102       case ISD::SETULT:
3103       case ISD::SETUGE:
3104         if (C != 0 && isLegalICmpImmediate(C-1)) {
3105           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
3106           RHS = DAG.getConstant(C-1, MVT::i32);
3107         }
3108         break;
3109       case ISD::SETLE:
3110       case ISD::SETGT:
3111         if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) {
3112           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
3113           RHS = DAG.getConstant(C+1, MVT::i32);
3114         }
3115         break;
3116       case ISD::SETULE:
3117       case ISD::SETUGT:
3118         if (C != 0xffffffff && isLegalICmpImmediate(C+1)) {
3119           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
3120           RHS = DAG.getConstant(C+1, MVT::i32);
3121         }
3122         break;
3123       }
3124     }
3125   }
3126
3127   ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3128   ARMISD::NodeType CompareType;
3129   switch (CondCode) {
3130   default:
3131     CompareType = ARMISD::CMP;
3132     break;
3133   case ARMCC::EQ:
3134   case ARMCC::NE:
3135     // Uses only Z Flag
3136     CompareType = ARMISD::CMPZ;
3137     break;
3138   }
3139   ARMcc = DAG.getConstant(CondCode, MVT::i32);
3140   return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS);
3141 }
3142
3143 /// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands.
3144 SDValue
3145 ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG,
3146                              SDLoc dl) const {
3147   SDValue Cmp;
3148   if (!isFloatingPointZero(RHS))
3149     Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS);
3150   else
3151     Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS);
3152   return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp);
3153 }
3154
3155 /// duplicateCmp - Glue values can have only one use, so this function
3156 /// duplicates a comparison node.
3157 SDValue
3158 ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const {
3159   unsigned Opc = Cmp.getOpcode();
3160   SDLoc DL(Cmp);
3161   if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ)
3162     return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3163
3164   assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation");
3165   Cmp = Cmp.getOperand(0);
3166   Opc = Cmp.getOpcode();
3167   if (Opc == ARMISD::CMPFP)
3168     Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1));
3169   else {
3170     assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT");
3171     Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0));
3172   }
3173   return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp);
3174 }
3175
3176 SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
3177   SDValue Cond = Op.getOperand(0);
3178   SDValue SelectTrue = Op.getOperand(1);
3179   SDValue SelectFalse = Op.getOperand(2);
3180   SDLoc dl(Op);
3181
3182   // Convert:
3183   //
3184   //   (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond)
3185   //   (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond)
3186   //
3187   if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) {
3188     const ConstantSDNode *CMOVTrue =
3189       dyn_cast<ConstantSDNode>(Cond.getOperand(0));
3190     const ConstantSDNode *CMOVFalse =
3191       dyn_cast<ConstantSDNode>(Cond.getOperand(1));
3192
3193     if (CMOVTrue && CMOVFalse) {
3194       unsigned CMOVTrueVal = CMOVTrue->getZExtValue();
3195       unsigned CMOVFalseVal = CMOVFalse->getZExtValue();
3196
3197       SDValue True;
3198       SDValue False;
3199       if (CMOVTrueVal == 1 && CMOVFalseVal == 0) {
3200         True = SelectTrue;
3201         False = SelectFalse;
3202       } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) {
3203         True = SelectFalse;
3204         False = SelectTrue;
3205       }
3206
3207       if (True.getNode() && False.getNode()) {
3208         EVT VT = Op.getValueType();
3209         SDValue ARMcc = Cond.getOperand(2);
3210         SDValue CCR = Cond.getOperand(3);
3211         SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG);
3212         assert(True.getValueType() == VT);
3213         return DAG.getNode(ARMISD::CMOV, dl, VT, True, False, ARMcc, CCR, Cmp);
3214       }
3215     }
3216   }
3217
3218   // ARM's BooleanContents value is UndefinedBooleanContent. Mask out the
3219   // undefined bits before doing a full-word comparison with zero.
3220   Cond = DAG.getNode(ISD::AND, dl, Cond.getValueType(), Cond,
3221                      DAG.getConstant(1, Cond.getValueType()));
3222
3223   return DAG.getSelectCC(dl, Cond,
3224                          DAG.getConstant(0, Cond.getValueType()),
3225                          SelectTrue, SelectFalse, ISD::SETNE);
3226 }
3227
3228 static ISD::CondCode getInverseCCForVSEL(ISD::CondCode CC) {
3229   if (CC == ISD::SETNE)
3230     return ISD::SETEQ;
3231   return ISD::getSetCCInverse(CC, true);
3232 }
3233
3234 static void checkVSELConstraints(ISD::CondCode CC, ARMCC::CondCodes &CondCode,
3235                                  bool &swpCmpOps, bool &swpVselOps) {
3236   // Start by selecting the GE condition code for opcodes that return true for
3237   // 'equality'
3238   if (CC == ISD::SETUGE || CC == ISD::SETOGE || CC == ISD::SETOLE ||
3239       CC == ISD::SETULE)
3240     CondCode = ARMCC::GE;
3241
3242   // and GT for opcodes that return false for 'equality'.
3243   else if (CC == ISD::SETUGT || CC == ISD::SETOGT || CC == ISD::SETOLT ||
3244            CC == ISD::SETULT)
3245     CondCode = ARMCC::GT;
3246
3247   // Since we are constrained to GE/GT, if the opcode contains 'less', we need
3248   // to swap the compare operands.
3249   if (CC == ISD::SETOLE || CC == ISD::SETULE || CC == ISD::SETOLT ||
3250       CC == ISD::SETULT)
3251     swpCmpOps = true;
3252
3253   // Both GT and GE are ordered comparisons, and return false for 'unordered'.
3254   // If we have an unordered opcode, we need to swap the operands to the VSEL
3255   // instruction (effectively negating the condition).
3256   //
3257   // This also has the effect of swapping which one of 'less' or 'greater'
3258   // returns true, so we also swap the compare operands. It also switches
3259   // whether we return true for 'equality', so we compensate by picking the
3260   // opposite condition code to our original choice.
3261   if (CC == ISD::SETULE || CC == ISD::SETULT || CC == ISD::SETUGE ||
3262       CC == ISD::SETUGT) {
3263     swpCmpOps = !swpCmpOps;
3264     swpVselOps = !swpVselOps;
3265     CondCode = CondCode == ARMCC::GT ? ARMCC::GE : ARMCC::GT;
3266   }
3267
3268   // 'ordered' is 'anything but unordered', so use the VS condition code and
3269   // swap the VSEL operands.
3270   if (CC == ISD::SETO) {
3271     CondCode = ARMCC::VS;
3272     swpVselOps = true;
3273   }
3274
3275   // 'unordered or not equal' is 'anything but equal', so use the EQ condition
3276   // code and swap the VSEL operands.
3277   if (CC == ISD::SETUNE) {
3278     CondCode = ARMCC::EQ;
3279     swpVselOps = true;
3280   }
3281 }
3282
3283 SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const {
3284   EVT VT = Op.getValueType();
3285   SDValue LHS = Op.getOperand(0);
3286   SDValue RHS = Op.getOperand(1);
3287   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
3288   SDValue TrueVal = Op.getOperand(2);
3289   SDValue FalseVal = Op.getOperand(3);
3290   SDLoc dl(Op);
3291
3292   if (LHS.getValueType() == MVT::i32) {
3293     // Try to generate VSEL on ARMv8.
3294     // The VSEL instruction can't use all the usual ARM condition
3295     // codes: it only has two bits to select the condition code, so it's
3296     // constrained to use only GE, GT, VS and EQ.
3297     //
3298     // To implement all the various ISD::SETXXX opcodes, we sometimes need to
3299     // swap the operands of the previous compare instruction (effectively
3300     // inverting the compare condition, swapping 'less' and 'greater') and
3301     // sometimes need to swap the operands to the VSEL (which inverts the
3302     // condition in the sense of firing whenever the previous condition didn't)
3303     if (getSubtarget()->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3304                                       TrueVal.getValueType() == MVT::f64)) {
3305       ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3306       if (CondCode == ARMCC::LT || CondCode == ARMCC::LE ||
3307           CondCode == ARMCC::VC || CondCode == ARMCC::NE) {
3308         CC = getInverseCCForVSEL(CC);
3309         std::swap(TrueVal, FalseVal);
3310       }
3311     }
3312
3313     SDValue ARMcc;
3314     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3315     SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3316     return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,
3317                        Cmp);
3318   }
3319
3320   ARMCC::CondCodes CondCode, CondCode2;
3321   FPCCToARMCC(CC, CondCode, CondCode2);
3322
3323   // Try to generate VSEL on ARMv8.
3324   if (getSubtarget()->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 ||
3325                                     TrueVal.getValueType() == MVT::f64)) {
3326     // We can select VMAXNM/VMINNM from a compare followed by a select with the
3327     // same operands, as follows:
3328     //   c = fcmp [ogt, olt, ugt, ult] a, b
3329     //   select c, a, b
3330     // We only do this in unsafe-fp-math, because signed zeros and NaNs are
3331     // handled differently than the original code sequence.
3332     if (getTargetMachine().Options.UnsafeFPMath && LHS == TrueVal &&
3333         RHS == FalseVal) {
3334       if (CC == ISD::SETOGT || CC == ISD::SETUGT)
3335         return DAG.getNode(ARMISD::VMAXNM, dl, VT, TrueVal, FalseVal);
3336       if (CC == ISD::SETOLT || CC == ISD::SETULT)
3337         return DAG.getNode(ARMISD::VMINNM, dl, VT, TrueVal, FalseVal);
3338     }
3339
3340     bool swpCmpOps = false;
3341     bool swpVselOps = false;
3342     checkVSELConstraints(CC, CondCode, swpCmpOps, swpVselOps);
3343
3344     if (CondCode == ARMCC::GT || CondCode == ARMCC::GE ||
3345         CondCode == ARMCC::VS || CondCode == ARMCC::EQ) {
3346       if (swpCmpOps)
3347         std::swap(LHS, RHS);
3348       if (swpVselOps)
3349         std::swap(TrueVal, FalseVal);
3350     }
3351   }
3352
3353   SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
3354   SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
3355   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3356   SDValue Result = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal,
3357                                ARMcc, CCR, Cmp);
3358   if (CondCode2 != ARMCC::AL) {
3359     SDValue ARMcc2 = DAG.getConstant(CondCode2, MVT::i32);
3360     // FIXME: Needs another CMP because flag can have but one use.
3361     SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl);
3362     Result = DAG.getNode(ARMISD::CMOV, dl, VT,
3363                          Result, TrueVal, ARMcc2, CCR, Cmp2);
3364   }
3365   return Result;
3366 }
3367
3368 /// canChangeToInt - Given the fp compare operand, return true if it is suitable
3369 /// to morph to an integer compare sequence.
3370 static bool canChangeToInt(SDValue Op, bool &SeenZero,
3371                            const ARMSubtarget *Subtarget) {
3372   SDNode *N = Op.getNode();
3373   if (!N->hasOneUse())
3374     // Otherwise it requires moving the value from fp to integer registers.
3375     return false;
3376   if (!N->getNumValues())
3377     return false;
3378   EVT VT = Op.getValueType();
3379   if (VT != MVT::f32 && !Subtarget->isFPBrccSlow())
3380     // f32 case is generally profitable. f64 case only makes sense when vcmpe +
3381     // vmrs are very slow, e.g. cortex-a8.
3382     return false;
3383
3384   if (isFloatingPointZero(Op)) {
3385     SeenZero = true;
3386     return true;
3387   }
3388   return ISD::isNormalLoad(N);
3389 }
3390
3391 static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) {
3392   if (isFloatingPointZero(Op))
3393     return DAG.getConstant(0, MVT::i32);
3394
3395   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op))
3396     return DAG.getLoad(MVT::i32, SDLoc(Op),
3397                        Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(),
3398                        Ld->isVolatile(), Ld->isNonTemporal(),
3399                        Ld->isInvariant(), Ld->getAlignment());
3400
3401   llvm_unreachable("Unknown VFP cmp argument!");
3402 }
3403
3404 static void expandf64Toi32(SDValue Op, SelectionDAG &DAG,
3405                            SDValue &RetVal1, SDValue &RetVal2) {
3406   if (isFloatingPointZero(Op)) {
3407     RetVal1 = DAG.getConstant(0, MVT::i32);
3408     RetVal2 = DAG.getConstant(0, MVT::i32);
3409     return;
3410   }
3411
3412   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) {
3413     SDValue Ptr = Ld->getBasePtr();
3414     RetVal1 = DAG.getLoad(MVT::i32, SDLoc(Op),
3415                           Ld->getChain(), Ptr,
3416                           Ld->getPointerInfo(),
3417                           Ld->isVolatile(), Ld->isNonTemporal(),
3418                           Ld->isInvariant(), Ld->getAlignment());
3419
3420     EVT PtrType = Ptr.getValueType();
3421     unsigned NewAlign = MinAlign(Ld->getAlignment(), 4);
3422     SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(Op),
3423                                  PtrType, Ptr, DAG.getConstant(4, PtrType));
3424     RetVal2 = DAG.getLoad(MVT::i32, SDLoc(Op),
3425                           Ld->getChain(), NewPtr,
3426                           Ld->getPointerInfo().getWithOffset(4),
3427                           Ld->isVolatile(), Ld->isNonTemporal(),
3428                           Ld->isInvariant(), NewAlign);
3429     return;
3430   }
3431
3432   llvm_unreachable("Unknown VFP cmp argument!");
3433 }
3434
3435 /// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some
3436 /// f32 and even f64 comparisons to integer ones.
3437 SDValue
3438 ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
3439   SDValue Chain = Op.getOperand(0);
3440   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3441   SDValue LHS = Op.getOperand(2);
3442   SDValue RHS = Op.getOperand(3);
3443   SDValue Dest = Op.getOperand(4);
3444   SDLoc dl(Op);
3445
3446   bool LHSSeenZero = false;
3447   bool LHSOk = canChangeToInt(LHS, LHSSeenZero, Subtarget);
3448   bool RHSSeenZero = false;
3449   bool RHSOk = canChangeToInt(RHS, RHSSeenZero, Subtarget);
3450   if (LHSOk && RHSOk && (LHSSeenZero || RHSSeenZero)) {
3451     // If unsafe fp math optimization is enabled and there are no other uses of
3452     // the CMP operands, and the condition code is EQ or NE, we can optimize it
3453     // to an integer comparison.
3454     if (CC == ISD::SETOEQ)
3455       CC = ISD::SETEQ;
3456     else if (CC == ISD::SETUNE)
3457       CC = ISD::SETNE;
3458
3459     SDValue Mask = DAG.getConstant(0x7fffffff, MVT::i32);
3460     SDValue ARMcc;
3461     if (LHS.getValueType() == MVT::f32) {
3462       LHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3463                         bitcastf32Toi32(LHS, DAG), Mask);
3464       RHS = DAG.getNode(ISD::AND, dl, MVT::i32,
3465                         bitcastf32Toi32(RHS, DAG), Mask);
3466       SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3467       SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3468       return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3469                          Chain, Dest, ARMcc, CCR, Cmp);
3470     }
3471
3472     SDValue LHS1, LHS2;
3473     SDValue RHS1, RHS2;
3474     expandf64Toi32(LHS, DAG, LHS1, LHS2);
3475     expandf64Toi32(RHS, DAG, RHS1, RHS2);
3476     LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask);
3477     RHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, RHS2, Mask);
3478     ARMCC::CondCodes CondCode = IntCCToARMCC(CC);
3479     ARMcc = DAG.getConstant(CondCode, MVT::i32);
3480     SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3481     SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest };
3482     return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops);
3483   }
3484
3485   return SDValue();
3486 }
3487
3488 SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3489   SDValue Chain = Op.getOperand(0);
3490   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3491   SDValue LHS = Op.getOperand(2);
3492   SDValue RHS = Op.getOperand(3);
3493   SDValue Dest = Op.getOperand(4);
3494   SDLoc dl(Op);
3495
3496   if (LHS.getValueType() == MVT::i32) {
3497     SDValue ARMcc;
3498     SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl);
3499     SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3500     return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other,
3501                        Chain, Dest, ARMcc, CCR, Cmp);
3502   }
3503
3504   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3505
3506   if (getTargetMachine().Options.UnsafeFPMath &&
3507       (CC == ISD::SETEQ || CC == ISD::SETOEQ ||
3508        CC == ISD::SETNE || CC == ISD::SETUNE)) {
3509     SDValue Result = OptimizeVFPBrcond(Op, DAG);
3510     if (Result.getNode())
3511       return Result;
3512   }
3513
3514   ARMCC::CondCodes CondCode, CondCode2;
3515   FPCCToARMCC(CC, CondCode, CondCode2);
3516
3517   SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32);
3518   SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl);
3519   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3520   SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue);
3521   SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp };
3522   SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
3523   if (CondCode2 != ARMCC::AL) {
3524     ARMcc = DAG.getConstant(CondCode2, MVT::i32);
3525     SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) };
3526     Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops);
3527   }
3528   return Res;
3529 }
3530
3531 SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const {
3532   SDValue Chain = Op.getOperand(0);
3533   SDValue Table = Op.getOperand(1);
3534   SDValue Index = Op.getOperand(2);
3535   SDLoc dl(Op);
3536
3537   EVT PTy = getPointerTy();
3538   JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
3539   ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>();
3540   SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy);
3541   SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy);
3542   Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI, UId);
3543   Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, PTy));
3544   SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
3545   if (Subtarget->isThumb2()) {
3546     // Thumb2 uses a two-level jump. That is, it jumps into the jump table
3547     // which does another jump to the destination. This also makes it easier
3548     // to translate it to TBB / TBH later.
3549     // FIXME: This might not work if the function is extremely large.
3550     return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain,
3551                        Addr, Op.getOperand(2), JTI, UId);
3552   }
3553   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
3554     Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr,
3555                        MachinePointerInfo::getJumpTable(),
3556                        false, false, false, 0);
3557     Chain = Addr.getValue(1);
3558     Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table);
3559     return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
3560   } else {
3561     Addr = DAG.getLoad(PTy, dl, Chain, Addr,
3562                        MachinePointerInfo::getJumpTable(),
3563                        false, false, false, 0);
3564     Chain = Addr.getValue(1);
3565     return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId);
3566   }
3567 }
3568
3569 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
3570   EVT VT = Op.getValueType();
3571   SDLoc dl(Op);
3572
3573   if (Op.getValueType().getVectorElementType() == MVT::i32) {
3574     if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::f32)
3575       return Op;
3576     return DAG.UnrollVectorOp(Op.getNode());
3577   }
3578
3579   assert(Op.getOperand(0).getValueType() == MVT::v4f32 &&
3580          "Invalid type for custom lowering!");
3581   if (VT != MVT::v4i16)
3582     return DAG.UnrollVectorOp(Op.getNode());
3583
3584   Op = DAG.getNode(Op.getOpcode(), dl, MVT::v4i32, Op.getOperand(0));
3585   return DAG.getNode(ISD::TRUNCATE, dl, VT, Op);
3586 }
3587
3588 static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
3589   EVT VT = Op.getValueType();
3590   if (VT.isVector())
3591     return LowerVectorFP_TO_INT(Op, DAG);
3592
3593   SDLoc dl(Op);
3594   unsigned Opc;
3595
3596   switch (Op.getOpcode()) {
3597   default: llvm_unreachable("Invalid opcode!");
3598   case ISD::FP_TO_SINT:
3599     Opc = ARMISD::FTOSI;
3600     break;
3601   case ISD::FP_TO_UINT:
3602     Opc = ARMISD::FTOUI;
3603     break;
3604   }
3605   Op = DAG.getNode(Opc, dl, MVT::f32, Op.getOperand(0));
3606   return DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op);
3607 }
3608
3609 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3610   EVT VT = Op.getValueType();
3611   SDLoc dl(Op);
3612
3613   if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::i32) {
3614     if (VT.getVectorElementType() == MVT::f32)
3615       return Op;
3616     return DAG.UnrollVectorOp(Op.getNode());
3617   }
3618
3619   assert(Op.getOperand(0).getValueType() == MVT::v4i16 &&
3620          "Invalid type for custom lowering!");
3621   if (VT != MVT::v4f32)
3622     return DAG.UnrollVectorOp(Op.getNode());
3623
3624   unsigned CastOpc;
3625   unsigned Opc;
3626   switch (Op.getOpcode()) {
3627   default: llvm_unreachable("Invalid opcode!");
3628   case ISD::SINT_TO_FP:
3629     CastOpc = ISD::SIGN_EXTEND;
3630     Opc = ISD::SINT_TO_FP;
3631     break;
3632   case ISD::UINT_TO_FP:
3633     CastOpc = ISD::ZERO_EXTEND;
3634     Opc = ISD::UINT_TO_FP;
3635     break;
3636   }
3637
3638   Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0));
3639   return DAG.getNode(Opc, dl, VT, Op);
3640 }
3641
3642 static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
3643   EVT VT = Op.getValueType();
3644   if (VT.isVector())
3645     return LowerVectorINT_TO_FP(Op, DAG);
3646
3647   SDLoc dl(Op);
3648   unsigned Opc;
3649
3650   switch (Op.getOpcode()) {
3651   default: llvm_unreachable("Invalid opcode!");
3652   case ISD::SINT_TO_FP:
3653     Opc = ARMISD::SITOF;
3654     break;
3655   case ISD::UINT_TO_FP:
3656     Opc = ARMISD::UITOF;
3657     break;
3658   }
3659
3660   Op = DAG.getNode(ISD::BITCAST, dl, MVT::f32, Op.getOperand(0));
3661   return DAG.getNode(Opc, dl, VT, Op);
3662 }
3663
3664 SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
3665   // Implement fcopysign with a fabs and a conditional fneg.
3666   SDValue Tmp0 = Op.getOperand(0);
3667   SDValue Tmp1 = Op.getOperand(1);
3668   SDLoc dl(Op);
3669   EVT VT = Op.getValueType();
3670   EVT SrcVT = Tmp1.getValueType();
3671   bool InGPR = Tmp0.getOpcode() == ISD::BITCAST ||
3672     Tmp0.getOpcode() == ARMISD::VMOVDRR;
3673   bool UseNEON = !InGPR && Subtarget->hasNEON();
3674
3675   if (UseNEON) {
3676     // Use VBSL to copy the sign bit.
3677     unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80);
3678     SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32,
3679                                DAG.getTargetConstant(EncodedVal, MVT::i32));
3680     EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64;
3681     if (VT == MVT::f64)
3682       Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3683                          DAG.getNode(ISD::BITCAST, dl, OpVT, Mask),
3684                          DAG.getConstant(32, MVT::i32));
3685     else /*if (VT == MVT::f32)*/
3686       Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0);
3687     if (SrcVT == MVT::f32) {
3688       Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1);
3689       if (VT == MVT::f64)
3690         Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT,
3691                            DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1),
3692                            DAG.getConstant(32, MVT::i32));
3693     } else if (VT == MVT::f32)
3694       Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64,
3695                          DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1),
3696                          DAG.getConstant(32, MVT::i32));
3697     Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0);
3698     Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1);
3699
3700     SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff),
3701                                             MVT::i32);
3702     AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes);
3703     SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask,
3704                                   DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes));
3705
3706     SDValue Res = DAG.getNode(ISD::OR, dl, OpVT,
3707                               DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask),
3708                               DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot));
3709     if (VT == MVT::f32) {
3710       Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res);
3711       Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res,
3712                         DAG.getConstant(0, MVT::i32));
3713     } else {
3714       Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res);
3715     }
3716
3717     return Res;
3718   }
3719
3720   // Bitcast operand 1 to i32.
3721   if (SrcVT == MVT::f64)
3722     Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
3723                        Tmp1).getValue(1);
3724   Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1);
3725
3726   // Or in the signbit with integer operations.
3727   SDValue Mask1 = DAG.getConstant(0x80000000, MVT::i32);
3728   SDValue Mask2 = DAG.getConstant(0x7fffffff, MVT::i32);
3729   Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1);
3730   if (VT == MVT::f32) {
3731     Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32,
3732                        DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2);
3733     return DAG.getNode(ISD::BITCAST, dl, MVT::f32,
3734                        DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1));
3735   }
3736
3737   // f64: Or the high part with signbit and then combine two parts.
3738   Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32),
3739                      Tmp0);
3740   SDValue Lo = Tmp0.getValue(0);
3741   SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2);
3742   Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1);
3743   return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi);
3744 }
3745
3746 SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{
3747   MachineFunction &MF = DAG.getMachineFunction();
3748   MachineFrameInfo *MFI = MF.getFrameInfo();
3749   MFI->setReturnAddressIsTaken(true);
3750
3751   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
3752     return SDValue();
3753
3754   EVT VT = Op.getValueType();
3755   SDLoc dl(Op);
3756   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
3757   if (Depth) {
3758     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
3759     SDValue Offset = DAG.getConstant(4, MVT::i32);
3760     return DAG.getLoad(VT, dl, DAG.getEntryNode(),
3761                        DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset),
3762                        MachinePointerInfo(), false, false, false, 0);
3763   }
3764
3765   // Return LR, which contains the return address. Mark it an implicit live-in.
3766   unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32));
3767   return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT);
3768 }
3769
3770 SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
3771   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3772   MFI->setFrameAddressIsTaken(true);
3773
3774   EVT VT = Op.getValueType();
3775   SDLoc dl(Op);  // FIXME probably not meaningful
3776   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
3777   unsigned FrameReg = (Subtarget->isThumb() || Subtarget->isTargetMachO())
3778     ? ARM::R7 : ARM::R11;
3779   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
3780   while (Depth--)
3781     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
3782                             MachinePointerInfo(),
3783                             false, false, false, 0);
3784   return FrameAddr;
3785 }
3786
3787 // FIXME? Maybe this could be a TableGen attribute on some registers and
3788 // this table could be generated automatically from RegInfo.
3789 unsigned ARMTargetLowering::getRegisterByName(const char* RegName) const {
3790   unsigned Reg = StringSwitch<unsigned>(RegName)
3791                        .Case("sp", ARM::SP)
3792                        .Default(0);
3793   if (Reg)
3794     return Reg;
3795   report_fatal_error("Invalid register name global variable");
3796 }
3797
3798 /// ExpandBITCAST - If the target supports VFP, this function is called to
3799 /// expand a bit convert where either the source or destination type is i64 to
3800 /// use a VMOVDRR or VMOVRRD node.  This should not be done when the non-i64
3801 /// operand type is illegal (e.g., v2f32 for a target that doesn't support
3802 /// vectors), since the legalizer won't know what to do with that.
3803 static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) {
3804   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3805   SDLoc dl(N);
3806   SDValue Op = N->getOperand(0);
3807
3808   // This function is only supposed to be called for i64 types, either as the
3809   // source or destination of the bit convert.
3810   EVT SrcVT = Op.getValueType();
3811   EVT DstVT = N->getValueType(0);
3812   assert((SrcVT == MVT::i64 || DstVT == MVT::i64) &&
3813          "ExpandBITCAST called for non-i64 type");
3814
3815   // Turn i64->f64 into VMOVDRR.
3816   if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) {
3817     SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
3818                              DAG.getConstant(0, MVT::i32));
3819     SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op,
3820                              DAG.getConstant(1, MVT::i32));
3821     return DAG.getNode(ISD::BITCAST, dl, DstVT,
3822                        DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi));
3823   }
3824
3825   // Turn f64->i64 into VMOVRRD.
3826   if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) {
3827     SDValue Cvt = DAG.getNode(ARMISD::VMOVRRD, dl,
3828                               DAG.getVTList(MVT::i32, MVT::i32), Op);
3829     // Merge the pieces into a single i64 value.
3830     return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1));
3831   }
3832
3833   return SDValue();
3834 }
3835
3836 /// getZeroVector - Returns a vector of specified type with all zero elements.
3837 /// Zero vectors are used to represent vector negation and in those cases
3838 /// will be implemented with the NEON VNEG instruction.  However, VNEG does
3839 /// not support i64 elements, so sometimes the zero vectors will need to be
3840 /// explicitly constructed.  Regardless, use a canonical VMOV to create the
3841 /// zero vector.
3842 static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, SDLoc dl) {
3843   assert(VT.isVector() && "Expected a vector type");
3844   // The canonical modified immediate encoding of a zero vector is....0!
3845   SDValue EncodedVal = DAG.getTargetConstant(0, MVT::i32);
3846   EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
3847   SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal);
3848   return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
3849 }
3850
3851 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
3852 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
3853 SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op,
3854                                                 SelectionDAG &DAG) const {
3855   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
3856   EVT VT = Op.getValueType();
3857   unsigned VTBits = VT.getSizeInBits();
3858   SDLoc dl(Op);
3859   SDValue ShOpLo = Op.getOperand(0);
3860   SDValue ShOpHi = Op.getOperand(1);
3861   SDValue ShAmt  = Op.getOperand(2);
3862   SDValue ARMcc;
3863   unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
3864
3865   assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
3866
3867   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
3868                                  DAG.getConstant(VTBits, MVT::i32), ShAmt);
3869   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
3870   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
3871                                    DAG.getConstant(VTBits, MVT::i32));
3872   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
3873   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
3874   SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
3875
3876   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3877   SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
3878                           ARMcc, DAG, dl);
3879   SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
3880   SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc,
3881                            CCR, Cmp);
3882
3883   SDValue Ops[2] = { Lo, Hi };
3884   return DAG.getMergeValues(Ops, dl);
3885 }
3886
3887 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
3888 /// i32 values and take a 2 x i32 value to shift plus a shift amount.
3889 SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op,
3890                                                SelectionDAG &DAG) const {
3891   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
3892   EVT VT = Op.getValueType();
3893   unsigned VTBits = VT.getSizeInBits();
3894   SDLoc dl(Op);
3895   SDValue ShOpLo = Op.getOperand(0);
3896   SDValue ShOpHi = Op.getOperand(1);
3897   SDValue ShAmt  = Op.getOperand(2);
3898   SDValue ARMcc;
3899
3900   assert(Op.getOpcode() == ISD::SHL_PARTS);
3901   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
3902                                  DAG.getConstant(VTBits, MVT::i32), ShAmt);
3903   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
3904   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
3905                                    DAG.getConstant(VTBits, MVT::i32));
3906   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
3907   SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
3908
3909   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
3910   SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32);
3911   SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE,
3912                           ARMcc, DAG, dl);
3913   SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
3914   SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc,
3915                            CCR, Cmp);
3916
3917   SDValue Ops[2] = { Lo, Hi };
3918   return DAG.getMergeValues(Ops, dl);
3919 }
3920
3921 SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op,
3922                                             SelectionDAG &DAG) const {
3923   // The rounding mode is in bits 23:22 of the FPSCR.
3924   // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0
3925   // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3)
3926   // so that the shift + and get folded into a bitfield extract.
3927   SDLoc dl(Op);
3928   SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32,
3929                               DAG.getConstant(Intrinsic::arm_get_fpscr,
3930                                               MVT::i32));
3931   SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR,
3932                                   DAG.getConstant(1U << 22, MVT::i32));
3933   SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds,
3934                               DAG.getConstant(22, MVT::i32));
3935   return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE,
3936                      DAG.getConstant(3, MVT::i32));
3937 }
3938
3939 static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG,
3940                          const ARMSubtarget *ST) {
3941   EVT VT = N->getValueType(0);
3942   SDLoc dl(N);
3943
3944   if (!ST->hasV6T2Ops())
3945     return SDValue();
3946
3947   SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0));
3948   return DAG.getNode(ISD::CTLZ, dl, VT, rbit);
3949 }
3950
3951 /// getCTPOP16BitCounts - Returns a v8i8/v16i8 vector containing the bit-count
3952 /// for each 16-bit element from operand, repeated.  The basic idea is to
3953 /// leverage vcnt to get the 8-bit counts, gather and add the results.
3954 ///
3955 /// Trace for v4i16:
3956 /// input    = [v0    v1    v2    v3   ] (vi 16-bit element)
3957 /// cast: N0 = [w0 w1 w2 w3 w4 w5 w6 w7] (v0 = [w0 w1], wi 8-bit element)
3958 /// vcnt: N1 = [b0 b1 b2 b3 b4 b5 b6 b7] (bi = bit-count of 8-bit element wi)
3959 /// vrev: N2 = [b1 b0 b3 b2 b5 b4 b7 b6]
3960 ///            [b0 b1 b2 b3 b4 b5 b6 b7]
3961 ///           +[b1 b0 b3 b2 b5 b4 b7 b6]
3962 /// N3=N1+N2 = [k0 k0 k1 k1 k2 k2 k3 k3] (k0 = b0+b1 = bit-count of 16-bit v0,
3963 /// vuzp:    = [k0 k1 k2 k3 k0 k1 k2 k3]  each ki is 8-bits)
3964 static SDValue getCTPOP16BitCounts(SDNode *N, SelectionDAG &DAG) {
3965   EVT VT = N->getValueType(0);
3966   SDLoc DL(N);
3967
3968   EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8;
3969   SDValue N0 = DAG.getNode(ISD::BITCAST, DL, VT8Bit, N->getOperand(0));
3970   SDValue N1 = DAG.getNode(ISD::CTPOP, DL, VT8Bit, N0);
3971   SDValue N2 = DAG.getNode(ARMISD::VREV16, DL, VT8Bit, N1);
3972   SDValue N3 = DAG.getNode(ISD::ADD, DL, VT8Bit, N1, N2);
3973   return DAG.getNode(ARMISD::VUZP, DL, VT8Bit, N3, N3);
3974 }
3975
3976 /// lowerCTPOP16BitElements - Returns a v4i16/v8i16 vector containing the
3977 /// bit-count for each 16-bit element from the operand.  We need slightly
3978 /// different sequencing for v4i16 and v8i16 to stay within NEON's available
3979 /// 64/128-bit registers.
3980 ///
3981 /// Trace for v4i16:
3982 /// input           = [v0    v1    v2    v3    ] (vi 16-bit element)
3983 /// v8i8: BitCounts = [k0 k1 k2 k3 k0 k1 k2 k3 ] (ki is the bit-count of vi)
3984 /// v8i16:Extended  = [k0    k1    k2    k3    k0    k1    k2    k3    ]
3985 /// v4i16:Extracted = [k0    k1    k2    k3    ]
3986 static SDValue lowerCTPOP16BitElements(SDNode *N, SelectionDAG &DAG) {
3987   EVT VT = N->getValueType(0);
3988   SDLoc DL(N);
3989
3990   SDValue BitCounts = getCTPOP16BitCounts(N, DAG);
3991   if (VT.is64BitVector()) {
3992     SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, BitCounts);
3993     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, Extended,
3994                        DAG.getIntPtrConstant(0));
3995   } else {
3996     SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v8i8,
3997                                     BitCounts, DAG.getIntPtrConstant(0));
3998     return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, Extracted);
3999   }
4000 }
4001
4002 /// lowerCTPOP32BitElements - Returns a v2i32/v4i32 vector containing the
4003 /// bit-count for each 32-bit element from the operand.  The idea here is
4004 /// to split the vector into 16-bit elements, leverage the 16-bit count
4005 /// routine, and then combine the results.
4006 ///
4007 /// Trace for v2i32 (v4i32 similar with Extracted/Extended exchanged):
4008 /// input    = [v0    v1    ] (vi: 32-bit elements)
4009 /// Bitcast  = [w0 w1 w2 w3 ] (wi: 16-bit elements, v0 = [w0 w1])
4010 /// Counts16 = [k0 k1 k2 k3 ] (ki: 16-bit elements, bit-count of wi)
4011 /// vrev: N0 = [k1 k0 k3 k2 ]
4012 ///            [k0 k1 k2 k3 ]
4013 ///       N1 =+[k1 k0 k3 k2 ]
4014 ///            [k0 k2 k1 k3 ]
4015 ///       N2 =+[k1 k3 k0 k2 ]
4016 ///            [k0    k2    k1    k3    ]
4017 /// Extended =+[k1    k3    k0    k2    ]
4018 ///            [k0    k2    ]
4019 /// Extracted=+[k1    k3    ]
4020 ///
4021 static SDValue lowerCTPOP32BitElements(SDNode *N, SelectionDAG &DAG) {
4022   EVT VT = N->getValueType(0);
4023   SDLoc DL(N);
4024
4025   EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16;
4026
4027   SDValue Bitcast = DAG.getNode(ISD::BITCAST, DL, VT16Bit, N->getOperand(0));
4028   SDValue Counts16 = lowerCTPOP16BitElements(Bitcast.getNode(), DAG);
4029   SDValue N0 = DAG.getNode(ARMISD::VREV32, DL, VT16Bit, Counts16);
4030   SDValue N1 = DAG.getNode(ISD::ADD, DL, VT16Bit, Counts16, N0);
4031   SDValue N2 = DAG.getNode(ARMISD::VUZP, DL, VT16Bit, N1, N1);
4032
4033   if (VT.is64BitVector()) {
4034     SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, N2);
4035     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i32, Extended,
4036                        DAG.getIntPtrConstant(0));
4037   } else {
4038     SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, N2,
4039                                     DAG.getIntPtrConstant(0));
4040     return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, Extracted);
4041   }
4042 }
4043
4044 static SDValue LowerCTPOP(SDNode *N, SelectionDAG &DAG,
4045                           const ARMSubtarget *ST) {
4046   EVT VT = N->getValueType(0);
4047
4048   assert(ST->hasNEON() && "Custom ctpop lowering requires NEON.");
4049   assert((VT == MVT::v2i32 || VT == MVT::v4i32 ||
4050           VT == MVT::v4i16 || VT == MVT::v8i16) &&
4051          "Unexpected type for custom ctpop lowering");
4052
4053   if (VT.getVectorElementType() == MVT::i32)
4054     return lowerCTPOP32BitElements(N, DAG);
4055   else
4056     return lowerCTPOP16BitElements(N, DAG);
4057 }
4058
4059 static SDValue LowerShift(SDNode *N, SelectionDAG &DAG,
4060                           const ARMSubtarget *ST) {
4061   EVT VT = N->getValueType(0);
4062   SDLoc dl(N);
4063
4064   if (!VT.isVector())
4065     return SDValue();
4066
4067   // Lower vector shifts on NEON to use VSHL.
4068   assert(ST->hasNEON() && "unexpected vector shift");
4069
4070   // Left shifts translate directly to the vshiftu intrinsic.
4071   if (N->getOpcode() == ISD::SHL)
4072     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4073                        DAG.getConstant(Intrinsic::arm_neon_vshiftu, MVT::i32),
4074                        N->getOperand(0), N->getOperand(1));
4075
4076   assert((N->getOpcode() == ISD::SRA ||
4077           N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode");
4078
4079   // NEON uses the same intrinsics for both left and right shifts.  For
4080   // right shifts, the shift amounts are negative, so negate the vector of
4081   // shift amounts.
4082   EVT ShiftVT = N->getOperand(1).getValueType();
4083   SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT,
4084                                      getZeroVector(ShiftVT, DAG, dl),
4085                                      N->getOperand(1));
4086   Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ?
4087                              Intrinsic::arm_neon_vshifts :
4088                              Intrinsic::arm_neon_vshiftu);
4089   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
4090                      DAG.getConstant(vshiftInt, MVT::i32),
4091                      N->getOperand(0), NegatedCount);
4092 }
4093
4094 static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG,
4095                                 const ARMSubtarget *ST) {
4096   EVT VT = N->getValueType(0);
4097   SDLoc dl(N);
4098
4099   // We can get here for a node like i32 = ISD::SHL i32, i64
4100   if (VT != MVT::i64)
4101     return SDValue();
4102
4103   assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) &&
4104          "Unknown shift to lower!");
4105
4106   // We only lower SRA, SRL of 1 here, all others use generic lowering.
4107   if (!isa<ConstantSDNode>(N->getOperand(1)) ||
4108       cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1)
4109     return SDValue();
4110
4111   // If we are in thumb mode, we don't have RRX.
4112   if (ST->isThumb1Only()) return SDValue();
4113
4114   // Okay, we have a 64-bit SRA or SRL of 1.  Lower this to an RRX expr.
4115   SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
4116                            DAG.getConstant(0, MVT::i32));
4117   SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0),
4118                            DAG.getConstant(1, MVT::i32));
4119
4120   // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and
4121   // captures the result into a carry flag.
4122   unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG;
4123   Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), Hi);
4124
4125   // The low part is an ARMISD::RRX operand, which shifts the carry in.
4126   Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1));
4127
4128   // Merge the pieces into a single i64 value.
4129  return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi);
4130 }
4131
4132 static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
4133   SDValue TmpOp0, TmpOp1;
4134   bool Invert = false;
4135   bool Swap = false;
4136   unsigned Opc = 0;
4137
4138   SDValue Op0 = Op.getOperand(0);
4139   SDValue Op1 = Op.getOperand(1);
4140   SDValue CC = Op.getOperand(2);
4141   EVT VT = Op.getValueType();
4142   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
4143   SDLoc dl(Op);
4144
4145   if (Op.getOperand(1).getValueType().isFloatingPoint()) {
4146     switch (SetCCOpcode) {
4147     default: llvm_unreachable("Illegal FP comparison");
4148     case ISD::SETUNE:
4149     case ISD::SETNE:  Invert = true; // Fallthrough
4150     case ISD::SETOEQ:
4151     case ISD::SETEQ:  Opc = ARMISD::VCEQ; break;
4152     case ISD::SETOLT:
4153     case ISD::SETLT: Swap = true; // Fallthrough
4154     case ISD::SETOGT:
4155     case ISD::SETGT:  Opc = ARMISD::VCGT; break;
4156     case ISD::SETOLE:
4157     case ISD::SETLE:  Swap = true; // Fallthrough
4158     case ISD::SETOGE:
4159     case ISD::SETGE: Opc = ARMISD::VCGE; break;
4160     case ISD::SETUGE: Swap = true; // Fallthrough
4161     case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
4162     case ISD::SETUGT: Swap = true; // Fallthrough
4163     case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
4164     case ISD::SETUEQ: Invert = true; // Fallthrough
4165     case ISD::SETONE:
4166       // Expand this to (OLT | OGT).
4167       TmpOp0 = Op0;
4168       TmpOp1 = Op1;
4169       Opc = ISD::OR;
4170       Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
4171       Op1 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp0, TmpOp1);
4172       break;
4173     case ISD::SETUO: Invert = true; // Fallthrough
4174     case ISD::SETO:
4175       // Expand this to (OLT | OGE).
4176       TmpOp0 = Op0;
4177       TmpOp1 = Op1;
4178       Opc = ISD::OR;
4179       Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0);
4180       Op1 = DAG.getNode(ARMISD::VCGE, dl, VT, TmpOp0, TmpOp1);
4181       break;
4182     }
4183   } else {
4184     // Integer comparisons.
4185     switch (SetCCOpcode) {
4186     default: llvm_unreachable("Illegal integer comparison");
4187     case ISD::SETNE:  Invert = true;
4188     case ISD::SETEQ:  Opc = ARMISD::VCEQ; break;
4189     case ISD::SETLT:  Swap = true;
4190     case ISD::SETGT:  Opc = ARMISD::VCGT; break;
4191     case ISD::SETLE:  Swap = true;
4192     case ISD::SETGE:  Opc = ARMISD::VCGE; break;
4193     case ISD::SETULT: Swap = true;
4194     case ISD::SETUGT: Opc = ARMISD::VCGTU; break;
4195     case ISD::SETULE: Swap = true;
4196     case ISD::SETUGE: Opc = ARMISD::VCGEU; break;
4197     }
4198
4199     // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero).
4200     if (Opc == ARMISD::VCEQ) {
4201
4202       SDValue AndOp;
4203       if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4204         AndOp = Op0;
4205       else if (ISD::isBuildVectorAllZeros(Op0.getNode()))
4206         AndOp = Op1;
4207
4208       // Ignore bitconvert.
4209       if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST)
4210         AndOp = AndOp.getOperand(0);
4211
4212       if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) {
4213         Opc = ARMISD::VTST;
4214         Op0 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(0));
4215         Op1 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(1));
4216         Invert = !Invert;
4217       }
4218     }
4219   }
4220
4221   if (Swap)
4222     std::swap(Op0, Op1);
4223
4224   // If one of the operands is a constant vector zero, attempt to fold the
4225   // comparison to a specialized compare-against-zero form.
4226   SDValue SingleOp;
4227   if (ISD::isBuildVectorAllZeros(Op1.getNode()))
4228     SingleOp = Op0;
4229   else if (ISD::isBuildVectorAllZeros(Op0.getNode())) {
4230     if (Opc == ARMISD::VCGE)
4231       Opc = ARMISD::VCLEZ;
4232     else if (Opc == ARMISD::VCGT)
4233       Opc = ARMISD::VCLTZ;
4234     SingleOp = Op1;
4235   }
4236
4237   SDValue Result;
4238   if (SingleOp.getNode()) {
4239     switch (Opc) {
4240     case ARMISD::VCEQ:
4241       Result = DAG.getNode(ARMISD::VCEQZ, dl, VT, SingleOp); break;
4242     case ARMISD::VCGE:
4243       Result = DAG.getNode(ARMISD::VCGEZ, dl, VT, SingleOp); break;
4244     case ARMISD::VCLEZ:
4245       Result = DAG.getNode(ARMISD::VCLEZ, dl, VT, SingleOp); break;
4246     case ARMISD::VCGT:
4247       Result = DAG.getNode(ARMISD::VCGTZ, dl, VT, SingleOp); break;
4248     case ARMISD::VCLTZ:
4249       Result = DAG.getNode(ARMISD::VCLTZ, dl, VT, SingleOp); break;
4250     default:
4251       Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
4252     }
4253   } else {
4254      Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
4255   }
4256
4257   if (Invert)
4258     Result = DAG.getNOT(dl, Result, VT);
4259
4260   return Result;
4261 }
4262
4263 /// isNEONModifiedImm - Check if the specified splat value corresponds to a
4264 /// valid vector constant for a NEON instruction with a "modified immediate"
4265 /// operand (e.g., VMOV).  If so, return the encoded value.
4266 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
4267                                  unsigned SplatBitSize, SelectionDAG &DAG,
4268                                  EVT &VT, bool is128Bits, NEONModImmType type) {
4269   unsigned OpCmode, Imm;
4270
4271   // SplatBitSize is set to the smallest size that splats the vector, so a
4272   // zero vector will always have SplatBitSize == 8.  However, NEON modified
4273   // immediate instructions others than VMOV do not support the 8-bit encoding
4274   // of a zero vector, and the default encoding of zero is supposed to be the
4275   // 32-bit version.
4276   if (SplatBits == 0)
4277     SplatBitSize = 32;
4278
4279   switch (SplatBitSize) {
4280   case 8:
4281     if (type != VMOVModImm)
4282       return SDValue();
4283     // Any 1-byte value is OK.  Op=0, Cmode=1110.
4284     assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big");
4285     OpCmode = 0xe;
4286     Imm = SplatBits;
4287     VT = is128Bits ? MVT::v16i8 : MVT::v8i8;
4288     break;
4289
4290   case 16:
4291     // NEON's 16-bit VMOV supports splat values where only one byte is nonzero.
4292     VT = is128Bits ? MVT::v8i16 : MVT::v4i16;
4293     if ((SplatBits & ~0xff) == 0) {
4294       // Value = 0x00nn: Op=x, Cmode=100x.
4295       OpCmode = 0x8;
4296       Imm = SplatBits;
4297       break;
4298     }
4299     if ((SplatBits & ~0xff00) == 0) {
4300       // Value = 0xnn00: Op=x, Cmode=101x.
4301       OpCmode = 0xa;
4302       Imm = SplatBits >> 8;
4303       break;
4304     }
4305     return SDValue();
4306
4307   case 32:
4308     // NEON's 32-bit VMOV supports splat values where:
4309     // * only one byte is nonzero, or
4310     // * the least significant byte is 0xff and the second byte is nonzero, or
4311     // * the least significant 2 bytes are 0xff and the third is nonzero.
4312     VT = is128Bits ? MVT::v4i32 : MVT::v2i32;
4313     if ((SplatBits & ~0xff) == 0) {
4314       // Value = 0x000000nn: Op=x, Cmode=000x.
4315       OpCmode = 0;
4316       Imm = SplatBits;
4317       break;
4318     }
4319     if ((SplatBits & ~0xff00) == 0) {
4320       // Value = 0x0000nn00: Op=x, Cmode=001x.
4321       OpCmode = 0x2;
4322       Imm = SplatBits >> 8;
4323       break;
4324     }
4325     if ((SplatBits & ~0xff0000) == 0) {
4326       // Value = 0x00nn0000: Op=x, Cmode=010x.
4327       OpCmode = 0x4;
4328       Imm = SplatBits >> 16;
4329       break;
4330     }
4331     if ((SplatBits & ~0xff000000) == 0) {
4332       // Value = 0xnn000000: Op=x, Cmode=011x.
4333       OpCmode = 0x6;
4334       Imm = SplatBits >> 24;
4335       break;
4336     }
4337
4338     // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC
4339     if (type == OtherModImm) return SDValue();
4340
4341     if ((SplatBits & ~0xffff) == 0 &&
4342         ((SplatBits | SplatUndef) & 0xff) == 0xff) {
4343       // Value = 0x0000nnff: Op=x, Cmode=1100.
4344       OpCmode = 0xc;
4345       Imm = SplatBits >> 8;
4346       break;
4347     }
4348
4349     if ((SplatBits & ~0xffffff) == 0 &&
4350         ((SplatBits | SplatUndef) & 0xffff) == 0xffff) {
4351       // Value = 0x00nnffff: Op=x, Cmode=1101.
4352       OpCmode = 0xd;
4353       Imm = SplatBits >> 16;
4354       break;
4355     }
4356
4357     // Note: there are a few 32-bit splat values (specifically: 00ffff00,
4358     // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not
4359     // VMOV.I32.  A (very) minor optimization would be to replicate the value
4360     // and fall through here to test for a valid 64-bit splat.  But, then the
4361     // caller would also need to check and handle the change in size.
4362     return SDValue();
4363
4364   case 64: {
4365     if (type != VMOVModImm)
4366       return SDValue();
4367     // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff.
4368     uint64_t BitMask = 0xff;
4369     uint64_t Val = 0;
4370     unsigned ImmMask = 1;
4371     Imm = 0;
4372     for (int ByteNum = 0; ByteNum < 8; ++ByteNum) {
4373       if (((SplatBits | SplatUndef) & BitMask) == BitMask) {
4374         Val |= BitMask;
4375         Imm |= ImmMask;
4376       } else if ((SplatBits & BitMask) != 0) {
4377         return SDValue();
4378       }
4379       BitMask <<= 8;
4380       ImmMask <<= 1;
4381     }
4382     // Op=1, Cmode=1110.
4383     OpCmode = 0x1e;
4384     VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
4385     break;
4386   }
4387
4388   default:
4389     llvm_unreachable("unexpected size for isNEONModifiedImm");
4390   }
4391
4392   unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm);
4393   return DAG.getTargetConstant(EncodedVal, MVT::i32);
4394 }
4395
4396 SDValue ARMTargetLowering::LowerConstantFP(SDValue Op, SelectionDAG &DAG,
4397                                            const ARMSubtarget *ST) const {
4398   if (!ST->hasVFP3())
4399     return SDValue();
4400
4401   bool IsDouble = Op.getValueType() == MVT::f64;
4402   ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Op);
4403
4404   // Try splatting with a VMOV.f32...
4405   APFloat FPVal = CFP->getValueAPF();
4406   int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal);
4407
4408   if (ImmVal != -1) {
4409     if (IsDouble || !ST->useNEONForSinglePrecisionFP()) {
4410       // We have code in place to select a valid ConstantFP already, no need to
4411       // do any mangling.
4412       return Op;
4413     }
4414
4415     // It's a float and we are trying to use NEON operations where
4416     // possible. Lower it to a splat followed by an extract.
4417     SDLoc DL(Op);
4418     SDValue NewVal = DAG.getTargetConstant(ImmVal, MVT::i32);
4419     SDValue VecConstant = DAG.getNode(ARMISD::VMOVFPIMM, DL, MVT::v2f32,
4420                                       NewVal);
4421     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecConstant,
4422                        DAG.getConstant(0, MVT::i32));
4423   }
4424
4425   // The rest of our options are NEON only, make sure that's allowed before
4426   // proceeding..
4427   if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP()))
4428     return SDValue();
4429
4430   EVT VMovVT;
4431   uint64_t iVal = FPVal.bitcastToAPInt().getZExtValue();
4432
4433   // It wouldn't really be worth bothering for doubles except for one very
4434   // important value, which does happen to match: 0.0. So make sure we don't do
4435   // anything stupid.
4436   if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32))
4437     return SDValue();
4438
4439   // Try a VMOV.i32 (FIXME: i8, i16, or i64 could work too).
4440   SDValue NewVal = isNEONModifiedImm(iVal & 0xffffffffU, 0, 32, DAG, VMovVT,
4441                                      false, VMOVModImm);
4442   if (NewVal != SDValue()) {
4443     SDLoc DL(Op);
4444     SDValue VecConstant = DAG.getNode(ARMISD::VMOVIMM, DL, VMovVT,
4445                                       NewVal);
4446     if (IsDouble)
4447       return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4448
4449     // It's a float: cast and extract a vector element.
4450     SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4451                                        VecConstant);
4452     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4453                        DAG.getConstant(0, MVT::i32));
4454   }
4455
4456   // Finally, try a VMVN.i32
4457   NewVal = isNEONModifiedImm(~iVal & 0xffffffffU, 0, 32, DAG, VMovVT,
4458                              false, VMVNModImm);
4459   if (NewVal != SDValue()) {
4460     SDLoc DL(Op);
4461     SDValue VecConstant = DAG.getNode(ARMISD::VMVNIMM, DL, VMovVT, NewVal);
4462
4463     if (IsDouble)
4464       return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant);
4465
4466     // It's a float: cast and extract a vector element.
4467     SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32,
4468                                        VecConstant);
4469     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant,
4470                        DAG.getConstant(0, MVT::i32));
4471   }
4472
4473   return SDValue();
4474 }
4475
4476 // check if an VEXT instruction can handle the shuffle mask when the
4477 // vector sources of the shuffle are the same.
4478 static bool isSingletonVEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
4479   unsigned NumElts = VT.getVectorNumElements();
4480
4481   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
4482   if (M[0] < 0)
4483     return false;
4484
4485   Imm = M[0];
4486
4487   // If this is a VEXT shuffle, the immediate value is the index of the first
4488   // element.  The other shuffle indices must be the successive elements after
4489   // the first one.
4490   unsigned ExpectedElt = Imm;
4491   for (unsigned i = 1; i < NumElts; ++i) {
4492     // Increment the expected index.  If it wraps around, just follow it
4493     // back to index zero and keep going.
4494     ++ExpectedElt;
4495     if (ExpectedElt == NumElts)
4496       ExpectedElt = 0;
4497
4498     if (M[i] < 0) continue; // ignore UNDEF indices
4499     if (ExpectedElt != static_cast<unsigned>(M[i]))
4500       return false;
4501   }
4502
4503   return true;
4504 }
4505
4506
4507 static bool isVEXTMask(ArrayRef<int> M, EVT VT,
4508                        bool &ReverseVEXT, unsigned &Imm) {
4509   unsigned NumElts = VT.getVectorNumElements();
4510   ReverseVEXT = false;
4511
4512   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
4513   if (M[0] < 0)
4514     return false;
4515
4516   Imm = M[0];
4517
4518   // If this is a VEXT shuffle, the immediate value is the index of the first
4519   // element.  The other shuffle indices must be the successive elements after
4520   // the first one.
4521   unsigned ExpectedElt = Imm;
4522   for (unsigned i = 1; i < NumElts; ++i) {
4523     // Increment the expected index.  If it wraps around, it may still be
4524     // a VEXT but the source vectors must be swapped.
4525     ExpectedElt += 1;
4526     if (ExpectedElt == NumElts * 2) {
4527       ExpectedElt = 0;
4528       ReverseVEXT = true;
4529     }
4530
4531     if (M[i] < 0) continue; // ignore UNDEF indices
4532     if (ExpectedElt != static_cast<unsigned>(M[i]))
4533       return false;
4534   }
4535
4536   // Adjust the index value if the source operands will be swapped.
4537   if (ReverseVEXT)
4538     Imm -= NumElts;
4539
4540   return true;
4541 }
4542
4543 /// isVREVMask - Check if a vector shuffle corresponds to a VREV
4544 /// instruction with the specified blocksize.  (The order of the elements
4545 /// within each block of the vector is reversed.)
4546 static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
4547   assert((BlockSize==16 || BlockSize==32 || BlockSize==64) &&
4548          "Only possible block sizes for VREV are: 16, 32, 64");
4549
4550   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4551   if (EltSz == 64)
4552     return false;
4553
4554   unsigned NumElts = VT.getVectorNumElements();
4555   unsigned BlockElts = M[0] + 1;
4556   // If the first shuffle index is UNDEF, be optimistic.
4557   if (M[0] < 0)
4558     BlockElts = BlockSize / EltSz;
4559
4560   if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
4561     return false;
4562
4563   for (unsigned i = 0; i < NumElts; ++i) {
4564     if (M[i] < 0) continue; // ignore UNDEF indices
4565     if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts))
4566       return false;
4567   }
4568
4569   return true;
4570 }
4571
4572 static bool isVTBLMask(ArrayRef<int> M, EVT VT) {
4573   // We can handle <8 x i8> vector shuffles. If the index in the mask is out of
4574   // range, then 0 is placed into the resulting vector. So pretty much any mask
4575   // of 8 elements can work here.
4576   return VT == MVT::v8i8 && M.size() == 8;
4577 }
4578
4579 static bool isVTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4580   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4581   if (EltSz == 64)
4582     return false;
4583
4584   unsigned NumElts = VT.getVectorNumElements();
4585   WhichResult = (M[0] == 0 ? 0 : 1);
4586   for (unsigned i = 0; i < NumElts; i += 2) {
4587     if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
4588         (M[i+1] >= 0 && (unsigned) M[i+1] != i + NumElts + WhichResult))
4589       return false;
4590   }
4591   return true;
4592 }
4593
4594 /// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of
4595 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4596 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
4597 static bool isVTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
4598   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4599   if (EltSz == 64)
4600     return false;
4601
4602   unsigned NumElts = VT.getVectorNumElements();
4603   WhichResult = (M[0] == 0 ? 0 : 1);
4604   for (unsigned i = 0; i < NumElts; i += 2) {
4605     if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) ||
4606         (M[i+1] >= 0 && (unsigned) M[i+1] != i + WhichResult))
4607       return false;
4608   }
4609   return true;
4610 }
4611
4612 static bool isVUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4613   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4614   if (EltSz == 64)
4615     return false;
4616
4617   unsigned NumElts = VT.getVectorNumElements();
4618   WhichResult = (M[0] == 0 ? 0 : 1);
4619   for (unsigned i = 0; i != NumElts; ++i) {
4620     if (M[i] < 0) continue; // ignore UNDEF indices
4621     if ((unsigned) M[i] != 2 * i + WhichResult)
4622       return false;
4623   }
4624
4625   // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4626   if (VT.is64BitVector() && EltSz == 32)
4627     return false;
4628
4629   return true;
4630 }
4631
4632 /// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of
4633 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4634 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
4635 static bool isVUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
4636   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4637   if (EltSz == 64)
4638     return false;
4639
4640   unsigned Half = VT.getVectorNumElements() / 2;
4641   WhichResult = (M[0] == 0 ? 0 : 1);
4642   for (unsigned j = 0; j != 2; ++j) {
4643     unsigned Idx = WhichResult;
4644     for (unsigned i = 0; i != Half; ++i) {
4645       int MIdx = M[i + j * Half];
4646       if (MIdx >= 0 && (unsigned) MIdx != Idx)
4647         return false;
4648       Idx += 2;
4649     }
4650   }
4651
4652   // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4653   if (VT.is64BitVector() && EltSz == 32)
4654     return false;
4655
4656   return true;
4657 }
4658
4659 static bool isVZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4660   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4661   if (EltSz == 64)
4662     return false;
4663
4664   unsigned NumElts = VT.getVectorNumElements();
4665   WhichResult = (M[0] == 0 ? 0 : 1);
4666   unsigned Idx = WhichResult * NumElts / 2;
4667   for (unsigned i = 0; i != NumElts; i += 2) {
4668     if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
4669         (M[i+1] >= 0 && (unsigned) M[i+1] != Idx + NumElts))
4670       return false;
4671     Idx += 1;
4672   }
4673
4674   // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4675   if (VT.is64BitVector() && EltSz == 32)
4676     return false;
4677
4678   return true;
4679 }
4680
4681 /// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of
4682 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4683 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
4684 static bool isVZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){
4685   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4686   if (EltSz == 64)
4687     return false;
4688
4689   unsigned NumElts = VT.getVectorNumElements();
4690   WhichResult = (M[0] == 0 ? 0 : 1);
4691   unsigned Idx = WhichResult * NumElts / 2;
4692   for (unsigned i = 0; i != NumElts; i += 2) {
4693     if ((M[i] >= 0 && (unsigned) M[i] != Idx) ||
4694         (M[i+1] >= 0 && (unsigned) M[i+1] != Idx))
4695       return false;
4696     Idx += 1;
4697   }
4698
4699   // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32.
4700   if (VT.is64BitVector() && EltSz == 32)
4701     return false;
4702
4703   return true;
4704 }
4705
4706 /// \return true if this is a reverse operation on an vector.
4707 static bool isReverseMask(ArrayRef<int> M, EVT VT) {
4708   unsigned NumElts = VT.getVectorNumElements();
4709   // Make sure the mask has the right size.
4710   if (NumElts != M.size())
4711       return false;
4712
4713   // Look for <15, ..., 3, -1, 1, 0>.
4714   for (unsigned i = 0; i != NumElts; ++i)
4715     if (M[i] >= 0 && M[i] != (int) (NumElts - 1 - i))
4716       return false;
4717
4718   return true;
4719 }
4720
4721 // If N is an integer constant that can be moved into a register in one
4722 // instruction, return an SDValue of such a constant (will become a MOV
4723 // instruction).  Otherwise return null.
4724 static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG,
4725                                      const ARMSubtarget *ST, SDLoc dl) {
4726   uint64_t Val;
4727   if (!isa<ConstantSDNode>(N))
4728     return SDValue();
4729   Val = cast<ConstantSDNode>(N)->getZExtValue();
4730
4731   if (ST->isThumb1Only()) {
4732     if (Val <= 255 || ~Val <= 255)
4733       return DAG.getConstant(Val, MVT::i32);
4734   } else {
4735     if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1)
4736       return DAG.getConstant(Val, MVT::i32);
4737   }
4738   return SDValue();
4739 }
4740
4741 // If this is a case we can't handle, return null and let the default
4742 // expansion code take care of it.
4743 SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG,
4744                                              const ARMSubtarget *ST) const {
4745   BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
4746   SDLoc dl(Op);
4747   EVT VT = Op.getValueType();
4748
4749   APInt SplatBits, SplatUndef;
4750   unsigned SplatBitSize;
4751   bool HasAnyUndefs;
4752   if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
4753     if (SplatBitSize <= 64) {
4754       // Check if an immediate VMOV works.
4755       EVT VmovVT;
4756       SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
4757                                       SplatUndef.getZExtValue(), SplatBitSize,
4758                                       DAG, VmovVT, VT.is128BitVector(),
4759                                       VMOVModImm);
4760       if (Val.getNode()) {
4761         SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val);
4762         return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
4763       }
4764
4765       // Try an immediate VMVN.
4766       uint64_t NegatedImm = (~SplatBits).getZExtValue();
4767       Val = isNEONModifiedImm(NegatedImm,
4768                                       SplatUndef.getZExtValue(), SplatBitSize,
4769                                       DAG, VmovVT, VT.is128BitVector(),
4770                                       VMVNModImm);
4771       if (Val.getNode()) {
4772         SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val);
4773         return DAG.getNode(ISD::BITCAST, dl, VT, Vmov);
4774       }
4775
4776       // Use vmov.f32 to materialize other v2f32 and v4f32 splats.
4777       if ((VT == MVT::v2f32 || VT == MVT::v4f32) && SplatBitSize == 32) {
4778         int ImmVal = ARM_AM::getFP32Imm(SplatBits);
4779         if (ImmVal != -1) {
4780           SDValue Val = DAG.getTargetConstant(ImmVal, MVT::i32);
4781           return DAG.getNode(ARMISD::VMOVFPIMM, dl, VT, Val);
4782         }
4783       }
4784     }
4785   }
4786
4787   // Scan through the operands to see if only one value is used.
4788   //
4789   // As an optimisation, even if more than one value is used it may be more
4790   // profitable to splat with one value then change some lanes.
4791   //
4792   // Heuristically we decide to do this if the vector has a "dominant" value,
4793   // defined as splatted to more than half of the lanes.
4794   unsigned NumElts = VT.getVectorNumElements();
4795   bool isOnlyLowElement = true;
4796   bool usesOnlyOneValue = true;
4797   bool hasDominantValue = false;
4798   bool isConstant = true;
4799
4800   // Map of the number of times a particular SDValue appears in the
4801   // element list.
4802   DenseMap<SDValue, unsigned> ValueCounts;
4803   SDValue Value;
4804   for (unsigned i = 0; i < NumElts; ++i) {
4805     SDValue V = Op.getOperand(i);
4806     if (V.getOpcode() == ISD::UNDEF)
4807       continue;
4808     if (i > 0)
4809       isOnlyLowElement = false;
4810     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
4811       isConstant = false;
4812
4813     ValueCounts.insert(std::make_pair(V, 0));
4814     unsigned &Count = ValueCounts[V];
4815
4816     // Is this value dominant? (takes up more than half of the lanes)
4817     if (++Count > (NumElts / 2)) {
4818       hasDominantValue = true;
4819       Value = V;
4820     }
4821   }
4822   if (ValueCounts.size() != 1)
4823     usesOnlyOneValue = false;
4824   if (!Value.getNode() && ValueCounts.size() > 0)
4825     Value = ValueCounts.begin()->first;
4826
4827   if (ValueCounts.size() == 0)
4828     return DAG.getUNDEF(VT);
4829
4830   // Loads are better lowered with insert_vector_elt/ARMISD::BUILD_VECTOR.
4831   // Keep going if we are hitting this case.
4832   if (isOnlyLowElement && !ISD::isNormalLoad(Value.getNode()))
4833     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
4834
4835   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4836
4837   // Use VDUP for non-constant splats.  For f32 constant splats, reduce to
4838   // i32 and try again.
4839   if (hasDominantValue && EltSize <= 32) {
4840     if (!isConstant) {
4841       SDValue N;
4842
4843       // If we are VDUPing a value that comes directly from a vector, that will
4844       // cause an unnecessary move to and from a GPR, where instead we could
4845       // just use VDUPLANE. We can only do this if the lane being extracted
4846       // is at a constant index, as the VDUP from lane instructions only have
4847       // constant-index forms.
4848       if (Value->getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
4849           isa<ConstantSDNode>(Value->getOperand(1))) {
4850         // We need to create a new undef vector to use for the VDUPLANE if the
4851         // size of the vector from which we get the value is different than the
4852         // size of the vector that we need to create. We will insert the element
4853         // such that the register coalescer will remove unnecessary copies.
4854         if (VT != Value->getOperand(0).getValueType()) {
4855           ConstantSDNode *constIndex;
4856           constIndex = dyn_cast<ConstantSDNode>(Value->getOperand(1));
4857           assert(constIndex && "The index is not a constant!");
4858           unsigned index = constIndex->getAPIntValue().getLimitedValue() %
4859                              VT.getVectorNumElements();
4860           N =  DAG.getNode(ARMISD::VDUPLANE, dl, VT,
4861                  DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DAG.getUNDEF(VT),
4862                         Value, DAG.getConstant(index, MVT::i32)),
4863                            DAG.getConstant(index, MVT::i32));
4864         } else
4865           N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
4866                         Value->getOperand(0), Value->getOperand(1));
4867       } else
4868         N = DAG.getNode(ARMISD::VDUP, dl, VT, Value);
4869
4870       if (!usesOnlyOneValue) {
4871         // The dominant value was splatted as 'N', but we now have to insert
4872         // all differing elements.
4873         for (unsigned I = 0; I < NumElts; ++I) {
4874           if (Op.getOperand(I) == Value)
4875             continue;
4876           SmallVector<SDValue, 3> Ops;
4877           Ops.push_back(N);
4878           Ops.push_back(Op.getOperand(I));
4879           Ops.push_back(DAG.getConstant(I, MVT::i32));
4880           N = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Ops);
4881         }
4882       }
4883       return N;
4884     }
4885     if (VT.getVectorElementType().isFloatingPoint()) {
4886       SmallVector<SDValue, 8> Ops;
4887       for (unsigned i = 0; i < NumElts; ++i)
4888         Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32,
4889                                   Op.getOperand(i)));
4890       EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
4891       SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops);
4892       Val = LowerBUILD_VECTOR(Val, DAG, ST);
4893       if (Val.getNode())
4894         return DAG.getNode(ISD::BITCAST, dl, VT, Val);
4895     }
4896     if (usesOnlyOneValue) {
4897       SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl);
4898       if (isConstant && Val.getNode())
4899         return DAG.getNode(ARMISD::VDUP, dl, VT, Val);
4900     }
4901   }
4902
4903   // If all elements are constants and the case above didn't get hit, fall back
4904   // to the default expansion, which will generate a load from the constant
4905   // pool.
4906   if (isConstant)
4907     return SDValue();
4908
4909   // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
4910   if (NumElts >= 4) {
4911     SDValue shuffle = ReconstructShuffle(Op, DAG);
4912     if (shuffle != SDValue())
4913       return shuffle;
4914   }
4915
4916   // Vectors with 32- or 64-bit elements can be built by directly assigning
4917   // the subregisters.  Lower it to an ARMISD::BUILD_VECTOR so the operands
4918   // will be legalized.
4919   if (EltSize >= 32) {
4920     // Do the expansion with floating-point types, since that is what the VFP
4921     // registers are defined to use, and since i64 is not legal.
4922     EVT EltVT = EVT::getFloatingPointVT(EltSize);
4923     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
4924     SmallVector<SDValue, 8> Ops;
4925     for (unsigned i = 0; i < NumElts; ++i)
4926       Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i)));
4927     SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
4928     return DAG.getNode(ISD::BITCAST, dl, VT, Val);
4929   }
4930
4931   // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
4932   // know the default expansion would otherwise fall back on something even
4933   // worse. For a vector with one or two non-undef values, that's
4934   // scalar_to_vector for the elements followed by a shuffle (provided the
4935   // shuffle is valid for the target) and materialization element by element
4936   // on the stack followed by a load for everything else.
4937   if (!isConstant && !usesOnlyOneValue) {
4938     SDValue Vec = DAG.getUNDEF(VT);
4939     for (unsigned i = 0 ; i < NumElts; ++i) {
4940       SDValue V = Op.getOperand(i);
4941       if (V.getOpcode() == ISD::UNDEF)
4942         continue;
4943       SDValue LaneIdx = DAG.getConstant(i, MVT::i32);
4944       Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
4945     }
4946     return Vec;
4947   }
4948
4949   return SDValue();
4950 }
4951
4952 // Gather data to see if the operation can be modelled as a
4953 // shuffle in combination with VEXTs.
4954 SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op,
4955                                               SelectionDAG &DAG) const {
4956   SDLoc dl(Op);
4957   EVT VT = Op.getValueType();
4958   unsigned NumElts = VT.getVectorNumElements();
4959
4960   SmallVector<SDValue, 2> SourceVecs;
4961   SmallVector<unsigned, 2> MinElts;
4962   SmallVector<unsigned, 2> MaxElts;
4963
4964   for (unsigned i = 0; i < NumElts; ++i) {
4965     SDValue V = Op.getOperand(i);
4966     if (V.getOpcode() == ISD::UNDEF)
4967       continue;
4968     else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
4969       // A shuffle can only come from building a vector from various
4970       // elements of other vectors.
4971       return SDValue();
4972     } else if (V.getOperand(0).getValueType().getVectorElementType() !=
4973                VT.getVectorElementType()) {
4974       // This code doesn't know how to handle shuffles where the vector
4975       // element types do not match (this happens because type legalization
4976       // promotes the return type of EXTRACT_VECTOR_ELT).
4977       // FIXME: It might be appropriate to extend this code to handle
4978       // mismatched types.
4979       return SDValue();
4980     }
4981
4982     // Record this extraction against the appropriate vector if possible...
4983     SDValue SourceVec = V.getOperand(0);
4984     // If the element number isn't a constant, we can't effectively
4985     // analyze what's going on.
4986     if (!isa<ConstantSDNode>(V.getOperand(1)))
4987       return SDValue();
4988     unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
4989     bool FoundSource = false;
4990     for (unsigned j = 0; j < SourceVecs.size(); ++j) {
4991       if (SourceVecs[j] == SourceVec) {
4992         if (MinElts[j] > EltNo)
4993           MinElts[j] = EltNo;
4994         if (MaxElts[j] < EltNo)
4995           MaxElts[j] = EltNo;
4996         FoundSource = true;
4997         break;
4998       }
4999     }
5000
5001     // Or record a new source if not...
5002     if (!FoundSource) {
5003       SourceVecs.push_back(SourceVec);
5004       MinElts.push_back(EltNo);
5005       MaxElts.push_back(EltNo);
5006     }
5007   }
5008
5009   // Currently only do something sane when at most two source vectors
5010   // involved.
5011   if (SourceVecs.size() > 2)
5012     return SDValue();
5013
5014   SDValue ShuffleSrcs[2] = {DAG.getUNDEF(VT), DAG.getUNDEF(VT) };
5015   int VEXTOffsets[2] = {0, 0};
5016
5017   // This loop extracts the usage patterns of the source vectors
5018   // and prepares appropriate SDValues for a shuffle if possible.
5019   for (unsigned i = 0; i < SourceVecs.size(); ++i) {
5020     if (SourceVecs[i].getValueType() == VT) {
5021       // No VEXT necessary
5022       ShuffleSrcs[i] = SourceVecs[i];
5023       VEXTOffsets[i] = 0;
5024       continue;
5025     } else if (SourceVecs[i].getValueType().getVectorNumElements() < NumElts) {
5026       // It probably isn't worth padding out a smaller vector just to
5027       // break it down again in a shuffle.
5028       return SDValue();
5029     }
5030
5031     // Since only 64-bit and 128-bit vectors are legal on ARM and
5032     // we've eliminated the other cases...
5033     assert(SourceVecs[i].getValueType().getVectorNumElements() == 2*NumElts &&
5034            "unexpected vector sizes in ReconstructShuffle");
5035
5036     if (MaxElts[i] - MinElts[i] >= NumElts) {
5037       // Span too large for a VEXT to cope
5038       return SDValue();
5039     }
5040
5041     if (MinElts[i] >= NumElts) {
5042       // The extraction can just take the second half
5043       VEXTOffsets[i] = NumElts;
5044       ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5045                                    SourceVecs[i],
5046                                    DAG.getIntPtrConstant(NumElts));
5047     } else if (MaxElts[i] < NumElts) {
5048       // The extraction can just take the first half
5049       VEXTOffsets[i] = 0;
5050       ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5051                                    SourceVecs[i],
5052                                    DAG.getIntPtrConstant(0));
5053     } else {
5054       // An actual VEXT is needed
5055       VEXTOffsets[i] = MinElts[i];
5056       SDValue VEXTSrc1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5057                                      SourceVecs[i],
5058                                      DAG.getIntPtrConstant(0));
5059       SDValue VEXTSrc2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT,
5060                                      SourceVecs[i],
5061                                      DAG.getIntPtrConstant(NumElts));
5062       ShuffleSrcs[i] = DAG.getNode(ARMISD::VEXT, dl, VT, VEXTSrc1, VEXTSrc2,
5063                                    DAG.getConstant(VEXTOffsets[i], MVT::i32));
5064     }
5065   }
5066
5067   SmallVector<int, 8> Mask;
5068
5069   for (unsigned i = 0; i < NumElts; ++i) {
5070     SDValue Entry = Op.getOperand(i);
5071     if (Entry.getOpcode() == ISD::UNDEF) {
5072       Mask.push_back(-1);
5073       continue;
5074     }
5075
5076     SDValue ExtractVec = Entry.getOperand(0);
5077     int ExtractElt = cast<ConstantSDNode>(Op.getOperand(i)
5078                                           .getOperand(1))->getSExtValue();
5079     if (ExtractVec == SourceVecs[0]) {
5080       Mask.push_back(ExtractElt - VEXTOffsets[0]);
5081     } else {
5082       Mask.push_back(ExtractElt + NumElts - VEXTOffsets[1]);
5083     }
5084   }
5085
5086   // Final check before we try to produce nonsense...
5087   if (isShuffleMaskLegal(Mask, VT))
5088     return DAG.getVectorShuffle(VT, dl, ShuffleSrcs[0], ShuffleSrcs[1],
5089                                 &Mask[0]);
5090
5091   return SDValue();
5092 }
5093
5094 /// isShuffleMaskLegal - Targets can use this to indicate that they only
5095 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
5096 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
5097 /// are assumed to be legal.
5098 bool
5099 ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
5100                                       EVT VT) const {
5101   if (VT.getVectorNumElements() == 4 &&
5102       (VT.is128BitVector() || VT.is64BitVector())) {
5103     unsigned PFIndexes[4];
5104     for (unsigned i = 0; i != 4; ++i) {
5105       if (M[i] < 0)
5106         PFIndexes[i] = 8;
5107       else
5108         PFIndexes[i] = M[i];
5109     }
5110
5111     // Compute the index in the perfect shuffle table.
5112     unsigned PFTableIndex =
5113       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5114     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5115     unsigned Cost = (PFEntry >> 30);
5116
5117     if (Cost <= 4)
5118       return true;
5119   }
5120
5121   bool ReverseVEXT;
5122   unsigned Imm, WhichResult;
5123
5124   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5125   return (EltSize >= 32 ||
5126           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
5127           isVREVMask(M, VT, 64) ||
5128           isVREVMask(M, VT, 32) ||
5129           isVREVMask(M, VT, 16) ||
5130           isVEXTMask(M, VT, ReverseVEXT, Imm) ||
5131           isVTBLMask(M, VT) ||
5132           isVTRNMask(M, VT, WhichResult) ||
5133           isVUZPMask(M, VT, WhichResult) ||
5134           isVZIPMask(M, VT, WhichResult) ||
5135           isVTRN_v_undef_Mask(M, VT, WhichResult) ||
5136           isVUZP_v_undef_Mask(M, VT, WhichResult) ||
5137           isVZIP_v_undef_Mask(M, VT, WhichResult) ||
5138           ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(M, VT)));
5139 }
5140
5141 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5142 /// the specified operations to build the shuffle.
5143 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5144                                       SDValue RHS, SelectionDAG &DAG,
5145                                       SDLoc dl) {
5146   unsigned OpNum = (PFEntry >> 26) & 0x0F;
5147   unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1);
5148   unsigned RHSID = (PFEntry >>  0) & ((1 << 13)-1);
5149
5150   enum {
5151     OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5152     OP_VREV,
5153     OP_VDUP0,
5154     OP_VDUP1,
5155     OP_VDUP2,
5156     OP_VDUP3,
5157     OP_VEXT1,
5158     OP_VEXT2,
5159     OP_VEXT3,
5160     OP_VUZPL, // VUZP, left result
5161     OP_VUZPR, // VUZP, right result
5162     OP_VZIPL, // VZIP, left result
5163     OP_VZIPR, // VZIP, right result
5164     OP_VTRNL, // VTRN, left result
5165     OP_VTRNR  // VTRN, right result
5166   };
5167
5168   if (OpNum == OP_COPY) {
5169     if (LHSID == (1*9+2)*9+3) return LHS;
5170     assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!");
5171     return RHS;
5172   }
5173
5174   SDValue OpLHS, OpRHS;
5175   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5176   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5177   EVT VT = OpLHS.getValueType();
5178
5179   switch (OpNum) {
5180   default: llvm_unreachable("Unknown shuffle opcode!");
5181   case OP_VREV:
5182     // VREV divides the vector in half and swaps within the half.
5183     if (VT.getVectorElementType() == MVT::i32 ||
5184         VT.getVectorElementType() == MVT::f32)
5185       return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS);
5186     // vrev <4 x i16> -> VREV32
5187     if (VT.getVectorElementType() == MVT::i16)
5188       return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS);
5189     // vrev <4 x i8> -> VREV16
5190     assert(VT.getVectorElementType() == MVT::i8);
5191     return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS);
5192   case OP_VDUP0:
5193   case OP_VDUP1:
5194   case OP_VDUP2:
5195   case OP_VDUP3:
5196     return DAG.getNode(ARMISD::VDUPLANE, dl, VT,
5197                        OpLHS, DAG.getConstant(OpNum-OP_VDUP0, MVT::i32));
5198   case OP_VEXT1:
5199   case OP_VEXT2:
5200   case OP_VEXT3:
5201     return DAG.getNode(ARMISD::VEXT, dl, VT,
5202                        OpLHS, OpRHS,
5203                        DAG.getConstant(OpNum-OP_VEXT1+1, MVT::i32));
5204   case OP_VUZPL:
5205   case OP_VUZPR:
5206     return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5207                        OpLHS, OpRHS).getValue(OpNum-OP_VUZPL);
5208   case OP_VZIPL:
5209   case OP_VZIPR:
5210     return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5211                        OpLHS, OpRHS).getValue(OpNum-OP_VZIPL);
5212   case OP_VTRNL:
5213   case OP_VTRNR:
5214     return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5215                        OpLHS, OpRHS).getValue(OpNum-OP_VTRNL);
5216   }
5217 }
5218
5219 static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op,
5220                                        ArrayRef<int> ShuffleMask,
5221                                        SelectionDAG &DAG) {
5222   // Check to see if we can use the VTBL instruction.
5223   SDValue V1 = Op.getOperand(0);
5224   SDValue V2 = Op.getOperand(1);
5225   SDLoc DL(Op);
5226
5227   SmallVector<SDValue, 8> VTBLMask;
5228   for (ArrayRef<int>::iterator
5229          I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I)
5230     VTBLMask.push_back(DAG.getConstant(*I, MVT::i32));
5231
5232   if (V2.getNode()->getOpcode() == ISD::UNDEF)
5233     return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1,
5234                        DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
5235
5236   return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2,
5237                      DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask));
5238 }
5239
5240 static SDValue LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(SDValue Op,
5241                                                       SelectionDAG &DAG) {
5242   SDLoc DL(Op);
5243   SDValue OpLHS = Op.getOperand(0);
5244   EVT VT = OpLHS.getValueType();
5245
5246   assert((VT == MVT::v8i16 || VT == MVT::v16i8) &&
5247          "Expect an v8i16/v16i8 type");
5248   OpLHS = DAG.getNode(ARMISD::VREV64, DL, VT, OpLHS);
5249   // For a v16i8 type: After the VREV, we have got <8, ...15, 8, ..., 0>. Now,
5250   // extract the first 8 bytes into the top double word and the last 8 bytes
5251   // into the bottom double word. The v8i16 case is similar.
5252   unsigned ExtractNum = (VT == MVT::v16i8) ? 8 : 4;
5253   return DAG.getNode(ARMISD::VEXT, DL, VT, OpLHS, OpLHS,
5254                      DAG.getConstant(ExtractNum, MVT::i32));
5255 }
5256
5257 static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
5258   SDValue V1 = Op.getOperand(0);
5259   SDValue V2 = Op.getOperand(1);
5260   SDLoc dl(Op);
5261   EVT VT = Op.getValueType();
5262   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
5263
5264   // Convert shuffles that are directly supported on NEON to target-specific
5265   // DAG nodes, instead of keeping them as shuffles and matching them again
5266   // during code selection.  This is more efficient and avoids the possibility
5267   // of inconsistencies between legalization and selection.
5268   // FIXME: floating-point vectors should be canonicalized to integer vectors
5269   // of the same time so that they get CSEd properly.
5270   ArrayRef<int> ShuffleMask = SVN->getMask();
5271
5272   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5273   if (EltSize <= 32) {
5274     if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) {
5275       int Lane = SVN->getSplatIndex();
5276       // If this is undef splat, generate it via "just" vdup, if possible.
5277       if (Lane == -1) Lane = 0;
5278
5279       // Test if V1 is a SCALAR_TO_VECTOR.
5280       if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5281         return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5282       }
5283       // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR
5284       // (and probably will turn into a SCALAR_TO_VECTOR once legalization
5285       // reaches it).
5286       if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR &&
5287           !isa<ConstantSDNode>(V1.getOperand(0))) {
5288         bool IsScalarToVector = true;
5289         for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i)
5290           if (V1.getOperand(i).getOpcode() != ISD::UNDEF) {
5291             IsScalarToVector = false;
5292             break;
5293           }
5294         if (IsScalarToVector)
5295           return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0));
5296       }
5297       return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1,
5298                          DAG.getConstant(Lane, MVT::i32));
5299     }
5300
5301     bool ReverseVEXT;
5302     unsigned Imm;
5303     if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) {
5304       if (ReverseVEXT)
5305         std::swap(V1, V2);
5306       return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2,
5307                          DAG.getConstant(Imm, MVT::i32));
5308     }
5309
5310     if (isVREVMask(ShuffleMask, VT, 64))
5311       return DAG.getNode(ARMISD::VREV64, dl, VT, V1);
5312     if (isVREVMask(ShuffleMask, VT, 32))
5313       return DAG.getNode(ARMISD::VREV32, dl, VT, V1);
5314     if (isVREVMask(ShuffleMask, VT, 16))
5315       return DAG.getNode(ARMISD::VREV16, dl, VT, V1);
5316
5317     if (V2->getOpcode() == ISD::UNDEF &&
5318         isSingletonVEXTMask(ShuffleMask, VT, Imm)) {
5319       return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V1,
5320                          DAG.getConstant(Imm, MVT::i32));
5321     }
5322
5323     // Check for Neon shuffles that modify both input vectors in place.
5324     // If both results are used, i.e., if there are two shuffles with the same
5325     // source operands and with masks corresponding to both results of one of
5326     // these operations, DAG memoization will ensure that a single node is
5327     // used for both shuffles.
5328     unsigned WhichResult;
5329     if (isVTRNMask(ShuffleMask, VT, WhichResult))
5330       return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5331                          V1, V2).getValue(WhichResult);
5332     if (isVUZPMask(ShuffleMask, VT, WhichResult))
5333       return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5334                          V1, V2).getValue(WhichResult);
5335     if (isVZIPMask(ShuffleMask, VT, WhichResult))
5336       return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5337                          V1, V2).getValue(WhichResult);
5338
5339     if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult))
5340       return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT),
5341                          V1, V1).getValue(WhichResult);
5342     if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5343       return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT),
5344                          V1, V1).getValue(WhichResult);
5345     if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult))
5346       return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT),
5347                          V1, V1).getValue(WhichResult);
5348   }
5349
5350   // If the shuffle is not directly supported and it has 4 elements, use
5351   // the PerfectShuffle-generated table to synthesize it from other shuffles.
5352   unsigned NumElts = VT.getVectorNumElements();
5353   if (NumElts == 4) {
5354     unsigned PFIndexes[4];
5355     for (unsigned i = 0; i != 4; ++i) {
5356       if (ShuffleMask[i] < 0)
5357         PFIndexes[i] = 8;
5358       else
5359         PFIndexes[i] = ShuffleMask[i];
5360     }
5361
5362     // Compute the index in the perfect shuffle table.
5363     unsigned PFTableIndex =
5364       PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3];
5365     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5366     unsigned Cost = (PFEntry >> 30);
5367
5368     if (Cost <= 4)
5369       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
5370   }
5371
5372   // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs.
5373   if (EltSize >= 32) {
5374     // Do the expansion with floating-point types, since that is what the VFP
5375     // registers are defined to use, and since i64 is not legal.
5376     EVT EltVT = EVT::getFloatingPointVT(EltSize);
5377     EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts);
5378     V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1);
5379     V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2);
5380     SmallVector<SDValue, 8> Ops;
5381     for (unsigned i = 0; i < NumElts; ++i) {
5382       if (ShuffleMask[i] < 0)
5383         Ops.push_back(DAG.getUNDEF(EltVT));
5384       else
5385         Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
5386                                   ShuffleMask[i] < (int)NumElts ? V1 : V2,
5387                                   DAG.getConstant(ShuffleMask[i] & (NumElts-1),
5388                                                   MVT::i32)));
5389     }
5390     SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops);
5391     return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5392   }
5393
5394   if ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(ShuffleMask, VT))
5395     return LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(Op, DAG);
5396
5397   if (VT == MVT::v8i8) {
5398     SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG);
5399     if (NewOp.getNode())
5400       return NewOp;
5401   }
5402
5403   return SDValue();
5404 }
5405
5406 static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
5407   // INSERT_VECTOR_ELT is legal only for immediate indexes.
5408   SDValue Lane = Op.getOperand(2);
5409   if (!isa<ConstantSDNode>(Lane))
5410     return SDValue();
5411
5412   return Op;
5413 }
5414
5415 static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
5416   // EXTRACT_VECTOR_ELT is legal only for immediate indexes.
5417   SDValue Lane = Op.getOperand(1);
5418   if (!isa<ConstantSDNode>(Lane))
5419     return SDValue();
5420
5421   SDValue Vec = Op.getOperand(0);
5422   if (Op.getValueType() == MVT::i32 &&
5423       Vec.getValueType().getVectorElementType().getSizeInBits() < 32) {
5424     SDLoc dl(Op);
5425     return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane);
5426   }
5427
5428   return Op;
5429 }
5430
5431 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5432   // The only time a CONCAT_VECTORS operation can have legal types is when
5433   // two 64-bit vectors are concatenated to a 128-bit vector.
5434   assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 &&
5435          "unexpected CONCAT_VECTORS");
5436   SDLoc dl(Op);
5437   SDValue Val = DAG.getUNDEF(MVT::v2f64);
5438   SDValue Op0 = Op.getOperand(0);
5439   SDValue Op1 = Op.getOperand(1);
5440   if (Op0.getOpcode() != ISD::UNDEF)
5441     Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
5442                       DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0),
5443                       DAG.getIntPtrConstant(0));
5444   if (Op1.getOpcode() != ISD::UNDEF)
5445     Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val,
5446                       DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1),
5447                       DAG.getIntPtrConstant(1));
5448   return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val);
5449 }
5450
5451 /// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each
5452 /// element has been zero/sign-extended, depending on the isSigned parameter,
5453 /// from an integer type half its size.
5454 static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
5455                                    bool isSigned) {
5456   // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32.
5457   EVT VT = N->getValueType(0);
5458   if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) {
5459     SDNode *BVN = N->getOperand(0).getNode();
5460     if (BVN->getValueType(0) != MVT::v4i32 ||
5461         BVN->getOpcode() != ISD::BUILD_VECTOR)
5462       return false;
5463     unsigned LoElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
5464     unsigned HiElt = 1 - LoElt;
5465     ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt));
5466     ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt));
5467     ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2));
5468     ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2));
5469     if (!Lo0 || !Hi0 || !Lo1 || !Hi1)
5470       return false;
5471     if (isSigned) {
5472       if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 &&
5473           Hi1->getSExtValue() == Lo1->getSExtValue() >> 32)
5474         return true;
5475     } else {
5476       if (Hi0->isNullValue() && Hi1->isNullValue())
5477         return true;
5478     }
5479     return false;
5480   }
5481
5482   if (N->getOpcode() != ISD::BUILD_VECTOR)
5483     return false;
5484
5485   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
5486     SDNode *Elt = N->getOperand(i).getNode();
5487     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
5488       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5489       unsigned HalfSize = EltSize / 2;
5490       if (isSigned) {
5491         if (!isIntN(HalfSize, C->getSExtValue()))
5492           return false;
5493       } else {
5494         if (!isUIntN(HalfSize, C->getZExtValue()))
5495           return false;
5496       }
5497       continue;
5498     }
5499     return false;
5500   }
5501
5502   return true;
5503 }
5504
5505 /// isSignExtended - Check if a node is a vector value that is sign-extended
5506 /// or a constant BUILD_VECTOR with sign-extended elements.
5507 static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
5508   if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N))
5509     return true;
5510   if (isExtendedBUILD_VECTOR(N, DAG, true))
5511     return true;
5512   return false;
5513 }
5514
5515 /// isZeroExtended - Check if a node is a vector value that is zero-extended
5516 /// or a constant BUILD_VECTOR with zero-extended elements.
5517 static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
5518   if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N))
5519     return true;
5520   if (isExtendedBUILD_VECTOR(N, DAG, false))
5521     return true;
5522   return false;
5523 }
5524
5525 static EVT getExtensionTo64Bits(const EVT &OrigVT) {
5526   if (OrigVT.getSizeInBits() >= 64)
5527     return OrigVT;
5528
5529   assert(OrigVT.isSimple() && "Expecting a simple value type");
5530
5531   MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
5532   switch (OrigSimpleTy) {
5533   default: llvm_unreachable("Unexpected Vector Type");
5534   case MVT::v2i8:
5535   case MVT::v2i16:
5536      return MVT::v2i32;
5537   case MVT::v4i8:
5538     return  MVT::v4i16;
5539   }
5540 }
5541
5542 /// AddRequiredExtensionForVMULL - Add a sign/zero extension to extend the total
5543 /// value size to 64 bits. We need a 64-bit D register as an operand to VMULL.
5544 /// We insert the required extension here to get the vector to fill a D register.
5545 static SDValue AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG,
5546                                             const EVT &OrigTy,
5547                                             const EVT &ExtTy,
5548                                             unsigned ExtOpcode) {
5549   // The vector originally had a size of OrigTy. It was then extended to ExtTy.
5550   // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
5551   // 64-bits we need to insert a new extension so that it will be 64-bits.
5552   assert(ExtTy.is128BitVector() && "Unexpected extension size");
5553   if (OrigTy.getSizeInBits() >= 64)
5554     return N;
5555
5556   // Must extend size to at least 64 bits to be used as an operand for VMULL.
5557   EVT NewVT = getExtensionTo64Bits(OrigTy);
5558
5559   return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N);
5560 }
5561
5562 /// SkipLoadExtensionForVMULL - return a load of the original vector size that
5563 /// does not do any sign/zero extension. If the original vector is less
5564 /// than 64 bits, an appropriate extension will be added after the load to
5565 /// reach a total size of 64 bits. We have to add the extension separately
5566 /// because ARM does not have a sign/zero extending load for vectors.
5567 static SDValue SkipLoadExtensionForVMULL(LoadSDNode *LD, SelectionDAG& DAG) {
5568   EVT ExtendedTy = getExtensionTo64Bits(LD->getMemoryVT());
5569
5570   // The load already has the right type.
5571   if (ExtendedTy == LD->getMemoryVT())
5572     return DAG.getLoad(LD->getMemoryVT(), SDLoc(LD), LD->getChain(),
5573                 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(),
5574                 LD->isNonTemporal(), LD->isInvariant(),
5575                 LD->getAlignment());
5576
5577   // We need to create a zextload/sextload. We cannot just create a load
5578   // followed by a zext/zext node because LowerMUL is also run during normal
5579   // operation legalization where we can't create illegal types.
5580   return DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), ExtendedTy,
5581                         LD->getChain(), LD->getBasePtr(), LD->getPointerInfo(),
5582                         LD->getMemoryVT(), LD->isVolatile(),
5583                         LD->isNonTemporal(), LD->getAlignment());
5584 }
5585
5586 /// SkipExtensionForVMULL - For a node that is a SIGN_EXTEND, ZERO_EXTEND,
5587 /// extending load, or BUILD_VECTOR with extended elements, return the
5588 /// unextended value. The unextended vector should be 64 bits so that it can
5589 /// be used as an operand to a VMULL instruction. If the original vector size
5590 /// before extension is less than 64 bits we add a an extension to resize
5591 /// the vector to 64 bits.
5592 static SDValue SkipExtensionForVMULL(SDNode *N, SelectionDAG &DAG) {
5593   if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
5594     return AddRequiredExtensionForVMULL(N->getOperand(0), DAG,
5595                                         N->getOperand(0)->getValueType(0),
5596                                         N->getValueType(0),
5597                                         N->getOpcode());
5598
5599   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N))
5600     return SkipLoadExtensionForVMULL(LD, DAG);
5601
5602   // Otherwise, the value must be a BUILD_VECTOR.  For v2i64, it will
5603   // have been legalized as a BITCAST from v4i32.
5604   if (N->getOpcode() == ISD::BITCAST) {
5605     SDNode *BVN = N->getOperand(0).getNode();
5606     assert(BVN->getOpcode() == ISD::BUILD_VECTOR &&
5607            BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR");
5608     unsigned LowElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0;
5609     return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), MVT::v2i32,
5610                        BVN->getOperand(LowElt), BVN->getOperand(LowElt+2));
5611   }
5612   // Construct a new BUILD_VECTOR with elements truncated to half the size.
5613   assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
5614   EVT VT = N->getValueType(0);
5615   unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2;
5616   unsigned NumElts = VT.getVectorNumElements();
5617   MVT TruncVT = MVT::getIntegerVT(EltSize);
5618   SmallVector<SDValue, 8> Ops;
5619   for (unsigned i = 0; i != NumElts; ++i) {
5620     ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
5621     const APInt &CInt = C->getAPIntValue();
5622     // Element types smaller than 32 bits are not legal, so use i32 elements.
5623     // The values are implicitly truncated so sext vs. zext doesn't matter.
5624     Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), MVT::i32));
5625   }
5626   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
5627                      MVT::getVectorVT(TruncVT, NumElts), Ops);
5628 }
5629
5630 static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
5631   unsigned Opcode = N->getOpcode();
5632   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
5633     SDNode *N0 = N->getOperand(0).getNode();
5634     SDNode *N1 = N->getOperand(1).getNode();
5635     return N0->hasOneUse() && N1->hasOneUse() &&
5636       isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
5637   }
5638   return false;
5639 }
5640
5641 static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
5642   unsigned Opcode = N->getOpcode();
5643   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
5644     SDNode *N0 = N->getOperand(0).getNode();
5645     SDNode *N1 = N->getOperand(1).getNode();
5646     return N0->hasOneUse() && N1->hasOneUse() &&
5647       isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
5648   }
5649   return false;
5650 }
5651
5652 static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
5653   // Multiplications are only custom-lowered for 128-bit vectors so that
5654   // VMULL can be detected.  Otherwise v2i64 multiplications are not legal.
5655   EVT VT = Op.getValueType();
5656   assert(VT.is128BitVector() && VT.isInteger() &&
5657          "unexpected type for custom-lowering ISD::MUL");
5658   SDNode *N0 = Op.getOperand(0).getNode();
5659   SDNode *N1 = Op.getOperand(1).getNode();
5660   unsigned NewOpc = 0;
5661   bool isMLA = false;
5662   bool isN0SExt = isSignExtended(N0, DAG);
5663   bool isN1SExt = isSignExtended(N1, DAG);
5664   if (isN0SExt && isN1SExt)
5665     NewOpc = ARMISD::VMULLs;
5666   else {
5667     bool isN0ZExt = isZeroExtended(N0, DAG);
5668     bool isN1ZExt = isZeroExtended(N1, DAG);
5669     if (isN0ZExt && isN1ZExt)
5670       NewOpc = ARMISD::VMULLu;
5671     else if (isN1SExt || isN1ZExt) {
5672       // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
5673       // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
5674       if (isN1SExt && isAddSubSExt(N0, DAG)) {
5675         NewOpc = ARMISD::VMULLs;
5676         isMLA = true;
5677       } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
5678         NewOpc = ARMISD::VMULLu;
5679         isMLA = true;
5680       } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
5681         std::swap(N0, N1);
5682         NewOpc = ARMISD::VMULLu;
5683         isMLA = true;
5684       }
5685     }
5686
5687     if (!NewOpc) {
5688       if (VT == MVT::v2i64)
5689         // Fall through to expand this.  It is not legal.
5690         return SDValue();
5691       else
5692         // Other vector multiplications are legal.
5693         return Op;
5694     }
5695   }
5696
5697   // Legalize to a VMULL instruction.
5698   SDLoc DL(Op);
5699   SDValue Op0;
5700   SDValue Op1 = SkipExtensionForVMULL(N1, DAG);
5701   if (!isMLA) {
5702     Op0 = SkipExtensionForVMULL(N0, DAG);
5703     assert(Op0.getValueType().is64BitVector() &&
5704            Op1.getValueType().is64BitVector() &&
5705            "unexpected types for extended operands to VMULL");
5706     return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
5707   }
5708
5709   // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during
5710   // isel lowering to take advantage of no-stall back to back vmul + vmla.
5711   //   vmull q0, d4, d6
5712   //   vmlal q0, d5, d6
5713   // is faster than
5714   //   vaddl q0, d4, d5
5715   //   vmovl q1, d6
5716   //   vmul  q0, q0, q1
5717   SDValue N00 = SkipExtensionForVMULL(N0->getOperand(0).getNode(), DAG);
5718   SDValue N01 = SkipExtensionForVMULL(N0->getOperand(1).getNode(), DAG);
5719   EVT Op1VT = Op1.getValueType();
5720   return DAG.getNode(N0->getOpcode(), DL, VT,
5721                      DAG.getNode(NewOpc, DL, VT,
5722                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
5723                      DAG.getNode(NewOpc, DL, VT,
5724                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
5725 }
5726
5727 static SDValue
5728 LowerSDIV_v4i8(SDValue X, SDValue Y, SDLoc dl, SelectionDAG &DAG) {
5729   // Convert to float
5730   // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo));
5731   // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo));
5732   X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X);
5733   Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y);
5734   X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X);
5735   Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y);
5736   // Get reciprocal estimate.
5737   // float4 recip = vrecpeq_f32(yf);
5738   Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5739                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), Y);
5740   // Because char has a smaller range than uchar, we can actually get away
5741   // without any newton steps.  This requires that we use a weird bias
5742   // of 0xb000, however (again, this has been exhaustively tested).
5743   // float4 result = as_float4(as_int4(xf*recip) + 0xb000);
5744   X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y);
5745   X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X);
5746   Y = DAG.getConstant(0xb000, MVT::i32);
5747   Y = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Y, Y, Y, Y);
5748   X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y);
5749   X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X);
5750   // Convert back to short.
5751   X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X);
5752   X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X);
5753   return X;
5754 }
5755
5756 static SDValue
5757 LowerSDIV_v4i16(SDValue N0, SDValue N1, SDLoc dl, SelectionDAG &DAG) {
5758   SDValue N2;
5759   // Convert to float.
5760   // float4 yf = vcvt_f32_s32(vmovl_s16(y));
5761   // float4 xf = vcvt_f32_s32(vmovl_s16(x));
5762   N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0);
5763   N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1);
5764   N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
5765   N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
5766
5767   // Use reciprocal estimate and one refinement step.
5768   // float4 recip = vrecpeq_f32(yf);
5769   // recip *= vrecpsq_f32(yf, recip);
5770   N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5771                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), N1);
5772   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5773                    DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
5774                    N1, N2);
5775   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
5776   // Because short has a smaller range than ushort, we can actually get away
5777   // with only a single newton step.  This requires that we use a weird bias
5778   // of 89, however (again, this has been exhaustively tested).
5779   // float4 result = as_float4(as_int4(xf*recip) + 0x89);
5780   N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
5781   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
5782   N1 = DAG.getConstant(0x89, MVT::i32);
5783   N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
5784   N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
5785   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
5786   // Convert back to integer and return.
5787   // return vmovn_s32(vcvt_s32_f32(result));
5788   N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
5789   N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
5790   return N0;
5791 }
5792
5793 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
5794   EVT VT = Op.getValueType();
5795   assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
5796          "unexpected type for custom-lowering ISD::SDIV");
5797
5798   SDLoc dl(Op);
5799   SDValue N0 = Op.getOperand(0);
5800   SDValue N1 = Op.getOperand(1);
5801   SDValue N2, N3;
5802
5803   if (VT == MVT::v8i8) {
5804     N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0);
5805     N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1);
5806
5807     N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5808                      DAG.getIntPtrConstant(4));
5809     N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5810                      DAG.getIntPtrConstant(4));
5811     N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5812                      DAG.getIntPtrConstant(0));
5813     N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5814                      DAG.getIntPtrConstant(0));
5815
5816     N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16
5817     N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16
5818
5819     N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
5820     N0 = LowerCONCAT_VECTORS(N0, DAG);
5821
5822     N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0);
5823     return N0;
5824   }
5825   return LowerSDIV_v4i16(N0, N1, dl, DAG);
5826 }
5827
5828 static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) {
5829   EVT VT = Op.getValueType();
5830   assert((VT == MVT::v4i16 || VT == MVT::v8i8) &&
5831          "unexpected type for custom-lowering ISD::UDIV");
5832
5833   SDLoc dl(Op);
5834   SDValue N0 = Op.getOperand(0);
5835   SDValue N1 = Op.getOperand(1);
5836   SDValue N2, N3;
5837
5838   if (VT == MVT::v8i8) {
5839     N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0);
5840     N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1);
5841
5842     N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5843                      DAG.getIntPtrConstant(4));
5844     N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5845                      DAG.getIntPtrConstant(4));
5846     N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0,
5847                      DAG.getIntPtrConstant(0));
5848     N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1,
5849                      DAG.getIntPtrConstant(0));
5850
5851     N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16
5852     N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16
5853
5854     N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2);
5855     N0 = LowerCONCAT_VECTORS(N0, DAG);
5856
5857     N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8,
5858                      DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, MVT::i32),
5859                      N0);
5860     return N0;
5861   }
5862
5863   // v4i16 sdiv ... Convert to float.
5864   // float4 yf = vcvt_f32_s32(vmovl_u16(y));
5865   // float4 xf = vcvt_f32_s32(vmovl_u16(x));
5866   N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0);
5867   N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1);
5868   N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0);
5869   SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1);
5870
5871   // Use reciprocal estimate and two refinement steps.
5872   // float4 recip = vrecpeq_f32(yf);
5873   // recip *= vrecpsq_f32(yf, recip);
5874   // recip *= vrecpsq_f32(yf, recip);
5875   N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5876                    DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), BN1);
5877   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5878                    DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
5879                    BN1, N2);
5880   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
5881   N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32,
5882                    DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32),
5883                    BN1, N2);
5884   N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2);
5885   // Simply multiplying by the reciprocal estimate can leave us a few ulps
5886   // too low, so we add 2 ulps (exhaustive testing shows that this is enough,
5887   // and that it will never cause us to return an answer too large).
5888   // float4 result = as_float4(as_int4(xf*recip) + 2);
5889   N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2);
5890   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0);
5891   N1 = DAG.getConstant(2, MVT::i32);
5892   N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1);
5893   N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1);
5894   N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0);
5895   // Convert back to integer and return.
5896   // return vmovn_u32(vcvt_s32_f32(result));
5897   N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0);
5898   N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0);
5899   return N0;
5900 }
5901
5902 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
5903   EVT VT = Op.getNode()->getValueType(0);
5904   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
5905
5906   unsigned Opc;
5907   bool ExtraOp = false;
5908   switch (Op.getOpcode()) {
5909   default: llvm_unreachable("Invalid code");
5910   case ISD::ADDC: Opc = ARMISD::ADDC; break;
5911   case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break;
5912   case ISD::SUBC: Opc = ARMISD::SUBC; break;
5913   case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break;
5914   }
5915
5916   if (!ExtraOp)
5917     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
5918                        Op.getOperand(1));
5919   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
5920                      Op.getOperand(1), Op.getOperand(2));
5921 }
5922
5923 SDValue ARMTargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const {
5924   assert(Subtarget->isTargetDarwin());
5925
5926   // For iOS, we want to call an alternative entry point: __sincos_stret,
5927   // return values are passed via sret.
5928   SDLoc dl(Op);
5929   SDValue Arg = Op.getOperand(0);
5930   EVT ArgVT = Arg.getValueType();
5931   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
5932
5933   MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
5934   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5935
5936   // Pair of floats / doubles used to pass the result.
5937   StructType *RetTy = StructType::get(ArgTy, ArgTy, NULL);
5938
5939   // Create stack object for sret.
5940   const uint64_t ByteSize = TLI.getDataLayout()->getTypeAllocSize(RetTy);
5941   const unsigned StackAlign = TLI.getDataLayout()->getPrefTypeAlignment(RetTy);
5942   int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
5943   SDValue SRet = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
5944
5945   ArgListTy Args;
5946   ArgListEntry Entry;
5947
5948   Entry.Node = SRet;
5949   Entry.Ty = RetTy->getPointerTo();
5950   Entry.isSExt = false;
5951   Entry.isZExt = false;
5952   Entry.isSRet = true;
5953   Args.push_back(Entry);
5954
5955   Entry.Node = Arg;
5956   Entry.Ty = ArgTy;
5957   Entry.isSExt = false;
5958   Entry.isZExt = false;
5959   Args.push_back(Entry);
5960
5961   const char *LibcallName  = (ArgVT == MVT::f64)
5962   ? "__sincos_stret" : "__sincosf_stret";
5963   SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy());
5964
5965   TargetLowering::
5966   CallLoweringInfo CLI(DAG.getEntryNode(), Type::getVoidTy(*DAG.getContext()),
5967                        false, false, false, false, 0,
5968                        CallingConv::C, /*isTaillCall=*/false,
5969                        /*doesNotRet=*/false, /*isReturnValueUsed*/false,
5970                        Callee, Args, DAG, dl);
5971   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
5972
5973   SDValue LoadSin = DAG.getLoad(ArgVT, dl, CallResult.second, SRet,
5974                                 MachinePointerInfo(), false, false, false, 0);
5975
5976   // Address of cos field.
5977   SDValue Add = DAG.getNode(ISD::ADD, dl, getPointerTy(), SRet,
5978                             DAG.getIntPtrConstant(ArgVT.getStoreSize()));
5979   SDValue LoadCos = DAG.getLoad(ArgVT, dl, LoadSin.getValue(1), Add,
5980                                 MachinePointerInfo(), false, false, false, 0);
5981
5982   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
5983   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys,
5984                      LoadSin.getValue(0), LoadCos.getValue(0));
5985 }
5986
5987 static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) {
5988   // Monotonic load/store is legal for all targets
5989   if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic)
5990     return Op;
5991
5992   // Acquire/Release load/store is not legal for targets without a
5993   // dmb or equivalent available.
5994   return SDValue();
5995 }
5996
5997 static void ReplaceREADCYCLECOUNTER(SDNode *N,
5998                                     SmallVectorImpl<SDValue> &Results,
5999                                     SelectionDAG &DAG,
6000                                     const ARMSubtarget *Subtarget) {
6001   SDLoc DL(N);
6002   SDValue Cycles32, OutChain;
6003
6004   if (Subtarget->hasPerfMon()) {
6005     // Under Power Management extensions, the cycle-count is:
6006     //    mrc p15, #0, <Rt>, c9, c13, #0
6007     SDValue Ops[] = { N->getOperand(0), // Chain
6008                       DAG.getConstant(Intrinsic::arm_mrc, MVT::i32),
6009                       DAG.getConstant(15, MVT::i32),
6010                       DAG.getConstant(0, MVT::i32),
6011                       DAG.getConstant(9, MVT::i32),
6012                       DAG.getConstant(13, MVT::i32),
6013                       DAG.getConstant(0, MVT::i32)
6014     };
6015
6016     Cycles32 = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DL,
6017                            DAG.getVTList(MVT::i32, MVT::Other), Ops);
6018     OutChain = Cycles32.getValue(1);
6019   } else {
6020     // Intrinsic is defined to return 0 on unsupported platforms. Technically
6021     // there are older ARM CPUs that have implementation-specific ways of
6022     // obtaining this information (FIXME!).
6023     Cycles32 = DAG.getConstant(0, MVT::i32);
6024     OutChain = DAG.getEntryNode();
6025   }
6026
6027
6028   SDValue Cycles64 = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64,
6029                                  Cycles32, DAG.getConstant(0, MVT::i32));
6030   Results.push_back(Cycles64);
6031   Results.push_back(OutChain);
6032 }
6033
6034 SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
6035   switch (Op.getOpcode()) {
6036   default: llvm_unreachable("Don't know how to custom lower this!");
6037   case ISD::ConstantPool:  return LowerConstantPool(Op, DAG);
6038   case ISD::BlockAddress:  return LowerBlockAddress(Op, DAG);
6039   case ISD::GlobalAddress:
6040     return Subtarget->isTargetMachO() ? LowerGlobalAddressDarwin(Op, DAG) :
6041       LowerGlobalAddressELF(Op, DAG);
6042   case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
6043   case ISD::SELECT:        return LowerSELECT(Op, DAG);
6044   case ISD::SELECT_CC:     return LowerSELECT_CC(Op, DAG);
6045   case ISD::BR_CC:         return LowerBR_CC(Op, DAG);
6046   case ISD::BR_JT:         return LowerBR_JT(Op, DAG);
6047   case ISD::VASTART:       return LowerVASTART(Op, DAG);
6048   case ISD::ATOMIC_FENCE:  return LowerATOMIC_FENCE(Op, DAG, Subtarget);
6049   case ISD::PREFETCH:      return LowerPREFETCH(Op, DAG, Subtarget);
6050   case ISD::SINT_TO_FP:
6051   case ISD::UINT_TO_FP:    return LowerINT_TO_FP(Op, DAG);
6052   case ISD::FP_TO_SINT:
6053   case ISD::FP_TO_UINT:    return LowerFP_TO_INT(Op, DAG);
6054   case ISD::FCOPYSIGN:     return LowerFCOPYSIGN(Op, DAG);
6055   case ISD::RETURNADDR:    return LowerRETURNADDR(Op, DAG);
6056   case ISD::FRAMEADDR:     return LowerFRAMEADDR(Op, DAG);
6057   case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG);
6058   case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG);
6059   case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG);
6060   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG,
6061                                                                Subtarget);
6062   case ISD::BITCAST:       return ExpandBITCAST(Op.getNode(), DAG);
6063   case ISD::SHL:
6064   case ISD::SRL:
6065   case ISD::SRA:           return LowerShift(Op.getNode(), DAG, Subtarget);
6066   case ISD::SHL_PARTS:     return LowerShiftLeftParts(Op, DAG);
6067   case ISD::SRL_PARTS:
6068   case ISD::SRA_PARTS:     return LowerShiftRightParts(Op, DAG);
6069   case ISD::CTTZ:          return LowerCTTZ(Op.getNode(), DAG, Subtarget);
6070   case ISD::CTPOP:         return LowerCTPOP(Op.getNode(), DAG, Subtarget);
6071   case ISD::SETCC:         return LowerVSETCC(Op, DAG);
6072   case ISD::ConstantFP:    return LowerConstantFP(Op, DAG, Subtarget);
6073   case ISD::BUILD_VECTOR:  return LowerBUILD_VECTOR(Op, DAG, Subtarget);
6074   case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6075   case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6076   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6077   case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
6078   case ISD::FLT_ROUNDS_:   return LowerFLT_ROUNDS_(Op, DAG);
6079   case ISD::MUL:           return LowerMUL(Op, DAG);
6080   case ISD::SDIV:          return LowerSDIV(Op, DAG);
6081   case ISD::UDIV:          return LowerUDIV(Op, DAG);
6082   case ISD::ADDC:
6083   case ISD::ADDE:
6084   case ISD::SUBC:
6085   case ISD::SUBE:          return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
6086   case ISD::ATOMIC_LOAD:
6087   case ISD::ATOMIC_STORE:  return LowerAtomicLoadStore(Op, DAG);
6088   case ISD::FSINCOS:       return LowerFSINCOS(Op, DAG);
6089   case ISD::SDIVREM:
6090   case ISD::UDIVREM:       return LowerDivRem(Op, DAG);
6091   }
6092 }
6093
6094 /// ReplaceNodeResults - Replace the results of node with an illegal result
6095 /// type with new values built out of custom code.
6096 void ARMTargetLowering::ReplaceNodeResults(SDNode *N,
6097                                            SmallVectorImpl<SDValue>&Results,
6098                                            SelectionDAG &DAG) const {
6099   SDValue Res;
6100   switch (N->getOpcode()) {
6101   default:
6102     llvm_unreachable("Don't know how to custom expand this!");
6103   case ISD::BITCAST:
6104     Res = ExpandBITCAST(N, DAG);
6105     break;
6106   case ISD::SRL:
6107   case ISD::SRA:
6108     Res = Expand64BitShift(N, DAG, Subtarget);
6109     break;
6110   case ISD::READCYCLECOUNTER:
6111     ReplaceREADCYCLECOUNTER(N, Results, DAG, Subtarget);
6112     return;
6113   }
6114   if (Res.getNode())
6115     Results.push_back(Res);
6116 }
6117
6118 //===----------------------------------------------------------------------===//
6119 //                           ARM Scheduler Hooks
6120 //===----------------------------------------------------------------------===//
6121
6122 /// SetupEntryBlockForSjLj - Insert code into the entry block that creates and
6123 /// registers the function context.
6124 void ARMTargetLowering::
6125 SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB,
6126                        MachineBasicBlock *DispatchBB, int FI) const {
6127   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6128   DebugLoc dl = MI->getDebugLoc();
6129   MachineFunction *MF = MBB->getParent();
6130   MachineRegisterInfo *MRI = &MF->getRegInfo();
6131   MachineConstantPool *MCP = MF->getConstantPool();
6132   ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
6133   const Function *F = MF->getFunction();
6134
6135   bool isThumb = Subtarget->isThumb();
6136   bool isThumb2 = Subtarget->isThumb2();
6137
6138   unsigned PCLabelId = AFI->createPICLabelUId();
6139   unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8;
6140   ARMConstantPoolValue *CPV =
6141     ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj);
6142   unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
6143
6144   const TargetRegisterClass *TRC = isThumb ?
6145     (const TargetRegisterClass*)&ARM::tGPRRegClass :
6146     (const TargetRegisterClass*)&ARM::GPRRegClass;
6147
6148   // Grab constant pool and fixed stack memory operands.
6149   MachineMemOperand *CPMMO =
6150     MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(),
6151                              MachineMemOperand::MOLoad, 4, 4);
6152
6153   MachineMemOperand *FIMMOSt =
6154     MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
6155                              MachineMemOperand::MOStore, 4, 4);
6156
6157   // Load the address of the dispatch MBB into the jump buffer.
6158   if (isThumb2) {
6159     // Incoming value: jbuf
6160     //   ldr.n  r5, LCPI1_1
6161     //   orr    r5, r5, #1
6162     //   add    r5, pc
6163     //   str    r5, [$jbuf, #+4] ; &jbuf[1]
6164     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6165     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1)
6166                    .addConstantPoolIndex(CPI)
6167                    .addMemOperand(CPMMO));
6168     // Set the low bit because of thumb mode.
6169     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6170     AddDefaultCC(
6171       AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2)
6172                      .addReg(NewVReg1, RegState::Kill)
6173                      .addImm(0x01)));
6174     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6175     BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3)
6176       .addReg(NewVReg2, RegState::Kill)
6177       .addImm(PCLabelId);
6178     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12))
6179                    .addReg(NewVReg3, RegState::Kill)
6180                    .addFrameIndex(FI)
6181                    .addImm(36)  // &jbuf[1] :: pc
6182                    .addMemOperand(FIMMOSt));
6183   } else if (isThumb) {
6184     // Incoming value: jbuf
6185     //   ldr.n  r1, LCPI1_4
6186     //   add    r1, pc
6187     //   mov    r2, #1
6188     //   orrs   r1, r2
6189     //   add    r2, $jbuf, #+4 ; &jbuf[1]
6190     //   str    r1, [r2]
6191     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6192     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1)
6193                    .addConstantPoolIndex(CPI)
6194                    .addMemOperand(CPMMO));
6195     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6196     BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2)
6197       .addReg(NewVReg1, RegState::Kill)
6198       .addImm(PCLabelId);
6199     // Set the low bit because of thumb mode.
6200     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6201     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3)
6202                    .addReg(ARM::CPSR, RegState::Define)
6203                    .addImm(1));
6204     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6205     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4)
6206                    .addReg(ARM::CPSR, RegState::Define)
6207                    .addReg(NewVReg2, RegState::Kill)
6208                    .addReg(NewVReg3, RegState::Kill));
6209     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6210     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tADDrSPi), NewVReg5)
6211                    .addFrameIndex(FI)
6212                    .addImm(36)); // &jbuf[1] :: pc
6213     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi))
6214                    .addReg(NewVReg4, RegState::Kill)
6215                    .addReg(NewVReg5, RegState::Kill)
6216                    .addImm(0)
6217                    .addMemOperand(FIMMOSt));
6218   } else {
6219     // Incoming value: jbuf
6220     //   ldr  r1, LCPI1_1
6221     //   add  r1, pc, r1
6222     //   str  r1, [$jbuf, #+4] ; &jbuf[1]
6223     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6224     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12),  NewVReg1)
6225                    .addConstantPoolIndex(CPI)
6226                    .addImm(0)
6227                    .addMemOperand(CPMMO));
6228     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6229     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2)
6230                    .addReg(NewVReg1, RegState::Kill)
6231                    .addImm(PCLabelId));
6232     AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12))
6233                    .addReg(NewVReg2, RegState::Kill)
6234                    .addFrameIndex(FI)
6235                    .addImm(36)  // &jbuf[1] :: pc
6236                    .addMemOperand(FIMMOSt));
6237   }
6238 }
6239
6240 MachineBasicBlock *ARMTargetLowering::
6241 EmitSjLjDispatchBlock(MachineInstr *MI, MachineBasicBlock *MBB) const {
6242   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6243   DebugLoc dl = MI->getDebugLoc();
6244   MachineFunction *MF = MBB->getParent();
6245   MachineRegisterInfo *MRI = &MF->getRegInfo();
6246   ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>();
6247   MachineFrameInfo *MFI = MF->getFrameInfo();
6248   int FI = MFI->getFunctionContextIndex();
6249
6250   const TargetRegisterClass *TRC = Subtarget->isThumb() ?
6251     (const TargetRegisterClass*)&ARM::tGPRRegClass :
6252     (const TargetRegisterClass*)&ARM::GPRnopcRegClass;
6253
6254   // Get a mapping of the call site numbers to all of the landing pads they're
6255   // associated with.
6256   DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad;
6257   unsigned MaxCSNum = 0;
6258   MachineModuleInfo &MMI = MF->getMMI();
6259   for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E;
6260        ++BB) {
6261     if (!BB->isLandingPad()) continue;
6262
6263     // FIXME: We should assert that the EH_LABEL is the first MI in the landing
6264     // pad.
6265     for (MachineBasicBlock::iterator
6266            II = BB->begin(), IE = BB->end(); II != IE; ++II) {
6267       if (!II->isEHLabel()) continue;
6268
6269       MCSymbol *Sym = II->getOperand(0).getMCSymbol();
6270       if (!MMI.hasCallSiteLandingPad(Sym)) continue;
6271
6272       SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym);
6273       for (SmallVectorImpl<unsigned>::iterator
6274              CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end();
6275            CSI != CSE; ++CSI) {
6276         CallSiteNumToLPad[*CSI].push_back(BB);
6277         MaxCSNum = std::max(MaxCSNum, *CSI);
6278       }
6279       break;
6280     }
6281   }
6282
6283   // Get an ordered list of the machine basic blocks for the jump table.
6284   std::vector<MachineBasicBlock*> LPadList;
6285   SmallPtrSet<MachineBasicBlock*, 64> InvokeBBs;
6286   LPadList.reserve(CallSiteNumToLPad.size());
6287   for (unsigned I = 1; I <= MaxCSNum; ++I) {
6288     SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I];
6289     for (SmallVectorImpl<MachineBasicBlock*>::iterator
6290            II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) {
6291       LPadList.push_back(*II);
6292       InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end());
6293     }
6294   }
6295
6296   assert(!LPadList.empty() &&
6297          "No landing pad destinations for the dispatch jump table!");
6298
6299   // Create the jump table and associated information.
6300   MachineJumpTableInfo *JTI =
6301     MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline);
6302   unsigned MJTI = JTI->createJumpTableIndex(LPadList);
6303   unsigned UId = AFI->createJumpTableUId();
6304   Reloc::Model RelocM = getTargetMachine().getRelocationModel();
6305
6306   // Create the MBBs for the dispatch code.
6307
6308   // Shove the dispatch's address into the return slot in the function context.
6309   MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock();
6310   DispatchBB->setIsLandingPad();
6311
6312   MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock();
6313   unsigned trap_opcode;
6314   if (Subtarget->isThumb())
6315     trap_opcode = ARM::tTRAP;
6316   else
6317     trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP;
6318
6319   BuildMI(TrapBB, dl, TII->get(trap_opcode));
6320   DispatchBB->addSuccessor(TrapBB);
6321
6322   MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock();
6323   DispatchBB->addSuccessor(DispContBB);
6324
6325   // Insert and MBBs.
6326   MF->insert(MF->end(), DispatchBB);
6327   MF->insert(MF->end(), DispContBB);
6328   MF->insert(MF->end(), TrapBB);
6329
6330   // Insert code into the entry block that creates and registers the function
6331   // context.
6332   SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI);
6333
6334   MachineMemOperand *FIMMOLd =
6335     MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI),
6336                              MachineMemOperand::MOLoad |
6337                              MachineMemOperand::MOVolatile, 4, 4);
6338
6339   MachineInstrBuilder MIB;
6340   MIB = BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup));
6341
6342   const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII);
6343   const ARMBaseRegisterInfo &RI = AII->getRegisterInfo();
6344
6345   // Add a register mask with no preserved registers.  This results in all
6346   // registers being marked as clobbered.
6347   MIB.addRegMask(RI.getNoPreservedMask());
6348
6349   unsigned NumLPads = LPadList.size();
6350   if (Subtarget->isThumb2()) {
6351     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6352     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1)
6353                    .addFrameIndex(FI)
6354                    .addImm(4)
6355                    .addMemOperand(FIMMOLd));
6356
6357     if (NumLPads < 256) {
6358       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri))
6359                      .addReg(NewVReg1)
6360                      .addImm(LPadList.size()));
6361     } else {
6362       unsigned VReg1 = MRI->createVirtualRegister(TRC);
6363       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVi16), VReg1)
6364                      .addImm(NumLPads & 0xFFFF));
6365
6366       unsigned VReg2 = VReg1;
6367       if ((NumLPads & 0xFFFF0000) != 0) {
6368         VReg2 = MRI->createVirtualRegister(TRC);
6369         AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVTi16), VReg2)
6370                        .addReg(VReg1)
6371                        .addImm(NumLPads >> 16));
6372       }
6373
6374       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPrr))
6375                      .addReg(NewVReg1)
6376                      .addReg(VReg2));
6377     }
6378
6379     BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc))
6380       .addMBB(TrapBB)
6381       .addImm(ARMCC::HI)
6382       .addReg(ARM::CPSR);
6383
6384     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6385     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg3)
6386                    .addJumpTableIndex(MJTI)
6387                    .addImm(UId));
6388
6389     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6390     AddDefaultCC(
6391       AddDefaultPred(
6392         BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg4)
6393         .addReg(NewVReg3, RegState::Kill)
6394         .addReg(NewVReg1)
6395         .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
6396
6397     BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT))
6398       .addReg(NewVReg4, RegState::Kill)
6399       .addReg(NewVReg1)
6400       .addJumpTableIndex(MJTI)
6401       .addImm(UId);
6402   } else if (Subtarget->isThumb()) {
6403     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6404     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1)
6405                    .addFrameIndex(FI)
6406                    .addImm(1)
6407                    .addMemOperand(FIMMOLd));
6408
6409     if (NumLPads < 256) {
6410       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8))
6411                      .addReg(NewVReg1)
6412                      .addImm(NumLPads));
6413     } else {
6414       MachineConstantPool *ConstantPool = MF->getConstantPool();
6415       Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6416       const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
6417
6418       // MachineConstantPool wants an explicit alignment.
6419       unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
6420       if (Align == 0)
6421         Align = getDataLayout()->getTypeAllocSize(C->getType());
6422       unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6423
6424       unsigned VReg1 = MRI->createVirtualRegister(TRC);
6425       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRpci))
6426                      .addReg(VReg1, RegState::Define)
6427                      .addConstantPoolIndex(Idx));
6428       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPr))
6429                      .addReg(NewVReg1)
6430                      .addReg(VReg1));
6431     }
6432
6433     BuildMI(DispatchBB, dl, TII->get(ARM::tBcc))
6434       .addMBB(TrapBB)
6435       .addImm(ARMCC::HI)
6436       .addReg(ARM::CPSR);
6437
6438     unsigned NewVReg2 = MRI->createVirtualRegister(TRC);
6439     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2)
6440                    .addReg(ARM::CPSR, RegState::Define)
6441                    .addReg(NewVReg1)
6442                    .addImm(2));
6443
6444     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6445     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3)
6446                    .addJumpTableIndex(MJTI)
6447                    .addImm(UId));
6448
6449     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6450     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4)
6451                    .addReg(ARM::CPSR, RegState::Define)
6452                    .addReg(NewVReg2, RegState::Kill)
6453                    .addReg(NewVReg3));
6454
6455     MachineMemOperand *JTMMOLd =
6456       MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
6457                                MachineMemOperand::MOLoad, 4, 4);
6458
6459     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6460     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5)
6461                    .addReg(NewVReg4, RegState::Kill)
6462                    .addImm(0)
6463                    .addMemOperand(JTMMOLd));
6464
6465     unsigned NewVReg6 = NewVReg5;
6466     if (RelocM == Reloc::PIC_) {
6467       NewVReg6 = MRI->createVirtualRegister(TRC);
6468       AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6)
6469                      .addReg(ARM::CPSR, RegState::Define)
6470                      .addReg(NewVReg5, RegState::Kill)
6471                      .addReg(NewVReg3));
6472     }
6473
6474     BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr))
6475       .addReg(NewVReg6, RegState::Kill)
6476       .addJumpTableIndex(MJTI)
6477       .addImm(UId);
6478   } else {
6479     unsigned NewVReg1 = MRI->createVirtualRegister(TRC);
6480     AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1)
6481                    .addFrameIndex(FI)
6482                    .addImm(4)
6483                    .addMemOperand(FIMMOLd));
6484
6485     if (NumLPads < 256) {
6486       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri))
6487                      .addReg(NewVReg1)
6488                      .addImm(NumLPads));
6489     } else if (Subtarget->hasV6T2Ops() && isUInt<16>(NumLPads)) {
6490       unsigned VReg1 = MRI->createVirtualRegister(TRC);
6491       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVi16), VReg1)
6492                      .addImm(NumLPads & 0xFFFF));
6493
6494       unsigned VReg2 = VReg1;
6495       if ((NumLPads & 0xFFFF0000) != 0) {
6496         VReg2 = MRI->createVirtualRegister(TRC);
6497         AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVTi16), VReg2)
6498                        .addReg(VReg1)
6499                        .addImm(NumLPads >> 16));
6500       }
6501
6502       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
6503                      .addReg(NewVReg1)
6504                      .addReg(VReg2));
6505     } else {
6506       MachineConstantPool *ConstantPool = MF->getConstantPool();
6507       Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6508       const Constant *C = ConstantInt::get(Int32Ty, NumLPads);
6509
6510       // MachineConstantPool wants an explicit alignment.
6511       unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
6512       if (Align == 0)
6513         Align = getDataLayout()->getTypeAllocSize(C->getType());
6514       unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6515
6516       unsigned VReg1 = MRI->createVirtualRegister(TRC);
6517       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRcp))
6518                      .addReg(VReg1, RegState::Define)
6519                      .addConstantPoolIndex(Idx)
6520                      .addImm(0));
6521       AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr))
6522                      .addReg(NewVReg1)
6523                      .addReg(VReg1, RegState::Kill));
6524     }
6525
6526     BuildMI(DispatchBB, dl, TII->get(ARM::Bcc))
6527       .addMBB(TrapBB)
6528       .addImm(ARMCC::HI)
6529       .addReg(ARM::CPSR);
6530
6531     unsigned NewVReg3 = MRI->createVirtualRegister(TRC);
6532     AddDefaultCC(
6533       AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg3)
6534                      .addReg(NewVReg1)
6535                      .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2))));
6536     unsigned NewVReg4 = MRI->createVirtualRegister(TRC);
6537     AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg4)
6538                    .addJumpTableIndex(MJTI)
6539                    .addImm(UId));
6540
6541     MachineMemOperand *JTMMOLd =
6542       MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(),
6543                                MachineMemOperand::MOLoad, 4, 4);
6544     unsigned NewVReg5 = MRI->createVirtualRegister(TRC);
6545     AddDefaultPred(
6546       BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg5)
6547       .addReg(NewVReg3, RegState::Kill)
6548       .addReg(NewVReg4)
6549       .addImm(0)
6550       .addMemOperand(JTMMOLd));
6551
6552     if (RelocM == Reloc::PIC_) {
6553       BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd))
6554         .addReg(NewVReg5, RegState::Kill)
6555         .addReg(NewVReg4)
6556         .addJumpTableIndex(MJTI)
6557         .addImm(UId);
6558     } else {
6559       BuildMI(DispContBB, dl, TII->get(ARM::BR_JTr))
6560         .addReg(NewVReg5, RegState::Kill)
6561         .addJumpTableIndex(MJTI)
6562         .addImm(UId);
6563     }
6564   }
6565
6566   // Add the jump table entries as successors to the MBB.
6567   SmallPtrSet<MachineBasicBlock*, 8> SeenMBBs;
6568   for (std::vector<MachineBasicBlock*>::iterator
6569          I = LPadList.begin(), E = LPadList.end(); I != E; ++I) {
6570     MachineBasicBlock *CurMBB = *I;
6571     if (SeenMBBs.insert(CurMBB))
6572       DispContBB->addSuccessor(CurMBB);
6573   }
6574
6575   // N.B. the order the invoke BBs are processed in doesn't matter here.
6576   const MCPhysReg *SavedRegs = RI.getCalleeSavedRegs(MF);
6577   SmallVector<MachineBasicBlock*, 64> MBBLPads;
6578   for (SmallPtrSet<MachineBasicBlock*, 64>::iterator
6579          I = InvokeBBs.begin(), E = InvokeBBs.end(); I != E; ++I) {
6580     MachineBasicBlock *BB = *I;
6581
6582     // Remove the landing pad successor from the invoke block and replace it
6583     // with the new dispatch block.
6584     SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(),
6585                                                   BB->succ_end());
6586     while (!Successors.empty()) {
6587       MachineBasicBlock *SMBB = Successors.pop_back_val();
6588       if (SMBB->isLandingPad()) {
6589         BB->removeSuccessor(SMBB);
6590         MBBLPads.push_back(SMBB);
6591       }
6592     }
6593
6594     BB->addSuccessor(DispatchBB);
6595
6596     // Find the invoke call and mark all of the callee-saved registers as
6597     // 'implicit defined' so that they're spilled. This prevents code from
6598     // moving instructions to before the EH block, where they will never be
6599     // executed.
6600     for (MachineBasicBlock::reverse_iterator
6601            II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) {
6602       if (!II->isCall()) continue;
6603
6604       DenseMap<unsigned, bool> DefRegs;
6605       for (MachineInstr::mop_iterator
6606              OI = II->operands_begin(), OE = II->operands_end();
6607            OI != OE; ++OI) {
6608         if (!OI->isReg()) continue;
6609         DefRegs[OI->getReg()] = true;
6610       }
6611
6612       MachineInstrBuilder MIB(*MF, &*II);
6613
6614       for (unsigned i = 0; SavedRegs[i] != 0; ++i) {
6615         unsigned Reg = SavedRegs[i];
6616         if (Subtarget->isThumb2() &&
6617             !ARM::tGPRRegClass.contains(Reg) &&
6618             !ARM::hGPRRegClass.contains(Reg))
6619           continue;
6620         if (Subtarget->isThumb1Only() && !ARM::tGPRRegClass.contains(Reg))
6621           continue;
6622         if (!Subtarget->isThumb() && !ARM::GPRRegClass.contains(Reg))
6623           continue;
6624         if (!DefRegs[Reg])
6625           MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead);
6626       }
6627
6628       break;
6629     }
6630   }
6631
6632   // Mark all former landing pads as non-landing pads. The dispatch is the only
6633   // landing pad now.
6634   for (SmallVectorImpl<MachineBasicBlock*>::iterator
6635          I = MBBLPads.begin(), E = MBBLPads.end(); I != E; ++I)
6636     (*I)->setIsLandingPad(false);
6637
6638   // The instruction is gone now.
6639   MI->eraseFromParent();
6640
6641   return MBB;
6642 }
6643
6644 static
6645 MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) {
6646   for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(),
6647        E = MBB->succ_end(); I != E; ++I)
6648     if (*I != Succ)
6649       return *I;
6650   llvm_unreachable("Expecting a BB with two successors!");
6651 }
6652
6653 /// Return the load opcode for a given load size. If load size >= 8,
6654 /// neon opcode will be returned.
6655 static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) {
6656   if (LdSize >= 8)
6657     return LdSize == 16 ? ARM::VLD1q32wb_fixed
6658                         : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0;
6659   if (IsThumb1)
6660     return LdSize == 4 ? ARM::tLDRi
6661                        : LdSize == 2 ? ARM::tLDRHi
6662                                      : LdSize == 1 ? ARM::tLDRBi : 0;
6663   if (IsThumb2)
6664     return LdSize == 4 ? ARM::t2LDR_POST
6665                        : LdSize == 2 ? ARM::t2LDRH_POST
6666                                      : LdSize == 1 ? ARM::t2LDRB_POST : 0;
6667   return LdSize == 4 ? ARM::LDR_POST_IMM
6668                      : LdSize == 2 ? ARM::LDRH_POST
6669                                    : LdSize == 1 ? ARM::LDRB_POST_IMM : 0;
6670 }
6671
6672 /// Return the store opcode for a given store size. If store size >= 8,
6673 /// neon opcode will be returned.
6674 static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) {
6675   if (StSize >= 8)
6676     return StSize == 16 ? ARM::VST1q32wb_fixed
6677                         : StSize == 8 ? ARM::VST1d32wb_fixed : 0;
6678   if (IsThumb1)
6679     return StSize == 4 ? ARM::tSTRi
6680                        : StSize == 2 ? ARM::tSTRHi
6681                                      : StSize == 1 ? ARM::tSTRBi : 0;
6682   if (IsThumb2)
6683     return StSize == 4 ? ARM::t2STR_POST
6684                        : StSize == 2 ? ARM::t2STRH_POST
6685                                      : StSize == 1 ? ARM::t2STRB_POST : 0;
6686   return StSize == 4 ? ARM::STR_POST_IMM
6687                      : StSize == 2 ? ARM::STRH_POST
6688                                    : StSize == 1 ? ARM::STRB_POST_IMM : 0;
6689 }
6690
6691 /// Emit a post-increment load operation with given size. The instructions
6692 /// will be added to BB at Pos.
6693 static void emitPostLd(MachineBasicBlock *BB, MachineInstr *Pos,
6694                        const TargetInstrInfo *TII, DebugLoc dl,
6695                        unsigned LdSize, unsigned Data, unsigned AddrIn,
6696                        unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
6697   unsigned LdOpc = getLdOpcode(LdSize, IsThumb1, IsThumb2);
6698   assert(LdOpc != 0 && "Should have a load opcode");
6699   if (LdSize >= 8) {
6700     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6701                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6702                        .addImm(0));
6703   } else if (IsThumb1) {
6704     // load + update AddrIn
6705     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6706                        .addReg(AddrIn).addImm(0));
6707     MachineInstrBuilder MIB =
6708         BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
6709     MIB = AddDefaultT1CC(MIB);
6710     MIB.addReg(AddrIn).addImm(LdSize);
6711     AddDefaultPred(MIB);
6712   } else if (IsThumb2) {
6713     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6714                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6715                        .addImm(LdSize));
6716   } else { // arm
6717     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data)
6718                        .addReg(AddrOut, RegState::Define).addReg(AddrIn)
6719                        .addReg(0).addImm(LdSize));
6720   }
6721 }
6722
6723 /// Emit a post-increment store operation with given size. The instructions
6724 /// will be added to BB at Pos.
6725 static void emitPostSt(MachineBasicBlock *BB, MachineInstr *Pos,
6726                        const TargetInstrInfo *TII, DebugLoc dl,
6727                        unsigned StSize, unsigned Data, unsigned AddrIn,
6728                        unsigned AddrOut, bool IsThumb1, bool IsThumb2) {
6729   unsigned StOpc = getStOpcode(StSize, IsThumb1, IsThumb2);
6730   assert(StOpc != 0 && "Should have a store opcode");
6731   if (StSize >= 8) {
6732     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6733                        .addReg(AddrIn).addImm(0).addReg(Data));
6734   } else if (IsThumb1) {
6735     // store + update AddrIn
6736     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc)).addReg(Data)
6737                        .addReg(AddrIn).addImm(0));
6738     MachineInstrBuilder MIB =
6739         BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut);
6740     MIB = AddDefaultT1CC(MIB);
6741     MIB.addReg(AddrIn).addImm(StSize);
6742     AddDefaultPred(MIB);
6743   } else if (IsThumb2) {
6744     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6745                        .addReg(Data).addReg(AddrIn).addImm(StSize));
6746   } else { // arm
6747     AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut)
6748                        .addReg(Data).addReg(AddrIn).addReg(0)
6749                        .addImm(StSize));
6750   }
6751 }
6752
6753 MachineBasicBlock *
6754 ARMTargetLowering::EmitStructByval(MachineInstr *MI,
6755                                    MachineBasicBlock *BB) const {
6756   // This pseudo instruction has 3 operands: dst, src, size
6757   // We expand it to a loop if size > Subtarget->getMaxInlineSizeThreshold().
6758   // Otherwise, we will generate unrolled scalar copies.
6759   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6760   const BasicBlock *LLVM_BB = BB->getBasicBlock();
6761   MachineFunction::iterator It = BB;
6762   ++It;
6763
6764   unsigned dest = MI->getOperand(0).getReg();
6765   unsigned src = MI->getOperand(1).getReg();
6766   unsigned SizeVal = MI->getOperand(2).getImm();
6767   unsigned Align = MI->getOperand(3).getImm();
6768   DebugLoc dl = MI->getDebugLoc();
6769
6770   MachineFunction *MF = BB->getParent();
6771   MachineRegisterInfo &MRI = MF->getRegInfo();
6772   unsigned UnitSize = 0;
6773   const TargetRegisterClass *TRC = nullptr;
6774   const TargetRegisterClass *VecTRC = nullptr;
6775
6776   bool IsThumb1 = Subtarget->isThumb1Only();
6777   bool IsThumb2 = Subtarget->isThumb2();
6778
6779   if (Align & 1) {
6780     UnitSize = 1;
6781   } else if (Align & 2) {
6782     UnitSize = 2;
6783   } else {
6784     // Check whether we can use NEON instructions.
6785     if (!MF->getFunction()->getAttributes().
6786           hasAttribute(AttributeSet::FunctionIndex,
6787                        Attribute::NoImplicitFloat) &&
6788         Subtarget->hasNEON()) {
6789       if ((Align % 16 == 0) && SizeVal >= 16)
6790         UnitSize = 16;
6791       else if ((Align % 8 == 0) && SizeVal >= 8)
6792         UnitSize = 8;
6793     }
6794     // Can't use NEON instructions.
6795     if (UnitSize == 0)
6796       UnitSize = 4;
6797   }
6798
6799   // Select the correct opcode and register class for unit size load/store
6800   bool IsNeon = UnitSize >= 8;
6801   TRC = (IsThumb1 || IsThumb2) ? (const TargetRegisterClass *)&ARM::tGPRRegClass
6802                                : (const TargetRegisterClass *)&ARM::GPRRegClass;
6803   if (IsNeon)
6804     VecTRC = UnitSize == 16
6805                  ? (const TargetRegisterClass *)&ARM::DPairRegClass
6806                  : UnitSize == 8
6807                        ? (const TargetRegisterClass *)&ARM::DPRRegClass
6808                        : nullptr;
6809
6810   unsigned BytesLeft = SizeVal % UnitSize;
6811   unsigned LoopSize = SizeVal - BytesLeft;
6812
6813   if (SizeVal <= Subtarget->getMaxInlineSizeThreshold()) {
6814     // Use LDR and STR to copy.
6815     // [scratch, srcOut] = LDR_POST(srcIn, UnitSize)
6816     // [destOut] = STR_POST(scratch, destIn, UnitSize)
6817     unsigned srcIn = src;
6818     unsigned destIn = dest;
6819     for (unsigned i = 0; i < LoopSize; i+=UnitSize) {
6820       unsigned srcOut = MRI.createVirtualRegister(TRC);
6821       unsigned destOut = MRI.createVirtualRegister(TRC);
6822       unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
6823       emitPostLd(BB, MI, TII, dl, UnitSize, scratch, srcIn, srcOut,
6824                  IsThumb1, IsThumb2);
6825       emitPostSt(BB, MI, TII, dl, UnitSize, scratch, destIn, destOut,
6826                  IsThumb1, IsThumb2);
6827       srcIn = srcOut;
6828       destIn = destOut;
6829     }
6830
6831     // Handle the leftover bytes with LDRB and STRB.
6832     // [scratch, srcOut] = LDRB_POST(srcIn, 1)
6833     // [destOut] = STRB_POST(scratch, destIn, 1)
6834     for (unsigned i = 0; i < BytesLeft; i++) {
6835       unsigned srcOut = MRI.createVirtualRegister(TRC);
6836       unsigned destOut = MRI.createVirtualRegister(TRC);
6837       unsigned scratch = MRI.createVirtualRegister(TRC);
6838       emitPostLd(BB, MI, TII, dl, 1, scratch, srcIn, srcOut,
6839                  IsThumb1, IsThumb2);
6840       emitPostSt(BB, MI, TII, dl, 1, scratch, destIn, destOut,
6841                  IsThumb1, IsThumb2);
6842       srcIn = srcOut;
6843       destIn = destOut;
6844     }
6845     MI->eraseFromParent();   // The instruction is gone now.
6846     return BB;
6847   }
6848
6849   // Expand the pseudo op to a loop.
6850   // thisMBB:
6851   //   ...
6852   //   movw varEnd, # --> with thumb2
6853   //   movt varEnd, #
6854   //   ldrcp varEnd, idx --> without thumb2
6855   //   fallthrough --> loopMBB
6856   // loopMBB:
6857   //   PHI varPhi, varEnd, varLoop
6858   //   PHI srcPhi, src, srcLoop
6859   //   PHI destPhi, dst, destLoop
6860   //   [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
6861   //   [destLoop] = STR_POST(scratch, destPhi, UnitSize)
6862   //   subs varLoop, varPhi, #UnitSize
6863   //   bne loopMBB
6864   //   fallthrough --> exitMBB
6865   // exitMBB:
6866   //   epilogue to handle left-over bytes
6867   //   [scratch, srcOut] = LDRB_POST(srcLoop, 1)
6868   //   [destOut] = STRB_POST(scratch, destLoop, 1)
6869   MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB);
6870   MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB);
6871   MF->insert(It, loopMBB);
6872   MF->insert(It, exitMBB);
6873
6874   // Transfer the remainder of BB and its successor edges to exitMBB.
6875   exitMBB->splice(exitMBB->begin(), BB,
6876                   std::next(MachineBasicBlock::iterator(MI)), BB->end());
6877   exitMBB->transferSuccessorsAndUpdatePHIs(BB);
6878
6879   // Load an immediate to varEnd.
6880   unsigned varEnd = MRI.createVirtualRegister(TRC);
6881   if (IsThumb2) {
6882     unsigned Vtmp = varEnd;
6883     if ((LoopSize & 0xFFFF0000) != 0)
6884       Vtmp = MRI.createVirtualRegister(TRC);
6885     AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2MOVi16), Vtmp)
6886                        .addImm(LoopSize & 0xFFFF));
6887
6888     if ((LoopSize & 0xFFFF0000) != 0)
6889       AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2MOVTi16), varEnd)
6890                          .addReg(Vtmp).addImm(LoopSize >> 16));
6891   } else {
6892     MachineConstantPool *ConstantPool = MF->getConstantPool();
6893     Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext());
6894     const Constant *C = ConstantInt::get(Int32Ty, LoopSize);
6895
6896     // MachineConstantPool wants an explicit alignment.
6897     unsigned Align = getDataLayout()->getPrefTypeAlignment(Int32Ty);
6898     if (Align == 0)
6899       Align = getDataLayout()->getTypeAllocSize(C->getType());
6900     unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6901
6902     if (IsThumb1)
6903       AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::tLDRpci)).addReg(
6904           varEnd, RegState::Define).addConstantPoolIndex(Idx));
6905     else
6906       AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::LDRcp)).addReg(
6907           varEnd, RegState::Define).addConstantPoolIndex(Idx).addImm(0));
6908   }
6909   BB->addSuccessor(loopMBB);
6910
6911   // Generate the loop body:
6912   //   varPhi = PHI(varLoop, varEnd)
6913   //   srcPhi = PHI(srcLoop, src)
6914   //   destPhi = PHI(destLoop, dst)
6915   MachineBasicBlock *entryBB = BB;
6916   BB = loopMBB;
6917   unsigned varLoop = MRI.createVirtualRegister(TRC);
6918   unsigned varPhi = MRI.createVirtualRegister(TRC);
6919   unsigned srcLoop = MRI.createVirtualRegister(TRC);
6920   unsigned srcPhi = MRI.createVirtualRegister(TRC);
6921   unsigned destLoop = MRI.createVirtualRegister(TRC);
6922   unsigned destPhi = MRI.createVirtualRegister(TRC);
6923
6924   BuildMI(*BB, BB->begin(), dl, TII->get(ARM::PHI), varPhi)
6925     .addReg(varLoop).addMBB(loopMBB)
6926     .addReg(varEnd).addMBB(entryBB);
6927   BuildMI(BB, dl, TII->get(ARM::PHI), srcPhi)
6928     .addReg(srcLoop).addMBB(loopMBB)
6929     .addReg(src).addMBB(entryBB);
6930   BuildMI(BB, dl, TII->get(ARM::PHI), destPhi)
6931     .addReg(destLoop).addMBB(loopMBB)
6932     .addReg(dest).addMBB(entryBB);
6933
6934   //   [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize)
6935   //   [destLoop] = STR_POST(scratch, destPhi, UnitSiz)
6936   unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC);
6937   emitPostLd(BB, BB->end(), TII, dl, UnitSize, scratch, srcPhi, srcLoop,
6938              IsThumb1, IsThumb2);
6939   emitPostSt(BB, BB->end(), TII, dl, UnitSize, scratch, destPhi, destLoop,
6940              IsThumb1, IsThumb2);
6941
6942   // Decrement loop variable by UnitSize.
6943   if (IsThumb1) {
6944     MachineInstrBuilder MIB =
6945         BuildMI(*BB, BB->end(), dl, TII->get(ARM::tSUBi8), varLoop);
6946     MIB = AddDefaultT1CC(MIB);
6947     MIB.addReg(varPhi).addImm(UnitSize);
6948     AddDefaultPred(MIB);
6949   } else {
6950     MachineInstrBuilder MIB =
6951         BuildMI(*BB, BB->end(), dl,
6952                 TII->get(IsThumb2 ? ARM::t2SUBri : ARM::SUBri), varLoop);
6953     AddDefaultCC(AddDefaultPred(MIB.addReg(varPhi).addImm(UnitSize)));
6954     MIB->getOperand(5).setReg(ARM::CPSR);
6955     MIB->getOperand(5).setIsDef(true);
6956   }
6957   BuildMI(*BB, BB->end(), dl,
6958           TII->get(IsThumb1 ? ARM::tBcc : IsThumb2 ? ARM::t2Bcc : ARM::Bcc))
6959       .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR);
6960
6961   // loopMBB can loop back to loopMBB or fall through to exitMBB.
6962   BB->addSuccessor(loopMBB);
6963   BB->addSuccessor(exitMBB);
6964
6965   // Add epilogue to handle BytesLeft.
6966   BB = exitMBB;
6967   MachineInstr *StartOfExit = exitMBB->begin();
6968
6969   //   [scratch, srcOut] = LDRB_POST(srcLoop, 1)
6970   //   [destOut] = STRB_POST(scratch, destLoop, 1)
6971   unsigned srcIn = srcLoop;
6972   unsigned destIn = destLoop;
6973   for (unsigned i = 0; i < BytesLeft; i++) {
6974     unsigned srcOut = MRI.createVirtualRegister(TRC);
6975     unsigned destOut = MRI.createVirtualRegister(TRC);
6976     unsigned scratch = MRI.createVirtualRegister(TRC);
6977     emitPostLd(BB, StartOfExit, TII, dl, 1, scratch, srcIn, srcOut,
6978                IsThumb1, IsThumb2);
6979     emitPostSt(BB, StartOfExit, TII, dl, 1, scratch, destIn, destOut,
6980                IsThumb1, IsThumb2);
6981     srcIn = srcOut;
6982     destIn = destOut;
6983   }
6984
6985   MI->eraseFromParent();   // The instruction is gone now.
6986   return BB;
6987 }
6988
6989 MachineBasicBlock *
6990 ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
6991                                                MachineBasicBlock *BB) const {
6992   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6993   DebugLoc dl = MI->getDebugLoc();
6994   bool isThumb2 = Subtarget->isThumb2();
6995   switch (MI->getOpcode()) {
6996   default: {
6997     MI->dump();
6998     llvm_unreachable("Unexpected instr type to insert");
6999   }
7000   // The Thumb2 pre-indexed stores have the same MI operands, they just
7001   // define them differently in the .td files from the isel patterns, so
7002   // they need pseudos.
7003   case ARM::t2STR_preidx:
7004     MI->setDesc(TII->get(ARM::t2STR_PRE));
7005     return BB;
7006   case ARM::t2STRB_preidx:
7007     MI->setDesc(TII->get(ARM::t2STRB_PRE));
7008     return BB;
7009   case ARM::t2STRH_preidx:
7010     MI->setDesc(TII->get(ARM::t2STRH_PRE));
7011     return BB;
7012
7013   case ARM::STRi_preidx:
7014   case ARM::STRBi_preidx: {
7015     unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ?
7016       ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM;
7017     // Decode the offset.
7018     unsigned Offset = MI->getOperand(4).getImm();
7019     bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub;
7020     Offset = ARM_AM::getAM2Offset(Offset);
7021     if (isSub)
7022       Offset = -Offset;
7023
7024     MachineMemOperand *MMO = *MI->memoperands_begin();
7025     BuildMI(*BB, MI, dl, TII->get(NewOpc))
7026       .addOperand(MI->getOperand(0))  // Rn_wb
7027       .addOperand(MI->getOperand(1))  // Rt
7028       .addOperand(MI->getOperand(2))  // Rn
7029       .addImm(Offset)                 // offset (skip GPR==zero_reg)
7030       .addOperand(MI->getOperand(5))  // pred
7031       .addOperand(MI->getOperand(6))
7032       .addMemOperand(MMO);
7033     MI->eraseFromParent();
7034     return BB;
7035   }
7036   case ARM::STRr_preidx:
7037   case ARM::STRBr_preidx:
7038   case ARM::STRH_preidx: {
7039     unsigned NewOpc;
7040     switch (MI->getOpcode()) {
7041     default: llvm_unreachable("unexpected opcode!");
7042     case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break;
7043     case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break;
7044     case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break;
7045     }
7046     MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc));
7047     for (unsigned i = 0; i < MI->getNumOperands(); ++i)
7048       MIB.addOperand(MI->getOperand(i));
7049     MI->eraseFromParent();
7050     return BB;
7051   }
7052
7053   case ARM::tMOVCCr_pseudo: {
7054     // To "insert" a SELECT_CC instruction, we actually have to insert the
7055     // diamond control-flow pattern.  The incoming instruction knows the
7056     // destination vreg to set, the condition code register to branch on, the
7057     // true/false values to select between, and a branch opcode to use.
7058     const BasicBlock *LLVM_BB = BB->getBasicBlock();
7059     MachineFunction::iterator It = BB;
7060     ++It;
7061
7062     //  thisMBB:
7063     //  ...
7064     //   TrueVal = ...
7065     //   cmpTY ccX, r1, r2
7066     //   bCC copy1MBB
7067     //   fallthrough --> copy0MBB
7068     MachineBasicBlock *thisMBB  = BB;
7069     MachineFunction *F = BB->getParent();
7070     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7071     MachineBasicBlock *sinkMBB  = F->CreateMachineBasicBlock(LLVM_BB);
7072     F->insert(It, copy0MBB);
7073     F->insert(It, sinkMBB);
7074
7075     // Transfer the remainder of BB and its successor edges to sinkMBB.
7076     sinkMBB->splice(sinkMBB->begin(), BB,
7077                     std::next(MachineBasicBlock::iterator(MI)), BB->end());
7078     sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
7079
7080     BB->addSuccessor(copy0MBB);
7081     BB->addSuccessor(sinkMBB);
7082
7083     BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB)
7084       .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg());
7085
7086     //  copy0MBB:
7087     //   %FalseValue = ...
7088     //   # fallthrough to sinkMBB
7089     BB = copy0MBB;
7090
7091     // Update machine-CFG edges
7092     BB->addSuccessor(sinkMBB);
7093
7094     //  sinkMBB:
7095     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7096     //  ...
7097     BB = sinkMBB;
7098     BuildMI(*BB, BB->begin(), dl,
7099             TII->get(ARM::PHI), MI->getOperand(0).getReg())
7100       .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7101       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7102
7103     MI->eraseFromParent();   // The pseudo instruction is gone now.
7104     return BB;
7105   }
7106
7107   case ARM::BCCi64:
7108   case ARM::BCCZi64: {
7109     // If there is an unconditional branch to the other successor, remove it.
7110     BB->erase(std::next(MachineBasicBlock::iterator(MI)), BB->end());
7111
7112     // Compare both parts that make up the double comparison separately for
7113     // equality.
7114     bool RHSisZero = MI->getOpcode() == ARM::BCCZi64;
7115
7116     unsigned LHS1 = MI->getOperand(1).getReg();
7117     unsigned LHS2 = MI->getOperand(2).getReg();
7118     if (RHSisZero) {
7119       AddDefaultPred(BuildMI(BB, dl,
7120                              TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7121                      .addReg(LHS1).addImm(0));
7122       BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7123         .addReg(LHS2).addImm(0)
7124         .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7125     } else {
7126       unsigned RHS1 = MI->getOperand(3).getReg();
7127       unsigned RHS2 = MI->getOperand(4).getReg();
7128       AddDefaultPred(BuildMI(BB, dl,
7129                              TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7130                      .addReg(LHS1).addReg(RHS1));
7131       BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr))
7132         .addReg(LHS2).addReg(RHS2)
7133         .addImm(ARMCC::EQ).addReg(ARM::CPSR);
7134     }
7135
7136     MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB();
7137     MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB);
7138     if (MI->getOperand(0).getImm() == ARMCC::NE)
7139       std::swap(destMBB, exitMBB);
7140
7141     BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc))
7142       .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR);
7143     if (isThumb2)
7144       AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB));
7145     else
7146       BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB);
7147
7148     MI->eraseFromParent();   // The pseudo instruction is gone now.
7149     return BB;
7150   }
7151
7152   case ARM::Int_eh_sjlj_setjmp:
7153   case ARM::Int_eh_sjlj_setjmp_nofp:
7154   case ARM::tInt_eh_sjlj_setjmp:
7155   case ARM::t2Int_eh_sjlj_setjmp:
7156   case ARM::t2Int_eh_sjlj_setjmp_nofp:
7157     EmitSjLjDispatchBlock(MI, BB);
7158     return BB;
7159
7160   case ARM::ABS:
7161   case ARM::t2ABS: {
7162     // To insert an ABS instruction, we have to insert the
7163     // diamond control-flow pattern.  The incoming instruction knows the
7164     // source vreg to test against 0, the destination vreg to set,
7165     // the condition code register to branch on, the
7166     // true/false values to select between, and a branch opcode to use.
7167     // It transforms
7168     //     V1 = ABS V0
7169     // into
7170     //     V2 = MOVS V0
7171     //     BCC                      (branch to SinkBB if V0 >= 0)
7172     //     RSBBB: V3 = RSBri V2, 0  (compute ABS if V2 < 0)
7173     //     SinkBB: V1 = PHI(V2, V3)
7174     const BasicBlock *LLVM_BB = BB->getBasicBlock();
7175     MachineFunction::iterator BBI = BB;
7176     ++BBI;
7177     MachineFunction *Fn = BB->getParent();
7178     MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB);
7179     MachineBasicBlock *SinkBB  = Fn->CreateMachineBasicBlock(LLVM_BB);
7180     Fn->insert(BBI, RSBBB);
7181     Fn->insert(BBI, SinkBB);
7182
7183     unsigned int ABSSrcReg = MI->getOperand(1).getReg();
7184     unsigned int ABSDstReg = MI->getOperand(0).getReg();
7185     bool isThumb2 = Subtarget->isThumb2();
7186     MachineRegisterInfo &MRI = Fn->getRegInfo();
7187     // In Thumb mode S must not be specified if source register is the SP or
7188     // PC and if destination register is the SP, so restrict register class
7189     unsigned NewRsbDstReg = MRI.createVirtualRegister(isThumb2 ?
7190       (const TargetRegisterClass*)&ARM::rGPRRegClass :
7191       (const TargetRegisterClass*)&ARM::GPRRegClass);
7192
7193     // Transfer the remainder of BB and its successor edges to sinkMBB.
7194     SinkBB->splice(SinkBB->begin(), BB,
7195                    std::next(MachineBasicBlock::iterator(MI)), BB->end());
7196     SinkBB->transferSuccessorsAndUpdatePHIs(BB);
7197
7198     BB->addSuccessor(RSBBB);
7199     BB->addSuccessor(SinkBB);
7200
7201     // fall through to SinkMBB
7202     RSBBB->addSuccessor(SinkBB);
7203
7204     // insert a cmp at the end of BB
7205     AddDefaultPred(BuildMI(BB, dl,
7206                            TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri))
7207                    .addReg(ABSSrcReg).addImm(0));
7208
7209     // insert a bcc with opposite CC to ARMCC::MI at the end of BB
7210     BuildMI(BB, dl,
7211       TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB)
7212       .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR);
7213
7214     // insert rsbri in RSBBB
7215     // Note: BCC and rsbri will be converted into predicated rsbmi
7216     // by if-conversion pass
7217     BuildMI(*RSBBB, RSBBB->begin(), dl,
7218       TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg)
7219       .addReg(ABSSrcReg, RegState::Kill)
7220       .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0);
7221
7222     // insert PHI in SinkBB,
7223     // reuse ABSDstReg to not change uses of ABS instruction
7224     BuildMI(*SinkBB, SinkBB->begin(), dl,
7225       TII->get(ARM::PHI), ABSDstReg)
7226       .addReg(NewRsbDstReg).addMBB(RSBBB)
7227       .addReg(ABSSrcReg).addMBB(BB);
7228
7229     // remove ABS instruction
7230     MI->eraseFromParent();
7231
7232     // return last added BB
7233     return SinkBB;
7234   }
7235   case ARM::COPY_STRUCT_BYVAL_I32:
7236     ++NumLoopByVals;
7237     return EmitStructByval(MI, BB);
7238   }
7239 }
7240
7241 void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI,
7242                                                       SDNode *Node) const {
7243   if (!MI->hasPostISelHook()) {
7244     assert(!convertAddSubFlagsOpcode(MI->getOpcode()) &&
7245            "Pseudo flag-setting opcodes must be marked with 'hasPostISelHook'");
7246     return;
7247   }
7248
7249   const MCInstrDesc *MCID = &MI->getDesc();
7250   // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB,
7251   // RSC. Coming out of isel, they have an implicit CPSR def, but the optional
7252   // operand is still set to noreg. If needed, set the optional operand's
7253   // register to CPSR, and remove the redundant implicit def.
7254   //
7255   // e.g. ADCS (..., CPSR<imp-def>) -> ADC (... opt:CPSR<def>).
7256
7257   // Rename pseudo opcodes.
7258   unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode());
7259   if (NewOpc) {
7260     const ARMBaseInstrInfo *TII =
7261       static_cast<const ARMBaseInstrInfo*>(getTargetMachine().getInstrInfo());
7262     MCID = &TII->get(NewOpc);
7263
7264     assert(MCID->getNumOperands() == MI->getDesc().getNumOperands() + 1 &&
7265            "converted opcode should be the same except for cc_out");
7266
7267     MI->setDesc(*MCID);
7268
7269     // Add the optional cc_out operand
7270     MI->addOperand(MachineOperand::CreateReg(0, /*isDef=*/true));
7271   }
7272   unsigned ccOutIdx = MCID->getNumOperands() - 1;
7273
7274   // Any ARM instruction that sets the 's' bit should specify an optional
7275   // "cc_out" operand in the last operand position.
7276   if (!MI->hasOptionalDef() || !MCID->OpInfo[ccOutIdx].isOptionalDef()) {
7277     assert(!NewOpc && "Optional cc_out operand required");
7278     return;
7279   }
7280   // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it
7281   // since we already have an optional CPSR def.
7282   bool definesCPSR = false;
7283   bool deadCPSR = false;
7284   for (unsigned i = MCID->getNumOperands(), e = MI->getNumOperands();
7285        i != e; ++i) {
7286     const MachineOperand &MO = MI->getOperand(i);
7287     if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) {
7288       definesCPSR = true;
7289       if (MO.isDead())
7290         deadCPSR = true;
7291       MI->RemoveOperand(i);
7292       break;
7293     }
7294   }
7295   if (!definesCPSR) {
7296     assert(!NewOpc && "Optional cc_out operand required");
7297     return;
7298   }
7299   assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag");
7300   if (deadCPSR) {
7301     assert(!MI->getOperand(ccOutIdx).getReg() &&
7302            "expect uninitialized optional cc_out operand");
7303     return;
7304   }
7305
7306   // If this instruction was defined with an optional CPSR def and its dag node
7307   // had a live implicit CPSR def, then activate the optional CPSR def.
7308   MachineOperand &MO = MI->getOperand(ccOutIdx);
7309   MO.setReg(ARM::CPSR);
7310   MO.setIsDef(true);
7311 }
7312
7313 //===----------------------------------------------------------------------===//
7314 //                           ARM Optimization Hooks
7315 //===----------------------------------------------------------------------===//
7316
7317 // Helper function that checks if N is a null or all ones constant.
7318 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) {
7319   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N);
7320   if (!C)
7321     return false;
7322   return AllOnes ? C->isAllOnesValue() : C->isNullValue();
7323 }
7324
7325 // Return true if N is conditionally 0 or all ones.
7326 // Detects these expressions where cc is an i1 value:
7327 //
7328 //   (select cc 0, y)   [AllOnes=0]
7329 //   (select cc y, 0)   [AllOnes=0]
7330 //   (zext cc)          [AllOnes=0]
7331 //   (sext cc)          [AllOnes=0/1]
7332 //   (select cc -1, y)  [AllOnes=1]
7333 //   (select cc y, -1)  [AllOnes=1]
7334 //
7335 // Invert is set when N is the null/all ones constant when CC is false.
7336 // OtherOp is set to the alternative value of N.
7337 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes,
7338                                        SDValue &CC, bool &Invert,
7339                                        SDValue &OtherOp,
7340                                        SelectionDAG &DAG) {
7341   switch (N->getOpcode()) {
7342   default: return false;
7343   case ISD::SELECT: {
7344     CC = N->getOperand(0);
7345     SDValue N1 = N->getOperand(1);
7346     SDValue N2 = N->getOperand(2);
7347     if (isZeroOrAllOnes(N1, AllOnes)) {
7348       Invert = false;
7349       OtherOp = N2;
7350       return true;
7351     }
7352     if (isZeroOrAllOnes(N2, AllOnes)) {
7353       Invert = true;
7354       OtherOp = N1;
7355       return true;
7356     }
7357     return false;
7358   }
7359   case ISD::ZERO_EXTEND:
7360     // (zext cc) can never be the all ones value.
7361     if (AllOnes)
7362       return false;
7363     // Fall through.
7364   case ISD::SIGN_EXTEND: {
7365     EVT VT = N->getValueType(0);
7366     CC = N->getOperand(0);
7367     if (CC.getValueType() != MVT::i1)
7368       return false;
7369     Invert = !AllOnes;
7370     if (AllOnes)
7371       // When looking for an AllOnes constant, N is an sext, and the 'other'
7372       // value is 0.
7373       OtherOp = DAG.getConstant(0, VT);
7374     else if (N->getOpcode() == ISD::ZERO_EXTEND)
7375       // When looking for a 0 constant, N can be zext or sext.
7376       OtherOp = DAG.getConstant(1, VT);
7377     else
7378       OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT);
7379     return true;
7380   }
7381   }
7382 }
7383
7384 // Combine a constant select operand into its use:
7385 //
7386 //   (add (select cc, 0, c), x)  -> (select cc, x, (add, x, c))
7387 //   (sub x, (select cc, 0, c))  -> (select cc, x, (sub, x, c))
7388 //   (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))  [AllOnes=1]
7389 //   (or  (select cc, 0, c), x)  -> (select cc, x, (or, x, c))
7390 //   (xor (select cc, 0, c), x)  -> (select cc, x, (xor, x, c))
7391 //
7392 // The transform is rejected if the select doesn't have a constant operand that
7393 // is null, or all ones when AllOnes is set.
7394 //
7395 // Also recognize sext/zext from i1:
7396 //
7397 //   (add (zext cc), x) -> (select cc (add x, 1), x)
7398 //   (add (sext cc), x) -> (select cc (add x, -1), x)
7399 //
7400 // These transformations eventually create predicated instructions.
7401 //
7402 // @param N       The node to transform.
7403 // @param Slct    The N operand that is a select.
7404 // @param OtherOp The other N operand (x above).
7405 // @param DCI     Context.
7406 // @param AllOnes Require the select constant to be all ones instead of null.
7407 // @returns The new node, or SDValue() on failure.
7408 static
7409 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp,
7410                             TargetLowering::DAGCombinerInfo &DCI,
7411                             bool AllOnes = false) {
7412   SelectionDAG &DAG = DCI.DAG;
7413   EVT VT = N->getValueType(0);
7414   SDValue NonConstantVal;
7415   SDValue CCOp;
7416   bool SwapSelectOps;
7417   if (!isConditionalZeroOrAllOnes(Slct.getNode(), AllOnes, CCOp, SwapSelectOps,
7418                                   NonConstantVal, DAG))
7419     return SDValue();
7420
7421   // Slct is now know to be the desired identity constant when CC is true.
7422   SDValue TrueVal = OtherOp;
7423   SDValue FalseVal = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
7424                                  OtherOp, NonConstantVal);
7425   // Unless SwapSelectOps says CC should be false.
7426   if (SwapSelectOps)
7427     std::swap(TrueVal, FalseVal);
7428
7429   return DAG.getNode(ISD::SELECT, SDLoc(N), VT,
7430                      CCOp, TrueVal, FalseVal);
7431 }
7432
7433 // Attempt combineSelectAndUse on each operand of a commutative operator N.
7434 static
7435 SDValue combineSelectAndUseCommutative(SDNode *N, bool AllOnes,
7436                                        TargetLowering::DAGCombinerInfo &DCI) {
7437   SDValue N0 = N->getOperand(0);
7438   SDValue N1 = N->getOperand(1);
7439   if (N0.getNode()->hasOneUse()) {
7440     SDValue Result = combineSelectAndUse(N, N0, N1, DCI, AllOnes);
7441     if (Result.getNode())
7442       return Result;
7443   }
7444   if (N1.getNode()->hasOneUse()) {
7445     SDValue Result = combineSelectAndUse(N, N1, N0, DCI, AllOnes);
7446     if (Result.getNode())
7447       return Result;
7448   }
7449   return SDValue();
7450 }
7451
7452 // AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction
7453 // (only after legalization).
7454 static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1,
7455                                  TargetLowering::DAGCombinerInfo &DCI,
7456                                  const ARMSubtarget *Subtarget) {
7457
7458   // Only perform optimization if after legalize, and if NEON is available. We
7459   // also expected both operands to be BUILD_VECTORs.
7460   if (DCI.isBeforeLegalize() || !Subtarget->hasNEON()
7461       || N0.getOpcode() != ISD::BUILD_VECTOR
7462       || N1.getOpcode() != ISD::BUILD_VECTOR)
7463     return SDValue();
7464
7465   // Check output type since VPADDL operand elements can only be 8, 16, or 32.
7466   EVT VT = N->getValueType(0);
7467   if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64)
7468     return SDValue();
7469
7470   // Check that the vector operands are of the right form.
7471   // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR
7472   // operands, where N is the size of the formed vector.
7473   // Each EXTRACT_VECTOR should have the same input vector and odd or even
7474   // index such that we have a pair wise add pattern.
7475
7476   // Grab the vector that all EXTRACT_VECTOR nodes should be referencing.
7477   if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
7478     return SDValue();
7479   SDValue Vec = N0->getOperand(0)->getOperand(0);
7480   SDNode *V = Vec.getNode();
7481   unsigned nextIndex = 0;
7482
7483   // For each operands to the ADD which are BUILD_VECTORs,
7484   // check to see if each of their operands are an EXTRACT_VECTOR with
7485   // the same vector and appropriate index.
7486   for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) {
7487     if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT
7488         && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
7489
7490       SDValue ExtVec0 = N0->getOperand(i);
7491       SDValue ExtVec1 = N1->getOperand(i);
7492
7493       // First operand is the vector, verify its the same.
7494       if (V != ExtVec0->getOperand(0).getNode() ||
7495           V != ExtVec1->getOperand(0).getNode())
7496         return SDValue();
7497
7498       // Second is the constant, verify its correct.
7499       ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1));
7500       ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1));
7501
7502       // For the constant, we want to see all the even or all the odd.
7503       if (!C0 || !C1 || C0->getZExtValue() != nextIndex
7504           || C1->getZExtValue() != nextIndex+1)
7505         return SDValue();
7506
7507       // Increment index.
7508       nextIndex+=2;
7509     } else
7510       return SDValue();
7511   }
7512
7513   // Create VPADDL node.
7514   SelectionDAG &DAG = DCI.DAG;
7515   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7516
7517   // Build operand list.
7518   SmallVector<SDValue, 8> Ops;
7519   Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls,
7520                                 TLI.getPointerTy()));
7521
7522   // Input is the vector.
7523   Ops.push_back(Vec);
7524
7525   // Get widened type and narrowed type.
7526   MVT widenType;
7527   unsigned numElem = VT.getVectorNumElements();
7528   
7529   EVT inputLaneType = Vec.getValueType().getVectorElementType();
7530   switch (inputLaneType.getSimpleVT().SimpleTy) {
7531     case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break;
7532     case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break;
7533     case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break;
7534     default:
7535       llvm_unreachable("Invalid vector element type for padd optimization.");
7536   }
7537
7538   SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), widenType, Ops);
7539   unsigned ExtOp = VT.bitsGT(tmp.getValueType()) ? ISD::ANY_EXTEND : ISD::TRUNCATE;
7540   return DAG.getNode(ExtOp, SDLoc(N), VT, tmp);
7541 }
7542
7543 static SDValue findMUL_LOHI(SDValue V) {
7544   if (V->getOpcode() == ISD::UMUL_LOHI ||
7545       V->getOpcode() == ISD::SMUL_LOHI)
7546     return V;
7547   return SDValue();
7548 }
7549
7550 static SDValue AddCombineTo64bitMLAL(SDNode *AddcNode,
7551                                      TargetLowering::DAGCombinerInfo &DCI,
7552                                      const ARMSubtarget *Subtarget) {
7553
7554   if (Subtarget->isThumb1Only()) return SDValue();
7555
7556   // Only perform the checks after legalize when the pattern is available.
7557   if (DCI.isBeforeLegalize()) return SDValue();
7558
7559   // Look for multiply add opportunities.
7560   // The pattern is a ISD::UMUL_LOHI followed by two add nodes, where
7561   // each add nodes consumes a value from ISD::UMUL_LOHI and there is
7562   // a glue link from the first add to the second add.
7563   // If we find this pattern, we can replace the U/SMUL_LOHI, ADDC, and ADDE by
7564   // a S/UMLAL instruction.
7565   //          loAdd   UMUL_LOHI
7566   //            \    / :lo    \ :hi
7567   //             \  /          \          [no multiline comment]
7568   //              ADDC         |  hiAdd
7569   //                 \ :glue  /  /
7570   //                  \      /  /
7571   //                    ADDE
7572   //
7573   assert(AddcNode->getOpcode() == ISD::ADDC && "Expect an ADDC");
7574   SDValue AddcOp0 = AddcNode->getOperand(0);
7575   SDValue AddcOp1 = AddcNode->getOperand(1);
7576
7577   // Check if the two operands are from the same mul_lohi node.
7578   if (AddcOp0.getNode() == AddcOp1.getNode())
7579     return SDValue();
7580
7581   assert(AddcNode->getNumValues() == 2 &&
7582          AddcNode->getValueType(0) == MVT::i32 &&
7583          "Expect ADDC with two result values. First: i32");
7584
7585   // Check that we have a glued ADDC node.
7586   if (AddcNode->getValueType(1) != MVT::Glue)
7587     return SDValue();
7588
7589   // Check that the ADDC adds the low result of the S/UMUL_LOHI.
7590   if (AddcOp0->getOpcode() != ISD::UMUL_LOHI &&
7591       AddcOp0->getOpcode() != ISD::SMUL_LOHI &&
7592       AddcOp1->getOpcode() != ISD::UMUL_LOHI &&
7593       AddcOp1->getOpcode() != ISD::SMUL_LOHI)
7594     return SDValue();
7595
7596   // Look for the glued ADDE.
7597   SDNode* AddeNode = AddcNode->getGluedUser();
7598   if (!AddeNode)
7599     return SDValue();
7600
7601   // Make sure it is really an ADDE.
7602   if (AddeNode->getOpcode() != ISD::ADDE)
7603     return SDValue();
7604
7605   assert(AddeNode->getNumOperands() == 3 &&
7606          AddeNode->getOperand(2).getValueType() == MVT::Glue &&
7607          "ADDE node has the wrong inputs");
7608
7609   // Check for the triangle shape.
7610   SDValue AddeOp0 = AddeNode->getOperand(0);
7611   SDValue AddeOp1 = AddeNode->getOperand(1);
7612
7613   // Make sure that the ADDE operands are not coming from the same node.
7614   if (AddeOp0.getNode() == AddeOp1.getNode())
7615     return SDValue();
7616
7617   // Find the MUL_LOHI node walking up ADDE's operands.
7618   bool IsLeftOperandMUL = false;
7619   SDValue MULOp = findMUL_LOHI(AddeOp0);
7620   if (MULOp == SDValue())
7621    MULOp = findMUL_LOHI(AddeOp1);
7622   else
7623     IsLeftOperandMUL = true;
7624   if (MULOp == SDValue())
7625      return SDValue();
7626
7627   // Figure out the right opcode.
7628   unsigned Opc = MULOp->getOpcode();
7629   unsigned FinalOpc = (Opc == ISD::SMUL_LOHI) ? ARMISD::SMLAL : ARMISD::UMLAL;
7630
7631   // Figure out the high and low input values to the MLAL node.
7632   SDValue* HiMul = &MULOp;
7633   SDValue* HiAdd = nullptr;
7634   SDValue* LoMul = nullptr;
7635   SDValue* LowAdd = nullptr;
7636
7637   if (IsLeftOperandMUL)
7638     HiAdd = &AddeOp1;
7639   else
7640     HiAdd = &AddeOp0;
7641
7642
7643   if (AddcOp0->getOpcode() == Opc) {
7644     LoMul = &AddcOp0;
7645     LowAdd = &AddcOp1;
7646   }
7647   if (AddcOp1->getOpcode() == Opc) {
7648     LoMul = &AddcOp1;
7649     LowAdd = &AddcOp0;
7650   }
7651
7652   if (!LoMul)
7653     return SDValue();
7654
7655   if (LoMul->getNode() != HiMul->getNode())
7656     return SDValue();
7657
7658   // Create the merged node.
7659   SelectionDAG &DAG = DCI.DAG;
7660
7661   // Build operand list.
7662   SmallVector<SDValue, 8> Ops;
7663   Ops.push_back(LoMul->getOperand(0));
7664   Ops.push_back(LoMul->getOperand(1));
7665   Ops.push_back(*LowAdd);
7666   Ops.push_back(*HiAdd);
7667
7668   SDValue MLALNode =  DAG.getNode(FinalOpc, SDLoc(AddcNode),
7669                                  DAG.getVTList(MVT::i32, MVT::i32), Ops);
7670
7671   // Replace the ADDs' nodes uses by the MLA node's values.
7672   SDValue HiMLALResult(MLALNode.getNode(), 1);
7673   DAG.ReplaceAllUsesOfValueWith(SDValue(AddeNode, 0), HiMLALResult);
7674
7675   SDValue LoMLALResult(MLALNode.getNode(), 0);
7676   DAG.ReplaceAllUsesOfValueWith(SDValue(AddcNode, 0), LoMLALResult);
7677
7678   // Return original node to notify the driver to stop replacing.
7679   SDValue resNode(AddcNode, 0);
7680   return resNode;
7681 }
7682
7683 /// PerformADDCCombine - Target-specific dag combine transform from
7684 /// ISD::ADDC, ISD::ADDE, and ISD::MUL_LOHI to MLAL.
7685 static SDValue PerformADDCCombine(SDNode *N,
7686                                  TargetLowering::DAGCombinerInfo &DCI,
7687                                  const ARMSubtarget *Subtarget) {
7688
7689   return AddCombineTo64bitMLAL(N, DCI, Subtarget);
7690
7691 }
7692
7693 /// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
7694 /// operands N0 and N1.  This is a helper for PerformADDCombine that is
7695 /// called with the default operands, and if that fails, with commuted
7696 /// operands.
7697 static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1,
7698                                           TargetLowering::DAGCombinerInfo &DCI,
7699                                           const ARMSubtarget *Subtarget){
7700
7701   // Attempt to create vpaddl for this add.
7702   SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget);
7703   if (Result.getNode())
7704     return Result;
7705
7706   // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
7707   if (N0.getNode()->hasOneUse()) {
7708     SDValue Result = combineSelectAndUse(N, N0, N1, DCI);
7709     if (Result.getNode()) return Result;
7710   }
7711   return SDValue();
7712 }
7713
7714 /// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
7715 ///
7716 static SDValue PerformADDCombine(SDNode *N,
7717                                  TargetLowering::DAGCombinerInfo &DCI,
7718                                  const ARMSubtarget *Subtarget) {
7719   SDValue N0 = N->getOperand(0);
7720   SDValue N1 = N->getOperand(1);
7721
7722   // First try with the default operand order.
7723   SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget);
7724   if (Result.getNode())
7725     return Result;
7726
7727   // If that didn't work, try again with the operands commuted.
7728   return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget);
7729 }
7730
7731 /// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB.
7732 ///
7733 static SDValue PerformSUBCombine(SDNode *N,
7734                                  TargetLowering::DAGCombinerInfo &DCI) {
7735   SDValue N0 = N->getOperand(0);
7736   SDValue N1 = N->getOperand(1);
7737
7738   // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
7739   if (N1.getNode()->hasOneUse()) {
7740     SDValue Result = combineSelectAndUse(N, N1, N0, DCI);
7741     if (Result.getNode()) return Result;
7742   }
7743
7744   return SDValue();
7745 }
7746
7747 /// PerformVMULCombine
7748 /// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the
7749 /// special multiplier accumulator forwarding.
7750 ///   vmul d3, d0, d2
7751 ///   vmla d3, d1, d2
7752 /// is faster than
7753 ///   vadd d3, d0, d1
7754 ///   vmul d3, d3, d2
7755 //  However, for (A + B) * (A + B),
7756 //    vadd d2, d0, d1
7757 //    vmul d3, d0, d2
7758 //    vmla d3, d1, d2
7759 //  is slower than
7760 //    vadd d2, d0, d1
7761 //    vmul d3, d2, d2
7762 static SDValue PerformVMULCombine(SDNode *N,
7763                                   TargetLowering::DAGCombinerInfo &DCI,
7764                                   const ARMSubtarget *Subtarget) {
7765   if (!Subtarget->hasVMLxForwarding())
7766     return SDValue();
7767
7768   SelectionDAG &DAG = DCI.DAG;
7769   SDValue N0 = N->getOperand(0);
7770   SDValue N1 = N->getOperand(1);
7771   unsigned Opcode = N0.getOpcode();
7772   if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
7773       Opcode != ISD::FADD && Opcode != ISD::FSUB) {
7774     Opcode = N1.getOpcode();
7775     if (Opcode != ISD::ADD && Opcode != ISD::SUB &&
7776         Opcode != ISD::FADD && Opcode != ISD::FSUB)
7777       return SDValue();
7778     std::swap(N0, N1);
7779   }
7780
7781   if (N0 == N1)
7782     return SDValue();
7783
7784   EVT VT = N->getValueType(0);
7785   SDLoc DL(N);
7786   SDValue N00 = N0->getOperand(0);
7787   SDValue N01 = N0->getOperand(1);
7788   return DAG.getNode(Opcode, DL, VT,
7789                      DAG.getNode(ISD::MUL, DL, VT, N00, N1),
7790                      DAG.getNode(ISD::MUL, DL, VT, N01, N1));
7791 }
7792
7793 static SDValue PerformMULCombine(SDNode *N,
7794                                  TargetLowering::DAGCombinerInfo &DCI,
7795                                  const ARMSubtarget *Subtarget) {
7796   SelectionDAG &DAG = DCI.DAG;
7797
7798   if (Subtarget->isThumb1Only())
7799     return SDValue();
7800
7801   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
7802     return SDValue();
7803
7804   EVT VT = N->getValueType(0);
7805   if (VT.is64BitVector() || VT.is128BitVector())
7806     return PerformVMULCombine(N, DCI, Subtarget);
7807   if (VT != MVT::i32)
7808     return SDValue();
7809
7810   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
7811   if (!C)
7812     return SDValue();
7813
7814   int64_t MulAmt = C->getSExtValue();
7815   unsigned ShiftAmt = countTrailingZeros<uint64_t>(MulAmt);
7816
7817   ShiftAmt = ShiftAmt & (32 - 1);
7818   SDValue V = N->getOperand(0);
7819   SDLoc DL(N);
7820
7821   SDValue Res;
7822   MulAmt >>= ShiftAmt;
7823
7824   if (MulAmt >= 0) {
7825     if (isPowerOf2_32(MulAmt - 1)) {
7826       // (mul x, 2^N + 1) => (add (shl x, N), x)
7827       Res = DAG.getNode(ISD::ADD, DL, VT,
7828                         V,
7829                         DAG.getNode(ISD::SHL, DL, VT,
7830                                     V,
7831                                     DAG.getConstant(Log2_32(MulAmt - 1),
7832                                                     MVT::i32)));
7833     } else if (isPowerOf2_32(MulAmt + 1)) {
7834       // (mul x, 2^N - 1) => (sub (shl x, N), x)
7835       Res = DAG.getNode(ISD::SUB, DL, VT,
7836                         DAG.getNode(ISD::SHL, DL, VT,
7837                                     V,
7838                                     DAG.getConstant(Log2_32(MulAmt + 1),
7839                                                     MVT::i32)),
7840                         V);
7841     } else
7842       return SDValue();
7843   } else {
7844     uint64_t MulAmtAbs = -MulAmt;
7845     if (isPowerOf2_32(MulAmtAbs + 1)) {
7846       // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
7847       Res = DAG.getNode(ISD::SUB, DL, VT,
7848                         V,
7849                         DAG.getNode(ISD::SHL, DL, VT,
7850                                     V,
7851                                     DAG.getConstant(Log2_32(MulAmtAbs + 1),
7852                                                     MVT::i32)));
7853     } else if (isPowerOf2_32(MulAmtAbs - 1)) {
7854       // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
7855       Res = DAG.getNode(ISD::ADD, DL, VT,
7856                         V,
7857                         DAG.getNode(ISD::SHL, DL, VT,
7858                                     V,
7859                                     DAG.getConstant(Log2_32(MulAmtAbs-1),
7860                                                     MVT::i32)));
7861       Res = DAG.getNode(ISD::SUB, DL, VT,
7862                         DAG.getConstant(0, MVT::i32),Res);
7863
7864     } else
7865       return SDValue();
7866   }
7867
7868   if (ShiftAmt != 0)
7869     Res = DAG.getNode(ISD::SHL, DL, VT,
7870                       Res, DAG.getConstant(ShiftAmt, MVT::i32));
7871
7872   // Do not add new nodes to DAG combiner worklist.
7873   DCI.CombineTo(N, Res, false);
7874   return SDValue();
7875 }
7876
7877 static SDValue PerformANDCombine(SDNode *N,
7878                                  TargetLowering::DAGCombinerInfo &DCI,
7879                                  const ARMSubtarget *Subtarget) {
7880
7881   // Attempt to use immediate-form VBIC
7882   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
7883   SDLoc dl(N);
7884   EVT VT = N->getValueType(0);
7885   SelectionDAG &DAG = DCI.DAG;
7886
7887   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
7888     return SDValue();
7889
7890   APInt SplatBits, SplatUndef;
7891   unsigned SplatBitSize;
7892   bool HasAnyUndefs;
7893   if (BVN &&
7894       BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
7895     if (SplatBitSize <= 64) {
7896       EVT VbicVT;
7897       SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(),
7898                                       SplatUndef.getZExtValue(), SplatBitSize,
7899                                       DAG, VbicVT, VT.is128BitVector(),
7900                                       OtherModImm);
7901       if (Val.getNode()) {
7902         SDValue Input =
7903           DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0));
7904         SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val);
7905         return DAG.getNode(ISD::BITCAST, dl, VT, Vbic);
7906       }
7907     }
7908   }
7909
7910   if (!Subtarget->isThumb1Only()) {
7911     // fold (and (select cc, -1, c), x) -> (select cc, x, (and, x, c))
7912     SDValue Result = combineSelectAndUseCommutative(N, true, DCI);
7913     if (Result.getNode())
7914       return Result;
7915   }
7916
7917   return SDValue();
7918 }
7919
7920 /// PerformORCombine - Target-specific dag combine xforms for ISD::OR
7921 static SDValue PerformORCombine(SDNode *N,
7922                                 TargetLowering::DAGCombinerInfo &DCI,
7923                                 const ARMSubtarget *Subtarget) {
7924   // Attempt to use immediate-form VORR
7925   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1));
7926   SDLoc dl(N);
7927   EVT VT = N->getValueType(0);
7928   SelectionDAG &DAG = DCI.DAG;
7929
7930   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
7931     return SDValue();
7932
7933   APInt SplatBits, SplatUndef;
7934   unsigned SplatBitSize;
7935   bool HasAnyUndefs;
7936   if (BVN && Subtarget->hasNEON() &&
7937       BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
7938     if (SplatBitSize <= 64) {
7939       EVT VorrVT;
7940       SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(),
7941                                       SplatUndef.getZExtValue(), SplatBitSize,
7942                                       DAG, VorrVT, VT.is128BitVector(),
7943                                       OtherModImm);
7944       if (Val.getNode()) {
7945         SDValue Input =
7946           DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0));
7947         SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val);
7948         return DAG.getNode(ISD::BITCAST, dl, VT, Vorr);
7949       }
7950     }
7951   }
7952
7953   if (!Subtarget->isThumb1Only()) {
7954     // fold (or (select cc, 0, c), x) -> (select cc, x, (or, x, c))
7955     SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
7956     if (Result.getNode())
7957       return Result;
7958   }
7959
7960   // The code below optimizes (or (and X, Y), Z).
7961   // The AND operand needs to have a single user to make these optimizations
7962   // profitable.
7963   SDValue N0 = N->getOperand(0);
7964   if (N0.getOpcode() != ISD::AND || !N0.hasOneUse())
7965     return SDValue();
7966   SDValue N1 = N->getOperand(1);
7967
7968   // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant.
7969   if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() &&
7970       DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
7971     APInt SplatUndef;
7972     unsigned SplatBitSize;
7973     bool HasAnyUndefs;
7974
7975     APInt SplatBits0, SplatBits1;
7976     BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1));
7977     BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1));
7978     // Ensure that the second operand of both ands are constants
7979     if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize,
7980                                       HasAnyUndefs) && !HasAnyUndefs) {
7981         if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize,
7982                                           HasAnyUndefs) && !HasAnyUndefs) {
7983             // Ensure that the bit width of the constants are the same and that
7984             // the splat arguments are logical inverses as per the pattern we
7985             // are trying to simplify.
7986             if (SplatBits0.getBitWidth() == SplatBits1.getBitWidth() &&
7987                 SplatBits0 == ~SplatBits1) {
7988                 // Canonicalize the vector type to make instruction selection
7989                 // simpler.
7990                 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32;
7991                 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT,
7992                                              N0->getOperand(1),
7993                                              N0->getOperand(0),
7994                                              N1->getOperand(0));
7995                 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
7996             }
7997         }
7998     }
7999   }
8000
8001   // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when
8002   // reasonable.
8003
8004   // BFI is only available on V6T2+
8005   if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops())
8006     return SDValue();
8007
8008   SDLoc DL(N);
8009   // 1) or (and A, mask), val => ARMbfi A, val, mask
8010   //      iff (val & mask) == val
8011   //
8012   // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
8013   //  2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2)
8014   //          && mask == ~mask2
8015   //  2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2)
8016   //          && ~mask == mask2
8017   //  (i.e., copy a bitfield value into another bitfield of the same width)
8018
8019   if (VT != MVT::i32)
8020     return SDValue();
8021
8022   SDValue N00 = N0.getOperand(0);
8023
8024   // The value and the mask need to be constants so we can verify this is
8025   // actually a bitfield set. If the mask is 0xffff, we can do better
8026   // via a movt instruction, so don't use BFI in that case.
8027   SDValue MaskOp = N0.getOperand(1);
8028   ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp);
8029   if (!MaskC)
8030     return SDValue();
8031   unsigned Mask = MaskC->getZExtValue();
8032   if (Mask == 0xffff)
8033     return SDValue();
8034   SDValue Res;
8035   // Case (1): or (and A, mask), val => ARMbfi A, val, mask
8036   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
8037   if (N1C) {
8038     unsigned Val = N1C->getZExtValue();
8039     if ((Val & ~Mask) != Val)
8040       return SDValue();
8041
8042     if (ARM::isBitFieldInvertedMask(Mask)) {
8043       Val >>= countTrailingZeros(~Mask);
8044
8045       Res = DAG.getNode(ARMISD::BFI, DL, VT, N00,
8046                         DAG.getConstant(Val, MVT::i32),
8047                         DAG.getConstant(Mask, MVT::i32));
8048
8049       // Do not add new nodes to DAG combiner worklist.
8050       DCI.CombineTo(N, Res, false);
8051       return SDValue();
8052     }
8053   } else if (N1.getOpcode() == ISD::AND) {
8054     // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask
8055     ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8056     if (!N11C)
8057       return SDValue();
8058     unsigned Mask2 = N11C->getZExtValue();
8059
8060     // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern
8061     // as is to match.
8062     if (ARM::isBitFieldInvertedMask(Mask) &&
8063         (Mask == ~Mask2)) {
8064       // The pack halfword instruction works better for masks that fit it,
8065       // so use that when it's available.
8066       if (Subtarget->hasT2ExtractPack() &&
8067           (Mask == 0xffff || Mask == 0xffff0000))
8068         return SDValue();
8069       // 2a
8070       unsigned amt = countTrailingZeros(Mask2);
8071       Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0),
8072                         DAG.getConstant(amt, MVT::i32));
8073       Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res,
8074                         DAG.getConstant(Mask, MVT::i32));
8075       // Do not add new nodes to DAG combiner worklist.
8076       DCI.CombineTo(N, Res, false);
8077       return SDValue();
8078     } else if (ARM::isBitFieldInvertedMask(~Mask) &&
8079                (~Mask == Mask2)) {
8080       // The pack halfword instruction works better for masks that fit it,
8081       // so use that when it's available.
8082       if (Subtarget->hasT2ExtractPack() &&
8083           (Mask2 == 0xffff || Mask2 == 0xffff0000))
8084         return SDValue();
8085       // 2b
8086       unsigned lsb = countTrailingZeros(Mask);
8087       Res = DAG.getNode(ISD::SRL, DL, VT, N00,
8088                         DAG.getConstant(lsb, MVT::i32));
8089       Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res,
8090                         DAG.getConstant(Mask2, MVT::i32));
8091       // Do not add new nodes to DAG combiner worklist.
8092       DCI.CombineTo(N, Res, false);
8093       return SDValue();
8094     }
8095   }
8096
8097   if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) &&
8098       N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) &&
8099       ARM::isBitFieldInvertedMask(~Mask)) {
8100     // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask
8101     // where lsb(mask) == #shamt and masked bits of B are known zero.
8102     SDValue ShAmt = N00.getOperand(1);
8103     unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue();
8104     unsigned LSB = countTrailingZeros(Mask);
8105     if (ShAmtC != LSB)
8106       return SDValue();
8107
8108     Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0),
8109                       DAG.getConstant(~Mask, MVT::i32));
8110
8111     // Do not add new nodes to DAG combiner worklist.
8112     DCI.CombineTo(N, Res, false);
8113   }
8114
8115   return SDValue();
8116 }
8117
8118 static SDValue PerformXORCombine(SDNode *N,
8119                                  TargetLowering::DAGCombinerInfo &DCI,
8120                                  const ARMSubtarget *Subtarget) {
8121   EVT VT = N->getValueType(0);
8122   SelectionDAG &DAG = DCI.DAG;
8123
8124   if(!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8125     return SDValue();
8126
8127   if (!Subtarget->isThumb1Only()) {
8128     // fold (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c))
8129     SDValue Result = combineSelectAndUseCommutative(N, false, DCI);
8130     if (Result.getNode())
8131       return Result;
8132   }
8133
8134   return SDValue();
8135 }
8136
8137 /// PerformBFICombine - (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff
8138 /// the bits being cleared by the AND are not demanded by the BFI.
8139 static SDValue PerformBFICombine(SDNode *N,
8140                                  TargetLowering::DAGCombinerInfo &DCI) {
8141   SDValue N1 = N->getOperand(1);
8142   if (N1.getOpcode() == ISD::AND) {
8143     ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
8144     if (!N11C)
8145       return SDValue();
8146     unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue();
8147     unsigned LSB = countTrailingZeros(~InvMask);
8148     unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB;
8149     unsigned Mask = (1 << Width)-1;
8150     unsigned Mask2 = N11C->getZExtValue();
8151     if ((Mask & (~Mask2)) == 0)
8152       return DCI.DAG.getNode(ARMISD::BFI, SDLoc(N), N->getValueType(0),
8153                              N->getOperand(0), N1.getOperand(0),
8154                              N->getOperand(2));
8155   }
8156   return SDValue();
8157 }
8158
8159 /// PerformVMOVRRDCombine - Target-specific dag combine xforms for
8160 /// ARMISD::VMOVRRD.
8161 static SDValue PerformVMOVRRDCombine(SDNode *N,
8162                                      TargetLowering::DAGCombinerInfo &DCI) {
8163   // vmovrrd(vmovdrr x, y) -> x,y
8164   SDValue InDouble = N->getOperand(0);
8165   if (InDouble.getOpcode() == ARMISD::VMOVDRR)
8166     return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1));
8167
8168   // vmovrrd(load f64) -> (load i32), (load i32)
8169   SDNode *InNode = InDouble.getNode();
8170   if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() &&
8171       InNode->getValueType(0) == MVT::f64 &&
8172       InNode->getOperand(1).getOpcode() == ISD::FrameIndex &&
8173       !cast<LoadSDNode>(InNode)->isVolatile()) {
8174     // TODO: Should this be done for non-FrameIndex operands?
8175     LoadSDNode *LD = cast<LoadSDNode>(InNode);
8176
8177     SelectionDAG &DAG = DCI.DAG;
8178     SDLoc DL(LD);
8179     SDValue BasePtr = LD->getBasePtr();
8180     SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr,
8181                                  LD->getPointerInfo(), LD->isVolatile(),
8182                                  LD->isNonTemporal(), LD->isInvariant(),
8183                                  LD->getAlignment());
8184
8185     SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
8186                                     DAG.getConstant(4, MVT::i32));
8187     SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr,
8188                                  LD->getPointerInfo(), LD->isVolatile(),
8189                                  LD->isNonTemporal(), LD->isInvariant(),
8190                                  std::min(4U, LD->getAlignment() / 2));
8191
8192     DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1));
8193     SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2);
8194     DCI.RemoveFromWorklist(LD);
8195     DAG.DeleteNode(LD);
8196     return Result;
8197   }
8198
8199   return SDValue();
8200 }
8201
8202 /// PerformVMOVDRRCombine - Target-specific dag combine xforms for
8203 /// ARMISD::VMOVDRR.  This is also used for BUILD_VECTORs with 2 operands.
8204 static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) {
8205   // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X)
8206   SDValue Op0 = N->getOperand(0);
8207   SDValue Op1 = N->getOperand(1);
8208   if (Op0.getOpcode() == ISD::BITCAST)
8209     Op0 = Op0.getOperand(0);
8210   if (Op1.getOpcode() == ISD::BITCAST)
8211     Op1 = Op1.getOperand(0);
8212   if (Op0.getOpcode() == ARMISD::VMOVRRD &&
8213       Op0.getNode() == Op1.getNode() &&
8214       Op0.getResNo() == 0 && Op1.getResNo() == 1)
8215     return DAG.getNode(ISD::BITCAST, SDLoc(N),
8216                        N->getValueType(0), Op0.getOperand(0));
8217   return SDValue();
8218 }
8219
8220 /// PerformSTORECombine - Target-specific dag combine xforms for
8221 /// ISD::STORE.
8222 static SDValue PerformSTORECombine(SDNode *N,
8223                                    TargetLowering::DAGCombinerInfo &DCI) {
8224   StoreSDNode *St = cast<StoreSDNode>(N);
8225   if (St->isVolatile())
8226     return SDValue();
8227
8228   // Optimize trunc store (of multiple scalars) to shuffle and store.  First,
8229   // pack all of the elements in one place.  Next, store to memory in fewer
8230   // chunks.
8231   SDValue StVal = St->getValue();
8232   EVT VT = StVal.getValueType();
8233   if (St->isTruncatingStore() && VT.isVector()) {
8234     SelectionDAG &DAG = DCI.DAG;
8235     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8236     EVT StVT = St->getMemoryVT();
8237     unsigned NumElems = VT.getVectorNumElements();
8238     assert(StVT != VT && "Cannot truncate to the same type");
8239     unsigned FromEltSz = VT.getVectorElementType().getSizeInBits();
8240     unsigned ToEltSz = StVT.getVectorElementType().getSizeInBits();
8241
8242     // From, To sizes and ElemCount must be pow of two
8243     if (!isPowerOf2_32(NumElems * FromEltSz * ToEltSz)) return SDValue();
8244
8245     // We are going to use the original vector elt for storing.
8246     // Accumulated smaller vector elements must be a multiple of the store size.
8247     if (0 != (NumElems * FromEltSz) % ToEltSz) return SDValue();
8248
8249     unsigned SizeRatio  = FromEltSz / ToEltSz;
8250     assert(SizeRatio * NumElems * ToEltSz == VT.getSizeInBits());
8251
8252     // Create a type on which we perform the shuffle.
8253     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(),
8254                                      NumElems*SizeRatio);
8255     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
8256
8257     SDLoc DL(St);
8258     SDValue WideVec = DAG.getNode(ISD::BITCAST, DL, WideVecVT, StVal);
8259     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
8260     for (unsigned i = 0; i < NumElems; ++i) ShuffleVec[i] = i * SizeRatio;
8261
8262     // Can't shuffle using an illegal type.
8263     if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
8264
8265     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, DL, WideVec,
8266                                 DAG.getUNDEF(WideVec.getValueType()),
8267                                 ShuffleVec.data());
8268     // At this point all of the data is stored at the bottom of the
8269     // register. We now need to save it to mem.
8270
8271     // Find the largest store unit
8272     MVT StoreType = MVT::i8;
8273     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
8274          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
8275       MVT Tp = (MVT::SimpleValueType)tp;
8276       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToEltSz)
8277         StoreType = Tp;
8278     }
8279     // Didn't find a legal store type.
8280     if (!TLI.isTypeLegal(StoreType))
8281       return SDValue();
8282
8283     // Bitcast the original vector into a vector of store-size units
8284     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
8285             StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
8286     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
8287     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, DL, StoreVecVT, Shuff);
8288     SmallVector<SDValue, 8> Chains;
8289     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
8290                                         TLI.getPointerTy());
8291     SDValue BasePtr = St->getBasePtr();
8292
8293     // Perform one or more big stores into memory.
8294     unsigned E = (ToEltSz*NumElems)/StoreType.getSizeInBits();
8295     for (unsigned I = 0; I < E; I++) {
8296       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL,
8297                                    StoreType, ShuffWide,
8298                                    DAG.getIntPtrConstant(I));
8299       SDValue Ch = DAG.getStore(St->getChain(), DL, SubVec, BasePtr,
8300                                 St->getPointerInfo(), St->isVolatile(),
8301                                 St->isNonTemporal(), St->getAlignment());
8302       BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr,
8303                             Increment);
8304       Chains.push_back(Ch);
8305     }
8306     return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains);
8307   }
8308
8309   if (!ISD::isNormalStore(St))
8310     return SDValue();
8311
8312   // Split a store of a VMOVDRR into two integer stores to avoid mixing NEON and
8313   // ARM stores of arguments in the same cache line.
8314   if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR &&
8315       StVal.getNode()->hasOneUse()) {
8316     SelectionDAG  &DAG = DCI.DAG;
8317     SDLoc DL(St);
8318     SDValue BasePtr = St->getBasePtr();
8319     SDValue NewST1 = DAG.getStore(St->getChain(), DL,
8320                                   StVal.getNode()->getOperand(0), BasePtr,
8321                                   St->getPointerInfo(), St->isVolatile(),
8322                                   St->isNonTemporal(), St->getAlignment());
8323
8324     SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr,
8325                                     DAG.getConstant(4, MVT::i32));
8326     return DAG.getStore(NewST1.getValue(0), DL, StVal.getNode()->getOperand(1),
8327                         OffsetPtr, St->getPointerInfo(), St->isVolatile(),
8328                         St->isNonTemporal(),
8329                         std::min(4U, St->getAlignment() / 2));
8330   }
8331
8332   if (StVal.getValueType() != MVT::i64 ||
8333       StVal.getNode()->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
8334     return SDValue();
8335
8336   // Bitcast an i64 store extracted from a vector to f64.
8337   // Otherwise, the i64 value will be legalized to a pair of i32 values.
8338   SelectionDAG &DAG = DCI.DAG;
8339   SDLoc dl(StVal);
8340   SDValue IntVec = StVal.getOperand(0);
8341   EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
8342                                  IntVec.getValueType().getVectorNumElements());
8343   SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec);
8344   SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8345                                Vec, StVal.getOperand(1));
8346   dl = SDLoc(N);
8347   SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt);
8348   // Make the DAGCombiner fold the bitcasts.
8349   DCI.AddToWorklist(Vec.getNode());
8350   DCI.AddToWorklist(ExtElt.getNode());
8351   DCI.AddToWorklist(V.getNode());
8352   return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(),
8353                       St->getPointerInfo(), St->isVolatile(),
8354                       St->isNonTemporal(), St->getAlignment(),
8355                       St->getTBAAInfo());
8356 }
8357
8358 /// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node
8359 /// are normal, non-volatile loads.  If so, it is profitable to bitcast an
8360 /// i64 vector to have f64 elements, since the value can then be loaded
8361 /// directly into a VFP register.
8362 static bool hasNormalLoadOperand(SDNode *N) {
8363   unsigned NumElts = N->getValueType(0).getVectorNumElements();
8364   for (unsigned i = 0; i < NumElts; ++i) {
8365     SDNode *Elt = N->getOperand(i).getNode();
8366     if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile())
8367       return true;
8368   }
8369   return false;
8370 }
8371
8372 /// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for
8373 /// ISD::BUILD_VECTOR.
8374 static SDValue PerformBUILD_VECTORCombine(SDNode *N,
8375                                           TargetLowering::DAGCombinerInfo &DCI){
8376   // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X):
8377   // VMOVRRD is introduced when legalizing i64 types.  It forces the i64 value
8378   // into a pair of GPRs, which is fine when the value is used as a scalar,
8379   // but if the i64 value is converted to a vector, we need to undo the VMOVRRD.
8380   SelectionDAG &DAG = DCI.DAG;
8381   if (N->getNumOperands() == 2) {
8382     SDValue RV = PerformVMOVDRRCombine(N, DAG);
8383     if (RV.getNode())
8384       return RV;
8385   }
8386
8387   // Load i64 elements as f64 values so that type legalization does not split
8388   // them up into i32 values.
8389   EVT VT = N->getValueType(0);
8390   if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N))
8391     return SDValue();
8392   SDLoc dl(N);
8393   SmallVector<SDValue, 8> Ops;
8394   unsigned NumElts = VT.getVectorNumElements();
8395   for (unsigned i = 0; i < NumElts; ++i) {
8396     SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i));
8397     Ops.push_back(V);
8398     // Make the DAGCombiner fold the bitcast.
8399     DCI.AddToWorklist(V.getNode());
8400   }
8401   EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts);
8402   SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops);
8403   return DAG.getNode(ISD::BITCAST, dl, VT, BV);
8404 }
8405
8406 /// \brief Target-specific dag combine xforms for ARMISD::BUILD_VECTOR.
8407 static SDValue
8408 PerformARMBUILD_VECTORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
8409   // ARMISD::BUILD_VECTOR is introduced when legalizing ISD::BUILD_VECTOR.
8410   // At that time, we may have inserted bitcasts from integer to float.
8411   // If these bitcasts have survived DAGCombine, change the lowering of this
8412   // BUILD_VECTOR in something more vector friendly, i.e., that does not
8413   // force to use floating point types.
8414
8415   // Make sure we can change the type of the vector.
8416   // This is possible iff:
8417   // 1. The vector is only used in a bitcast to a integer type. I.e.,
8418   //    1.1. Vector is used only once.
8419   //    1.2. Use is a bit convert to an integer type.
8420   // 2. The size of its operands are 32-bits (64-bits are not legal).
8421   EVT VT = N->getValueType(0);
8422   EVT EltVT = VT.getVectorElementType();
8423
8424   // Check 1.1. and 2.
8425   if (EltVT.getSizeInBits() != 32 || !N->hasOneUse())
8426     return SDValue();
8427
8428   // By construction, the input type must be float.
8429   assert(EltVT == MVT::f32 && "Unexpected type!");
8430
8431   // Check 1.2.
8432   SDNode *Use = *N->use_begin();
8433   if (Use->getOpcode() != ISD::BITCAST ||
8434       Use->getValueType(0).isFloatingPoint())
8435     return SDValue();
8436
8437   // Check profitability.
8438   // Model is, if more than half of the relevant operands are bitcast from
8439   // i32, turn the build_vector into a sequence of insert_vector_elt.
8440   // Relevant operands are everything that is not statically
8441   // (i.e., at compile time) bitcasted.
8442   unsigned NumOfBitCastedElts = 0;
8443   unsigned NumElts = VT.getVectorNumElements();
8444   unsigned NumOfRelevantElts = NumElts;
8445   for (unsigned Idx = 0; Idx < NumElts; ++Idx) {
8446     SDValue Elt = N->getOperand(Idx);
8447     if (Elt->getOpcode() == ISD::BITCAST) {
8448       // Assume only bit cast to i32 will go away.
8449       if (Elt->getOperand(0).getValueType() == MVT::i32)
8450         ++NumOfBitCastedElts;
8451     } else if (Elt.getOpcode() == ISD::UNDEF || isa<ConstantSDNode>(Elt))
8452       // Constants are statically casted, thus do not count them as
8453       // relevant operands.
8454       --NumOfRelevantElts;
8455   }
8456
8457   // Check if more than half of the elements require a non-free bitcast.
8458   if (NumOfBitCastedElts <= NumOfRelevantElts / 2)
8459     return SDValue();
8460
8461   SelectionDAG &DAG = DCI.DAG;
8462   // Create the new vector type.
8463   EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts);
8464   // Check if the type is legal.
8465   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8466   if (!TLI.isTypeLegal(VecVT))
8467     return SDValue();
8468
8469   // Combine:
8470   // ARMISD::BUILD_VECTOR E1, E2, ..., EN.
8471   // => BITCAST INSERT_VECTOR_ELT
8472   //                      (INSERT_VECTOR_ELT (...), (BITCAST EN-1), N-1),
8473   //                      (BITCAST EN), N.
8474   SDValue Vec = DAG.getUNDEF(VecVT);
8475   SDLoc dl(N);
8476   for (unsigned Idx = 0 ; Idx < NumElts; ++Idx) {
8477     SDValue V = N->getOperand(Idx);
8478     if (V.getOpcode() == ISD::UNDEF)
8479       continue;
8480     if (V.getOpcode() == ISD::BITCAST &&
8481         V->getOperand(0).getValueType() == MVT::i32)
8482       // Fold obvious case.
8483       V = V.getOperand(0);
8484     else {
8485       V = DAG.getNode(ISD::BITCAST, SDLoc(V), MVT::i32, V);
8486       // Make the DAGCombiner fold the bitcasts.
8487       DCI.AddToWorklist(V.getNode());
8488     }
8489     SDValue LaneIdx = DAG.getConstant(Idx, MVT::i32);
8490     Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecVT, Vec, V, LaneIdx);
8491   }
8492   Vec = DAG.getNode(ISD::BITCAST, dl, VT, Vec);
8493   // Make the DAGCombiner fold the bitcasts.
8494   DCI.AddToWorklist(Vec.getNode());
8495   return Vec;
8496 }
8497
8498 /// PerformInsertEltCombine - Target-specific dag combine xforms for
8499 /// ISD::INSERT_VECTOR_ELT.
8500 static SDValue PerformInsertEltCombine(SDNode *N,
8501                                        TargetLowering::DAGCombinerInfo &DCI) {
8502   // Bitcast an i64 load inserted into a vector to f64.
8503   // Otherwise, the i64 value will be legalized to a pair of i32 values.
8504   EVT VT = N->getValueType(0);
8505   SDNode *Elt = N->getOperand(1).getNode();
8506   if (VT.getVectorElementType() != MVT::i64 ||
8507       !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile())
8508     return SDValue();
8509
8510   SelectionDAG &DAG = DCI.DAG;
8511   SDLoc dl(N);
8512   EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64,
8513                                  VT.getVectorNumElements());
8514   SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0));
8515   SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1));
8516   // Make the DAGCombiner fold the bitcasts.
8517   DCI.AddToWorklist(Vec.getNode());
8518   DCI.AddToWorklist(V.getNode());
8519   SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT,
8520                                Vec, V, N->getOperand(2));
8521   return DAG.getNode(ISD::BITCAST, dl, VT, InsElt);
8522 }
8523
8524 /// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for
8525 /// ISD::VECTOR_SHUFFLE.
8526 static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) {
8527   // The LLVM shufflevector instruction does not require the shuffle mask
8528   // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does
8529   // have that requirement.  When translating to ISD::VECTOR_SHUFFLE, if the
8530   // operands do not match the mask length, they are extended by concatenating
8531   // them with undef vectors.  That is probably the right thing for other
8532   // targets, but for NEON it is better to concatenate two double-register
8533   // size vector operands into a single quad-register size vector.  Do that
8534   // transformation here:
8535   //   shuffle(concat(v1, undef), concat(v2, undef)) ->
8536   //   shuffle(concat(v1, v2), undef)
8537   SDValue Op0 = N->getOperand(0);
8538   SDValue Op1 = N->getOperand(1);
8539   if (Op0.getOpcode() != ISD::CONCAT_VECTORS ||
8540       Op1.getOpcode() != ISD::CONCAT_VECTORS ||
8541       Op0.getNumOperands() != 2 ||
8542       Op1.getNumOperands() != 2)
8543     return SDValue();
8544   SDValue Concat0Op1 = Op0.getOperand(1);
8545   SDValue Concat1Op1 = Op1.getOperand(1);
8546   if (Concat0Op1.getOpcode() != ISD::UNDEF ||
8547       Concat1Op1.getOpcode() != ISD::UNDEF)
8548     return SDValue();
8549   // Skip the transformation if any of the types are illegal.
8550   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8551   EVT VT = N->getValueType(0);
8552   if (!TLI.isTypeLegal(VT) ||
8553       !TLI.isTypeLegal(Concat0Op1.getValueType()) ||
8554       !TLI.isTypeLegal(Concat1Op1.getValueType()))
8555     return SDValue();
8556
8557   SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
8558                                   Op0.getOperand(0), Op1.getOperand(0));
8559   // Translate the shuffle mask.
8560   SmallVector<int, 16> NewMask;
8561   unsigned NumElts = VT.getVectorNumElements();
8562   unsigned HalfElts = NumElts/2;
8563   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8564   for (unsigned n = 0; n < NumElts; ++n) {
8565     int MaskElt = SVN->getMaskElt(n);
8566     int NewElt = -1;
8567     if (MaskElt < (int)HalfElts)
8568       NewElt = MaskElt;
8569     else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts))
8570       NewElt = HalfElts + MaskElt - NumElts;
8571     NewMask.push_back(NewElt);
8572   }
8573   return DAG.getVectorShuffle(VT, SDLoc(N), NewConcat,
8574                               DAG.getUNDEF(VT), NewMask.data());
8575 }
8576
8577 /// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP and
8578 /// NEON load/store intrinsics to merge base address updates.
8579 static SDValue CombineBaseUpdate(SDNode *N,
8580                                  TargetLowering::DAGCombinerInfo &DCI) {
8581   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8582     return SDValue();
8583
8584   SelectionDAG &DAG = DCI.DAG;
8585   bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID ||
8586                       N->getOpcode() == ISD::INTRINSIC_W_CHAIN);
8587   unsigned AddrOpIdx = (isIntrinsic ? 2 : 1);
8588   SDValue Addr = N->getOperand(AddrOpIdx);
8589
8590   // Search for a use of the address operand that is an increment.
8591   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
8592          UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
8593     SDNode *User = *UI;
8594     if (User->getOpcode() != ISD::ADD ||
8595         UI.getUse().getResNo() != Addr.getResNo())
8596       continue;
8597
8598     // Check that the add is independent of the load/store.  Otherwise, folding
8599     // it would create a cycle.
8600     if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
8601       continue;
8602
8603     // Find the new opcode for the updating load/store.
8604     bool isLoad = true;
8605     bool isLaneOp = false;
8606     unsigned NewOpc = 0;
8607     unsigned NumVecs = 0;
8608     if (isIntrinsic) {
8609       unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
8610       switch (IntNo) {
8611       default: llvm_unreachable("unexpected intrinsic for Neon base update");
8612       case Intrinsic::arm_neon_vld1:     NewOpc = ARMISD::VLD1_UPD;
8613         NumVecs = 1; break;
8614       case Intrinsic::arm_neon_vld2:     NewOpc = ARMISD::VLD2_UPD;
8615         NumVecs = 2; break;
8616       case Intrinsic::arm_neon_vld3:     NewOpc = ARMISD::VLD3_UPD;
8617         NumVecs = 3; break;
8618       case Intrinsic::arm_neon_vld4:     NewOpc = ARMISD::VLD4_UPD;
8619         NumVecs = 4; break;
8620       case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD;
8621         NumVecs = 2; isLaneOp = true; break;
8622       case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD;
8623         NumVecs = 3; isLaneOp = true; break;
8624       case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD;
8625         NumVecs = 4; isLaneOp = true; break;
8626       case Intrinsic::arm_neon_vst1:     NewOpc = ARMISD::VST1_UPD;
8627         NumVecs = 1; isLoad = false; break;
8628       case Intrinsic::arm_neon_vst2:     NewOpc = ARMISD::VST2_UPD;
8629         NumVecs = 2; isLoad = false; break;
8630       case Intrinsic::arm_neon_vst3:     NewOpc = ARMISD::VST3_UPD;
8631         NumVecs = 3; isLoad = false; break;
8632       case Intrinsic::arm_neon_vst4:     NewOpc = ARMISD::VST4_UPD;
8633         NumVecs = 4; isLoad = false; break;
8634       case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD;
8635         NumVecs = 2; isLoad = false; isLaneOp = true; break;
8636       case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD;
8637         NumVecs = 3; isLoad = false; isLaneOp = true; break;
8638       case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD;
8639         NumVecs = 4; isLoad = false; isLaneOp = true; break;
8640       }
8641     } else {
8642       isLaneOp = true;
8643       switch (N->getOpcode()) {
8644       default: llvm_unreachable("unexpected opcode for Neon base update");
8645       case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break;
8646       case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break;
8647       case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break;
8648       }
8649     }
8650
8651     // Find the size of memory referenced by the load/store.
8652     EVT VecTy;
8653     if (isLoad)
8654       VecTy = N->getValueType(0);
8655     else
8656       VecTy = N->getOperand(AddrOpIdx+1).getValueType();
8657     unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
8658     if (isLaneOp)
8659       NumBytes /= VecTy.getVectorNumElements();
8660
8661     // If the increment is a constant, it must match the memory ref size.
8662     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
8663     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
8664       uint64_t IncVal = CInc->getZExtValue();
8665       if (IncVal != NumBytes)
8666         continue;
8667     } else if (NumBytes >= 3 * 16) {
8668       // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two
8669       // separate instructions that make it harder to use a non-constant update.
8670       continue;
8671     }
8672
8673     // Create the new updating load/store node.
8674     EVT Tys[6];
8675     unsigned NumResultVecs = (isLoad ? NumVecs : 0);
8676     unsigned n;
8677     for (n = 0; n < NumResultVecs; ++n)
8678       Tys[n] = VecTy;
8679     Tys[n++] = MVT::i32;
8680     Tys[n] = MVT::Other;
8681     SDVTList SDTys = DAG.getVTList(ArrayRef<EVT>(Tys, NumResultVecs+2));
8682     SmallVector<SDValue, 8> Ops;
8683     Ops.push_back(N->getOperand(0)); // incoming chain
8684     Ops.push_back(N->getOperand(AddrOpIdx));
8685     Ops.push_back(Inc);
8686     for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands(); ++i) {
8687       Ops.push_back(N->getOperand(i));
8688     }
8689     MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N);
8690     SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, SDLoc(N), SDTys,
8691                                            Ops, MemInt->getMemoryVT(),
8692                                            MemInt->getMemOperand());
8693
8694     // Update the uses.
8695     std::vector<SDValue> NewResults;
8696     for (unsigned i = 0; i < NumResultVecs; ++i) {
8697       NewResults.push_back(SDValue(UpdN.getNode(), i));
8698     }
8699     NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain
8700     DCI.CombineTo(N, NewResults);
8701     DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
8702
8703     break;
8704   }
8705   return SDValue();
8706 }
8707
8708 /// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a
8709 /// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic
8710 /// are also VDUPLANEs.  If so, combine them to a vldN-dup operation and
8711 /// return true.
8712 static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) {
8713   SelectionDAG &DAG = DCI.DAG;
8714   EVT VT = N->getValueType(0);
8715   // vldN-dup instructions only support 64-bit vectors for N > 1.
8716   if (!VT.is64BitVector())
8717     return false;
8718
8719   // Check if the VDUPLANE operand is a vldN-dup intrinsic.
8720   SDNode *VLD = N->getOperand(0).getNode();
8721   if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN)
8722     return false;
8723   unsigned NumVecs = 0;
8724   unsigned NewOpc = 0;
8725   unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue();
8726   if (IntNo == Intrinsic::arm_neon_vld2lane) {
8727     NumVecs = 2;
8728     NewOpc = ARMISD::VLD2DUP;
8729   } else if (IntNo == Intrinsic::arm_neon_vld3lane) {
8730     NumVecs = 3;
8731     NewOpc = ARMISD::VLD3DUP;
8732   } else if (IntNo == Intrinsic::arm_neon_vld4lane) {
8733     NumVecs = 4;
8734     NewOpc = ARMISD::VLD4DUP;
8735   } else {
8736     return false;
8737   }
8738
8739   // First check that all the vldN-lane uses are VDUPLANEs and that the lane
8740   // numbers match the load.
8741   unsigned VLDLaneNo =
8742     cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue();
8743   for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
8744        UI != UE; ++UI) {
8745     // Ignore uses of the chain result.
8746     if (UI.getUse().getResNo() == NumVecs)
8747       continue;
8748     SDNode *User = *UI;
8749     if (User->getOpcode() != ARMISD::VDUPLANE ||
8750         VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue())
8751       return false;
8752   }
8753
8754   // Create the vldN-dup node.
8755   EVT Tys[5];
8756   unsigned n;
8757   for (n = 0; n < NumVecs; ++n)
8758     Tys[n] = VT;
8759   Tys[n] = MVT::Other;
8760   SDVTList SDTys = DAG.getVTList(ArrayRef<EVT>(Tys, NumVecs+1));
8761   SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) };
8762   MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD);
8763   SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, SDLoc(VLD), SDTys,
8764                                            Ops, VLDMemInt->getMemoryVT(),
8765                                            VLDMemInt->getMemOperand());
8766
8767   // Update the uses.
8768   for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end();
8769        UI != UE; ++UI) {
8770     unsigned ResNo = UI.getUse().getResNo();
8771     // Ignore uses of the chain result.
8772     if (ResNo == NumVecs)
8773       continue;
8774     SDNode *User = *UI;
8775     DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo));
8776   }
8777
8778   // Now the vldN-lane intrinsic is dead except for its chain result.
8779   // Update uses of the chain.
8780   std::vector<SDValue> VLDDupResults;
8781   for (unsigned n = 0; n < NumVecs; ++n)
8782     VLDDupResults.push_back(SDValue(VLDDup.getNode(), n));
8783   VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs));
8784   DCI.CombineTo(VLD, VLDDupResults);
8785
8786   return true;
8787 }
8788
8789 /// PerformVDUPLANECombine - Target-specific dag combine xforms for
8790 /// ARMISD::VDUPLANE.
8791 static SDValue PerformVDUPLANECombine(SDNode *N,
8792                                       TargetLowering::DAGCombinerInfo &DCI) {
8793   SDValue Op = N->getOperand(0);
8794
8795   // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses
8796   // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation.
8797   if (CombineVLDDUP(N, DCI))
8798     return SDValue(N, 0);
8799
8800   // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is
8801   // redundant.  Ignore bit_converts for now; element sizes are checked below.
8802   while (Op.getOpcode() == ISD::BITCAST)
8803     Op = Op.getOperand(0);
8804   if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM)
8805     return SDValue();
8806
8807   // Make sure the VMOV element size is not bigger than the VDUPLANE elements.
8808   unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits();
8809   // The canonical VMOV for a zero vector uses a 32-bit element size.
8810   unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8811   unsigned EltBits;
8812   if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0)
8813     EltSize = 8;
8814   EVT VT = N->getValueType(0);
8815   if (EltSize > VT.getVectorElementType().getSizeInBits())
8816     return SDValue();
8817
8818   return DCI.DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
8819 }
8820
8821 // isConstVecPow2 - Return true if each vector element is a power of 2, all
8822 // elements are the same constant, C, and Log2(C) ranges from 1 to 32.
8823 static bool isConstVecPow2(SDValue ConstVec, bool isSigned, uint64_t &C)
8824 {
8825   integerPart cN;
8826   integerPart c0 = 0;
8827   for (unsigned I = 0, E = ConstVec.getValueType().getVectorNumElements();
8828        I != E; I++) {
8829     ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(ConstVec.getOperand(I));
8830     if (!C)
8831       return false;
8832
8833     bool isExact;
8834     APFloat APF = C->getValueAPF();
8835     if (APF.convertToInteger(&cN, 64, isSigned, APFloat::rmTowardZero, &isExact)
8836         != APFloat::opOK || !isExact)
8837       return false;
8838
8839     c0 = (I == 0) ? cN : c0;
8840     if (!isPowerOf2_64(cN) || c0 != cN || Log2_64(c0) < 1 || Log2_64(c0) > 32)
8841       return false;
8842   }
8843   C = c0;
8844   return true;
8845 }
8846
8847 /// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD)
8848 /// can replace combinations of VMUL and VCVT (floating-point to integer)
8849 /// when the VMUL has a constant operand that is a power of 2.
8850 ///
8851 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
8852 ///  vmul.f32        d16, d17, d16
8853 ///  vcvt.s32.f32    d16, d16
8854 /// becomes:
8855 ///  vcvt.s32.f32    d16, d16, #3
8856 static SDValue PerformVCVTCombine(SDNode *N,
8857                                   TargetLowering::DAGCombinerInfo &DCI,
8858                                   const ARMSubtarget *Subtarget) {
8859   SelectionDAG &DAG = DCI.DAG;
8860   SDValue Op = N->getOperand(0);
8861
8862   if (!Subtarget->hasNEON() || !Op.getValueType().isVector() ||
8863       Op.getOpcode() != ISD::FMUL)
8864     return SDValue();
8865
8866   uint64_t C;
8867   SDValue N0 = Op->getOperand(0);
8868   SDValue ConstVec = Op->getOperand(1);
8869   bool isSigned = N->getOpcode() == ISD::FP_TO_SINT;
8870
8871   if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
8872       !isConstVecPow2(ConstVec, isSigned, C))
8873     return SDValue();
8874
8875   MVT FloatTy = Op.getSimpleValueType().getVectorElementType();
8876   MVT IntTy = N->getSimpleValueType(0).getVectorElementType();
8877   if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32) {
8878     // These instructions only exist converting from f32 to i32. We can handle
8879     // smaller integers by generating an extra truncate, but larger ones would
8880     // be lossy.
8881     return SDValue();
8882   }
8883
8884   unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs :
8885     Intrinsic::arm_neon_vcvtfp2fxu;
8886   unsigned NumLanes = Op.getValueType().getVectorNumElements();
8887   SDValue FixConv =  DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N),
8888                                  NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
8889                                  DAG.getConstant(IntrinsicOpcode, MVT::i32), N0,
8890                                  DAG.getConstant(Log2_64(C), MVT::i32));
8891
8892   if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
8893     FixConv = DAG.getNode(ISD::TRUNCATE, SDLoc(N), N->getValueType(0), FixConv);
8894
8895   return FixConv;
8896 }
8897
8898 /// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD)
8899 /// can replace combinations of VCVT (integer to floating-point) and VDIV
8900 /// when the VDIV has a constant operand that is a power of 2.
8901 ///
8902 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>):
8903 ///  vcvt.f32.s32    d16, d16
8904 ///  vdiv.f32        d16, d17, d16
8905 /// becomes:
8906 ///  vcvt.f32.s32    d16, d16, #3
8907 static SDValue PerformVDIVCombine(SDNode *N,
8908                                   TargetLowering::DAGCombinerInfo &DCI,
8909                                   const ARMSubtarget *Subtarget) {
8910   SelectionDAG &DAG = DCI.DAG;
8911   SDValue Op = N->getOperand(0);
8912   unsigned OpOpcode = Op.getNode()->getOpcode();
8913
8914   if (!Subtarget->hasNEON() || !N->getValueType(0).isVector() ||
8915       (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP))
8916     return SDValue();
8917
8918   uint64_t C;
8919   SDValue ConstVec = N->getOperand(1);
8920   bool isSigned = OpOpcode == ISD::SINT_TO_FP;
8921
8922   if (ConstVec.getOpcode() != ISD::BUILD_VECTOR ||
8923       !isConstVecPow2(ConstVec, isSigned, C))
8924     return SDValue();
8925
8926   MVT FloatTy = N->getSimpleValueType(0).getVectorElementType();
8927   MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType();
8928   if (FloatTy.getSizeInBits() != 32 || IntTy.getSizeInBits() > 32) {
8929     // These instructions only exist converting from i32 to f32. We can handle
8930     // smaller integers by generating an extra extend, but larger ones would
8931     // be lossy.
8932     return SDValue();
8933   }
8934
8935   SDValue ConvInput = Op.getOperand(0);
8936   unsigned NumLanes = Op.getValueType().getVectorNumElements();
8937   if (IntTy.getSizeInBits() < FloatTy.getSizeInBits())
8938     ConvInput = DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
8939                             SDLoc(N), NumLanes == 2 ? MVT::v2i32 : MVT::v4i32,
8940                             ConvInput);
8941
8942   unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp :
8943     Intrinsic::arm_neon_vcvtfxu2fp;
8944   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N),
8945                      Op.getValueType(),
8946                      DAG.getConstant(IntrinsicOpcode, MVT::i32),
8947                      ConvInput, DAG.getConstant(Log2_64(C), MVT::i32));
8948 }
8949
8950 /// Getvshiftimm - Check if this is a valid build_vector for the immediate
8951 /// operand of a vector shift operation, where all the elements of the
8952 /// build_vector must have the same constant integer value.
8953 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
8954   // Ignore bit_converts.
8955   while (Op.getOpcode() == ISD::BITCAST)
8956     Op = Op.getOperand(0);
8957   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
8958   APInt SplatBits, SplatUndef;
8959   unsigned SplatBitSize;
8960   bool HasAnyUndefs;
8961   if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
8962                                       HasAnyUndefs, ElementBits) ||
8963       SplatBitSize > ElementBits)
8964     return false;
8965   Cnt = SplatBits.getSExtValue();
8966   return true;
8967 }
8968
8969 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
8970 /// operand of a vector shift left operation.  That value must be in the range:
8971 ///   0 <= Value < ElementBits for a left shift; or
8972 ///   0 <= Value <= ElementBits for a long left shift.
8973 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
8974   assert(VT.isVector() && "vector shift count is not a vector type");
8975   unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
8976   if (! getVShiftImm(Op, ElementBits, Cnt))
8977     return false;
8978   return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
8979 }
8980
8981 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
8982 /// operand of a vector shift right operation.  For a shift opcode, the value
8983 /// is positive, but for an intrinsic the value count must be negative. The
8984 /// absolute value must be in the range:
8985 ///   1 <= |Value| <= ElementBits for a right shift; or
8986 ///   1 <= |Value| <= ElementBits/2 for a narrow right shift.
8987 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
8988                          int64_t &Cnt) {
8989   assert(VT.isVector() && "vector shift count is not a vector type");
8990   unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
8991   if (! getVShiftImm(Op, ElementBits, Cnt))
8992     return false;
8993   if (isIntrinsic)
8994     Cnt = -Cnt;
8995   return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits));
8996 }
8997
8998 /// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics.
8999 static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) {
9000   unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
9001   switch (IntNo) {
9002   default:
9003     // Don't do anything for most intrinsics.
9004     break;
9005
9006   // Vector shifts: check for immediate versions and lower them.
9007   // Note: This is done during DAG combining instead of DAG legalizing because
9008   // the build_vectors for 64-bit vector element shift counts are generally
9009   // not legal, and it is hard to see their values after they get legalized to
9010   // loads from a constant pool.
9011   case Intrinsic::arm_neon_vshifts:
9012   case Intrinsic::arm_neon_vshiftu:
9013   case Intrinsic::arm_neon_vrshifts:
9014   case Intrinsic::arm_neon_vrshiftu:
9015   case Intrinsic::arm_neon_vrshiftn:
9016   case Intrinsic::arm_neon_vqshifts:
9017   case Intrinsic::arm_neon_vqshiftu:
9018   case Intrinsic::arm_neon_vqshiftsu:
9019   case Intrinsic::arm_neon_vqshiftns:
9020   case Intrinsic::arm_neon_vqshiftnu:
9021   case Intrinsic::arm_neon_vqshiftnsu:
9022   case Intrinsic::arm_neon_vqrshiftns:
9023   case Intrinsic::arm_neon_vqrshiftnu:
9024   case Intrinsic::arm_neon_vqrshiftnsu: {
9025     EVT VT = N->getOperand(1).getValueType();
9026     int64_t Cnt;
9027     unsigned VShiftOpc = 0;
9028
9029     switch (IntNo) {
9030     case Intrinsic::arm_neon_vshifts:
9031     case Intrinsic::arm_neon_vshiftu:
9032       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) {
9033         VShiftOpc = ARMISD::VSHL;
9034         break;
9035       }
9036       if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) {
9037         VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ?
9038                      ARMISD::VSHRs : ARMISD::VSHRu);
9039         break;
9040       }
9041       return SDValue();
9042
9043     case Intrinsic::arm_neon_vrshifts:
9044     case Intrinsic::arm_neon_vrshiftu:
9045       if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt))
9046         break;
9047       return SDValue();
9048
9049     case Intrinsic::arm_neon_vqshifts:
9050     case Intrinsic::arm_neon_vqshiftu:
9051       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9052         break;
9053       return SDValue();
9054
9055     case Intrinsic::arm_neon_vqshiftsu:
9056       if (isVShiftLImm(N->getOperand(2), VT, false, Cnt))
9057         break;
9058       llvm_unreachable("invalid shift count for vqshlu intrinsic");
9059
9060     case Intrinsic::arm_neon_vrshiftn:
9061     case Intrinsic::arm_neon_vqshiftns:
9062     case Intrinsic::arm_neon_vqshiftnu:
9063     case Intrinsic::arm_neon_vqshiftnsu:
9064     case Intrinsic::arm_neon_vqrshiftns:
9065     case Intrinsic::arm_neon_vqrshiftnu:
9066     case Intrinsic::arm_neon_vqrshiftnsu:
9067       // Narrowing shifts require an immediate right shift.
9068       if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt))
9069         break;
9070       llvm_unreachable("invalid shift count for narrowing vector shift "
9071                        "intrinsic");
9072
9073     default:
9074       llvm_unreachable("unhandled vector shift");
9075     }
9076
9077     switch (IntNo) {
9078     case Intrinsic::arm_neon_vshifts:
9079     case Intrinsic::arm_neon_vshiftu:
9080       // Opcode already set above.
9081       break;
9082     case Intrinsic::arm_neon_vrshifts:
9083       VShiftOpc = ARMISD::VRSHRs; break;
9084     case Intrinsic::arm_neon_vrshiftu:
9085       VShiftOpc = ARMISD::VRSHRu; break;
9086     case Intrinsic::arm_neon_vrshiftn:
9087       VShiftOpc = ARMISD::VRSHRN; break;
9088     case Intrinsic::arm_neon_vqshifts:
9089       VShiftOpc = ARMISD::VQSHLs; break;
9090     case Intrinsic::arm_neon_vqshiftu:
9091       VShiftOpc = ARMISD::VQSHLu; break;
9092     case Intrinsic::arm_neon_vqshiftsu:
9093       VShiftOpc = ARMISD::VQSHLsu; break;
9094     case Intrinsic::arm_neon_vqshiftns:
9095       VShiftOpc = ARMISD::VQSHRNs; break;
9096     case Intrinsic::arm_neon_vqshiftnu:
9097       VShiftOpc = ARMISD::VQSHRNu; break;
9098     case Intrinsic::arm_neon_vqshiftnsu:
9099       VShiftOpc = ARMISD::VQSHRNsu; break;
9100     case Intrinsic::arm_neon_vqrshiftns:
9101       VShiftOpc = ARMISD::VQRSHRNs; break;
9102     case Intrinsic::arm_neon_vqrshiftnu:
9103       VShiftOpc = ARMISD::VQRSHRNu; break;
9104     case Intrinsic::arm_neon_vqrshiftnsu:
9105       VShiftOpc = ARMISD::VQRSHRNsu; break;
9106     }
9107
9108     return DAG.getNode(VShiftOpc, SDLoc(N), N->getValueType(0),
9109                        N->getOperand(1), DAG.getConstant(Cnt, MVT::i32));
9110   }
9111
9112   case Intrinsic::arm_neon_vshiftins: {
9113     EVT VT = N->getOperand(1).getValueType();
9114     int64_t Cnt;
9115     unsigned VShiftOpc = 0;
9116
9117     if (isVShiftLImm(N->getOperand(3), VT, false, Cnt))
9118       VShiftOpc = ARMISD::VSLI;
9119     else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt))
9120       VShiftOpc = ARMISD::VSRI;
9121     else {
9122       llvm_unreachable("invalid shift count for vsli/vsri intrinsic");
9123     }
9124
9125     return DAG.getNode(VShiftOpc, SDLoc(N), N->getValueType(0),
9126                        N->getOperand(1), N->getOperand(2),
9127                        DAG.getConstant(Cnt, MVT::i32));
9128   }
9129
9130   case Intrinsic::arm_neon_vqrshifts:
9131   case Intrinsic::arm_neon_vqrshiftu:
9132     // No immediate versions of these to check for.
9133     break;
9134   }
9135
9136   return SDValue();
9137 }
9138
9139 /// PerformShiftCombine - Checks for immediate versions of vector shifts and
9140 /// lowers them.  As with the vector shift intrinsics, this is done during DAG
9141 /// combining instead of DAG legalizing because the build_vectors for 64-bit
9142 /// vector element shift counts are generally not legal, and it is hard to see
9143 /// their values after they get legalized to loads from a constant pool.
9144 static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG,
9145                                    const ARMSubtarget *ST) {
9146   EVT VT = N->getValueType(0);
9147   if (N->getOpcode() == ISD::SRL && VT == MVT::i32 && ST->hasV6Ops()) {
9148     // Canonicalize (srl (bswap x), 16) to (rotr (bswap x), 16) if the high
9149     // 16-bits of x is zero. This optimizes rev + lsr 16 to rev16.
9150     SDValue N1 = N->getOperand(1);
9151     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
9152       SDValue N0 = N->getOperand(0);
9153       if (C->getZExtValue() == 16 && N0.getOpcode() == ISD::BSWAP &&
9154           DAG.MaskedValueIsZero(N0.getOperand(0),
9155                                 APInt::getHighBitsSet(32, 16)))
9156         return DAG.getNode(ISD::ROTR, SDLoc(N), VT, N0, N1);
9157     }
9158   }
9159
9160   // Nothing to be done for scalar shifts.
9161   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9162   if (!VT.isVector() || !TLI.isTypeLegal(VT))
9163     return SDValue();
9164
9165   assert(ST->hasNEON() && "unexpected vector shift");
9166   int64_t Cnt;
9167
9168   switch (N->getOpcode()) {
9169   default: llvm_unreachable("unexpected shift opcode");
9170
9171   case ISD::SHL:
9172     if (isVShiftLImm(N->getOperand(1), VT, false, Cnt))
9173       return DAG.getNode(ARMISD::VSHL, SDLoc(N), VT, N->getOperand(0),
9174                          DAG.getConstant(Cnt, MVT::i32));
9175     break;
9176
9177   case ISD::SRA:
9178   case ISD::SRL:
9179     if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) {
9180       unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ?
9181                             ARMISD::VSHRs : ARMISD::VSHRu);
9182       return DAG.getNode(VShiftOpc, SDLoc(N), VT, N->getOperand(0),
9183                          DAG.getConstant(Cnt, MVT::i32));
9184     }
9185   }
9186   return SDValue();
9187 }
9188
9189 /// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND,
9190 /// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND.
9191 static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG,
9192                                     const ARMSubtarget *ST) {
9193   SDValue N0 = N->getOperand(0);
9194
9195   // Check for sign- and zero-extensions of vector extract operations of 8-
9196   // and 16-bit vector elements.  NEON supports these directly.  They are
9197   // handled during DAG combining because type legalization will promote them
9198   // to 32-bit types and it is messy to recognize the operations after that.
9199   if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
9200     SDValue Vec = N0.getOperand(0);
9201     SDValue Lane = N0.getOperand(1);
9202     EVT VT = N->getValueType(0);
9203     EVT EltVT = N0.getValueType();
9204     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9205
9206     if (VT == MVT::i32 &&
9207         (EltVT == MVT::i8 || EltVT == MVT::i16) &&
9208         TLI.isTypeLegal(Vec.getValueType()) &&
9209         isa<ConstantSDNode>(Lane)) {
9210
9211       unsigned Opc = 0;
9212       switch (N->getOpcode()) {
9213       default: llvm_unreachable("unexpected opcode");
9214       case ISD::SIGN_EXTEND:
9215         Opc = ARMISD::VGETLANEs;
9216         break;
9217       case ISD::ZERO_EXTEND:
9218       case ISD::ANY_EXTEND:
9219         Opc = ARMISD::VGETLANEu;
9220         break;
9221       }
9222       return DAG.getNode(Opc, SDLoc(N), VT, Vec, Lane);
9223     }
9224   }
9225
9226   return SDValue();
9227 }
9228
9229 /// PerformSELECT_CCCombine - Target-specific DAG combining for ISD::SELECT_CC
9230 /// to match f32 max/min patterns to use NEON vmax/vmin instructions.
9231 static SDValue PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG,
9232                                        const ARMSubtarget *ST) {
9233   // If the target supports NEON, try to use vmax/vmin instructions for f32
9234   // selects like "x < y ? x : y".  Unless the NoNaNsFPMath option is set,
9235   // be careful about NaNs:  NEON's vmax/vmin return NaN if either operand is
9236   // a NaN; only do the transformation when it matches that behavior.
9237
9238   // For now only do this when using NEON for FP operations; if using VFP, it
9239   // is not obvious that the benefit outweighs the cost of switching to the
9240   // NEON pipeline.
9241   if (!ST->hasNEON() || !ST->useNEONForSinglePrecisionFP() ||
9242       N->getValueType(0) != MVT::f32)
9243     return SDValue();
9244
9245   SDValue CondLHS = N->getOperand(0);
9246   SDValue CondRHS = N->getOperand(1);
9247   SDValue LHS = N->getOperand(2);
9248   SDValue RHS = N->getOperand(3);
9249   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
9250
9251   unsigned Opcode = 0;
9252   bool IsReversed;
9253   if (DAG.isEqualTo(LHS, CondLHS) && DAG.isEqualTo(RHS, CondRHS)) {
9254     IsReversed = false; // x CC y ? x : y
9255   } else if (DAG.isEqualTo(LHS, CondRHS) && DAG.isEqualTo(RHS, CondLHS)) {
9256     IsReversed = true ; // x CC y ? y : x
9257   } else {
9258     return SDValue();
9259   }
9260
9261   bool IsUnordered;
9262   switch (CC) {
9263   default: break;
9264   case ISD::SETOLT:
9265   case ISD::SETOLE:
9266   case ISD::SETLT:
9267   case ISD::SETLE:
9268   case ISD::SETULT:
9269   case ISD::SETULE:
9270     // If LHS is NaN, an ordered comparison will be false and the result will
9271     // be the RHS, but vmin(NaN, RHS) = NaN.  Avoid this by checking that LHS
9272     // != NaN.  Likewise, for unordered comparisons, check for RHS != NaN.
9273     IsUnordered = (CC == ISD::SETULT || CC == ISD::SETULE);
9274     if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
9275       break;
9276     // For less-than-or-equal comparisons, "+0 <= -0" will be true but vmin
9277     // will return -0, so vmin can only be used for unsafe math or if one of
9278     // the operands is known to be nonzero.
9279     if ((CC == ISD::SETLE || CC == ISD::SETOLE || CC == ISD::SETULE) &&
9280         !DAG.getTarget().Options.UnsafeFPMath &&
9281         !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9282       break;
9283     Opcode = IsReversed ? ARMISD::FMAX : ARMISD::FMIN;
9284     break;
9285
9286   case ISD::SETOGT:
9287   case ISD::SETOGE:
9288   case ISD::SETGT:
9289   case ISD::SETGE:
9290   case ISD::SETUGT:
9291   case ISD::SETUGE:
9292     // If LHS is NaN, an ordered comparison will be false and the result will
9293     // be the RHS, but vmax(NaN, RHS) = NaN.  Avoid this by checking that LHS
9294     // != NaN.  Likewise, for unordered comparisons, check for RHS != NaN.
9295     IsUnordered = (CC == ISD::SETUGT || CC == ISD::SETUGE);
9296     if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS))
9297       break;
9298     // For greater-than-or-equal comparisons, "-0 >= +0" will be true but vmax
9299     // will return +0, so vmax can only be used for unsafe math or if one of
9300     // the operands is known to be nonzero.
9301     if ((CC == ISD::SETGE || CC == ISD::SETOGE || CC == ISD::SETUGE) &&
9302         !DAG.getTarget().Options.UnsafeFPMath &&
9303         !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
9304       break;
9305     Opcode = IsReversed ? ARMISD::FMIN : ARMISD::FMAX;
9306     break;
9307   }
9308
9309   if (!Opcode)
9310     return SDValue();
9311   return DAG.getNode(Opcode, SDLoc(N), N->getValueType(0), LHS, RHS);
9312 }
9313
9314 /// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV.
9315 SDValue
9316 ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const {
9317   SDValue Cmp = N->getOperand(4);
9318   if (Cmp.getOpcode() != ARMISD::CMPZ)
9319     // Only looking at EQ and NE cases.
9320     return SDValue();
9321
9322   EVT VT = N->getValueType(0);
9323   SDLoc dl(N);
9324   SDValue LHS = Cmp.getOperand(0);
9325   SDValue RHS = Cmp.getOperand(1);
9326   SDValue FalseVal = N->getOperand(0);
9327   SDValue TrueVal = N->getOperand(1);
9328   SDValue ARMcc = N->getOperand(2);
9329   ARMCC::CondCodes CC =
9330     (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue();
9331
9332   // Simplify
9333   //   mov     r1, r0
9334   //   cmp     r1, x
9335   //   mov     r0, y
9336   //   moveq   r0, x
9337   // to
9338   //   cmp     r0, x
9339   //   movne   r0, y
9340   //
9341   //   mov     r1, r0
9342   //   cmp     r1, x
9343   //   mov     r0, x
9344   //   movne   r0, y
9345   // to
9346   //   cmp     r0, x
9347   //   movne   r0, y
9348   /// FIXME: Turn this into a target neutral optimization?
9349   SDValue Res;
9350   if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) {
9351     Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc,
9352                       N->getOperand(3), Cmp);
9353   } else if (CC == ARMCC::EQ && TrueVal == RHS) {
9354     SDValue ARMcc;
9355     SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl);
9356     Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc,
9357                       N->getOperand(3), NewCmp);
9358   }
9359
9360   if (Res.getNode()) {
9361     APInt KnownZero, KnownOne;
9362     DAG.ComputeMaskedBits(SDValue(N,0), KnownZero, KnownOne);
9363     // Capture demanded bits information that would be otherwise lost.
9364     if (KnownZero == 0xfffffffe)
9365       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9366                         DAG.getValueType(MVT::i1));
9367     else if (KnownZero == 0xffffff00)
9368       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9369                         DAG.getValueType(MVT::i8));
9370     else if (KnownZero == 0xffff0000)
9371       Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res,
9372                         DAG.getValueType(MVT::i16));
9373   }
9374
9375   return Res;
9376 }
9377
9378 SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N,
9379                                              DAGCombinerInfo &DCI) const {
9380   switch (N->getOpcode()) {
9381   default: break;
9382   case ISD::ADDC:       return PerformADDCCombine(N, DCI, Subtarget);
9383   case ISD::ADD:        return PerformADDCombine(N, DCI, Subtarget);
9384   case ISD::SUB:        return PerformSUBCombine(N, DCI);
9385   case ISD::MUL:        return PerformMULCombine(N, DCI, Subtarget);
9386   case ISD::OR:         return PerformORCombine(N, DCI, Subtarget);
9387   case ISD::XOR:        return PerformXORCombine(N, DCI, Subtarget);
9388   case ISD::AND:        return PerformANDCombine(N, DCI, Subtarget);
9389   case ARMISD::BFI:     return PerformBFICombine(N, DCI);
9390   case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI);
9391   case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG);
9392   case ISD::STORE:      return PerformSTORECombine(N, DCI);
9393   case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI);
9394   case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI);
9395   case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG);
9396   case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI);
9397   case ISD::FP_TO_SINT:
9398   case ISD::FP_TO_UINT: return PerformVCVTCombine(N, DCI, Subtarget);
9399   case ISD::FDIV:       return PerformVDIVCombine(N, DCI, Subtarget);
9400   case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG);
9401   case ISD::SHL:
9402   case ISD::SRA:
9403   case ISD::SRL:        return PerformShiftCombine(N, DCI.DAG, Subtarget);
9404   case ISD::SIGN_EXTEND:
9405   case ISD::ZERO_EXTEND:
9406   case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget);
9407   case ISD::SELECT_CC:  return PerformSELECT_CCCombine(N, DCI.DAG, Subtarget);
9408   case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG);
9409   case ARMISD::VLD2DUP:
9410   case ARMISD::VLD3DUP:
9411   case ARMISD::VLD4DUP:
9412     return CombineBaseUpdate(N, DCI);
9413   case ARMISD::BUILD_VECTOR:
9414     return PerformARMBUILD_VECTORCombine(N, DCI);
9415   case ISD::INTRINSIC_VOID:
9416   case ISD::INTRINSIC_W_CHAIN:
9417     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9418     case Intrinsic::arm_neon_vld1:
9419     case Intrinsic::arm_neon_vld2:
9420     case Intrinsic::arm_neon_vld3:
9421     case Intrinsic::arm_neon_vld4:
9422     case Intrinsic::arm_neon_vld2lane:
9423     case Intrinsic::arm_neon_vld3lane:
9424     case Intrinsic::arm_neon_vld4lane:
9425     case Intrinsic::arm_neon_vst1:
9426     case Intrinsic::arm_neon_vst2:
9427     case Intrinsic::arm_neon_vst3:
9428     case Intrinsic::arm_neon_vst4:
9429     case Intrinsic::arm_neon_vst2lane:
9430     case Intrinsic::arm_neon_vst3lane:
9431     case Intrinsic::arm_neon_vst4lane:
9432       return CombineBaseUpdate(N, DCI);
9433     default: break;
9434     }
9435     break;
9436   }
9437   return SDValue();
9438 }
9439
9440 bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc,
9441                                                           EVT VT) const {
9442   return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE);
9443 }
9444
9445 bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT, unsigned,
9446                                                       bool *Fast) const {
9447   // The AllowsUnaliged flag models the SCTLR.A setting in ARM cpus
9448   bool AllowsUnaligned = Subtarget->allowsUnalignedMem();
9449
9450   switch (VT.getSimpleVT().SimpleTy) {
9451   default:
9452     return false;
9453   case MVT::i8:
9454   case MVT::i16:
9455   case MVT::i32: {
9456     // Unaligned access can use (for example) LRDB, LRDH, LDR
9457     if (AllowsUnaligned) {
9458       if (Fast)
9459         *Fast = Subtarget->hasV7Ops();
9460       return true;
9461     }
9462     return false;
9463   }
9464   case MVT::f64:
9465   case MVT::v2f64: {
9466     // For any little-endian targets with neon, we can support unaligned ld/st
9467     // of D and Q (e.g. {D0,D1}) registers by using vld1.i8/vst1.i8.
9468     // A big-endian target may also explicitly support unaligned accesses
9469     if (Subtarget->hasNEON() && (AllowsUnaligned || isLittleEndian())) {
9470       if (Fast)
9471         *Fast = true;
9472       return true;
9473     }
9474     return false;
9475   }
9476   }
9477 }
9478
9479 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
9480                        unsigned AlignCheck) {
9481   return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
9482           (DstAlign == 0 || DstAlign % AlignCheck == 0));
9483 }
9484
9485 EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size,
9486                                            unsigned DstAlign, unsigned SrcAlign,
9487                                            bool IsMemset, bool ZeroMemset,
9488                                            bool MemcpyStrSrc,
9489                                            MachineFunction &MF) const {
9490   const Function *F = MF.getFunction();
9491
9492   // See if we can use NEON instructions for this...
9493   if ((!IsMemset || ZeroMemset) &&
9494       Subtarget->hasNEON() &&
9495       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
9496                                        Attribute::NoImplicitFloat)) {
9497     bool Fast;
9498     if (Size >= 16 &&
9499         (memOpAlign(SrcAlign, DstAlign, 16) ||
9500          (allowsUnalignedMemoryAccesses(MVT::v2f64, 0, &Fast) && Fast))) {
9501       return MVT::v2f64;
9502     } else if (Size >= 8 &&
9503                (memOpAlign(SrcAlign, DstAlign, 8) ||
9504                 (allowsUnalignedMemoryAccesses(MVT::f64, 0, &Fast) && Fast))) {
9505       return MVT::f64;
9506     }
9507   }
9508
9509   // Lowering to i32/i16 if the size permits.
9510   if (Size >= 4)
9511     return MVT::i32;
9512   else if (Size >= 2)
9513     return MVT::i16;
9514
9515   // Let the target-independent logic figure it out.
9516   return MVT::Other;
9517 }
9518
9519 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
9520   if (Val.getOpcode() != ISD::LOAD)
9521     return false;
9522
9523   EVT VT1 = Val.getValueType();
9524   if (!VT1.isSimple() || !VT1.isInteger() ||
9525       !VT2.isSimple() || !VT2.isInteger())
9526     return false;
9527
9528   switch (VT1.getSimpleVT().SimpleTy) {
9529   default: break;
9530   case MVT::i1:
9531   case MVT::i8:
9532   case MVT::i16:
9533     // 8-bit and 16-bit loads implicitly zero-extend to 32-bits.
9534     return true;
9535   }
9536
9537   return false;
9538 }
9539
9540 bool ARMTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
9541   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
9542     return false;
9543
9544   if (!isTypeLegal(EVT::getEVT(Ty1)))
9545     return false;
9546
9547   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
9548
9549   // Assuming the caller doesn't have a zeroext or signext return parameter,
9550   // truncation all the way down to i1 is valid.
9551   return true;
9552 }
9553
9554
9555 static bool isLegalT1AddressImmediate(int64_t V, EVT VT) {
9556   if (V < 0)
9557     return false;
9558
9559   unsigned Scale = 1;
9560   switch (VT.getSimpleVT().SimpleTy) {
9561   default: return false;
9562   case MVT::i1:
9563   case MVT::i8:
9564     // Scale == 1;
9565     break;
9566   case MVT::i16:
9567     // Scale == 2;
9568     Scale = 2;
9569     break;
9570   case MVT::i32:
9571     // Scale == 4;
9572     Scale = 4;
9573     break;
9574   }
9575
9576   if ((V & (Scale - 1)) != 0)
9577     return false;
9578   V /= Scale;
9579   return V == (V & ((1LL << 5) - 1));
9580 }
9581
9582 static bool isLegalT2AddressImmediate(int64_t V, EVT VT,
9583                                       const ARMSubtarget *Subtarget) {
9584   bool isNeg = false;
9585   if (V < 0) {
9586     isNeg = true;
9587     V = - V;
9588   }
9589
9590   switch (VT.getSimpleVT().SimpleTy) {
9591   default: return false;
9592   case MVT::i1:
9593   case MVT::i8:
9594   case MVT::i16:
9595   case MVT::i32:
9596     // + imm12 or - imm8
9597     if (isNeg)
9598       return V == (V & ((1LL << 8) - 1));
9599     return V == (V & ((1LL << 12) - 1));
9600   case MVT::f32:
9601   case MVT::f64:
9602     // Same as ARM mode. FIXME: NEON?
9603     if (!Subtarget->hasVFP2())
9604       return false;
9605     if ((V & 3) != 0)
9606       return false;
9607     V >>= 2;
9608     return V == (V & ((1LL << 8) - 1));
9609   }
9610 }
9611
9612 /// isLegalAddressImmediate - Return true if the integer value can be used
9613 /// as the offset of the target addressing mode for load / store of the
9614 /// given type.
9615 static bool isLegalAddressImmediate(int64_t V, EVT VT,
9616                                     const ARMSubtarget *Subtarget) {
9617   if (V == 0)
9618     return true;
9619
9620   if (!VT.isSimple())
9621     return false;
9622
9623   if (Subtarget->isThumb1Only())
9624     return isLegalT1AddressImmediate(V, VT);
9625   else if (Subtarget->isThumb2())
9626     return isLegalT2AddressImmediate(V, VT, Subtarget);
9627
9628   // ARM mode.
9629   if (V < 0)
9630     V = - V;
9631   switch (VT.getSimpleVT().SimpleTy) {
9632   default: return false;
9633   case MVT::i1:
9634   case MVT::i8:
9635   case MVT::i32:
9636     // +- imm12
9637     return V == (V & ((1LL << 12) - 1));
9638   case MVT::i16:
9639     // +- imm8
9640     return V == (V & ((1LL << 8) - 1));
9641   case MVT::f32:
9642   case MVT::f64:
9643     if (!Subtarget->hasVFP2()) // FIXME: NEON?
9644       return false;
9645     if ((V & 3) != 0)
9646       return false;
9647     V >>= 2;
9648     return V == (V & ((1LL << 8) - 1));
9649   }
9650 }
9651
9652 bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM,
9653                                                       EVT VT) const {
9654   int Scale = AM.Scale;
9655   if (Scale < 0)
9656     return false;
9657
9658   switch (VT.getSimpleVT().SimpleTy) {
9659   default: return false;
9660   case MVT::i1:
9661   case MVT::i8:
9662   case MVT::i16:
9663   case MVT::i32:
9664     if (Scale == 1)
9665       return true;
9666     // r + r << imm
9667     Scale = Scale & ~1;
9668     return Scale == 2 || Scale == 4 || Scale == 8;
9669   case MVT::i64:
9670     // r + r
9671     if (((unsigned)AM.HasBaseReg + Scale) <= 2)
9672       return true;
9673     return false;
9674   case MVT::isVoid:
9675     // Note, we allow "void" uses (basically, uses that aren't loads or
9676     // stores), because arm allows folding a scale into many arithmetic
9677     // operations.  This should be made more precise and revisited later.
9678
9679     // Allow r << imm, but the imm has to be a multiple of two.
9680     if (Scale & 1) return false;
9681     return isPowerOf2_32(Scale);
9682   }
9683 }
9684
9685 /// isLegalAddressingMode - Return true if the addressing mode represented
9686 /// by AM is legal for this target, for a load/store of the specified type.
9687 bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM,
9688                                               Type *Ty) const {
9689   EVT VT = getValueType(Ty, true);
9690   if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget))
9691     return false;
9692
9693   // Can never fold addr of global into load/store.
9694   if (AM.BaseGV)
9695     return false;
9696
9697   switch (AM.Scale) {
9698   case 0:  // no scale reg, must be "r+i" or "r", or "i".
9699     break;
9700   case 1:
9701     if (Subtarget->isThumb1Only())
9702       return false;
9703     // FALL THROUGH.
9704   default:
9705     // ARM doesn't support any R+R*scale+imm addr modes.
9706     if (AM.BaseOffs)
9707       return false;
9708
9709     if (!VT.isSimple())
9710       return false;
9711
9712     if (Subtarget->isThumb2())
9713       return isLegalT2ScaledAddressingMode(AM, VT);
9714
9715     int Scale = AM.Scale;
9716     switch (VT.getSimpleVT().SimpleTy) {
9717     default: return false;
9718     case MVT::i1:
9719     case MVT::i8:
9720     case MVT::i32:
9721       if (Scale < 0) Scale = -Scale;
9722       if (Scale == 1)
9723         return true;
9724       // r + r << imm
9725       return isPowerOf2_32(Scale & ~1);
9726     case MVT::i16:
9727     case MVT::i64:
9728       // r + r
9729       if (((unsigned)AM.HasBaseReg + Scale) <= 2)
9730         return true;
9731       return false;
9732
9733     case MVT::isVoid:
9734       // Note, we allow "void" uses (basically, uses that aren't loads or
9735       // stores), because arm allows folding a scale into many arithmetic
9736       // operations.  This should be made more precise and revisited later.
9737
9738       // Allow r << imm, but the imm has to be a multiple of two.
9739       if (Scale & 1) return false;
9740       return isPowerOf2_32(Scale);
9741     }
9742   }
9743   return true;
9744 }
9745
9746 /// isLegalICmpImmediate - Return true if the specified immediate is legal
9747 /// icmp immediate, that is the target has icmp instructions which can compare
9748 /// a register against the immediate without having to materialize the
9749 /// immediate into a register.
9750 bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const {
9751   // Thumb2 and ARM modes can use cmn for negative immediates.
9752   if (!Subtarget->isThumb())
9753     return ARM_AM::getSOImmVal(llvm::abs64(Imm)) != -1;
9754   if (Subtarget->isThumb2())
9755     return ARM_AM::getT2SOImmVal(llvm::abs64(Imm)) != -1;
9756   // Thumb1 doesn't have cmn, and only 8-bit immediates.
9757   return Imm >= 0 && Imm <= 255;
9758 }
9759
9760 /// isLegalAddImmediate - Return true if the specified immediate is a legal add
9761 /// *or sub* immediate, that is the target has add or sub instructions which can
9762 /// add a register with the immediate without having to materialize the
9763 /// immediate into a register.
9764 bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const {
9765   // Same encoding for add/sub, just flip the sign.
9766   int64_t AbsImm = llvm::abs64(Imm);
9767   if (!Subtarget->isThumb())
9768     return ARM_AM::getSOImmVal(AbsImm) != -1;
9769   if (Subtarget->isThumb2())
9770     return ARM_AM::getT2SOImmVal(AbsImm) != -1;
9771   // Thumb1 only has 8-bit unsigned immediate.
9772   return AbsImm >= 0 && AbsImm <= 255;
9773 }
9774
9775 static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT,
9776                                       bool isSEXTLoad, SDValue &Base,
9777                                       SDValue &Offset, bool &isInc,
9778                                       SelectionDAG &DAG) {
9779   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
9780     return false;
9781
9782   if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) {
9783     // AddressingMode 3
9784     Base = Ptr->getOperand(0);
9785     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
9786       int RHSC = (int)RHS->getZExtValue();
9787       if (RHSC < 0 && RHSC > -256) {
9788         assert(Ptr->getOpcode() == ISD::ADD);
9789         isInc = false;
9790         Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
9791         return true;
9792       }
9793     }
9794     isInc = (Ptr->getOpcode() == ISD::ADD);
9795     Offset = Ptr->getOperand(1);
9796     return true;
9797   } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) {
9798     // AddressingMode 2
9799     if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
9800       int RHSC = (int)RHS->getZExtValue();
9801       if (RHSC < 0 && RHSC > -0x1000) {
9802         assert(Ptr->getOpcode() == ISD::ADD);
9803         isInc = false;
9804         Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
9805         Base = Ptr->getOperand(0);
9806         return true;
9807       }
9808     }
9809
9810     if (Ptr->getOpcode() == ISD::ADD) {
9811       isInc = true;
9812       ARM_AM::ShiftOpc ShOpcVal=
9813         ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode());
9814       if (ShOpcVal != ARM_AM::no_shift) {
9815         Base = Ptr->getOperand(1);
9816         Offset = Ptr->getOperand(0);
9817       } else {
9818         Base = Ptr->getOperand(0);
9819         Offset = Ptr->getOperand(1);
9820       }
9821       return true;
9822     }
9823
9824     isInc = (Ptr->getOpcode() == ISD::ADD);
9825     Base = Ptr->getOperand(0);
9826     Offset = Ptr->getOperand(1);
9827     return true;
9828   }
9829
9830   // FIXME: Use VLDM / VSTM to emulate indexed FP load / store.
9831   return false;
9832 }
9833
9834 static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT,
9835                                      bool isSEXTLoad, SDValue &Base,
9836                                      SDValue &Offset, bool &isInc,
9837                                      SelectionDAG &DAG) {
9838   if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB)
9839     return false;
9840
9841   Base = Ptr->getOperand(0);
9842   if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) {
9843     int RHSC = (int)RHS->getZExtValue();
9844     if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
9845       assert(Ptr->getOpcode() == ISD::ADD);
9846       isInc = false;
9847       Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
9848       return true;
9849     } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
9850       isInc = Ptr->getOpcode() == ISD::ADD;
9851       Offset = DAG.getConstant(RHSC, RHS->getValueType(0));
9852       return true;
9853     }
9854   }
9855
9856   return false;
9857 }
9858
9859 /// getPreIndexedAddressParts - returns true by value, base pointer and
9860 /// offset pointer and addressing mode by reference if the node's address
9861 /// can be legally represented as pre-indexed load / store address.
9862 bool
9863 ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
9864                                              SDValue &Offset,
9865                                              ISD::MemIndexedMode &AM,
9866                                              SelectionDAG &DAG) const {
9867   if (Subtarget->isThumb1Only())
9868     return false;
9869
9870   EVT VT;
9871   SDValue Ptr;
9872   bool isSEXTLoad = false;
9873   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
9874     Ptr = LD->getBasePtr();
9875     VT  = LD->getMemoryVT();
9876     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
9877   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
9878     Ptr = ST->getBasePtr();
9879     VT  = ST->getMemoryVT();
9880   } else
9881     return false;
9882
9883   bool isInc;
9884   bool isLegal = false;
9885   if (Subtarget->isThumb2())
9886     isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
9887                                        Offset, isInc, DAG);
9888   else
9889     isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base,
9890                                         Offset, isInc, DAG);
9891   if (!isLegal)
9892     return false;
9893
9894   AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC;
9895   return true;
9896 }
9897
9898 /// getPostIndexedAddressParts - returns true by value, base pointer and
9899 /// offset pointer and addressing mode by reference if this node can be
9900 /// combined with a load / store to form a post-indexed load / store.
9901 bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op,
9902                                                    SDValue &Base,
9903                                                    SDValue &Offset,
9904                                                    ISD::MemIndexedMode &AM,
9905                                                    SelectionDAG &DAG) const {
9906   if (Subtarget->isThumb1Only())
9907     return false;
9908
9909   EVT VT;
9910   SDValue Ptr;
9911   bool isSEXTLoad = false;
9912   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
9913     VT  = LD->getMemoryVT();
9914     Ptr = LD->getBasePtr();
9915     isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD;
9916   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
9917     VT  = ST->getMemoryVT();
9918     Ptr = ST->getBasePtr();
9919   } else
9920     return false;
9921
9922   bool isInc;
9923   bool isLegal = false;
9924   if (Subtarget->isThumb2())
9925     isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
9926                                        isInc, DAG);
9927   else
9928     isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset,
9929                                         isInc, DAG);
9930   if (!isLegal)
9931     return false;
9932
9933   if (Ptr != Base) {
9934     // Swap base ptr and offset to catch more post-index load / store when
9935     // it's legal. In Thumb2 mode, offset must be an immediate.
9936     if (Ptr == Offset && Op->getOpcode() == ISD::ADD &&
9937         !Subtarget->isThumb2())
9938       std::swap(Base, Offset);
9939
9940     // Post-indexed load / store update the base pointer.
9941     if (Ptr != Base)
9942       return false;
9943   }
9944
9945   AM = isInc ? ISD::POST_INC : ISD::POST_DEC;
9946   return true;
9947 }
9948
9949 void ARMTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
9950                                                        APInt &KnownZero,
9951                                                        APInt &KnownOne,
9952                                                        const SelectionDAG &DAG,
9953                                                        unsigned Depth) const {
9954   unsigned BitWidth = KnownOne.getBitWidth();
9955   KnownZero = KnownOne = APInt(BitWidth, 0);
9956   switch (Op.getOpcode()) {
9957   default: break;
9958   case ARMISD::ADDC:
9959   case ARMISD::ADDE:
9960   case ARMISD::SUBC:
9961   case ARMISD::SUBE:
9962     // These nodes' second result is a boolean
9963     if (Op.getResNo() == 0)
9964       break;
9965     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
9966     break;
9967   case ARMISD::CMOV: {
9968     // Bits are known zero/one if known on the LHS and RHS.
9969     DAG.ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
9970     if (KnownZero == 0 && KnownOne == 0) return;
9971
9972     APInt KnownZeroRHS, KnownOneRHS;
9973     DAG.ComputeMaskedBits(Op.getOperand(1), KnownZeroRHS, KnownOneRHS, Depth+1);
9974     KnownZero &= KnownZeroRHS;
9975     KnownOne  &= KnownOneRHS;
9976     return;
9977   }
9978   case ISD::INTRINSIC_W_CHAIN: {
9979     ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
9980     Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
9981     switch (IntID) {
9982     default: return;
9983     case Intrinsic::arm_ldaex:
9984     case Intrinsic::arm_ldrex: {
9985       EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
9986       unsigned MemBits = VT.getScalarType().getSizeInBits();
9987       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
9988       return;
9989     }
9990     }
9991   }
9992   }
9993 }
9994
9995 //===----------------------------------------------------------------------===//
9996 //                           ARM Inline Assembly Support
9997 //===----------------------------------------------------------------------===//
9998
9999 bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const {
10000   // Looking for "rev" which is V6+.
10001   if (!Subtarget->hasV6Ops())
10002     return false;
10003
10004   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
10005   std::string AsmStr = IA->getAsmString();
10006   SmallVector<StringRef, 4> AsmPieces;
10007   SplitString(AsmStr, AsmPieces, ";\n");
10008
10009   switch (AsmPieces.size()) {
10010   default: return false;
10011   case 1:
10012     AsmStr = AsmPieces[0];
10013     AsmPieces.clear();
10014     SplitString(AsmStr, AsmPieces, " \t,");
10015
10016     // rev $0, $1
10017     if (AsmPieces.size() == 3 &&
10018         AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" &&
10019         IA->getConstraintString().compare(0, 4, "=l,l") == 0) {
10020       IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
10021       if (Ty && Ty->getBitWidth() == 32)
10022         return IntrinsicLowering::LowerToByteSwap(CI);
10023     }
10024     break;
10025   }
10026
10027   return false;
10028 }
10029
10030 /// getConstraintType - Given a constraint letter, return the type of
10031 /// constraint it is for this target.
10032 ARMTargetLowering::ConstraintType
10033 ARMTargetLowering::getConstraintType(const std::string &Constraint) const {
10034   if (Constraint.size() == 1) {
10035     switch (Constraint[0]) {
10036     default:  break;
10037     case 'l': return C_RegisterClass;
10038     case 'w': return C_RegisterClass;
10039     case 'h': return C_RegisterClass;
10040     case 'x': return C_RegisterClass;
10041     case 't': return C_RegisterClass;
10042     case 'j': return C_Other; // Constant for movw.
10043       // An address with a single base register. Due to the way we
10044       // currently handle addresses it is the same as an 'r' memory constraint.
10045     case 'Q': return C_Memory;
10046     }
10047   } else if (Constraint.size() == 2) {
10048     switch (Constraint[0]) {
10049     default: break;
10050     // All 'U+' constraints are addresses.
10051     case 'U': return C_Memory;
10052     }
10053   }
10054   return TargetLowering::getConstraintType(Constraint);
10055 }
10056
10057 /// Examine constraint type and operand type and determine a weight value.
10058 /// This object must already have been set up with the operand type
10059 /// and the current alternative constraint selected.
10060 TargetLowering::ConstraintWeight
10061 ARMTargetLowering::getSingleConstraintMatchWeight(
10062     AsmOperandInfo &info, const char *constraint) const {
10063   ConstraintWeight weight = CW_Invalid;
10064   Value *CallOperandVal = info.CallOperandVal;
10065     // If we don't have a value, we can't do a match,
10066     // but allow it at the lowest weight.
10067   if (!CallOperandVal)
10068     return CW_Default;
10069   Type *type = CallOperandVal->getType();
10070   // Look at the constraint type.
10071   switch (*constraint) {
10072   default:
10073     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
10074     break;
10075   case 'l':
10076     if (type->isIntegerTy()) {
10077       if (Subtarget->isThumb())
10078         weight = CW_SpecificReg;
10079       else
10080         weight = CW_Register;
10081     }
10082     break;
10083   case 'w':
10084     if (type->isFloatingPointTy())
10085       weight = CW_Register;
10086     break;
10087   }
10088   return weight;
10089 }
10090
10091 typedef std::pair<unsigned, const TargetRegisterClass*> RCPair;
10092 RCPair
10093 ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
10094                                                 MVT VT) const {
10095   if (Constraint.size() == 1) {
10096     // GCC ARM Constraint Letters
10097     switch (Constraint[0]) {
10098     case 'l': // Low regs or general regs.
10099       if (Subtarget->isThumb())
10100         return RCPair(0U, &ARM::tGPRRegClass);
10101       return RCPair(0U, &ARM::GPRRegClass);
10102     case 'h': // High regs or no regs.
10103       if (Subtarget->isThumb())
10104         return RCPair(0U, &ARM::hGPRRegClass);
10105       break;
10106     case 'r':
10107       return RCPair(0U, &ARM::GPRRegClass);
10108     case 'w':
10109       if (VT == MVT::Other)
10110         break;
10111       if (VT == MVT::f32)
10112         return RCPair(0U, &ARM::SPRRegClass);
10113       if (VT.getSizeInBits() == 64)
10114         return RCPair(0U, &ARM::DPRRegClass);
10115       if (VT.getSizeInBits() == 128)
10116         return RCPair(0U, &ARM::QPRRegClass);
10117       break;
10118     case 'x':
10119       if (VT == MVT::Other)
10120         break;
10121       if (VT == MVT::f32)
10122         return RCPair(0U, &ARM::SPR_8RegClass);
10123       if (VT.getSizeInBits() == 64)
10124         return RCPair(0U, &ARM::DPR_8RegClass);
10125       if (VT.getSizeInBits() == 128)
10126         return RCPair(0U, &ARM::QPR_8RegClass);
10127       break;
10128     case 't':
10129       if (VT == MVT::f32)
10130         return RCPair(0U, &ARM::SPRRegClass);
10131       break;
10132     }
10133   }
10134   if (StringRef("{cc}").equals_lower(Constraint))
10135     return std::make_pair(unsigned(ARM::CPSR), &ARM::CCRRegClass);
10136
10137   return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
10138 }
10139
10140 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
10141 /// vector.  If it is invalid, don't add anything to Ops.
10142 void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op,
10143                                                      std::string &Constraint,
10144                                                      std::vector<SDValue>&Ops,
10145                                                      SelectionDAG &DAG) const {
10146   SDValue Result;
10147
10148   // Currently only support length 1 constraints.
10149   if (Constraint.length() != 1) return;
10150
10151   char ConstraintLetter = Constraint[0];
10152   switch (ConstraintLetter) {
10153   default: break;
10154   case 'j':
10155   case 'I': case 'J': case 'K': case 'L':
10156   case 'M': case 'N': case 'O':
10157     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
10158     if (!C)
10159       return;
10160
10161     int64_t CVal64 = C->getSExtValue();
10162     int CVal = (int) CVal64;
10163     // None of these constraints allow values larger than 32 bits.  Check
10164     // that the value fits in an int.
10165     if (CVal != CVal64)
10166       return;
10167
10168     switch (ConstraintLetter) {
10169       case 'j':
10170         // Constant suitable for movw, must be between 0 and
10171         // 65535.
10172         if (Subtarget->hasV6T2Ops())
10173           if (CVal >= 0 && CVal <= 65535)
10174             break;
10175         return;
10176       case 'I':
10177         if (Subtarget->isThumb1Only()) {
10178           // This must be a constant between 0 and 255, for ADD
10179           // immediates.
10180           if (CVal >= 0 && CVal <= 255)
10181             break;
10182         } else if (Subtarget->isThumb2()) {
10183           // A constant that can be used as an immediate value in a
10184           // data-processing instruction.
10185           if (ARM_AM::getT2SOImmVal(CVal) != -1)
10186             break;
10187         } else {
10188           // A constant that can be used as an immediate value in a
10189           // data-processing instruction.
10190           if (ARM_AM::getSOImmVal(CVal) != -1)
10191             break;
10192         }
10193         return;
10194
10195       case 'J':
10196         if (Subtarget->isThumb()) {  // FIXME thumb2
10197           // This must be a constant between -255 and -1, for negated ADD
10198           // immediates. This can be used in GCC with an "n" modifier that
10199           // prints the negated value, for use with SUB instructions. It is
10200           // not useful otherwise but is implemented for compatibility.
10201           if (CVal >= -255 && CVal <= -1)
10202             break;
10203         } else {
10204           // This must be a constant between -4095 and 4095. It is not clear
10205           // what this constraint is intended for. Implemented for
10206           // compatibility with GCC.
10207           if (CVal >= -4095 && CVal <= 4095)
10208             break;
10209         }
10210         return;
10211
10212       case 'K':
10213         if (Subtarget->isThumb1Only()) {
10214           // A 32-bit value where only one byte has a nonzero value. Exclude
10215           // zero to match GCC. This constraint is used by GCC internally for
10216           // constants that can be loaded with a move/shift combination.
10217           // It is not useful otherwise but is implemented for compatibility.
10218           if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal))
10219             break;
10220         } else if (Subtarget->isThumb2()) {
10221           // A constant whose bitwise inverse can be used as an immediate
10222           // value in a data-processing instruction. This can be used in GCC
10223           // with a "B" modifier that prints the inverted value, for use with
10224           // BIC and MVN instructions. It is not useful otherwise but is
10225           // implemented for compatibility.
10226           if (ARM_AM::getT2SOImmVal(~CVal) != -1)
10227             break;
10228         } else {
10229           // A constant whose bitwise inverse can be used as an immediate
10230           // value in a data-processing instruction. This can be used in GCC
10231           // with a "B" modifier that prints the inverted value, for use with
10232           // BIC and MVN instructions. It is not useful otherwise but is
10233           // implemented for compatibility.
10234           if (ARM_AM::getSOImmVal(~CVal) != -1)
10235             break;
10236         }
10237         return;
10238
10239       case 'L':
10240         if (Subtarget->isThumb1Only()) {
10241           // This must be a constant between -7 and 7,
10242           // for 3-operand ADD/SUB immediate instructions.
10243           if (CVal >= -7 && CVal < 7)
10244             break;
10245         } else if (Subtarget->isThumb2()) {
10246           // A constant whose negation can be used as an immediate value in a
10247           // data-processing instruction. This can be used in GCC with an "n"
10248           // modifier that prints the negated value, for use with SUB
10249           // instructions. It is not useful otherwise but is implemented for
10250           // compatibility.
10251           if (ARM_AM::getT2SOImmVal(-CVal) != -1)
10252             break;
10253         } else {
10254           // A constant whose negation can be used as an immediate value in a
10255           // data-processing instruction. This can be used in GCC with an "n"
10256           // modifier that prints the negated value, for use with SUB
10257           // instructions. It is not useful otherwise but is implemented for
10258           // compatibility.
10259           if (ARM_AM::getSOImmVal(-CVal) != -1)
10260             break;
10261         }
10262         return;
10263
10264       case 'M':
10265         if (Subtarget->isThumb()) { // FIXME thumb2
10266           // This must be a multiple of 4 between 0 and 1020, for
10267           // ADD sp + immediate.
10268           if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0))
10269             break;
10270         } else {
10271           // A power of two or a constant between 0 and 32.  This is used in
10272           // GCC for the shift amount on shifted register operands, but it is
10273           // useful in general for any shift amounts.
10274           if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0))
10275             break;
10276         }
10277         return;
10278
10279       case 'N':
10280         if (Subtarget->isThumb()) {  // FIXME thumb2
10281           // This must be a constant between 0 and 31, for shift amounts.
10282           if (CVal >= 0 && CVal <= 31)
10283             break;
10284         }
10285         return;
10286
10287       case 'O':
10288         if (Subtarget->isThumb()) {  // FIXME thumb2
10289           // This must be a multiple of 4 between -508 and 508, for
10290           // ADD/SUB sp = sp + immediate.
10291           if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0))
10292             break;
10293         }
10294         return;
10295     }
10296     Result = DAG.getTargetConstant(CVal, Op.getValueType());
10297     break;
10298   }
10299
10300   if (Result.getNode()) {
10301     Ops.push_back(Result);
10302     return;
10303   }
10304   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
10305 }
10306
10307 SDValue ARMTargetLowering::LowerDivRem(SDValue Op, SelectionDAG &DAG) const {
10308   assert(Subtarget->isTargetAEABI() && "Register-based DivRem lowering only");
10309   unsigned Opcode = Op->getOpcode();
10310   assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) &&
10311       "Invalid opcode for Div/Rem lowering");
10312   bool isSigned = (Opcode == ISD::SDIVREM);
10313   EVT VT = Op->getValueType(0);
10314   Type *Ty = VT.getTypeForEVT(*DAG.getContext());
10315
10316   RTLIB::Libcall LC;
10317   switch (VT.getSimpleVT().SimpleTy) {
10318   default: llvm_unreachable("Unexpected request for libcall!");
10319   case MVT::i8:   LC= isSigned ? RTLIB::SDIVREM_I8  : RTLIB::UDIVREM_I8;  break;
10320   case MVT::i16:  LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break;
10321   case MVT::i32:  LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break;
10322   case MVT::i64:  LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break;
10323   }
10324
10325   SDValue InChain = DAG.getEntryNode();
10326
10327   TargetLowering::ArgListTy Args;
10328   TargetLowering::ArgListEntry Entry;
10329   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i) {
10330     EVT ArgVT = Op->getOperand(i).getValueType();
10331     Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10332     Entry.Node = Op->getOperand(i);
10333     Entry.Ty = ArgTy;
10334     Entry.isSExt = isSigned;
10335     Entry.isZExt = !isSigned;
10336     Args.push_back(Entry);
10337   }
10338
10339   SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC),
10340                                          getPointerTy());
10341
10342   Type *RetTy = (Type*)StructType::get(Ty, Ty, NULL);
10343
10344   SDLoc dl(Op);
10345   TargetLowering::
10346   CallLoweringInfo CLI(InChain, RetTy, isSigned, !isSigned, false, true,
10347                     0, getLibcallCallingConv(LC), /*isTailCall=*/false,
10348                     /*doesNotReturn=*/false, /*isReturnValueUsed=*/true,
10349                     Callee, Args, DAG, dl);
10350   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
10351
10352   return CallInfo.first;
10353 }
10354
10355 bool
10356 ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
10357   // The ARM target isn't yet aware of offsets.
10358   return false;
10359 }
10360
10361 bool ARM::isBitFieldInvertedMask(unsigned v) {
10362   if (v == 0xffffffff)
10363     return false;
10364
10365   // there can be 1's on either or both "outsides", all the "inside"
10366   // bits must be 0's
10367   unsigned TO = CountTrailingOnes_32(v);
10368   unsigned LO = CountLeadingOnes_32(v);
10369   v = (v >> TO) << TO;
10370   v = (v << LO) >> LO;
10371   return v == 0;
10372 }
10373
10374 /// isFPImmLegal - Returns true if the target can instruction select the
10375 /// specified FP immediate natively. If false, the legalizer will
10376 /// materialize the FP immediate as a load from a constant pool.
10377 bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
10378   if (!Subtarget->hasVFP3())
10379     return false;
10380   if (VT == MVT::f32)
10381     return ARM_AM::getFP32Imm(Imm) != -1;
10382   if (VT == MVT::f64)
10383     return ARM_AM::getFP64Imm(Imm) != -1;
10384   return false;
10385 }
10386
10387 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
10388 /// MemIntrinsicNodes.  The associated MachineMemOperands record the alignment
10389 /// specified in the intrinsic calls.
10390 bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
10391                                            const CallInst &I,
10392                                            unsigned Intrinsic) const {
10393   switch (Intrinsic) {
10394   case Intrinsic::arm_neon_vld1:
10395   case Intrinsic::arm_neon_vld2:
10396   case Intrinsic::arm_neon_vld3:
10397   case Intrinsic::arm_neon_vld4:
10398   case Intrinsic::arm_neon_vld2lane:
10399   case Intrinsic::arm_neon_vld3lane:
10400   case Intrinsic::arm_neon_vld4lane: {
10401     Info.opc = ISD::INTRINSIC_W_CHAIN;
10402     // Conservatively set memVT to the entire set of vectors loaded.
10403     uint64_t NumElts = getDataLayout()->getTypeAllocSize(I.getType()) / 8;
10404     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
10405     Info.ptrVal = I.getArgOperand(0);
10406     Info.offset = 0;
10407     Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
10408     Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
10409     Info.vol = false; // volatile loads with NEON intrinsics not supported
10410     Info.readMem = true;
10411     Info.writeMem = false;
10412     return true;
10413   }
10414   case Intrinsic::arm_neon_vst1:
10415   case Intrinsic::arm_neon_vst2:
10416   case Intrinsic::arm_neon_vst3:
10417   case Intrinsic::arm_neon_vst4:
10418   case Intrinsic::arm_neon_vst2lane:
10419   case Intrinsic::arm_neon_vst3lane:
10420   case Intrinsic::arm_neon_vst4lane: {
10421     Info.opc = ISD::INTRINSIC_VOID;
10422     // Conservatively set memVT to the entire set of vectors stored.
10423     unsigned NumElts = 0;
10424     for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
10425       Type *ArgTy = I.getArgOperand(ArgI)->getType();
10426       if (!ArgTy->isVectorTy())
10427         break;
10428       NumElts += getDataLayout()->getTypeAllocSize(ArgTy) / 8;
10429     }
10430     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
10431     Info.ptrVal = I.getArgOperand(0);
10432     Info.offset = 0;
10433     Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1);
10434     Info.align = cast<ConstantInt>(AlignArg)->getZExtValue();
10435     Info.vol = false; // volatile stores with NEON intrinsics not supported
10436     Info.readMem = false;
10437     Info.writeMem = true;
10438     return true;
10439   }
10440   case Intrinsic::arm_ldaex:
10441   case Intrinsic::arm_ldrex: {
10442     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
10443     Info.opc = ISD::INTRINSIC_W_CHAIN;
10444     Info.memVT = MVT::getVT(PtrTy->getElementType());
10445     Info.ptrVal = I.getArgOperand(0);
10446     Info.offset = 0;
10447     Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
10448     Info.vol = true;
10449     Info.readMem = true;
10450     Info.writeMem = false;
10451     return true;
10452   }
10453   case Intrinsic::arm_stlex:
10454   case Intrinsic::arm_strex: {
10455     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
10456     Info.opc = ISD::INTRINSIC_W_CHAIN;
10457     Info.memVT = MVT::getVT(PtrTy->getElementType());
10458     Info.ptrVal = I.getArgOperand(1);
10459     Info.offset = 0;
10460     Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
10461     Info.vol = true;
10462     Info.readMem = false;
10463     Info.writeMem = true;
10464     return true;
10465   }
10466   case Intrinsic::arm_stlexd:
10467   case Intrinsic::arm_strexd: {
10468     Info.opc = ISD::INTRINSIC_W_CHAIN;
10469     Info.memVT = MVT::i64;
10470     Info.ptrVal = I.getArgOperand(2);
10471     Info.offset = 0;
10472     Info.align = 8;
10473     Info.vol = true;
10474     Info.readMem = false;
10475     Info.writeMem = true;
10476     return true;
10477   }
10478   case Intrinsic::arm_ldaexd:
10479   case Intrinsic::arm_ldrexd: {
10480     Info.opc = ISD::INTRINSIC_W_CHAIN;
10481     Info.memVT = MVT::i64;
10482     Info.ptrVal = I.getArgOperand(0);
10483     Info.offset = 0;
10484     Info.align = 8;
10485     Info.vol = true;
10486     Info.readMem = true;
10487     Info.writeMem = false;
10488     return true;
10489   }
10490   default:
10491     break;
10492   }
10493
10494   return false;
10495 }
10496
10497 /// \brief Returns true if it is beneficial to convert a load of a constant
10498 /// to just the constant itself.
10499 bool ARMTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
10500                                                           Type *Ty) const {
10501   assert(Ty->isIntegerTy());
10502
10503   unsigned Bits = Ty->getPrimitiveSizeInBits();
10504   if (Bits == 0 || Bits > 32)
10505     return false;
10506   return true;
10507 }
10508
10509 bool ARMTargetLowering::shouldExpandAtomicInIR(Instruction *Inst) const {
10510   // Loads and stores less than 64-bits are already atomic; ones above that
10511   // are doomed anyway, so defer to the default libcall and blame the OS when
10512   // things go wrong:
10513   if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
10514     return SI->getValueOperand()->getType()->getPrimitiveSizeInBits() == 64;
10515   else if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
10516     return LI->getType()->getPrimitiveSizeInBits() == 64;
10517
10518   // For the real atomic operations, we have ldrex/strex up to 64 bits.
10519   return Inst->getType()->getPrimitiveSizeInBits() <= 64;
10520 }
10521
10522 Value *ARMTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
10523                                          AtomicOrdering Ord) const {
10524   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10525   Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
10526   bool IsAcquire =
10527       Ord == Acquire || Ord == AcquireRelease || Ord == SequentiallyConsistent;
10528
10529   // Since i64 isn't legal and intrinsics don't get type-lowered, the ldrexd
10530   // intrinsic must return {i32, i32} and we have to recombine them into a
10531   // single i64 here.
10532   if (ValTy->getPrimitiveSizeInBits() == 64) {
10533     Intrinsic::ID Int =
10534         IsAcquire ? Intrinsic::arm_ldaexd : Intrinsic::arm_ldrexd;
10535     Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int);
10536
10537     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10538     Value *LoHi = Builder.CreateCall(Ldrex, Addr, "lohi");
10539
10540     Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
10541     Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
10542     Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
10543     Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
10544     return Builder.CreateOr(
10545         Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 32)), "val64");
10546   }
10547
10548   Type *Tys[] = { Addr->getType() };
10549   Intrinsic::ID Int = IsAcquire ? Intrinsic::arm_ldaex : Intrinsic::arm_ldrex;
10550   Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int, Tys);
10551
10552   return Builder.CreateTruncOrBitCast(
10553       Builder.CreateCall(Ldrex, Addr),
10554       cast<PointerType>(Addr->getType())->getElementType());
10555 }
10556
10557 Value *ARMTargetLowering::emitStoreConditional(IRBuilder<> &Builder, Value *Val,
10558                                                Value *Addr,
10559                                                AtomicOrdering Ord) const {
10560   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
10561   bool IsRelease =
10562       Ord == Release || Ord == AcquireRelease || Ord == SequentiallyConsistent;
10563
10564   // Since the intrinsics must have legal type, the i64 intrinsics take two
10565   // parameters: "i32, i32". We must marshal Val into the appropriate form
10566   // before the call.
10567   if (Val->getType()->getPrimitiveSizeInBits() == 64) {
10568     Intrinsic::ID Int =
10569         IsRelease ? Intrinsic::arm_stlexd : Intrinsic::arm_strexd;
10570     Function *Strex = Intrinsic::getDeclaration(M, Int);
10571     Type *Int32Ty = Type::getInt32Ty(M->getContext());
10572
10573     Value *Lo = Builder.CreateTrunc(Val, Int32Ty, "lo");
10574     Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 32), Int32Ty, "hi");
10575     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
10576     return Builder.CreateCall3(Strex, Lo, Hi, Addr);
10577   }
10578
10579   Intrinsic::ID Int = IsRelease ? Intrinsic::arm_stlex : Intrinsic::arm_strex;
10580   Type *Tys[] = { Addr->getType() };
10581   Function *Strex = Intrinsic::getDeclaration(M, Int, Tys);
10582
10583   return Builder.CreateCall2(
10584       Strex, Builder.CreateZExtOrBitCast(
10585                  Val, Strex->getFunctionType()->getParamType(0)),
10586       Addr);
10587 }