[AArch64] Fix a bug generating incorrect instruction when building small vector.
[oota-llvm.git] / lib / Target / AArch64 / AArch64ISelLowering.cpp
1 //===-- AArch64ISelLowering.cpp - AArch64 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 implements the AArch64TargetLowering class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "AArch64ISelLowering.h"
15 #include "AArch64PerfectShuffle.h"
16 #include "AArch64Subtarget.h"
17 #include "AArch64MachineFunctionInfo.h"
18 #include "AArch64TargetMachine.h"
19 #include "AArch64TargetObjectFile.h"
20 #include "MCTargetDesc/AArch64AddressingModes.h"
21 #include "llvm/ADT/Statistic.h"
22 #include "llvm/CodeGen/CallingConvLower.h"
23 #include "llvm/CodeGen/MachineFrameInfo.h"
24 #include "llvm/CodeGen/MachineInstrBuilder.h"
25 #include "llvm/CodeGen/MachineRegisterInfo.h"
26 #include "llvm/IR/Function.h"
27 #include "llvm/IR/Intrinsics.h"
28 #include "llvm/IR/Type.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/Debug.h"
31 #include "llvm/Support/ErrorHandling.h"
32 #include "llvm/Support/raw_ostream.h"
33 #include "llvm/Target/TargetOptions.h"
34 using namespace llvm;
35
36 #define DEBUG_TYPE "aarch64-lower"
37
38 STATISTIC(NumTailCalls, "Number of tail calls");
39 STATISTIC(NumShiftInserts, "Number of vector shift inserts");
40
41 enum AlignMode {
42   StrictAlign,
43   NoStrictAlign
44 };
45
46 static cl::opt<AlignMode>
47 Align(cl::desc("Load/store alignment support"),
48       cl::Hidden, cl::init(NoStrictAlign),
49       cl::values(
50           clEnumValN(StrictAlign,   "aarch64-strict-align",
51                      "Disallow all unaligned memory accesses"),
52           clEnumValN(NoStrictAlign, "aarch64-no-strict-align",
53                      "Allow unaligned memory accesses"),
54           clEnumValEnd));
55
56 // Place holder until extr generation is tested fully.
57 static cl::opt<bool>
58 EnableAArch64ExtrGeneration("aarch64-extr-generation", cl::Hidden,
59                           cl::desc("Allow AArch64 (or (shift)(shift))->extract"),
60                           cl::init(true));
61
62 static cl::opt<bool>
63 EnableAArch64SlrGeneration("aarch64-shift-insert-generation", cl::Hidden,
64                          cl::desc("Allow AArch64 SLI/SRI formation"),
65                          cl::init(false));
66
67 //===----------------------------------------------------------------------===//
68 // AArch64 Lowering public interface.
69 //===----------------------------------------------------------------------===//
70 static TargetLoweringObjectFile *createTLOF(const Triple &TT) {
71   if (TT.isOSBinFormatMachO())
72     return new AArch64_MachoTargetObjectFile();
73
74   return new AArch64_ELFTargetObjectFile();
75 }
76
77 AArch64TargetLowering::AArch64TargetLowering(TargetMachine &TM)
78     : TargetLowering(TM, createTLOF(Triple(TM.getTargetTriple()))) {
79   Subtarget = &TM.getSubtarget<AArch64Subtarget>();
80
81   // AArch64 doesn't have comparisons which set GPRs or setcc instructions, so
82   // we have to make something up. Arbitrarily, choose ZeroOrOne.
83   setBooleanContents(ZeroOrOneBooleanContent);
84   // When comparing vectors the result sets the different elements in the
85   // vector to all-one or all-zero.
86   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
87
88   // Set up the register classes.
89   addRegisterClass(MVT::i32, &AArch64::GPR32allRegClass);
90   addRegisterClass(MVT::i64, &AArch64::GPR64allRegClass);
91
92   if (Subtarget->hasFPARMv8()) {
93     addRegisterClass(MVT::f16, &AArch64::FPR16RegClass);
94     addRegisterClass(MVT::f32, &AArch64::FPR32RegClass);
95     addRegisterClass(MVT::f64, &AArch64::FPR64RegClass);
96     addRegisterClass(MVT::f128, &AArch64::FPR128RegClass);
97   }
98
99   if (Subtarget->hasNEON()) {
100     addRegisterClass(MVT::v16i8, &AArch64::FPR8RegClass);
101     addRegisterClass(MVT::v8i16, &AArch64::FPR16RegClass);
102     // Someone set us up the NEON.
103     addDRTypeForNEON(MVT::v2f32);
104     addDRTypeForNEON(MVT::v8i8);
105     addDRTypeForNEON(MVT::v4i16);
106     addDRTypeForNEON(MVT::v2i32);
107     addDRTypeForNEON(MVT::v1i64);
108     addDRTypeForNEON(MVT::v1f64);
109
110     addQRTypeForNEON(MVT::v4f32);
111     addQRTypeForNEON(MVT::v2f64);
112     addQRTypeForNEON(MVT::v16i8);
113     addQRTypeForNEON(MVT::v8i16);
114     addQRTypeForNEON(MVT::v4i32);
115     addQRTypeForNEON(MVT::v2i64);
116   }
117
118   // Compute derived properties from the register classes
119   computeRegisterProperties();
120
121   // Provide all sorts of operation actions
122   setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
123   setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
124   setOperationAction(ISD::SETCC, MVT::i32, Custom);
125   setOperationAction(ISD::SETCC, MVT::i64, Custom);
126   setOperationAction(ISD::SETCC, MVT::f32, Custom);
127   setOperationAction(ISD::SETCC, MVT::f64, Custom);
128   setOperationAction(ISD::BRCOND, MVT::Other, Expand);
129   setOperationAction(ISD::BR_CC, MVT::i32, Custom);
130   setOperationAction(ISD::BR_CC, MVT::i64, Custom);
131   setOperationAction(ISD::BR_CC, MVT::f32, Custom);
132   setOperationAction(ISD::BR_CC, MVT::f64, Custom);
133   setOperationAction(ISD::SELECT, MVT::i32, Custom);
134   setOperationAction(ISD::SELECT, MVT::i64, Custom);
135   setOperationAction(ISD::SELECT, MVT::f32, Custom);
136   setOperationAction(ISD::SELECT, MVT::f64, Custom);
137   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
138   setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
139   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
140   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
141   setOperationAction(ISD::BR_JT, MVT::Other, Expand);
142   setOperationAction(ISD::JumpTable, MVT::i64, Custom);
143
144   setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
145   setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
146   setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
147
148   setOperationAction(ISD::FREM, MVT::f32, Expand);
149   setOperationAction(ISD::FREM, MVT::f64, Expand);
150   setOperationAction(ISD::FREM, MVT::f80, Expand);
151
152   // Custom lowering hooks are needed for XOR
153   // to fold it into CSINC/CSINV.
154   setOperationAction(ISD::XOR, MVT::i32, Custom);
155   setOperationAction(ISD::XOR, MVT::i64, Custom);
156
157   // Virtually no operation on f128 is legal, but LLVM can't expand them when
158   // there's a valid register class, so we need custom operations in most cases.
159   setOperationAction(ISD::FABS, MVT::f128, Expand);
160   setOperationAction(ISD::FADD, MVT::f128, Custom);
161   setOperationAction(ISD::FCOPYSIGN, MVT::f128, Expand);
162   setOperationAction(ISD::FCOS, MVT::f128, Expand);
163   setOperationAction(ISD::FDIV, MVT::f128, Custom);
164   setOperationAction(ISD::FMA, MVT::f128, Expand);
165   setOperationAction(ISD::FMUL, MVT::f128, Custom);
166   setOperationAction(ISD::FNEG, MVT::f128, Expand);
167   setOperationAction(ISD::FPOW, MVT::f128, Expand);
168   setOperationAction(ISD::FREM, MVT::f128, Expand);
169   setOperationAction(ISD::FRINT, MVT::f128, Expand);
170   setOperationAction(ISD::FSIN, MVT::f128, Expand);
171   setOperationAction(ISD::FSINCOS, MVT::f128, Expand);
172   setOperationAction(ISD::FSQRT, MVT::f128, Expand);
173   setOperationAction(ISD::FSUB, MVT::f128, Custom);
174   setOperationAction(ISD::FTRUNC, MVT::f128, Expand);
175   setOperationAction(ISD::SETCC, MVT::f128, Custom);
176   setOperationAction(ISD::BR_CC, MVT::f128, Custom);
177   setOperationAction(ISD::SELECT, MVT::f128, Custom);
178   setOperationAction(ISD::SELECT_CC, MVT::f128, Custom);
179   setOperationAction(ISD::FP_EXTEND, MVT::f128, Custom);
180
181   // Lowering for many of the conversions is actually specified by the non-f128
182   // type. The LowerXXX function will be trivial when f128 isn't involved.
183   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
184   setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
185   setOperationAction(ISD::FP_TO_SINT, MVT::i128, Custom);
186   setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
187   setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
188   setOperationAction(ISD::FP_TO_UINT, MVT::i128, Custom);
189   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
190   setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
191   setOperationAction(ISD::SINT_TO_FP, MVT::i128, Custom);
192   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
193   setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
194   setOperationAction(ISD::UINT_TO_FP, MVT::i128, Custom);
195   setOperationAction(ISD::FP_ROUND, MVT::f32, Custom);
196   setOperationAction(ISD::FP_ROUND, MVT::f64, Custom);
197
198   // Variable arguments.
199   setOperationAction(ISD::VASTART, MVT::Other, Custom);
200   setOperationAction(ISD::VAARG, MVT::Other, Custom);
201   setOperationAction(ISD::VACOPY, MVT::Other, Custom);
202   setOperationAction(ISD::VAEND, MVT::Other, Expand);
203
204   // Variable-sized objects.
205   setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
206   setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
207   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
208
209   // Exception handling.
210   // FIXME: These are guesses. Has this been defined yet?
211   setExceptionPointerRegister(AArch64::X0);
212   setExceptionSelectorRegister(AArch64::X1);
213
214   // Constant pool entries
215   setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
216
217   // BlockAddress
218   setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
219
220   // Add/Sub overflow ops with MVT::Glues are lowered to NZCV dependences.
221   setOperationAction(ISD::ADDC, MVT::i32, Custom);
222   setOperationAction(ISD::ADDE, MVT::i32, Custom);
223   setOperationAction(ISD::SUBC, MVT::i32, Custom);
224   setOperationAction(ISD::SUBE, MVT::i32, Custom);
225   setOperationAction(ISD::ADDC, MVT::i64, Custom);
226   setOperationAction(ISD::ADDE, MVT::i64, Custom);
227   setOperationAction(ISD::SUBC, MVT::i64, Custom);
228   setOperationAction(ISD::SUBE, MVT::i64, Custom);
229
230   // AArch64 lacks both left-rotate and popcount instructions.
231   setOperationAction(ISD::ROTL, MVT::i32, Expand);
232   setOperationAction(ISD::ROTL, MVT::i64, Expand);
233
234   // AArch64 doesn't have {U|S}MUL_LOHI.
235   setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
236   setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
237
238
239   // Expand the undefined-at-zero variants to cttz/ctlz to their defined-at-zero
240   // counterparts, which AArch64 supports directly.
241   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
242   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
243   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
244   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
245
246   setOperationAction(ISD::CTPOP, MVT::i32, Custom);
247   setOperationAction(ISD::CTPOP, MVT::i64, Custom);
248
249   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
250   setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
251   setOperationAction(ISD::SREM, MVT::i32, Expand);
252   setOperationAction(ISD::SREM, MVT::i64, Expand);
253   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
254   setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
255   setOperationAction(ISD::UREM, MVT::i32, Expand);
256   setOperationAction(ISD::UREM, MVT::i64, Expand);
257
258   // Custom lower Add/Sub/Mul with overflow.
259   setOperationAction(ISD::SADDO, MVT::i32, Custom);
260   setOperationAction(ISD::SADDO, MVT::i64, Custom);
261   setOperationAction(ISD::UADDO, MVT::i32, Custom);
262   setOperationAction(ISD::UADDO, MVT::i64, Custom);
263   setOperationAction(ISD::SSUBO, MVT::i32, Custom);
264   setOperationAction(ISD::SSUBO, MVT::i64, Custom);
265   setOperationAction(ISD::USUBO, MVT::i32, Custom);
266   setOperationAction(ISD::USUBO, MVT::i64, Custom);
267   setOperationAction(ISD::SMULO, MVT::i32, Custom);
268   setOperationAction(ISD::SMULO, MVT::i64, Custom);
269   setOperationAction(ISD::UMULO, MVT::i32, Custom);
270   setOperationAction(ISD::UMULO, MVT::i64, Custom);
271
272   setOperationAction(ISD::FSIN, MVT::f32, Expand);
273   setOperationAction(ISD::FSIN, MVT::f64, Expand);
274   setOperationAction(ISD::FCOS, MVT::f32, Expand);
275   setOperationAction(ISD::FCOS, MVT::f64, Expand);
276   setOperationAction(ISD::FPOW, MVT::f32, Expand);
277   setOperationAction(ISD::FPOW, MVT::f64, Expand);
278   setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
279   setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
280
281   // AArch64 has implementations of a lot of rounding-like FP operations.
282   static MVT RoundingTypes[] = { MVT::f32, MVT::f64};
283   for (unsigned I = 0; I < array_lengthof(RoundingTypes); ++I) {
284     MVT Ty = RoundingTypes[I];
285     setOperationAction(ISD::FFLOOR, Ty, Legal);
286     setOperationAction(ISD::FNEARBYINT, Ty, Legal);
287     setOperationAction(ISD::FCEIL, Ty, Legal);
288     setOperationAction(ISD::FRINT, Ty, Legal);
289     setOperationAction(ISD::FTRUNC, Ty, Legal);
290     setOperationAction(ISD::FROUND, Ty, Legal);
291   }
292
293   setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
294
295   if (Subtarget->isTargetMachO()) {
296     // For iOS, we don't want to the normal expansion of a libcall to
297     // sincos. We want to issue a libcall to __sincos_stret to avoid memory
298     // traffic.
299     setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
300     setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
301   } else {
302     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
303     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
304   }
305
306   // AArch64 does not have floating-point extending loads, i1 sign-extending
307   // load, floating-point truncating stores, or v2i32->v2i16 truncating store.
308   setLoadExtAction(ISD::EXTLOAD, MVT::f16, Expand);
309   setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
310   setLoadExtAction(ISD::EXTLOAD, MVT::f64, Expand);
311   setLoadExtAction(ISD::EXTLOAD, MVT::f80, Expand);
312   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Expand);
313   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
314   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
315   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
316   setTruncStoreAction(MVT::f128, MVT::f80, Expand);
317   setTruncStoreAction(MVT::f128, MVT::f64, Expand);
318   setTruncStoreAction(MVT::f128, MVT::f32, Expand);
319   setTruncStoreAction(MVT::f128, MVT::f16, Expand);
320
321   setOperationAction(ISD::BITCAST, MVT::i16, Custom);
322   setOperationAction(ISD::BITCAST, MVT::f16, Custom);
323
324   // Indexed loads and stores are supported.
325   for (unsigned im = (unsigned)ISD::PRE_INC;
326        im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
327     setIndexedLoadAction(im, MVT::i8, Legal);
328     setIndexedLoadAction(im, MVT::i16, Legal);
329     setIndexedLoadAction(im, MVT::i32, Legal);
330     setIndexedLoadAction(im, MVT::i64, Legal);
331     setIndexedLoadAction(im, MVT::f64, Legal);
332     setIndexedLoadAction(im, MVT::f32, Legal);
333     setIndexedStoreAction(im, MVT::i8, Legal);
334     setIndexedStoreAction(im, MVT::i16, Legal);
335     setIndexedStoreAction(im, MVT::i32, Legal);
336     setIndexedStoreAction(im, MVT::i64, Legal);
337     setIndexedStoreAction(im, MVT::f64, Legal);
338     setIndexedStoreAction(im, MVT::f32, Legal);
339   }
340
341   // Trap.
342   setOperationAction(ISD::TRAP, MVT::Other, Legal);
343
344   // We combine OR nodes for bitfield operations.
345   setTargetDAGCombine(ISD::OR);
346
347   // Vector add and sub nodes may conceal a high-half opportunity.
348   // Also, try to fold ADD into CSINC/CSINV..
349   setTargetDAGCombine(ISD::ADD);
350   setTargetDAGCombine(ISD::SUB);
351
352   setTargetDAGCombine(ISD::XOR);
353   setTargetDAGCombine(ISD::SINT_TO_FP);
354   setTargetDAGCombine(ISD::UINT_TO_FP);
355
356   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
357
358   setTargetDAGCombine(ISD::ANY_EXTEND);
359   setTargetDAGCombine(ISD::ZERO_EXTEND);
360   setTargetDAGCombine(ISD::SIGN_EXTEND);
361   setTargetDAGCombine(ISD::BITCAST);
362   setTargetDAGCombine(ISD::CONCAT_VECTORS);
363   setTargetDAGCombine(ISD::STORE);
364
365   setTargetDAGCombine(ISD::MUL);
366
367   setTargetDAGCombine(ISD::SELECT);
368   setTargetDAGCombine(ISD::VSELECT);
369
370   setTargetDAGCombine(ISD::INTRINSIC_VOID);
371   setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
372   setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
373
374   MaxStoresPerMemset = MaxStoresPerMemsetOptSize = 8;
375   MaxStoresPerMemcpy = MaxStoresPerMemcpyOptSize = 4;
376   MaxStoresPerMemmove = MaxStoresPerMemmoveOptSize = 4;
377
378   setStackPointerRegisterToSaveRestore(AArch64::SP);
379
380   setSchedulingPreference(Sched::Hybrid);
381
382   // Enable TBZ/TBNZ
383   MaskAndBranchFoldingIsLegal = true;
384
385   setMinFunctionAlignment(2);
386
387   RequireStrictAlign = (Align == StrictAlign);
388
389   setHasExtractBitsInsn(true);
390
391   if (Subtarget->hasNEON()) {
392     // FIXME: v1f64 shouldn't be legal if we can avoid it, because it leads to
393     // silliness like this:
394     setOperationAction(ISD::FABS, MVT::v1f64, Expand);
395     setOperationAction(ISD::FADD, MVT::v1f64, Expand);
396     setOperationAction(ISD::FCEIL, MVT::v1f64, Expand);
397     setOperationAction(ISD::FCOPYSIGN, MVT::v1f64, Expand);
398     setOperationAction(ISD::FCOS, MVT::v1f64, Expand);
399     setOperationAction(ISD::FDIV, MVT::v1f64, Expand);
400     setOperationAction(ISD::FFLOOR, MVT::v1f64, Expand);
401     setOperationAction(ISD::FMA, MVT::v1f64, Expand);
402     setOperationAction(ISD::FMUL, MVT::v1f64, Expand);
403     setOperationAction(ISD::FNEARBYINT, MVT::v1f64, Expand);
404     setOperationAction(ISD::FNEG, MVT::v1f64, Expand);
405     setOperationAction(ISD::FPOW, MVT::v1f64, Expand);
406     setOperationAction(ISD::FREM, MVT::v1f64, Expand);
407     setOperationAction(ISD::FROUND, MVT::v1f64, Expand);
408     setOperationAction(ISD::FRINT, MVT::v1f64, Expand);
409     setOperationAction(ISD::FSIN, MVT::v1f64, Expand);
410     setOperationAction(ISD::FSINCOS, MVT::v1f64, Expand);
411     setOperationAction(ISD::FSQRT, MVT::v1f64, Expand);
412     setOperationAction(ISD::FSUB, MVT::v1f64, Expand);
413     setOperationAction(ISD::FTRUNC, MVT::v1f64, Expand);
414     setOperationAction(ISD::SETCC, MVT::v1f64, Expand);
415     setOperationAction(ISD::BR_CC, MVT::v1f64, Expand);
416     setOperationAction(ISD::SELECT, MVT::v1f64, Expand);
417     setOperationAction(ISD::SELECT_CC, MVT::v1f64, Expand);
418     setOperationAction(ISD::FP_EXTEND, MVT::v1f64, Expand);
419
420     setOperationAction(ISD::FP_TO_SINT, MVT::v1i64, Expand);
421     setOperationAction(ISD::FP_TO_UINT, MVT::v1i64, Expand);
422     setOperationAction(ISD::SINT_TO_FP, MVT::v1i64, Expand);
423     setOperationAction(ISD::UINT_TO_FP, MVT::v1i64, Expand);
424     setOperationAction(ISD::FP_ROUND, MVT::v1f64, Expand);
425
426     setOperationAction(ISD::MUL, MVT::v1i64, Expand);
427
428     // AArch64 doesn't have a direct vector ->f32 conversion instructions for
429     // elements smaller than i32, so promote the input to i32 first.
430     setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Promote);
431     setOperationAction(ISD::SINT_TO_FP, MVT::v4i8, Promote);
432     setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Promote);
433     setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Promote);
434     // Similarly, there is no direct i32 -> f64 vector conversion instruction.
435     setOperationAction(ISD::SINT_TO_FP, MVT::v2i32, Custom);
436     setOperationAction(ISD::UINT_TO_FP, MVT::v2i32, Custom);
437     setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Custom);
438     setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Custom);
439
440     // AArch64 doesn't have MUL.2d:
441     setOperationAction(ISD::MUL, MVT::v2i64, Expand);
442     setOperationAction(ISD::ANY_EXTEND, MVT::v4i32, Legal);
443     setTruncStoreAction(MVT::v2i32, MVT::v2i16, Expand);
444     // Likewise, narrowing and extending vector loads/stores aren't handled
445     // directly.
446     for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
447          VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
448
449       setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
450                          Expand);
451
452       setOperationAction(ISD::MULHS, (MVT::SimpleValueType)VT, Expand);
453       setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
454       setOperationAction(ISD::MULHU, (MVT::SimpleValueType)VT, Expand);
455       setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
456
457       setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
458
459       for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
460            InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
461         setTruncStoreAction((MVT::SimpleValueType)VT,
462                             (MVT::SimpleValueType)InnerVT, Expand);
463       setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
464       setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
465       setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
466     }
467
468     // AArch64 has implementations of a lot of rounding-like FP operations.
469     static MVT RoundingVecTypes[] = {MVT::v2f32, MVT::v4f32, MVT::v2f64 };
470     for (unsigned I = 0; I < array_lengthof(RoundingVecTypes); ++I) {
471       MVT Ty = RoundingVecTypes[I];
472       setOperationAction(ISD::FFLOOR, Ty, Legal);
473       setOperationAction(ISD::FNEARBYINT, Ty, Legal);
474       setOperationAction(ISD::FCEIL, Ty, Legal);
475       setOperationAction(ISD::FRINT, Ty, Legal);
476       setOperationAction(ISD::FTRUNC, Ty, Legal);
477       setOperationAction(ISD::FROUND, Ty, Legal);
478     }
479   }
480 }
481
482 void AArch64TargetLowering::addTypeForNEON(EVT VT, EVT PromotedBitwiseVT) {
483   if (VT == MVT::v2f32) {
484     setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote);
485     AddPromotedToType(ISD::LOAD, VT.getSimpleVT(), MVT::v2i32);
486
487     setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
488     AddPromotedToType(ISD::STORE, VT.getSimpleVT(), MVT::v2i32);
489   } else if (VT == MVT::v2f64 || VT == MVT::v4f32) {
490     setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote);
491     AddPromotedToType(ISD::LOAD, VT.getSimpleVT(), MVT::v2i64);
492
493     setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
494     AddPromotedToType(ISD::STORE, VT.getSimpleVT(), MVT::v2i64);
495   }
496
497   // Mark vector float intrinsics as expand.
498   if (VT == MVT::v2f32 || VT == MVT::v4f32 || VT == MVT::v2f64) {
499     setOperationAction(ISD::FSIN, VT.getSimpleVT(), Expand);
500     setOperationAction(ISD::FCOS, VT.getSimpleVT(), Expand);
501     setOperationAction(ISD::FPOWI, VT.getSimpleVT(), Expand);
502     setOperationAction(ISD::FPOW, VT.getSimpleVT(), Expand);
503     setOperationAction(ISD::FLOG, VT.getSimpleVT(), Expand);
504     setOperationAction(ISD::FLOG2, VT.getSimpleVT(), Expand);
505     setOperationAction(ISD::FLOG10, VT.getSimpleVT(), Expand);
506     setOperationAction(ISD::FEXP, VT.getSimpleVT(), Expand);
507     setOperationAction(ISD::FEXP2, VT.getSimpleVT(), Expand);
508   }
509
510   setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT.getSimpleVT(), Custom);
511   setOperationAction(ISD::INSERT_VECTOR_ELT, VT.getSimpleVT(), Custom);
512   setOperationAction(ISD::BUILD_VECTOR, VT.getSimpleVT(), Custom);
513   setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom);
514   setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Custom);
515   setOperationAction(ISD::SRA, VT.getSimpleVT(), Custom);
516   setOperationAction(ISD::SRL, VT.getSimpleVT(), Custom);
517   setOperationAction(ISD::SHL, VT.getSimpleVT(), Custom);
518   setOperationAction(ISD::AND, VT.getSimpleVT(), Custom);
519   setOperationAction(ISD::OR, VT.getSimpleVT(), Custom);
520   setOperationAction(ISD::SETCC, VT.getSimpleVT(), Custom);
521   setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Legal);
522
523   setOperationAction(ISD::SELECT, VT.getSimpleVT(), Expand);
524   setOperationAction(ISD::SELECT_CC, VT.getSimpleVT(), Expand);
525   setOperationAction(ISD::VSELECT, VT.getSimpleVT(), Expand);
526   setLoadExtAction(ISD::EXTLOAD, VT.getSimpleVT(), Expand);
527
528   // CNT supports only B element sizes.
529   if (VT != MVT::v8i8 && VT != MVT::v16i8)
530     setOperationAction(ISD::CTPOP, VT.getSimpleVT(), Expand);
531
532   setOperationAction(ISD::UDIV, VT.getSimpleVT(), Expand);
533   setOperationAction(ISD::SDIV, VT.getSimpleVT(), Expand);
534   setOperationAction(ISD::UREM, VT.getSimpleVT(), Expand);
535   setOperationAction(ISD::SREM, VT.getSimpleVT(), Expand);
536   setOperationAction(ISD::FREM, VT.getSimpleVT(), Expand);
537
538   setOperationAction(ISD::FP_TO_SINT, VT.getSimpleVT(), Custom);
539   setOperationAction(ISD::FP_TO_UINT, VT.getSimpleVT(), Custom);
540
541   if (Subtarget->isLittleEndian()) {
542     for (unsigned im = (unsigned)ISD::PRE_INC;
543          im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
544       setIndexedLoadAction(im, VT.getSimpleVT(), Legal);
545       setIndexedStoreAction(im, VT.getSimpleVT(), Legal);
546     }
547   }
548 }
549
550 void AArch64TargetLowering::addDRTypeForNEON(MVT VT) {
551   addRegisterClass(VT, &AArch64::FPR64RegClass);
552   addTypeForNEON(VT, MVT::v2i32);
553 }
554
555 void AArch64TargetLowering::addQRTypeForNEON(MVT VT) {
556   addRegisterClass(VT, &AArch64::FPR128RegClass);
557   addTypeForNEON(VT, MVT::v4i32);
558 }
559
560 EVT AArch64TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
561   if (!VT.isVector())
562     return MVT::i32;
563   return VT.changeVectorElementTypeToInteger();
564 }
565
566 /// computeKnownBitsForTargetNode - Determine which of the bits specified in
567 /// Mask are known to be either zero or one and return them in the
568 /// KnownZero/KnownOne bitsets.
569 void AArch64TargetLowering::computeKnownBitsForTargetNode(
570     const SDValue Op, APInt &KnownZero, APInt &KnownOne,
571     const SelectionDAG &DAG, unsigned Depth) const {
572   switch (Op.getOpcode()) {
573   default:
574     break;
575   case AArch64ISD::CSEL: {
576     APInt KnownZero2, KnownOne2;
577     DAG.computeKnownBits(Op->getOperand(0), KnownZero, KnownOne, Depth + 1);
578     DAG.computeKnownBits(Op->getOperand(1), KnownZero2, KnownOne2, Depth + 1);
579     KnownZero &= KnownZero2;
580     KnownOne &= KnownOne2;
581     break;
582   }
583   case ISD::INTRINSIC_W_CHAIN: {
584    ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
585     Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
586     switch (IntID) {
587     default: return;
588     case Intrinsic::aarch64_ldaxr:
589     case Intrinsic::aarch64_ldxr: {
590       unsigned BitWidth = KnownOne.getBitWidth();
591       EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
592       unsigned MemBits = VT.getScalarType().getSizeInBits();
593       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
594       return;
595     }
596     }
597     break;
598   }
599   case ISD::INTRINSIC_WO_CHAIN:
600   case ISD::INTRINSIC_VOID: {
601     unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
602     switch (IntNo) {
603     default:
604       break;
605     case Intrinsic::aarch64_neon_umaxv:
606     case Intrinsic::aarch64_neon_uminv: {
607       // Figure out the datatype of the vector operand. The UMINV instruction
608       // will zero extend the result, so we can mark as known zero all the
609       // bits larger than the element datatype. 32-bit or larget doesn't need
610       // this as those are legal types and will be handled by isel directly.
611       MVT VT = Op.getOperand(1).getValueType().getSimpleVT();
612       unsigned BitWidth = KnownZero.getBitWidth();
613       if (VT == MVT::v8i8 || VT == MVT::v16i8) {
614         assert(BitWidth >= 8 && "Unexpected width!");
615         APInt Mask = APInt::getHighBitsSet(BitWidth, BitWidth - 8);
616         KnownZero |= Mask;
617       } else if (VT == MVT::v4i16 || VT == MVT::v8i16) {
618         assert(BitWidth >= 16 && "Unexpected width!");
619         APInt Mask = APInt::getHighBitsSet(BitWidth, BitWidth - 16);
620         KnownZero |= Mask;
621       }
622       break;
623     } break;
624     }
625   }
626   }
627 }
628
629 MVT AArch64TargetLowering::getScalarShiftAmountTy(EVT LHSTy) const {
630   return MVT::i64;
631 }
632
633 unsigned AArch64TargetLowering::getMaximalGlobalOffset() const {
634   // FIXME: On AArch64, this depends on the type.
635   // Basically, the addressable offsets are up to 4095 * Ty.getSizeInBytes().
636   // and the offset has to be a multiple of the related size in bytes.
637   return 4095;
638 }
639
640 FastISel *
641 AArch64TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
642                                       const TargetLibraryInfo *libInfo) const {
643   return AArch64::createFastISel(funcInfo, libInfo);
644 }
645
646 const char *AArch64TargetLowering::getTargetNodeName(unsigned Opcode) const {
647   switch (Opcode) {
648   default:
649     return nullptr;
650   case AArch64ISD::CALL:              return "AArch64ISD::CALL";
651   case AArch64ISD::ADRP:              return "AArch64ISD::ADRP";
652   case AArch64ISD::ADDlow:            return "AArch64ISD::ADDlow";
653   case AArch64ISD::LOADgot:           return "AArch64ISD::LOADgot";
654   case AArch64ISD::RET_FLAG:          return "AArch64ISD::RET_FLAG";
655   case AArch64ISD::BRCOND:            return "AArch64ISD::BRCOND";
656   case AArch64ISD::CSEL:              return "AArch64ISD::CSEL";
657   case AArch64ISD::FCSEL:             return "AArch64ISD::FCSEL";
658   case AArch64ISD::CSINV:             return "AArch64ISD::CSINV";
659   case AArch64ISD::CSNEG:             return "AArch64ISD::CSNEG";
660   case AArch64ISD::CSINC:             return "AArch64ISD::CSINC";
661   case AArch64ISD::THREAD_POINTER:    return "AArch64ISD::THREAD_POINTER";
662   case AArch64ISD::TLSDESC_CALL:      return "AArch64ISD::TLSDESC_CALL";
663   case AArch64ISD::ADC:               return "AArch64ISD::ADC";
664   case AArch64ISD::SBC:               return "AArch64ISD::SBC";
665   case AArch64ISD::ADDS:              return "AArch64ISD::ADDS";
666   case AArch64ISD::SUBS:              return "AArch64ISD::SUBS";
667   case AArch64ISD::ADCS:              return "AArch64ISD::ADCS";
668   case AArch64ISD::SBCS:              return "AArch64ISD::SBCS";
669   case AArch64ISD::ANDS:              return "AArch64ISD::ANDS";
670   case AArch64ISD::FCMP:              return "AArch64ISD::FCMP";
671   case AArch64ISD::FMIN:              return "AArch64ISD::FMIN";
672   case AArch64ISD::FMAX:              return "AArch64ISD::FMAX";
673   case AArch64ISD::DUP:               return "AArch64ISD::DUP";
674   case AArch64ISD::DUPLANE8:          return "AArch64ISD::DUPLANE8";
675   case AArch64ISD::DUPLANE16:         return "AArch64ISD::DUPLANE16";
676   case AArch64ISD::DUPLANE32:         return "AArch64ISD::DUPLANE32";
677   case AArch64ISD::DUPLANE64:         return "AArch64ISD::DUPLANE64";
678   case AArch64ISD::MOVI:              return "AArch64ISD::MOVI";
679   case AArch64ISD::MOVIshift:         return "AArch64ISD::MOVIshift";
680   case AArch64ISD::MOVIedit:          return "AArch64ISD::MOVIedit";
681   case AArch64ISD::MOVImsl:           return "AArch64ISD::MOVImsl";
682   case AArch64ISD::FMOV:              return "AArch64ISD::FMOV";
683   case AArch64ISD::MVNIshift:         return "AArch64ISD::MVNIshift";
684   case AArch64ISD::MVNImsl:           return "AArch64ISD::MVNImsl";
685   case AArch64ISD::BICi:              return "AArch64ISD::BICi";
686   case AArch64ISD::ORRi:              return "AArch64ISD::ORRi";
687   case AArch64ISD::BSL:               return "AArch64ISD::BSL";
688   case AArch64ISD::NEG:               return "AArch64ISD::NEG";
689   case AArch64ISD::EXTR:              return "AArch64ISD::EXTR";
690   case AArch64ISD::ZIP1:              return "AArch64ISD::ZIP1";
691   case AArch64ISD::ZIP2:              return "AArch64ISD::ZIP2";
692   case AArch64ISD::UZP1:              return "AArch64ISD::UZP1";
693   case AArch64ISD::UZP2:              return "AArch64ISD::UZP2";
694   case AArch64ISD::TRN1:              return "AArch64ISD::TRN1";
695   case AArch64ISD::TRN2:              return "AArch64ISD::TRN2";
696   case AArch64ISD::REV16:             return "AArch64ISD::REV16";
697   case AArch64ISD::REV32:             return "AArch64ISD::REV32";
698   case AArch64ISD::REV64:             return "AArch64ISD::REV64";
699   case AArch64ISD::EXT:               return "AArch64ISD::EXT";
700   case AArch64ISD::VSHL:              return "AArch64ISD::VSHL";
701   case AArch64ISD::VLSHR:             return "AArch64ISD::VLSHR";
702   case AArch64ISD::VASHR:             return "AArch64ISD::VASHR";
703   case AArch64ISD::CMEQ:              return "AArch64ISD::CMEQ";
704   case AArch64ISD::CMGE:              return "AArch64ISD::CMGE";
705   case AArch64ISD::CMGT:              return "AArch64ISD::CMGT";
706   case AArch64ISD::CMHI:              return "AArch64ISD::CMHI";
707   case AArch64ISD::CMHS:              return "AArch64ISD::CMHS";
708   case AArch64ISD::FCMEQ:             return "AArch64ISD::FCMEQ";
709   case AArch64ISD::FCMGE:             return "AArch64ISD::FCMGE";
710   case AArch64ISD::FCMGT:             return "AArch64ISD::FCMGT";
711   case AArch64ISD::CMEQz:             return "AArch64ISD::CMEQz";
712   case AArch64ISD::CMGEz:             return "AArch64ISD::CMGEz";
713   case AArch64ISD::CMGTz:             return "AArch64ISD::CMGTz";
714   case AArch64ISD::CMLEz:             return "AArch64ISD::CMLEz";
715   case AArch64ISD::CMLTz:             return "AArch64ISD::CMLTz";
716   case AArch64ISD::FCMEQz:            return "AArch64ISD::FCMEQz";
717   case AArch64ISD::FCMGEz:            return "AArch64ISD::FCMGEz";
718   case AArch64ISD::FCMGTz:            return "AArch64ISD::FCMGTz";
719   case AArch64ISD::FCMLEz:            return "AArch64ISD::FCMLEz";
720   case AArch64ISD::FCMLTz:            return "AArch64ISD::FCMLTz";
721   case AArch64ISD::NOT:               return "AArch64ISD::NOT";
722   case AArch64ISD::BIT:               return "AArch64ISD::BIT";
723   case AArch64ISD::CBZ:               return "AArch64ISD::CBZ";
724   case AArch64ISD::CBNZ:              return "AArch64ISD::CBNZ";
725   case AArch64ISD::TBZ:               return "AArch64ISD::TBZ";
726   case AArch64ISD::TBNZ:              return "AArch64ISD::TBNZ";
727   case AArch64ISD::TC_RETURN:         return "AArch64ISD::TC_RETURN";
728   case AArch64ISD::SITOF:             return "AArch64ISD::SITOF";
729   case AArch64ISD::UITOF:             return "AArch64ISD::UITOF";
730   case AArch64ISD::SQSHL_I:           return "AArch64ISD::SQSHL_I";
731   case AArch64ISD::UQSHL_I:           return "AArch64ISD::UQSHL_I";
732   case AArch64ISD::SRSHR_I:           return "AArch64ISD::SRSHR_I";
733   case AArch64ISD::URSHR_I:           return "AArch64ISD::URSHR_I";
734   case AArch64ISD::SQSHLU_I:          return "AArch64ISD::SQSHLU_I";
735   case AArch64ISD::WrapperLarge:      return "AArch64ISD::WrapperLarge";
736   case AArch64ISD::LD2post:           return "AArch64ISD::LD2post";
737   case AArch64ISD::LD3post:           return "AArch64ISD::LD3post";
738   case AArch64ISD::LD4post:           return "AArch64ISD::LD4post";
739   case AArch64ISD::ST2post:           return "AArch64ISD::ST2post";
740   case AArch64ISD::ST3post:           return "AArch64ISD::ST3post";
741   case AArch64ISD::ST4post:           return "AArch64ISD::ST4post";
742   case AArch64ISD::LD1x2post:         return "AArch64ISD::LD1x2post";
743   case AArch64ISD::LD1x3post:         return "AArch64ISD::LD1x3post";
744   case AArch64ISD::LD1x4post:         return "AArch64ISD::LD1x4post";
745   case AArch64ISD::ST1x2post:         return "AArch64ISD::ST1x2post";
746   case AArch64ISD::ST1x3post:         return "AArch64ISD::ST1x3post";
747   case AArch64ISD::ST1x4post:         return "AArch64ISD::ST1x4post";
748   case AArch64ISD::LD1DUPpost:        return "AArch64ISD::LD1DUPpost";
749   case AArch64ISD::LD2DUPpost:        return "AArch64ISD::LD2DUPpost";
750   case AArch64ISD::LD3DUPpost:        return "AArch64ISD::LD3DUPpost";
751   case AArch64ISD::LD4DUPpost:        return "AArch64ISD::LD4DUPpost";
752   case AArch64ISD::LD1LANEpost:       return "AArch64ISD::LD1LANEpost";
753   case AArch64ISD::LD2LANEpost:       return "AArch64ISD::LD2LANEpost";
754   case AArch64ISD::LD3LANEpost:       return "AArch64ISD::LD3LANEpost";
755   case AArch64ISD::LD4LANEpost:       return "AArch64ISD::LD4LANEpost";
756   case AArch64ISD::ST2LANEpost:       return "AArch64ISD::ST2LANEpost";
757   case AArch64ISD::ST3LANEpost:       return "AArch64ISD::ST3LANEpost";
758   case AArch64ISD::ST4LANEpost:       return "AArch64ISD::ST4LANEpost";
759   }
760 }
761
762 MachineBasicBlock *
763 AArch64TargetLowering::EmitF128CSEL(MachineInstr *MI,
764                                     MachineBasicBlock *MBB) const {
765   // We materialise the F128CSEL pseudo-instruction as some control flow and a
766   // phi node:
767
768   // OrigBB:
769   //     [... previous instrs leading to comparison ...]
770   //     b.ne TrueBB
771   //     b EndBB
772   // TrueBB:
773   //     ; Fallthrough
774   // EndBB:
775   //     Dest = PHI [IfTrue, TrueBB], [IfFalse, OrigBB]
776
777   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
778   MachineFunction *MF = MBB->getParent();
779   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
780   DebugLoc DL = MI->getDebugLoc();
781   MachineFunction::iterator It = MBB;
782   ++It;
783
784   unsigned DestReg = MI->getOperand(0).getReg();
785   unsigned IfTrueReg = MI->getOperand(1).getReg();
786   unsigned IfFalseReg = MI->getOperand(2).getReg();
787   unsigned CondCode = MI->getOperand(3).getImm();
788   bool NZCVKilled = MI->getOperand(4).isKill();
789
790   MachineBasicBlock *TrueBB = MF->CreateMachineBasicBlock(LLVM_BB);
791   MachineBasicBlock *EndBB = MF->CreateMachineBasicBlock(LLVM_BB);
792   MF->insert(It, TrueBB);
793   MF->insert(It, EndBB);
794
795   // Transfer rest of current basic-block to EndBB
796   EndBB->splice(EndBB->begin(), MBB, std::next(MachineBasicBlock::iterator(MI)),
797                 MBB->end());
798   EndBB->transferSuccessorsAndUpdatePHIs(MBB);
799
800   BuildMI(MBB, DL, TII->get(AArch64::Bcc)).addImm(CondCode).addMBB(TrueBB);
801   BuildMI(MBB, DL, TII->get(AArch64::B)).addMBB(EndBB);
802   MBB->addSuccessor(TrueBB);
803   MBB->addSuccessor(EndBB);
804
805   // TrueBB falls through to the end.
806   TrueBB->addSuccessor(EndBB);
807
808   if (!NZCVKilled) {
809     TrueBB->addLiveIn(AArch64::NZCV);
810     EndBB->addLiveIn(AArch64::NZCV);
811   }
812
813   BuildMI(*EndBB, EndBB->begin(), DL, TII->get(AArch64::PHI), DestReg)
814       .addReg(IfTrueReg)
815       .addMBB(TrueBB)
816       .addReg(IfFalseReg)
817       .addMBB(MBB);
818
819   MI->eraseFromParent();
820   return EndBB;
821 }
822
823 MachineBasicBlock *
824 AArch64TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
825                                                  MachineBasicBlock *BB) const {
826   switch (MI->getOpcode()) {
827   default:
828 #ifndef NDEBUG
829     MI->dump();
830 #endif
831     llvm_unreachable("Unexpected instruction for custom inserter!");
832
833   case AArch64::F128CSEL:
834     return EmitF128CSEL(MI, BB);
835
836   case TargetOpcode::STACKMAP:
837   case TargetOpcode::PATCHPOINT:
838     return emitPatchPoint(MI, BB);
839   }
840 }
841
842 //===----------------------------------------------------------------------===//
843 // AArch64 Lowering private implementation.
844 //===----------------------------------------------------------------------===//
845
846 //===----------------------------------------------------------------------===//
847 // Lowering Code
848 //===----------------------------------------------------------------------===//
849
850 /// changeIntCCToAArch64CC - Convert a DAG integer condition code to an AArch64
851 /// CC
852 static AArch64CC::CondCode changeIntCCToAArch64CC(ISD::CondCode CC) {
853   switch (CC) {
854   default:
855     llvm_unreachable("Unknown condition code!");
856   case ISD::SETNE:
857     return AArch64CC::NE;
858   case ISD::SETEQ:
859     return AArch64CC::EQ;
860   case ISD::SETGT:
861     return AArch64CC::GT;
862   case ISD::SETGE:
863     return AArch64CC::GE;
864   case ISD::SETLT:
865     return AArch64CC::LT;
866   case ISD::SETLE:
867     return AArch64CC::LE;
868   case ISD::SETUGT:
869     return AArch64CC::HI;
870   case ISD::SETUGE:
871     return AArch64CC::HS;
872   case ISD::SETULT:
873     return AArch64CC::LO;
874   case ISD::SETULE:
875     return AArch64CC::LS;
876   }
877 }
878
879 /// changeFPCCToAArch64CC - Convert a DAG fp condition code to an AArch64 CC.
880 static void changeFPCCToAArch64CC(ISD::CondCode CC,
881                                   AArch64CC::CondCode &CondCode,
882                                   AArch64CC::CondCode &CondCode2) {
883   CondCode2 = AArch64CC::AL;
884   switch (CC) {
885   default:
886     llvm_unreachable("Unknown FP condition!");
887   case ISD::SETEQ:
888   case ISD::SETOEQ:
889     CondCode = AArch64CC::EQ;
890     break;
891   case ISD::SETGT:
892   case ISD::SETOGT:
893     CondCode = AArch64CC::GT;
894     break;
895   case ISD::SETGE:
896   case ISD::SETOGE:
897     CondCode = AArch64CC::GE;
898     break;
899   case ISD::SETOLT:
900     CondCode = AArch64CC::MI;
901     break;
902   case ISD::SETOLE:
903     CondCode = AArch64CC::LS;
904     break;
905   case ISD::SETONE:
906     CondCode = AArch64CC::MI;
907     CondCode2 = AArch64CC::GT;
908     break;
909   case ISD::SETO:
910     CondCode = AArch64CC::VC;
911     break;
912   case ISD::SETUO:
913     CondCode = AArch64CC::VS;
914     break;
915   case ISD::SETUEQ:
916     CondCode = AArch64CC::EQ;
917     CondCode2 = AArch64CC::VS;
918     break;
919   case ISD::SETUGT:
920     CondCode = AArch64CC::HI;
921     break;
922   case ISD::SETUGE:
923     CondCode = AArch64CC::PL;
924     break;
925   case ISD::SETLT:
926   case ISD::SETULT:
927     CondCode = AArch64CC::LT;
928     break;
929   case ISD::SETLE:
930   case ISD::SETULE:
931     CondCode = AArch64CC::LE;
932     break;
933   case ISD::SETNE:
934   case ISD::SETUNE:
935     CondCode = AArch64CC::NE;
936     break;
937   }
938 }
939
940 /// changeVectorFPCCToAArch64CC - Convert a DAG fp condition code to an AArch64
941 /// CC usable with the vector instructions. Fewer operations are available
942 /// without a real NZCV register, so we have to use less efficient combinations
943 /// to get the same effect.
944 static void changeVectorFPCCToAArch64CC(ISD::CondCode CC,
945                                         AArch64CC::CondCode &CondCode,
946                                         AArch64CC::CondCode &CondCode2,
947                                         bool &Invert) {
948   Invert = false;
949   switch (CC) {
950   default:
951     // Mostly the scalar mappings work fine.
952     changeFPCCToAArch64CC(CC, CondCode, CondCode2);
953     break;
954   case ISD::SETUO:
955     Invert = true; // Fallthrough
956   case ISD::SETO:
957     CondCode = AArch64CC::MI;
958     CondCode2 = AArch64CC::GE;
959     break;
960   case ISD::SETUEQ:
961   case ISD::SETULT:
962   case ISD::SETULE:
963   case ISD::SETUGT:
964   case ISD::SETUGE:
965     // All of the compare-mask comparisons are ordered, but we can switch
966     // between the two by a double inversion. E.g. ULE == !OGT.
967     Invert = true;
968     changeFPCCToAArch64CC(getSetCCInverse(CC, false), CondCode, CondCode2);
969     break;
970   }
971 }
972
973 static bool isLegalArithImmed(uint64_t C) {
974   // Matches AArch64DAGToDAGISel::SelectArithImmed().
975   return (C >> 12 == 0) || ((C & 0xFFFULL) == 0 && C >> 24 == 0);
976 }
977
978 static SDValue emitComparison(SDValue LHS, SDValue RHS, ISD::CondCode CC,
979                               SDLoc dl, SelectionDAG &DAG) {
980   EVT VT = LHS.getValueType();
981
982   if (VT.isFloatingPoint())
983     return DAG.getNode(AArch64ISD::FCMP, dl, VT, LHS, RHS);
984
985   // The CMP instruction is just an alias for SUBS, and representing it as
986   // SUBS means that it's possible to get CSE with subtract operations.
987   // A later phase can perform the optimization of setting the destination
988   // register to WZR/XZR if it ends up being unused.
989   unsigned Opcode = AArch64ISD::SUBS;
990
991   if (RHS.getOpcode() == ISD::SUB && isa<ConstantSDNode>(RHS.getOperand(0)) &&
992       cast<ConstantSDNode>(RHS.getOperand(0))->getZExtValue() == 0 &&
993       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
994     // We'd like to combine a (CMP op1, (sub 0, op2) into a CMN instruction on
995     // the grounds that "op1 - (-op2) == op1 + op2". However, the C and V flags
996     // can be set differently by this operation. It comes down to whether
997     // "SInt(~op2)+1 == SInt(~op2+1)" (and the same for UInt). If they are then
998     // everything is fine. If not then the optimization is wrong. Thus general
999     // comparisons are only valid if op2 != 0.
1000
1001     // So, finally, the only LLVM-native comparisons that don't mention C and V
1002     // are SETEQ and SETNE. They're the only ones we can safely use CMN for in
1003     // the absence of information about op2.
1004     Opcode = AArch64ISD::ADDS;
1005     RHS = RHS.getOperand(1);
1006   } else if (LHS.getOpcode() == ISD::AND && isa<ConstantSDNode>(RHS) &&
1007              cast<ConstantSDNode>(RHS)->getZExtValue() == 0 &&
1008              !isUnsignedIntSetCC(CC)) {
1009     // Similarly, (CMP (and X, Y), 0) can be implemented with a TST
1010     // (a.k.a. ANDS) except that the flags are only guaranteed to work for one
1011     // of the signed comparisons.
1012     Opcode = AArch64ISD::ANDS;
1013     RHS = LHS.getOperand(1);
1014     LHS = LHS.getOperand(0);
1015   }
1016
1017   return DAG.getNode(Opcode, dl, DAG.getVTList(VT, MVT::i32), LHS, RHS)
1018       .getValue(1);
1019 }
1020
1021 static SDValue getAArch64Cmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
1022                              SDValue &AArch64cc, SelectionDAG &DAG, SDLoc dl) {
1023   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
1024     EVT VT = RHS.getValueType();
1025     uint64_t C = RHSC->getZExtValue();
1026     if (!isLegalArithImmed(C)) {
1027       // Constant does not fit, try adjusting it by one?
1028       switch (CC) {
1029       default:
1030         break;
1031       case ISD::SETLT:
1032       case ISD::SETGE:
1033         if ((VT == MVT::i32 && C != 0x80000000 &&
1034              isLegalArithImmed((uint32_t)(C - 1))) ||
1035             (VT == MVT::i64 && C != 0x80000000ULL &&
1036              isLegalArithImmed(C - 1ULL))) {
1037           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
1038           C = (VT == MVT::i32) ? (uint32_t)(C - 1) : C - 1;
1039           RHS = DAG.getConstant(C, VT);
1040         }
1041         break;
1042       case ISD::SETULT:
1043       case ISD::SETUGE:
1044         if ((VT == MVT::i32 && C != 0 &&
1045              isLegalArithImmed((uint32_t)(C - 1))) ||
1046             (VT == MVT::i64 && C != 0ULL && isLegalArithImmed(C - 1ULL))) {
1047           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
1048           C = (VT == MVT::i32) ? (uint32_t)(C - 1) : C - 1;
1049           RHS = DAG.getConstant(C, VT);
1050         }
1051         break;
1052       case ISD::SETLE:
1053       case ISD::SETGT:
1054         if ((VT == MVT::i32 && C != 0x7fffffff &&
1055              isLegalArithImmed((uint32_t)(C + 1))) ||
1056             (VT == MVT::i64 && C != 0x7ffffffffffffffULL &&
1057              isLegalArithImmed(C + 1ULL))) {
1058           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
1059           C = (VT == MVT::i32) ? (uint32_t)(C + 1) : C + 1;
1060           RHS = DAG.getConstant(C, VT);
1061         }
1062         break;
1063       case ISD::SETULE:
1064       case ISD::SETUGT:
1065         if ((VT == MVT::i32 && C != 0xffffffff &&
1066              isLegalArithImmed((uint32_t)(C + 1))) ||
1067             (VT == MVT::i64 && C != 0xfffffffffffffffULL &&
1068              isLegalArithImmed(C + 1ULL))) {
1069           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
1070           C = (VT == MVT::i32) ? (uint32_t)(C + 1) : C + 1;
1071           RHS = DAG.getConstant(C, VT);
1072         }
1073         break;
1074       }
1075     }
1076   }
1077
1078   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
1079   AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
1080   AArch64cc = DAG.getConstant(AArch64CC, MVT::i32);
1081   return Cmp;
1082 }
1083
1084 static std::pair<SDValue, SDValue>
1085 getAArch64XALUOOp(AArch64CC::CondCode &CC, SDValue Op, SelectionDAG &DAG) {
1086   assert((Op.getValueType() == MVT::i32 || Op.getValueType() == MVT::i64) &&
1087          "Unsupported value type");
1088   SDValue Value, Overflow;
1089   SDLoc DL(Op);
1090   SDValue LHS = Op.getOperand(0);
1091   SDValue RHS = Op.getOperand(1);
1092   unsigned Opc = 0;
1093   switch (Op.getOpcode()) {
1094   default:
1095     llvm_unreachable("Unknown overflow instruction!");
1096   case ISD::SADDO:
1097     Opc = AArch64ISD::ADDS;
1098     CC = AArch64CC::VS;
1099     break;
1100   case ISD::UADDO:
1101     Opc = AArch64ISD::ADDS;
1102     CC = AArch64CC::HS;
1103     break;
1104   case ISD::SSUBO:
1105     Opc = AArch64ISD::SUBS;
1106     CC = AArch64CC::VS;
1107     break;
1108   case ISD::USUBO:
1109     Opc = AArch64ISD::SUBS;
1110     CC = AArch64CC::LO;
1111     break;
1112   // Multiply needs a little bit extra work.
1113   case ISD::SMULO:
1114   case ISD::UMULO: {
1115     CC = AArch64CC::NE;
1116     bool IsSigned = (Op.getOpcode() == ISD::SMULO) ? true : false;
1117     if (Op.getValueType() == MVT::i32) {
1118       unsigned ExtendOpc = IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
1119       // For a 32 bit multiply with overflow check we want the instruction
1120       // selector to generate a widening multiply (SMADDL/UMADDL). For that we
1121       // need to generate the following pattern:
1122       // (i64 add 0, (i64 mul (i64 sext|zext i32 %a), (i64 sext|zext i32 %b))
1123       LHS = DAG.getNode(ExtendOpc, DL, MVT::i64, LHS);
1124       RHS = DAG.getNode(ExtendOpc, DL, MVT::i64, RHS);
1125       SDValue Mul = DAG.getNode(ISD::MUL, DL, MVT::i64, LHS, RHS);
1126       SDValue Add = DAG.getNode(ISD::ADD, DL, MVT::i64, Mul,
1127                                 DAG.getConstant(0, MVT::i64));
1128       // On AArch64 the upper 32 bits are always zero extended for a 32 bit
1129       // operation. We need to clear out the upper 32 bits, because we used a
1130       // widening multiply that wrote all 64 bits. In the end this should be a
1131       // noop.
1132       Value = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Add);
1133       if (IsSigned) {
1134         // The signed overflow check requires more than just a simple check for
1135         // any bit set in the upper 32 bits of the result. These bits could be
1136         // just the sign bits of a negative number. To perform the overflow
1137         // check we have to arithmetic shift right the 32nd bit of the result by
1138         // 31 bits. Then we compare the result to the upper 32 bits.
1139         SDValue UpperBits = DAG.getNode(ISD::SRL, DL, MVT::i64, Add,
1140                                         DAG.getConstant(32, MVT::i64));
1141         UpperBits = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, UpperBits);
1142         SDValue LowerBits = DAG.getNode(ISD::SRA, DL, MVT::i32, Value,
1143                                         DAG.getConstant(31, MVT::i64));
1144         // It is important that LowerBits is last, otherwise the arithmetic
1145         // shift will not be folded into the compare (SUBS).
1146         SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32);
1147         Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1148                        .getValue(1);
1149       } else {
1150         // The overflow check for unsigned multiply is easy. We only need to
1151         // check if any of the upper 32 bits are set. This can be done with a
1152         // CMP (shifted register). For that we need to generate the following
1153         // pattern:
1154         // (i64 AArch64ISD::SUBS i64 0, (i64 srl i64 %Mul, i64 32)
1155         SDValue UpperBits = DAG.getNode(ISD::SRL, DL, MVT::i64, Mul,
1156                                         DAG.getConstant(32, MVT::i64));
1157         SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1158         Overflow =
1159             DAG.getNode(AArch64ISD::SUBS, DL, VTs, DAG.getConstant(0, MVT::i64),
1160                         UpperBits).getValue(1);
1161       }
1162       break;
1163     }
1164     assert(Op.getValueType() == MVT::i64 && "Expected an i64 value type");
1165     // For the 64 bit multiply
1166     Value = DAG.getNode(ISD::MUL, DL, MVT::i64, LHS, RHS);
1167     if (IsSigned) {
1168       SDValue UpperBits = DAG.getNode(ISD::MULHS, DL, MVT::i64, LHS, RHS);
1169       SDValue LowerBits = DAG.getNode(ISD::SRA, DL, MVT::i64, Value,
1170                                       DAG.getConstant(63, MVT::i64));
1171       // It is important that LowerBits is last, otherwise the arithmetic
1172       // shift will not be folded into the compare (SUBS).
1173       SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1174       Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1175                      .getValue(1);
1176     } else {
1177       SDValue UpperBits = DAG.getNode(ISD::MULHU, DL, MVT::i64, LHS, RHS);
1178       SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1179       Overflow =
1180           DAG.getNode(AArch64ISD::SUBS, DL, VTs, DAG.getConstant(0, MVT::i64),
1181                       UpperBits).getValue(1);
1182     }
1183     break;
1184   }
1185   } // switch (...)
1186
1187   if (Opc) {
1188     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::i32);
1189
1190     // Emit the AArch64 operation with overflow check.
1191     Value = DAG.getNode(Opc, DL, VTs, LHS, RHS);
1192     Overflow = Value.getValue(1);
1193   }
1194   return std::make_pair(Value, Overflow);
1195 }
1196
1197 SDValue AArch64TargetLowering::LowerF128Call(SDValue Op, SelectionDAG &DAG,
1198                                              RTLIB::Libcall Call) const {
1199   SmallVector<SDValue, 2> Ops;
1200   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i)
1201     Ops.push_back(Op.getOperand(i));
1202
1203   return makeLibCall(DAG, Call, MVT::f128, &Ops[0], Ops.size(), false,
1204                      SDLoc(Op)).first;
1205 }
1206
1207 static SDValue LowerXOR(SDValue Op, SelectionDAG &DAG) {
1208   SDValue Sel = Op.getOperand(0);
1209   SDValue Other = Op.getOperand(1);
1210
1211   // If neither operand is a SELECT_CC, give up.
1212   if (Sel.getOpcode() != ISD::SELECT_CC)
1213     std::swap(Sel, Other);
1214   if (Sel.getOpcode() != ISD::SELECT_CC)
1215     return Op;
1216
1217   // The folding we want to perform is:
1218   // (xor x, (select_cc a, b, cc, 0, -1) )
1219   //   -->
1220   // (csel x, (xor x, -1), cc ...)
1221   //
1222   // The latter will get matched to a CSINV instruction.
1223
1224   ISD::CondCode CC = cast<CondCodeSDNode>(Sel.getOperand(4))->get();
1225   SDValue LHS = Sel.getOperand(0);
1226   SDValue RHS = Sel.getOperand(1);
1227   SDValue TVal = Sel.getOperand(2);
1228   SDValue FVal = Sel.getOperand(3);
1229   SDLoc dl(Sel);
1230
1231   // FIXME: This could be generalized to non-integer comparisons.
1232   if (LHS.getValueType() != MVT::i32 && LHS.getValueType() != MVT::i64)
1233     return Op;
1234
1235   ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal);
1236   ConstantSDNode *CTVal = dyn_cast<ConstantSDNode>(TVal);
1237
1238   // The the values aren't constants, this isn't the pattern we're looking for.
1239   if (!CFVal || !CTVal)
1240     return Op;
1241
1242   // We can commute the SELECT_CC by inverting the condition.  This
1243   // might be needed to make this fit into a CSINV pattern.
1244   if (CTVal->isAllOnesValue() && CFVal->isNullValue()) {
1245     std::swap(TVal, FVal);
1246     std::swap(CTVal, CFVal);
1247     CC = ISD::getSetCCInverse(CC, true);
1248   }
1249
1250   // If the constants line up, perform the transform!
1251   if (CTVal->isNullValue() && CFVal->isAllOnesValue()) {
1252     SDValue CCVal;
1253     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
1254
1255     FVal = Other;
1256     TVal = DAG.getNode(ISD::XOR, dl, Other.getValueType(), Other,
1257                        DAG.getConstant(-1ULL, Other.getValueType()));
1258
1259     return DAG.getNode(AArch64ISD::CSEL, dl, Sel.getValueType(), FVal, TVal,
1260                        CCVal, Cmp);
1261   }
1262
1263   return Op;
1264 }
1265
1266 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
1267   EVT VT = Op.getValueType();
1268
1269   // Let legalize expand this if it isn't a legal type yet.
1270   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
1271     return SDValue();
1272
1273   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
1274
1275   unsigned Opc;
1276   bool ExtraOp = false;
1277   switch (Op.getOpcode()) {
1278   default:
1279     llvm_unreachable("Invalid code");
1280   case ISD::ADDC:
1281     Opc = AArch64ISD::ADDS;
1282     break;
1283   case ISD::SUBC:
1284     Opc = AArch64ISD::SUBS;
1285     break;
1286   case ISD::ADDE:
1287     Opc = AArch64ISD::ADCS;
1288     ExtraOp = true;
1289     break;
1290   case ISD::SUBE:
1291     Opc = AArch64ISD::SBCS;
1292     ExtraOp = true;
1293     break;
1294   }
1295
1296   if (!ExtraOp)
1297     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), Op.getOperand(1));
1298   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), Op.getOperand(1),
1299                      Op.getOperand(2));
1300 }
1301
1302 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
1303   // Let legalize expand this if it isn't a legal type yet.
1304   if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
1305     return SDValue();
1306
1307   AArch64CC::CondCode CC;
1308   // The actual operation that sets the overflow or carry flag.
1309   SDValue Value, Overflow;
1310   std::tie(Value, Overflow) = getAArch64XALUOOp(CC, Op, DAG);
1311
1312   // We use 0 and 1 as false and true values.
1313   SDValue TVal = DAG.getConstant(1, MVT::i32);
1314   SDValue FVal = DAG.getConstant(0, MVT::i32);
1315
1316   // We use an inverted condition, because the conditional select is inverted
1317   // too. This will allow it to be selected to a single instruction:
1318   // CSINC Wd, WZR, WZR, invert(cond).
1319   SDValue CCVal = DAG.getConstant(getInvertedCondCode(CC), MVT::i32);
1320   Overflow = DAG.getNode(AArch64ISD::CSEL, SDLoc(Op), MVT::i32, FVal, TVal,
1321                          CCVal, Overflow);
1322
1323   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
1324   return DAG.getNode(ISD::MERGE_VALUES, SDLoc(Op), VTs, Value, Overflow);
1325 }
1326
1327 // Prefetch operands are:
1328 // 1: Address to prefetch
1329 // 2: bool isWrite
1330 // 3: int locality (0 = no locality ... 3 = extreme locality)
1331 // 4: bool isDataCache
1332 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG) {
1333   SDLoc DL(Op);
1334   unsigned IsWrite = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
1335   unsigned Locality = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
1336   // The data thing is not used.
1337   // unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
1338
1339   bool IsStream = !Locality;
1340   // When the locality number is set
1341   if (Locality) {
1342     // The front-end should have filtered out the out-of-range values
1343     assert(Locality <= 3 && "Prefetch locality out-of-range");
1344     // The locality degree is the opposite of the cache speed.
1345     // Put the number the other way around.
1346     // The encoding starts at 0 for level 1
1347     Locality = 3 - Locality;
1348   }
1349
1350   // built the mask value encoding the expected behavior.
1351   unsigned PrfOp = (IsWrite << 4) |     // Load/Store bit
1352                    (Locality << 1) |    // Cache level bits
1353                    (unsigned)IsStream;  // Stream bit
1354   return DAG.getNode(AArch64ISD::PREFETCH, DL, MVT::Other, Op.getOperand(0),
1355                      DAG.getConstant(PrfOp, MVT::i32), Op.getOperand(1));
1356 }
1357
1358 SDValue AArch64TargetLowering::LowerFP_EXTEND(SDValue Op,
1359                                               SelectionDAG &DAG) const {
1360   assert(Op.getValueType() == MVT::f128 && "Unexpected lowering");
1361
1362   RTLIB::Libcall LC;
1363   LC = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType());
1364
1365   return LowerF128Call(Op, DAG, LC);
1366 }
1367
1368 SDValue AArch64TargetLowering::LowerFP_ROUND(SDValue Op,
1369                                              SelectionDAG &DAG) const {
1370   if (Op.getOperand(0).getValueType() != MVT::f128) {
1371     // It's legal except when f128 is involved
1372     return Op;
1373   }
1374
1375   RTLIB::Libcall LC;
1376   LC = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType());
1377
1378   // FP_ROUND node has a second operand indicating whether it is known to be
1379   // precise. That doesn't take part in the LibCall so we can't directly use
1380   // LowerF128Call.
1381   SDValue SrcVal = Op.getOperand(0);
1382   return makeLibCall(DAG, LC, Op.getValueType(), &SrcVal, 1,
1383                      /*isSigned*/ false, SDLoc(Op)).first;
1384 }
1385
1386 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
1387   // Warning: We maintain cost tables in AArch64TargetTransformInfo.cpp.
1388   // Any additional optimization in this function should be recorded
1389   // in the cost tables.
1390   EVT InVT = Op.getOperand(0).getValueType();
1391   EVT VT = Op.getValueType();
1392
1393   if (VT.getSizeInBits() < InVT.getSizeInBits()) {
1394     SDLoc dl(Op);
1395     SDValue Cv =
1396         DAG.getNode(Op.getOpcode(), dl, InVT.changeVectorElementTypeToInteger(),
1397                     Op.getOperand(0));
1398     return DAG.getNode(ISD::TRUNCATE, dl, VT, Cv);
1399   }
1400
1401   if (VT.getSizeInBits() > InVT.getSizeInBits()) {
1402     SDLoc dl(Op);
1403     SDValue Ext = DAG.getNode(ISD::FP_EXTEND, dl, MVT::v2f64, Op.getOperand(0));
1404     return DAG.getNode(Op.getOpcode(), dl, VT, Ext);
1405   }
1406
1407   // Type changing conversions are illegal.
1408   return Op;
1409 }
1410
1411 SDValue AArch64TargetLowering::LowerFP_TO_INT(SDValue Op,
1412                                               SelectionDAG &DAG) const {
1413   if (Op.getOperand(0).getValueType().isVector())
1414     return LowerVectorFP_TO_INT(Op, DAG);
1415
1416   if (Op.getOperand(0).getValueType() != MVT::f128) {
1417     // It's legal except when f128 is involved
1418     return Op;
1419   }
1420
1421   RTLIB::Libcall LC;
1422   if (Op.getOpcode() == ISD::FP_TO_SINT)
1423     LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(), Op.getValueType());
1424   else
1425     LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(), Op.getValueType());
1426
1427   SmallVector<SDValue, 2> Ops;
1428   for (unsigned i = 0, e = Op->getNumOperands(); i != e; ++i)
1429     Ops.push_back(Op.getOperand(i));
1430
1431   return makeLibCall(DAG, LC, Op.getValueType(), &Ops[0], Ops.size(), false,
1432                      SDLoc(Op)).first;
1433 }
1434
1435 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
1436   // Warning: We maintain cost tables in AArch64TargetTransformInfo.cpp.
1437   // Any additional optimization in this function should be recorded
1438   // in the cost tables.
1439   EVT VT = Op.getValueType();
1440   SDLoc dl(Op);
1441   SDValue In = Op.getOperand(0);
1442   EVT InVT = In.getValueType();
1443
1444   if (VT.getSizeInBits() < InVT.getSizeInBits()) {
1445     MVT CastVT =
1446         MVT::getVectorVT(MVT::getFloatingPointVT(InVT.getScalarSizeInBits()),
1447                          InVT.getVectorNumElements());
1448     In = DAG.getNode(Op.getOpcode(), dl, CastVT, In);
1449     return DAG.getNode(ISD::FP_ROUND, dl, VT, In, DAG.getIntPtrConstant(0));
1450   }
1451
1452   if (VT.getSizeInBits() > InVT.getSizeInBits()) {
1453     unsigned CastOpc =
1454         Op.getOpcode() == ISD::SINT_TO_FP ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
1455     EVT CastVT = VT.changeVectorElementTypeToInteger();
1456     In = DAG.getNode(CastOpc, dl, CastVT, In);
1457     return DAG.getNode(Op.getOpcode(), dl, VT, In);
1458   }
1459
1460   return Op;
1461 }
1462
1463 SDValue AArch64TargetLowering::LowerINT_TO_FP(SDValue Op,
1464                                             SelectionDAG &DAG) const {
1465   if (Op.getValueType().isVector())
1466     return LowerVectorINT_TO_FP(Op, DAG);
1467
1468   // i128 conversions are libcalls.
1469   if (Op.getOperand(0).getValueType() == MVT::i128)
1470     return SDValue();
1471
1472   // Other conversions are legal, unless it's to the completely software-based
1473   // fp128.
1474   if (Op.getValueType() != MVT::f128)
1475     return Op;
1476
1477   RTLIB::Libcall LC;
1478   if (Op.getOpcode() == ISD::SINT_TO_FP)
1479     LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
1480   else
1481     LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
1482
1483   return LowerF128Call(Op, DAG, LC);
1484 }
1485
1486 SDValue AArch64TargetLowering::LowerFSINCOS(SDValue Op,
1487                                             SelectionDAG &DAG) const {
1488   // For iOS, we want to call an alternative entry point: __sincos_stret,
1489   // which returns the values in two S / D registers.
1490   SDLoc dl(Op);
1491   SDValue Arg = Op.getOperand(0);
1492   EVT ArgVT = Arg.getValueType();
1493   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
1494
1495   ArgListTy Args;
1496   ArgListEntry Entry;
1497
1498   Entry.Node = Arg;
1499   Entry.Ty = ArgTy;
1500   Entry.isSExt = false;
1501   Entry.isZExt = false;
1502   Args.push_back(Entry);
1503
1504   const char *LibcallName =
1505       (ArgVT == MVT::f64) ? "__sincos_stret" : "__sincosf_stret";
1506   SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy());
1507
1508   StructType *RetTy = StructType::get(ArgTy, ArgTy, NULL);
1509   TargetLowering::CallLoweringInfo CLI(DAG);
1510   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
1511     .setCallee(CallingConv::Fast, RetTy, Callee, std::move(Args), 0);
1512
1513   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
1514   return CallResult.first;
1515 }
1516
1517 static SDValue LowerBITCAST(SDValue Op, SelectionDAG &DAG) {
1518   if (Op.getValueType() != MVT::f16)
1519     return SDValue();
1520
1521   assert(Op.getOperand(0).getValueType() == MVT::i16);
1522   SDLoc DL(Op);
1523
1524   Op = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, Op.getOperand(0));
1525   Op = DAG.getNode(ISD::BITCAST, DL, MVT::f32, Op);
1526   return SDValue(
1527       DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL, MVT::f16, Op,
1528                          DAG.getTargetConstant(AArch64::hsub, MVT::i32)),
1529       0);
1530 }
1531
1532
1533 SDValue AArch64TargetLowering::LowerOperation(SDValue Op,
1534                                               SelectionDAG &DAG) const {
1535   switch (Op.getOpcode()) {
1536   default:
1537     llvm_unreachable("unimplemented operand");
1538     return SDValue();
1539   case ISD::BITCAST:
1540     return LowerBITCAST(Op, DAG);
1541   case ISD::GlobalAddress:
1542     return LowerGlobalAddress(Op, DAG);
1543   case ISD::GlobalTLSAddress:
1544     return LowerGlobalTLSAddress(Op, DAG);
1545   case ISD::SETCC:
1546     return LowerSETCC(Op, DAG);
1547   case ISD::BR_CC:
1548     return LowerBR_CC(Op, DAG);
1549   case ISD::SELECT:
1550     return LowerSELECT(Op, DAG);
1551   case ISD::SELECT_CC:
1552     return LowerSELECT_CC(Op, DAG);
1553   case ISD::JumpTable:
1554     return LowerJumpTable(Op, DAG);
1555   case ISD::ConstantPool:
1556     return LowerConstantPool(Op, DAG);
1557   case ISD::BlockAddress:
1558     return LowerBlockAddress(Op, DAG);
1559   case ISD::VASTART:
1560     return LowerVASTART(Op, DAG);
1561   case ISD::VACOPY:
1562     return LowerVACOPY(Op, DAG);
1563   case ISD::VAARG:
1564     return LowerVAARG(Op, DAG);
1565   case ISD::ADDC:
1566   case ISD::ADDE:
1567   case ISD::SUBC:
1568   case ISD::SUBE:
1569     return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
1570   case ISD::SADDO:
1571   case ISD::UADDO:
1572   case ISD::SSUBO:
1573   case ISD::USUBO:
1574   case ISD::SMULO:
1575   case ISD::UMULO:
1576     return LowerXALUO(Op, DAG);
1577   case ISD::FADD:
1578     return LowerF128Call(Op, DAG, RTLIB::ADD_F128);
1579   case ISD::FSUB:
1580     return LowerF128Call(Op, DAG, RTLIB::SUB_F128);
1581   case ISD::FMUL:
1582     return LowerF128Call(Op, DAG, RTLIB::MUL_F128);
1583   case ISD::FDIV:
1584     return LowerF128Call(Op, DAG, RTLIB::DIV_F128);
1585   case ISD::FP_ROUND:
1586     return LowerFP_ROUND(Op, DAG);
1587   case ISD::FP_EXTEND:
1588     return LowerFP_EXTEND(Op, DAG);
1589   case ISD::FRAMEADDR:
1590     return LowerFRAMEADDR(Op, DAG);
1591   case ISD::RETURNADDR:
1592     return LowerRETURNADDR(Op, DAG);
1593   case ISD::INSERT_VECTOR_ELT:
1594     return LowerINSERT_VECTOR_ELT(Op, DAG);
1595   case ISD::EXTRACT_VECTOR_ELT:
1596     return LowerEXTRACT_VECTOR_ELT(Op, DAG);
1597   case ISD::BUILD_VECTOR:
1598     return LowerBUILD_VECTOR(Op, DAG);
1599   case ISD::VECTOR_SHUFFLE:
1600     return LowerVECTOR_SHUFFLE(Op, DAG);
1601   case ISD::EXTRACT_SUBVECTOR:
1602     return LowerEXTRACT_SUBVECTOR(Op, DAG);
1603   case ISD::SRA:
1604   case ISD::SRL:
1605   case ISD::SHL:
1606     return LowerVectorSRA_SRL_SHL(Op, DAG);
1607   case ISD::SHL_PARTS:
1608     return LowerShiftLeftParts(Op, DAG);
1609   case ISD::SRL_PARTS:
1610   case ISD::SRA_PARTS:
1611     return LowerShiftRightParts(Op, DAG);
1612   case ISD::CTPOP:
1613     return LowerCTPOP(Op, DAG);
1614   case ISD::FCOPYSIGN:
1615     return LowerFCOPYSIGN(Op, DAG);
1616   case ISD::AND:
1617     return LowerVectorAND(Op, DAG);
1618   case ISD::OR:
1619     return LowerVectorOR(Op, DAG);
1620   case ISD::XOR:
1621     return LowerXOR(Op, DAG);
1622   case ISD::PREFETCH:
1623     return LowerPREFETCH(Op, DAG);
1624   case ISD::SINT_TO_FP:
1625   case ISD::UINT_TO_FP:
1626     return LowerINT_TO_FP(Op, DAG);
1627   case ISD::FP_TO_SINT:
1628   case ISD::FP_TO_UINT:
1629     return LowerFP_TO_INT(Op, DAG);
1630   case ISD::FSINCOS:
1631     return LowerFSINCOS(Op, DAG);
1632   }
1633 }
1634
1635 /// getFunctionAlignment - Return the Log2 alignment of this function.
1636 unsigned AArch64TargetLowering::getFunctionAlignment(const Function *F) const {
1637   return 2;
1638 }
1639
1640 //===----------------------------------------------------------------------===//
1641 //                      Calling Convention Implementation
1642 //===----------------------------------------------------------------------===//
1643
1644 #include "AArch64GenCallingConv.inc"
1645
1646 /// Selects the correct CCAssignFn for a the given CallingConvention
1647 /// value.
1648 CCAssignFn *AArch64TargetLowering::CCAssignFnForCall(CallingConv::ID CC,
1649                                                      bool IsVarArg) const {
1650   switch (CC) {
1651   default:
1652     llvm_unreachable("Unsupported calling convention.");
1653   case CallingConv::WebKit_JS:
1654     return CC_AArch64_WebKit_JS;
1655   case CallingConv::C:
1656   case CallingConv::Fast:
1657     if (!Subtarget->isTargetDarwin())
1658       return CC_AArch64_AAPCS;
1659     return IsVarArg ? CC_AArch64_DarwinPCS_VarArg : CC_AArch64_DarwinPCS;
1660   }
1661 }
1662
1663 SDValue AArch64TargetLowering::LowerFormalArguments(
1664     SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
1665     const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc DL, SelectionDAG &DAG,
1666     SmallVectorImpl<SDValue> &InVals) const {
1667   MachineFunction &MF = DAG.getMachineFunction();
1668   MachineFrameInfo *MFI = MF.getFrameInfo();
1669
1670   // Assign locations to all of the incoming arguments.
1671   SmallVector<CCValAssign, 16> ArgLocs;
1672   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1673                  getTargetMachine(), ArgLocs, *DAG.getContext());
1674
1675   // At this point, Ins[].VT may already be promoted to i32. To correctly
1676   // handle passing i8 as i8 instead of i32 on stack, we pass in both i32 and
1677   // i8 to CC_AArch64_AAPCS with i32 being ValVT and i8 being LocVT.
1678   // Since AnalyzeFormalArguments uses Ins[].VT for both ValVT and LocVT, here
1679   // we use a special version of AnalyzeFormalArguments to pass in ValVT and
1680   // LocVT.
1681   unsigned NumArgs = Ins.size();
1682   Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
1683   unsigned CurArgIdx = 0;
1684   for (unsigned i = 0; i != NumArgs; ++i) {
1685     MVT ValVT = Ins[i].VT;
1686     std::advance(CurOrigArg, Ins[i].OrigArgIndex - CurArgIdx);
1687     CurArgIdx = Ins[i].OrigArgIndex;
1688
1689     // Get type of the original argument.
1690     EVT ActualVT = getValueType(CurOrigArg->getType(), /*AllowUnknown*/ true);
1691     MVT ActualMVT = ActualVT.isSimple() ? ActualVT.getSimpleVT() : MVT::Other;
1692     // If ActualMVT is i1/i8/i16, we should set LocVT to i8/i8/i16.
1693     if (ActualMVT == MVT::i1 || ActualMVT == MVT::i8)
1694       ValVT = MVT::i8;
1695     else if (ActualMVT == MVT::i16)
1696       ValVT = MVT::i16;
1697
1698     CCAssignFn *AssignFn = CCAssignFnForCall(CallConv, /*IsVarArg=*/false);
1699     bool Res =
1700         AssignFn(i, ValVT, ValVT, CCValAssign::Full, Ins[i].Flags, CCInfo);
1701     assert(!Res && "Call operand has unhandled type");
1702     (void)Res;
1703   }
1704   assert(ArgLocs.size() == Ins.size());
1705   SmallVector<SDValue, 16> ArgValues;
1706   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1707     CCValAssign &VA = ArgLocs[i];
1708
1709     if (Ins[i].Flags.isByVal()) {
1710       // Byval is used for HFAs in the PCS, but the system should work in a
1711       // non-compliant manner for larger structs.
1712       EVT PtrTy = getPointerTy();
1713       int Size = Ins[i].Flags.getByValSize();
1714       unsigned NumRegs = (Size + 7) / 8;
1715
1716       // FIXME: This works on big-endian for composite byvals, which are the common
1717       // case. It should also work for fundamental types too.
1718       unsigned FrameIdx =
1719         MFI->CreateFixedObject(8 * NumRegs, VA.getLocMemOffset(), false);
1720       SDValue FrameIdxN = DAG.getFrameIndex(FrameIdx, PtrTy);
1721       InVals.push_back(FrameIdxN);
1722
1723       continue;
1724     }
1725     
1726     if (VA.isRegLoc()) {
1727       // Arguments stored in registers.
1728       EVT RegVT = VA.getLocVT();
1729
1730       SDValue ArgValue;
1731       const TargetRegisterClass *RC;
1732
1733       if (RegVT == MVT::i32)
1734         RC = &AArch64::GPR32RegClass;
1735       else if (RegVT == MVT::i64)
1736         RC = &AArch64::GPR64RegClass;
1737       else if (RegVT == MVT::f16)
1738         RC = &AArch64::FPR16RegClass;
1739       else if (RegVT == MVT::f32)
1740         RC = &AArch64::FPR32RegClass;
1741       else if (RegVT == MVT::f64 || RegVT.is64BitVector())
1742         RC = &AArch64::FPR64RegClass;
1743       else if (RegVT == MVT::f128 || RegVT.is128BitVector())
1744         RC = &AArch64::FPR128RegClass;
1745       else
1746         llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
1747
1748       // Transform the arguments in physical registers into virtual ones.
1749       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
1750       ArgValue = DAG.getCopyFromReg(Chain, DL, Reg, RegVT);
1751
1752       // If this is an 8, 16 or 32-bit value, it is really passed promoted
1753       // to 64 bits.  Insert an assert[sz]ext to capture this, then
1754       // truncate to the right size.
1755       switch (VA.getLocInfo()) {
1756       default:
1757         llvm_unreachable("Unknown loc info!");
1758       case CCValAssign::Full:
1759         break;
1760       case CCValAssign::BCvt:
1761         ArgValue = DAG.getNode(ISD::BITCAST, DL, VA.getValVT(), ArgValue);
1762         break;
1763       case CCValAssign::AExt:
1764       case CCValAssign::SExt:
1765       case CCValAssign::ZExt:
1766         // SelectionDAGBuilder will insert appropriate AssertZExt & AssertSExt
1767         // nodes after our lowering.
1768         assert(RegVT == Ins[i].VT && "incorrect register location selected");
1769         break;
1770       }
1771
1772       InVals.push_back(ArgValue);
1773
1774     } else { // VA.isRegLoc()
1775       assert(VA.isMemLoc() && "CCValAssign is neither reg nor mem");
1776       unsigned ArgOffset = VA.getLocMemOffset();
1777       unsigned ArgSize = VA.getLocVT().getSizeInBits() / 8;
1778
1779       uint32_t BEAlign = 0;
1780       if (ArgSize < 8 && !Subtarget->isLittleEndian())
1781         BEAlign = 8 - ArgSize;
1782
1783       int FI = MFI->CreateFixedObject(ArgSize, ArgOffset + BEAlign, true);
1784
1785       // Create load nodes to retrieve arguments from the stack.
1786       SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1787       SDValue ArgValue;
1788
1789       // For NON_EXTLOAD, generic code in getLoad assert(ValVT == MemVT)
1790       ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
1791       MVT MemVT = VA.getValVT();
1792
1793       switch (VA.getLocInfo()) {
1794       default:
1795         break;
1796       case CCValAssign::BCvt:
1797         MemVT = VA.getLocVT();
1798         break;
1799       case CCValAssign::SExt:
1800         ExtType = ISD::SEXTLOAD;
1801         break;
1802       case CCValAssign::ZExt:
1803         ExtType = ISD::ZEXTLOAD;
1804         break;
1805       case CCValAssign::AExt:
1806         ExtType = ISD::EXTLOAD;
1807         break;
1808       }
1809
1810       ArgValue = DAG.getExtLoad(ExtType, DL, VA.getLocVT(), Chain, FIN,
1811                                 MachinePointerInfo::getFixedStack(FI),
1812                                 MemVT, false, false, false, nullptr);
1813
1814       InVals.push_back(ArgValue);
1815     }
1816   }
1817
1818   // varargs
1819   if (isVarArg) {
1820     if (!Subtarget->isTargetDarwin()) {
1821       // The AAPCS variadic function ABI is identical to the non-variadic
1822       // one. As a result there may be more arguments in registers and we should
1823       // save them for future reference.
1824       saveVarArgRegisters(CCInfo, DAG, DL, Chain);
1825     }
1826
1827     AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>();
1828     // This will point to the next argument passed via stack.
1829     unsigned StackOffset = CCInfo.getNextStackOffset();
1830     // We currently pass all varargs at 8-byte alignment.
1831     StackOffset = ((StackOffset + 7) & ~7);
1832     AFI->setVarArgsStackIndex(MFI->CreateFixedObject(4, StackOffset, true));
1833   }
1834
1835   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
1836   unsigned StackArgSize = CCInfo.getNextStackOffset();
1837   bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
1838   if (DoesCalleeRestoreStack(CallConv, TailCallOpt)) {
1839     // This is a non-standard ABI so by fiat I say we're allowed to make full
1840     // use of the stack area to be popped, which must be aligned to 16 bytes in
1841     // any case:
1842     StackArgSize = RoundUpToAlignment(StackArgSize, 16);
1843
1844     // If we're expected to restore the stack (e.g. fastcc) then we'll be adding
1845     // a multiple of 16.
1846     FuncInfo->setArgumentStackToRestore(StackArgSize);
1847
1848     // This realignment carries over to the available bytes below. Our own
1849     // callers will guarantee the space is free by giving an aligned value to
1850     // CALLSEQ_START.
1851   }
1852   // Even if we're not expected to free up the space, it's useful to know how
1853   // much is there while considering tail calls (because we can reuse it).
1854   FuncInfo->setBytesInStackArgArea(StackArgSize);
1855
1856   return Chain;
1857 }
1858
1859 void AArch64TargetLowering::saveVarArgRegisters(CCState &CCInfo,
1860                                                 SelectionDAG &DAG, SDLoc DL,
1861                                                 SDValue &Chain) const {
1862   MachineFunction &MF = DAG.getMachineFunction();
1863   MachineFrameInfo *MFI = MF.getFrameInfo();
1864   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
1865
1866   SmallVector<SDValue, 8> MemOps;
1867
1868   static const MCPhysReg GPRArgRegs[] = { AArch64::X0, AArch64::X1, AArch64::X2,
1869                                           AArch64::X3, AArch64::X4, AArch64::X5,
1870                                           AArch64::X6, AArch64::X7 };
1871   static const unsigned NumGPRArgRegs = array_lengthof(GPRArgRegs);
1872   unsigned FirstVariadicGPR =
1873       CCInfo.getFirstUnallocated(GPRArgRegs, NumGPRArgRegs);
1874
1875   unsigned GPRSaveSize = 8 * (NumGPRArgRegs - FirstVariadicGPR);
1876   int GPRIdx = 0;
1877   if (GPRSaveSize != 0) {
1878     GPRIdx = MFI->CreateStackObject(GPRSaveSize, 8, false);
1879
1880     SDValue FIN = DAG.getFrameIndex(GPRIdx, getPointerTy());
1881
1882     for (unsigned i = FirstVariadicGPR; i < NumGPRArgRegs; ++i) {
1883       unsigned VReg = MF.addLiveIn(GPRArgRegs[i], &AArch64::GPR64RegClass);
1884       SDValue Val = DAG.getCopyFromReg(Chain, DL, VReg, MVT::i64);
1885       SDValue Store =
1886           DAG.getStore(Val.getValue(1), DL, Val, FIN,
1887                        MachinePointerInfo::getStack(i * 8), false, false, 0);
1888       MemOps.push_back(Store);
1889       FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), FIN,
1890                         DAG.getConstant(8, getPointerTy()));
1891     }
1892   }
1893   FuncInfo->setVarArgsGPRIndex(GPRIdx);
1894   FuncInfo->setVarArgsGPRSize(GPRSaveSize);
1895
1896   if (Subtarget->hasFPARMv8()) {
1897     static const MCPhysReg FPRArgRegs[] = {
1898         AArch64::Q0, AArch64::Q1, AArch64::Q2, AArch64::Q3,
1899         AArch64::Q4, AArch64::Q5, AArch64::Q6, AArch64::Q7};
1900     static const unsigned NumFPRArgRegs = array_lengthof(FPRArgRegs);
1901     unsigned FirstVariadicFPR =
1902         CCInfo.getFirstUnallocated(FPRArgRegs, NumFPRArgRegs);
1903
1904     unsigned FPRSaveSize = 16 * (NumFPRArgRegs - FirstVariadicFPR);
1905     int FPRIdx = 0;
1906     if (FPRSaveSize != 0) {
1907       FPRIdx = MFI->CreateStackObject(FPRSaveSize, 16, false);
1908
1909       SDValue FIN = DAG.getFrameIndex(FPRIdx, getPointerTy());
1910
1911       for (unsigned i = FirstVariadicFPR; i < NumFPRArgRegs; ++i) {
1912         unsigned VReg = MF.addLiveIn(FPRArgRegs[i], &AArch64::FPR128RegClass);
1913         SDValue Val = DAG.getCopyFromReg(Chain, DL, VReg, MVT::f128);
1914
1915         SDValue Store =
1916             DAG.getStore(Val.getValue(1), DL, Val, FIN,
1917                          MachinePointerInfo::getStack(i * 16), false, false, 0);
1918         MemOps.push_back(Store);
1919         FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(), FIN,
1920                           DAG.getConstant(16, getPointerTy()));
1921       }
1922     }
1923     FuncInfo->setVarArgsFPRIndex(FPRIdx);
1924     FuncInfo->setVarArgsFPRSize(FPRSaveSize);
1925   }
1926
1927   if (!MemOps.empty()) {
1928     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
1929   }
1930 }
1931
1932 /// LowerCallResult - Lower the result values of a call into the
1933 /// appropriate copies out of appropriate physical registers.
1934 SDValue AArch64TargetLowering::LowerCallResult(
1935     SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg,
1936     const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc DL, SelectionDAG &DAG,
1937     SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
1938     SDValue ThisVal) const {
1939   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
1940                           ? RetCC_AArch64_WebKit_JS
1941                           : RetCC_AArch64_AAPCS;
1942   // Assign locations to each value returned by this call.
1943   SmallVector<CCValAssign, 16> RVLocs;
1944   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1945                  getTargetMachine(), RVLocs, *DAG.getContext());
1946   CCInfo.AnalyzeCallResult(Ins, RetCC);
1947
1948   // Copy all of the result registers out of their specified physreg.
1949   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1950     CCValAssign VA = RVLocs[i];
1951
1952     // Pass 'this' value directly from the argument to return value, to avoid
1953     // reg unit interference
1954     if (i == 0 && isThisReturn) {
1955       assert(!VA.needsCustom() && VA.getLocVT() == MVT::i64 &&
1956              "unexpected return calling convention register assignment");
1957       InVals.push_back(ThisVal);
1958       continue;
1959     }
1960
1961     SDValue Val =
1962         DAG.getCopyFromReg(Chain, DL, VA.getLocReg(), VA.getLocVT(), InFlag);
1963     Chain = Val.getValue(1);
1964     InFlag = Val.getValue(2);
1965
1966     switch (VA.getLocInfo()) {
1967     default:
1968       llvm_unreachable("Unknown loc info!");
1969     case CCValAssign::Full:
1970       break;
1971     case CCValAssign::BCvt:
1972       Val = DAG.getNode(ISD::BITCAST, DL, VA.getValVT(), Val);
1973       break;
1974     }
1975
1976     InVals.push_back(Val);
1977   }
1978
1979   return Chain;
1980 }
1981
1982 bool AArch64TargetLowering::isEligibleForTailCallOptimization(
1983     SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg,
1984     bool isCalleeStructRet, bool isCallerStructRet,
1985     const SmallVectorImpl<ISD::OutputArg> &Outs,
1986     const SmallVectorImpl<SDValue> &OutVals,
1987     const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG &DAG) const {
1988   // For CallingConv::C this function knows whether the ABI needs
1989   // changing. That's not true for other conventions so they will have to opt in
1990   // manually.
1991   if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1992     return false;
1993
1994   const MachineFunction &MF = DAG.getMachineFunction();
1995   const Function *CallerF = MF.getFunction();
1996   CallingConv::ID CallerCC = CallerF->getCallingConv();
1997   bool CCMatch = CallerCC == CalleeCC;
1998
1999   // Byval parameters hand the function a pointer directly into the stack area
2000   // we want to reuse during a tail call. Working around this *is* possible (see
2001   // X86) but less efficient and uglier in LowerCall.
2002   for (Function::const_arg_iterator i = CallerF->arg_begin(),
2003                                     e = CallerF->arg_end();
2004        i != e; ++i)
2005     if (i->hasByValAttr())
2006       return false;
2007
2008   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2009     if (IsTailCallConvention(CalleeCC) && CCMatch)
2010       return true;
2011     return false;
2012   }
2013
2014   // Now we search for cases where we can use a tail call without changing the
2015   // ABI. Sibcall is used in some places (particularly gcc) to refer to this
2016   // concept.
2017
2018   // I want anyone implementing a new calling convention to think long and hard
2019   // about this assert.
2020   assert((!isVarArg || CalleeCC == CallingConv::C) &&
2021          "Unexpected variadic calling convention");
2022
2023   if (isVarArg && !Outs.empty()) {
2024     // At least two cases here: if caller is fastcc then we can't have any
2025     // memory arguments (we'd be expected to clean up the stack afterwards). If
2026     // caller is C then we could potentially use its argument area.
2027
2028     // FIXME: for now we take the most conservative of these in both cases:
2029     // disallow all variadic memory operands.
2030     SmallVector<CCValAssign, 16> ArgLocs;
2031     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2032                    getTargetMachine(), ArgLocs, *DAG.getContext());
2033
2034     CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForCall(CalleeCC, true));
2035     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2036       if (!ArgLocs[i].isRegLoc())
2037         return false;
2038   }
2039
2040   // If the calling conventions do not match, then we'd better make sure the
2041   // results are returned in the same way as what the caller expects.
2042   if (!CCMatch) {
2043     SmallVector<CCValAssign, 16> RVLocs1;
2044     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2045                     getTargetMachine(), RVLocs1, *DAG.getContext());
2046     CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForCall(CalleeCC, isVarArg));
2047
2048     SmallVector<CCValAssign, 16> RVLocs2;
2049     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2050                     getTargetMachine(), RVLocs2, *DAG.getContext());
2051     CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForCall(CallerCC, isVarArg));
2052
2053     if (RVLocs1.size() != RVLocs2.size())
2054       return false;
2055     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2056       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2057         return false;
2058       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2059         return false;
2060       if (RVLocs1[i].isRegLoc()) {
2061         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2062           return false;
2063       } else {
2064         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2065           return false;
2066       }
2067     }
2068   }
2069
2070   // Nothing more to check if the callee is taking no arguments
2071   if (Outs.empty())
2072     return true;
2073
2074   SmallVector<CCValAssign, 16> ArgLocs;
2075   CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2076                  getTargetMachine(), ArgLocs, *DAG.getContext());
2077
2078   CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForCall(CalleeCC, isVarArg));
2079
2080   const AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
2081
2082   // If the stack arguments for this call would fit into our own save area then
2083   // the call can be made tail.
2084   return CCInfo.getNextStackOffset() <= FuncInfo->getBytesInStackArgArea();
2085 }
2086
2087 SDValue AArch64TargetLowering::addTokenForArgument(SDValue Chain,
2088                                                    SelectionDAG &DAG,
2089                                                    MachineFrameInfo *MFI,
2090                                                    int ClobberedFI) const {
2091   SmallVector<SDValue, 8> ArgChains;
2092   int64_t FirstByte = MFI->getObjectOffset(ClobberedFI);
2093   int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1;
2094
2095   // Include the original chain at the beginning of the list. When this is
2096   // used by target LowerCall hooks, this helps legalize find the
2097   // CALLSEQ_BEGIN node.
2098   ArgChains.push_back(Chain);
2099
2100   // Add a chain value for each stack argument corresponding
2101   for (SDNode::use_iterator U = DAG.getEntryNode().getNode()->use_begin(),
2102                             UE = DAG.getEntryNode().getNode()->use_end();
2103        U != UE; ++U)
2104     if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
2105       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
2106         if (FI->getIndex() < 0) {
2107           int64_t InFirstByte = MFI->getObjectOffset(FI->getIndex());
2108           int64_t InLastByte = InFirstByte;
2109           InLastByte += MFI->getObjectSize(FI->getIndex()) - 1;
2110
2111           if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
2112               (FirstByte <= InFirstByte && InFirstByte <= LastByte))
2113             ArgChains.push_back(SDValue(L, 1));
2114         }
2115
2116   // Build a tokenfactor for all the chains.
2117   return DAG.getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains);
2118 }
2119
2120 bool AArch64TargetLowering::DoesCalleeRestoreStack(CallingConv::ID CallCC,
2121                                                    bool TailCallOpt) const {
2122   return CallCC == CallingConv::Fast && TailCallOpt;
2123 }
2124
2125 bool AArch64TargetLowering::IsTailCallConvention(CallingConv::ID CallCC) const {
2126   return CallCC == CallingConv::Fast;
2127 }
2128
2129 /// LowerCall - Lower a call to a callseq_start + CALL + callseq_end chain,
2130 /// and add input and output parameter nodes.
2131 SDValue
2132 AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI,
2133                                  SmallVectorImpl<SDValue> &InVals) const {
2134   SelectionDAG &DAG = CLI.DAG;
2135   SDLoc &DL = CLI.DL;
2136   SmallVector<ISD::OutputArg, 32> &Outs = CLI.Outs;
2137   SmallVector<SDValue, 32> &OutVals = CLI.OutVals;
2138   SmallVector<ISD::InputArg, 32> &Ins = CLI.Ins;
2139   SDValue Chain = CLI.Chain;
2140   SDValue Callee = CLI.Callee;
2141   bool &IsTailCall = CLI.IsTailCall;
2142   CallingConv::ID CallConv = CLI.CallConv;
2143   bool IsVarArg = CLI.IsVarArg;
2144
2145   MachineFunction &MF = DAG.getMachineFunction();
2146   bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
2147   bool IsThisReturn = false;
2148
2149   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
2150   bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
2151   bool IsSibCall = false;
2152
2153   if (IsTailCall) {
2154     // Check if it's really possible to do a tail call.
2155     IsTailCall = isEligibleForTailCallOptimization(
2156         Callee, CallConv, IsVarArg, IsStructRet,
2157         MF.getFunction()->hasStructRetAttr(), Outs, OutVals, Ins, DAG);
2158     if (!IsTailCall && CLI.CS && CLI.CS->isMustTailCall())
2159       report_fatal_error("failed to perform tail call elimination on a call "
2160                          "site marked musttail");
2161
2162     // A sibling call is one where we're under the usual C ABI and not planning
2163     // to change that but can still do a tail call:
2164     if (!TailCallOpt && IsTailCall)
2165       IsSibCall = true;
2166
2167     if (IsTailCall)
2168       ++NumTailCalls;
2169   }
2170
2171   // Analyze operands of the call, assigning locations to each operand.
2172   SmallVector<CCValAssign, 16> ArgLocs;
2173   CCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(),
2174                  getTargetMachine(), ArgLocs, *DAG.getContext());
2175
2176   if (IsVarArg) {
2177     // Handle fixed and variable vector arguments differently.
2178     // Variable vector arguments always go into memory.
2179     unsigned NumArgs = Outs.size();
2180
2181     for (unsigned i = 0; i != NumArgs; ++i) {
2182       MVT ArgVT = Outs[i].VT;
2183       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
2184       CCAssignFn *AssignFn = CCAssignFnForCall(CallConv,
2185                                                /*IsVarArg=*/ !Outs[i].IsFixed);
2186       bool Res = AssignFn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, CCInfo);
2187       assert(!Res && "Call operand has unhandled type");
2188       (void)Res;
2189     }
2190   } else {
2191     // At this point, Outs[].VT may already be promoted to i32. To correctly
2192     // handle passing i8 as i8 instead of i32 on stack, we pass in both i32 and
2193     // i8 to CC_AArch64_AAPCS with i32 being ValVT and i8 being LocVT.
2194     // Since AnalyzeCallOperands uses Ins[].VT for both ValVT and LocVT, here
2195     // we use a special version of AnalyzeCallOperands to pass in ValVT and
2196     // LocVT.
2197     unsigned NumArgs = Outs.size();
2198     for (unsigned i = 0; i != NumArgs; ++i) {
2199       MVT ValVT = Outs[i].VT;
2200       // Get type of the original argument.
2201       EVT ActualVT = getValueType(CLI.getArgs()[Outs[i].OrigArgIndex].Ty,
2202                                   /*AllowUnknown*/ true);
2203       MVT ActualMVT = ActualVT.isSimple() ? ActualVT.getSimpleVT() : ValVT;
2204       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
2205       // If ActualMVT is i1/i8/i16, we should set LocVT to i8/i8/i16.
2206       if (ActualMVT == MVT::i1 || ActualMVT == MVT::i8)
2207         ValVT = MVT::i8;
2208       else if (ActualMVT == MVT::i16)
2209         ValVT = MVT::i16;
2210
2211       CCAssignFn *AssignFn = CCAssignFnForCall(CallConv, /*IsVarArg=*/false);
2212       bool Res = AssignFn(i, ValVT, ValVT, CCValAssign::Full, ArgFlags, CCInfo);
2213       assert(!Res && "Call operand has unhandled type");
2214       (void)Res;
2215     }
2216   }
2217
2218   // Get a count of how many bytes are to be pushed on the stack.
2219   unsigned NumBytes = CCInfo.getNextStackOffset();
2220
2221   if (IsSibCall) {
2222     // Since we're not changing the ABI to make this a tail call, the memory
2223     // operands are already available in the caller's incoming argument space.
2224     NumBytes = 0;
2225   }
2226
2227   // FPDiff is the byte offset of the call's argument area from the callee's.
2228   // Stores to callee stack arguments will be placed in FixedStackSlots offset
2229   // by this amount for a tail call. In a sibling call it must be 0 because the
2230   // caller will deallocate the entire stack and the callee still expects its
2231   // arguments to begin at SP+0. Completely unused for non-tail calls.
2232   int FPDiff = 0;
2233
2234   if (IsTailCall && !IsSibCall) {
2235     unsigned NumReusableBytes = FuncInfo->getBytesInStackArgArea();
2236
2237     // Since callee will pop argument stack as a tail call, we must keep the
2238     // popped size 16-byte aligned.
2239     NumBytes = RoundUpToAlignment(NumBytes, 16);
2240
2241     // FPDiff will be negative if this tail call requires more space than we
2242     // would automatically have in our incoming argument space. Positive if we
2243     // can actually shrink the stack.
2244     FPDiff = NumReusableBytes - NumBytes;
2245
2246     // The stack pointer must be 16-byte aligned at all times it's used for a
2247     // memory operation, which in practice means at *all* times and in
2248     // particular across call boundaries. Therefore our own arguments started at
2249     // a 16-byte aligned SP and the delta applied for the tail call should
2250     // satisfy the same constraint.
2251     assert(FPDiff % 16 == 0 && "unaligned stack on tail call");
2252   }
2253
2254   // Adjust the stack pointer for the new arguments...
2255   // These operations are automatically eliminated by the prolog/epilog pass
2256   if (!IsSibCall)
2257     Chain =
2258         DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true), DL);
2259
2260   SDValue StackPtr = DAG.getCopyFromReg(Chain, DL, AArch64::SP, getPointerTy());
2261
2262   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2263   SmallVector<SDValue, 8> MemOpChains;
2264
2265   // Walk the register/memloc assignments, inserting copies/loads.
2266   for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size(); i != e;
2267        ++i, ++realArgIdx) {
2268     CCValAssign &VA = ArgLocs[i];
2269     SDValue Arg = OutVals[realArgIdx];
2270     ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
2271
2272     // Promote the value if needed.
2273     switch (VA.getLocInfo()) {
2274     default:
2275       llvm_unreachable("Unknown loc info!");
2276     case CCValAssign::Full:
2277       break;
2278     case CCValAssign::SExt:
2279       Arg = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), Arg);
2280       break;
2281     case CCValAssign::ZExt:
2282       Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Arg);
2283       break;
2284     case CCValAssign::AExt:
2285       if (Outs[realArgIdx].ArgVT == MVT::i1) {
2286         // AAPCS requires i1 to be zero-extended to 8-bits by the caller.
2287         Arg = DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Arg);
2288         Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i8, Arg);
2289       }
2290       Arg = DAG.getNode(ISD::ANY_EXTEND, DL, VA.getLocVT(), Arg);
2291       break;
2292     case CCValAssign::BCvt:
2293       Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
2294       break;
2295     case CCValAssign::FPExt:
2296       Arg = DAG.getNode(ISD::FP_EXTEND, DL, VA.getLocVT(), Arg);
2297       break;
2298     }
2299
2300     if (VA.isRegLoc()) {
2301       if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i64) {
2302         assert(VA.getLocVT() == MVT::i64 &&
2303                "unexpected calling convention register assignment");
2304         assert(!Ins.empty() && Ins[0].VT == MVT::i64 &&
2305                "unexpected use of 'returned'");
2306         IsThisReturn = true;
2307       }
2308       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2309     } else {
2310       assert(VA.isMemLoc());
2311
2312       SDValue DstAddr;
2313       MachinePointerInfo DstInfo;
2314
2315       // FIXME: This works on big-endian for composite byvals, which are the
2316       // common case. It should also work for fundamental types too.
2317       uint32_t BEAlign = 0;
2318       unsigned OpSize = Flags.isByVal() ? Flags.getByValSize() * 8
2319                                         : VA.getLocVT().getSizeInBits();
2320       OpSize = (OpSize + 7) / 8;
2321       if (!Subtarget->isLittleEndian() && !Flags.isByVal()) {
2322         if (OpSize < 8)
2323           BEAlign = 8 - OpSize;
2324       }
2325       unsigned LocMemOffset = VA.getLocMemOffset();
2326       int32_t Offset = LocMemOffset + BEAlign;
2327       SDValue PtrOff = DAG.getIntPtrConstant(Offset);
2328       PtrOff = DAG.getNode(ISD::ADD, DL, getPointerTy(), StackPtr, PtrOff);
2329
2330       if (IsTailCall) {
2331         Offset = Offset + FPDiff;
2332         int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2333
2334         DstAddr = DAG.getFrameIndex(FI, getPointerTy());
2335         DstInfo = MachinePointerInfo::getFixedStack(FI);
2336
2337         // Make sure any stack arguments overlapping with where we're storing
2338         // are loaded before this eventual operation. Otherwise they'll be
2339         // clobbered.
2340         Chain = addTokenForArgument(Chain, DAG, MF.getFrameInfo(), FI);
2341       } else {
2342         SDValue PtrOff = DAG.getIntPtrConstant(Offset);
2343
2344         DstAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), StackPtr, PtrOff);
2345         DstInfo = MachinePointerInfo::getStack(LocMemOffset);
2346       }
2347
2348       if (Outs[i].Flags.isByVal()) {
2349         SDValue SizeNode =
2350             DAG.getConstant(Outs[i].Flags.getByValSize(), MVT::i64);
2351         SDValue Cpy = DAG.getMemcpy(
2352             Chain, DL, DstAddr, Arg, SizeNode, Outs[i].Flags.getByValAlign(),
2353             /*isVolatile = */ false,
2354             /*alwaysInline = */ false, DstInfo, MachinePointerInfo());
2355
2356         MemOpChains.push_back(Cpy);
2357       } else {
2358         // Since we pass i1/i8/i16 as i1/i8/i16 on stack and Arg is already
2359         // promoted to a legal register type i32, we should truncate Arg back to
2360         // i1/i8/i16.
2361         if (VA.getValVT() == MVT::i1 || VA.getValVT() == MVT::i8 ||
2362             VA.getValVT() == MVT::i16)
2363           Arg = DAG.getNode(ISD::TRUNCATE, DL, VA.getValVT(), Arg);
2364
2365         SDValue Store =
2366             DAG.getStore(Chain, DL, Arg, DstAddr, DstInfo, false, false, 0);
2367         MemOpChains.push_back(Store);
2368       }
2369     }
2370   }
2371
2372   if (!MemOpChains.empty())
2373     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOpChains);
2374
2375   // Build a sequence of copy-to-reg nodes chained together with token chain
2376   // and flag operands which copy the outgoing args into the appropriate regs.
2377   SDValue InFlag;
2378   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2379     Chain = DAG.getCopyToReg(Chain, DL, RegsToPass[i].first,
2380                              RegsToPass[i].second, InFlag);
2381     InFlag = Chain.getValue(1);
2382   }
2383
2384   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
2385   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
2386   // node so that legalize doesn't hack it.
2387   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
2388       Subtarget->isTargetMachO()) {
2389     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2390       const GlobalValue *GV = G->getGlobal();
2391       bool InternalLinkage = GV->hasInternalLinkage();
2392       if (InternalLinkage)
2393         Callee = DAG.getTargetGlobalAddress(GV, DL, getPointerTy(), 0, 0);
2394       else {
2395         Callee = DAG.getTargetGlobalAddress(GV, DL, getPointerTy(), 0,
2396                                             AArch64II::MO_GOT);
2397         Callee = DAG.getNode(AArch64ISD::LOADgot, DL, getPointerTy(), Callee);
2398       }
2399     } else if (ExternalSymbolSDNode *S =
2400                    dyn_cast<ExternalSymbolSDNode>(Callee)) {
2401       const char *Sym = S->getSymbol();
2402       Callee =
2403           DAG.getTargetExternalSymbol(Sym, getPointerTy(), AArch64II::MO_GOT);
2404       Callee = DAG.getNode(AArch64ISD::LOADgot, DL, getPointerTy(), Callee);
2405     }
2406   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2407     const GlobalValue *GV = G->getGlobal();
2408     Callee = DAG.getTargetGlobalAddress(GV, DL, getPointerTy(), 0, 0);
2409   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2410     const char *Sym = S->getSymbol();
2411     Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), 0);
2412   }
2413
2414   // We don't usually want to end the call-sequence here because we would tidy
2415   // the frame up *after* the call, however in the ABI-changing tail-call case
2416   // we've carefully laid out the parameters so that when sp is reset they'll be
2417   // in the correct location.
2418   if (IsTailCall && !IsSibCall) {
2419     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2420                                DAG.getIntPtrConstant(0, true), InFlag, DL);
2421     InFlag = Chain.getValue(1);
2422   }
2423
2424   std::vector<SDValue> Ops;
2425   Ops.push_back(Chain);
2426   Ops.push_back(Callee);
2427
2428   if (IsTailCall) {
2429     // Each tail call may have to adjust the stack by a different amount, so
2430     // this information must travel along with the operation for eventual
2431     // consumption by emitEpilogue.
2432     Ops.push_back(DAG.getTargetConstant(FPDiff, MVT::i32));
2433   }
2434
2435   // Add argument registers to the end of the list so that they are known live
2436   // into the call.
2437   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2438     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2439                                   RegsToPass[i].second.getValueType()));
2440
2441   // Add a register mask operand representing the call-preserved registers.
2442   const uint32_t *Mask;
2443   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2444   const AArch64RegisterInfo *ARI =
2445       static_cast<const AArch64RegisterInfo *>(TRI);
2446   if (IsThisReturn) {
2447     // For 'this' returns, use the X0-preserving mask if applicable
2448     Mask = ARI->getThisReturnPreservedMask(CallConv);
2449     if (!Mask) {
2450       IsThisReturn = false;
2451       Mask = ARI->getCallPreservedMask(CallConv);
2452     }
2453   } else
2454     Mask = ARI->getCallPreservedMask(CallConv);
2455
2456   assert(Mask && "Missing call preserved mask for calling convention");
2457   Ops.push_back(DAG.getRegisterMask(Mask));
2458
2459   if (InFlag.getNode())
2460     Ops.push_back(InFlag);
2461
2462   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2463
2464   // If we're doing a tall call, use a TC_RETURN here rather than an
2465   // actual call instruction.
2466   if (IsTailCall)
2467     return DAG.getNode(AArch64ISD::TC_RETURN, DL, NodeTys, Ops);
2468
2469   // Returns a chain and a flag for retval copy to use.
2470   Chain = DAG.getNode(AArch64ISD::CALL, DL, NodeTys, Ops);
2471   InFlag = Chain.getValue(1);
2472
2473   uint64_t CalleePopBytes = DoesCalleeRestoreStack(CallConv, TailCallOpt)
2474                                 ? RoundUpToAlignment(NumBytes, 16)
2475                                 : 0;
2476
2477   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2478                              DAG.getIntPtrConstant(CalleePopBytes, true),
2479                              InFlag, DL);
2480   if (!Ins.empty())
2481     InFlag = Chain.getValue(1);
2482
2483   // Handle result values, copying them out of physregs into vregs that we
2484   // return.
2485   return LowerCallResult(Chain, InFlag, CallConv, IsVarArg, Ins, DL, DAG,
2486                          InVals, IsThisReturn,
2487                          IsThisReturn ? OutVals[0] : SDValue());
2488 }
2489
2490 bool AArch64TargetLowering::CanLowerReturn(
2491     CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
2492     const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context) const {
2493   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
2494                           ? RetCC_AArch64_WebKit_JS
2495                           : RetCC_AArch64_AAPCS;
2496   SmallVector<CCValAssign, 16> RVLocs;
2497   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(), RVLocs, Context);
2498   return CCInfo.CheckReturn(Outs, RetCC);
2499 }
2500
2501 SDValue
2502 AArch64TargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
2503                                    bool isVarArg,
2504                                    const SmallVectorImpl<ISD::OutputArg> &Outs,
2505                                    const SmallVectorImpl<SDValue> &OutVals,
2506                                    SDLoc DL, SelectionDAG &DAG) const {
2507   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
2508                           ? RetCC_AArch64_WebKit_JS
2509                           : RetCC_AArch64_AAPCS;
2510   SmallVector<CCValAssign, 16> RVLocs;
2511   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
2512                  getTargetMachine(), RVLocs, *DAG.getContext());
2513   CCInfo.AnalyzeReturn(Outs, RetCC);
2514
2515   // Copy the result values into the output registers.
2516   SDValue Flag;
2517   SmallVector<SDValue, 4> RetOps(1, Chain);
2518   for (unsigned i = 0, realRVLocIdx = 0; i != RVLocs.size();
2519        ++i, ++realRVLocIdx) {
2520     CCValAssign &VA = RVLocs[i];
2521     assert(VA.isRegLoc() && "Can only return in registers!");
2522     SDValue Arg = OutVals[realRVLocIdx];
2523
2524     switch (VA.getLocInfo()) {
2525     default:
2526       llvm_unreachable("Unknown loc info!");
2527     case CCValAssign::Full:
2528       if (Outs[i].ArgVT == MVT::i1) {
2529         // AAPCS requires i1 to be zero-extended to i8 by the producer of the
2530         // value. This is strictly redundant on Darwin (which uses "zeroext
2531         // i1"), but will be optimised out before ISel.
2532         Arg = DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Arg);
2533         Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Arg);
2534       }
2535       break;
2536     case CCValAssign::BCvt:
2537       Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
2538       break;
2539     }
2540
2541     Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), Arg, Flag);
2542     Flag = Chain.getValue(1);
2543     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
2544   }
2545
2546   RetOps[0] = Chain; // Update chain.
2547
2548   // Add the flag if we have it.
2549   if (Flag.getNode())
2550     RetOps.push_back(Flag);
2551
2552   return DAG.getNode(AArch64ISD::RET_FLAG, DL, MVT::Other, RetOps);
2553 }
2554
2555 //===----------------------------------------------------------------------===//
2556 //  Other Lowering Code
2557 //===----------------------------------------------------------------------===//
2558
2559 SDValue AArch64TargetLowering::LowerGlobalAddress(SDValue Op,
2560                                                   SelectionDAG &DAG) const {
2561   EVT PtrVT = getPointerTy();
2562   SDLoc DL(Op);
2563   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2564   unsigned char OpFlags =
2565       Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
2566
2567   assert(cast<GlobalAddressSDNode>(Op)->getOffset() == 0 &&
2568          "unexpected offset in global node");
2569
2570   // This also catched the large code model case for Darwin.
2571   if ((OpFlags & AArch64II::MO_GOT) != 0) {
2572     SDValue GotAddr = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, OpFlags);
2573     // FIXME: Once remat is capable of dealing with instructions with register
2574     // operands, expand this into two nodes instead of using a wrapper node.
2575     return DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, GotAddr);
2576   }
2577
2578   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2579     const unsigned char MO_NC = AArch64II::MO_NC;
2580     return DAG.getNode(
2581         AArch64ISD::WrapperLarge, DL, PtrVT,
2582         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_G3),
2583         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_G2 | MO_NC),
2584         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_G1 | MO_NC),
2585         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_G0 | MO_NC));
2586   } else {
2587     // Use ADRP/ADD or ADRP/LDR for everything else: the small model on ELF and
2588     // the only correct model on Darwin.
2589     SDValue Hi = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0,
2590                                             OpFlags | AArch64II::MO_PAGE);
2591     unsigned char LoFlags = OpFlags | AArch64II::MO_PAGEOFF | AArch64II::MO_NC;
2592     SDValue Lo = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, LoFlags);
2593
2594     SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
2595     return DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
2596   }
2597 }
2598
2599 /// \brief Convert a TLS address reference into the correct sequence of loads
2600 /// and calls to compute the variable's address (for Darwin, currently) and
2601 /// return an SDValue containing the final node.
2602
2603 /// Darwin only has one TLS scheme which must be capable of dealing with the
2604 /// fully general situation, in the worst case. This means:
2605 ///     + "extern __thread" declaration.
2606 ///     + Defined in a possibly unknown dynamic library.
2607 ///
2608 /// The general system is that each __thread variable has a [3 x i64] descriptor
2609 /// which contains information used by the runtime to calculate the address. The
2610 /// only part of this the compiler needs to know about is the first xword, which
2611 /// contains a function pointer that must be called with the address of the
2612 /// entire descriptor in "x0".
2613 ///
2614 /// Since this descriptor may be in a different unit, in general even the
2615 /// descriptor must be accessed via an indirect load. The "ideal" code sequence
2616 /// is:
2617 ///     adrp x0, _var@TLVPPAGE
2618 ///     ldr x0, [x0, _var@TLVPPAGEOFF]   ; x0 now contains address of descriptor
2619 ///     ldr x1, [x0]                     ; x1 contains 1st entry of descriptor,
2620 ///                                      ; the function pointer
2621 ///     blr x1                           ; Uses descriptor address in x0
2622 ///     ; Address of _var is now in x0.
2623 ///
2624 /// If the address of _var's descriptor *is* known to the linker, then it can
2625 /// change the first "ldr" instruction to an appropriate "add x0, x0, #imm" for
2626 /// a slight efficiency gain.
2627 SDValue
2628 AArch64TargetLowering::LowerDarwinGlobalTLSAddress(SDValue Op,
2629                                                    SelectionDAG &DAG) const {
2630   assert(Subtarget->isTargetDarwin() && "TLS only supported on Darwin");
2631
2632   SDLoc DL(Op);
2633   MVT PtrVT = getPointerTy();
2634   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
2635
2636   SDValue TLVPAddr =
2637       DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
2638   SDValue DescAddr = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, TLVPAddr);
2639
2640   // The first entry in the descriptor is a function pointer that we must call
2641   // to obtain the address of the variable.
2642   SDValue Chain = DAG.getEntryNode();
2643   SDValue FuncTLVGet =
2644       DAG.getLoad(MVT::i64, DL, Chain, DescAddr, MachinePointerInfo::getGOT(),
2645                   false, true, true, 8);
2646   Chain = FuncTLVGet.getValue(1);
2647
2648   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2649   MFI->setAdjustsStack(true);
2650
2651   // TLS calls preserve all registers except those that absolutely must be
2652   // trashed: X0 (it takes an argument), LR (it's a call) and NZCV (let's not be
2653   // silly).
2654   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2655   const AArch64RegisterInfo *ARI =
2656       static_cast<const AArch64RegisterInfo *>(TRI);
2657   const uint32_t *Mask = ARI->getTLSCallPreservedMask();
2658
2659   // Finally, we can make the call. This is just a degenerate version of a
2660   // normal AArch64 call node: x0 takes the address of the descriptor, and
2661   // returns the address of the variable in this thread.
2662   Chain = DAG.getCopyToReg(Chain, DL, AArch64::X0, DescAddr, SDValue());
2663   Chain =
2664       DAG.getNode(AArch64ISD::CALL, DL, DAG.getVTList(MVT::Other, MVT::Glue),
2665                   Chain, FuncTLVGet, DAG.getRegister(AArch64::X0, MVT::i64),
2666                   DAG.getRegisterMask(Mask), Chain.getValue(1));
2667   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Chain.getValue(1));
2668 }
2669
2670 /// When accessing thread-local variables under either the general-dynamic or
2671 /// local-dynamic system, we make a "TLS-descriptor" call. The variable will
2672 /// have a descriptor, accessible via a PC-relative ADRP, and whose first entry
2673 /// is a function pointer to carry out the resolution. This function takes the
2674 /// address of the descriptor in X0 and returns the TPIDR_EL0 offset in X0. All
2675 /// other registers (except LR, NZCV) are preserved.
2676 ///
2677 /// Thus, the ideal call sequence on AArch64 is:
2678 ///
2679 ///     adrp x0, :tlsdesc:thread_var
2680 ///     ldr x8, [x0, :tlsdesc_lo12:thread_var]
2681 ///     add x0, x0, :tlsdesc_lo12:thread_var
2682 ///     .tlsdesccall thread_var
2683 ///     blr x8
2684 ///     (TPIDR_EL0 offset now in x0).
2685 ///
2686 /// The ".tlsdesccall" directive instructs the assembler to insert a particular
2687 /// relocation to help the linker relax this sequence if it turns out to be too
2688 /// conservative.
2689 ///
2690 /// FIXME: we currently produce an extra, duplicated, ADRP instruction, but this
2691 /// is harmless.
2692 SDValue AArch64TargetLowering::LowerELFTLSDescCall(SDValue SymAddr,
2693                                                    SDValue DescAddr, SDLoc DL,
2694                                                    SelectionDAG &DAG) const {
2695   EVT PtrVT = getPointerTy();
2696
2697   // The function we need to call is simply the first entry in the GOT for this
2698   // descriptor, load it in preparation.
2699   SDValue Func = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, SymAddr);
2700
2701   // TLS calls preserve all registers except those that absolutely must be
2702   // trashed: X0 (it takes an argument), LR (it's a call) and NZCV (let's not be
2703   // silly).
2704   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2705   const AArch64RegisterInfo *ARI =
2706       static_cast<const AArch64RegisterInfo *>(TRI);
2707   const uint32_t *Mask = ARI->getTLSCallPreservedMask();
2708
2709   // The function takes only one argument: the address of the descriptor itself
2710   // in X0.
2711   SDValue Glue, Chain;
2712   Chain = DAG.getCopyToReg(DAG.getEntryNode(), DL, AArch64::X0, DescAddr, Glue);
2713   Glue = Chain.getValue(1);
2714
2715   // We're now ready to populate the argument list, as with a normal call:
2716   SmallVector<SDValue, 6> Ops;
2717   Ops.push_back(Chain);
2718   Ops.push_back(Func);
2719   Ops.push_back(SymAddr);
2720   Ops.push_back(DAG.getRegister(AArch64::X0, PtrVT));
2721   Ops.push_back(DAG.getRegisterMask(Mask));
2722   Ops.push_back(Glue);
2723
2724   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2725   Chain = DAG.getNode(AArch64ISD::TLSDESC_CALL, DL, NodeTys, Ops);
2726   Glue = Chain.getValue(1);
2727
2728   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Glue);
2729 }
2730
2731 SDValue
2732 AArch64TargetLowering::LowerELFGlobalTLSAddress(SDValue Op,
2733                                                 SelectionDAG &DAG) const {
2734   assert(Subtarget->isTargetELF() && "This function expects an ELF target");
2735   assert(getTargetMachine().getCodeModel() == CodeModel::Small &&
2736          "ELF TLS only supported in small memory model");
2737   const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
2738
2739   TLSModel::Model Model = getTargetMachine().getTLSModel(GA->getGlobal());
2740
2741   SDValue TPOff;
2742   EVT PtrVT = getPointerTy();
2743   SDLoc DL(Op);
2744   const GlobalValue *GV = GA->getGlobal();
2745
2746   SDValue ThreadBase = DAG.getNode(AArch64ISD::THREAD_POINTER, DL, PtrVT);
2747
2748   if (Model == TLSModel::LocalExec) {
2749     SDValue HiVar = DAG.getTargetGlobalAddress(
2750         GV, DL, PtrVT, 0, AArch64II::MO_TLS | AArch64II::MO_G1);
2751     SDValue LoVar = DAG.getTargetGlobalAddress(
2752         GV, DL, PtrVT, 0,
2753         AArch64II::MO_TLS | AArch64II::MO_G0 | AArch64II::MO_NC);
2754
2755     TPOff = SDValue(DAG.getMachineNode(AArch64::MOVZXi, DL, PtrVT, HiVar,
2756                                        DAG.getTargetConstant(16, MVT::i32)),
2757                     0);
2758     TPOff = SDValue(DAG.getMachineNode(AArch64::MOVKXi, DL, PtrVT, TPOff, LoVar,
2759                                        DAG.getTargetConstant(0, MVT::i32)),
2760                     0);
2761   } else if (Model == TLSModel::InitialExec) {
2762     TPOff = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
2763     TPOff = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, TPOff);
2764   } else if (Model == TLSModel::LocalDynamic) {
2765     // Local-dynamic accesses proceed in two phases. A general-dynamic TLS
2766     // descriptor call against the special symbol _TLS_MODULE_BASE_ to calculate
2767     // the beginning of the module's TLS region, followed by a DTPREL offset
2768     // calculation.
2769
2770     // These accesses will need deduplicating if there's more than one.
2771     AArch64FunctionInfo *MFI =
2772         DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
2773     MFI->incNumLocalDynamicTLSAccesses();
2774
2775     // Accesses used in this sequence go via the TLS descriptor which lives in
2776     // the GOT. Prepare an address we can use to handle this.
2777     SDValue HiDesc = DAG.getTargetExternalSymbol(
2778         "_TLS_MODULE_BASE_", PtrVT, AArch64II::MO_TLS | AArch64II::MO_PAGE);
2779     SDValue LoDesc = DAG.getTargetExternalSymbol(
2780         "_TLS_MODULE_BASE_", PtrVT,
2781         AArch64II::MO_TLS | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
2782
2783     // First argument to the descriptor call is the address of the descriptor
2784     // itself.
2785     SDValue DescAddr = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, HiDesc);
2786     DescAddr = DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, DescAddr, LoDesc);
2787
2788     // The call needs a relocation too for linker relaxation. It doesn't make
2789     // sense to call it MO_PAGE or MO_PAGEOFF though so we need another copy of
2790     // the address.
2791     SDValue SymAddr = DAG.getTargetExternalSymbol("_TLS_MODULE_BASE_", PtrVT,
2792                                                   AArch64II::MO_TLS);
2793
2794     // Now we can calculate the offset from TPIDR_EL0 to this module's
2795     // thread-local area.
2796     TPOff = LowerELFTLSDescCall(SymAddr, DescAddr, DL, DAG);
2797
2798     // Now use :dtprel_whatever: operations to calculate this variable's offset
2799     // in its thread-storage area.
2800     SDValue HiVar = DAG.getTargetGlobalAddress(
2801         GV, DL, MVT::i64, 0, AArch64II::MO_TLS | AArch64II::MO_G1);
2802     SDValue LoVar = DAG.getTargetGlobalAddress(
2803         GV, DL, MVT::i64, 0,
2804         AArch64II::MO_TLS | AArch64II::MO_G0 | AArch64II::MO_NC);
2805
2806     SDValue DTPOff =
2807         SDValue(DAG.getMachineNode(AArch64::MOVZXi, DL, PtrVT, HiVar,
2808                                    DAG.getTargetConstant(16, MVT::i32)),
2809                 0);
2810     DTPOff =
2811         SDValue(DAG.getMachineNode(AArch64::MOVKXi, DL, PtrVT, DTPOff, LoVar,
2812                                    DAG.getTargetConstant(0, MVT::i32)),
2813                 0);
2814
2815     TPOff = DAG.getNode(ISD::ADD, DL, PtrVT, TPOff, DTPOff);
2816   } else if (Model == TLSModel::GeneralDynamic) {
2817     // Accesses used in this sequence go via the TLS descriptor which lives in
2818     // the GOT. Prepare an address we can use to handle this.
2819     SDValue HiDesc = DAG.getTargetGlobalAddress(
2820         GV, DL, PtrVT, 0, AArch64II::MO_TLS | AArch64II::MO_PAGE);
2821     SDValue LoDesc = DAG.getTargetGlobalAddress(
2822         GV, DL, PtrVT, 0,
2823         AArch64II::MO_TLS | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
2824
2825     // First argument to the descriptor call is the address of the descriptor
2826     // itself.
2827     SDValue DescAddr = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, HiDesc);
2828     DescAddr = DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, DescAddr, LoDesc);
2829
2830     // The call needs a relocation too for linker relaxation. It doesn't make
2831     // sense to call it MO_PAGE or MO_PAGEOFF though so we need another copy of
2832     // the address.
2833     SDValue SymAddr =
2834         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
2835
2836     // Finally we can make a call to calculate the offset from tpidr_el0.
2837     TPOff = LowerELFTLSDescCall(SymAddr, DescAddr, DL, DAG);
2838   } else
2839     llvm_unreachable("Unsupported ELF TLS access model");
2840
2841   return DAG.getNode(ISD::ADD, DL, PtrVT, ThreadBase, TPOff);
2842 }
2843
2844 SDValue AArch64TargetLowering::LowerGlobalTLSAddress(SDValue Op,
2845                                                      SelectionDAG &DAG) const {
2846   if (Subtarget->isTargetDarwin())
2847     return LowerDarwinGlobalTLSAddress(Op, DAG);
2848   else if (Subtarget->isTargetELF())
2849     return LowerELFGlobalTLSAddress(Op, DAG);
2850
2851   llvm_unreachable("Unexpected platform trying to use TLS");
2852 }
2853 SDValue AArch64TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
2854   SDValue Chain = Op.getOperand(0);
2855   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
2856   SDValue LHS = Op.getOperand(2);
2857   SDValue RHS = Op.getOperand(3);
2858   SDValue Dest = Op.getOperand(4);
2859   SDLoc dl(Op);
2860
2861   // Handle f128 first, since lowering it will result in comparing the return
2862   // value of a libcall against zero, which is just what the rest of LowerBR_CC
2863   // is expecting to deal with.
2864   if (LHS.getValueType() == MVT::f128) {
2865     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
2866
2867     // If softenSetCCOperands returned a scalar, we need to compare the result
2868     // against zero to select between true and false values.
2869     if (!RHS.getNode()) {
2870       RHS = DAG.getConstant(0, LHS.getValueType());
2871       CC = ISD::SETNE;
2872     }
2873   }
2874
2875   // Optimize {s|u}{add|sub|mul}.with.overflow feeding into a branch
2876   // instruction.
2877   unsigned Opc = LHS.getOpcode();
2878   if (LHS.getResNo() == 1 && isa<ConstantSDNode>(RHS) &&
2879       cast<ConstantSDNode>(RHS)->isOne() &&
2880       (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
2881        Opc == ISD::USUBO || Opc == ISD::SMULO || Opc == ISD::UMULO)) {
2882     assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
2883            "Unexpected condition code.");
2884     // Only lower legal XALUO ops.
2885     if (!DAG.getTargetLoweringInfo().isTypeLegal(LHS->getValueType(0)))
2886       return SDValue();
2887
2888     // The actual operation with overflow check.
2889     AArch64CC::CondCode OFCC;
2890     SDValue Value, Overflow;
2891     std::tie(Value, Overflow) = getAArch64XALUOOp(OFCC, LHS.getValue(0), DAG);
2892
2893     if (CC == ISD::SETNE)
2894       OFCC = getInvertedCondCode(OFCC);
2895     SDValue CCVal = DAG.getConstant(OFCC, MVT::i32);
2896
2897     return DAG.getNode(AArch64ISD::BRCOND, SDLoc(LHS), MVT::Other, Chain, Dest,
2898                        CCVal, Overflow);
2899   }
2900
2901   if (LHS.getValueType().isInteger()) {
2902     assert((LHS.getValueType() == RHS.getValueType()) &&
2903            (LHS.getValueType() == MVT::i32 || LHS.getValueType() == MVT::i64));
2904
2905     // If the RHS of the comparison is zero, we can potentially fold this
2906     // to a specialized branch.
2907     const ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS);
2908     if (RHSC && RHSC->getZExtValue() == 0) {
2909       if (CC == ISD::SETEQ) {
2910         // See if we can use a TBZ to fold in an AND as well.
2911         // TBZ has a smaller branch displacement than CBZ.  If the offset is
2912         // out of bounds, a late MI-layer pass rewrites branches.
2913         // 403.gcc is an example that hits this case.
2914         if (LHS.getOpcode() == ISD::AND &&
2915             isa<ConstantSDNode>(LHS.getOperand(1)) &&
2916             isPowerOf2_64(LHS.getConstantOperandVal(1))) {
2917           SDValue Test = LHS.getOperand(0);
2918           uint64_t Mask = LHS.getConstantOperandVal(1);
2919
2920           // TBZ only operates on i64's, but the ext should be free.
2921           if (Test.getValueType() == MVT::i32)
2922             Test = DAG.getAnyExtOrTrunc(Test, dl, MVT::i64);
2923
2924           return DAG.getNode(AArch64ISD::TBZ, dl, MVT::Other, Chain, Test,
2925                              DAG.getConstant(Log2_64(Mask), MVT::i64), Dest);
2926         }
2927
2928         return DAG.getNode(AArch64ISD::CBZ, dl, MVT::Other, Chain, LHS, Dest);
2929       } else if (CC == ISD::SETNE) {
2930         // See if we can use a TBZ to fold in an AND as well.
2931         // TBZ has a smaller branch displacement than CBZ.  If the offset is
2932         // out of bounds, a late MI-layer pass rewrites branches.
2933         // 403.gcc is an example that hits this case.
2934         if (LHS.getOpcode() == ISD::AND &&
2935             isa<ConstantSDNode>(LHS.getOperand(1)) &&
2936             isPowerOf2_64(LHS.getConstantOperandVal(1))) {
2937           SDValue Test = LHS.getOperand(0);
2938           uint64_t Mask = LHS.getConstantOperandVal(1);
2939
2940           // TBNZ only operates on i64's, but the ext should be free.
2941           if (Test.getValueType() == MVT::i32)
2942             Test = DAG.getAnyExtOrTrunc(Test, dl, MVT::i64);
2943
2944           return DAG.getNode(AArch64ISD::TBNZ, dl, MVT::Other, Chain, Test,
2945                              DAG.getConstant(Log2_64(Mask), MVT::i64), Dest);
2946         }
2947
2948         return DAG.getNode(AArch64ISD::CBNZ, dl, MVT::Other, Chain, LHS, Dest);
2949       }
2950     }
2951
2952     SDValue CCVal;
2953     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
2954     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CCVal,
2955                        Cmp);
2956   }
2957
2958   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
2959
2960   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
2961   // clean.  Some of them require two branches to implement.
2962   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
2963   AArch64CC::CondCode CC1, CC2;
2964   changeFPCCToAArch64CC(CC, CC1, CC2);
2965   SDValue CC1Val = DAG.getConstant(CC1, MVT::i32);
2966   SDValue BR1 =
2967       DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CC1Val, Cmp);
2968   if (CC2 != AArch64CC::AL) {
2969     SDValue CC2Val = DAG.getConstant(CC2, MVT::i32);
2970     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, BR1, Dest, CC2Val,
2971                        Cmp);
2972   }
2973
2974   return BR1;
2975 }
2976
2977 SDValue AArch64TargetLowering::LowerFCOPYSIGN(SDValue Op,
2978                                               SelectionDAG &DAG) const {
2979   EVT VT = Op.getValueType();
2980   SDLoc DL(Op);
2981
2982   SDValue In1 = Op.getOperand(0);
2983   SDValue In2 = Op.getOperand(1);
2984   EVT SrcVT = In2.getValueType();
2985   if (SrcVT != VT) {
2986     if (SrcVT == MVT::f32 && VT == MVT::f64)
2987       In2 = DAG.getNode(ISD::FP_EXTEND, DL, VT, In2);
2988     else if (SrcVT == MVT::f64 && VT == MVT::f32)
2989       In2 = DAG.getNode(ISD::FP_ROUND, DL, VT, In2, DAG.getIntPtrConstant(0));
2990     else
2991       // FIXME: Src type is different, bail out for now. Can VT really be a
2992       // vector type?
2993       return SDValue();
2994   }
2995
2996   EVT VecVT;
2997   EVT EltVT;
2998   SDValue EltMask, VecVal1, VecVal2;
2999   if (VT == MVT::f32 || VT == MVT::v2f32 || VT == MVT::v4f32) {
3000     EltVT = MVT::i32;
3001     VecVT = MVT::v4i32;
3002     EltMask = DAG.getConstant(0x80000000ULL, EltVT);
3003
3004     if (!VT.isVector()) {
3005       VecVal1 = DAG.getTargetInsertSubreg(AArch64::ssub, DL, VecVT,
3006                                           DAG.getUNDEF(VecVT), In1);
3007       VecVal2 = DAG.getTargetInsertSubreg(AArch64::ssub, DL, VecVT,
3008                                           DAG.getUNDEF(VecVT), In2);
3009     } else {
3010       VecVal1 = DAG.getNode(ISD::BITCAST, DL, VecVT, In1);
3011       VecVal2 = DAG.getNode(ISD::BITCAST, DL, VecVT, In2);
3012     }
3013   } else if (VT == MVT::f64 || VT == MVT::v2f64) {
3014     EltVT = MVT::i64;
3015     VecVT = MVT::v2i64;
3016
3017     // We want to materialize a mask with the the high bit set, but the AdvSIMD
3018     // immediate moves cannot materialize that in a single instruction for
3019     // 64-bit elements. Instead, materialize zero and then negate it.
3020     EltMask = DAG.getConstant(0, EltVT);
3021
3022     if (!VT.isVector()) {
3023       VecVal1 = DAG.getTargetInsertSubreg(AArch64::dsub, DL, VecVT,
3024                                           DAG.getUNDEF(VecVT), In1);
3025       VecVal2 = DAG.getTargetInsertSubreg(AArch64::dsub, DL, VecVT,
3026                                           DAG.getUNDEF(VecVT), In2);
3027     } else {
3028       VecVal1 = DAG.getNode(ISD::BITCAST, DL, VecVT, In1);
3029       VecVal2 = DAG.getNode(ISD::BITCAST, DL, VecVT, In2);
3030     }
3031   } else {
3032     llvm_unreachable("Invalid type for copysign!");
3033   }
3034
3035   std::vector<SDValue> BuildVectorOps;
3036   for (unsigned i = 0; i < VecVT.getVectorNumElements(); ++i)
3037     BuildVectorOps.push_back(EltMask);
3038
3039   SDValue BuildVec = DAG.getNode(ISD::BUILD_VECTOR, DL, VecVT, BuildVectorOps);
3040
3041   // If we couldn't materialize the mask above, then the mask vector will be
3042   // the zero vector, and we need to negate it here.
3043   if (VT == MVT::f64 || VT == MVT::v2f64) {
3044     BuildVec = DAG.getNode(ISD::BITCAST, DL, MVT::v2f64, BuildVec);
3045     BuildVec = DAG.getNode(ISD::FNEG, DL, MVT::v2f64, BuildVec);
3046     BuildVec = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, BuildVec);
3047   }
3048
3049   SDValue Sel =
3050       DAG.getNode(AArch64ISD::BIT, DL, VecVT, VecVal1, VecVal2, BuildVec);
3051
3052   if (VT == MVT::f32)
3053     return DAG.getTargetExtractSubreg(AArch64::ssub, DL, VT, Sel);
3054   else if (VT == MVT::f64)
3055     return DAG.getTargetExtractSubreg(AArch64::dsub, DL, VT, Sel);
3056   else
3057     return DAG.getNode(ISD::BITCAST, DL, VT, Sel);
3058 }
3059
3060 SDValue AArch64TargetLowering::LowerCTPOP(SDValue Op, SelectionDAG &DAG) const {
3061   if (DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
3062           AttributeSet::FunctionIndex, Attribute::NoImplicitFloat))
3063     return SDValue();
3064
3065   // While there is no integer popcount instruction, it can
3066   // be more efficiently lowered to the following sequence that uses
3067   // AdvSIMD registers/instructions as long as the copies to/from
3068   // the AdvSIMD registers are cheap.
3069   //  FMOV    D0, X0        // copy 64-bit int to vector, high bits zero'd
3070   //  CNT     V0.8B, V0.8B  // 8xbyte pop-counts
3071   //  ADDV    B0, V0.8B     // sum 8xbyte pop-counts
3072   //  UMOV    X0, V0.B[0]   // copy byte result back to integer reg
3073   SDValue Val = Op.getOperand(0);
3074   SDLoc DL(Op);
3075   EVT VT = Op.getValueType();
3076   SDValue ZeroVec = DAG.getUNDEF(MVT::v8i8);
3077
3078   SDValue VecVal;
3079   if (VT == MVT::i32) {
3080     VecVal = DAG.getNode(ISD::BITCAST, DL, MVT::f32, Val);
3081     VecVal = DAG.getTargetInsertSubreg(AArch64::ssub, DL, MVT::v8i8, ZeroVec,
3082                                        VecVal);
3083   } else {
3084     VecVal = DAG.getNode(ISD::BITCAST, DL, MVT::v8i8, Val);
3085   }
3086
3087   SDValue CtPop = DAG.getNode(ISD::CTPOP, DL, MVT::v8i8, VecVal);
3088   SDValue UaddLV = DAG.getNode(
3089       ISD::INTRINSIC_WO_CHAIN, DL, MVT::i32,
3090       DAG.getConstant(Intrinsic::aarch64_neon_uaddlv, MVT::i32), CtPop);
3091
3092   if (VT == MVT::i64)
3093     UaddLV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, UaddLV);
3094   return UaddLV;
3095 }
3096
3097 SDValue AArch64TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
3098
3099   if (Op.getValueType().isVector())
3100     return LowerVSETCC(Op, DAG);
3101
3102   SDValue LHS = Op.getOperand(0);
3103   SDValue RHS = Op.getOperand(1);
3104   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
3105   SDLoc dl(Op);
3106
3107   // We chose ZeroOrOneBooleanContents, so use zero and one.
3108   EVT VT = Op.getValueType();
3109   SDValue TVal = DAG.getConstant(1, VT);
3110   SDValue FVal = DAG.getConstant(0, VT);
3111
3112   // Handle f128 first, since one possible outcome is a normal integer
3113   // comparison which gets picked up by the next if statement.
3114   if (LHS.getValueType() == MVT::f128) {
3115     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
3116
3117     // If softenSetCCOperands returned a scalar, use it.
3118     if (!RHS.getNode()) {
3119       assert(LHS.getValueType() == Op.getValueType() &&
3120              "Unexpected setcc expansion!");
3121       return LHS;
3122     }
3123   }
3124
3125   if (LHS.getValueType().isInteger()) {
3126     SDValue CCVal;
3127     SDValue Cmp =
3128         getAArch64Cmp(LHS, RHS, ISD::getSetCCInverse(CC, true), CCVal, DAG, dl);
3129
3130     // Note that we inverted the condition above, so we reverse the order of
3131     // the true and false operands here.  This will allow the setcc to be
3132     // matched to a single CSINC instruction.
3133     return DAG.getNode(AArch64ISD::CSEL, dl, VT, FVal, TVal, CCVal, Cmp);
3134   }
3135
3136   // Now we know we're dealing with FP values.
3137   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3138
3139   // If that fails, we'll need to perform an FCMP + CSEL sequence.  Go ahead
3140   // and do the comparison.
3141   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
3142
3143   AArch64CC::CondCode CC1, CC2;
3144   changeFPCCToAArch64CC(CC, CC1, CC2);
3145   if (CC2 == AArch64CC::AL) {
3146     changeFPCCToAArch64CC(ISD::getSetCCInverse(CC, false), CC1, CC2);
3147     SDValue CC1Val = DAG.getConstant(CC1, MVT::i32);
3148
3149     // Note that we inverted the condition above, so we reverse the order of
3150     // the true and false operands here.  This will allow the setcc to be
3151     // matched to a single CSINC instruction.
3152     return DAG.getNode(AArch64ISD::CSEL, dl, VT, FVal, TVal, CC1Val, Cmp);
3153   } else {
3154     // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't
3155     // totally clean.  Some of them require two CSELs to implement.  As is in
3156     // this case, we emit the first CSEL and then emit a second using the output
3157     // of the first as the RHS.  We're effectively OR'ing the two CC's together.
3158
3159     // FIXME: It would be nice if we could match the two CSELs to two CSINCs.
3160     SDValue CC1Val = DAG.getConstant(CC1, MVT::i32);
3161     SDValue CS1 =
3162         DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, FVal, CC1Val, Cmp);
3163
3164     SDValue CC2Val = DAG.getConstant(CC2, MVT::i32);
3165     return DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, CS1, CC2Val, Cmp);
3166   }
3167 }
3168
3169 /// A SELECT_CC operation is really some kind of max or min if both values being
3170 /// compared are, in some sense, equal to the results in either case. However,
3171 /// it is permissible to compare f32 values and produce directly extended f64
3172 /// values.
3173 ///
3174 /// Extending the comparison operands would also be allowed, but is less likely
3175 /// to happen in practice since their use is right here. Note that truncate
3176 /// operations would *not* be semantically equivalent.
3177 static bool selectCCOpsAreFMaxCompatible(SDValue Cmp, SDValue Result) {
3178   if (Cmp == Result)
3179     return true;
3180
3181   ConstantFPSDNode *CCmp = dyn_cast<ConstantFPSDNode>(Cmp);
3182   ConstantFPSDNode *CResult = dyn_cast<ConstantFPSDNode>(Result);
3183   if (CCmp && CResult && Cmp.getValueType() == MVT::f32 &&
3184       Result.getValueType() == MVT::f64) {
3185     bool Lossy;
3186     APFloat CmpVal = CCmp->getValueAPF();
3187     CmpVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &Lossy);
3188     return CResult->getValueAPF().bitwiseIsEqual(CmpVal);
3189   }
3190
3191   return Result->getOpcode() == ISD::FP_EXTEND && Result->getOperand(0) == Cmp;
3192 }
3193
3194 SDValue AArch64TargetLowering::LowerSELECT(SDValue Op,
3195                                            SelectionDAG &DAG) const {
3196   SDValue CC = Op->getOperand(0);
3197   SDValue TVal = Op->getOperand(1);
3198   SDValue FVal = Op->getOperand(2);
3199   SDLoc DL(Op);
3200
3201   unsigned Opc = CC.getOpcode();
3202   // Optimize {s|u}{add|sub|mul}.with.overflow feeding into a select
3203   // instruction.
3204   if (CC.getResNo() == 1 &&
3205       (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
3206        Opc == ISD::USUBO || Opc == ISD::SMULO || Opc == ISD::UMULO)) {
3207     // Only lower legal XALUO ops.
3208     if (!DAG.getTargetLoweringInfo().isTypeLegal(CC->getValueType(0)))
3209       return SDValue();
3210
3211     AArch64CC::CondCode OFCC;
3212     SDValue Value, Overflow;
3213     std::tie(Value, Overflow) = getAArch64XALUOOp(OFCC, CC.getValue(0), DAG);
3214     SDValue CCVal = DAG.getConstant(OFCC, MVT::i32);
3215
3216     return DAG.getNode(AArch64ISD::CSEL, DL, Op.getValueType(), TVal, FVal,
3217                        CCVal, Overflow);
3218   }
3219
3220   if (CC.getOpcode() == ISD::SETCC)
3221     return DAG.getSelectCC(DL, CC.getOperand(0), CC.getOperand(1), TVal, FVal,
3222                            cast<CondCodeSDNode>(CC.getOperand(2))->get());
3223   else
3224     return DAG.getSelectCC(DL, CC, DAG.getConstant(0, CC.getValueType()), TVal,
3225                            FVal, ISD::SETNE);
3226 }
3227
3228 SDValue AArch64TargetLowering::LowerSELECT_CC(SDValue Op,
3229                                               SelectionDAG &DAG) const {
3230   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
3231   SDValue LHS = Op.getOperand(0);
3232   SDValue RHS = Op.getOperand(1);
3233   SDValue TVal = Op.getOperand(2);
3234   SDValue FVal = Op.getOperand(3);
3235   SDLoc dl(Op);
3236
3237   // Handle f128 first, because it will result in a comparison of some RTLIB
3238   // call result against zero.
3239   if (LHS.getValueType() == MVT::f128) {
3240     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
3241
3242     // If softenSetCCOperands returned a scalar, we need to compare the result
3243     // against zero to select between true and false values.
3244     if (!RHS.getNode()) {
3245       RHS = DAG.getConstant(0, LHS.getValueType());
3246       CC = ISD::SETNE;
3247     }
3248   }
3249
3250   // Handle integers first.
3251   if (LHS.getValueType().isInteger()) {
3252     assert((LHS.getValueType() == RHS.getValueType()) &&
3253            (LHS.getValueType() == MVT::i32 || LHS.getValueType() == MVT::i64));
3254
3255     unsigned Opcode = AArch64ISD::CSEL;
3256
3257     // If both the TVal and the FVal are constants, see if we can swap them in
3258     // order to for a CSINV or CSINC out of them.
3259     ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal);
3260     ConstantSDNode *CTVal = dyn_cast<ConstantSDNode>(TVal);
3261
3262     if (CTVal && CFVal && CTVal->isAllOnesValue() && CFVal->isNullValue()) {
3263       std::swap(TVal, FVal);
3264       std::swap(CTVal, CFVal);
3265       CC = ISD::getSetCCInverse(CC, true);
3266     } else if (CTVal && CFVal && CTVal->isOne() && CFVal->isNullValue()) {
3267       std::swap(TVal, FVal);
3268       std::swap(CTVal, CFVal);
3269       CC = ISD::getSetCCInverse(CC, true);
3270     } else if (TVal.getOpcode() == ISD::XOR) {
3271       // If TVal is a NOT we want to swap TVal and FVal so that we can match
3272       // with a CSINV rather than a CSEL.
3273       ConstantSDNode *CVal = dyn_cast<ConstantSDNode>(TVal.getOperand(1));
3274
3275       if (CVal && CVal->isAllOnesValue()) {
3276         std::swap(TVal, FVal);
3277         std::swap(CTVal, CFVal);
3278         CC = ISD::getSetCCInverse(CC, true);
3279       }
3280     } else if (TVal.getOpcode() == ISD::SUB) {
3281       // If TVal is a negation (SUB from 0) we want to swap TVal and FVal so
3282       // that we can match with a CSNEG rather than a CSEL.
3283       ConstantSDNode *CVal = dyn_cast<ConstantSDNode>(TVal.getOperand(0));
3284
3285       if (CVal && CVal->isNullValue()) {
3286         std::swap(TVal, FVal);
3287         std::swap(CTVal, CFVal);
3288         CC = ISD::getSetCCInverse(CC, true);
3289       }
3290     } else if (CTVal && CFVal) {
3291       const int64_t TrueVal = CTVal->getSExtValue();
3292       const int64_t FalseVal = CFVal->getSExtValue();
3293       bool Swap = false;
3294
3295       // If both TVal and FVal are constants, see if FVal is the
3296       // inverse/negation/increment of TVal and generate a CSINV/CSNEG/CSINC
3297       // instead of a CSEL in that case.
3298       if (TrueVal == ~FalseVal) {
3299         Opcode = AArch64ISD::CSINV;
3300       } else if (TrueVal == -FalseVal) {
3301         Opcode = AArch64ISD::CSNEG;
3302       } else if (TVal.getValueType() == MVT::i32) {
3303         // If our operands are only 32-bit wide, make sure we use 32-bit
3304         // arithmetic for the check whether we can use CSINC. This ensures that
3305         // the addition in the check will wrap around properly in case there is
3306         // an overflow (which would not be the case if we do the check with
3307         // 64-bit arithmetic).
3308         const uint32_t TrueVal32 = CTVal->getZExtValue();
3309         const uint32_t FalseVal32 = CFVal->getZExtValue();
3310
3311         if ((TrueVal32 == FalseVal32 + 1) || (TrueVal32 + 1 == FalseVal32)) {
3312           Opcode = AArch64ISD::CSINC;
3313
3314           if (TrueVal32 > FalseVal32) {
3315             Swap = true;
3316           }
3317         }
3318         // 64-bit check whether we can use CSINC.
3319       } else if ((TrueVal == FalseVal + 1) || (TrueVal + 1 == FalseVal)) {
3320         Opcode = AArch64ISD::CSINC;
3321
3322         if (TrueVal > FalseVal) {
3323           Swap = true;
3324         }
3325       }
3326
3327       // Swap TVal and FVal if necessary.
3328       if (Swap) {
3329         std::swap(TVal, FVal);
3330         std::swap(CTVal, CFVal);
3331         CC = ISD::getSetCCInverse(CC, true);
3332       }
3333
3334       if (Opcode != AArch64ISD::CSEL) {
3335         // Drop FVal since we can get its value by simply inverting/negating
3336         // TVal.
3337         FVal = TVal;
3338       }
3339     }
3340
3341     SDValue CCVal;
3342     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
3343
3344     EVT VT = Op.getValueType();
3345     return DAG.getNode(Opcode, dl, VT, TVal, FVal, CCVal, Cmp);
3346   }
3347
3348   // Now we know we're dealing with FP values.
3349   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3350   assert(LHS.getValueType() == RHS.getValueType());
3351   EVT VT = Op.getValueType();
3352
3353   // Try to match this select into a max/min operation, which have dedicated
3354   // opcode in the instruction set.
3355   // FIXME: This is not correct in the presence of NaNs, so we only enable this
3356   // in no-NaNs mode.
3357   if (getTargetMachine().Options.NoNaNsFPMath) {
3358     SDValue MinMaxLHS = TVal, MinMaxRHS = FVal;
3359     if (selectCCOpsAreFMaxCompatible(LHS, MinMaxRHS) &&
3360         selectCCOpsAreFMaxCompatible(RHS, MinMaxLHS)) {
3361       CC = ISD::getSetCCSwappedOperands(CC);
3362       std::swap(MinMaxLHS, MinMaxRHS);
3363     }
3364
3365     if (selectCCOpsAreFMaxCompatible(LHS, MinMaxLHS) &&
3366         selectCCOpsAreFMaxCompatible(RHS, MinMaxRHS)) {
3367       switch (CC) {
3368       default:
3369         break;
3370       case ISD::SETGT:
3371       case ISD::SETGE:
3372       case ISD::SETUGT:
3373       case ISD::SETUGE:
3374       case ISD::SETOGT:
3375       case ISD::SETOGE:
3376         return DAG.getNode(AArch64ISD::FMAX, dl, VT, MinMaxLHS, MinMaxRHS);
3377         break;
3378       case ISD::SETLT:
3379       case ISD::SETLE:
3380       case ISD::SETULT:
3381       case ISD::SETULE:
3382       case ISD::SETOLT:
3383       case ISD::SETOLE:
3384         return DAG.getNode(AArch64ISD::FMIN, dl, VT, MinMaxLHS, MinMaxRHS);
3385         break;
3386       }
3387     }
3388   }
3389
3390   // If that fails, we'll need to perform an FCMP + CSEL sequence.  Go ahead
3391   // and do the comparison.
3392   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
3393
3394   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
3395   // clean.  Some of them require two CSELs to implement.
3396   AArch64CC::CondCode CC1, CC2;
3397   changeFPCCToAArch64CC(CC, CC1, CC2);
3398   SDValue CC1Val = DAG.getConstant(CC1, MVT::i32);
3399   SDValue CS1 = DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, FVal, CC1Val, Cmp);
3400
3401   // If we need a second CSEL, emit it, using the output of the first as the
3402   // RHS.  We're effectively OR'ing the two CC's together.
3403   if (CC2 != AArch64CC::AL) {
3404     SDValue CC2Val = DAG.getConstant(CC2, MVT::i32);
3405     return DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, CS1, CC2Val, Cmp);
3406   }
3407
3408   // Otherwise, return the output of the first CSEL.
3409   return CS1;
3410 }
3411
3412 SDValue AArch64TargetLowering::LowerJumpTable(SDValue Op,
3413                                               SelectionDAG &DAG) const {
3414   // Jump table entries as PC relative offsets. No additional tweaking
3415   // is necessary here. Just get the address of the jump table.
3416   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
3417   EVT PtrVT = getPointerTy();
3418   SDLoc DL(Op);
3419
3420   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
3421       !Subtarget->isTargetMachO()) {
3422     const unsigned char MO_NC = AArch64II::MO_NC;
3423     return DAG.getNode(
3424         AArch64ISD::WrapperLarge, DL, PtrVT,
3425         DAG.getTargetJumpTable(JT->getIndex(), PtrVT, AArch64II::MO_G3),
3426         DAG.getTargetJumpTable(JT->getIndex(), PtrVT, AArch64II::MO_G2 | MO_NC),
3427         DAG.getTargetJumpTable(JT->getIndex(), PtrVT, AArch64II::MO_G1 | MO_NC),
3428         DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
3429                                AArch64II::MO_G0 | MO_NC));
3430   }
3431
3432   SDValue Hi =
3433       DAG.getTargetJumpTable(JT->getIndex(), PtrVT, AArch64II::MO_PAGE);
3434   SDValue Lo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
3435                                       AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3436   SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
3437   return DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
3438 }
3439
3440 SDValue AArch64TargetLowering::LowerConstantPool(SDValue Op,
3441                                                  SelectionDAG &DAG) const {
3442   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
3443   EVT PtrVT = getPointerTy();
3444   SDLoc DL(Op);
3445
3446   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
3447     // Use the GOT for the large code model on iOS.
3448     if (Subtarget->isTargetMachO()) {
3449       SDValue GotAddr = DAG.getTargetConstantPool(
3450           CP->getConstVal(), PtrVT, CP->getAlignment(), CP->getOffset(),
3451           AArch64II::MO_GOT);
3452       return DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, GotAddr);
3453     }
3454
3455     const unsigned char MO_NC = AArch64II::MO_NC;
3456     return DAG.getNode(
3457         AArch64ISD::WrapperLarge, DL, PtrVT,
3458         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
3459                                   CP->getOffset(), AArch64II::MO_G3),
3460         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
3461                                   CP->getOffset(), AArch64II::MO_G2 | MO_NC),
3462         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
3463                                   CP->getOffset(), AArch64II::MO_G1 | MO_NC),
3464         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
3465                                   CP->getOffset(), AArch64II::MO_G0 | MO_NC));
3466   } else {
3467     // Use ADRP/ADD or ADRP/LDR for everything else: the small memory model on
3468     // ELF, the only valid one on Darwin.
3469     SDValue Hi =
3470         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
3471                                   CP->getOffset(), AArch64II::MO_PAGE);
3472     SDValue Lo = DAG.getTargetConstantPool(
3473         CP->getConstVal(), PtrVT, CP->getAlignment(), CP->getOffset(),
3474         AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3475
3476     SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
3477     return DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
3478   }
3479 }
3480
3481 SDValue AArch64TargetLowering::LowerBlockAddress(SDValue Op,
3482                                                SelectionDAG &DAG) const {
3483   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
3484   EVT PtrVT = getPointerTy();
3485   SDLoc DL(Op);
3486   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
3487       !Subtarget->isTargetMachO()) {
3488     const unsigned char MO_NC = AArch64II::MO_NC;
3489     return DAG.getNode(
3490         AArch64ISD::WrapperLarge, DL, PtrVT,
3491         DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G3),
3492         DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G2 | MO_NC),
3493         DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G1 | MO_NC),
3494         DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G0 | MO_NC));
3495   } else {
3496     SDValue Hi = DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_PAGE);
3497     SDValue Lo = DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_PAGEOFF |
3498                                                              AArch64II::MO_NC);
3499     SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
3500     return DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
3501   }
3502 }
3503
3504 SDValue AArch64TargetLowering::LowerDarwin_VASTART(SDValue Op,
3505                                                  SelectionDAG &DAG) const {
3506   AArch64FunctionInfo *FuncInfo =
3507       DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
3508
3509   SDLoc DL(Op);
3510   SDValue FR =
3511       DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(), getPointerTy());
3512   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
3513   return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
3514                       MachinePointerInfo(SV), false, false, 0);
3515 }
3516
3517 SDValue AArch64TargetLowering::LowerAAPCS_VASTART(SDValue Op,
3518                                                 SelectionDAG &DAG) const {
3519   // The layout of the va_list struct is specified in the AArch64 Procedure Call
3520   // Standard, section B.3.
3521   MachineFunction &MF = DAG.getMachineFunction();
3522   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
3523   SDLoc DL(Op);
3524
3525   SDValue Chain = Op.getOperand(0);
3526   SDValue VAList = Op.getOperand(1);
3527   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
3528   SmallVector<SDValue, 4> MemOps;
3529
3530   // void *__stack at offset 0
3531   SDValue Stack =
3532       DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(), getPointerTy());
3533   MemOps.push_back(DAG.getStore(Chain, DL, Stack, VAList,
3534                                 MachinePointerInfo(SV), false, false, 8));
3535
3536   // void *__gr_top at offset 8
3537   int GPRSize = FuncInfo->getVarArgsGPRSize();
3538   if (GPRSize > 0) {
3539     SDValue GRTop, GRTopAddr;
3540
3541     GRTopAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
3542                             DAG.getConstant(8, getPointerTy()));
3543
3544     GRTop = DAG.getFrameIndex(FuncInfo->getVarArgsGPRIndex(), getPointerTy());
3545     GRTop = DAG.getNode(ISD::ADD, DL, getPointerTy(), GRTop,
3546                         DAG.getConstant(GPRSize, getPointerTy()));
3547
3548     MemOps.push_back(DAG.getStore(Chain, DL, GRTop, GRTopAddr,
3549                                   MachinePointerInfo(SV, 8), false, false, 8));
3550   }
3551
3552   // void *__vr_top at offset 16
3553   int FPRSize = FuncInfo->getVarArgsFPRSize();
3554   if (FPRSize > 0) {
3555     SDValue VRTop, VRTopAddr;
3556     VRTopAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
3557                             DAG.getConstant(16, getPointerTy()));
3558
3559     VRTop = DAG.getFrameIndex(FuncInfo->getVarArgsFPRIndex(), getPointerTy());
3560     VRTop = DAG.getNode(ISD::ADD, DL, getPointerTy(), VRTop,
3561                         DAG.getConstant(FPRSize, getPointerTy()));
3562
3563     MemOps.push_back(DAG.getStore(Chain, DL, VRTop, VRTopAddr,
3564                                   MachinePointerInfo(SV, 16), false, false, 8));
3565   }
3566
3567   // int __gr_offs at offset 24
3568   SDValue GROffsAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
3569                                    DAG.getConstant(24, getPointerTy()));
3570   MemOps.push_back(DAG.getStore(Chain, DL, DAG.getConstant(-GPRSize, MVT::i32),
3571                                 GROffsAddr, MachinePointerInfo(SV, 24), false,
3572                                 false, 4));
3573
3574   // int __vr_offs at offset 28
3575   SDValue VROffsAddr = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
3576                                    DAG.getConstant(28, getPointerTy()));
3577   MemOps.push_back(DAG.getStore(Chain, DL, DAG.getConstant(-FPRSize, MVT::i32),
3578                                 VROffsAddr, MachinePointerInfo(SV, 28), false,
3579                                 false, 4));
3580
3581   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
3582 }
3583
3584 SDValue AArch64TargetLowering::LowerVASTART(SDValue Op,
3585                                             SelectionDAG &DAG) const {
3586   return Subtarget->isTargetDarwin() ? LowerDarwin_VASTART(Op, DAG)
3587                                      : LowerAAPCS_VASTART(Op, DAG);
3588 }
3589
3590 SDValue AArch64TargetLowering::LowerVACOPY(SDValue Op,
3591                                            SelectionDAG &DAG) const {
3592   // AAPCS has three pointers and two ints (= 32 bytes), Darwin has single
3593   // pointer.
3594   unsigned VaListSize = Subtarget->isTargetDarwin() ? 8 : 32;
3595   const Value *DestSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
3596   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
3597
3598   return DAG.getMemcpy(Op.getOperand(0), SDLoc(Op), Op.getOperand(1),
3599                        Op.getOperand(2), DAG.getConstant(VaListSize, MVT::i32),
3600                        8, false, false, MachinePointerInfo(DestSV),
3601                        MachinePointerInfo(SrcSV));
3602 }
3603
3604 SDValue AArch64TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
3605   assert(Subtarget->isTargetDarwin() &&
3606          "automatic va_arg instruction only works on Darwin");
3607
3608   const Value *V = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
3609   EVT VT = Op.getValueType();
3610   SDLoc DL(Op);
3611   SDValue Chain = Op.getOperand(0);
3612   SDValue Addr = Op.getOperand(1);
3613   unsigned Align = Op.getConstantOperandVal(3);
3614
3615   SDValue VAList = DAG.getLoad(getPointerTy(), DL, Chain, Addr,
3616                                MachinePointerInfo(V), false, false, false, 0);
3617   Chain = VAList.getValue(1);
3618
3619   if (Align > 8) {
3620     assert(((Align & (Align - 1)) == 0) && "Expected Align to be a power of 2");
3621     VAList = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
3622                          DAG.getConstant(Align - 1, getPointerTy()));
3623     VAList = DAG.getNode(ISD::AND, DL, getPointerTy(), VAList,
3624                          DAG.getConstant(-(int64_t)Align, getPointerTy()));
3625   }
3626
3627   Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
3628   uint64_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
3629
3630   // Scalar integer and FP values smaller than 64 bits are implicitly extended
3631   // up to 64 bits.  At the very least, we have to increase the striding of the
3632   // vaargs list to match this, and for FP values we need to introduce
3633   // FP_ROUND nodes as well.
3634   if (VT.isInteger() && !VT.isVector())
3635     ArgSize = 8;
3636   bool NeedFPTrunc = false;
3637   if (VT.isFloatingPoint() && !VT.isVector() && VT != MVT::f64) {
3638     ArgSize = 8;
3639     NeedFPTrunc = true;
3640   }
3641
3642   // Increment the pointer, VAList, to the next vaarg
3643   SDValue VANext = DAG.getNode(ISD::ADD, DL, getPointerTy(), VAList,
3644                                DAG.getConstant(ArgSize, getPointerTy()));
3645   // Store the incremented VAList to the legalized pointer
3646   SDValue APStore = DAG.getStore(Chain, DL, VANext, Addr, MachinePointerInfo(V),
3647                                  false, false, 0);
3648
3649   // Load the actual argument out of the pointer VAList
3650   if (NeedFPTrunc) {
3651     // Load the value as an f64.
3652     SDValue WideFP = DAG.getLoad(MVT::f64, DL, APStore, VAList,
3653                                  MachinePointerInfo(), false, false, false, 0);
3654     // Round the value down to an f32.
3655     SDValue NarrowFP = DAG.getNode(ISD::FP_ROUND, DL, VT, WideFP.getValue(0),
3656                                    DAG.getIntPtrConstant(1));
3657     SDValue Ops[] = { NarrowFP, WideFP.getValue(1) };
3658     // Merge the rounded value with the chain output of the load.
3659     return DAG.getMergeValues(Ops, DL);
3660   }
3661
3662   return DAG.getLoad(VT, DL, APStore, VAList, MachinePointerInfo(), false,
3663                      false, false, 0);
3664 }
3665
3666 SDValue AArch64TargetLowering::LowerFRAMEADDR(SDValue Op,
3667                                               SelectionDAG &DAG) const {
3668   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3669   MFI->setFrameAddressIsTaken(true);
3670
3671   EVT VT = Op.getValueType();
3672   SDLoc DL(Op);
3673   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
3674   SDValue FrameAddr =
3675       DAG.getCopyFromReg(DAG.getEntryNode(), DL, AArch64::FP, VT);
3676   while (Depth--)
3677     FrameAddr = DAG.getLoad(VT, DL, DAG.getEntryNode(), FrameAddr,
3678                             MachinePointerInfo(), false, false, false, 0);
3679   return FrameAddr;
3680 }
3681
3682 // FIXME? Maybe this could be a TableGen attribute on some registers and
3683 // this table could be generated automatically from RegInfo.
3684 unsigned AArch64TargetLowering::getRegisterByName(const char* RegName,
3685                                                   EVT VT) const {
3686   unsigned Reg = StringSwitch<unsigned>(RegName)
3687                        .Case("sp", AArch64::SP)
3688                        .Default(0);
3689   if (Reg)
3690     return Reg;
3691   report_fatal_error("Invalid register name global variable");
3692 }
3693
3694 SDValue AArch64TargetLowering::LowerRETURNADDR(SDValue Op,
3695                                                SelectionDAG &DAG) const {
3696   MachineFunction &MF = DAG.getMachineFunction();
3697   MachineFrameInfo *MFI = MF.getFrameInfo();
3698   MFI->setReturnAddressIsTaken(true);
3699
3700   EVT VT = Op.getValueType();
3701   SDLoc DL(Op);
3702   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
3703   if (Depth) {
3704     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
3705     SDValue Offset = DAG.getConstant(8, getPointerTy());
3706     return DAG.getLoad(VT, DL, DAG.getEntryNode(),
3707                        DAG.getNode(ISD::ADD, DL, VT, FrameAddr, Offset),
3708                        MachinePointerInfo(), false, false, false, 0);
3709   }
3710
3711   // Return LR, which contains the return address. Mark it an implicit live-in.
3712   unsigned Reg = MF.addLiveIn(AArch64::LR, &AArch64::GPR64RegClass);
3713   return DAG.getCopyFromReg(DAG.getEntryNode(), DL, Reg, VT);
3714 }
3715
3716 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
3717 /// i64 values and take a 2 x i64 value to shift plus a shift amount.
3718 SDValue AArch64TargetLowering::LowerShiftRightParts(SDValue Op,
3719                                                     SelectionDAG &DAG) const {
3720   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
3721   EVT VT = Op.getValueType();
3722   unsigned VTBits = VT.getSizeInBits();
3723   SDLoc dl(Op);
3724   SDValue ShOpLo = Op.getOperand(0);
3725   SDValue ShOpHi = Op.getOperand(1);
3726   SDValue ShAmt = Op.getOperand(2);
3727   SDValue ARMcc;
3728   unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
3729
3730   assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
3731
3732   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64,
3733                                  DAG.getConstant(VTBits, MVT::i64), ShAmt);
3734   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
3735   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64, ShAmt,
3736                                    DAG.getConstant(VTBits, MVT::i64));
3737   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
3738
3739   SDValue Cmp = emitComparison(ExtraShAmt, DAG.getConstant(0, MVT::i64),
3740                                ISD::SETGE, dl, DAG);
3741   SDValue CCVal = DAG.getConstant(AArch64CC::GE, MVT::i32);
3742
3743   SDValue FalseValLo = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
3744   SDValue TrueValLo = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
3745   SDValue Lo =
3746       DAG.getNode(AArch64ISD::CSEL, dl, VT, TrueValLo, FalseValLo, CCVal, Cmp);
3747
3748   // AArch64 shifts larger than the register width are wrapped rather than
3749   // clamped, so we can't just emit "hi >> x".
3750   SDValue FalseValHi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
3751   SDValue TrueValHi = Opc == ISD::SRA
3752                           ? DAG.getNode(Opc, dl, VT, ShOpHi,
3753                                         DAG.getConstant(VTBits - 1, MVT::i64))
3754                           : DAG.getConstant(0, VT);
3755   SDValue Hi =
3756       DAG.getNode(AArch64ISD::CSEL, dl, VT, TrueValHi, FalseValHi, CCVal, Cmp);
3757
3758   SDValue Ops[2] = { Lo, Hi };
3759   return DAG.getMergeValues(Ops, dl);
3760 }
3761
3762 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
3763 /// i64 values and take a 2 x i64 value to shift plus a shift amount.
3764 SDValue AArch64TargetLowering::LowerShiftLeftParts(SDValue Op,
3765                                                  SelectionDAG &DAG) const {
3766   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
3767   EVT VT = Op.getValueType();
3768   unsigned VTBits = VT.getSizeInBits();
3769   SDLoc dl(Op);
3770   SDValue ShOpLo = Op.getOperand(0);
3771   SDValue ShOpHi = Op.getOperand(1);
3772   SDValue ShAmt = Op.getOperand(2);
3773   SDValue ARMcc;
3774
3775   assert(Op.getOpcode() == ISD::SHL_PARTS);
3776   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64,
3777                                  DAG.getConstant(VTBits, MVT::i64), ShAmt);
3778   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
3779   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64, ShAmt,
3780                                    DAG.getConstant(VTBits, MVT::i64));
3781   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
3782   SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
3783
3784   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
3785
3786   SDValue Cmp = emitComparison(ExtraShAmt, DAG.getConstant(0, MVT::i64),
3787                                ISD::SETGE, dl, DAG);
3788   SDValue CCVal = DAG.getConstant(AArch64CC::GE, MVT::i32);
3789   SDValue Hi =
3790       DAG.getNode(AArch64ISD::CSEL, dl, VT, Tmp3, FalseVal, CCVal, Cmp);
3791
3792   // AArch64 shifts of larger than register sizes are wrapped rather than
3793   // clamped, so we can't just emit "lo << a" if a is too big.
3794   SDValue TrueValLo = DAG.getConstant(0, VT);
3795   SDValue FalseValLo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
3796   SDValue Lo =
3797       DAG.getNode(AArch64ISD::CSEL, dl, VT, TrueValLo, FalseValLo, CCVal, Cmp);
3798
3799   SDValue Ops[2] = { Lo, Hi };
3800   return DAG.getMergeValues(Ops, dl);
3801 }
3802
3803 bool AArch64TargetLowering::isOffsetFoldingLegal(
3804     const GlobalAddressSDNode *GA) const {
3805   // The AArch64 target doesn't support folding offsets into global addresses.
3806   return false;
3807 }
3808
3809 bool AArch64TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3810   // We can materialize #0.0 as fmov $Rd, XZR for 64-bit and 32-bit cases.
3811   // FIXME: We should be able to handle f128 as well with a clever lowering.
3812   if (Imm.isPosZero() && (VT == MVT::f64 || VT == MVT::f32))
3813     return true;
3814
3815   if (VT == MVT::f64)
3816     return AArch64_AM::getFP64Imm(Imm) != -1;
3817   else if (VT == MVT::f32)
3818     return AArch64_AM::getFP32Imm(Imm) != -1;
3819   return false;
3820 }
3821
3822 //===----------------------------------------------------------------------===//
3823 //                          AArch64 Optimization Hooks
3824 //===----------------------------------------------------------------------===//
3825
3826 //===----------------------------------------------------------------------===//
3827 //                          AArch64 Inline Assembly Support
3828 //===----------------------------------------------------------------------===//
3829
3830 // Table of Constraints
3831 // TODO: This is the current set of constraints supported by ARM for the
3832 // compiler, not all of them may make sense, e.g. S may be difficult to support.
3833 //
3834 // r - A general register
3835 // w - An FP/SIMD register of some size in the range v0-v31
3836 // x - An FP/SIMD register of some size in the range v0-v15
3837 // I - Constant that can be used with an ADD instruction
3838 // J - Constant that can be used with a SUB instruction
3839 // K - Constant that can be used with a 32-bit logical instruction
3840 // L - Constant that can be used with a 64-bit logical instruction
3841 // M - Constant that can be used as a 32-bit MOV immediate
3842 // N - Constant that can be used as a 64-bit MOV immediate
3843 // Q - A memory reference with base register and no offset
3844 // S - A symbolic address
3845 // Y - Floating point constant zero
3846 // Z - Integer constant zero
3847 //
3848 //   Note that general register operands will be output using their 64-bit x
3849 // register name, whatever the size of the variable, unless the asm operand
3850 // is prefixed by the %w modifier. Floating-point and SIMD register operands
3851 // will be output with the v prefix unless prefixed by the %b, %h, %s, %d or
3852 // %q modifier.
3853
3854 /// getConstraintType - Given a constraint letter, return the type of
3855 /// constraint it is for this target.
3856 AArch64TargetLowering::ConstraintType
3857 AArch64TargetLowering::getConstraintType(const std::string &Constraint) const {
3858   if (Constraint.size() == 1) {
3859     switch (Constraint[0]) {
3860     default:
3861       break;
3862     case 'z':
3863       return C_Other;
3864     case 'x':
3865     case 'w':
3866       return C_RegisterClass;
3867     // An address with a single base register. Due to the way we
3868     // currently handle addresses it is the same as 'r'.
3869     case 'Q':
3870       return C_Memory;
3871     }
3872   }
3873   return TargetLowering::getConstraintType(Constraint);
3874 }
3875
3876 /// Examine constraint type and operand type and determine a weight value.
3877 /// This object must already have been set up with the operand type
3878 /// and the current alternative constraint selected.
3879 TargetLowering::ConstraintWeight
3880 AArch64TargetLowering::getSingleConstraintMatchWeight(
3881     AsmOperandInfo &info, const char *constraint) const {
3882   ConstraintWeight weight = CW_Invalid;
3883   Value *CallOperandVal = info.CallOperandVal;
3884   // If we don't have a value, we can't do a match,
3885   // but allow it at the lowest weight.
3886   if (!CallOperandVal)
3887     return CW_Default;
3888   Type *type = CallOperandVal->getType();
3889   // Look at the constraint type.
3890   switch (*constraint) {
3891   default:
3892     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
3893     break;
3894   case 'x':
3895   case 'w':
3896     if (type->isFloatingPointTy() || type->isVectorTy())
3897       weight = CW_Register;
3898     break;
3899   case 'z':
3900     weight = CW_Constant;
3901     break;
3902   }
3903   return weight;
3904 }
3905
3906 std::pair<unsigned, const TargetRegisterClass *>
3907 AArch64TargetLowering::getRegForInlineAsmConstraint(
3908     const std::string &Constraint, MVT VT) const {
3909   if (Constraint.size() == 1) {
3910     switch (Constraint[0]) {
3911     case 'r':
3912       if (VT.getSizeInBits() == 64)
3913         return std::make_pair(0U, &AArch64::GPR64commonRegClass);
3914       return std::make_pair(0U, &AArch64::GPR32commonRegClass);
3915     case 'w':
3916       if (VT == MVT::f32)
3917         return std::make_pair(0U, &AArch64::FPR32RegClass);
3918       if (VT.getSizeInBits() == 64)
3919         return std::make_pair(0U, &AArch64::FPR64RegClass);
3920       if (VT.getSizeInBits() == 128)
3921         return std::make_pair(0U, &AArch64::FPR128RegClass);
3922       break;
3923     // The instructions that this constraint is designed for can
3924     // only take 128-bit registers so just use that regclass.
3925     case 'x':
3926       if (VT.getSizeInBits() == 128)
3927         return std::make_pair(0U, &AArch64::FPR128_loRegClass);
3928       break;
3929     }
3930   }
3931   if (StringRef("{cc}").equals_lower(Constraint))
3932     return std::make_pair(unsigned(AArch64::NZCV), &AArch64::CCRRegClass);
3933
3934   // Use the default implementation in TargetLowering to convert the register
3935   // constraint into a member of a register class.
3936   std::pair<unsigned, const TargetRegisterClass *> Res;
3937   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
3938
3939   // Not found as a standard register?
3940   if (!Res.second) {
3941     unsigned Size = Constraint.size();
3942     if ((Size == 4 || Size == 5) && Constraint[0] == '{' &&
3943         tolower(Constraint[1]) == 'v' && Constraint[Size - 1] == '}') {
3944       const std::string Reg =
3945           std::string(&Constraint[2], &Constraint[Size - 1]);
3946       int RegNo = atoi(Reg.c_str());
3947       if (RegNo >= 0 && RegNo <= 31) {
3948         // v0 - v31 are aliases of q0 - q31.
3949         // By default we'll emit v0-v31 for this unless there's a modifier where
3950         // we'll emit the correct register as well.
3951         Res.first = AArch64::FPR128RegClass.getRegister(RegNo);
3952         Res.second = &AArch64::FPR128RegClass;
3953       }
3954     }
3955   }
3956
3957   return Res;
3958 }
3959
3960 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
3961 /// vector.  If it is invalid, don't add anything to Ops.
3962 void AArch64TargetLowering::LowerAsmOperandForConstraint(
3963     SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops,
3964     SelectionDAG &DAG) const {
3965   SDValue Result;
3966
3967   // Currently only support length 1 constraints.
3968   if (Constraint.length() != 1)
3969     return;
3970
3971   char ConstraintLetter = Constraint[0];
3972   switch (ConstraintLetter) {
3973   default:
3974     break;
3975
3976   // This set of constraints deal with valid constants for various instructions.
3977   // Validate and return a target constant for them if we can.
3978   case 'z': {
3979     // 'z' maps to xzr or wzr so it needs an input of 0.
3980     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
3981     if (!C || C->getZExtValue() != 0)
3982       return;
3983
3984     if (Op.getValueType() == MVT::i64)
3985       Result = DAG.getRegister(AArch64::XZR, MVT::i64);
3986     else
3987       Result = DAG.getRegister(AArch64::WZR, MVT::i32);
3988     break;
3989   }
3990
3991   case 'I':
3992   case 'J':
3993   case 'K':
3994   case 'L':
3995   case 'M':
3996   case 'N':
3997     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
3998     if (!C)
3999       return;
4000
4001     // Grab the value and do some validation.
4002     uint64_t CVal = C->getZExtValue();
4003     switch (ConstraintLetter) {
4004     // The I constraint applies only to simple ADD or SUB immediate operands:
4005     // i.e. 0 to 4095 with optional shift by 12
4006     // The J constraint applies only to ADD or SUB immediates that would be
4007     // valid when negated, i.e. if [an add pattern] were to be output as a SUB
4008     // instruction [or vice versa], in other words -1 to -4095 with optional
4009     // left shift by 12.
4010     case 'I':
4011       if (isUInt<12>(CVal) || isShiftedUInt<12, 12>(CVal))
4012         break;
4013       return;
4014     case 'J': {
4015       uint64_t NVal = -C->getSExtValue();
4016       if (isUInt<12>(NVal) || isShiftedUInt<12, 12>(NVal))
4017         break;
4018       return;
4019     }
4020     // The K and L constraints apply *only* to logical immediates, including
4021     // what used to be the MOVI alias for ORR (though the MOVI alias has now
4022     // been removed and MOV should be used). So these constraints have to
4023     // distinguish between bit patterns that are valid 32-bit or 64-bit
4024     // "bitmask immediates": for example 0xaaaaaaaa is a valid bimm32 (K), but
4025     // not a valid bimm64 (L) where 0xaaaaaaaaaaaaaaaa would be valid, and vice
4026     // versa.
4027     case 'K':
4028       if (AArch64_AM::isLogicalImmediate(CVal, 32))
4029         break;
4030       return;
4031     case 'L':
4032       if (AArch64_AM::isLogicalImmediate(CVal, 64))
4033         break;
4034       return;
4035     // The M and N constraints are a superset of K and L respectively, for use
4036     // with the MOV (immediate) alias. As well as the logical immediates they
4037     // also match 32 or 64-bit immediates that can be loaded either using a
4038     // *single* MOVZ or MOVN , such as 32-bit 0x12340000, 0x00001234, 0xffffedca
4039     // (M) or 64-bit 0x1234000000000000 (N) etc.
4040     // As a note some of this code is liberally stolen from the asm parser.
4041     case 'M': {
4042       if (!isUInt<32>(CVal))
4043         return;
4044       if (AArch64_AM::isLogicalImmediate(CVal, 32))
4045         break;
4046       if ((CVal & 0xFFFF) == CVal)
4047         break;
4048       if ((CVal & 0xFFFF0000ULL) == CVal)
4049         break;
4050       uint64_t NCVal = ~(uint32_t)CVal;
4051       if ((NCVal & 0xFFFFULL) == NCVal)
4052         break;
4053       if ((NCVal & 0xFFFF0000ULL) == NCVal)
4054         break;
4055       return;
4056     }
4057     case 'N': {
4058       if (AArch64_AM::isLogicalImmediate(CVal, 64))
4059         break;
4060       if ((CVal & 0xFFFFULL) == CVal)
4061         break;
4062       if ((CVal & 0xFFFF0000ULL) == CVal)
4063         break;
4064       if ((CVal & 0xFFFF00000000ULL) == CVal)
4065         break;
4066       if ((CVal & 0xFFFF000000000000ULL) == CVal)
4067         break;
4068       uint64_t NCVal = ~CVal;
4069       if ((NCVal & 0xFFFFULL) == NCVal)
4070         break;
4071       if ((NCVal & 0xFFFF0000ULL) == NCVal)
4072         break;
4073       if ((NCVal & 0xFFFF00000000ULL) == NCVal)
4074         break;
4075       if ((NCVal & 0xFFFF000000000000ULL) == NCVal)
4076         break;
4077       return;
4078     }
4079     default:
4080       return;
4081     }
4082
4083     // All assembler immediates are 64-bit integers.
4084     Result = DAG.getTargetConstant(CVal, MVT::i64);
4085     break;
4086   }
4087
4088   if (Result.getNode()) {
4089     Ops.push_back(Result);
4090     return;
4091   }
4092
4093   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
4094 }
4095
4096 //===----------------------------------------------------------------------===//
4097 //                     AArch64 Advanced SIMD Support
4098 //===----------------------------------------------------------------------===//
4099
4100 /// WidenVector - Given a value in the V64 register class, produce the
4101 /// equivalent value in the V128 register class.
4102 static SDValue WidenVector(SDValue V64Reg, SelectionDAG &DAG) {
4103   EVT VT = V64Reg.getValueType();
4104   unsigned NarrowSize = VT.getVectorNumElements();
4105   MVT EltTy = VT.getVectorElementType().getSimpleVT();
4106   MVT WideTy = MVT::getVectorVT(EltTy, 2 * NarrowSize);
4107   SDLoc DL(V64Reg);
4108
4109   return DAG.getNode(ISD::INSERT_SUBVECTOR, DL, WideTy, DAG.getUNDEF(WideTy),
4110                      V64Reg, DAG.getConstant(0, MVT::i32));
4111 }
4112
4113 /// getExtFactor - Determine the adjustment factor for the position when
4114 /// generating an "extract from vector registers" instruction.
4115 static unsigned getExtFactor(SDValue &V) {
4116   EVT EltType = V.getValueType().getVectorElementType();
4117   return EltType.getSizeInBits() / 8;
4118 }
4119
4120 /// NarrowVector - Given a value in the V128 register class, produce the
4121 /// equivalent value in the V64 register class.
4122 static SDValue NarrowVector(SDValue V128Reg, SelectionDAG &DAG) {
4123   EVT VT = V128Reg.getValueType();
4124   unsigned WideSize = VT.getVectorNumElements();
4125   MVT EltTy = VT.getVectorElementType().getSimpleVT();
4126   MVT NarrowTy = MVT::getVectorVT(EltTy, WideSize / 2);
4127   SDLoc DL(V128Reg);
4128
4129   return DAG.getTargetExtractSubreg(AArch64::dsub, DL, NarrowTy, V128Reg);
4130 }
4131
4132 // Gather data to see if the operation can be modelled as a
4133 // shuffle in combination with VEXTs.
4134 SDValue AArch64TargetLowering::ReconstructShuffle(SDValue Op,
4135                                                   SelectionDAG &DAG) const {
4136   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
4137   SDLoc dl(Op);
4138   EVT VT = Op.getValueType();
4139   unsigned NumElts = VT.getVectorNumElements();
4140
4141   SmallVector<SDValue, 2> SourceVecs;
4142   SmallVector<unsigned, 2> MinElts;
4143   SmallVector<unsigned, 2> MaxElts;
4144
4145   for (unsigned i = 0; i < NumElts; ++i) {
4146     SDValue V = Op.getOperand(i);
4147     if (V.getOpcode() == ISD::UNDEF)
4148       continue;
4149     else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
4150       // A shuffle can only come from building a vector from various
4151       // elements of other vectors.
4152       return SDValue();
4153     }
4154
4155     // Record this extraction against the appropriate vector if possible...
4156     SDValue SourceVec = V.getOperand(0);
4157     unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
4158     bool FoundSource = false;
4159     for (unsigned j = 0; j < SourceVecs.size(); ++j) {
4160       if (SourceVecs[j] == SourceVec) {
4161         if (MinElts[j] > EltNo)
4162           MinElts[j] = EltNo;
4163         if (MaxElts[j] < EltNo)
4164           MaxElts[j] = EltNo;
4165         FoundSource = true;
4166         break;
4167       }
4168     }
4169
4170     // Or record a new source if not...
4171     if (!FoundSource) {
4172       SourceVecs.push_back(SourceVec);
4173       MinElts.push_back(EltNo);
4174       MaxElts.push_back(EltNo);
4175     }
4176   }
4177
4178   // Currently only do something sane when at most two source vectors
4179   // involved.
4180   if (SourceVecs.size() > 2)
4181     return SDValue();
4182
4183   // Find out the smallest element size among result and two sources, and use
4184   // it as element size to build the shuffle_vector.
4185   EVT SmallestEltTy = VT.getVectorElementType();
4186   for (unsigned i = 0; i < SourceVecs.size(); ++i) {
4187     EVT SrcEltTy = SourceVecs[i].getValueType().getVectorElementType();
4188     if (SrcEltTy.bitsLT(SmallestEltTy)) {
4189       SmallestEltTy = SrcEltTy;
4190     }
4191   }
4192   unsigned ResMultiplier =
4193       VT.getVectorElementType().getSizeInBits() / SmallestEltTy.getSizeInBits();
4194   int VEXTOffsets[2] = { 0, 0 };
4195   int OffsetMultipliers[2] = { 1, 1 };
4196   NumElts = VT.getSizeInBits() / SmallestEltTy.getSizeInBits();
4197   EVT ShuffleVT = EVT::getVectorVT(*DAG.getContext(), SmallestEltTy, NumElts);
4198   SDValue ShuffleSrcs[2] = {DAG.getUNDEF(ShuffleVT), DAG.getUNDEF(ShuffleVT)};
4199
4200   // This loop extracts the usage patterns of the source vectors
4201   // and prepares appropriate SDValues for a shuffle if possible.
4202   for (unsigned i = 0; i < SourceVecs.size(); ++i) {
4203     unsigned NumSrcElts = SourceVecs[i].getValueType().getVectorNumElements();
4204     SDValue CurSource = SourceVecs[i];
4205     if (SourceVecs[i].getValueType().getVectorElementType() !=
4206         ShuffleVT.getVectorElementType()) {
4207       // As ShuffleVT holds smallest element size, it may hit here only if
4208       // the element type of SourceVecs is bigger than that of ShuffleVT.
4209       // Adjust the element size of SourceVecs to match ShuffleVT, and record
4210       // the multipliers.
4211       EVT CastVT = EVT::getVectorVT(
4212           *DAG.getContext(), ShuffleVT.getVectorElementType(),
4213           SourceVecs[i].getValueSizeInBits() /
4214               ShuffleVT.getVectorElementType().getSizeInBits());
4215
4216       CurSource = DAG.getNode(ISD::BITCAST, dl, CastVT, SourceVecs[i]);
4217       OffsetMultipliers[i] = CastVT.getVectorNumElements() / NumSrcElts;
4218       NumSrcElts *= OffsetMultipliers[i];
4219       MaxElts[i] *= OffsetMultipliers[i];
4220       MinElts[i] *= OffsetMultipliers[i];
4221     }
4222
4223     if (CurSource.getValueType() == ShuffleVT) {
4224       // No VEXT necessary
4225       ShuffleSrcs[i] = CurSource;
4226       VEXTOffsets[i] = 0;
4227       continue;
4228     } else if (NumSrcElts < NumElts) {
4229       // We can pad out the smaller vector for free, so if it's part of a
4230       // shuffle...
4231       ShuffleSrcs[i] =
4232           DAG.getNode(ISD::CONCAT_VECTORS, dl, ShuffleVT, CurSource,
4233                       DAG.getUNDEF(CurSource.getValueType()));
4234       continue;
4235     }
4236
4237     // Since only 64-bit and 128-bit vectors are legal on ARM and
4238     // we've eliminated the other cases...
4239     assert(NumSrcElts == 2 * NumElts &&
4240            "unexpected vector sizes in ReconstructShuffle");
4241
4242     if (MaxElts[i] - MinElts[i] >= NumElts) {
4243       // Span too large for a VEXT to cope
4244       return SDValue();
4245     }
4246
4247     if (MinElts[i] >= NumElts) {
4248       // The extraction can just take the second half
4249       VEXTOffsets[i] = NumElts;
4250       ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ShuffleVT,
4251                                    CurSource, DAG.getIntPtrConstant(NumElts));
4252     } else if (MaxElts[i] < NumElts) {
4253       // The extraction can just take the first half
4254       VEXTOffsets[i] = 0;
4255       ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ShuffleVT,
4256                                    CurSource, DAG.getIntPtrConstant(0));
4257     } else {
4258       // An actual VEXT is needed
4259       VEXTOffsets[i] = MinElts[i];
4260       SDValue VEXTSrc1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ShuffleVT,
4261                                      CurSource, DAG.getIntPtrConstant(0));
4262       SDValue VEXTSrc2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ShuffleVT,
4263                                      CurSource, DAG.getIntPtrConstant(NumElts));
4264       unsigned Imm = VEXTOffsets[i] * getExtFactor(VEXTSrc1);
4265       ShuffleSrcs[i] = DAG.getNode(AArch64ISD::EXT, dl, ShuffleVT, VEXTSrc1,
4266                                    VEXTSrc2, DAG.getConstant(Imm, MVT::i32));
4267     }
4268   }
4269
4270   SmallVector<int, 8> Mask;
4271   unsigned VTEltSize = VT.getVectorElementType().getSizeInBits();
4272
4273   for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
4274     SDValue Entry = Op.getOperand(i);
4275     int SourceNum = 1;
4276     unsigned LanePartNum = 0;
4277     int ExtractElt;
4278     if (Entry.getOpcode() != ISD::UNDEF) {
4279       // Check how many parts of source lane should be inserted.
4280       SDValue ExtractVec = Entry.getOperand(0);
4281       if (ExtractVec == SourceVecs[0])
4282         SourceNum = 0;
4283       ExtractElt = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue();
4284       unsigned ExtEltSize =
4285           ExtractVec.getValueType().getVectorElementType().getSizeInBits();
4286       unsigned SmallerSize = ExtEltSize < VTEltSize ? ExtEltSize : VTEltSize;
4287       LanePartNum = SmallerSize / SmallestEltTy.getSizeInBits();
4288     }
4289
4290     for (unsigned j = 0; j != ResMultiplier; ++j) {
4291       if (j < LanePartNum)
4292         Mask.push_back(ExtractElt * OffsetMultipliers[SourceNum] +
4293                        NumElts * SourceNum - VEXTOffsets[SourceNum] + j);
4294       else
4295         Mask.push_back(-1);
4296     }
4297   }
4298
4299   // Final check before we try to produce nonsense...
4300   if (isShuffleMaskLegal(Mask, ShuffleVT)) {
4301     SDValue Shuffle = DAG.getVectorShuffle(ShuffleVT, dl, ShuffleSrcs[0],
4302                                            ShuffleSrcs[1], &Mask[0]);
4303     return DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
4304   }
4305
4306   return SDValue();
4307 }
4308
4309 // check if an EXT instruction can handle the shuffle mask when the
4310 // vector sources of the shuffle are the same.
4311 static bool isSingletonEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
4312   unsigned NumElts = VT.getVectorNumElements();
4313
4314   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
4315   if (M[0] < 0)
4316     return false;
4317
4318   Imm = M[0];
4319
4320   // If this is a VEXT shuffle, the immediate value is the index of the first
4321   // element.  The other shuffle indices must be the successive elements after
4322   // the first one.
4323   unsigned ExpectedElt = Imm;
4324   for (unsigned i = 1; i < NumElts; ++i) {
4325     // Increment the expected index.  If it wraps around, just follow it
4326     // back to index zero and keep going.
4327     ++ExpectedElt;
4328     if (ExpectedElt == NumElts)
4329       ExpectedElt = 0;
4330
4331     if (M[i] < 0)
4332       continue; // ignore UNDEF indices
4333     if (ExpectedElt != static_cast<unsigned>(M[i]))
4334       return false;
4335   }
4336
4337   return true;
4338 }
4339
4340 // check if an EXT instruction can handle the shuffle mask when the
4341 // vector sources of the shuffle are different.
4342 static bool isEXTMask(ArrayRef<int> M, EVT VT, bool &ReverseEXT,
4343                       unsigned &Imm) {
4344   // Look for the first non-undef element.
4345   const int *FirstRealElt = std::find_if(M.begin(), M.end(),
4346       [](int Elt) {return Elt >= 0;});
4347
4348   // Benefit form APInt to handle overflow when calculating expected element.
4349   unsigned NumElts = VT.getVectorNumElements();
4350   unsigned MaskBits = APInt(32, NumElts * 2).logBase2();
4351   APInt ExpectedElt = APInt(MaskBits, *FirstRealElt + 1);
4352   // The following shuffle indices must be the successive elements after the
4353   // first real element.
4354   const int *FirstWrongElt = std::find_if(FirstRealElt + 1, M.end(),
4355       [&](int Elt) {return Elt != ExpectedElt++ && Elt != -1;});
4356   if (FirstWrongElt != M.end())
4357     return false;
4358
4359   // The index of an EXT is the first element if it is not UNDEF.
4360   // Watch out for the beginning UNDEFs. The EXT index should be the expected
4361   // value of the first element.  E.g. 
4362   // <-1, -1, 3, ...> is treated as <1, 2, 3, ...>.
4363   // <-1, -1, 0, 1, ...> is treated as <2*NumElts-2, 2*NumElts-1, 0, 1, ...>.
4364   // ExpectedElt is the last mask index plus 1.
4365   Imm = ExpectedElt.getZExtValue();
4366
4367   // There are two difference cases requiring to reverse input vectors.
4368   // For example, for vector <4 x i32> we have the following cases,
4369   // Case 1: shufflevector(<4 x i32>,<4 x i32>,<-1, -1, -1, 0>)
4370   // Case 2: shufflevector(<4 x i32>,<4 x i32>,<-1, -1, 7, 0>)
4371   // For both cases, we finally use mask <5, 6, 7, 0>, which requires
4372   // to reverse two input vectors.
4373   if (Imm < NumElts)
4374     ReverseEXT = true;
4375   else
4376     Imm -= NumElts;
4377
4378   return true;
4379 }
4380
4381 /// isREVMask - Check if a vector shuffle corresponds to a REV
4382 /// instruction with the specified blocksize.  (The order of the elements
4383 /// within each block of the vector is reversed.)
4384 static bool isREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
4385   assert((BlockSize == 16 || BlockSize == 32 || BlockSize == 64) &&
4386          "Only possible block sizes for REV are: 16, 32, 64");
4387
4388   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
4389   if (EltSz == 64)
4390     return false;
4391
4392   unsigned NumElts = VT.getVectorNumElements();
4393   unsigned BlockElts = M[0] + 1;
4394   // If the first shuffle index is UNDEF, be optimistic.
4395   if (M[0] < 0)
4396     BlockElts = BlockSize / EltSz;
4397
4398   if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
4399     return false;
4400
4401   for (unsigned i = 0; i < NumElts; ++i) {
4402     if (M[i] < 0)
4403       continue; // ignore UNDEF indices
4404     if ((unsigned)M[i] != (i - i % BlockElts) + (BlockElts - 1 - i % BlockElts))
4405       return false;
4406   }
4407
4408   return true;
4409 }
4410
4411 static bool isZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4412   unsigned NumElts = VT.getVectorNumElements();
4413   WhichResult = (M[0] == 0 ? 0 : 1);
4414   unsigned Idx = WhichResult * NumElts / 2;
4415   for (unsigned i = 0; i != NumElts; i += 2) {
4416     if ((M[i] >= 0 && (unsigned)M[i] != Idx) ||
4417         (M[i + 1] >= 0 && (unsigned)M[i + 1] != Idx + NumElts))
4418       return false;
4419     Idx += 1;
4420   }
4421
4422   return true;
4423 }
4424
4425 static bool isUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4426   unsigned NumElts = VT.getVectorNumElements();
4427   WhichResult = (M[0] == 0 ? 0 : 1);
4428   for (unsigned i = 0; i != NumElts; ++i) {
4429     if (M[i] < 0)
4430       continue; // ignore UNDEF indices
4431     if ((unsigned)M[i] != 2 * i + WhichResult)
4432       return false;
4433   }
4434
4435   return true;
4436 }
4437
4438 static bool isTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4439   unsigned NumElts = VT.getVectorNumElements();
4440   WhichResult = (M[0] == 0 ? 0 : 1);
4441   for (unsigned i = 0; i < NumElts; i += 2) {
4442     if ((M[i] >= 0 && (unsigned)M[i] != i + WhichResult) ||
4443         (M[i + 1] >= 0 && (unsigned)M[i + 1] != i + NumElts + WhichResult))
4444       return false;
4445   }
4446   return true;
4447 }
4448
4449 /// isZIP_v_undef_Mask - Special case of isZIPMask for canonical form of
4450 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4451 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
4452 static bool isZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4453   unsigned NumElts = VT.getVectorNumElements();
4454   WhichResult = (M[0] == 0 ? 0 : 1);
4455   unsigned Idx = WhichResult * NumElts / 2;
4456   for (unsigned i = 0; i != NumElts; i += 2) {
4457     if ((M[i] >= 0 && (unsigned)M[i] != Idx) ||
4458         (M[i + 1] >= 0 && (unsigned)M[i + 1] != Idx))
4459       return false;
4460     Idx += 1;
4461   }
4462
4463   return true;
4464 }
4465
4466 /// isUZP_v_undef_Mask - Special case of isUZPMask for canonical form of
4467 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4468 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
4469 static bool isUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4470   unsigned Half = VT.getVectorNumElements() / 2;
4471   WhichResult = (M[0] == 0 ? 0 : 1);
4472   for (unsigned j = 0; j != 2; ++j) {
4473     unsigned Idx = WhichResult;
4474     for (unsigned i = 0; i != Half; ++i) {
4475       int MIdx = M[i + j * Half];
4476       if (MIdx >= 0 && (unsigned)MIdx != Idx)
4477         return false;
4478       Idx += 2;
4479     }
4480   }
4481
4482   return true;
4483 }
4484
4485 /// isTRN_v_undef_Mask - Special case of isTRNMask for canonical form of
4486 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
4487 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
4488 static bool isTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
4489   unsigned NumElts = VT.getVectorNumElements();
4490   WhichResult = (M[0] == 0 ? 0 : 1);
4491   for (unsigned i = 0; i < NumElts; i += 2) {
4492     if ((M[i] >= 0 && (unsigned)M[i] != i + WhichResult) ||
4493         (M[i + 1] >= 0 && (unsigned)M[i + 1] != i + WhichResult))
4494       return false;
4495   }
4496   return true;
4497 }
4498
4499 static bool isINSMask(ArrayRef<int> M, int NumInputElements,
4500                       bool &DstIsLeft, int &Anomaly) {
4501   if (M.size() != static_cast<size_t>(NumInputElements))
4502     return false;
4503
4504   int NumLHSMatch = 0, NumRHSMatch = 0;
4505   int LastLHSMismatch = -1, LastRHSMismatch = -1;
4506
4507   for (int i = 0; i < NumInputElements; ++i) {
4508     if (M[i] == -1) {
4509       ++NumLHSMatch;
4510       ++NumRHSMatch;
4511       continue;
4512     }
4513
4514     if (M[i] == i)
4515       ++NumLHSMatch;
4516     else
4517       LastLHSMismatch = i;
4518
4519     if (M[i] == i + NumInputElements)
4520       ++NumRHSMatch;
4521     else
4522       LastRHSMismatch = i;
4523   }
4524
4525   if (NumLHSMatch == NumInputElements - 1) {
4526     DstIsLeft = true;
4527     Anomaly = LastLHSMismatch;
4528     return true;
4529   } else if (NumRHSMatch == NumInputElements - 1) {
4530     DstIsLeft = false;
4531     Anomaly = LastRHSMismatch;
4532     return true;
4533   }
4534
4535   return false;
4536 }
4537
4538 static bool isConcatMask(ArrayRef<int> Mask, EVT VT, bool SplitLHS) {
4539   if (VT.getSizeInBits() != 128)
4540     return false;
4541
4542   unsigned NumElts = VT.getVectorNumElements();
4543
4544   for (int I = 0, E = NumElts / 2; I != E; I++) {
4545     if (Mask[I] != I)
4546       return false;
4547   }
4548
4549   int Offset = NumElts / 2;
4550   for (int I = NumElts / 2, E = NumElts; I != E; I++) {
4551     if (Mask[I] != I + SplitLHS * Offset)
4552       return false;
4553   }
4554
4555   return true;
4556 }
4557
4558 static SDValue tryFormConcatFromShuffle(SDValue Op, SelectionDAG &DAG) {
4559   SDLoc DL(Op);
4560   EVT VT = Op.getValueType();
4561   SDValue V0 = Op.getOperand(0);
4562   SDValue V1 = Op.getOperand(1);
4563   ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op)->getMask();
4564
4565   if (VT.getVectorElementType() != V0.getValueType().getVectorElementType() ||
4566       VT.getVectorElementType() != V1.getValueType().getVectorElementType())
4567     return SDValue();
4568
4569   bool SplitV0 = V0.getValueType().getSizeInBits() == 128;
4570
4571   if (!isConcatMask(Mask, VT, SplitV0))
4572     return SDValue();
4573
4574   EVT CastVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
4575                                 VT.getVectorNumElements() / 2);
4576   if (SplitV0) {
4577     V0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, CastVT, V0,
4578                      DAG.getConstant(0, MVT::i64));
4579   }
4580   if (V1.getValueType().getSizeInBits() == 128) {
4581     V1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, CastVT, V1,
4582                      DAG.getConstant(0, MVT::i64));
4583   }
4584   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, V0, V1);
4585 }
4586
4587 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
4588 /// the specified operations to build the shuffle.
4589 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
4590                                       SDValue RHS, SelectionDAG &DAG,
4591                                       SDLoc dl) {
4592   unsigned OpNum = (PFEntry >> 26) & 0x0F;
4593   unsigned LHSID = (PFEntry >> 13) & ((1 << 13) - 1);
4594   unsigned RHSID = (PFEntry >> 0) & ((1 << 13) - 1);
4595
4596   enum {
4597     OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
4598     OP_VREV,
4599     OP_VDUP0,
4600     OP_VDUP1,
4601     OP_VDUP2,
4602     OP_VDUP3,
4603     OP_VEXT1,
4604     OP_VEXT2,
4605     OP_VEXT3,
4606     OP_VUZPL, // VUZP, left result
4607     OP_VUZPR, // VUZP, right result
4608     OP_VZIPL, // VZIP, left result
4609     OP_VZIPR, // VZIP, right result
4610     OP_VTRNL, // VTRN, left result
4611     OP_VTRNR  // VTRN, right result
4612   };
4613
4614   if (OpNum == OP_COPY) {
4615     if (LHSID == (1 * 9 + 2) * 9 + 3)
4616       return LHS;
4617     assert(LHSID == ((4 * 9 + 5) * 9 + 6) * 9 + 7 && "Illegal OP_COPY!");
4618     return RHS;
4619   }
4620
4621   SDValue OpLHS, OpRHS;
4622   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
4623   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
4624   EVT VT = OpLHS.getValueType();
4625
4626   switch (OpNum) {
4627   default:
4628     llvm_unreachable("Unknown shuffle opcode!");
4629   case OP_VREV:
4630     // VREV divides the vector in half and swaps within the half.
4631     if (VT.getVectorElementType() == MVT::i32 ||
4632         VT.getVectorElementType() == MVT::f32)
4633       return DAG.getNode(AArch64ISD::REV64, dl, VT, OpLHS);
4634     // vrev <4 x i16> -> REV32
4635     if (VT.getVectorElementType() == MVT::i16)
4636       return DAG.getNode(AArch64ISD::REV32, dl, VT, OpLHS);
4637     // vrev <4 x i8> -> REV16
4638     assert(VT.getVectorElementType() == MVT::i8);
4639     return DAG.getNode(AArch64ISD::REV16, dl, VT, OpLHS);
4640   case OP_VDUP0:
4641   case OP_VDUP1:
4642   case OP_VDUP2:
4643   case OP_VDUP3: {
4644     EVT EltTy = VT.getVectorElementType();
4645     unsigned Opcode;
4646     if (EltTy == MVT::i8)
4647       Opcode = AArch64ISD::DUPLANE8;
4648     else if (EltTy == MVT::i16)
4649       Opcode = AArch64ISD::DUPLANE16;
4650     else if (EltTy == MVT::i32 || EltTy == MVT::f32)
4651       Opcode = AArch64ISD::DUPLANE32;
4652     else if (EltTy == MVT::i64 || EltTy == MVT::f64)
4653       Opcode = AArch64ISD::DUPLANE64;
4654     else
4655       llvm_unreachable("Invalid vector element type?");
4656
4657     if (VT.getSizeInBits() == 64)
4658       OpLHS = WidenVector(OpLHS, DAG);
4659     SDValue Lane = DAG.getConstant(OpNum - OP_VDUP0, MVT::i64);
4660     return DAG.getNode(Opcode, dl, VT, OpLHS, Lane);
4661   }
4662   case OP_VEXT1:
4663   case OP_VEXT2:
4664   case OP_VEXT3: {
4665     unsigned Imm = (OpNum - OP_VEXT1 + 1) * getExtFactor(OpLHS);
4666     return DAG.getNode(AArch64ISD::EXT, dl, VT, OpLHS, OpRHS,
4667                        DAG.getConstant(Imm, MVT::i32));
4668   }
4669   case OP_VUZPL:
4670     return DAG.getNode(AArch64ISD::UZP1, dl, DAG.getVTList(VT, VT), OpLHS,
4671                        OpRHS);
4672   case OP_VUZPR:
4673     return DAG.getNode(AArch64ISD::UZP2, dl, DAG.getVTList(VT, VT), OpLHS,
4674                        OpRHS);
4675   case OP_VZIPL:
4676     return DAG.getNode(AArch64ISD::ZIP1, dl, DAG.getVTList(VT, VT), OpLHS,
4677                        OpRHS);
4678   case OP_VZIPR:
4679     return DAG.getNode(AArch64ISD::ZIP2, dl, DAG.getVTList(VT, VT), OpLHS,
4680                        OpRHS);
4681   case OP_VTRNL:
4682     return DAG.getNode(AArch64ISD::TRN1, dl, DAG.getVTList(VT, VT), OpLHS,
4683                        OpRHS);
4684   case OP_VTRNR:
4685     return DAG.getNode(AArch64ISD::TRN2, dl, DAG.getVTList(VT, VT), OpLHS,
4686                        OpRHS);
4687   }
4688 }
4689
4690 static SDValue GenerateTBL(SDValue Op, ArrayRef<int> ShuffleMask,
4691                            SelectionDAG &DAG) {
4692   // Check to see if we can use the TBL instruction.
4693   SDValue V1 = Op.getOperand(0);
4694   SDValue V2 = Op.getOperand(1);
4695   SDLoc DL(Op);
4696
4697   EVT EltVT = Op.getValueType().getVectorElementType();
4698   unsigned BytesPerElt = EltVT.getSizeInBits() / 8;
4699
4700   SmallVector<SDValue, 8> TBLMask;
4701   for (int Val : ShuffleMask) {
4702     for (unsigned Byte = 0; Byte < BytesPerElt; ++Byte) {
4703       unsigned Offset = Byte + Val * BytesPerElt;
4704       TBLMask.push_back(DAG.getConstant(Offset, MVT::i32));
4705     }
4706   }
4707
4708   MVT IndexVT = MVT::v8i8;
4709   unsigned IndexLen = 8;
4710   if (Op.getValueType().getSizeInBits() == 128) {
4711     IndexVT = MVT::v16i8;
4712     IndexLen = 16;
4713   }
4714
4715   SDValue V1Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V1);
4716   SDValue V2Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V2);
4717
4718   SDValue Shuffle;
4719   if (V2.getNode()->getOpcode() == ISD::UNDEF) {
4720     if (IndexLen == 8)
4721       V1Cst = DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v16i8, V1Cst, V1Cst);
4722     Shuffle = DAG.getNode(
4723         ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
4724         DAG.getConstant(Intrinsic::aarch64_neon_tbl1, MVT::i32), V1Cst,
4725         DAG.getNode(ISD::BUILD_VECTOR, DL, IndexVT,
4726                     makeArrayRef(TBLMask.data(), IndexLen)));
4727   } else {
4728     if (IndexLen == 8) {
4729       V1Cst = DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v16i8, V1Cst, V2Cst);
4730       Shuffle = DAG.getNode(
4731           ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
4732           DAG.getConstant(Intrinsic::aarch64_neon_tbl1, MVT::i32), V1Cst,
4733           DAG.getNode(ISD::BUILD_VECTOR, DL, IndexVT,
4734                       makeArrayRef(TBLMask.data(), IndexLen)));
4735     } else {
4736       // FIXME: We cannot, for the moment, emit a TBL2 instruction because we
4737       // cannot currently represent the register constraints on the input
4738       // table registers.
4739       //  Shuffle = DAG.getNode(AArch64ISD::TBL2, DL, IndexVT, V1Cst, V2Cst,
4740       //                   DAG.getNode(ISD::BUILD_VECTOR, DL, IndexVT,
4741       //                               &TBLMask[0], IndexLen));
4742       Shuffle = DAG.getNode(
4743           ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
4744           DAG.getConstant(Intrinsic::aarch64_neon_tbl2, MVT::i32), V1Cst, V2Cst,
4745           DAG.getNode(ISD::BUILD_VECTOR, DL, IndexVT,
4746                       makeArrayRef(TBLMask.data(), IndexLen)));
4747     }
4748   }
4749   return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Shuffle);
4750 }
4751
4752 static unsigned getDUPLANEOp(EVT EltType) {
4753   if (EltType == MVT::i8)
4754     return AArch64ISD::DUPLANE8;
4755   if (EltType == MVT::i16)
4756     return AArch64ISD::DUPLANE16;
4757   if (EltType == MVT::i32 || EltType == MVT::f32)
4758     return AArch64ISD::DUPLANE32;
4759   if (EltType == MVT::i64 || EltType == MVT::f64)
4760     return AArch64ISD::DUPLANE64;
4761
4762   llvm_unreachable("Invalid vector element type?");
4763 }
4764
4765 SDValue AArch64TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
4766                                                    SelectionDAG &DAG) const {
4767   SDLoc dl(Op);
4768   EVT VT = Op.getValueType();
4769
4770   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
4771
4772   // Convert shuffles that are directly supported on NEON to target-specific
4773   // DAG nodes, instead of keeping them as shuffles and matching them again
4774   // during code selection.  This is more efficient and avoids the possibility
4775   // of inconsistencies between legalization and selection.
4776   ArrayRef<int> ShuffleMask = SVN->getMask();
4777
4778   SDValue V1 = Op.getOperand(0);
4779   SDValue V2 = Op.getOperand(1);
4780
4781   if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0],
4782                                        V1.getValueType().getSimpleVT())) {
4783     int Lane = SVN->getSplatIndex();
4784     // If this is undef splat, generate it via "just" vdup, if possible.
4785     if (Lane == -1)
4786       Lane = 0;
4787
4788     if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR)
4789       return DAG.getNode(AArch64ISD::DUP, dl, V1.getValueType(),
4790                          V1.getOperand(0));
4791     // Test if V1 is a BUILD_VECTOR and the lane being referenced is a non-
4792     // constant. If so, we can just reference the lane's definition directly.
4793     if (V1.getOpcode() == ISD::BUILD_VECTOR &&
4794         !isa<ConstantSDNode>(V1.getOperand(Lane)))
4795       return DAG.getNode(AArch64ISD::DUP, dl, VT, V1.getOperand(Lane));
4796
4797     // Otherwise, duplicate from the lane of the input vector.
4798     unsigned Opcode = getDUPLANEOp(V1.getValueType().getVectorElementType());
4799
4800     // SelectionDAGBuilder may have "helpfully" already extracted or conatenated
4801     // to make a vector of the same size as this SHUFFLE. We can ignore the
4802     // extract entirely, and canonicalise the concat using WidenVector.
4803     if (V1.getOpcode() == ISD::EXTRACT_SUBVECTOR) {
4804       Lane += cast<ConstantSDNode>(V1.getOperand(1))->getZExtValue();
4805       V1 = V1.getOperand(0);
4806     } else if (V1.getOpcode() == ISD::CONCAT_VECTORS) {
4807       unsigned Idx = Lane >= (int)VT.getVectorNumElements() / 2;
4808       Lane -= Idx * VT.getVectorNumElements() / 2;
4809       V1 = WidenVector(V1.getOperand(Idx), DAG);
4810     } else if (VT.getSizeInBits() == 64)
4811       V1 = WidenVector(V1, DAG);
4812
4813     return DAG.getNode(Opcode, dl, VT, V1, DAG.getConstant(Lane, MVT::i64));
4814   }
4815
4816   if (isREVMask(ShuffleMask, VT, 64))
4817     return DAG.getNode(AArch64ISD::REV64, dl, V1.getValueType(), V1, V2);
4818   if (isREVMask(ShuffleMask, VT, 32))
4819     return DAG.getNode(AArch64ISD::REV32, dl, V1.getValueType(), V1, V2);
4820   if (isREVMask(ShuffleMask, VT, 16))
4821     return DAG.getNode(AArch64ISD::REV16, dl, V1.getValueType(), V1, V2);
4822
4823   bool ReverseEXT = false;
4824   unsigned Imm;
4825   if (isEXTMask(ShuffleMask, VT, ReverseEXT, Imm)) {
4826     if (ReverseEXT)
4827       std::swap(V1, V2);
4828     Imm *= getExtFactor(V1);
4829     return DAG.getNode(AArch64ISD::EXT, dl, V1.getValueType(), V1, V2,
4830                        DAG.getConstant(Imm, MVT::i32));
4831   } else if (V2->getOpcode() == ISD::UNDEF &&
4832              isSingletonEXTMask(ShuffleMask, VT, Imm)) {
4833     Imm *= getExtFactor(V1);
4834     return DAG.getNode(AArch64ISD::EXT, dl, V1.getValueType(), V1, V1,
4835                        DAG.getConstant(Imm, MVT::i32));
4836   }
4837
4838   unsigned WhichResult;
4839   if (isZIPMask(ShuffleMask, VT, WhichResult)) {
4840     unsigned Opc = (WhichResult == 0) ? AArch64ISD::ZIP1 : AArch64ISD::ZIP2;
4841     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
4842   }
4843   if (isUZPMask(ShuffleMask, VT, WhichResult)) {
4844     unsigned Opc = (WhichResult == 0) ? AArch64ISD::UZP1 : AArch64ISD::UZP2;
4845     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
4846   }
4847   if (isTRNMask(ShuffleMask, VT, WhichResult)) {
4848     unsigned Opc = (WhichResult == 0) ? AArch64ISD::TRN1 : AArch64ISD::TRN2;
4849     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
4850   }
4851
4852   if (isZIP_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
4853     unsigned Opc = (WhichResult == 0) ? AArch64ISD::ZIP1 : AArch64ISD::ZIP2;
4854     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
4855   }
4856   if (isUZP_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
4857     unsigned Opc = (WhichResult == 0) ? AArch64ISD::UZP1 : AArch64ISD::UZP2;
4858     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
4859   }
4860   if (isTRN_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
4861     unsigned Opc = (WhichResult == 0) ? AArch64ISD::TRN1 : AArch64ISD::TRN2;
4862     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
4863   }
4864
4865   SDValue Concat = tryFormConcatFromShuffle(Op, DAG);
4866   if (Concat.getNode())
4867     return Concat;
4868
4869   bool DstIsLeft;
4870   int Anomaly;
4871   int NumInputElements = V1.getValueType().getVectorNumElements();
4872   if (isINSMask(ShuffleMask, NumInputElements, DstIsLeft, Anomaly)) {
4873     SDValue DstVec = DstIsLeft ? V1 : V2;
4874     SDValue DstLaneV = DAG.getConstant(Anomaly, MVT::i64);
4875
4876     SDValue SrcVec = V1;
4877     int SrcLane = ShuffleMask[Anomaly];
4878     if (SrcLane >= NumInputElements) {
4879       SrcVec = V2;
4880       SrcLane -= VT.getVectorNumElements();
4881     }
4882     SDValue SrcLaneV = DAG.getConstant(SrcLane, MVT::i64);
4883
4884     EVT ScalarVT = VT.getVectorElementType();
4885     if (ScalarVT.getSizeInBits() < 32)
4886       ScalarVT = MVT::i32;
4887
4888     return DAG.getNode(
4889         ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
4890         DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ScalarVT, SrcVec, SrcLaneV),
4891         DstLaneV);
4892   }
4893
4894   // If the shuffle is not directly supported and it has 4 elements, use
4895   // the PerfectShuffle-generated table to synthesize it from other shuffles.
4896   unsigned NumElts = VT.getVectorNumElements();
4897   if (NumElts == 4) {
4898     unsigned PFIndexes[4];
4899     for (unsigned i = 0; i != 4; ++i) {
4900       if (ShuffleMask[i] < 0)
4901         PFIndexes[i] = 8;
4902       else
4903         PFIndexes[i] = ShuffleMask[i];
4904     }
4905
4906     // Compute the index in the perfect shuffle table.
4907     unsigned PFTableIndex = PFIndexes[0] * 9 * 9 * 9 + PFIndexes[1] * 9 * 9 +
4908                             PFIndexes[2] * 9 + PFIndexes[3];
4909     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
4910     unsigned Cost = (PFEntry >> 30);
4911
4912     if (Cost <= 4)
4913       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
4914   }
4915
4916   return GenerateTBL(Op, ShuffleMask, DAG);
4917 }
4918
4919 static bool resolveBuildVector(BuildVectorSDNode *BVN, APInt &CnstBits,
4920                                APInt &UndefBits) {
4921   EVT VT = BVN->getValueType(0);
4922   APInt SplatBits, SplatUndef;
4923   unsigned SplatBitSize;
4924   bool HasAnyUndefs;
4925   if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
4926     unsigned NumSplats = VT.getSizeInBits() / SplatBitSize;
4927
4928     for (unsigned i = 0; i < NumSplats; ++i) {
4929       CnstBits <<= SplatBitSize;
4930       UndefBits <<= SplatBitSize;
4931       CnstBits |= SplatBits.zextOrTrunc(VT.getSizeInBits());
4932       UndefBits |= (SplatBits ^ SplatUndef).zextOrTrunc(VT.getSizeInBits());
4933     }
4934
4935     return true;
4936   }
4937
4938   return false;
4939 }
4940
4941 SDValue AArch64TargetLowering::LowerVectorAND(SDValue Op,
4942                                               SelectionDAG &DAG) const {
4943   BuildVectorSDNode *BVN =
4944       dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode());
4945   SDValue LHS = Op.getOperand(0);
4946   SDLoc dl(Op);
4947   EVT VT = Op.getValueType();
4948
4949   if (!BVN)
4950     return Op;
4951
4952   APInt CnstBits(VT.getSizeInBits(), 0);
4953   APInt UndefBits(VT.getSizeInBits(), 0);
4954   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
4955     // We only have BIC vector immediate instruction, which is and-not.
4956     CnstBits = ~CnstBits;
4957
4958     // We make use of a little bit of goto ickiness in order to avoid having to
4959     // duplicate the immediate matching logic for the undef toggled case.
4960     bool SecondTry = false;
4961   AttemptModImm:
4962
4963     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
4964       CnstBits = CnstBits.zextOrTrunc(64);
4965       uint64_t CnstVal = CnstBits.getZExtValue();
4966
4967       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
4968         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
4969         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
4970         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
4971                                   DAG.getConstant(CnstVal, MVT::i32),
4972                                   DAG.getConstant(0, MVT::i32));
4973         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
4974       }
4975
4976       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
4977         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
4978         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
4979         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
4980                                   DAG.getConstant(CnstVal, MVT::i32),
4981                                   DAG.getConstant(8, MVT::i32));
4982         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
4983       }
4984
4985       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
4986         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
4987         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
4988         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
4989                                   DAG.getConstant(CnstVal, MVT::i32),
4990                                   DAG.getConstant(16, MVT::i32));
4991         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
4992       }
4993
4994       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
4995         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
4996         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
4997         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
4998                                   DAG.getConstant(CnstVal, MVT::i32),
4999                                   DAG.getConstant(24, MVT::i32));
5000         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5001       }
5002
5003       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
5004         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
5005         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5006         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
5007                                   DAG.getConstant(CnstVal, MVT::i32),
5008                                   DAG.getConstant(0, MVT::i32));
5009         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5010       }
5011
5012       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
5013         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
5014         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5015         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
5016                                   DAG.getConstant(CnstVal, MVT::i32),
5017                                   DAG.getConstant(8, MVT::i32));
5018         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5019       }
5020     }
5021
5022     if (SecondTry)
5023       goto FailedModImm;
5024     SecondTry = true;
5025     CnstBits = ~UndefBits;
5026     goto AttemptModImm;
5027   }
5028
5029 // We can always fall back to a non-immediate AND.
5030 FailedModImm:
5031   return Op;
5032 }
5033
5034 // Specialized code to quickly find if PotentialBVec is a BuildVector that
5035 // consists of only the same constant int value, returned in reference arg
5036 // ConstVal
5037 static bool isAllConstantBuildVector(const SDValue &PotentialBVec,
5038                                      uint64_t &ConstVal) {
5039   BuildVectorSDNode *Bvec = dyn_cast<BuildVectorSDNode>(PotentialBVec);
5040   if (!Bvec)
5041     return false;
5042   ConstantSDNode *FirstElt = dyn_cast<ConstantSDNode>(Bvec->getOperand(0));
5043   if (!FirstElt)
5044     return false;
5045   EVT VT = Bvec->getValueType(0);
5046   unsigned NumElts = VT.getVectorNumElements();
5047   for (unsigned i = 1; i < NumElts; ++i)
5048     if (dyn_cast<ConstantSDNode>(Bvec->getOperand(i)) != FirstElt)
5049       return false;
5050   ConstVal = FirstElt->getZExtValue();
5051   return true;
5052 }
5053
5054 static unsigned getIntrinsicID(const SDNode *N) {
5055   unsigned Opcode = N->getOpcode();
5056   switch (Opcode) {
5057   default:
5058     return Intrinsic::not_intrinsic;
5059   case ISD::INTRINSIC_WO_CHAIN: {
5060     unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
5061     if (IID < Intrinsic::num_intrinsics)
5062       return IID;
5063     return Intrinsic::not_intrinsic;
5064   }
5065   }
5066 }
5067
5068 // Attempt to form a vector S[LR]I from (or (and X, BvecC1), (lsl Y, C2)),
5069 // to (SLI X, Y, C2), where X and Y have matching vector types, BvecC1 is a
5070 // BUILD_VECTORs with constant element C1, C2 is a constant, and C1 == ~C2.
5071 // Also, logical shift right -> sri, with the same structure.
5072 static SDValue tryLowerToSLI(SDNode *N, SelectionDAG &DAG) {
5073   EVT VT = N->getValueType(0);
5074
5075   if (!VT.isVector())
5076     return SDValue();
5077
5078   SDLoc DL(N);
5079
5080   // Is the first op an AND?
5081   const SDValue And = N->getOperand(0);
5082   if (And.getOpcode() != ISD::AND)
5083     return SDValue();
5084
5085   // Is the second op an shl or lshr?
5086   SDValue Shift = N->getOperand(1);
5087   // This will have been turned into: AArch64ISD::VSHL vector, #shift
5088   // or AArch64ISD::VLSHR vector, #shift
5089   unsigned ShiftOpc = Shift.getOpcode();
5090   if ((ShiftOpc != AArch64ISD::VSHL && ShiftOpc != AArch64ISD::VLSHR))
5091     return SDValue();
5092   bool IsShiftRight = ShiftOpc == AArch64ISD::VLSHR;
5093
5094   // Is the shift amount constant?
5095   ConstantSDNode *C2node = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
5096   if (!C2node)
5097     return SDValue();
5098
5099   // Is the and mask vector all constant?
5100   uint64_t C1;
5101   if (!isAllConstantBuildVector(And.getOperand(1), C1))
5102     return SDValue();
5103
5104   // Is C1 == ~C2, taking into account how much one can shift elements of a
5105   // particular size?
5106   uint64_t C2 = C2node->getZExtValue();
5107   unsigned ElemSizeInBits = VT.getVectorElementType().getSizeInBits();
5108   if (C2 > ElemSizeInBits)
5109     return SDValue();
5110   unsigned ElemMask = (1 << ElemSizeInBits) - 1;
5111   if ((C1 & ElemMask) != (~C2 & ElemMask))
5112     return SDValue();
5113
5114   SDValue X = And.getOperand(0);
5115   SDValue Y = Shift.getOperand(0);
5116
5117   unsigned Intrin =
5118       IsShiftRight ? Intrinsic::aarch64_neon_vsri : Intrinsic::aarch64_neon_vsli;
5119   SDValue ResultSLI =
5120       DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
5121                   DAG.getConstant(Intrin, MVT::i32), X, Y, Shift.getOperand(1));
5122
5123   DEBUG(dbgs() << "aarch64-lower: transformed: \n");
5124   DEBUG(N->dump(&DAG));
5125   DEBUG(dbgs() << "into: \n");
5126   DEBUG(ResultSLI->dump(&DAG));
5127
5128   ++NumShiftInserts;
5129   return ResultSLI;
5130 }
5131
5132 SDValue AArch64TargetLowering::LowerVectorOR(SDValue Op,
5133                                              SelectionDAG &DAG) const {
5134   // Attempt to form a vector S[LR]I from (or (and X, C1), (lsl Y, C2))
5135   if (EnableAArch64SlrGeneration) {
5136     SDValue Res = tryLowerToSLI(Op.getNode(), DAG);
5137     if (Res.getNode())
5138       return Res;
5139   }
5140
5141   BuildVectorSDNode *BVN =
5142       dyn_cast<BuildVectorSDNode>(Op.getOperand(0).getNode());
5143   SDValue LHS = Op.getOperand(1);
5144   SDLoc dl(Op);
5145   EVT VT = Op.getValueType();
5146
5147   // OR commutes, so try swapping the operands.
5148   if (!BVN) {
5149     LHS = Op.getOperand(0);
5150     BVN = dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode());
5151   }
5152   if (!BVN)
5153     return Op;
5154
5155   APInt CnstBits(VT.getSizeInBits(), 0);
5156   APInt UndefBits(VT.getSizeInBits(), 0);
5157   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
5158     // We make use of a little bit of goto ickiness in order to avoid having to
5159     // duplicate the immediate matching logic for the undef toggled case.
5160     bool SecondTry = false;
5161   AttemptModImm:
5162
5163     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
5164       CnstBits = CnstBits.zextOrTrunc(64);
5165       uint64_t CnstVal = CnstBits.getZExtValue();
5166
5167       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
5168         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
5169         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5170         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5171                                   DAG.getConstant(CnstVal, MVT::i32),
5172                                   DAG.getConstant(0, MVT::i32));
5173         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5174       }
5175
5176       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
5177         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
5178         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5179         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5180                                   DAG.getConstant(CnstVal, MVT::i32),
5181                                   DAG.getConstant(8, MVT::i32));
5182         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5183       }
5184
5185       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
5186         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
5187         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5188         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5189                                   DAG.getConstant(CnstVal, MVT::i32),
5190                                   DAG.getConstant(16, MVT::i32));
5191         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5192       }
5193
5194       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
5195         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
5196         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5197         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5198                                   DAG.getConstant(CnstVal, MVT::i32),
5199                                   DAG.getConstant(24, MVT::i32));
5200         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5201       }
5202
5203       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
5204         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
5205         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5206         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5207                                   DAG.getConstant(CnstVal, MVT::i32),
5208                                   DAG.getConstant(0, MVT::i32));
5209         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5210       }
5211
5212       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
5213         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
5214         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5215         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5216                                   DAG.getConstant(CnstVal, MVT::i32),
5217                                   DAG.getConstant(8, MVT::i32));
5218         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5219       }
5220     }
5221
5222     if (SecondTry)
5223       goto FailedModImm;
5224     SecondTry = true;
5225     CnstBits = UndefBits;
5226     goto AttemptModImm;
5227   }
5228
5229 // We can always fall back to a non-immediate OR.
5230 FailedModImm:
5231   return Op;
5232 }
5233
5234 // Normalize the operands of BUILD_VECTOR. The value of constant operands will
5235 // be truncated to fit element width.
5236 static SDValue NormalizeBuildVector(SDValue Op,
5237                                     SelectionDAG &DAG) {
5238   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
5239   SDLoc dl(Op);
5240   EVT VT = Op.getValueType();
5241   EVT EltTy= VT.getVectorElementType();
5242
5243   if (EltTy.isFloatingPoint() || EltTy.getSizeInBits() > 16)
5244     return Op;
5245
5246   SmallVector<SDValue, 16> Ops;
5247   for (unsigned I = 0, E = VT.getVectorNumElements(); I != E; ++I) {
5248     SDValue Lane = Op.getOperand(I);
5249     if (Lane.getOpcode() == ISD::Constant) {
5250       APInt LowBits(EltTy.getSizeInBits(),
5251                     cast<ConstantSDNode>(Lane)->getZExtValue());
5252       Lane = DAG.getConstant(LowBits.getZExtValue(), MVT::i32);
5253     }
5254     Ops.push_back(Lane);
5255   }
5256   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5257 }
5258
5259 SDValue AArch64TargetLowering::LowerBUILD_VECTOR(SDValue Op,
5260                                                  SelectionDAG &DAG) const {
5261   SDLoc dl(Op);
5262   EVT VT = Op.getValueType();
5263   Op = NormalizeBuildVector(Op, DAG);
5264   BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
5265
5266   APInt CnstBits(VT.getSizeInBits(), 0);
5267   APInt UndefBits(VT.getSizeInBits(), 0);
5268   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
5269     // We make use of a little bit of goto ickiness in order to avoid having to
5270     // duplicate the immediate matching logic for the undef toggled case.
5271     bool SecondTry = false;
5272   AttemptModImm:
5273
5274     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
5275       CnstBits = CnstBits.zextOrTrunc(64);
5276       uint64_t CnstVal = CnstBits.getZExtValue();
5277
5278       // Certain magic vector constants (used to express things like NOT
5279       // and NEG) are passed through unmodified.  This allows codegen patterns
5280       // for these operations to match.  Special-purpose patterns will lower
5281       // these immediates to MOVIs if it proves necessary.
5282       if (VT.isInteger() && (CnstVal == 0 || CnstVal == ~0ULL))
5283         return Op;
5284
5285       // The many faces of MOVI...
5286       if (AArch64_AM::isAdvSIMDModImmType10(CnstVal)) {
5287         CnstVal = AArch64_AM::encodeAdvSIMDModImmType10(CnstVal);
5288         if (VT.getSizeInBits() == 128) {
5289           SDValue Mov = DAG.getNode(AArch64ISD::MOVIedit, dl, MVT::v2i64,
5290                                     DAG.getConstant(CnstVal, MVT::i32));
5291           return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5292         }
5293
5294         // Support the V64 version via subregister insertion.
5295         SDValue Mov = DAG.getNode(AArch64ISD::MOVIedit, dl, MVT::f64,
5296                                   DAG.getConstant(CnstVal, MVT::i32));
5297         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5298       }
5299
5300       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
5301         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
5302         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5303         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5304                                   DAG.getConstant(CnstVal, MVT::i32),
5305                                   DAG.getConstant(0, MVT::i32));
5306         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5307       }
5308
5309       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
5310         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
5311         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5312         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5313                                   DAG.getConstant(CnstVal, MVT::i32),
5314                                   DAG.getConstant(8, MVT::i32));
5315         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5316       }
5317
5318       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
5319         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
5320         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5321         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5322                                   DAG.getConstant(CnstVal, MVT::i32),
5323                                   DAG.getConstant(16, MVT::i32));
5324         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5325       }
5326
5327       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
5328         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
5329         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5330         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5331                                   DAG.getConstant(CnstVal, MVT::i32),
5332                                   DAG.getConstant(24, MVT::i32));
5333         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5334       }
5335
5336       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
5337         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
5338         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5339         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5340                                   DAG.getConstant(CnstVal, MVT::i32),
5341                                   DAG.getConstant(0, MVT::i32));
5342         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5343       }
5344
5345       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
5346         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
5347         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5348         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5349                                   DAG.getConstant(CnstVal, MVT::i32),
5350                                   DAG.getConstant(8, MVT::i32));
5351         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5352       }
5353
5354       if (AArch64_AM::isAdvSIMDModImmType7(CnstVal)) {
5355         CnstVal = AArch64_AM::encodeAdvSIMDModImmType7(CnstVal);
5356         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5357         SDValue Mov = DAG.getNode(AArch64ISD::MOVImsl, dl, MovTy,
5358                                   DAG.getConstant(CnstVal, MVT::i32),
5359                                   DAG.getConstant(264, MVT::i32));
5360         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5361       }
5362
5363       if (AArch64_AM::isAdvSIMDModImmType8(CnstVal)) {
5364         CnstVal = AArch64_AM::encodeAdvSIMDModImmType8(CnstVal);
5365         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5366         SDValue Mov = DAG.getNode(AArch64ISD::MOVImsl, dl, MovTy,
5367                                   DAG.getConstant(CnstVal, MVT::i32),
5368                                   DAG.getConstant(272, MVT::i32));
5369         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5370       }
5371
5372       if (AArch64_AM::isAdvSIMDModImmType9(CnstVal)) {
5373         CnstVal = AArch64_AM::encodeAdvSIMDModImmType9(CnstVal);
5374         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v16i8 : MVT::v8i8;
5375         SDValue Mov = DAG.getNode(AArch64ISD::MOVI, dl, MovTy,
5376                                   DAG.getConstant(CnstVal, MVT::i32));
5377         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5378       }
5379
5380       // The few faces of FMOV...
5381       if (AArch64_AM::isAdvSIMDModImmType11(CnstVal)) {
5382         CnstVal = AArch64_AM::encodeAdvSIMDModImmType11(CnstVal);
5383         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4f32 : MVT::v2f32;
5384         SDValue Mov = DAG.getNode(AArch64ISD::FMOV, dl, MovTy,
5385                                   DAG.getConstant(CnstVal, MVT::i32));
5386         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5387       }
5388
5389       if (AArch64_AM::isAdvSIMDModImmType12(CnstVal) &&
5390           VT.getSizeInBits() == 128) {
5391         CnstVal = AArch64_AM::encodeAdvSIMDModImmType12(CnstVal);
5392         SDValue Mov = DAG.getNode(AArch64ISD::FMOV, dl, MVT::v2f64,
5393                                   DAG.getConstant(CnstVal, MVT::i32));
5394         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5395       }
5396
5397       // The many faces of MVNI...
5398       CnstVal = ~CnstVal;
5399       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
5400         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
5401         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5402         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
5403                                   DAG.getConstant(CnstVal, MVT::i32),
5404                                   DAG.getConstant(0, MVT::i32));
5405         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5406       }
5407
5408       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
5409         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
5410         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5411         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
5412                                   DAG.getConstant(CnstVal, MVT::i32),
5413                                   DAG.getConstant(8, MVT::i32));
5414         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5415       }
5416
5417       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
5418         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
5419         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5420         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
5421                                   DAG.getConstant(CnstVal, MVT::i32),
5422                                   DAG.getConstant(16, MVT::i32));
5423         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5424       }
5425
5426       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
5427         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
5428         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5429         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
5430                                   DAG.getConstant(CnstVal, MVT::i32),
5431                                   DAG.getConstant(24, MVT::i32));
5432         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5433       }
5434
5435       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
5436         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
5437         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5438         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
5439                                   DAG.getConstant(CnstVal, MVT::i32),
5440                                   DAG.getConstant(0, MVT::i32));
5441         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5442       }
5443
5444       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
5445         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
5446         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5447         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
5448                                   DAG.getConstant(CnstVal, MVT::i32),
5449                                   DAG.getConstant(8, MVT::i32));
5450         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5451       }
5452
5453       if (AArch64_AM::isAdvSIMDModImmType7(CnstVal)) {
5454         CnstVal = AArch64_AM::encodeAdvSIMDModImmType7(CnstVal);
5455         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5456         SDValue Mov = DAG.getNode(AArch64ISD::MVNImsl, dl, MovTy,
5457                                   DAG.getConstant(CnstVal, MVT::i32),
5458                                   DAG.getConstant(264, MVT::i32));
5459         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5460       }
5461
5462       if (AArch64_AM::isAdvSIMDModImmType8(CnstVal)) {
5463         CnstVal = AArch64_AM::encodeAdvSIMDModImmType8(CnstVal);
5464         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5465         SDValue Mov = DAG.getNode(AArch64ISD::MVNImsl, dl, MovTy,
5466                                   DAG.getConstant(CnstVal, MVT::i32),
5467                                   DAG.getConstant(272, MVT::i32));
5468         return DAG.getNode(ISD::BITCAST, dl, VT, Mov);
5469       }
5470     }
5471
5472     if (SecondTry)
5473       goto FailedModImm;
5474     SecondTry = true;
5475     CnstBits = UndefBits;
5476     goto AttemptModImm;
5477   }
5478 FailedModImm:
5479
5480   // Scan through the operands to find some interesting properties we can
5481   // exploit:
5482   //   1) If only one value is used, we can use a DUP, or
5483   //   2) if only the low element is not undef, we can just insert that, or
5484   //   3) if only one constant value is used (w/ some non-constant lanes),
5485   //      we can splat the constant value into the whole vector then fill
5486   //      in the non-constant lanes.
5487   //   4) FIXME: If different constant values are used, but we can intelligently
5488   //             select the values we'll be overwriting for the non-constant
5489   //             lanes such that we can directly materialize the vector
5490   //             some other way (MOVI, e.g.), we can be sneaky.
5491   unsigned NumElts = VT.getVectorNumElements();
5492   bool isOnlyLowElement = true;
5493   bool usesOnlyOneValue = true;
5494   bool usesOnlyOneConstantValue = true;
5495   bool isConstant = true;
5496   unsigned NumConstantLanes = 0;
5497   SDValue Value;
5498   SDValue ConstantValue;
5499   for (unsigned i = 0; i < NumElts; ++i) {
5500     SDValue V = Op.getOperand(i);
5501     if (V.getOpcode() == ISD::UNDEF)
5502       continue;
5503     if (i > 0)
5504       isOnlyLowElement = false;
5505     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
5506       isConstant = false;
5507
5508     if (isa<ConstantSDNode>(V) || isa<ConstantFPSDNode>(V)) {
5509       ++NumConstantLanes;
5510       if (!ConstantValue.getNode())
5511         ConstantValue = V;
5512       else if (ConstantValue != V)
5513         usesOnlyOneConstantValue = false;
5514     }
5515
5516     if (!Value.getNode())
5517       Value = V;
5518     else if (V != Value)
5519       usesOnlyOneValue = false;
5520   }
5521
5522   if (!Value.getNode())
5523     return DAG.getUNDEF(VT);
5524
5525   if (isOnlyLowElement)
5526     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
5527
5528   // Use DUP for non-constant splats.  For f32 constant splats, reduce to
5529   // i32 and try again.
5530   if (usesOnlyOneValue) {
5531     if (!isConstant) {
5532       if (Value.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
5533           Value.getValueType() != VT)
5534         return DAG.getNode(AArch64ISD::DUP, dl, VT, Value);
5535
5536       // This is actually a DUPLANExx operation, which keeps everything vectory.
5537
5538       // DUPLANE works on 128-bit vectors, widen it if necessary.
5539       SDValue Lane = Value.getOperand(1);
5540       Value = Value.getOperand(0);
5541       if (Value.getValueType().getSizeInBits() == 64)
5542         Value = WidenVector(Value, DAG);
5543
5544       unsigned Opcode = getDUPLANEOp(VT.getVectorElementType());
5545       return DAG.getNode(Opcode, dl, VT, Value, Lane);
5546     }
5547
5548     if (VT.getVectorElementType().isFloatingPoint()) {
5549       SmallVector<SDValue, 8> Ops;
5550       MVT NewType =
5551           (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
5552       for (unsigned i = 0; i < NumElts; ++i)
5553         Ops.push_back(DAG.getNode(ISD::BITCAST, dl, NewType, Op.getOperand(i)));
5554       EVT VecVT = EVT::getVectorVT(*DAG.getContext(), NewType, NumElts);
5555       SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops);
5556       Val = LowerBUILD_VECTOR(Val, DAG);
5557       if (Val.getNode())
5558         return DAG.getNode(ISD::BITCAST, dl, VT, Val);
5559     }
5560   }
5561
5562   // If there was only one constant value used and for more than one lane,
5563   // start by splatting that value, then replace the non-constant lanes. This
5564   // is better than the default, which will perform a separate initialization
5565   // for each lane.
5566   if (NumConstantLanes > 0 && usesOnlyOneConstantValue) {
5567     SDValue Val = DAG.getNode(AArch64ISD::DUP, dl, VT, ConstantValue);
5568     // Now insert the non-constant lanes.
5569     for (unsigned i = 0; i < NumElts; ++i) {
5570       SDValue V = Op.getOperand(i);
5571       SDValue LaneIdx = DAG.getConstant(i, MVT::i64);
5572       if (!isa<ConstantSDNode>(V) && !isa<ConstantFPSDNode>(V)) {
5573         // Note that type legalization likely mucked about with the VT of the
5574         // source operand, so we may have to convert it here before inserting.
5575         Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Val, V, LaneIdx);
5576       }
5577     }
5578     return Val;
5579   }
5580
5581   // If all elements are constants and the case above didn't get hit, fall back
5582   // to the default expansion, which will generate a load from the constant
5583   // pool.
5584   if (isConstant)
5585     return SDValue();
5586
5587   // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
5588   if (NumElts >= 4) {
5589     SDValue shuffle = ReconstructShuffle(Op, DAG);
5590     if (shuffle != SDValue())
5591       return shuffle;
5592   }
5593
5594   // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
5595   // know the default expansion would otherwise fall back on something even
5596   // worse. For a vector with one or two non-undef values, that's
5597   // scalar_to_vector for the elements followed by a shuffle (provided the
5598   // shuffle is valid for the target) and materialization element by element
5599   // on the stack followed by a load for everything else.
5600   if (!isConstant && !usesOnlyOneValue) {
5601     SDValue Vec = DAG.getUNDEF(VT);
5602     SDValue Op0 = Op.getOperand(0);
5603     unsigned ElemSize = VT.getVectorElementType().getSizeInBits();
5604     unsigned i = 0;
5605     // For 32 and 64 bit types, use INSERT_SUBREG for lane zero to
5606     // a) Avoid a RMW dependency on the full vector register, and
5607     // b) Allow the register coalescer to fold away the copy if the
5608     //    value is already in an S or D register.
5609     if (Op0.getOpcode() != ISD::UNDEF && (ElemSize == 32 || ElemSize == 64)) {
5610       unsigned SubIdx = ElemSize == 32 ? AArch64::ssub : AArch64::dsub;
5611       MachineSDNode *N =
5612           DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, dl, VT, Vec, Op0,
5613                              DAG.getTargetConstant(SubIdx, MVT::i32));
5614       Vec = SDValue(N, 0);
5615       ++i;
5616     }
5617     for (; i < NumElts; ++i) {
5618       SDValue V = Op.getOperand(i);
5619       if (V.getOpcode() == ISD::UNDEF)
5620         continue;
5621       SDValue LaneIdx = DAG.getConstant(i, MVT::i64);
5622       Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
5623     }
5624     return Vec;
5625   }
5626
5627   // Just use the default expansion. We failed to find a better alternative.
5628   return SDValue();
5629 }
5630
5631 SDValue AArch64TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
5632                                                       SelectionDAG &DAG) const {
5633   assert(Op.getOpcode() == ISD::INSERT_VECTOR_ELT && "Unknown opcode!");
5634
5635   // Check for non-constant or out of range lane.
5636   EVT VT = Op.getOperand(0).getValueType();
5637   ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(2));
5638   if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
5639     return SDValue();
5640
5641
5642   // Insertion/extraction are legal for V128 types.
5643   if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
5644       VT == MVT::v2i64 || VT == MVT::v4f32 || VT == MVT::v2f64)
5645     return Op;
5646
5647   if (VT != MVT::v8i8 && VT != MVT::v4i16 && VT != MVT::v2i32 &&
5648       VT != MVT::v1i64 && VT != MVT::v2f32)
5649     return SDValue();
5650
5651   // For V64 types, we perform insertion by expanding the value
5652   // to a V128 type and perform the insertion on that.
5653   SDLoc DL(Op);
5654   SDValue WideVec = WidenVector(Op.getOperand(0), DAG);
5655   EVT WideTy = WideVec.getValueType();
5656
5657   SDValue Node = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, WideTy, WideVec,
5658                              Op.getOperand(1), Op.getOperand(2));
5659   // Re-narrow the resultant vector.
5660   return NarrowVector(Node, DAG);
5661 }
5662
5663 SDValue
5664 AArch64TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5665                                                SelectionDAG &DAG) const {
5666   assert(Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Unknown opcode!");
5667
5668   // Check for non-constant or out of range lane.
5669   EVT VT = Op.getOperand(0).getValueType();
5670   ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5671   if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
5672     return SDValue();
5673
5674
5675   // Insertion/extraction are legal for V128 types.
5676   if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
5677       VT == MVT::v2i64 || VT == MVT::v4f32 || VT == MVT::v2f64)
5678     return Op;
5679
5680   if (VT != MVT::v8i8 && VT != MVT::v4i16 && VT != MVT::v2i32 &&
5681       VT != MVT::v1i64 && VT != MVT::v2f32)
5682     return SDValue();
5683
5684   // For V64 types, we perform extraction by expanding the value
5685   // to a V128 type and perform the extraction on that.
5686   SDLoc DL(Op);
5687   SDValue WideVec = WidenVector(Op.getOperand(0), DAG);
5688   EVT WideTy = WideVec.getValueType();
5689
5690   EVT ExtrTy = WideTy.getVectorElementType();
5691   if (ExtrTy == MVT::i16 || ExtrTy == MVT::i8)
5692     ExtrTy = MVT::i32;
5693
5694   // For extractions, we just return the result directly.
5695   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ExtrTy, WideVec,
5696                      Op.getOperand(1));
5697 }
5698
5699 SDValue AArch64TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op,
5700                                                       SelectionDAG &DAG) const {
5701   EVT VT = Op.getOperand(0).getValueType();
5702   SDLoc dl(Op);
5703   // Just in case...
5704   if (!VT.isVector())
5705     return SDValue();
5706
5707   ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5708   if (!Cst)
5709     return SDValue();
5710   unsigned Val = Cst->getZExtValue();
5711
5712   unsigned Size = Op.getValueType().getSizeInBits();
5713   if (Val == 0) {
5714     switch (Size) {
5715     case 8:
5716       return DAG.getTargetExtractSubreg(AArch64::bsub, dl, Op.getValueType(),
5717                                         Op.getOperand(0));
5718     case 16:
5719       return DAG.getTargetExtractSubreg(AArch64::hsub, dl, Op.getValueType(),
5720                                         Op.getOperand(0));
5721     case 32:
5722       return DAG.getTargetExtractSubreg(AArch64::ssub, dl, Op.getValueType(),
5723                                         Op.getOperand(0));
5724     case 64:
5725       return DAG.getTargetExtractSubreg(AArch64::dsub, dl, Op.getValueType(),
5726                                         Op.getOperand(0));
5727     default:
5728       llvm_unreachable("Unexpected vector type in extract_subvector!");
5729     }
5730   }
5731   // If this is extracting the upper 64-bits of a 128-bit vector, we match
5732   // that directly.
5733   if (Size == 64 && Val * VT.getVectorElementType().getSizeInBits() == 64)
5734     return Op;
5735
5736   return SDValue();
5737 }
5738
5739 bool AArch64TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
5740                                                EVT VT) const {
5741   if (VT.getVectorNumElements() == 4 &&
5742       (VT.is128BitVector() || VT.is64BitVector())) {
5743     unsigned PFIndexes[4];
5744     for (unsigned i = 0; i != 4; ++i) {
5745       if (M[i] < 0)
5746         PFIndexes[i] = 8;
5747       else
5748         PFIndexes[i] = M[i];
5749     }
5750
5751     // Compute the index in the perfect shuffle table.
5752     unsigned PFTableIndex = PFIndexes[0] * 9 * 9 * 9 + PFIndexes[1] * 9 * 9 +
5753                             PFIndexes[2] * 9 + PFIndexes[3];
5754     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5755     unsigned Cost = (PFEntry >> 30);
5756
5757     if (Cost <= 4)
5758       return true;
5759   }
5760
5761   bool DummyBool;
5762   int DummyInt;
5763   unsigned DummyUnsigned;
5764
5765   return (ShuffleVectorSDNode::isSplatMask(&M[0], VT) || isREVMask(M, VT, 64) ||
5766           isREVMask(M, VT, 32) || isREVMask(M, VT, 16) ||
5767           isEXTMask(M, VT, DummyBool, DummyUnsigned) ||
5768           // isTBLMask(M, VT) || // FIXME: Port TBL support from ARM.
5769           isTRNMask(M, VT, DummyUnsigned) || isUZPMask(M, VT, DummyUnsigned) ||
5770           isZIPMask(M, VT, DummyUnsigned) ||
5771           isTRN_v_undef_Mask(M, VT, DummyUnsigned) ||
5772           isUZP_v_undef_Mask(M, VT, DummyUnsigned) ||
5773           isZIP_v_undef_Mask(M, VT, DummyUnsigned) ||
5774           isINSMask(M, VT.getVectorNumElements(), DummyBool, DummyInt) ||
5775           isConcatMask(M, VT, VT.getSizeInBits() == 128));
5776 }
5777
5778 /// getVShiftImm - Check if this is a valid build_vector for the immediate
5779 /// operand of a vector shift operation, where all the elements of the
5780 /// build_vector must have the same constant integer value.
5781 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
5782   // Ignore bit_converts.
5783   while (Op.getOpcode() == ISD::BITCAST)
5784     Op = Op.getOperand(0);
5785   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
5786   APInt SplatBits, SplatUndef;
5787   unsigned SplatBitSize;
5788   bool HasAnyUndefs;
5789   if (!BVN || !BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
5790                                     HasAnyUndefs, ElementBits) ||
5791       SplatBitSize > ElementBits)
5792     return false;
5793   Cnt = SplatBits.getSExtValue();
5794   return true;
5795 }
5796
5797 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
5798 /// operand of a vector shift left operation.  That value must be in the range:
5799 ///   0 <= Value < ElementBits for a left shift; or
5800 ///   0 <= Value <= ElementBits for a long left shift.
5801 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
5802   assert(VT.isVector() && "vector shift count is not a vector type");
5803   unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
5804   if (!getVShiftImm(Op, ElementBits, Cnt))
5805     return false;
5806   return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
5807 }
5808
5809 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
5810 /// operand of a vector shift right operation.  For a shift opcode, the value
5811 /// is positive, but for an intrinsic the value count must be negative. The
5812 /// absolute value must be in the range:
5813 ///   1 <= |Value| <= ElementBits for a right shift; or
5814 ///   1 <= |Value| <= ElementBits/2 for a narrow right shift.
5815 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic,
5816                          int64_t &Cnt) {
5817   assert(VT.isVector() && "vector shift count is not a vector type");
5818   unsigned ElementBits = VT.getVectorElementType().getSizeInBits();
5819   if (!getVShiftImm(Op, ElementBits, Cnt))
5820     return false;
5821   if (isIntrinsic)
5822     Cnt = -Cnt;
5823   return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits));
5824 }
5825
5826 SDValue AArch64TargetLowering::LowerVectorSRA_SRL_SHL(SDValue Op,
5827                                                       SelectionDAG &DAG) const {
5828   EVT VT = Op.getValueType();
5829   SDLoc DL(Op);
5830   int64_t Cnt;
5831
5832   if (!Op.getOperand(1).getValueType().isVector())
5833     return Op;
5834   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
5835
5836   switch (Op.getOpcode()) {
5837   default:
5838     llvm_unreachable("unexpected shift opcode");
5839
5840   case ISD::SHL:
5841     if (isVShiftLImm(Op.getOperand(1), VT, false, Cnt) && Cnt < EltSize)
5842       return DAG.getNode(AArch64ISD::VSHL, SDLoc(Op), VT, Op.getOperand(0),
5843                          DAG.getConstant(Cnt, MVT::i32));
5844     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
5845                        DAG.getConstant(Intrinsic::aarch64_neon_ushl, MVT::i32),
5846                        Op.getOperand(0), Op.getOperand(1));
5847   case ISD::SRA:
5848   case ISD::SRL:
5849     // Right shift immediate
5850     if (isVShiftRImm(Op.getOperand(1), VT, false, false, Cnt) &&
5851         Cnt < EltSize) {
5852       unsigned Opc =
5853           (Op.getOpcode() == ISD::SRA) ? AArch64ISD::VASHR : AArch64ISD::VLSHR;
5854       return DAG.getNode(Opc, SDLoc(Op), VT, Op.getOperand(0),
5855                          DAG.getConstant(Cnt, MVT::i32));
5856     }
5857
5858     // Right shift register.  Note, there is not a shift right register
5859     // instruction, but the shift left register instruction takes a signed
5860     // value, where negative numbers specify a right shift.
5861     unsigned Opc = (Op.getOpcode() == ISD::SRA) ? Intrinsic::aarch64_neon_sshl
5862                                                 : Intrinsic::aarch64_neon_ushl;
5863     // negate the shift amount
5864     SDValue NegShift = DAG.getNode(AArch64ISD::NEG, DL, VT, Op.getOperand(1));
5865     SDValue NegShiftLeft =
5866         DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
5867                     DAG.getConstant(Opc, MVT::i32), Op.getOperand(0), NegShift);
5868     return NegShiftLeft;
5869   }
5870
5871   return SDValue();
5872 }
5873
5874 static SDValue EmitVectorComparison(SDValue LHS, SDValue RHS,
5875                                     AArch64CC::CondCode CC, bool NoNans, EVT VT,
5876                                     SDLoc dl, SelectionDAG &DAG) {
5877   EVT SrcVT = LHS.getValueType();
5878
5879   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(RHS.getNode());
5880   APInt CnstBits(VT.getSizeInBits(), 0);
5881   APInt UndefBits(VT.getSizeInBits(), 0);
5882   bool IsCnst = BVN && resolveBuildVector(BVN, CnstBits, UndefBits);
5883   bool IsZero = IsCnst && (CnstBits == 0);
5884
5885   if (SrcVT.getVectorElementType().isFloatingPoint()) {
5886     switch (CC) {
5887     default:
5888       return SDValue();
5889     case AArch64CC::NE: {
5890       SDValue Fcmeq;
5891       if (IsZero)
5892         Fcmeq = DAG.getNode(AArch64ISD::FCMEQz, dl, VT, LHS);
5893       else
5894         Fcmeq = DAG.getNode(AArch64ISD::FCMEQ, dl, VT, LHS, RHS);
5895       return DAG.getNode(AArch64ISD::NOT, dl, VT, Fcmeq);
5896     }
5897     case AArch64CC::EQ:
5898       if (IsZero)
5899         return DAG.getNode(AArch64ISD::FCMEQz, dl, VT, LHS);
5900       return DAG.getNode(AArch64ISD::FCMEQ, dl, VT, LHS, RHS);
5901     case AArch64CC::GE:
5902       if (IsZero)
5903         return DAG.getNode(AArch64ISD::FCMGEz, dl, VT, LHS);
5904       return DAG.getNode(AArch64ISD::FCMGE, dl, VT, LHS, RHS);
5905     case AArch64CC::GT:
5906       if (IsZero)
5907         return DAG.getNode(AArch64ISD::FCMGTz, dl, VT, LHS);
5908       return DAG.getNode(AArch64ISD::FCMGT, dl, VT, LHS, RHS);
5909     case AArch64CC::LS:
5910       if (IsZero)
5911         return DAG.getNode(AArch64ISD::FCMLEz, dl, VT, LHS);
5912       return DAG.getNode(AArch64ISD::FCMGE, dl, VT, RHS, LHS);
5913     case AArch64CC::LT:
5914       if (!NoNans)
5915         return SDValue();
5916     // If we ignore NaNs then we can use to the MI implementation.
5917     // Fallthrough.
5918     case AArch64CC::MI:
5919       if (IsZero)
5920         return DAG.getNode(AArch64ISD::FCMLTz, dl, VT, LHS);
5921       return DAG.getNode(AArch64ISD::FCMGT, dl, VT, RHS, LHS);
5922     }
5923   }
5924
5925   switch (CC) {
5926   default:
5927     return SDValue();
5928   case AArch64CC::NE: {
5929     SDValue Cmeq;
5930     if (IsZero)
5931       Cmeq = DAG.getNode(AArch64ISD::CMEQz, dl, VT, LHS);
5932     else
5933       Cmeq = DAG.getNode(AArch64ISD::CMEQ, dl, VT, LHS, RHS);
5934     return DAG.getNode(AArch64ISD::NOT, dl, VT, Cmeq);
5935   }
5936   case AArch64CC::EQ:
5937     if (IsZero)
5938       return DAG.getNode(AArch64ISD::CMEQz, dl, VT, LHS);
5939     return DAG.getNode(AArch64ISD::CMEQ, dl, VT, LHS, RHS);
5940   case AArch64CC::GE:
5941     if (IsZero)
5942       return DAG.getNode(AArch64ISD::CMGEz, dl, VT, LHS);
5943     return DAG.getNode(AArch64ISD::CMGE, dl, VT, LHS, RHS);
5944   case AArch64CC::GT:
5945     if (IsZero)
5946       return DAG.getNode(AArch64ISD::CMGTz, dl, VT, LHS);
5947     return DAG.getNode(AArch64ISD::CMGT, dl, VT, LHS, RHS);
5948   case AArch64CC::LE:
5949     if (IsZero)
5950       return DAG.getNode(AArch64ISD::CMLEz, dl, VT, LHS);
5951     return DAG.getNode(AArch64ISD::CMGE, dl, VT, RHS, LHS);
5952   case AArch64CC::LS:
5953     return DAG.getNode(AArch64ISD::CMHS, dl, VT, RHS, LHS);
5954   case AArch64CC::LO:
5955     return DAG.getNode(AArch64ISD::CMHI, dl, VT, RHS, LHS);
5956   case AArch64CC::LT:
5957     if (IsZero)
5958       return DAG.getNode(AArch64ISD::CMLTz, dl, VT, LHS);
5959     return DAG.getNode(AArch64ISD::CMGT, dl, VT, RHS, LHS);
5960   case AArch64CC::HI:
5961     return DAG.getNode(AArch64ISD::CMHI, dl, VT, LHS, RHS);
5962   case AArch64CC::HS:
5963     return DAG.getNode(AArch64ISD::CMHS, dl, VT, LHS, RHS);
5964   }
5965 }
5966
5967 SDValue AArch64TargetLowering::LowerVSETCC(SDValue Op,
5968                                            SelectionDAG &DAG) const {
5969   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
5970   SDValue LHS = Op.getOperand(0);
5971   SDValue RHS = Op.getOperand(1);
5972   SDLoc dl(Op);
5973
5974   if (LHS.getValueType().getVectorElementType().isInteger()) {
5975     assert(LHS.getValueType() == RHS.getValueType());
5976     AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
5977     return EmitVectorComparison(LHS, RHS, AArch64CC, false, Op.getValueType(),
5978                                 dl, DAG);
5979   }
5980
5981   assert(LHS.getValueType().getVectorElementType() == MVT::f32 ||
5982          LHS.getValueType().getVectorElementType() == MVT::f64);
5983
5984   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
5985   // clean.  Some of them require two branches to implement.
5986   AArch64CC::CondCode CC1, CC2;
5987   bool ShouldInvert;
5988   changeVectorFPCCToAArch64CC(CC, CC1, CC2, ShouldInvert);
5989
5990   bool NoNaNs = getTargetMachine().Options.NoNaNsFPMath;
5991   SDValue Cmp =
5992       EmitVectorComparison(LHS, RHS, CC1, NoNaNs, Op.getValueType(), dl, DAG);
5993   if (!Cmp.getNode())
5994     return SDValue();
5995
5996   if (CC2 != AArch64CC::AL) {
5997     SDValue Cmp2 =
5998         EmitVectorComparison(LHS, RHS, CC2, NoNaNs, Op.getValueType(), dl, DAG);
5999     if (!Cmp2.getNode())
6000       return SDValue();
6001
6002     Cmp = DAG.getNode(ISD::OR, dl, Cmp.getValueType(), Cmp, Cmp2);
6003   }
6004
6005   if (ShouldInvert)
6006     return Cmp = DAG.getNOT(dl, Cmp, Cmp.getValueType());
6007
6008   return Cmp;
6009 }
6010
6011 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
6012 /// MemIntrinsicNodes.  The associated MachineMemOperands record the alignment
6013 /// specified in the intrinsic calls.
6014 bool AArch64TargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
6015                                                const CallInst &I,
6016                                                unsigned Intrinsic) const {
6017   switch (Intrinsic) {
6018   case Intrinsic::aarch64_neon_ld2:
6019   case Intrinsic::aarch64_neon_ld3:
6020   case Intrinsic::aarch64_neon_ld4:
6021   case Intrinsic::aarch64_neon_ld1x2:
6022   case Intrinsic::aarch64_neon_ld1x3:
6023   case Intrinsic::aarch64_neon_ld1x4:
6024   case Intrinsic::aarch64_neon_ld2lane:
6025   case Intrinsic::aarch64_neon_ld3lane:
6026   case Intrinsic::aarch64_neon_ld4lane:
6027   case Intrinsic::aarch64_neon_ld2r:
6028   case Intrinsic::aarch64_neon_ld3r:
6029   case Intrinsic::aarch64_neon_ld4r: {
6030     Info.opc = ISD::INTRINSIC_W_CHAIN;
6031     // Conservatively set memVT to the entire set of vectors loaded.
6032     uint64_t NumElts = getDataLayout()->getTypeAllocSize(I.getType()) / 8;
6033     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
6034     Info.ptrVal = I.getArgOperand(I.getNumArgOperands() - 1);
6035     Info.offset = 0;
6036     Info.align = 0;
6037     Info.vol = false; // volatile loads with NEON intrinsics not supported
6038     Info.readMem = true;
6039     Info.writeMem = false;
6040     return true;
6041   }
6042   case Intrinsic::aarch64_neon_st2:
6043   case Intrinsic::aarch64_neon_st3:
6044   case Intrinsic::aarch64_neon_st4:
6045   case Intrinsic::aarch64_neon_st1x2:
6046   case Intrinsic::aarch64_neon_st1x3:
6047   case Intrinsic::aarch64_neon_st1x4:
6048   case Intrinsic::aarch64_neon_st2lane:
6049   case Intrinsic::aarch64_neon_st3lane:
6050   case Intrinsic::aarch64_neon_st4lane: {
6051     Info.opc = ISD::INTRINSIC_VOID;
6052     // Conservatively set memVT to the entire set of vectors stored.
6053     unsigned NumElts = 0;
6054     for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
6055       Type *ArgTy = I.getArgOperand(ArgI)->getType();
6056       if (!ArgTy->isVectorTy())
6057         break;
6058       NumElts += getDataLayout()->getTypeAllocSize(ArgTy) / 8;
6059     }
6060     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
6061     Info.ptrVal = I.getArgOperand(I.getNumArgOperands() - 1);
6062     Info.offset = 0;
6063     Info.align = 0;
6064     Info.vol = false; // volatile stores with NEON intrinsics not supported
6065     Info.readMem = false;
6066     Info.writeMem = true;
6067     return true;
6068   }
6069   case Intrinsic::aarch64_ldaxr:
6070   case Intrinsic::aarch64_ldxr: {
6071     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
6072     Info.opc = ISD::INTRINSIC_W_CHAIN;
6073     Info.memVT = MVT::getVT(PtrTy->getElementType());
6074     Info.ptrVal = I.getArgOperand(0);
6075     Info.offset = 0;
6076     Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
6077     Info.vol = true;
6078     Info.readMem = true;
6079     Info.writeMem = false;
6080     return true;
6081   }
6082   case Intrinsic::aarch64_stlxr:
6083   case Intrinsic::aarch64_stxr: {
6084     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
6085     Info.opc = ISD::INTRINSIC_W_CHAIN;
6086     Info.memVT = MVT::getVT(PtrTy->getElementType());
6087     Info.ptrVal = I.getArgOperand(1);
6088     Info.offset = 0;
6089     Info.align = getDataLayout()->getABITypeAlignment(PtrTy->getElementType());
6090     Info.vol = true;
6091     Info.readMem = false;
6092     Info.writeMem = true;
6093     return true;
6094   }
6095   case Intrinsic::aarch64_ldaxp:
6096   case Intrinsic::aarch64_ldxp: {
6097     Info.opc = ISD::INTRINSIC_W_CHAIN;
6098     Info.memVT = MVT::i128;
6099     Info.ptrVal = I.getArgOperand(0);
6100     Info.offset = 0;
6101     Info.align = 16;
6102     Info.vol = true;
6103     Info.readMem = true;
6104     Info.writeMem = false;
6105     return true;
6106   }
6107   case Intrinsic::aarch64_stlxp:
6108   case Intrinsic::aarch64_stxp: {
6109     Info.opc = ISD::INTRINSIC_W_CHAIN;
6110     Info.memVT = MVT::i128;
6111     Info.ptrVal = I.getArgOperand(2);
6112     Info.offset = 0;
6113     Info.align = 16;
6114     Info.vol = true;
6115     Info.readMem = false;
6116     Info.writeMem = true;
6117     return true;
6118   }
6119   default:
6120     break;
6121   }
6122
6123   return false;
6124 }
6125
6126 // Truncations from 64-bit GPR to 32-bit GPR is free.
6127 bool AArch64TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
6128   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
6129     return false;
6130   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6131   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
6132   return NumBits1 > NumBits2;
6133 }
6134 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
6135   if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6136     return false;
6137   unsigned NumBits1 = VT1.getSizeInBits();
6138   unsigned NumBits2 = VT2.getSizeInBits();
6139   return NumBits1 > NumBits2;
6140 }
6141
6142 // All 32-bit GPR operations implicitly zero the high-half of the corresponding
6143 // 64-bit GPR.
6144 bool AArch64TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
6145   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
6146     return false;
6147   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6148   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
6149   return NumBits1 == 32 && NumBits2 == 64;
6150 }
6151 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
6152   if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6153     return false;
6154   unsigned NumBits1 = VT1.getSizeInBits();
6155   unsigned NumBits2 = VT2.getSizeInBits();
6156   return NumBits1 == 32 && NumBits2 == 64;
6157 }
6158
6159 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
6160   EVT VT1 = Val.getValueType();
6161   if (isZExtFree(VT1, VT2)) {
6162     return true;
6163   }
6164
6165   if (Val.getOpcode() != ISD::LOAD)
6166     return false;
6167
6168   // 8-, 16-, and 32-bit integer loads all implicitly zero-extend.
6169   return (VT1.isSimple() && !VT1.isVector() && VT1.isInteger() &&
6170           VT2.isSimple() && !VT2.isVector() && VT2.isInteger() &&
6171           VT1.getSizeInBits() <= 32);
6172 }
6173
6174 bool AArch64TargetLowering::hasPairedLoad(Type *LoadedType,
6175                                           unsigned &RequiredAligment) const {
6176   if (!LoadedType->isIntegerTy() && !LoadedType->isFloatTy())
6177     return false;
6178   // Cyclone supports unaligned accesses.
6179   RequiredAligment = 0;
6180   unsigned NumBits = LoadedType->getPrimitiveSizeInBits();
6181   return NumBits == 32 || NumBits == 64;
6182 }
6183
6184 bool AArch64TargetLowering::hasPairedLoad(EVT LoadedType,
6185                                           unsigned &RequiredAligment) const {
6186   if (!LoadedType.isSimple() ||
6187       (!LoadedType.isInteger() && !LoadedType.isFloatingPoint()))
6188     return false;
6189   // Cyclone supports unaligned accesses.
6190   RequiredAligment = 0;
6191   unsigned NumBits = LoadedType.getSizeInBits();
6192   return NumBits == 32 || NumBits == 64;
6193 }
6194
6195 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
6196                        unsigned AlignCheck) {
6197   return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
6198           (DstAlign == 0 || DstAlign % AlignCheck == 0));
6199 }
6200
6201 EVT AArch64TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned DstAlign,
6202                                                unsigned SrcAlign, bool IsMemset,
6203                                                bool ZeroMemset,
6204                                                bool MemcpyStrSrc,
6205                                                MachineFunction &MF) const {
6206   // Don't use AdvSIMD to implement 16-byte memset. It would have taken one
6207   // instruction to materialize the v2i64 zero and one store (with restrictive
6208   // addressing mode). Just do two i64 store of zero-registers.
6209   bool Fast;
6210   const Function *F = MF.getFunction();
6211   if (Subtarget->hasFPARMv8() && !IsMemset && Size >= 16 &&
6212       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
6213                                        Attribute::NoImplicitFloat) &&
6214       (memOpAlign(SrcAlign, DstAlign, 16) ||
6215        (allowsUnalignedMemoryAccesses(MVT::f128, 0, &Fast) && Fast)))
6216     return MVT::f128;
6217
6218   return Size >= 8 ? MVT::i64 : MVT::i32;
6219 }
6220
6221 // 12-bit optionally shifted immediates are legal for adds.
6222 bool AArch64TargetLowering::isLegalAddImmediate(int64_t Immed) const {
6223   if ((Immed >> 12) == 0 || ((Immed & 0xfff) == 0 && Immed >> 24 == 0))
6224     return true;
6225   return false;
6226 }
6227
6228 // Integer comparisons are implemented with ADDS/SUBS, so the range of valid
6229 // immediates is the same as for an add or a sub.
6230 bool AArch64TargetLowering::isLegalICmpImmediate(int64_t Immed) const {
6231   if (Immed < 0)
6232     Immed *= -1;
6233   return isLegalAddImmediate(Immed);
6234 }
6235
6236 /// isLegalAddressingMode - Return true if the addressing mode represented
6237 /// by AM is legal for this target, for a load/store of the specified type.
6238 bool AArch64TargetLowering::isLegalAddressingMode(const AddrMode &AM,
6239                                                   Type *Ty) const {
6240   // AArch64 has five basic addressing modes:
6241   //  reg
6242   //  reg + 9-bit signed offset
6243   //  reg + SIZE_IN_BYTES * 12-bit unsigned offset
6244   //  reg1 + reg2
6245   //  reg + SIZE_IN_BYTES * reg
6246
6247   // No global is ever allowed as a base.
6248   if (AM.BaseGV)
6249     return false;
6250
6251   // No reg+reg+imm addressing.
6252   if (AM.HasBaseReg && AM.BaseOffs && AM.Scale)
6253     return false;
6254
6255   // check reg + imm case:
6256   // i.e., reg + 0, reg + imm9, reg + SIZE_IN_BYTES * uimm12
6257   uint64_t NumBytes = 0;
6258   if (Ty->isSized()) {
6259     uint64_t NumBits = getDataLayout()->getTypeSizeInBits(Ty);
6260     NumBytes = NumBits / 8;
6261     if (!isPowerOf2_64(NumBits))
6262       NumBytes = 0;
6263   }
6264
6265   if (!AM.Scale) {
6266     int64_t Offset = AM.BaseOffs;
6267
6268     // 9-bit signed offset
6269     if (Offset >= -(1LL << 9) && Offset <= (1LL << 9) - 1)
6270       return true;
6271
6272     // 12-bit unsigned offset
6273     unsigned shift = Log2_64(NumBytes);
6274     if (NumBytes && Offset > 0 && (Offset / NumBytes) <= (1LL << 12) - 1 &&
6275         // Must be a multiple of NumBytes (NumBytes is a power of 2)
6276         (Offset >> shift) << shift == Offset)
6277       return true;
6278     return false;
6279   }
6280
6281   // Check reg1 + SIZE_IN_BYTES * reg2 and reg1 + reg2
6282
6283   if (!AM.Scale || AM.Scale == 1 ||
6284       (AM.Scale > 0 && (uint64_t)AM.Scale == NumBytes))
6285     return true;
6286   return false;
6287 }
6288
6289 int AArch64TargetLowering::getScalingFactorCost(const AddrMode &AM,
6290                                                 Type *Ty) const {
6291   // Scaling factors are not free at all.
6292   // Operands                     | Rt Latency
6293   // -------------------------------------------
6294   // Rt, [Xn, Xm]                 | 4
6295   // -------------------------------------------
6296   // Rt, [Xn, Xm, lsl #imm]       | Rn: 4 Rm: 5
6297   // Rt, [Xn, Wm, <extend> #imm]  |
6298   if (isLegalAddressingMode(AM, Ty))
6299     // Scale represents reg2 * scale, thus account for 1 if
6300     // it is not equal to 0 or 1.
6301     return AM.Scale != 0 && AM.Scale != 1;
6302   return -1;
6303 }
6304
6305 bool AArch64TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
6306   VT = VT.getScalarType();
6307
6308   if (!VT.isSimple())
6309     return false;
6310
6311   switch (VT.getSimpleVT().SimpleTy) {
6312   case MVT::f32:
6313   case MVT::f64:
6314     return true;
6315   default:
6316     break;
6317   }
6318
6319   return false;
6320 }
6321
6322 const MCPhysReg *
6323 AArch64TargetLowering::getScratchRegisters(CallingConv::ID) const {
6324   // LR is a callee-save register, but we must treat it as clobbered by any call
6325   // site. Hence we include LR in the scratch registers, which are in turn added
6326   // as implicit-defs for stackmaps and patchpoints.
6327   static const MCPhysReg ScratchRegs[] = {
6328     AArch64::X16, AArch64::X17, AArch64::LR, 0
6329   };
6330   return ScratchRegs;
6331 }
6332
6333 bool
6334 AArch64TargetLowering::isDesirableToCommuteWithShift(const SDNode *N) const {
6335   EVT VT = N->getValueType(0);
6336     // If N is unsigned bit extraction: ((x >> C) & mask), then do not combine
6337     // it with shift to let it be lowered to UBFX.
6338   if (N->getOpcode() == ISD::AND && (VT == MVT::i32 || VT == MVT::i64) &&
6339       isa<ConstantSDNode>(N->getOperand(1))) {
6340     uint64_t TruncMask = N->getConstantOperandVal(1);
6341     if (isMask_64(TruncMask) &&
6342       N->getOperand(0).getOpcode() == ISD::SRL &&
6343       isa<ConstantSDNode>(N->getOperand(0)->getOperand(1)))
6344       return false;
6345   }
6346   return true;
6347 }
6348
6349 bool AArch64TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
6350                                                               Type *Ty) const {
6351   assert(Ty->isIntegerTy());
6352
6353   unsigned BitSize = Ty->getPrimitiveSizeInBits();
6354   if (BitSize == 0)
6355     return false;
6356
6357   int64_t Val = Imm.getSExtValue();
6358   if (Val == 0 || AArch64_AM::isLogicalImmediate(Val, BitSize))
6359     return true;
6360
6361   if ((int64_t)Val < 0)
6362     Val = ~Val;
6363   if (BitSize == 32)
6364     Val &= (1LL << 32) - 1;
6365
6366   unsigned LZ = countLeadingZeros((uint64_t)Val);
6367   unsigned Shift = (63 - LZ) / 16;
6368   // MOVZ is free so return true for one or fewer MOVK.
6369   return (Shift < 3) ? true : false;
6370 }
6371
6372 // Generate SUBS and CSEL for integer abs.
6373 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
6374   EVT VT = N->getValueType(0);
6375
6376   SDValue N0 = N->getOperand(0);
6377   SDValue N1 = N->getOperand(1);
6378   SDLoc DL(N);
6379
6380   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
6381   // and change it to SUB and CSEL.
6382   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
6383       N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1 &&
6384       N1.getOpcode() == ISD::SRA && N1.getOperand(0) == N0.getOperand(0))
6385     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
6386       if (Y1C->getAPIntValue() == VT.getSizeInBits() - 1) {
6387         SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT),
6388                                   N0.getOperand(0));
6389         // Generate SUBS & CSEL.
6390         SDValue Cmp =
6391             DAG.getNode(AArch64ISD::SUBS, DL, DAG.getVTList(VT, MVT::i32),
6392                         N0.getOperand(0), DAG.getConstant(0, VT));
6393         return DAG.getNode(AArch64ISD::CSEL, DL, VT, N0.getOperand(0), Neg,
6394                            DAG.getConstant(AArch64CC::PL, MVT::i32),
6395                            SDValue(Cmp.getNode(), 1));
6396       }
6397   return SDValue();
6398 }
6399
6400 // performXorCombine - Attempts to handle integer ABS.
6401 static SDValue performXorCombine(SDNode *N, SelectionDAG &DAG,
6402                                  TargetLowering::DAGCombinerInfo &DCI,
6403                                  const AArch64Subtarget *Subtarget) {
6404   if (DCI.isBeforeLegalizeOps())
6405     return SDValue();
6406
6407   return performIntegerAbsCombine(N, DAG);
6408 }
6409
6410 SDValue
6411 AArch64TargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
6412                                      SelectionDAG &DAG,
6413                                      std::vector<SDNode *> *Created) const {
6414   // fold (sdiv X, pow2)
6415   EVT VT = N->getValueType(0);
6416   if ((VT != MVT::i32 && VT != MVT::i64) ||
6417       !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
6418     return SDValue();
6419
6420   SDLoc DL(N);
6421   SDValue N0 = N->getOperand(0);
6422   unsigned Lg2 = Divisor.countTrailingZeros();
6423   SDValue Zero = DAG.getConstant(0, VT);
6424   SDValue Pow2MinusOne = DAG.getConstant((1 << Lg2) - 1, VT);
6425
6426   // Add (N0 < 0) ? Pow2 - 1 : 0;
6427   SDValue CCVal;
6428   SDValue Cmp = getAArch64Cmp(N0, Zero, ISD::SETLT, CCVal, DAG, DL);
6429   SDValue Add = DAG.getNode(ISD::ADD, DL, VT, N0, Pow2MinusOne);
6430   SDValue CSel = DAG.getNode(AArch64ISD::CSEL, DL, VT, Add, N0, CCVal, Cmp);
6431
6432   if (Created) {
6433     Created->push_back(Cmp.getNode());
6434     Created->push_back(Add.getNode());
6435     Created->push_back(CSel.getNode());
6436   }
6437
6438   // Divide by pow2.
6439   SDValue SRA =
6440       DAG.getNode(ISD::SRA, DL, VT, CSel, DAG.getConstant(Lg2, MVT::i64));
6441
6442   // If we're dividing by a positive value, we're done.  Otherwise, we must
6443   // negate the result.
6444   if (Divisor.isNonNegative())
6445     return SRA;
6446
6447   if (Created)
6448     Created->push_back(SRA.getNode());
6449   return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), SRA);
6450 }
6451
6452 static SDValue performMulCombine(SDNode *N, SelectionDAG &DAG,
6453                                  TargetLowering::DAGCombinerInfo &DCI,
6454                                  const AArch64Subtarget *Subtarget) {
6455   if (DCI.isBeforeLegalizeOps())
6456     return SDValue();
6457
6458   // Multiplication of a power of two plus/minus one can be done more
6459   // cheaply as as shift+add/sub. For now, this is true unilaterally. If
6460   // future CPUs have a cheaper MADD instruction, this may need to be
6461   // gated on a subtarget feature. For Cyclone, 32-bit MADD is 4 cycles and
6462   // 64-bit is 5 cycles, so this is always a win.
6463   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
6464     APInt Value = C->getAPIntValue();
6465     EVT VT = N->getValueType(0);
6466     if (Value.isNonNegative()) {
6467       // (mul x, 2^N + 1) => (add (shl x, N), x)
6468       APInt VM1 = Value - 1;
6469       if (VM1.isPowerOf2()) {
6470         SDValue ShiftedVal =
6471             DAG.getNode(ISD::SHL, SDLoc(N), VT, N->getOperand(0),
6472                         DAG.getConstant(VM1.logBase2(), MVT::i64));
6473         return DAG.getNode(ISD::ADD, SDLoc(N), VT, ShiftedVal,
6474                            N->getOperand(0));
6475       }
6476       // (mul x, 2^N - 1) => (sub (shl x, N), x)
6477       APInt VP1 = Value + 1;
6478       if (VP1.isPowerOf2()) {
6479         SDValue ShiftedVal =
6480             DAG.getNode(ISD::SHL, SDLoc(N), VT, N->getOperand(0),
6481                         DAG.getConstant(VP1.logBase2(), MVT::i64));
6482         return DAG.getNode(ISD::SUB, SDLoc(N), VT, ShiftedVal,
6483                            N->getOperand(0));
6484       }
6485     } else {
6486       // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
6487       APInt VNM1 = -Value - 1;
6488       if (VNM1.isPowerOf2()) {
6489         SDValue ShiftedVal =
6490             DAG.getNode(ISD::SHL, SDLoc(N), VT, N->getOperand(0),
6491                         DAG.getConstant(VNM1.logBase2(), MVT::i64));
6492         SDValue Add =
6493             DAG.getNode(ISD::ADD, SDLoc(N), VT, ShiftedVal, N->getOperand(0));
6494         return DAG.getNode(ISD::SUB, SDLoc(N), VT, DAG.getConstant(0, VT), Add);
6495       }
6496       // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
6497       APInt VNP1 = -Value + 1;
6498       if (VNP1.isPowerOf2()) {
6499         SDValue ShiftedVal =
6500             DAG.getNode(ISD::SHL, SDLoc(N), VT, N->getOperand(0),
6501                         DAG.getConstant(VNP1.logBase2(), MVT::i64));
6502         return DAG.getNode(ISD::SUB, SDLoc(N), VT, N->getOperand(0),
6503                            ShiftedVal);
6504       }
6505     }
6506   }
6507   return SDValue();
6508 }
6509
6510 static SDValue performVectorCompareAndMaskUnaryOpCombine(SDNode *N,
6511                                                          SelectionDAG &DAG) {
6512   // Take advantage of vector comparisons producing 0 or -1 in each lane to
6513   // optimize away operation when it's from a constant.
6514   //
6515   // The general transformation is:
6516   //    UNARYOP(AND(VECTOR_CMP(x,y), constant)) -->
6517   //       AND(VECTOR_CMP(x,y), constant2)
6518   //    constant2 = UNARYOP(constant)
6519
6520   // Early exit if this isn't a vector operation, the operand of the
6521   // unary operation isn't a bitwise AND, or if the sizes of the operations
6522   // aren't the same.
6523   EVT VT = N->getValueType(0);
6524   if (!VT.isVector() || N->getOperand(0)->getOpcode() != ISD::AND ||
6525       N->getOperand(0)->getOperand(0)->getOpcode() != ISD::SETCC ||
6526       VT.getSizeInBits() != N->getOperand(0)->getValueType(0).getSizeInBits())
6527     return SDValue();
6528
6529   // Now check that the other operand of the AND is a constant. We could
6530   // make the transformation for non-constant splats as well, but it's unclear
6531   // that would be a benefit as it would not eliminate any operations, just
6532   // perform one more step in scalar code before moving to the vector unit.
6533   if (BuildVectorSDNode *BV =
6534           dyn_cast<BuildVectorSDNode>(N->getOperand(0)->getOperand(1))) {
6535     // Bail out if the vector isn't a constant.
6536     if (!BV->isConstant())
6537       return SDValue();
6538
6539     // Everything checks out. Build up the new and improved node.
6540     SDLoc DL(N);
6541     EVT IntVT = BV->getValueType(0);
6542     // Create a new constant of the appropriate type for the transformed
6543     // DAG.
6544     SDValue SourceConst = DAG.getNode(N->getOpcode(), DL, VT, SDValue(BV, 0));
6545     // The AND node needs bitcasts to/from an integer vector type around it.
6546     SDValue MaskConst = DAG.getNode(ISD::BITCAST, DL, IntVT, SourceConst);
6547     SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT,
6548                                  N->getOperand(0)->getOperand(0), MaskConst);
6549     SDValue Res = DAG.getNode(ISD::BITCAST, DL, VT, NewAnd);
6550     return Res;
6551   }
6552
6553   return SDValue();
6554 }
6555
6556 static SDValue performIntToFpCombine(SDNode *N, SelectionDAG &DAG) {
6557   // First try to optimize away the conversion when it's conditionally from
6558   // a constant. Vectors only.
6559   SDValue Res = performVectorCompareAndMaskUnaryOpCombine(N, DAG);
6560   if (Res != SDValue())
6561     return Res;
6562
6563   EVT VT = N->getValueType(0);
6564   if (VT != MVT::f32 && VT != MVT::f64)
6565     return SDValue();
6566
6567   // Only optimize when the source and destination types have the same width.
6568   if (VT.getSizeInBits() != N->getOperand(0).getValueType().getSizeInBits())
6569     return SDValue();
6570
6571   // If the result of an integer load is only used by an integer-to-float
6572   // conversion, use a fp load instead and a AdvSIMD scalar {S|U}CVTF instead.
6573   // This eliminates an "integer-to-vector-move UOP and improve throughput.
6574   SDValue N0 = N->getOperand(0);
6575   if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6576       // Do not change the width of a volatile load.
6577       !cast<LoadSDNode>(N0)->isVolatile()) {
6578     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
6579     SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(), LN0->getBasePtr(),
6580                                LN0->getPointerInfo(), LN0->isVolatile(),
6581                                LN0->isNonTemporal(), LN0->isInvariant(),
6582                                LN0->getAlignment());
6583
6584     // Make sure successors of the original load stay after it by updating them
6585     // to use the new Chain.
6586     DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), Load.getValue(1));
6587
6588     unsigned Opcode =
6589         (N->getOpcode() == ISD::SINT_TO_FP) ? AArch64ISD::SITOF : AArch64ISD::UITOF;
6590     return DAG.getNode(Opcode, SDLoc(N), VT, Load);
6591   }
6592
6593   return SDValue();
6594 }
6595
6596 /// An EXTR instruction is made up of two shifts, ORed together. This helper
6597 /// searches for and classifies those shifts.
6598 static bool findEXTRHalf(SDValue N, SDValue &Src, uint32_t &ShiftAmount,
6599                          bool &FromHi) {
6600   if (N.getOpcode() == ISD::SHL)
6601     FromHi = false;
6602   else if (N.getOpcode() == ISD::SRL)
6603     FromHi = true;
6604   else
6605     return false;
6606
6607   if (!isa<ConstantSDNode>(N.getOperand(1)))
6608     return false;
6609
6610   ShiftAmount = N->getConstantOperandVal(1);
6611   Src = N->getOperand(0);
6612   return true;
6613 }
6614
6615 /// EXTR instruction extracts a contiguous chunk of bits from two existing
6616 /// registers viewed as a high/low pair. This function looks for the pattern:
6617 /// (or (shl VAL1, #N), (srl VAL2, #RegWidth-N)) and replaces it with an
6618 /// EXTR. Can't quite be done in TableGen because the two immediates aren't
6619 /// independent.
6620 static SDValue tryCombineToEXTR(SDNode *N,
6621                                 TargetLowering::DAGCombinerInfo &DCI) {
6622   SelectionDAG &DAG = DCI.DAG;
6623   SDLoc DL(N);
6624   EVT VT = N->getValueType(0);
6625
6626   assert(N->getOpcode() == ISD::OR && "Unexpected root");
6627
6628   if (VT != MVT::i32 && VT != MVT::i64)
6629     return SDValue();
6630
6631   SDValue LHS;
6632   uint32_t ShiftLHS = 0;
6633   bool LHSFromHi = 0;
6634   if (!findEXTRHalf(N->getOperand(0), LHS, ShiftLHS, LHSFromHi))
6635     return SDValue();
6636
6637   SDValue RHS;
6638   uint32_t ShiftRHS = 0;
6639   bool RHSFromHi = 0;
6640   if (!findEXTRHalf(N->getOperand(1), RHS, ShiftRHS, RHSFromHi))
6641     return SDValue();
6642
6643   // If they're both trying to come from the high part of the register, they're
6644   // not really an EXTR.
6645   if (LHSFromHi == RHSFromHi)
6646     return SDValue();
6647
6648   if (ShiftLHS + ShiftRHS != VT.getSizeInBits())
6649     return SDValue();
6650
6651   if (LHSFromHi) {
6652     std::swap(LHS, RHS);
6653     std::swap(ShiftLHS, ShiftRHS);
6654   }
6655
6656   return DAG.getNode(AArch64ISD::EXTR, DL, VT, LHS, RHS,
6657                      DAG.getConstant(ShiftRHS, MVT::i64));
6658 }
6659
6660 static SDValue tryCombineToBSL(SDNode *N,
6661                                 TargetLowering::DAGCombinerInfo &DCI) {
6662   EVT VT = N->getValueType(0);
6663   SelectionDAG &DAG = DCI.DAG;
6664   SDLoc DL(N);
6665
6666   if (!VT.isVector())
6667     return SDValue();
6668
6669   SDValue N0 = N->getOperand(0);
6670   if (N0.getOpcode() != ISD::AND)
6671     return SDValue();
6672
6673   SDValue N1 = N->getOperand(1);
6674   if (N1.getOpcode() != ISD::AND)
6675     return SDValue();
6676
6677   // We only have to look for constant vectors here since the general, variable
6678   // case can be handled in TableGen.
6679   unsigned Bits = VT.getVectorElementType().getSizeInBits();
6680   uint64_t BitMask = Bits == 64 ? -1ULL : ((1ULL << Bits) - 1);
6681   for (int i = 1; i >= 0; --i)
6682     for (int j = 1; j >= 0; --j) {
6683       BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(i));
6684       BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(j));
6685       if (!BVN0 || !BVN1)
6686         continue;
6687
6688       bool FoundMatch = true;
6689       for (unsigned k = 0; k < VT.getVectorNumElements(); ++k) {
6690         ConstantSDNode *CN0 = dyn_cast<ConstantSDNode>(BVN0->getOperand(k));
6691         ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(BVN1->getOperand(k));
6692         if (!CN0 || !CN1 ||
6693             CN0->getZExtValue() != (BitMask & ~CN1->getZExtValue())) {
6694           FoundMatch = false;
6695           break;
6696         }
6697       }
6698
6699       if (FoundMatch)
6700         return DAG.getNode(AArch64ISD::BSL, DL, VT, SDValue(BVN0, 0),
6701                            N0->getOperand(1 - i), N1->getOperand(1 - j));
6702     }
6703
6704   return SDValue();
6705 }
6706
6707 static SDValue performORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI,
6708                                 const AArch64Subtarget *Subtarget) {
6709   // Attempt to form an EXTR from (or (shl VAL1, #N), (srl VAL2, #RegWidth-N))
6710   if (!EnableAArch64ExtrGeneration)
6711     return SDValue();
6712   SelectionDAG &DAG = DCI.DAG;
6713   EVT VT = N->getValueType(0);
6714
6715   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
6716     return SDValue();
6717
6718   SDValue Res = tryCombineToEXTR(N, DCI);
6719   if (Res.getNode())
6720     return Res;
6721
6722   Res = tryCombineToBSL(N, DCI);
6723   if (Res.getNode())
6724     return Res;
6725
6726   return SDValue();
6727 }
6728
6729 static SDValue performBitcastCombine(SDNode *N,
6730                                      TargetLowering::DAGCombinerInfo &DCI,
6731                                      SelectionDAG &DAG) {
6732   // Wait 'til after everything is legalized to try this. That way we have
6733   // legal vector types and such.
6734   if (DCI.isBeforeLegalizeOps())
6735     return SDValue();
6736
6737   // Remove extraneous bitcasts around an extract_subvector.
6738   // For example,
6739   //    (v4i16 (bitconvert
6740   //             (extract_subvector (v2i64 (bitconvert (v8i16 ...)), (i64 1)))))
6741   //  becomes
6742   //    (extract_subvector ((v8i16 ...), (i64 4)))
6743
6744   // Only interested in 64-bit vectors as the ultimate result.
6745   EVT VT = N->getValueType(0);
6746   if (!VT.isVector())
6747     return SDValue();
6748   if (VT.getSimpleVT().getSizeInBits() != 64)
6749     return SDValue();
6750   // Is the operand an extract_subvector starting at the beginning or halfway
6751   // point of the vector? A low half may also come through as an
6752   // EXTRACT_SUBREG, so look for that, too.
6753   SDValue Op0 = N->getOperand(0);
6754   if (Op0->getOpcode() != ISD::EXTRACT_SUBVECTOR &&
6755       !(Op0->isMachineOpcode() &&
6756         Op0->getMachineOpcode() == AArch64::EXTRACT_SUBREG))
6757     return SDValue();
6758   uint64_t idx = cast<ConstantSDNode>(Op0->getOperand(1))->getZExtValue();
6759   if (Op0->getOpcode() == ISD::EXTRACT_SUBVECTOR) {
6760     if (Op0->getValueType(0).getVectorNumElements() != idx && idx != 0)
6761       return SDValue();
6762   } else if (Op0->getMachineOpcode() == AArch64::EXTRACT_SUBREG) {
6763     if (idx != AArch64::dsub)
6764       return SDValue();
6765     // The dsub reference is equivalent to a lane zero subvector reference.
6766     idx = 0;
6767   }
6768   // Look through the bitcast of the input to the extract.
6769   if (Op0->getOperand(0)->getOpcode() != ISD::BITCAST)
6770     return SDValue();
6771   SDValue Source = Op0->getOperand(0)->getOperand(0);
6772   // If the source type has twice the number of elements as our destination
6773   // type, we know this is an extract of the high or low half of the vector.
6774   EVT SVT = Source->getValueType(0);
6775   if (SVT.getVectorNumElements() != VT.getVectorNumElements() * 2)
6776     return SDValue();
6777
6778   DEBUG(dbgs() << "aarch64-lower: bitcast extract_subvector simplification\n");
6779
6780   // Create the simplified form to just extract the low or high half of the
6781   // vector directly rather than bothering with the bitcasts.
6782   SDLoc dl(N);
6783   unsigned NumElements = VT.getVectorNumElements();
6784   if (idx) {
6785     SDValue HalfIdx = DAG.getConstant(NumElements, MVT::i64);
6786     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, Source, HalfIdx);
6787   } else {
6788     SDValue SubReg = DAG.getTargetConstant(AArch64::dsub, MVT::i32);
6789     return SDValue(DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, dl, VT,
6790                                       Source, SubReg),
6791                    0);
6792   }
6793 }
6794
6795 static SDValue performConcatVectorsCombine(SDNode *N,
6796                                            TargetLowering::DAGCombinerInfo &DCI,
6797                                            SelectionDAG &DAG) {
6798   // Wait 'til after everything is legalized to try this. That way we have
6799   // legal vector types and such.
6800   if (DCI.isBeforeLegalizeOps())
6801     return SDValue();
6802
6803   SDLoc dl(N);
6804   EVT VT = N->getValueType(0);
6805
6806   // If we see a (concat_vectors (v1x64 A), (v1x64 A)) it's really a vector
6807   // splat. The indexed instructions are going to be expecting a DUPLANE64, so
6808   // canonicalise to that.
6809   if (N->getOperand(0) == N->getOperand(1) && VT.getVectorNumElements() == 2) {
6810     assert(VT.getVectorElementType().getSizeInBits() == 64);
6811     return DAG.getNode(AArch64ISD::DUPLANE64, dl, VT,
6812                        WidenVector(N->getOperand(0), DAG),
6813                        DAG.getConstant(0, MVT::i64));
6814   }
6815
6816   // Canonicalise concat_vectors so that the right-hand vector has as few
6817   // bit-casts as possible before its real operation. The primary matching
6818   // destination for these operations will be the narrowing "2" instructions,
6819   // which depend on the operation being performed on this right-hand vector.
6820   // For example,
6821   //    (concat_vectors LHS,  (v1i64 (bitconvert (v4i16 RHS))))
6822   // becomes
6823   //    (bitconvert (concat_vectors (v4i16 (bitconvert LHS)), RHS))
6824
6825   SDValue Op1 = N->getOperand(1);
6826   if (Op1->getOpcode() != ISD::BITCAST)
6827     return SDValue();
6828   SDValue RHS = Op1->getOperand(0);
6829   MVT RHSTy = RHS.getValueType().getSimpleVT();
6830   // If the RHS is not a vector, this is not the pattern we're looking for.
6831   if (!RHSTy.isVector())
6832     return SDValue();
6833
6834   DEBUG(dbgs() << "aarch64-lower: concat_vectors bitcast simplification\n");
6835
6836   MVT ConcatTy = MVT::getVectorVT(RHSTy.getVectorElementType(),
6837                                   RHSTy.getVectorNumElements() * 2);
6838   return DAG.getNode(
6839       ISD::BITCAST, dl, VT,
6840       DAG.getNode(ISD::CONCAT_VECTORS, dl, ConcatTy,
6841                   DAG.getNode(ISD::BITCAST, dl, RHSTy, N->getOperand(0)), RHS));
6842 }
6843
6844 static SDValue tryCombineFixedPointConvert(SDNode *N,
6845                                            TargetLowering::DAGCombinerInfo &DCI,
6846                                            SelectionDAG &DAG) {
6847   // Wait 'til after everything is legalized to try this. That way we have
6848   // legal vector types and such.
6849   if (DCI.isBeforeLegalizeOps())
6850     return SDValue();
6851   // Transform a scalar conversion of a value from a lane extract into a
6852   // lane extract of a vector conversion. E.g., from foo1 to foo2:
6853   // double foo1(int64x2_t a) { return vcvtd_n_f64_s64(a[1], 9); }
6854   // double foo2(int64x2_t a) { return vcvtq_n_f64_s64(a, 9)[1]; }
6855   //
6856   // The second form interacts better with instruction selection and the
6857   // register allocator to avoid cross-class register copies that aren't
6858   // coalescable due to a lane reference.
6859
6860   // Check the operand and see if it originates from a lane extract.
6861   SDValue Op1 = N->getOperand(1);
6862   if (Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
6863     // Yep, no additional predication needed. Perform the transform.
6864     SDValue IID = N->getOperand(0);
6865     SDValue Shift = N->getOperand(2);
6866     SDValue Vec = Op1.getOperand(0);
6867     SDValue Lane = Op1.getOperand(1);
6868     EVT ResTy = N->getValueType(0);
6869     EVT VecResTy;
6870     SDLoc DL(N);
6871
6872     // The vector width should be 128 bits by the time we get here, even
6873     // if it started as 64 bits (the extract_vector handling will have
6874     // done so).
6875     assert(Vec.getValueType().getSizeInBits() == 128 &&
6876            "unexpected vector size on extract_vector_elt!");
6877     if (Vec.getValueType() == MVT::v4i32)
6878       VecResTy = MVT::v4f32;
6879     else if (Vec.getValueType() == MVT::v2i64)
6880       VecResTy = MVT::v2f64;
6881     else
6882       llvm_unreachable("unexpected vector type!");
6883
6884     SDValue Convert =
6885         DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VecResTy, IID, Vec, Shift);
6886     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ResTy, Convert, Lane);
6887   }
6888   return SDValue();
6889 }
6890
6891 // AArch64 high-vector "long" operations are formed by performing the non-high
6892 // version on an extract_subvector of each operand which gets the high half:
6893 //
6894 //  (longop2 LHS, RHS) == (longop (extract_high LHS), (extract_high RHS))
6895 //
6896 // However, there are cases which don't have an extract_high explicitly, but
6897 // have another operation that can be made compatible with one for free. For
6898 // example:
6899 //
6900 //  (dupv64 scalar) --> (extract_high (dup128 scalar))
6901 //
6902 // This routine does the actual conversion of such DUPs, once outer routines
6903 // have determined that everything else is in order.
6904 static SDValue tryExtendDUPToExtractHigh(SDValue N, SelectionDAG &DAG) {
6905   // We can handle most types of duplicate, but the lane ones have an extra
6906   // operand saying *which* lane, so we need to know.
6907   bool IsDUPLANE;
6908   switch (N.getOpcode()) {
6909   case AArch64ISD::DUP:
6910     IsDUPLANE = false;
6911     break;
6912   case AArch64ISD::DUPLANE8:
6913   case AArch64ISD::DUPLANE16:
6914   case AArch64ISD::DUPLANE32:
6915   case AArch64ISD::DUPLANE64:
6916     IsDUPLANE = true;
6917     break;
6918   default:
6919     return SDValue();
6920   }
6921
6922   MVT NarrowTy = N.getSimpleValueType();
6923   if (!NarrowTy.is64BitVector())
6924     return SDValue();
6925
6926   MVT ElementTy = NarrowTy.getVectorElementType();
6927   unsigned NumElems = NarrowTy.getVectorNumElements();
6928   MVT NewDUPVT = MVT::getVectorVT(ElementTy, NumElems * 2);
6929
6930   SDValue NewDUP;
6931   if (IsDUPLANE)
6932     NewDUP = DAG.getNode(N.getOpcode(), SDLoc(N), NewDUPVT, N.getOperand(0),
6933                          N.getOperand(1));
6934   else
6935     NewDUP = DAG.getNode(AArch64ISD::DUP, SDLoc(N), NewDUPVT, N.getOperand(0));
6936
6937   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, SDLoc(N.getNode()), NarrowTy,
6938                      NewDUP, DAG.getConstant(NumElems, MVT::i64));
6939 }
6940
6941 static bool isEssentiallyExtractSubvector(SDValue N) {
6942   if (N.getOpcode() == ISD::EXTRACT_SUBVECTOR)
6943     return true;
6944
6945   return N.getOpcode() == ISD::BITCAST &&
6946          N.getOperand(0).getOpcode() == ISD::EXTRACT_SUBVECTOR;
6947 }
6948
6949 /// \brief Helper structure to keep track of ISD::SET_CC operands.
6950 struct GenericSetCCInfo {
6951   const SDValue *Opnd0;
6952   const SDValue *Opnd1;
6953   ISD::CondCode CC;
6954 };
6955
6956 /// \brief Helper structure to keep track of a SET_CC lowered into AArch64 code.
6957 struct AArch64SetCCInfo {
6958   const SDValue *Cmp;
6959   AArch64CC::CondCode CC;
6960 };
6961
6962 /// \brief Helper structure to keep track of SetCC information.
6963 union SetCCInfo {
6964   GenericSetCCInfo Generic;
6965   AArch64SetCCInfo AArch64;
6966 };
6967
6968 /// \brief Helper structure to be able to read SetCC information.  If set to
6969 /// true, IsAArch64 field, Info is a AArch64SetCCInfo, otherwise Info is a
6970 /// GenericSetCCInfo.
6971 struct SetCCInfoAndKind {
6972   SetCCInfo Info;
6973   bool IsAArch64;
6974 };
6975
6976 /// \brief Check whether or not \p Op is a SET_CC operation, either a generic or
6977 /// an
6978 /// AArch64 lowered one.
6979 /// \p SetCCInfo is filled accordingly.
6980 /// \post SetCCInfo is meanginfull only when this function returns true.
6981 /// \return True when Op is a kind of SET_CC operation.
6982 static bool isSetCC(SDValue Op, SetCCInfoAndKind &SetCCInfo) {
6983   // If this is a setcc, this is straight forward.
6984   if (Op.getOpcode() == ISD::SETCC) {
6985     SetCCInfo.Info.Generic.Opnd0 = &Op.getOperand(0);
6986     SetCCInfo.Info.Generic.Opnd1 = &Op.getOperand(1);
6987     SetCCInfo.Info.Generic.CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
6988     SetCCInfo.IsAArch64 = false;
6989     return true;
6990   }
6991   // Otherwise, check if this is a matching csel instruction.
6992   // In other words:
6993   // - csel 1, 0, cc
6994   // - csel 0, 1, !cc
6995   if (Op.getOpcode() != AArch64ISD::CSEL)
6996     return false;
6997   // Set the information about the operands.
6998   // TODO: we want the operands of the Cmp not the csel
6999   SetCCInfo.Info.AArch64.Cmp = &Op.getOperand(3);
7000   SetCCInfo.IsAArch64 = true;
7001   SetCCInfo.Info.AArch64.CC = static_cast<AArch64CC::CondCode>(
7002       cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
7003
7004   // Check that the operands matches the constraints:
7005   // (1) Both operands must be constants.
7006   // (2) One must be 1 and the other must be 0.
7007   ConstantSDNode *TValue = dyn_cast<ConstantSDNode>(Op.getOperand(0));
7008   ConstantSDNode *FValue = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7009
7010   // Check (1).
7011   if (!TValue || !FValue)
7012     return false;
7013
7014   // Check (2).
7015   if (!TValue->isOne()) {
7016     // Update the comparison when we are interested in !cc.
7017     std::swap(TValue, FValue);
7018     SetCCInfo.Info.AArch64.CC =
7019         AArch64CC::getInvertedCondCode(SetCCInfo.Info.AArch64.CC);
7020   }
7021   return TValue->isOne() && FValue->isNullValue();
7022 }
7023
7024 // Returns true if Op is setcc or zext of setcc.
7025 static bool isSetCCOrZExtSetCC(const SDValue& Op, SetCCInfoAndKind &Info) {
7026   if (isSetCC(Op, Info))
7027     return true;
7028   return ((Op.getOpcode() == ISD::ZERO_EXTEND) &&
7029     isSetCC(Op->getOperand(0), Info));
7030 }
7031
7032 // The folding we want to perform is:
7033 // (add x, [zext] (setcc cc ...) )
7034 //   -->
7035 // (csel x, (add x, 1), !cc ...)
7036 //
7037 // The latter will get matched to a CSINC instruction.
7038 static SDValue performSetccAddFolding(SDNode *Op, SelectionDAG &DAG) {
7039   assert(Op && Op->getOpcode() == ISD::ADD && "Unexpected operation!");
7040   SDValue LHS = Op->getOperand(0);
7041   SDValue RHS = Op->getOperand(1);
7042   SetCCInfoAndKind InfoAndKind;
7043
7044   // If neither operand is a SET_CC, give up.
7045   if (!isSetCCOrZExtSetCC(LHS, InfoAndKind)) {
7046     std::swap(LHS, RHS);
7047     if (!isSetCCOrZExtSetCC(LHS, InfoAndKind))
7048       return SDValue();
7049   }
7050
7051   // FIXME: This could be generatized to work for FP comparisons.
7052   EVT CmpVT = InfoAndKind.IsAArch64
7053                   ? InfoAndKind.Info.AArch64.Cmp->getOperand(0).getValueType()
7054                   : InfoAndKind.Info.Generic.Opnd0->getValueType();
7055   if (CmpVT != MVT::i32 && CmpVT != MVT::i64)
7056     return SDValue();
7057
7058   SDValue CCVal;
7059   SDValue Cmp;
7060   SDLoc dl(Op);
7061   if (InfoAndKind.IsAArch64) {
7062     CCVal = DAG.getConstant(
7063         AArch64CC::getInvertedCondCode(InfoAndKind.Info.AArch64.CC), MVT::i32);
7064     Cmp = *InfoAndKind.Info.AArch64.Cmp;
7065   } else
7066     Cmp = getAArch64Cmp(*InfoAndKind.Info.Generic.Opnd0,
7067                       *InfoAndKind.Info.Generic.Opnd1,
7068                       ISD::getSetCCInverse(InfoAndKind.Info.Generic.CC, true),
7069                       CCVal, DAG, dl);
7070
7071   EVT VT = Op->getValueType(0);
7072   LHS = DAG.getNode(ISD::ADD, dl, VT, RHS, DAG.getConstant(1, VT));
7073   return DAG.getNode(AArch64ISD::CSEL, dl, VT, RHS, LHS, CCVal, Cmp);
7074 }
7075
7076 // The basic add/sub long vector instructions have variants with "2" on the end
7077 // which act on the high-half of their inputs. They are normally matched by
7078 // patterns like:
7079 //
7080 // (add (zeroext (extract_high LHS)),
7081 //      (zeroext (extract_high RHS)))
7082 // -> uaddl2 vD, vN, vM
7083 //
7084 // However, if one of the extracts is something like a duplicate, this
7085 // instruction can still be used profitably. This function puts the DAG into a
7086 // more appropriate form for those patterns to trigger.
7087 static SDValue performAddSubLongCombine(SDNode *N,
7088                                         TargetLowering::DAGCombinerInfo &DCI,
7089                                         SelectionDAG &DAG) {
7090   if (DCI.isBeforeLegalizeOps())
7091     return SDValue();
7092
7093   MVT VT = N->getSimpleValueType(0);
7094   if (!VT.is128BitVector()) {
7095     if (N->getOpcode() == ISD::ADD)
7096       return performSetccAddFolding(N, DAG);
7097     return SDValue();
7098   }
7099
7100   // Make sure both branches are extended in the same way.
7101   SDValue LHS = N->getOperand(0);
7102   SDValue RHS = N->getOperand(1);
7103   if ((LHS.getOpcode() != ISD::ZERO_EXTEND &&
7104        LHS.getOpcode() != ISD::SIGN_EXTEND) ||
7105       LHS.getOpcode() != RHS.getOpcode())
7106     return SDValue();
7107
7108   unsigned ExtType = LHS.getOpcode();
7109
7110   // It's not worth doing if at least one of the inputs isn't already an
7111   // extract, but we don't know which it'll be so we have to try both.
7112   if (isEssentiallyExtractSubvector(LHS.getOperand(0))) {
7113     RHS = tryExtendDUPToExtractHigh(RHS.getOperand(0), DAG);
7114     if (!RHS.getNode())
7115       return SDValue();
7116
7117     RHS = DAG.getNode(ExtType, SDLoc(N), VT, RHS);
7118   } else if (isEssentiallyExtractSubvector(RHS.getOperand(0))) {
7119     LHS = tryExtendDUPToExtractHigh(LHS.getOperand(0), DAG);
7120     if (!LHS.getNode())
7121       return SDValue();
7122
7123     LHS = DAG.getNode(ExtType, SDLoc(N), VT, LHS);
7124   }
7125
7126   return DAG.getNode(N->getOpcode(), SDLoc(N), VT, LHS, RHS);
7127 }
7128
7129 // Massage DAGs which we can use the high-half "long" operations on into
7130 // something isel will recognize better. E.g.
7131 //
7132 // (aarch64_neon_umull (extract_high vec) (dupv64 scalar)) -->
7133 //   (aarch64_neon_umull (extract_high (v2i64 vec)))
7134 //                     (extract_high (v2i64 (dup128 scalar)))))
7135 //
7136 static SDValue tryCombineLongOpWithDup(unsigned IID, SDNode *N,
7137                                        TargetLowering::DAGCombinerInfo &DCI,
7138                                        SelectionDAG &DAG) {
7139   if (DCI.isBeforeLegalizeOps())
7140     return SDValue();
7141
7142   SDValue LHS = N->getOperand(1);
7143   SDValue RHS = N->getOperand(2);
7144   assert(LHS.getValueType().is64BitVector() &&
7145          RHS.getValueType().is64BitVector() &&
7146          "unexpected shape for long operation");
7147
7148   // Either node could be a DUP, but it's not worth doing both of them (you'd
7149   // just as well use the non-high version) so look for a corresponding extract
7150   // operation on the other "wing".
7151   if (isEssentiallyExtractSubvector(LHS)) {
7152     RHS = tryExtendDUPToExtractHigh(RHS, DAG);
7153     if (!RHS.getNode())
7154       return SDValue();
7155   } else if (isEssentiallyExtractSubvector(RHS)) {
7156     LHS = tryExtendDUPToExtractHigh(LHS, DAG);
7157     if (!LHS.getNode())
7158       return SDValue();
7159   }
7160
7161   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), N->getValueType(0),
7162                      N->getOperand(0), LHS, RHS);
7163 }
7164
7165 static SDValue tryCombineShiftImm(unsigned IID, SDNode *N, SelectionDAG &DAG) {
7166   MVT ElemTy = N->getSimpleValueType(0).getScalarType();
7167   unsigned ElemBits = ElemTy.getSizeInBits();
7168
7169   int64_t ShiftAmount;
7170   if (BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(2))) {
7171     APInt SplatValue, SplatUndef;
7172     unsigned SplatBitSize;
7173     bool HasAnyUndefs;
7174     if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
7175                               HasAnyUndefs, ElemBits) ||
7176         SplatBitSize != ElemBits)
7177       return SDValue();
7178
7179     ShiftAmount = SplatValue.getSExtValue();
7180   } else if (ConstantSDNode *CVN = dyn_cast<ConstantSDNode>(N->getOperand(2))) {
7181     ShiftAmount = CVN->getSExtValue();
7182   } else
7183     return SDValue();
7184
7185   unsigned Opcode;
7186   bool IsRightShift;
7187   switch (IID) {
7188   default:
7189     llvm_unreachable("Unknown shift intrinsic");
7190   case Intrinsic::aarch64_neon_sqshl:
7191     Opcode = AArch64ISD::SQSHL_I;
7192     IsRightShift = false;
7193     break;
7194   case Intrinsic::aarch64_neon_uqshl:
7195     Opcode = AArch64ISD::UQSHL_I;
7196     IsRightShift = false;
7197     break;
7198   case Intrinsic::aarch64_neon_srshl:
7199     Opcode = AArch64ISD::SRSHR_I;
7200     IsRightShift = true;
7201     break;
7202   case Intrinsic::aarch64_neon_urshl:
7203     Opcode = AArch64ISD::URSHR_I;
7204     IsRightShift = true;
7205     break;
7206   case Intrinsic::aarch64_neon_sqshlu:
7207     Opcode = AArch64ISD::SQSHLU_I;
7208     IsRightShift = false;
7209     break;
7210   }
7211
7212   if (IsRightShift && ShiftAmount <= -1 && ShiftAmount >= -(int)ElemBits)
7213     return DAG.getNode(Opcode, SDLoc(N), N->getValueType(0), N->getOperand(1),
7214                        DAG.getConstant(-ShiftAmount, MVT::i32));
7215   else if (!IsRightShift && ShiftAmount >= 0 && ShiftAmount < ElemBits)
7216     return DAG.getNode(Opcode, SDLoc(N), N->getValueType(0), N->getOperand(1),
7217                        DAG.getConstant(ShiftAmount, MVT::i32));
7218
7219   return SDValue();
7220 }
7221
7222 // The CRC32[BH] instructions ignore the high bits of their data operand. Since
7223 // the intrinsics must be legal and take an i32, this means there's almost
7224 // certainly going to be a zext in the DAG which we can eliminate.
7225 static SDValue tryCombineCRC32(unsigned Mask, SDNode *N, SelectionDAG &DAG) {
7226   SDValue AndN = N->getOperand(2);
7227   if (AndN.getOpcode() != ISD::AND)
7228     return SDValue();
7229
7230   ConstantSDNode *CMask = dyn_cast<ConstantSDNode>(AndN.getOperand(1));
7231   if (!CMask || CMask->getZExtValue() != Mask)
7232     return SDValue();
7233
7234   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), MVT::i32,
7235                      N->getOperand(0), N->getOperand(1), AndN.getOperand(0));
7236 }
7237
7238 static SDValue performIntrinsicCombine(SDNode *N,
7239                                        TargetLowering::DAGCombinerInfo &DCI,
7240                                        const AArch64Subtarget *Subtarget) {
7241   SelectionDAG &DAG = DCI.DAG;
7242   unsigned IID = getIntrinsicID(N);
7243   switch (IID) {
7244   default:
7245     break;
7246   case Intrinsic::aarch64_neon_vcvtfxs2fp:
7247   case Intrinsic::aarch64_neon_vcvtfxu2fp:
7248     return tryCombineFixedPointConvert(N, DCI, DAG);
7249     break;
7250   case Intrinsic::aarch64_neon_fmax:
7251     return DAG.getNode(AArch64ISD::FMAX, SDLoc(N), N->getValueType(0),
7252                        N->getOperand(1), N->getOperand(2));
7253   case Intrinsic::aarch64_neon_fmin:
7254     return DAG.getNode(AArch64ISD::FMIN, SDLoc(N), N->getValueType(0),
7255                        N->getOperand(1), N->getOperand(2));
7256   case Intrinsic::aarch64_neon_smull:
7257   case Intrinsic::aarch64_neon_umull:
7258   case Intrinsic::aarch64_neon_pmull:
7259   case Intrinsic::aarch64_neon_sqdmull:
7260     return tryCombineLongOpWithDup(IID, N, DCI, DAG);
7261   case Intrinsic::aarch64_neon_sqshl:
7262   case Intrinsic::aarch64_neon_uqshl:
7263   case Intrinsic::aarch64_neon_sqshlu:
7264   case Intrinsic::aarch64_neon_srshl:
7265   case Intrinsic::aarch64_neon_urshl:
7266     return tryCombineShiftImm(IID, N, DAG);
7267   case Intrinsic::aarch64_crc32b:
7268   case Intrinsic::aarch64_crc32cb:
7269     return tryCombineCRC32(0xff, N, DAG);
7270   case Intrinsic::aarch64_crc32h:
7271   case Intrinsic::aarch64_crc32ch:
7272     return tryCombineCRC32(0xffff, N, DAG);
7273   }
7274   return SDValue();
7275 }
7276
7277 static SDValue performExtendCombine(SDNode *N,
7278                                     TargetLowering::DAGCombinerInfo &DCI,
7279                                     SelectionDAG &DAG) {
7280   // If we see something like (zext (sabd (extract_high ...), (DUP ...))) then
7281   // we can convert that DUP into another extract_high (of a bigger DUP), which
7282   // helps the backend to decide that an sabdl2 would be useful, saving a real
7283   // extract_high operation.
7284   if (!DCI.isBeforeLegalizeOps() && N->getOpcode() == ISD::ZERO_EXTEND &&
7285       N->getOperand(0).getOpcode() == ISD::INTRINSIC_WO_CHAIN) {
7286     SDNode *ABDNode = N->getOperand(0).getNode();
7287     unsigned IID = getIntrinsicID(ABDNode);
7288     if (IID == Intrinsic::aarch64_neon_sabd ||
7289         IID == Intrinsic::aarch64_neon_uabd) {
7290       SDValue NewABD = tryCombineLongOpWithDup(IID, ABDNode, DCI, DAG);
7291       if (!NewABD.getNode())
7292         return SDValue();
7293
7294       return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), N->getValueType(0),
7295                          NewABD);
7296     }
7297   }
7298
7299   // This is effectively a custom type legalization for AArch64.
7300   //
7301   // Type legalization will split an extend of a small, legal, type to a larger
7302   // illegal type by first splitting the destination type, often creating
7303   // illegal source types, which then get legalized in isel-confusing ways,
7304   // leading to really terrible codegen. E.g.,
7305   //   %result = v8i32 sext v8i8 %value
7306   // becomes
7307   //   %losrc = extract_subreg %value, ...
7308   //   %hisrc = extract_subreg %value, ...
7309   //   %lo = v4i32 sext v4i8 %losrc
7310   //   %hi = v4i32 sext v4i8 %hisrc
7311   // Things go rapidly downhill from there.
7312   //
7313   // For AArch64, the [sz]ext vector instructions can only go up one element
7314   // size, so we can, e.g., extend from i8 to i16, but to go from i8 to i32
7315   // take two instructions.
7316   //
7317   // This implies that the most efficient way to do the extend from v8i8
7318   // to two v4i32 values is to first extend the v8i8 to v8i16, then do
7319   // the normal splitting to happen for the v8i16->v8i32.
7320
7321   // This is pre-legalization to catch some cases where the default
7322   // type legalization will create ill-tempered code.
7323   if (!DCI.isBeforeLegalizeOps())
7324     return SDValue();
7325
7326   // We're only interested in cleaning things up for non-legal vector types
7327   // here. If both the source and destination are legal, things will just
7328   // work naturally without any fiddling.
7329   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
7330   EVT ResVT = N->getValueType(0);
7331   if (!ResVT.isVector() || TLI.isTypeLegal(ResVT))
7332     return SDValue();
7333   // If the vector type isn't a simple VT, it's beyond the scope of what
7334   // we're  worried about here. Let legalization do its thing and hope for
7335   // the best.
7336   if (!ResVT.isSimple())
7337     return SDValue();
7338
7339   SDValue Src = N->getOperand(0);
7340   MVT SrcVT = Src->getValueType(0).getSimpleVT();
7341   // If the source VT is a 64-bit vector, we can play games and get the
7342   // better results we want.
7343   if (SrcVT.getSizeInBits() != 64)
7344     return SDValue();
7345
7346   unsigned SrcEltSize = SrcVT.getVectorElementType().getSizeInBits();
7347   unsigned ElementCount = SrcVT.getVectorNumElements();
7348   SrcVT = MVT::getVectorVT(MVT::getIntegerVT(SrcEltSize * 2), ElementCount);
7349   SDLoc DL(N);
7350   Src = DAG.getNode(N->getOpcode(), DL, SrcVT, Src);
7351
7352   // Now split the rest of the operation into two halves, each with a 64
7353   // bit source.
7354   EVT LoVT, HiVT;
7355   SDValue Lo, Hi;
7356   unsigned NumElements = ResVT.getVectorNumElements();
7357   assert(!(NumElements & 1) && "Splitting vector, but not in half!");
7358   LoVT = HiVT = EVT::getVectorVT(*DAG.getContext(),
7359                                  ResVT.getVectorElementType(), NumElements / 2);
7360
7361   EVT InNVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
7362                                LoVT.getVectorNumElements());
7363   Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, Src,
7364                    DAG.getIntPtrConstant(0));
7365   Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, Src,
7366                    DAG.getIntPtrConstant(InNVT.getVectorNumElements()));
7367   Lo = DAG.getNode(N->getOpcode(), DL, LoVT, Lo);
7368   Hi = DAG.getNode(N->getOpcode(), DL, HiVT, Hi);
7369
7370   // Now combine the parts back together so we still have a single result
7371   // like the combiner expects.
7372   return DAG.getNode(ISD::CONCAT_VECTORS, DL, ResVT, Lo, Hi);
7373 }
7374
7375 /// Replace a splat of a scalar to a vector store by scalar stores of the scalar
7376 /// value. The load store optimizer pass will merge them to store pair stores.
7377 /// This has better performance than a splat of the scalar followed by a split
7378 /// vector store. Even if the stores are not merged it is four stores vs a dup,
7379 /// followed by an ext.b and two stores.
7380 static SDValue replaceSplatVectorStore(SelectionDAG &DAG, StoreSDNode *St) {
7381   SDValue StVal = St->getValue();
7382   EVT VT = StVal.getValueType();
7383
7384   // Don't replace floating point stores, they possibly won't be transformed to
7385   // stp because of the store pair suppress pass.
7386   if (VT.isFloatingPoint())
7387     return SDValue();
7388
7389   // Check for insert vector elements.
7390   if (StVal.getOpcode() != ISD::INSERT_VECTOR_ELT)
7391     return SDValue();
7392
7393   // We can express a splat as store pair(s) for 2 or 4 elements.
7394   unsigned NumVecElts = VT.getVectorNumElements();
7395   if (NumVecElts != 4 && NumVecElts != 2)
7396     return SDValue();
7397   SDValue SplatVal = StVal.getOperand(1);
7398   unsigned RemainInsertElts = NumVecElts - 1;
7399
7400   // Check that this is a splat.
7401   while (--RemainInsertElts) {
7402     SDValue NextInsertElt = StVal.getOperand(0);
7403     if (NextInsertElt.getOpcode() != ISD::INSERT_VECTOR_ELT)
7404       return SDValue();
7405     if (NextInsertElt.getOperand(1) != SplatVal)
7406       return SDValue();
7407     StVal = NextInsertElt;
7408   }
7409   unsigned OrigAlignment = St->getAlignment();
7410   unsigned EltOffset = NumVecElts == 4 ? 4 : 8;
7411   unsigned Alignment = std::min(OrigAlignment, EltOffset);
7412
7413   // Create scalar stores. This is at least as good as the code sequence for a
7414   // split unaligned store wich is a dup.s, ext.b, and two stores.
7415   // Most of the time the three stores should be replaced by store pair
7416   // instructions (stp).
7417   SDLoc DL(St);
7418   SDValue BasePtr = St->getBasePtr();
7419   SDValue NewST1 =
7420       DAG.getStore(St->getChain(), DL, SplatVal, BasePtr, St->getPointerInfo(),
7421                    St->isVolatile(), St->isNonTemporal(), St->getAlignment());
7422
7423   unsigned Offset = EltOffset;
7424   while (--NumVecElts) {
7425     SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
7426                                     DAG.getConstant(Offset, MVT::i64));
7427     NewST1 = DAG.getStore(NewST1.getValue(0), DL, SplatVal, OffsetPtr,
7428                           St->getPointerInfo(), St->isVolatile(),
7429                           St->isNonTemporal(), Alignment);
7430     Offset += EltOffset;
7431   }
7432   return NewST1;
7433 }
7434
7435 static SDValue performSTORECombine(SDNode *N,
7436                                    TargetLowering::DAGCombinerInfo &DCI,
7437                                    SelectionDAG &DAG,
7438                                    const AArch64Subtarget *Subtarget) {
7439   if (!DCI.isBeforeLegalize())
7440     return SDValue();
7441
7442   StoreSDNode *S = cast<StoreSDNode>(N);
7443   if (S->isVolatile())
7444     return SDValue();
7445
7446   // Cyclone has bad performance on unaligned 16B stores when crossing line and
7447   // page boundries. We want to split such stores.
7448   if (!Subtarget->isCyclone())
7449     return SDValue();
7450
7451   // Don't split at Oz.
7452   MachineFunction &MF = DAG.getMachineFunction();
7453   bool IsMinSize = MF.getFunction()->getAttributes().hasAttribute(
7454       AttributeSet::FunctionIndex, Attribute::MinSize);
7455   if (IsMinSize)
7456     return SDValue();
7457
7458   SDValue StVal = S->getValue();
7459   EVT VT = StVal.getValueType();
7460
7461   // Don't split v2i64 vectors. Memcpy lowering produces those and splitting
7462   // those up regresses performance on micro-benchmarks and olden/bh.
7463   if (!VT.isVector() || VT.getVectorNumElements() < 2 || VT == MVT::v2i64)
7464     return SDValue();
7465
7466   // Split unaligned 16B stores. They are terrible for performance.
7467   // Don't split stores with alignment of 1 or 2. Code that uses clang vector
7468   // extensions can use this to mark that it does not want splitting to happen
7469   // (by underspecifying alignment to be 1 or 2). Furthermore, the chance of
7470   // eliminating alignment hazards is only 1 in 8 for alignment of 2.
7471   if (VT.getSizeInBits() != 128 || S->getAlignment() >= 16 ||
7472       S->getAlignment() <= 2)
7473     return SDValue();
7474
7475   // If we get a splat of a scalar convert this vector store to a store of
7476   // scalars. They will be merged into store pairs thereby removing two
7477   // instructions.
7478   SDValue ReplacedSplat = replaceSplatVectorStore(DAG, S);
7479   if (ReplacedSplat != SDValue())
7480     return ReplacedSplat;
7481
7482   SDLoc DL(S);
7483   unsigned NumElts = VT.getVectorNumElements() / 2;
7484   // Split VT into two.
7485   EVT HalfVT =
7486       EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(), NumElts);
7487   SDValue SubVector0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HalfVT, StVal,
7488                                    DAG.getIntPtrConstant(0));
7489   SDValue SubVector1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HalfVT, StVal,
7490                                    DAG.getIntPtrConstant(NumElts));
7491   SDValue BasePtr = S->getBasePtr();
7492   SDValue NewST1 =
7493       DAG.getStore(S->getChain(), DL, SubVector0, BasePtr, S->getPointerInfo(),
7494                    S->isVolatile(), S->isNonTemporal(), S->getAlignment());
7495   SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
7496                                   DAG.getConstant(8, MVT::i64));
7497   return DAG.getStore(NewST1.getValue(0), DL, SubVector1, OffsetPtr,
7498                       S->getPointerInfo(), S->isVolatile(), S->isNonTemporal(),
7499                       S->getAlignment());
7500 }
7501
7502 /// Target-specific DAG combine function for post-increment LD1 (lane) and
7503 /// post-increment LD1R.
7504 static SDValue performPostLD1Combine(SDNode *N,
7505                                      TargetLowering::DAGCombinerInfo &DCI,
7506                                      bool IsLaneOp) {
7507   if (DCI.isBeforeLegalizeOps())
7508     return SDValue();
7509
7510   SelectionDAG &DAG = DCI.DAG;
7511   EVT VT = N->getValueType(0);
7512
7513   unsigned LoadIdx = IsLaneOp ? 1 : 0;
7514   SDNode *LD = N->getOperand(LoadIdx).getNode();
7515   // If it is not LOAD, can not do such combine.
7516   if (LD->getOpcode() != ISD::LOAD)
7517     return SDValue();
7518
7519   LoadSDNode *LoadSDN = cast<LoadSDNode>(LD);
7520   EVT MemVT = LoadSDN->getMemoryVT();
7521   // Check if memory operand is the same type as the vector element.
7522   if (MemVT != VT.getVectorElementType())
7523     return SDValue();
7524
7525   // Check if there are other uses. If so, do not combine as it will introduce
7526   // an extra load.
7527   for (SDNode::use_iterator UI = LD->use_begin(), UE = LD->use_end(); UI != UE;
7528        ++UI) {
7529     if (UI.getUse().getResNo() == 1) // Ignore uses of the chain result.
7530       continue;
7531     if (*UI != N)
7532       return SDValue();
7533   }
7534
7535   SDValue Addr = LD->getOperand(1);
7536   SDValue Vector = N->getOperand(0);
7537   // Search for a use of the address operand that is an increment.
7538   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(), UE =
7539        Addr.getNode()->use_end(); UI != UE; ++UI) {
7540     SDNode *User = *UI;
7541     if (User->getOpcode() != ISD::ADD
7542         || UI.getUse().getResNo() != Addr.getResNo())
7543       continue;
7544
7545     // Check that the add is independent of the load.  Otherwise, folding it
7546     // would create a cycle.
7547     if (User->isPredecessorOf(LD) || LD->isPredecessorOf(User))
7548       continue;
7549     // Also check that add is not used in the vector operand.  This would also
7550     // create a cycle.
7551     if (User->isPredecessorOf(Vector.getNode()))
7552       continue;
7553
7554     // If the increment is a constant, it must match the memory ref size.
7555     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
7556     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
7557       uint32_t IncVal = CInc->getZExtValue();
7558       unsigned NumBytes = VT.getScalarSizeInBits() / 8;
7559       if (IncVal != NumBytes)
7560         continue;
7561       Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
7562     }
7563
7564     SmallVector<SDValue, 8> Ops;
7565     Ops.push_back(LD->getOperand(0));  // Chain
7566     if (IsLaneOp) {
7567       Ops.push_back(Vector);           // The vector to be inserted
7568       Ops.push_back(N->getOperand(2)); // The lane to be inserted in the vector
7569     }
7570     Ops.push_back(Addr);
7571     Ops.push_back(Inc);
7572
7573     EVT Tys[3] = { VT, MVT::i64, MVT::Other };
7574     SDVTList SDTys = DAG.getVTList(ArrayRef<EVT>(Tys, 3));
7575     unsigned NewOp = IsLaneOp ? AArch64ISD::LD1LANEpost : AArch64ISD::LD1DUPpost;
7576     SDValue UpdN = DAG.getMemIntrinsicNode(NewOp, SDLoc(N), SDTys, Ops,
7577                                            MemVT,
7578                                            LoadSDN->getMemOperand());
7579
7580     // Update the uses.
7581     std::vector<SDValue> NewResults;
7582     NewResults.push_back(SDValue(LD, 0));             // The result of load
7583     NewResults.push_back(SDValue(UpdN.getNode(), 2)); // Chain
7584     DCI.CombineTo(LD, NewResults);
7585     DCI.CombineTo(N, SDValue(UpdN.getNode(), 0));     // Dup/Inserted Result
7586     DCI.CombineTo(User, SDValue(UpdN.getNode(), 1));  // Write back register
7587
7588     break;
7589   }
7590   return SDValue();
7591 }
7592
7593 /// Target-specific DAG combine function for NEON load/store intrinsics
7594 /// to merge base address updates.
7595 static SDValue performNEONPostLDSTCombine(SDNode *N,
7596                                           TargetLowering::DAGCombinerInfo &DCI,
7597                                           SelectionDAG &DAG) {
7598   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
7599     return SDValue();
7600
7601   unsigned AddrOpIdx = N->getNumOperands() - 1;
7602   SDValue Addr = N->getOperand(AddrOpIdx);
7603
7604   // Search for a use of the address operand that is an increment.
7605   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
7606        UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
7607     SDNode *User = *UI;
7608     if (User->getOpcode() != ISD::ADD ||
7609         UI.getUse().getResNo() != Addr.getResNo())
7610       continue;
7611
7612     // Check that the add is independent of the load/store.  Otherwise, folding
7613     // it would create a cycle.
7614     if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
7615       continue;
7616
7617     // Find the new opcode for the updating load/store.
7618     bool IsStore = false;
7619     bool IsLaneOp = false;
7620     bool IsDupOp = false;
7621     unsigned NewOpc = 0;
7622     unsigned NumVecs = 0;
7623     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
7624     switch (IntNo) {
7625     default: llvm_unreachable("unexpected intrinsic for Neon base update");
7626     case Intrinsic::aarch64_neon_ld2:       NewOpc = AArch64ISD::LD2post;
7627       NumVecs = 2; break;
7628     case Intrinsic::aarch64_neon_ld3:       NewOpc = AArch64ISD::LD3post;
7629       NumVecs = 3; break;
7630     case Intrinsic::aarch64_neon_ld4:       NewOpc = AArch64ISD::LD4post;
7631       NumVecs = 4; break;
7632     case Intrinsic::aarch64_neon_st2:       NewOpc = AArch64ISD::ST2post;
7633       NumVecs = 2; IsStore = true; break;
7634     case Intrinsic::aarch64_neon_st3:       NewOpc = AArch64ISD::ST3post;
7635       NumVecs = 3; IsStore = true; break;
7636     case Intrinsic::aarch64_neon_st4:       NewOpc = AArch64ISD::ST4post;
7637       NumVecs = 4; IsStore = true; break;
7638     case Intrinsic::aarch64_neon_ld1x2:     NewOpc = AArch64ISD::LD1x2post;
7639       NumVecs = 2; break;
7640     case Intrinsic::aarch64_neon_ld1x3:     NewOpc = AArch64ISD::LD1x3post;
7641       NumVecs = 3; break;
7642     case Intrinsic::aarch64_neon_ld1x4:     NewOpc = AArch64ISD::LD1x4post;
7643       NumVecs = 4; break;
7644     case Intrinsic::aarch64_neon_st1x2:     NewOpc = AArch64ISD::ST1x2post;
7645       NumVecs = 2; IsStore = true; break;
7646     case Intrinsic::aarch64_neon_st1x3:     NewOpc = AArch64ISD::ST1x3post;
7647       NumVecs = 3; IsStore = true; break;
7648     case Intrinsic::aarch64_neon_st1x4:     NewOpc = AArch64ISD::ST1x4post;
7649       NumVecs = 4; IsStore = true; break;
7650     case Intrinsic::aarch64_neon_ld2r:      NewOpc = AArch64ISD::LD2DUPpost;
7651       NumVecs = 2; IsDupOp = true; break;
7652     case Intrinsic::aarch64_neon_ld3r:      NewOpc = AArch64ISD::LD3DUPpost;
7653       NumVecs = 3; IsDupOp = true; break;
7654     case Intrinsic::aarch64_neon_ld4r:      NewOpc = AArch64ISD::LD4DUPpost;
7655       NumVecs = 4; IsDupOp = true; break;
7656     case Intrinsic::aarch64_neon_ld2lane:   NewOpc = AArch64ISD::LD2LANEpost;
7657       NumVecs = 2; IsLaneOp = true; break;
7658     case Intrinsic::aarch64_neon_ld3lane:   NewOpc = AArch64ISD::LD3LANEpost;
7659       NumVecs = 3; IsLaneOp = true; break;
7660     case Intrinsic::aarch64_neon_ld4lane:   NewOpc = AArch64ISD::LD4LANEpost;
7661       NumVecs = 4; IsLaneOp = true; break;
7662     case Intrinsic::aarch64_neon_st2lane:   NewOpc = AArch64ISD::ST2LANEpost;
7663       NumVecs = 2; IsStore = true; IsLaneOp = true; break;
7664     case Intrinsic::aarch64_neon_st3lane:   NewOpc = AArch64ISD::ST3LANEpost;
7665       NumVecs = 3; IsStore = true; IsLaneOp = true; break;
7666     case Intrinsic::aarch64_neon_st4lane:   NewOpc = AArch64ISD::ST4LANEpost;
7667       NumVecs = 4; IsStore = true; IsLaneOp = true; break;
7668     }
7669
7670     EVT VecTy;
7671     if (IsStore)
7672       VecTy = N->getOperand(2).getValueType();
7673     else
7674       VecTy = N->getValueType(0);
7675
7676     // If the increment is a constant, it must match the memory ref size.
7677     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
7678     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
7679       uint32_t IncVal = CInc->getZExtValue();
7680       unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
7681       if (IsLaneOp || IsDupOp)
7682         NumBytes /= VecTy.getVectorNumElements();
7683       if (IncVal != NumBytes)
7684         continue;
7685       Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
7686     }
7687     SmallVector<SDValue, 8> Ops;
7688     Ops.push_back(N->getOperand(0)); // Incoming chain
7689     // Load lane and store have vector list as input.
7690     if (IsLaneOp || IsStore)
7691       for (unsigned i = 2; i < AddrOpIdx; ++i)
7692         Ops.push_back(N->getOperand(i));
7693     Ops.push_back(Addr); // Base register
7694     Ops.push_back(Inc);
7695
7696     // Return Types.
7697     EVT Tys[6];
7698     unsigned NumResultVecs = (IsStore ? 0 : NumVecs);
7699     unsigned n;
7700     for (n = 0; n < NumResultVecs; ++n)
7701       Tys[n] = VecTy;
7702     Tys[n++] = MVT::i64;  // Type of write back register
7703     Tys[n] = MVT::Other;  // Type of the chain
7704     SDVTList SDTys = DAG.getVTList(ArrayRef<EVT>(Tys, NumResultVecs + 2));
7705
7706     MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N);
7707     SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, SDLoc(N), SDTys, Ops,
7708                                            MemInt->getMemoryVT(),
7709                                            MemInt->getMemOperand());
7710
7711     // Update the uses.
7712     std::vector<SDValue> NewResults;
7713     for (unsigned i = 0; i < NumResultVecs; ++i) {
7714       NewResults.push_back(SDValue(UpdN.getNode(), i));
7715     }
7716     NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs + 1));
7717     DCI.CombineTo(N, NewResults);
7718     DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
7719
7720     break;
7721   }
7722   return SDValue();
7723 }
7724
7725 // Optimize compare with zero and branch.
7726 static SDValue performBRCONDCombine(SDNode *N,
7727                                     TargetLowering::DAGCombinerInfo &DCI,
7728                                     SelectionDAG &DAG) {
7729   SDValue Chain = N->getOperand(0);
7730   SDValue Dest = N->getOperand(1);
7731   SDValue CCVal = N->getOperand(2);
7732   SDValue Cmp = N->getOperand(3);
7733
7734   assert(isa<ConstantSDNode>(CCVal) && "Expected a ConstantSDNode here!");
7735   unsigned CC = cast<ConstantSDNode>(CCVal)->getZExtValue();
7736   if (CC != AArch64CC::EQ && CC != AArch64CC::NE)
7737     return SDValue();
7738
7739   unsigned CmpOpc = Cmp.getOpcode();
7740   if (CmpOpc != AArch64ISD::ADDS && CmpOpc != AArch64ISD::SUBS)
7741     return SDValue();
7742
7743   // Only attempt folding if there is only one use of the flag and no use of the
7744   // value.
7745   if (!Cmp->hasNUsesOfValue(0, 0) || !Cmp->hasNUsesOfValue(1, 1))
7746     return SDValue();
7747
7748   SDValue LHS = Cmp.getOperand(0);
7749   SDValue RHS = Cmp.getOperand(1);
7750
7751   assert(LHS.getValueType() == RHS.getValueType() &&
7752          "Expected the value type to be the same for both operands!");
7753   if (LHS.getValueType() != MVT::i32 && LHS.getValueType() != MVT::i64)
7754     return SDValue();
7755
7756   if (isa<ConstantSDNode>(LHS) && cast<ConstantSDNode>(LHS)->isNullValue())
7757     std::swap(LHS, RHS);
7758
7759   if (!isa<ConstantSDNode>(RHS) || !cast<ConstantSDNode>(RHS)->isNullValue())
7760     return SDValue();
7761
7762   if (LHS.getOpcode() == ISD::SHL || LHS.getOpcode() == ISD::SRA ||
7763       LHS.getOpcode() == ISD::SRL)
7764     return SDValue();
7765
7766   // Fold the compare into the branch instruction.
7767   SDValue BR;
7768   if (CC == AArch64CC::EQ)
7769     BR = DAG.getNode(AArch64ISD::CBZ, SDLoc(N), MVT::Other, Chain, LHS, Dest);
7770   else
7771     BR = DAG.getNode(AArch64ISD::CBNZ, SDLoc(N), MVT::Other, Chain, LHS, Dest);
7772
7773   // Do not add new nodes to DAG combiner worklist.
7774   DCI.CombineTo(N, BR, false);
7775
7776   return SDValue();
7777 }
7778
7779 // vselect (v1i1 setcc) ->
7780 //     vselect (v1iXX setcc)  (XX is the size of the compared operand type)
7781 // FIXME: Currently the type legalizer can't handle VSELECT having v1i1 as
7782 // condition. If it can legalize "VSELECT v1i1" correctly, no need to combine
7783 // such VSELECT.
7784 static SDValue performVSelectCombine(SDNode *N, SelectionDAG &DAG) {
7785   SDValue N0 = N->getOperand(0);
7786   EVT CCVT = N0.getValueType();
7787
7788   if (N0.getOpcode() != ISD::SETCC || CCVT.getVectorNumElements() != 1 ||
7789       CCVT.getVectorElementType() != MVT::i1)
7790     return SDValue();
7791
7792   EVT ResVT = N->getValueType(0);
7793   EVT CmpVT = N0.getOperand(0).getValueType();
7794   // Only combine when the result type is of the same size as the compared
7795   // operands.
7796   if (ResVT.getSizeInBits() != CmpVT.getSizeInBits())
7797     return SDValue();
7798
7799   SDValue IfTrue = N->getOperand(1);
7800   SDValue IfFalse = N->getOperand(2);
7801   SDValue SetCC =
7802       DAG.getSetCC(SDLoc(N), CmpVT.changeVectorElementTypeToInteger(),
7803                    N0.getOperand(0), N0.getOperand(1),
7804                    cast<CondCodeSDNode>(N0.getOperand(2))->get());
7805   return DAG.getNode(ISD::VSELECT, SDLoc(N), ResVT, SetCC,
7806                      IfTrue, IfFalse);
7807 }
7808
7809 /// A vector select: "(select vL, vR, (setcc LHS, RHS))" is best performed with
7810 /// the compare-mask instructions rather than going via NZCV, even if LHS and
7811 /// RHS are really scalar. This replaces any scalar setcc in the above pattern
7812 /// with a vector one followed by a DUP shuffle on the result.
7813 static SDValue performSelectCombine(SDNode *N, SelectionDAG &DAG) {
7814   SDValue N0 = N->getOperand(0);
7815   EVT ResVT = N->getValueType(0);
7816
7817   if (!N->getOperand(1).getValueType().isVector())
7818     return SDValue();
7819
7820   if (N0.getOpcode() != ISD::SETCC || N0.getValueType() != MVT::i1)
7821     return SDValue();
7822
7823   SDLoc DL(N0);
7824
7825   EVT SrcVT = N0.getOperand(0).getValueType();
7826   SrcVT = EVT::getVectorVT(*DAG.getContext(), SrcVT,
7827                            ResVT.getSizeInBits() / SrcVT.getSizeInBits());
7828   EVT CCVT = SrcVT.changeVectorElementTypeToInteger();
7829
7830   // First perform a vector comparison, where lane 0 is the one we're interested
7831   // in.
7832   SDValue LHS =
7833       DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, SrcVT, N0.getOperand(0));
7834   SDValue RHS =
7835       DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, SrcVT, N0.getOperand(1));
7836   SDValue SetCC = DAG.getNode(ISD::SETCC, DL, CCVT, LHS, RHS, N0.getOperand(2));
7837
7838   // Now duplicate the comparison mask we want across all other lanes.
7839   SmallVector<int, 8> DUPMask(CCVT.getVectorNumElements(), 0);
7840   SDValue Mask = DAG.getVectorShuffle(CCVT, DL, SetCC, SetCC, DUPMask.data());
7841   Mask = DAG.getNode(ISD::BITCAST, DL, ResVT.changeVectorElementTypeToInteger(),
7842                      Mask);
7843
7844   return DAG.getSelect(DL, ResVT, Mask, N->getOperand(1), N->getOperand(2));
7845 }
7846
7847 SDValue AArch64TargetLowering::PerformDAGCombine(SDNode *N,
7848                                                  DAGCombinerInfo &DCI) const {
7849   SelectionDAG &DAG = DCI.DAG;
7850   switch (N->getOpcode()) {
7851   default:
7852     break;
7853   case ISD::ADD:
7854   case ISD::SUB:
7855     return performAddSubLongCombine(N, DCI, DAG);
7856   case ISD::XOR:
7857     return performXorCombine(N, DAG, DCI, Subtarget);
7858   case ISD::MUL:
7859     return performMulCombine(N, DAG, DCI, Subtarget);
7860   case ISD::SINT_TO_FP:
7861   case ISD::UINT_TO_FP:
7862     return performIntToFpCombine(N, DAG);
7863   case ISD::OR:
7864     return performORCombine(N, DCI, Subtarget);
7865   case ISD::INTRINSIC_WO_CHAIN:
7866     return performIntrinsicCombine(N, DCI, Subtarget);
7867   case ISD::ANY_EXTEND:
7868   case ISD::ZERO_EXTEND:
7869   case ISD::SIGN_EXTEND:
7870     return performExtendCombine(N, DCI, DAG);
7871   case ISD::BITCAST:
7872     return performBitcastCombine(N, DCI, DAG);
7873   case ISD::CONCAT_VECTORS:
7874     return performConcatVectorsCombine(N, DCI, DAG);
7875   case ISD::SELECT:
7876     return performSelectCombine(N, DAG);
7877   case ISD::VSELECT:
7878     return performVSelectCombine(N, DCI.DAG);
7879   case ISD::STORE:
7880     return performSTORECombine(N, DCI, DAG, Subtarget);
7881   case AArch64ISD::BRCOND:
7882     return performBRCONDCombine(N, DCI, DAG);
7883   case AArch64ISD::DUP:
7884     return performPostLD1Combine(N, DCI, false);
7885   case ISD::INSERT_VECTOR_ELT:
7886     return performPostLD1Combine(N, DCI, true);
7887   case ISD::INTRINSIC_VOID:
7888   case ISD::INTRINSIC_W_CHAIN:
7889     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
7890     case Intrinsic::aarch64_neon_ld2:
7891     case Intrinsic::aarch64_neon_ld3:
7892     case Intrinsic::aarch64_neon_ld4:
7893     case Intrinsic::aarch64_neon_ld1x2:
7894     case Intrinsic::aarch64_neon_ld1x3:
7895     case Intrinsic::aarch64_neon_ld1x4:
7896     case Intrinsic::aarch64_neon_ld2lane:
7897     case Intrinsic::aarch64_neon_ld3lane:
7898     case Intrinsic::aarch64_neon_ld4lane:
7899     case Intrinsic::aarch64_neon_ld2r:
7900     case Intrinsic::aarch64_neon_ld3r:
7901     case Intrinsic::aarch64_neon_ld4r:
7902     case Intrinsic::aarch64_neon_st2:
7903     case Intrinsic::aarch64_neon_st3:
7904     case Intrinsic::aarch64_neon_st4:
7905     case Intrinsic::aarch64_neon_st1x2:
7906     case Intrinsic::aarch64_neon_st1x3:
7907     case Intrinsic::aarch64_neon_st1x4:
7908     case Intrinsic::aarch64_neon_st2lane:
7909     case Intrinsic::aarch64_neon_st3lane:
7910     case Intrinsic::aarch64_neon_st4lane:
7911       return performNEONPostLDSTCombine(N, DCI, DAG);
7912     default:
7913       break;
7914     }
7915   }
7916   return SDValue();
7917 }
7918
7919 // Check if the return value is used as only a return value, as otherwise
7920 // we can't perform a tail-call. In particular, we need to check for
7921 // target ISD nodes that are returns and any other "odd" constructs
7922 // that the generic analysis code won't necessarily catch.
7923 bool AArch64TargetLowering::isUsedByReturnOnly(SDNode *N,
7924                                                SDValue &Chain) const {
7925   if (N->getNumValues() != 1)
7926     return false;
7927   if (!N->hasNUsesOfValue(1, 0))
7928     return false;
7929
7930   SDValue TCChain = Chain;
7931   SDNode *Copy = *N->use_begin();
7932   if (Copy->getOpcode() == ISD::CopyToReg) {
7933     // If the copy has a glue operand, we conservatively assume it isn't safe to
7934     // perform a tail call.
7935     if (Copy->getOperand(Copy->getNumOperands() - 1).getValueType() ==
7936         MVT::Glue)
7937       return false;
7938     TCChain = Copy->getOperand(0);
7939   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
7940     return false;
7941
7942   bool HasRet = false;
7943   for (SDNode *Node : Copy->uses()) {
7944     if (Node->getOpcode() != AArch64ISD::RET_FLAG)
7945       return false;
7946     HasRet = true;
7947   }
7948
7949   if (!HasRet)
7950     return false;
7951
7952   Chain = TCChain;
7953   return true;
7954 }
7955
7956 // Return whether the an instruction can potentially be optimized to a tail
7957 // call. This will cause the optimizers to attempt to move, or duplicate,
7958 // return instructions to help enable tail call optimizations for this
7959 // instruction.
7960 bool AArch64TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
7961   if (!CI->isTailCall())
7962     return false;
7963
7964   return true;
7965 }
7966
7967 bool AArch64TargetLowering::getIndexedAddressParts(SDNode *Op, SDValue &Base,
7968                                                    SDValue &Offset,
7969                                                    ISD::MemIndexedMode &AM,
7970                                                    bool &IsInc,
7971                                                    SelectionDAG &DAG) const {
7972   if (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB)
7973     return false;
7974
7975   Base = Op->getOperand(0);
7976   // All of the indexed addressing mode instructions take a signed
7977   // 9 bit immediate offset.
7978   if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
7979     int64_t RHSC = (int64_t)RHS->getZExtValue();
7980     if (RHSC >= 256 || RHSC <= -256)
7981       return false;
7982     IsInc = (Op->getOpcode() == ISD::ADD);
7983     Offset = Op->getOperand(1);
7984     return true;
7985   }
7986   return false;
7987 }
7988
7989 bool AArch64TargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
7990                                                       SDValue &Offset,
7991                                                       ISD::MemIndexedMode &AM,
7992                                                       SelectionDAG &DAG) const {
7993   EVT VT;
7994   SDValue Ptr;
7995   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
7996     VT = LD->getMemoryVT();
7997     Ptr = LD->getBasePtr();
7998   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
7999     VT = ST->getMemoryVT();
8000     Ptr = ST->getBasePtr();
8001   } else
8002     return false;
8003
8004   bool IsInc;
8005   if (!getIndexedAddressParts(Ptr.getNode(), Base, Offset, AM, IsInc, DAG))
8006     return false;
8007   AM = IsInc ? ISD::PRE_INC : ISD::PRE_DEC;
8008   return true;
8009 }
8010
8011 bool AArch64TargetLowering::getPostIndexedAddressParts(
8012     SDNode *N, SDNode *Op, SDValue &Base, SDValue &Offset,
8013     ISD::MemIndexedMode &AM, SelectionDAG &DAG) const {
8014   EVT VT;
8015   SDValue Ptr;
8016   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
8017     VT = LD->getMemoryVT();
8018     Ptr = LD->getBasePtr();
8019   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
8020     VT = ST->getMemoryVT();
8021     Ptr = ST->getBasePtr();
8022   } else
8023     return false;
8024
8025   bool IsInc;
8026   if (!getIndexedAddressParts(Op, Base, Offset, AM, IsInc, DAG))
8027     return false;
8028   // Post-indexing updates the base, so it's not a valid transform
8029   // if that's not the same as the load's pointer.
8030   if (Ptr != Base)
8031     return false;
8032   AM = IsInc ? ISD::POST_INC : ISD::POST_DEC;
8033   return true;
8034 }
8035
8036 static void ReplaceBITCASTResults(SDNode *N, SmallVectorImpl<SDValue> &Results,
8037                                   SelectionDAG &DAG) {
8038   if (N->getValueType(0) != MVT::i16)
8039     return;
8040
8041   SDLoc DL(N);
8042   SDValue Op = N->getOperand(0);
8043   assert(Op.getValueType() == MVT::f16 &&
8044          "Inconsistent bitcast? Only 16-bit types should be i16 or f16");
8045   Op = SDValue(
8046       DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, DL, MVT::f32,
8047                          DAG.getUNDEF(MVT::i32), Op,
8048                          DAG.getTargetConstant(AArch64::hsub, MVT::i32)),
8049       0);
8050   Op = DAG.getNode(ISD::BITCAST, DL, MVT::i32, Op);
8051   Results.push_back(DAG.getNode(ISD::TRUNCATE, DL, MVT::i16, Op));
8052 }
8053
8054 void AArch64TargetLowering::ReplaceNodeResults(
8055     SDNode *N, SmallVectorImpl<SDValue> &Results, SelectionDAG &DAG) const {
8056   switch (N->getOpcode()) {
8057   default:
8058     llvm_unreachable("Don't know how to custom expand this");
8059   case ISD::BITCAST:
8060     ReplaceBITCASTResults(N, Results, DAG);
8061     return;
8062   case ISD::FP_TO_UINT:
8063   case ISD::FP_TO_SINT:
8064     assert(N->getValueType(0) == MVT::i128 && "unexpected illegal conversion");
8065     // Let normal code take care of it by not adding anything to Results.
8066     return;
8067   }
8068 }
8069
8070 bool AArch64TargetLowering::shouldExpandAtomicInIR(Instruction *Inst) const {
8071   // Loads and stores less than 128-bits are already atomic; ones above that
8072   // are doomed anyway, so defer to the default libcall and blame the OS when
8073   // things go wrong:
8074   if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
8075     return SI->getValueOperand()->getType()->getPrimitiveSizeInBits() == 128;
8076   else if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
8077     return LI->getType()->getPrimitiveSizeInBits() == 128;
8078
8079   // For the real atomic operations, we have ldxr/stxr up to 128 bits.
8080   return Inst->getType()->getPrimitiveSizeInBits() <= 128;
8081 }
8082
8083 TargetLoweringBase::LegalizeTypeAction
8084 AArch64TargetLowering::getPreferredVectorAction(EVT VT) const {
8085   MVT SVT = VT.getSimpleVT();
8086   // During type legalization, we prefer to widen v1i8, v1i16, v1i32  to v8i8,
8087   // v4i16, v2i32 instead of to promote.
8088   if (SVT == MVT::v1i8 || SVT == MVT::v1i16 || SVT == MVT::v1i32
8089       || SVT == MVT::v1f32)
8090     return TypeWidenVector;
8091
8092   return TargetLoweringBase::getPreferredVectorAction(VT);
8093 }
8094
8095 Value *AArch64TargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
8096                                              AtomicOrdering Ord) const {
8097   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
8098   Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
8099   bool IsAcquire =
8100       Ord == Acquire || Ord == AcquireRelease || Ord == SequentiallyConsistent;
8101
8102   // Since i128 isn't legal and intrinsics don't get type-lowered, the ldrexd
8103   // intrinsic must return {i64, i64} and we have to recombine them into a
8104   // single i128 here.
8105   if (ValTy->getPrimitiveSizeInBits() == 128) {
8106     Intrinsic::ID Int =
8107         IsAcquire ? Intrinsic::aarch64_ldaxp : Intrinsic::aarch64_ldxp;
8108     Function *Ldxr = llvm::Intrinsic::getDeclaration(M, Int);
8109
8110     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
8111     Value *LoHi = Builder.CreateCall(Ldxr, Addr, "lohi");
8112
8113     Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
8114     Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
8115     Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
8116     Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
8117     return Builder.CreateOr(
8118         Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 64)), "val64");
8119   }
8120
8121   Type *Tys[] = { Addr->getType() };
8122   Intrinsic::ID Int =
8123       IsAcquire ? Intrinsic::aarch64_ldaxr : Intrinsic::aarch64_ldxr;
8124   Function *Ldxr = llvm::Intrinsic::getDeclaration(M, Int, Tys);
8125
8126   return Builder.CreateTruncOrBitCast(
8127       Builder.CreateCall(Ldxr, Addr),
8128       cast<PointerType>(Addr->getType())->getElementType());
8129 }
8130
8131 Value *AArch64TargetLowering::emitStoreConditional(IRBuilder<> &Builder,
8132                                                    Value *Val, Value *Addr,
8133                                                    AtomicOrdering Ord) const {
8134   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
8135   bool IsRelease =
8136       Ord == Release || Ord == AcquireRelease || Ord == SequentiallyConsistent;
8137
8138   // Since the intrinsics must have legal type, the i128 intrinsics take two
8139   // parameters: "i64, i64". We must marshal Val into the appropriate form
8140   // before the call.
8141   if (Val->getType()->getPrimitiveSizeInBits() == 128) {
8142     Intrinsic::ID Int =
8143         IsRelease ? Intrinsic::aarch64_stlxp : Intrinsic::aarch64_stxp;
8144     Function *Stxr = Intrinsic::getDeclaration(M, Int);
8145     Type *Int64Ty = Type::getInt64Ty(M->getContext());
8146
8147     Value *Lo = Builder.CreateTrunc(Val, Int64Ty, "lo");
8148     Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 64), Int64Ty, "hi");
8149     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
8150     return Builder.CreateCall3(Stxr, Lo, Hi, Addr);
8151   }
8152
8153   Intrinsic::ID Int =
8154       IsRelease ? Intrinsic::aarch64_stlxr : Intrinsic::aarch64_stxr;
8155   Type *Tys[] = { Addr->getType() };
8156   Function *Stxr = Intrinsic::getDeclaration(M, Int, Tys);
8157
8158   return Builder.CreateCall2(
8159       Stxr, Builder.CreateZExtOrBitCast(
8160                 Val, Stxr->getFunctionType()->getParamType(0)),
8161       Addr);
8162 }