AArch64: Fix loads to lower NEON vector lanes using GPR registers
[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 "AArch64CallingConvention.h"
16 #include "AArch64MachineFunctionInfo.h"
17 #include "AArch64PerfectShuffle.h"
18 #include "AArch64Subtarget.h"
19 #include "AArch64TargetMachine.h"
20 #include "AArch64TargetObjectFile.h"
21 #include "MCTargetDesc/AArch64AddressingModes.h"
22 #include "llvm/ADT/Statistic.h"
23 #include "llvm/CodeGen/CallingConvLower.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineInstrBuilder.h"
26 #include "llvm/CodeGen/MachineRegisterInfo.h"
27 #include "llvm/IR/Function.h"
28 #include "llvm/IR/GetElementPtrTypeIterator.h"
29 #include "llvm/IR/Intrinsics.h"
30 #include "llvm/IR/Type.h"
31 #include "llvm/Support/CommandLine.h"
32 #include "llvm/Support/Debug.h"
33 #include "llvm/Support/ErrorHandling.h"
34 #include "llvm/Support/raw_ostream.h"
35 #include "llvm/Target/TargetOptions.h"
36 using namespace llvm;
37
38 #define DEBUG_TYPE "aarch64-lower"
39
40 STATISTIC(NumTailCalls, "Number of tail calls");
41 STATISTIC(NumShiftInserts, "Number of vector shift inserts");
42
43 // Place holder until extr generation is tested fully.
44 static cl::opt<bool>
45 EnableAArch64ExtrGeneration("aarch64-extr-generation", cl::Hidden,
46                           cl::desc("Allow AArch64 (or (shift)(shift))->extract"),
47                           cl::init(true));
48
49 static cl::opt<bool>
50 EnableAArch64SlrGeneration("aarch64-shift-insert-generation", cl::Hidden,
51                            cl::desc("Allow AArch64 SLI/SRI formation"),
52                            cl::init(false));
53
54 // FIXME: The necessary dtprel relocations don't seem to be supported
55 // well in the GNU bfd and gold linkers at the moment. Therefore, by
56 // default, for now, fall back to GeneralDynamic code generation.
57 cl::opt<bool> EnableAArch64ELFLocalDynamicTLSGeneration(
58     "aarch64-elf-ldtls-generation", cl::Hidden,
59     cl::desc("Allow AArch64 Local Dynamic TLS code generation"),
60     cl::init(false));
61
62 /// Value type used for condition codes.
63 static const MVT MVT_CC = MVT::i32;
64
65 AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM,
66                                              const AArch64Subtarget &STI)
67     : TargetLowering(TM), Subtarget(&STI) {
68
69   // AArch64 doesn't have comparisons which set GPRs or setcc instructions, so
70   // we have to make something up. Arbitrarily, choose ZeroOrOne.
71   setBooleanContents(ZeroOrOneBooleanContent);
72   // When comparing vectors the result sets the different elements in the
73   // vector to all-one or all-zero.
74   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
75
76   // Set up the register classes.
77   addRegisterClass(MVT::i32, &AArch64::GPR32allRegClass);
78   addRegisterClass(MVT::i64, &AArch64::GPR64allRegClass);
79
80   if (Subtarget->hasFPARMv8()) {
81     addRegisterClass(MVT::f16, &AArch64::FPR16RegClass);
82     addRegisterClass(MVT::f32, &AArch64::FPR32RegClass);
83     addRegisterClass(MVT::f64, &AArch64::FPR64RegClass);
84     addRegisterClass(MVT::f128, &AArch64::FPR128RegClass);
85   }
86
87   if (Subtarget->hasNEON()) {
88     addRegisterClass(MVT::v16i8, &AArch64::FPR8RegClass);
89     addRegisterClass(MVT::v8i16, &AArch64::FPR16RegClass);
90     // Someone set us up the NEON.
91     addDRTypeForNEON(MVT::v2f32);
92     addDRTypeForNEON(MVT::v8i8);
93     addDRTypeForNEON(MVT::v4i16);
94     addDRTypeForNEON(MVT::v2i32);
95     addDRTypeForNEON(MVT::v1i64);
96     addDRTypeForNEON(MVT::v1f64);
97     addDRTypeForNEON(MVT::v4f16);
98
99     addQRTypeForNEON(MVT::v4f32);
100     addQRTypeForNEON(MVT::v2f64);
101     addQRTypeForNEON(MVT::v16i8);
102     addQRTypeForNEON(MVT::v8i16);
103     addQRTypeForNEON(MVT::v4i32);
104     addQRTypeForNEON(MVT::v2i64);
105     addQRTypeForNEON(MVT::v8f16);
106   }
107
108   // Compute derived properties from the register classes
109   computeRegisterProperties(Subtarget->getRegisterInfo());
110
111   // Provide all sorts of operation actions
112   setOperationAction(ISD::GlobalAddress, MVT::i64, Custom);
113   setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
114   setOperationAction(ISD::SETCC, MVT::i32, Custom);
115   setOperationAction(ISD::SETCC, MVT::i64, Custom);
116   setOperationAction(ISD::SETCC, MVT::f32, Custom);
117   setOperationAction(ISD::SETCC, MVT::f64, Custom);
118   setOperationAction(ISD::BRCOND, MVT::Other, Expand);
119   setOperationAction(ISD::BR_CC, MVT::i32, Custom);
120   setOperationAction(ISD::BR_CC, MVT::i64, Custom);
121   setOperationAction(ISD::BR_CC, MVT::f32, Custom);
122   setOperationAction(ISD::BR_CC, MVT::f64, Custom);
123   setOperationAction(ISD::SELECT, MVT::i32, Custom);
124   setOperationAction(ISD::SELECT, MVT::i64, Custom);
125   setOperationAction(ISD::SELECT, MVT::f32, Custom);
126   setOperationAction(ISD::SELECT, MVT::f64, Custom);
127   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
128   setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
129   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
130   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
131   setOperationAction(ISD::BR_JT, MVT::Other, Expand);
132   setOperationAction(ISD::JumpTable, MVT::i64, Custom);
133
134   setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom);
135   setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom);
136   setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom);
137
138   setOperationAction(ISD::FREM, MVT::f32, Expand);
139   setOperationAction(ISD::FREM, MVT::f64, Expand);
140   setOperationAction(ISD::FREM, MVT::f80, Expand);
141
142   // Custom lowering hooks are needed for XOR
143   // to fold it into CSINC/CSINV.
144   setOperationAction(ISD::XOR, MVT::i32, Custom);
145   setOperationAction(ISD::XOR, MVT::i64, Custom);
146
147   // Virtually no operation on f128 is legal, but LLVM can't expand them when
148   // there's a valid register class, so we need custom operations in most cases.
149   setOperationAction(ISD::FABS, MVT::f128, Expand);
150   setOperationAction(ISD::FADD, MVT::f128, Custom);
151   setOperationAction(ISD::FCOPYSIGN, MVT::f128, Expand);
152   setOperationAction(ISD::FCOS, MVT::f128, Expand);
153   setOperationAction(ISD::FDIV, MVT::f128, Custom);
154   setOperationAction(ISD::FMA, MVT::f128, Expand);
155   setOperationAction(ISD::FMUL, MVT::f128, Custom);
156   setOperationAction(ISD::FNEG, MVT::f128, Expand);
157   setOperationAction(ISD::FPOW, MVT::f128, Expand);
158   setOperationAction(ISD::FREM, MVT::f128, Expand);
159   setOperationAction(ISD::FRINT, MVT::f128, Expand);
160   setOperationAction(ISD::FSIN, MVT::f128, Expand);
161   setOperationAction(ISD::FSINCOS, MVT::f128, Expand);
162   setOperationAction(ISD::FSQRT, MVT::f128, Expand);
163   setOperationAction(ISD::FSUB, MVT::f128, Custom);
164   setOperationAction(ISD::FTRUNC, MVT::f128, Expand);
165   setOperationAction(ISD::SETCC, MVT::f128, Custom);
166   setOperationAction(ISD::BR_CC, MVT::f128, Custom);
167   setOperationAction(ISD::SELECT, MVT::f128, Custom);
168   setOperationAction(ISD::SELECT_CC, MVT::f128, Custom);
169   setOperationAction(ISD::FP_EXTEND, MVT::f128, Custom);
170
171   // Lowering for many of the conversions is actually specified by the non-f128
172   // type. The LowerXXX function will be trivial when f128 isn't involved.
173   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
174   setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
175   setOperationAction(ISD::FP_TO_SINT, MVT::i128, Custom);
176   setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
177   setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
178   setOperationAction(ISD::FP_TO_UINT, MVT::i128, Custom);
179   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
180   setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
181   setOperationAction(ISD::SINT_TO_FP, MVT::i128, Custom);
182   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
183   setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
184   setOperationAction(ISD::UINT_TO_FP, MVT::i128, Custom);
185   setOperationAction(ISD::FP_ROUND, MVT::f32, Custom);
186   setOperationAction(ISD::FP_ROUND, MVT::f64, Custom);
187
188   // Variable arguments.
189   setOperationAction(ISD::VASTART, MVT::Other, Custom);
190   setOperationAction(ISD::VAARG, MVT::Other, Custom);
191   setOperationAction(ISD::VACOPY, MVT::Other, Custom);
192   setOperationAction(ISD::VAEND, MVT::Other, Expand);
193
194   // Variable-sized objects.
195   setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
196   setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
197   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
198
199   // Exception handling.
200   // FIXME: These are guesses. Has this been defined yet?
201   setExceptionPointerRegister(AArch64::X0);
202   setExceptionSelectorRegister(AArch64::X1);
203
204   // Constant pool entries
205   setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
206
207   // BlockAddress
208   setOperationAction(ISD::BlockAddress, MVT::i64, Custom);
209
210   // Add/Sub overflow ops with MVT::Glues are lowered to NZCV dependences.
211   setOperationAction(ISD::ADDC, MVT::i32, Custom);
212   setOperationAction(ISD::ADDE, MVT::i32, Custom);
213   setOperationAction(ISD::SUBC, MVT::i32, Custom);
214   setOperationAction(ISD::SUBE, MVT::i32, Custom);
215   setOperationAction(ISD::ADDC, MVT::i64, Custom);
216   setOperationAction(ISD::ADDE, MVT::i64, Custom);
217   setOperationAction(ISD::SUBC, MVT::i64, Custom);
218   setOperationAction(ISD::SUBE, MVT::i64, Custom);
219
220   // AArch64 lacks both left-rotate and popcount instructions.
221   setOperationAction(ISD::ROTL, MVT::i32, Expand);
222   setOperationAction(ISD::ROTL, MVT::i64, Expand);
223
224   // AArch64 doesn't have {U|S}MUL_LOHI.
225   setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
226   setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
227
228
229   // Expand the undefined-at-zero variants to cttz/ctlz to their defined-at-zero
230   // counterparts, which AArch64 supports directly.
231   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
232   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
233   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
234   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
235
236   setOperationAction(ISD::CTPOP, MVT::i32, Custom);
237   setOperationAction(ISD::CTPOP, MVT::i64, Custom);
238
239   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
240   setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
241   setOperationAction(ISD::SREM, MVT::i32, Expand);
242   setOperationAction(ISD::SREM, MVT::i64, Expand);
243   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
244   setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
245   setOperationAction(ISD::UREM, MVT::i32, Expand);
246   setOperationAction(ISD::UREM, MVT::i64, Expand);
247
248   // Custom lower Add/Sub/Mul with overflow.
249   setOperationAction(ISD::SADDO, MVT::i32, Custom);
250   setOperationAction(ISD::SADDO, MVT::i64, Custom);
251   setOperationAction(ISD::UADDO, MVT::i32, Custom);
252   setOperationAction(ISD::UADDO, MVT::i64, Custom);
253   setOperationAction(ISD::SSUBO, MVT::i32, Custom);
254   setOperationAction(ISD::SSUBO, MVT::i64, Custom);
255   setOperationAction(ISD::USUBO, MVT::i32, Custom);
256   setOperationAction(ISD::USUBO, MVT::i64, Custom);
257   setOperationAction(ISD::SMULO, MVT::i32, Custom);
258   setOperationAction(ISD::SMULO, MVT::i64, Custom);
259   setOperationAction(ISD::UMULO, MVT::i32, Custom);
260   setOperationAction(ISD::UMULO, MVT::i64, Custom);
261
262   setOperationAction(ISD::FSIN, MVT::f32, Expand);
263   setOperationAction(ISD::FSIN, MVT::f64, Expand);
264   setOperationAction(ISD::FCOS, MVT::f32, Expand);
265   setOperationAction(ISD::FCOS, MVT::f64, Expand);
266   setOperationAction(ISD::FPOW, MVT::f32, Expand);
267   setOperationAction(ISD::FPOW, MVT::f64, Expand);
268   setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
269   setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
270
271   // f16 is a storage-only type, always promote it to f32.
272   setOperationAction(ISD::SETCC,       MVT::f16,  Promote);
273   setOperationAction(ISD::BR_CC,       MVT::f16,  Promote);
274   setOperationAction(ISD::SELECT_CC,   MVT::f16,  Promote);
275   setOperationAction(ISD::SELECT,      MVT::f16,  Promote);
276   setOperationAction(ISD::FADD,        MVT::f16,  Promote);
277   setOperationAction(ISD::FSUB,        MVT::f16,  Promote);
278   setOperationAction(ISD::FMUL,        MVT::f16,  Promote);
279   setOperationAction(ISD::FDIV,        MVT::f16,  Promote);
280   setOperationAction(ISD::FREM,        MVT::f16,  Promote);
281   setOperationAction(ISD::FMA,         MVT::f16,  Promote);
282   setOperationAction(ISD::FNEG,        MVT::f16,  Promote);
283   setOperationAction(ISD::FABS,        MVT::f16,  Promote);
284   setOperationAction(ISD::FCEIL,       MVT::f16,  Promote);
285   setOperationAction(ISD::FCOPYSIGN,   MVT::f16,  Promote);
286   setOperationAction(ISD::FCOS,        MVT::f16,  Promote);
287   setOperationAction(ISD::FFLOOR,      MVT::f16,  Promote);
288   setOperationAction(ISD::FNEARBYINT,  MVT::f16,  Promote);
289   setOperationAction(ISD::FPOW,        MVT::f16,  Promote);
290   setOperationAction(ISD::FPOWI,       MVT::f16,  Promote);
291   setOperationAction(ISD::FRINT,       MVT::f16,  Promote);
292   setOperationAction(ISD::FSIN,        MVT::f16,  Promote);
293   setOperationAction(ISD::FSINCOS,     MVT::f16,  Promote);
294   setOperationAction(ISD::FSQRT,       MVT::f16,  Promote);
295   setOperationAction(ISD::FEXP,        MVT::f16,  Promote);
296   setOperationAction(ISD::FEXP2,       MVT::f16,  Promote);
297   setOperationAction(ISD::FLOG,        MVT::f16,  Promote);
298   setOperationAction(ISD::FLOG2,       MVT::f16,  Promote);
299   setOperationAction(ISD::FLOG10,      MVT::f16,  Promote);
300   setOperationAction(ISD::FROUND,      MVT::f16,  Promote);
301   setOperationAction(ISD::FTRUNC,      MVT::f16,  Promote);
302   setOperationAction(ISD::FMINNUM,     MVT::f16,  Promote);
303   setOperationAction(ISD::FMAXNUM,     MVT::f16,  Promote);
304   setOperationAction(ISD::FMINNAN,     MVT::f16,  Promote);
305   setOperationAction(ISD::FMAXNAN,     MVT::f16,  Promote);
306
307   // v4f16 is also a storage-only type, so promote it to v4f32 when that is
308   // known to be safe.
309   setOperationAction(ISD::FADD, MVT::v4f16, Promote);
310   setOperationAction(ISD::FSUB, MVT::v4f16, Promote);
311   setOperationAction(ISD::FMUL, MVT::v4f16, Promote);
312   setOperationAction(ISD::FDIV, MVT::v4f16, Promote);
313   setOperationAction(ISD::FP_EXTEND, MVT::v4f16, Promote);
314   setOperationAction(ISD::FP_ROUND, MVT::v4f16, Promote);
315   AddPromotedToType(ISD::FADD, MVT::v4f16, MVT::v4f32);
316   AddPromotedToType(ISD::FSUB, MVT::v4f16, MVT::v4f32);
317   AddPromotedToType(ISD::FMUL, MVT::v4f16, MVT::v4f32);
318   AddPromotedToType(ISD::FDIV, MVT::v4f16, MVT::v4f32);
319   AddPromotedToType(ISD::FP_EXTEND, MVT::v4f16, MVT::v4f32);
320   AddPromotedToType(ISD::FP_ROUND, MVT::v4f16, MVT::v4f32);
321
322   // Expand all other v4f16 operations.
323   // FIXME: We could generate better code by promoting some operations to
324   // a pair of v4f32s
325   setOperationAction(ISD::FABS, MVT::v4f16, Expand);
326   setOperationAction(ISD::FCEIL, MVT::v4f16, Expand);
327   setOperationAction(ISD::FCOPYSIGN, MVT::v4f16, Expand);
328   setOperationAction(ISD::FCOS, MVT::v4f16, Expand);
329   setOperationAction(ISD::FFLOOR, MVT::v4f16, Expand);
330   setOperationAction(ISD::FMA, MVT::v4f16, Expand);
331   setOperationAction(ISD::FNEARBYINT, MVT::v4f16, Expand);
332   setOperationAction(ISD::FNEG, MVT::v4f16, Expand);
333   setOperationAction(ISD::FPOW, MVT::v4f16, Expand);
334   setOperationAction(ISD::FPOWI, MVT::v4f16, Expand);
335   setOperationAction(ISD::FREM, MVT::v4f16, Expand);
336   setOperationAction(ISD::FROUND, MVT::v4f16, Expand);
337   setOperationAction(ISD::FRINT, MVT::v4f16, Expand);
338   setOperationAction(ISD::FSIN, MVT::v4f16, Expand);
339   setOperationAction(ISD::FSINCOS, MVT::v4f16, Expand);
340   setOperationAction(ISD::FSQRT, MVT::v4f16, Expand);
341   setOperationAction(ISD::FTRUNC, MVT::v4f16, Expand);
342   setOperationAction(ISD::SETCC, MVT::v4f16, Expand);
343   setOperationAction(ISD::BR_CC, MVT::v4f16, Expand);
344   setOperationAction(ISD::SELECT, MVT::v4f16, Expand);
345   setOperationAction(ISD::SELECT_CC, MVT::v4f16, Expand);
346   setOperationAction(ISD::FEXP, MVT::v4f16, Expand);
347   setOperationAction(ISD::FEXP2, MVT::v4f16, Expand);
348   setOperationAction(ISD::FLOG, MVT::v4f16, Expand);
349   setOperationAction(ISD::FLOG2, MVT::v4f16, Expand);
350   setOperationAction(ISD::FLOG10, MVT::v4f16, Expand);
351
352
353   // v8f16 is also a storage-only type, so expand it.
354   setOperationAction(ISD::FABS, MVT::v8f16, Expand);
355   setOperationAction(ISD::FADD, MVT::v8f16, Expand);
356   setOperationAction(ISD::FCEIL, MVT::v8f16, Expand);
357   setOperationAction(ISD::FCOPYSIGN, MVT::v8f16, Expand);
358   setOperationAction(ISD::FCOS, MVT::v8f16, Expand);
359   setOperationAction(ISD::FDIV, MVT::v8f16, Expand);
360   setOperationAction(ISD::FFLOOR, MVT::v8f16, Expand);
361   setOperationAction(ISD::FMA, MVT::v8f16, Expand);
362   setOperationAction(ISD::FMUL, MVT::v8f16, Expand);
363   setOperationAction(ISD::FNEARBYINT, MVT::v8f16, Expand);
364   setOperationAction(ISD::FNEG, MVT::v8f16, Expand);
365   setOperationAction(ISD::FPOW, MVT::v8f16, Expand);
366   setOperationAction(ISD::FPOWI, MVT::v8f16, Expand);
367   setOperationAction(ISD::FREM, MVT::v8f16, Expand);
368   setOperationAction(ISD::FROUND, MVT::v8f16, Expand);
369   setOperationAction(ISD::FRINT, MVT::v8f16, Expand);
370   setOperationAction(ISD::FSIN, MVT::v8f16, Expand);
371   setOperationAction(ISD::FSINCOS, MVT::v8f16, Expand);
372   setOperationAction(ISD::FSQRT, MVT::v8f16, Expand);
373   setOperationAction(ISD::FSUB, MVT::v8f16, Expand);
374   setOperationAction(ISD::FTRUNC, MVT::v8f16, Expand);
375   setOperationAction(ISD::SETCC, MVT::v8f16, Expand);
376   setOperationAction(ISD::BR_CC, MVT::v8f16, Expand);
377   setOperationAction(ISD::SELECT, MVT::v8f16, Expand);
378   setOperationAction(ISD::SELECT_CC, MVT::v8f16, Expand);
379   setOperationAction(ISD::FP_EXTEND, MVT::v8f16, Expand);
380   setOperationAction(ISD::FEXP, MVT::v8f16, Expand);
381   setOperationAction(ISD::FEXP2, MVT::v8f16, Expand);
382   setOperationAction(ISD::FLOG, MVT::v8f16, Expand);
383   setOperationAction(ISD::FLOG2, MVT::v8f16, Expand);
384   setOperationAction(ISD::FLOG10, MVT::v8f16, Expand);
385
386   // AArch64 has implementations of a lot of rounding-like FP operations.
387   for (MVT Ty : {MVT::f32, MVT::f64}) {
388     setOperationAction(ISD::FFLOOR, Ty, Legal);
389     setOperationAction(ISD::FNEARBYINT, Ty, Legal);
390     setOperationAction(ISD::FCEIL, Ty, Legal);
391     setOperationAction(ISD::FRINT, Ty, Legal);
392     setOperationAction(ISD::FTRUNC, Ty, Legal);
393     setOperationAction(ISD::FROUND, Ty, Legal);
394     setOperationAction(ISD::FMINNUM, Ty, Legal);
395     setOperationAction(ISD::FMAXNUM, Ty, Legal);
396     setOperationAction(ISD::FMINNAN, Ty, Legal);
397     setOperationAction(ISD::FMAXNAN, Ty, Legal);
398   }
399
400   setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
401
402   if (Subtarget->isTargetMachO()) {
403     // For iOS, we don't want to the normal expansion of a libcall to
404     // sincos. We want to issue a libcall to __sincos_stret to avoid memory
405     // traffic.
406     setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
407     setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
408   } else {
409     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
410     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
411   }
412
413   // Make floating-point constants legal for the large code model, so they don't
414   // become loads from the constant pool.
415   if (Subtarget->isTargetMachO() && TM.getCodeModel() == CodeModel::Large) {
416     setOperationAction(ISD::ConstantFP, MVT::f32, Legal);
417     setOperationAction(ISD::ConstantFP, MVT::f64, Legal);
418   }
419
420   // AArch64 does not have floating-point extending loads, i1 sign-extending
421   // load, floating-point truncating stores, or v2i32->v2i16 truncating store.
422   for (MVT VT : MVT::fp_valuetypes()) {
423     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f16, Expand);
424     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand);
425     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f64, Expand);
426     setLoadExtAction(ISD::EXTLOAD, VT, MVT::f80, Expand);
427   }
428   for (MVT VT : MVT::integer_valuetypes())
429     setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Expand);
430
431   setTruncStoreAction(MVT::f32, MVT::f16, Expand);
432   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
433   setTruncStoreAction(MVT::f64, MVT::f16, Expand);
434   setTruncStoreAction(MVT::f128, MVT::f80, Expand);
435   setTruncStoreAction(MVT::f128, MVT::f64, Expand);
436   setTruncStoreAction(MVT::f128, MVT::f32, Expand);
437   setTruncStoreAction(MVT::f128, MVT::f16, Expand);
438
439   setOperationAction(ISD::BITCAST, MVT::i16, Custom);
440   setOperationAction(ISD::BITCAST, MVT::f16, Custom);
441
442   // Indexed loads and stores are supported.
443   for (unsigned im = (unsigned)ISD::PRE_INC;
444        im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
445     setIndexedLoadAction(im, MVT::i8, Legal);
446     setIndexedLoadAction(im, MVT::i16, Legal);
447     setIndexedLoadAction(im, MVT::i32, Legal);
448     setIndexedLoadAction(im, MVT::i64, Legal);
449     setIndexedLoadAction(im, MVT::f64, Legal);
450     setIndexedLoadAction(im, MVT::f32, Legal);
451     setIndexedLoadAction(im, MVT::f16, Legal);
452     setIndexedStoreAction(im, MVT::i8, Legal);
453     setIndexedStoreAction(im, MVT::i16, Legal);
454     setIndexedStoreAction(im, MVT::i32, Legal);
455     setIndexedStoreAction(im, MVT::i64, Legal);
456     setIndexedStoreAction(im, MVT::f64, Legal);
457     setIndexedStoreAction(im, MVT::f32, Legal);
458     setIndexedStoreAction(im, MVT::f16, Legal);
459   }
460
461   // Trap.
462   setOperationAction(ISD::TRAP, MVT::Other, Legal);
463
464   // We combine OR nodes for bitfield operations.
465   setTargetDAGCombine(ISD::OR);
466
467   // Vector add and sub nodes may conceal a high-half opportunity.
468   // Also, try to fold ADD into CSINC/CSINV..
469   setTargetDAGCombine(ISD::ADD);
470   setTargetDAGCombine(ISD::SUB);
471
472   setTargetDAGCombine(ISD::XOR);
473   setTargetDAGCombine(ISD::SINT_TO_FP);
474   setTargetDAGCombine(ISD::UINT_TO_FP);
475
476   setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN);
477
478   setTargetDAGCombine(ISD::ANY_EXTEND);
479   setTargetDAGCombine(ISD::ZERO_EXTEND);
480   setTargetDAGCombine(ISD::SIGN_EXTEND);
481   setTargetDAGCombine(ISD::BITCAST);
482   setTargetDAGCombine(ISD::CONCAT_VECTORS);
483   setTargetDAGCombine(ISD::STORE);
484
485   setTargetDAGCombine(ISD::MUL);
486
487   setTargetDAGCombine(ISD::SELECT);
488   setTargetDAGCombine(ISD::VSELECT);
489
490   setTargetDAGCombine(ISD::INTRINSIC_VOID);
491   setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN);
492   setTargetDAGCombine(ISD::INSERT_VECTOR_ELT);
493
494   MaxStoresPerMemset = MaxStoresPerMemsetOptSize = 8;
495   MaxStoresPerMemcpy = MaxStoresPerMemcpyOptSize = 4;
496   MaxStoresPerMemmove = MaxStoresPerMemmoveOptSize = 4;
497
498   setStackPointerRegisterToSaveRestore(AArch64::SP);
499
500   setSchedulingPreference(Sched::Hybrid);
501
502   // Enable TBZ/TBNZ
503   MaskAndBranchFoldingIsLegal = true;
504   EnableExtLdPromotion = true;
505
506   setMinFunctionAlignment(2);
507
508   setHasExtractBitsInsn(true);
509
510   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
511
512   if (Subtarget->hasNEON()) {
513     // FIXME: v1f64 shouldn't be legal if we can avoid it, because it leads to
514     // silliness like this:
515     setOperationAction(ISD::FABS, MVT::v1f64, Expand);
516     setOperationAction(ISD::FADD, MVT::v1f64, Expand);
517     setOperationAction(ISD::FCEIL, MVT::v1f64, Expand);
518     setOperationAction(ISD::FCOPYSIGN, MVT::v1f64, Expand);
519     setOperationAction(ISD::FCOS, MVT::v1f64, Expand);
520     setOperationAction(ISD::FDIV, MVT::v1f64, Expand);
521     setOperationAction(ISD::FFLOOR, MVT::v1f64, Expand);
522     setOperationAction(ISD::FMA, MVT::v1f64, Expand);
523     setOperationAction(ISD::FMUL, MVT::v1f64, Expand);
524     setOperationAction(ISD::FNEARBYINT, MVT::v1f64, Expand);
525     setOperationAction(ISD::FNEG, MVT::v1f64, Expand);
526     setOperationAction(ISD::FPOW, MVT::v1f64, Expand);
527     setOperationAction(ISD::FREM, MVT::v1f64, Expand);
528     setOperationAction(ISD::FROUND, MVT::v1f64, Expand);
529     setOperationAction(ISD::FRINT, MVT::v1f64, Expand);
530     setOperationAction(ISD::FSIN, MVT::v1f64, Expand);
531     setOperationAction(ISD::FSINCOS, MVT::v1f64, Expand);
532     setOperationAction(ISD::FSQRT, MVT::v1f64, Expand);
533     setOperationAction(ISD::FSUB, MVT::v1f64, Expand);
534     setOperationAction(ISD::FTRUNC, MVT::v1f64, Expand);
535     setOperationAction(ISD::SETCC, MVT::v1f64, Expand);
536     setOperationAction(ISD::BR_CC, MVT::v1f64, Expand);
537     setOperationAction(ISD::SELECT, MVT::v1f64, Expand);
538     setOperationAction(ISD::SELECT_CC, MVT::v1f64, Expand);
539     setOperationAction(ISD::FP_EXTEND, MVT::v1f64, Expand);
540
541     setOperationAction(ISD::FP_TO_SINT, MVT::v1i64, Expand);
542     setOperationAction(ISD::FP_TO_UINT, MVT::v1i64, Expand);
543     setOperationAction(ISD::SINT_TO_FP, MVT::v1i64, Expand);
544     setOperationAction(ISD::UINT_TO_FP, MVT::v1i64, Expand);
545     setOperationAction(ISD::FP_ROUND, MVT::v1f64, Expand);
546
547     setOperationAction(ISD::MUL, MVT::v1i64, Expand);
548
549     // AArch64 doesn't have a direct vector ->f32 conversion instructions for
550     // elements smaller than i32, so promote the input to i32 first.
551     setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Promote);
552     setOperationAction(ISD::SINT_TO_FP, MVT::v4i8, Promote);
553     setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Promote);
554     setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Promote);
555     // i8 and i16 vector elements also need promotion to i32 for v8i8 or v8i16
556     // -> v8f16 conversions.
557     setOperationAction(ISD::SINT_TO_FP, MVT::v8i8, Promote);
558     setOperationAction(ISD::UINT_TO_FP, MVT::v8i8, Promote);
559     setOperationAction(ISD::SINT_TO_FP, MVT::v8i16, Promote);
560     setOperationAction(ISD::UINT_TO_FP, MVT::v8i16, Promote);
561     // Similarly, there is no direct i32 -> f64 vector conversion instruction.
562     setOperationAction(ISD::SINT_TO_FP, MVT::v2i32, Custom);
563     setOperationAction(ISD::UINT_TO_FP, MVT::v2i32, Custom);
564     setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Custom);
565     setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Custom);
566     // Or, direct i32 -> f16 vector conversion.  Set it so custom, so the
567     // conversion happens in two steps: v4i32 -> v4f32 -> v4f16
568     setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Custom);
569     setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Custom);
570
571     // AArch64 doesn't have MUL.2d:
572     setOperationAction(ISD::MUL, MVT::v2i64, Expand);
573     // Custom handling for some quad-vector types to detect MULL.
574     setOperationAction(ISD::MUL, MVT::v8i16, Custom);
575     setOperationAction(ISD::MUL, MVT::v4i32, Custom);
576     setOperationAction(ISD::MUL, MVT::v2i64, Custom);
577
578     setOperationAction(ISD::ANY_EXTEND, MVT::v4i32, Legal);
579     setTruncStoreAction(MVT::v2i32, MVT::v2i16, Expand);
580     // Likewise, narrowing and extending vector loads/stores aren't handled
581     // directly.
582     for (MVT VT : MVT::vector_valuetypes()) {
583       setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand);
584
585       setOperationAction(ISD::MULHS, VT, Expand);
586       setOperationAction(ISD::SMUL_LOHI, VT, Expand);
587       setOperationAction(ISD::MULHU, VT, Expand);
588       setOperationAction(ISD::UMUL_LOHI, VT, Expand);
589
590       setOperationAction(ISD::BSWAP, VT, Expand);
591
592       for (MVT InnerVT : MVT::vector_valuetypes()) {
593         setTruncStoreAction(VT, InnerVT, Expand);
594         setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand);
595         setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand);
596         setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand);
597       }
598     }
599
600     // AArch64 has implementations of a lot of rounding-like FP operations.
601     for (MVT Ty : {MVT::v2f32, MVT::v4f32, MVT::v2f64}) {
602       setOperationAction(ISD::FFLOOR, Ty, Legal);
603       setOperationAction(ISD::FNEARBYINT, Ty, Legal);
604       setOperationAction(ISD::FCEIL, Ty, Legal);
605       setOperationAction(ISD::FRINT, Ty, Legal);
606       setOperationAction(ISD::FTRUNC, Ty, Legal);
607       setOperationAction(ISD::FROUND, Ty, Legal);
608     }
609   }
610
611   // Prefer likely predicted branches to selects on out-of-order cores.
612   if (Subtarget->isCortexA57())
613     PredictableSelectIsExpensive = true;
614 }
615
616 void AArch64TargetLowering::addTypeForNEON(EVT VT, EVT PromotedBitwiseVT) {
617   if (VT == MVT::v2f32 || VT == MVT::v4f16) {
618     setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote);
619     AddPromotedToType(ISD::LOAD, VT.getSimpleVT(), MVT::v2i32);
620
621     setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
622     AddPromotedToType(ISD::STORE, VT.getSimpleVT(), MVT::v2i32);
623   } else if (VT == MVT::v2f64 || VT == MVT::v4f32 || VT == MVT::v8f16) {
624     setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote);
625     AddPromotedToType(ISD::LOAD, VT.getSimpleVT(), MVT::v2i64);
626
627     setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
628     AddPromotedToType(ISD::STORE, VT.getSimpleVT(), MVT::v2i64);
629   }
630
631   // Mark vector float intrinsics as expand.
632   if (VT == MVT::v2f32 || VT == MVT::v4f32 || VT == MVT::v2f64) {
633     setOperationAction(ISD::FSIN, VT.getSimpleVT(), Expand);
634     setOperationAction(ISD::FCOS, VT.getSimpleVT(), Expand);
635     setOperationAction(ISD::FPOWI, VT.getSimpleVT(), Expand);
636     setOperationAction(ISD::FPOW, VT.getSimpleVT(), Expand);
637     setOperationAction(ISD::FLOG, VT.getSimpleVT(), Expand);
638     setOperationAction(ISD::FLOG2, VT.getSimpleVT(), Expand);
639     setOperationAction(ISD::FLOG10, VT.getSimpleVT(), Expand);
640     setOperationAction(ISD::FEXP, VT.getSimpleVT(), Expand);
641     setOperationAction(ISD::FEXP2, VT.getSimpleVT(), Expand);
642
643     // But we do support custom-lowering for FCOPYSIGN.
644     setOperationAction(ISD::FCOPYSIGN, VT.getSimpleVT(), Custom);
645   }
646
647   setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT.getSimpleVT(), Custom);
648   setOperationAction(ISD::INSERT_VECTOR_ELT, VT.getSimpleVT(), Custom);
649   setOperationAction(ISD::BUILD_VECTOR, VT.getSimpleVT(), Custom);
650   setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom);
651   setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Custom);
652   setOperationAction(ISD::SRA, VT.getSimpleVT(), Custom);
653   setOperationAction(ISD::SRL, VT.getSimpleVT(), Custom);
654   setOperationAction(ISD::SHL, VT.getSimpleVT(), Custom);
655   setOperationAction(ISD::AND, VT.getSimpleVT(), Custom);
656   setOperationAction(ISD::OR, VT.getSimpleVT(), Custom);
657   setOperationAction(ISD::SETCC, VT.getSimpleVT(), Custom);
658   setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Legal);
659
660   setOperationAction(ISD::SELECT, VT.getSimpleVT(), Expand);
661   setOperationAction(ISD::SELECT_CC, VT.getSimpleVT(), Expand);
662   setOperationAction(ISD::VSELECT, VT.getSimpleVT(), Expand);
663   for (MVT InnerVT : MVT::all_valuetypes())
664     setLoadExtAction(ISD::EXTLOAD, InnerVT, VT.getSimpleVT(), Expand);
665
666   // CNT supports only B element sizes.
667   if (VT != MVT::v8i8 && VT != MVT::v16i8)
668     setOperationAction(ISD::CTPOP, VT.getSimpleVT(), Expand);
669
670   setOperationAction(ISD::UDIV, VT.getSimpleVT(), Expand);
671   setOperationAction(ISD::SDIV, VT.getSimpleVT(), Expand);
672   setOperationAction(ISD::UREM, VT.getSimpleVT(), Expand);
673   setOperationAction(ISD::SREM, VT.getSimpleVT(), Expand);
674   setOperationAction(ISD::FREM, VT.getSimpleVT(), Expand);
675
676   setOperationAction(ISD::FP_TO_SINT, VT.getSimpleVT(), Custom);
677   setOperationAction(ISD::FP_TO_UINT, VT.getSimpleVT(), Custom);
678
679   // [SU][MIN|MAX] and [SU]ABSDIFF are available for all NEON types apart from
680   // i64.
681   if (!VT.isFloatingPoint() &&
682       VT.getSimpleVT() != MVT::v2i64 && VT.getSimpleVT() != MVT::v1i64)
683     for (unsigned Opcode : {ISD::SMIN, ISD::SMAX, ISD::UMIN, ISD::UMAX,
684                             ISD::SABSDIFF, ISD::UABSDIFF})
685       setOperationAction(Opcode, VT.getSimpleVT(), Legal);
686
687   // F[MIN|MAX][NUM|NAN] are available for all FP NEON types (not f16 though!).
688   if (VT.isFloatingPoint() && VT.getVectorElementType() != MVT::f16)
689     for (unsigned Opcode : {ISD::FMINNAN, ISD::FMAXNAN,
690                             ISD::FMINNUM, ISD::FMAXNUM})
691       setOperationAction(Opcode, VT.getSimpleVT(), Legal);
692
693   if (Subtarget->isLittleEndian()) {
694     for (unsigned im = (unsigned)ISD::PRE_INC;
695          im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
696       setIndexedLoadAction(im, VT.getSimpleVT(), Legal);
697       setIndexedStoreAction(im, VT.getSimpleVT(), Legal);
698     }
699   }
700 }
701
702 void AArch64TargetLowering::addDRTypeForNEON(MVT VT) {
703   addRegisterClass(VT, &AArch64::FPR64RegClass);
704   addTypeForNEON(VT, MVT::v2i32);
705 }
706
707 void AArch64TargetLowering::addQRTypeForNEON(MVT VT) {
708   addRegisterClass(VT, &AArch64::FPR128RegClass);
709   addTypeForNEON(VT, MVT::v4i32);
710 }
711
712 EVT AArch64TargetLowering::getSetCCResultType(const DataLayout &, LLVMContext &,
713                                               EVT VT) const {
714   if (!VT.isVector())
715     return MVT::i32;
716   return VT.changeVectorElementTypeToInteger();
717 }
718
719 /// computeKnownBitsForTargetNode - Determine which of the bits specified in
720 /// Mask are known to be either zero or one and return them in the
721 /// KnownZero/KnownOne bitsets.
722 void AArch64TargetLowering::computeKnownBitsForTargetNode(
723     const SDValue Op, APInt &KnownZero, APInt &KnownOne,
724     const SelectionDAG &DAG, unsigned Depth) const {
725   switch (Op.getOpcode()) {
726   default:
727     break;
728   case AArch64ISD::CSEL: {
729     APInt KnownZero2, KnownOne2;
730     DAG.computeKnownBits(Op->getOperand(0), KnownZero, KnownOne, Depth + 1);
731     DAG.computeKnownBits(Op->getOperand(1), KnownZero2, KnownOne2, Depth + 1);
732     KnownZero &= KnownZero2;
733     KnownOne &= KnownOne2;
734     break;
735   }
736   case ISD::INTRINSIC_W_CHAIN: {
737    ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1));
738     Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue());
739     switch (IntID) {
740     default: return;
741     case Intrinsic::aarch64_ldaxr:
742     case Intrinsic::aarch64_ldxr: {
743       unsigned BitWidth = KnownOne.getBitWidth();
744       EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT();
745       unsigned MemBits = VT.getScalarType().getSizeInBits();
746       KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
747       return;
748     }
749     }
750     break;
751   }
752   case ISD::INTRINSIC_WO_CHAIN:
753   case ISD::INTRINSIC_VOID: {
754     unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
755     switch (IntNo) {
756     default:
757       break;
758     case Intrinsic::aarch64_neon_umaxv:
759     case Intrinsic::aarch64_neon_uminv: {
760       // Figure out the datatype of the vector operand. The UMINV instruction
761       // will zero extend the result, so we can mark as known zero all the
762       // bits larger than the element datatype. 32-bit or larget doesn't need
763       // this as those are legal types and will be handled by isel directly.
764       MVT VT = Op.getOperand(1).getValueType().getSimpleVT();
765       unsigned BitWidth = KnownZero.getBitWidth();
766       if (VT == MVT::v8i8 || VT == MVT::v16i8) {
767         assert(BitWidth >= 8 && "Unexpected width!");
768         APInt Mask = APInt::getHighBitsSet(BitWidth, BitWidth - 8);
769         KnownZero |= Mask;
770       } else if (VT == MVT::v4i16 || VT == MVT::v8i16) {
771         assert(BitWidth >= 16 && "Unexpected width!");
772         APInt Mask = APInt::getHighBitsSet(BitWidth, BitWidth - 16);
773         KnownZero |= Mask;
774       }
775       break;
776     } break;
777     }
778   }
779   }
780 }
781
782 MVT AArch64TargetLowering::getScalarShiftAmountTy(const DataLayout &DL,
783                                                   EVT) const {
784   return MVT::i64;
785 }
786
787 bool AArch64TargetLowering::allowsMisalignedMemoryAccesses(EVT VT,
788                                                            unsigned AddrSpace,
789                                                            unsigned Align,
790                                                            bool *Fast) const {
791   if (Subtarget->requiresStrictAlign())
792     return false;
793   // FIXME: True for Cyclone, but not necessary others.
794   if (Fast)
795     *Fast = true;
796   return true;
797 }
798
799 FastISel *
800 AArch64TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
801                                       const TargetLibraryInfo *libInfo) const {
802   return AArch64::createFastISel(funcInfo, libInfo);
803 }
804
805 const char *AArch64TargetLowering::getTargetNodeName(unsigned Opcode) const {
806   switch ((AArch64ISD::NodeType)Opcode) {
807   case AArch64ISD::FIRST_NUMBER:      break;
808   case AArch64ISD::CALL:              return "AArch64ISD::CALL";
809   case AArch64ISD::ADRP:              return "AArch64ISD::ADRP";
810   case AArch64ISD::ADDlow:            return "AArch64ISD::ADDlow";
811   case AArch64ISD::LOADgot:           return "AArch64ISD::LOADgot";
812   case AArch64ISD::RET_FLAG:          return "AArch64ISD::RET_FLAG";
813   case AArch64ISD::BRCOND:            return "AArch64ISD::BRCOND";
814   case AArch64ISD::CSEL:              return "AArch64ISD::CSEL";
815   case AArch64ISD::FCSEL:             return "AArch64ISD::FCSEL";
816   case AArch64ISD::CSINV:             return "AArch64ISD::CSINV";
817   case AArch64ISD::CSNEG:             return "AArch64ISD::CSNEG";
818   case AArch64ISD::CSINC:             return "AArch64ISD::CSINC";
819   case AArch64ISD::THREAD_POINTER:    return "AArch64ISD::THREAD_POINTER";
820   case AArch64ISD::TLSDESC_CALLSEQ:   return "AArch64ISD::TLSDESC_CALLSEQ";
821   case AArch64ISD::ADC:               return "AArch64ISD::ADC";
822   case AArch64ISD::SBC:               return "AArch64ISD::SBC";
823   case AArch64ISD::ADDS:              return "AArch64ISD::ADDS";
824   case AArch64ISD::SUBS:              return "AArch64ISD::SUBS";
825   case AArch64ISD::ADCS:              return "AArch64ISD::ADCS";
826   case AArch64ISD::SBCS:              return "AArch64ISD::SBCS";
827   case AArch64ISD::ANDS:              return "AArch64ISD::ANDS";
828   case AArch64ISD::CCMP:              return "AArch64ISD::CCMP";
829   case AArch64ISD::CCMN:              return "AArch64ISD::CCMN";
830   case AArch64ISD::FCCMP:             return "AArch64ISD::FCCMP";
831   case AArch64ISD::FCMP:              return "AArch64ISD::FCMP";
832   case AArch64ISD::DUP:               return "AArch64ISD::DUP";
833   case AArch64ISD::DUPLANE8:          return "AArch64ISD::DUPLANE8";
834   case AArch64ISD::DUPLANE16:         return "AArch64ISD::DUPLANE16";
835   case AArch64ISD::DUPLANE32:         return "AArch64ISD::DUPLANE32";
836   case AArch64ISD::DUPLANE64:         return "AArch64ISD::DUPLANE64";
837   case AArch64ISD::MOVI:              return "AArch64ISD::MOVI";
838   case AArch64ISD::MOVIshift:         return "AArch64ISD::MOVIshift";
839   case AArch64ISD::MOVIedit:          return "AArch64ISD::MOVIedit";
840   case AArch64ISD::MOVImsl:           return "AArch64ISD::MOVImsl";
841   case AArch64ISD::FMOV:              return "AArch64ISD::FMOV";
842   case AArch64ISD::MVNIshift:         return "AArch64ISD::MVNIshift";
843   case AArch64ISD::MVNImsl:           return "AArch64ISD::MVNImsl";
844   case AArch64ISD::BICi:              return "AArch64ISD::BICi";
845   case AArch64ISD::ORRi:              return "AArch64ISD::ORRi";
846   case AArch64ISD::BSL:               return "AArch64ISD::BSL";
847   case AArch64ISD::NEG:               return "AArch64ISD::NEG";
848   case AArch64ISD::EXTR:              return "AArch64ISD::EXTR";
849   case AArch64ISD::ZIP1:              return "AArch64ISD::ZIP1";
850   case AArch64ISD::ZIP2:              return "AArch64ISD::ZIP2";
851   case AArch64ISD::UZP1:              return "AArch64ISD::UZP1";
852   case AArch64ISD::UZP2:              return "AArch64ISD::UZP2";
853   case AArch64ISD::TRN1:              return "AArch64ISD::TRN1";
854   case AArch64ISD::TRN2:              return "AArch64ISD::TRN2";
855   case AArch64ISD::REV16:             return "AArch64ISD::REV16";
856   case AArch64ISD::REV32:             return "AArch64ISD::REV32";
857   case AArch64ISD::REV64:             return "AArch64ISD::REV64";
858   case AArch64ISD::EXT:               return "AArch64ISD::EXT";
859   case AArch64ISD::VSHL:              return "AArch64ISD::VSHL";
860   case AArch64ISD::VLSHR:             return "AArch64ISD::VLSHR";
861   case AArch64ISD::VASHR:             return "AArch64ISD::VASHR";
862   case AArch64ISD::CMEQ:              return "AArch64ISD::CMEQ";
863   case AArch64ISD::CMGE:              return "AArch64ISD::CMGE";
864   case AArch64ISD::CMGT:              return "AArch64ISD::CMGT";
865   case AArch64ISD::CMHI:              return "AArch64ISD::CMHI";
866   case AArch64ISD::CMHS:              return "AArch64ISD::CMHS";
867   case AArch64ISD::FCMEQ:             return "AArch64ISD::FCMEQ";
868   case AArch64ISD::FCMGE:             return "AArch64ISD::FCMGE";
869   case AArch64ISD::FCMGT:             return "AArch64ISD::FCMGT";
870   case AArch64ISD::CMEQz:             return "AArch64ISD::CMEQz";
871   case AArch64ISD::CMGEz:             return "AArch64ISD::CMGEz";
872   case AArch64ISD::CMGTz:             return "AArch64ISD::CMGTz";
873   case AArch64ISD::CMLEz:             return "AArch64ISD::CMLEz";
874   case AArch64ISD::CMLTz:             return "AArch64ISD::CMLTz";
875   case AArch64ISD::FCMEQz:            return "AArch64ISD::FCMEQz";
876   case AArch64ISD::FCMGEz:            return "AArch64ISD::FCMGEz";
877   case AArch64ISD::FCMGTz:            return "AArch64ISD::FCMGTz";
878   case AArch64ISD::FCMLEz:            return "AArch64ISD::FCMLEz";
879   case AArch64ISD::FCMLTz:            return "AArch64ISD::FCMLTz";
880   case AArch64ISD::SADDV:             return "AArch64ISD::SADDV";
881   case AArch64ISD::UADDV:             return "AArch64ISD::UADDV";
882   case AArch64ISD::SMINV:             return "AArch64ISD::SMINV";
883   case AArch64ISD::UMINV:             return "AArch64ISD::UMINV";
884   case AArch64ISD::SMAXV:             return "AArch64ISD::SMAXV";
885   case AArch64ISD::UMAXV:             return "AArch64ISD::UMAXV";
886   case AArch64ISD::NOT:               return "AArch64ISD::NOT";
887   case AArch64ISD::BIT:               return "AArch64ISD::BIT";
888   case AArch64ISD::CBZ:               return "AArch64ISD::CBZ";
889   case AArch64ISD::CBNZ:              return "AArch64ISD::CBNZ";
890   case AArch64ISD::TBZ:               return "AArch64ISD::TBZ";
891   case AArch64ISD::TBNZ:              return "AArch64ISD::TBNZ";
892   case AArch64ISD::TC_RETURN:         return "AArch64ISD::TC_RETURN";
893   case AArch64ISD::PREFETCH:          return "AArch64ISD::PREFETCH";
894   case AArch64ISD::SITOF:             return "AArch64ISD::SITOF";
895   case AArch64ISD::UITOF:             return "AArch64ISD::UITOF";
896   case AArch64ISD::NVCAST:            return "AArch64ISD::NVCAST";
897   case AArch64ISD::SQSHL_I:           return "AArch64ISD::SQSHL_I";
898   case AArch64ISD::UQSHL_I:           return "AArch64ISD::UQSHL_I";
899   case AArch64ISD::SRSHR_I:           return "AArch64ISD::SRSHR_I";
900   case AArch64ISD::URSHR_I:           return "AArch64ISD::URSHR_I";
901   case AArch64ISD::SQSHLU_I:          return "AArch64ISD::SQSHLU_I";
902   case AArch64ISD::WrapperLarge:      return "AArch64ISD::WrapperLarge";
903   case AArch64ISD::LD2post:           return "AArch64ISD::LD2post";
904   case AArch64ISD::LD3post:           return "AArch64ISD::LD3post";
905   case AArch64ISD::LD4post:           return "AArch64ISD::LD4post";
906   case AArch64ISD::ST2post:           return "AArch64ISD::ST2post";
907   case AArch64ISD::ST3post:           return "AArch64ISD::ST3post";
908   case AArch64ISD::ST4post:           return "AArch64ISD::ST4post";
909   case AArch64ISD::LD1x2post:         return "AArch64ISD::LD1x2post";
910   case AArch64ISD::LD1x3post:         return "AArch64ISD::LD1x3post";
911   case AArch64ISD::LD1x4post:         return "AArch64ISD::LD1x4post";
912   case AArch64ISD::ST1x2post:         return "AArch64ISD::ST1x2post";
913   case AArch64ISD::ST1x3post:         return "AArch64ISD::ST1x3post";
914   case AArch64ISD::ST1x4post:         return "AArch64ISD::ST1x4post";
915   case AArch64ISD::LD1DUPpost:        return "AArch64ISD::LD1DUPpost";
916   case AArch64ISD::LD2DUPpost:        return "AArch64ISD::LD2DUPpost";
917   case AArch64ISD::LD3DUPpost:        return "AArch64ISD::LD3DUPpost";
918   case AArch64ISD::LD4DUPpost:        return "AArch64ISD::LD4DUPpost";
919   case AArch64ISD::LD1LANEpost:       return "AArch64ISD::LD1LANEpost";
920   case AArch64ISD::LD2LANEpost:       return "AArch64ISD::LD2LANEpost";
921   case AArch64ISD::LD3LANEpost:       return "AArch64ISD::LD3LANEpost";
922   case AArch64ISD::LD4LANEpost:       return "AArch64ISD::LD4LANEpost";
923   case AArch64ISD::ST2LANEpost:       return "AArch64ISD::ST2LANEpost";
924   case AArch64ISD::ST3LANEpost:       return "AArch64ISD::ST3LANEpost";
925   case AArch64ISD::ST4LANEpost:       return "AArch64ISD::ST4LANEpost";
926   case AArch64ISD::SMULL:             return "AArch64ISD::SMULL";
927   case AArch64ISD::UMULL:             return "AArch64ISD::UMULL";
928   }
929   return nullptr;
930 }
931
932 MachineBasicBlock *
933 AArch64TargetLowering::EmitF128CSEL(MachineInstr *MI,
934                                     MachineBasicBlock *MBB) const {
935   // We materialise the F128CSEL pseudo-instruction as some control flow and a
936   // phi node:
937
938   // OrigBB:
939   //     [... previous instrs leading to comparison ...]
940   //     b.ne TrueBB
941   //     b EndBB
942   // TrueBB:
943   //     ; Fallthrough
944   // EndBB:
945   //     Dest = PHI [IfTrue, TrueBB], [IfFalse, OrigBB]
946
947   MachineFunction *MF = MBB->getParent();
948   const TargetInstrInfo *TII = Subtarget->getInstrInfo();
949   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
950   DebugLoc DL = MI->getDebugLoc();
951   MachineFunction::iterator It = MBB;
952   ++It;
953
954   unsigned DestReg = MI->getOperand(0).getReg();
955   unsigned IfTrueReg = MI->getOperand(1).getReg();
956   unsigned IfFalseReg = MI->getOperand(2).getReg();
957   unsigned CondCode = MI->getOperand(3).getImm();
958   bool NZCVKilled = MI->getOperand(4).isKill();
959
960   MachineBasicBlock *TrueBB = MF->CreateMachineBasicBlock(LLVM_BB);
961   MachineBasicBlock *EndBB = MF->CreateMachineBasicBlock(LLVM_BB);
962   MF->insert(It, TrueBB);
963   MF->insert(It, EndBB);
964
965   // Transfer rest of current basic-block to EndBB
966   EndBB->splice(EndBB->begin(), MBB, std::next(MachineBasicBlock::iterator(MI)),
967                 MBB->end());
968   EndBB->transferSuccessorsAndUpdatePHIs(MBB);
969
970   BuildMI(MBB, DL, TII->get(AArch64::Bcc)).addImm(CondCode).addMBB(TrueBB);
971   BuildMI(MBB, DL, TII->get(AArch64::B)).addMBB(EndBB);
972   MBB->addSuccessor(TrueBB);
973   MBB->addSuccessor(EndBB);
974
975   // TrueBB falls through to the end.
976   TrueBB->addSuccessor(EndBB);
977
978   if (!NZCVKilled) {
979     TrueBB->addLiveIn(AArch64::NZCV);
980     EndBB->addLiveIn(AArch64::NZCV);
981   }
982
983   BuildMI(*EndBB, EndBB->begin(), DL, TII->get(AArch64::PHI), DestReg)
984       .addReg(IfTrueReg)
985       .addMBB(TrueBB)
986       .addReg(IfFalseReg)
987       .addMBB(MBB);
988
989   MI->eraseFromParent();
990   return EndBB;
991 }
992
993 MachineBasicBlock *
994 AArch64TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
995                                                  MachineBasicBlock *BB) const {
996   switch (MI->getOpcode()) {
997   default:
998 #ifndef NDEBUG
999     MI->dump();
1000 #endif
1001     llvm_unreachable("Unexpected instruction for custom inserter!");
1002
1003   case AArch64::F128CSEL:
1004     return EmitF128CSEL(MI, BB);
1005
1006   case TargetOpcode::STACKMAP:
1007   case TargetOpcode::PATCHPOINT:
1008     return emitPatchPoint(MI, BB);
1009   }
1010 }
1011
1012 //===----------------------------------------------------------------------===//
1013 // AArch64 Lowering private implementation.
1014 //===----------------------------------------------------------------------===//
1015
1016 //===----------------------------------------------------------------------===//
1017 // Lowering Code
1018 //===----------------------------------------------------------------------===//
1019
1020 /// changeIntCCToAArch64CC - Convert a DAG integer condition code to an AArch64
1021 /// CC
1022 static AArch64CC::CondCode changeIntCCToAArch64CC(ISD::CondCode CC) {
1023   switch (CC) {
1024   default:
1025     llvm_unreachable("Unknown condition code!");
1026   case ISD::SETNE:
1027     return AArch64CC::NE;
1028   case ISD::SETEQ:
1029     return AArch64CC::EQ;
1030   case ISD::SETGT:
1031     return AArch64CC::GT;
1032   case ISD::SETGE:
1033     return AArch64CC::GE;
1034   case ISD::SETLT:
1035     return AArch64CC::LT;
1036   case ISD::SETLE:
1037     return AArch64CC::LE;
1038   case ISD::SETUGT:
1039     return AArch64CC::HI;
1040   case ISD::SETUGE:
1041     return AArch64CC::HS;
1042   case ISD::SETULT:
1043     return AArch64CC::LO;
1044   case ISD::SETULE:
1045     return AArch64CC::LS;
1046   }
1047 }
1048
1049 /// changeFPCCToAArch64CC - Convert a DAG fp condition code to an AArch64 CC.
1050 static void changeFPCCToAArch64CC(ISD::CondCode CC,
1051                                   AArch64CC::CondCode &CondCode,
1052                                   AArch64CC::CondCode &CondCode2) {
1053   CondCode2 = AArch64CC::AL;
1054   switch (CC) {
1055   default:
1056     llvm_unreachable("Unknown FP condition!");
1057   case ISD::SETEQ:
1058   case ISD::SETOEQ:
1059     CondCode = AArch64CC::EQ;
1060     break;
1061   case ISD::SETGT:
1062   case ISD::SETOGT:
1063     CondCode = AArch64CC::GT;
1064     break;
1065   case ISD::SETGE:
1066   case ISD::SETOGE:
1067     CondCode = AArch64CC::GE;
1068     break;
1069   case ISD::SETOLT:
1070     CondCode = AArch64CC::MI;
1071     break;
1072   case ISD::SETOLE:
1073     CondCode = AArch64CC::LS;
1074     break;
1075   case ISD::SETONE:
1076     CondCode = AArch64CC::MI;
1077     CondCode2 = AArch64CC::GT;
1078     break;
1079   case ISD::SETO:
1080     CondCode = AArch64CC::VC;
1081     break;
1082   case ISD::SETUO:
1083     CondCode = AArch64CC::VS;
1084     break;
1085   case ISD::SETUEQ:
1086     CondCode = AArch64CC::EQ;
1087     CondCode2 = AArch64CC::VS;
1088     break;
1089   case ISD::SETUGT:
1090     CondCode = AArch64CC::HI;
1091     break;
1092   case ISD::SETUGE:
1093     CondCode = AArch64CC::PL;
1094     break;
1095   case ISD::SETLT:
1096   case ISD::SETULT:
1097     CondCode = AArch64CC::LT;
1098     break;
1099   case ISD::SETLE:
1100   case ISD::SETULE:
1101     CondCode = AArch64CC::LE;
1102     break;
1103   case ISD::SETNE:
1104   case ISD::SETUNE:
1105     CondCode = AArch64CC::NE;
1106     break;
1107   }
1108 }
1109
1110 /// changeVectorFPCCToAArch64CC - Convert a DAG fp condition code to an AArch64
1111 /// CC usable with the vector instructions. Fewer operations are available
1112 /// without a real NZCV register, so we have to use less efficient combinations
1113 /// to get the same effect.
1114 static void changeVectorFPCCToAArch64CC(ISD::CondCode CC,
1115                                         AArch64CC::CondCode &CondCode,
1116                                         AArch64CC::CondCode &CondCode2,
1117                                         bool &Invert) {
1118   Invert = false;
1119   switch (CC) {
1120   default:
1121     // Mostly the scalar mappings work fine.
1122     changeFPCCToAArch64CC(CC, CondCode, CondCode2);
1123     break;
1124   case ISD::SETUO:
1125     Invert = true; // Fallthrough
1126   case ISD::SETO:
1127     CondCode = AArch64CC::MI;
1128     CondCode2 = AArch64CC::GE;
1129     break;
1130   case ISD::SETUEQ:
1131   case ISD::SETULT:
1132   case ISD::SETULE:
1133   case ISD::SETUGT:
1134   case ISD::SETUGE:
1135     // All of the compare-mask comparisons are ordered, but we can switch
1136     // between the two by a double inversion. E.g. ULE == !OGT.
1137     Invert = true;
1138     changeFPCCToAArch64CC(getSetCCInverse(CC, false), CondCode, CondCode2);
1139     break;
1140   }
1141 }
1142
1143 static bool isLegalArithImmed(uint64_t C) {
1144   // Matches AArch64DAGToDAGISel::SelectArithImmed().
1145   return (C >> 12 == 0) || ((C & 0xFFFULL) == 0 && C >> 24 == 0);
1146 }
1147
1148 static SDValue emitComparison(SDValue LHS, SDValue RHS, ISD::CondCode CC,
1149                               SDLoc dl, SelectionDAG &DAG) {
1150   EVT VT = LHS.getValueType();
1151
1152   if (VT.isFloatingPoint())
1153     return DAG.getNode(AArch64ISD::FCMP, dl, VT, LHS, RHS);
1154
1155   // The CMP instruction is just an alias for SUBS, and representing it as
1156   // SUBS means that it's possible to get CSE with subtract operations.
1157   // A later phase can perform the optimization of setting the destination
1158   // register to WZR/XZR if it ends up being unused.
1159   unsigned Opcode = AArch64ISD::SUBS;
1160
1161   if (RHS.getOpcode() == ISD::SUB && isa<ConstantSDNode>(RHS.getOperand(0)) &&
1162       cast<ConstantSDNode>(RHS.getOperand(0))->getZExtValue() == 0 &&
1163       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1164     // We'd like to combine a (CMP op1, (sub 0, op2) into a CMN instruction on
1165     // the grounds that "op1 - (-op2) == op1 + op2". However, the C and V flags
1166     // can be set differently by this operation. It comes down to whether
1167     // "SInt(~op2)+1 == SInt(~op2+1)" (and the same for UInt). If they are then
1168     // everything is fine. If not then the optimization is wrong. Thus general
1169     // comparisons are only valid if op2 != 0.
1170
1171     // So, finally, the only LLVM-native comparisons that don't mention C and V
1172     // are SETEQ and SETNE. They're the only ones we can safely use CMN for in
1173     // the absence of information about op2.
1174     Opcode = AArch64ISD::ADDS;
1175     RHS = RHS.getOperand(1);
1176   } else if (LHS.getOpcode() == ISD::AND && isa<ConstantSDNode>(RHS) &&
1177              cast<ConstantSDNode>(RHS)->getZExtValue() == 0 &&
1178              !isUnsignedIntSetCC(CC)) {
1179     // Similarly, (CMP (and X, Y), 0) can be implemented with a TST
1180     // (a.k.a. ANDS) except that the flags are only guaranteed to work for one
1181     // of the signed comparisons.
1182     Opcode = AArch64ISD::ANDS;
1183     RHS = LHS.getOperand(1);
1184     LHS = LHS.getOperand(0);
1185   }
1186
1187   return DAG.getNode(Opcode, dl, DAG.getVTList(VT, MVT_CC), LHS, RHS)
1188       .getValue(1);
1189 }
1190
1191 /// \defgroup AArch64CCMP CMP;CCMP matching
1192 ///
1193 /// These functions deal with the formation of CMP;CCMP;... sequences.
1194 /// The CCMP/CCMN/FCCMP/FCCMPE instructions allow the conditional execution of
1195 /// a comparison. They set the NZCV flags to a predefined value if their
1196 /// predicate is false. This allows to express arbitrary conjunctions, for
1197 /// example "cmp 0 (and (setCA (cmp A)) (setCB (cmp B))))"
1198 /// expressed as:
1199 ///   cmp A
1200 ///   ccmp B, inv(CB), CA
1201 ///   check for CB flags
1202 ///
1203 /// In general we can create code for arbitrary "... (and (and A B) C)"
1204 /// sequences. We can also implement some "or" expressions, because "(or A B)"
1205 /// is equivalent to "not (and (not A) (not B))" and we can implement some
1206 /// negation operations:
1207 /// We can negate the results of a single comparison by inverting the flags
1208 /// used when the predicate fails and inverting the flags tested in the next
1209 /// instruction; We can also negate the results of the whole previous
1210 /// conditional compare sequence by inverting the flags tested in the next
1211 /// instruction. However there is no way to negate the result of a partial
1212 /// sequence.
1213 ///
1214 /// Therefore on encountering an "or" expression we can negate the subtree on
1215 /// one side and have to be able to push the negate to the leafs of the subtree
1216 /// on the other side (see also the comments in code). As complete example:
1217 /// "or (or (setCA (cmp A)) (setCB (cmp B)))
1218 ///     (and (setCC (cmp C)) (setCD (cmp D)))"
1219 /// is transformed to
1220 /// "not (and (not (and (setCC (cmp C)) (setCC (cmp D))))
1221 ///           (and (not (setCA (cmp A)) (not (setCB (cmp B))))))"
1222 /// and implemented as:
1223 ///   cmp C
1224 ///   ccmp D, inv(CD), CC
1225 ///   ccmp A, CA, inv(CD)
1226 ///   ccmp B, CB, inv(CA)
1227 ///   check for CB flags
1228 /// A counterexample is "or (and A B) (and C D)" which cannot be implemented
1229 /// by conditional compare sequences.
1230 /// @{
1231
1232 /// Create a conditional comparison; Use CCMP, CCMN or FCCMP as appropriate.
1233 static SDValue emitConditionalComparison(SDValue LHS, SDValue RHS,
1234                                          ISD::CondCode CC, SDValue CCOp,
1235                                          SDValue Condition, unsigned NZCV,
1236                                          SDLoc DL, SelectionDAG &DAG) {
1237   unsigned Opcode = 0;
1238   if (LHS.getValueType().isFloatingPoint())
1239     Opcode = AArch64ISD::FCCMP;
1240   else if (RHS.getOpcode() == ISD::SUB) {
1241     SDValue SubOp0 = RHS.getOperand(0);
1242     if (const ConstantSDNode *SubOp0C = dyn_cast<ConstantSDNode>(SubOp0))
1243       if (SubOp0C->isNullValue() && (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1244         // See emitComparison() on why we can only do this for SETEQ and SETNE.
1245         Opcode = AArch64ISD::CCMN;
1246         RHS = RHS.getOperand(1);
1247       }
1248   }
1249   if (Opcode == 0)
1250     Opcode = AArch64ISD::CCMP;
1251
1252   SDValue NZCVOp = DAG.getConstant(NZCV, DL, MVT::i32);
1253   return DAG.getNode(Opcode, DL, MVT_CC, LHS, RHS, NZCVOp, Condition, CCOp);
1254 }
1255
1256 /// Returns true if @p Val is a tree of AND/OR/SETCC operations.
1257 /// CanPushNegate is set to true if we can push a negate operation through
1258 /// the tree in a was that we are left with AND operations and negate operations
1259 /// at the leafs only. i.e. "not (or (or x y) z)" can be changed to
1260 /// "and (and (not x) (not y)) (not z)"; "not (or (and x y) z)" cannot be
1261 /// brought into such a form.
1262 static bool isConjunctionDisjunctionTree(const SDValue Val, bool &CanPushNegate,
1263                                          unsigned Depth = 0) {
1264   if (!Val.hasOneUse())
1265     return false;
1266   unsigned Opcode = Val->getOpcode();
1267   if (Opcode == ISD::SETCC) {
1268     CanPushNegate = true;
1269     return true;
1270   }
1271   // Protect against stack overflow.
1272   if (Depth > 15)
1273     return false;
1274   if (Opcode == ISD::AND || Opcode == ISD::OR) {
1275     SDValue O0 = Val->getOperand(0);
1276     SDValue O1 = Val->getOperand(1);
1277     bool CanPushNegateL;
1278     if (!isConjunctionDisjunctionTree(O0, CanPushNegateL, Depth+1))
1279       return false;
1280     bool CanPushNegateR;
1281     if (!isConjunctionDisjunctionTree(O1, CanPushNegateR, Depth+1))
1282       return false;
1283     // We cannot push a negate through an AND operation (it would become an OR),
1284     // we can however change a (not (or x y)) to (and (not x) (not y)) if we can
1285     // push the negate through the x/y subtrees.
1286     CanPushNegate = (Opcode == ISD::OR) && CanPushNegateL && CanPushNegateR;
1287     return true;
1288   }
1289   return false;
1290 }
1291
1292 /// Emit conjunction or disjunction tree with the CMP/FCMP followed by a chain
1293 /// of CCMP/CFCMP ops. See @ref AArch64CCMP.
1294 /// Tries to transform the given i1 producing node @p Val to a series compare
1295 /// and conditional compare operations. @returns an NZCV flags producing node
1296 /// and sets @p OutCC to the flags that should be tested or returns SDValue() if
1297 /// transformation was not possible.
1298 /// On recursive invocations @p PushNegate may be set to true to have negation
1299 /// effects pushed to the tree leafs; @p Predicate is an NZCV flag predicate
1300 /// for the comparisons in the current subtree; @p Depth limits the search
1301 /// depth to avoid stack overflow.
1302 static SDValue emitConjunctionDisjunctionTree(SelectionDAG &DAG, SDValue Val,
1303     AArch64CC::CondCode &OutCC, bool PushNegate = false,
1304     SDValue CCOp = SDValue(), AArch64CC::CondCode Predicate = AArch64CC::AL,
1305     unsigned Depth = 0) {
1306   // We're at a tree leaf, produce a conditional comparison operation.
1307   unsigned Opcode = Val->getOpcode();
1308   if (Opcode == ISD::SETCC) {
1309     SDValue LHS = Val->getOperand(0);
1310     SDValue RHS = Val->getOperand(1);
1311     ISD::CondCode CC = cast<CondCodeSDNode>(Val->getOperand(2))->get();
1312     bool isInteger = LHS.getValueType().isInteger();
1313     if (PushNegate)
1314       CC = getSetCCInverse(CC, isInteger);
1315     SDLoc DL(Val);
1316     // Determine OutCC and handle FP special case.
1317     if (isInteger) {
1318       OutCC = changeIntCCToAArch64CC(CC);
1319     } else {
1320       assert(LHS.getValueType().isFloatingPoint());
1321       AArch64CC::CondCode ExtraCC;
1322       changeFPCCToAArch64CC(CC, OutCC, ExtraCC);
1323       // Surpisingly some floating point conditions can't be tested with a
1324       // single condition code. Construct an additional comparison in this case.
1325       // See comment below on how we deal with OR conditions.
1326       if (ExtraCC != AArch64CC::AL) {
1327         SDValue ExtraCmp;
1328         if (!CCOp.getNode())
1329           ExtraCmp = emitComparison(LHS, RHS, CC, DL, DAG);
1330         else {
1331           SDValue ConditionOp = DAG.getConstant(Predicate, DL, MVT_CC);
1332           // Note that we want the inverse of ExtraCC, so NZCV is not inversed.
1333           unsigned NZCV = AArch64CC::getNZCVToSatisfyCondCode(ExtraCC);
1334           ExtraCmp = emitConditionalComparison(LHS, RHS, CC, CCOp, ConditionOp,
1335                                                NZCV, DL, DAG);
1336         }
1337         CCOp = ExtraCmp;
1338         Predicate = AArch64CC::getInvertedCondCode(ExtraCC);
1339         OutCC = AArch64CC::getInvertedCondCode(OutCC);
1340       }
1341     }
1342
1343     // Produce a normal comparison if we are first in the chain
1344     if (!CCOp.getNode())
1345       return emitComparison(LHS, RHS, CC, DL, DAG);
1346     // Otherwise produce a ccmp.
1347     SDValue ConditionOp = DAG.getConstant(Predicate, DL, MVT_CC);
1348     AArch64CC::CondCode InvOutCC = AArch64CC::getInvertedCondCode(OutCC);
1349     unsigned NZCV = AArch64CC::getNZCVToSatisfyCondCode(InvOutCC);
1350     return emitConditionalComparison(LHS, RHS, CC, CCOp, ConditionOp, NZCV, DL,
1351                                      DAG);
1352   } else if ((Opcode != ISD::AND && Opcode != ISD::OR) || !Val->hasOneUse())
1353     return SDValue();
1354
1355   assert((Opcode == ISD::OR || !PushNegate)
1356          && "Can only push negate through OR operation");
1357
1358   // Check if both sides can be transformed.
1359   SDValue LHS = Val->getOperand(0);
1360   SDValue RHS = Val->getOperand(1);
1361   bool CanPushNegateL;
1362   if (!isConjunctionDisjunctionTree(LHS, CanPushNegateL, Depth+1))
1363     return SDValue();
1364   bool CanPushNegateR;
1365   if (!isConjunctionDisjunctionTree(RHS, CanPushNegateR, Depth+1))
1366     return SDValue();
1367
1368   // Do we need to negate our operands?
1369   bool NegateOperands = Opcode == ISD::OR;
1370   // We can negate the results of all previous operations by inverting the
1371   // predicate flags giving us a free negation for one side. For the other side
1372   // we need to be able to push the negation to the leafs of the tree.
1373   if (NegateOperands) {
1374     if (!CanPushNegateL && !CanPushNegateR)
1375       return SDValue();
1376     // Order the side where we can push the negate through to LHS.
1377     if (!CanPushNegateL && CanPushNegateR)
1378       std::swap(LHS, RHS);
1379   } else {
1380     bool NeedsNegOutL = LHS->getOpcode() == ISD::OR;
1381     bool NeedsNegOutR = RHS->getOpcode() == ISD::OR;
1382     if (NeedsNegOutL && NeedsNegOutR)
1383       return SDValue();
1384     // Order the side where we need to negate the output flags to RHS so it
1385     // gets emitted first.
1386     if (NeedsNegOutL)
1387       std::swap(LHS, RHS);
1388   }
1389
1390   // Emit RHS. If we want to negate the tree we only need to push a negate
1391   // through if we are already in a PushNegate case, otherwise we can negate
1392   // the "flags to test" afterwards.
1393   AArch64CC::CondCode RHSCC;
1394   SDValue CmpR = emitConjunctionDisjunctionTree(DAG, RHS, RHSCC, PushNegate,
1395                                                 CCOp, Predicate, Depth+1);
1396   if (NegateOperands && !PushNegate)
1397     RHSCC = AArch64CC::getInvertedCondCode(RHSCC);
1398   // Emit LHS. We must push the negate through if we need to negate it.
1399   SDValue CmpL = emitConjunctionDisjunctionTree(DAG, LHS, OutCC, NegateOperands,
1400                                                 CmpR, RHSCC, Depth+1);
1401   // If we transformed an OR to and AND then we have to negate the result
1402   // (or absorb a PushNegate resulting in a double negation).
1403   if (Opcode == ISD::OR && !PushNegate)
1404     OutCC = AArch64CC::getInvertedCondCode(OutCC);
1405   return CmpL;
1406 }
1407
1408 /// @}
1409
1410 static SDValue getAArch64Cmp(SDValue LHS, SDValue RHS, ISD::CondCode CC,
1411                              SDValue &AArch64cc, SelectionDAG &DAG, SDLoc dl) {
1412   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
1413     EVT VT = RHS.getValueType();
1414     uint64_t C = RHSC->getZExtValue();
1415     if (!isLegalArithImmed(C)) {
1416       // Constant does not fit, try adjusting it by one?
1417       switch (CC) {
1418       default:
1419         break;
1420       case ISD::SETLT:
1421       case ISD::SETGE:
1422         if ((VT == MVT::i32 && C != 0x80000000 &&
1423              isLegalArithImmed((uint32_t)(C - 1))) ||
1424             (VT == MVT::i64 && C != 0x80000000ULL &&
1425              isLegalArithImmed(C - 1ULL))) {
1426           CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT;
1427           C = (VT == MVT::i32) ? (uint32_t)(C - 1) : C - 1;
1428           RHS = DAG.getConstant(C, dl, VT);
1429         }
1430         break;
1431       case ISD::SETULT:
1432       case ISD::SETUGE:
1433         if ((VT == MVT::i32 && C != 0 &&
1434              isLegalArithImmed((uint32_t)(C - 1))) ||
1435             (VT == MVT::i64 && C != 0ULL && isLegalArithImmed(C - 1ULL))) {
1436           CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT;
1437           C = (VT == MVT::i32) ? (uint32_t)(C - 1) : C - 1;
1438           RHS = DAG.getConstant(C, dl, VT);
1439         }
1440         break;
1441       case ISD::SETLE:
1442       case ISD::SETGT:
1443         if ((VT == MVT::i32 && C != INT32_MAX &&
1444              isLegalArithImmed((uint32_t)(C + 1))) ||
1445             (VT == MVT::i64 && C != INT64_MAX &&
1446              isLegalArithImmed(C + 1ULL))) {
1447           CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE;
1448           C = (VT == MVT::i32) ? (uint32_t)(C + 1) : C + 1;
1449           RHS = DAG.getConstant(C, dl, VT);
1450         }
1451         break;
1452       case ISD::SETULE:
1453       case ISD::SETUGT:
1454         if ((VT == MVT::i32 && C != UINT32_MAX &&
1455              isLegalArithImmed((uint32_t)(C + 1))) ||
1456             (VT == MVT::i64 && C != UINT64_MAX &&
1457              isLegalArithImmed(C + 1ULL))) {
1458           CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
1459           C = (VT == MVT::i32) ? (uint32_t)(C + 1) : C + 1;
1460           RHS = DAG.getConstant(C, dl, VT);
1461         }
1462         break;
1463       }
1464     }
1465   }
1466   SDValue Cmp;
1467   AArch64CC::CondCode AArch64CC;
1468   if ((CC == ISD::SETEQ || CC == ISD::SETNE) && isa<ConstantSDNode>(RHS)) {
1469     const ConstantSDNode *RHSC = cast<ConstantSDNode>(RHS);
1470
1471     // The imm operand of ADDS is an unsigned immediate, in the range 0 to 4095.
1472     // For the i8 operand, the largest immediate is 255, so this can be easily
1473     // encoded in the compare instruction. For the i16 operand, however, the
1474     // largest immediate cannot be encoded in the compare.
1475     // Therefore, use a sign extending load and cmn to avoid materializing the
1476     // -1 constant. For example,
1477     // movz w1, #65535
1478     // ldrh w0, [x0, #0]
1479     // cmp w0, w1
1480     // >
1481     // ldrsh w0, [x0, #0]
1482     // cmn w0, #1
1483     // Fundamental, we're relying on the property that (zext LHS) == (zext RHS)
1484     // if and only if (sext LHS) == (sext RHS). The checks are in place to
1485     // ensure both the LHS and RHS are truly zero extended and to make sure the
1486     // transformation is profitable.
1487     if ((RHSC->getZExtValue() >> 16 == 0) && isa<LoadSDNode>(LHS) &&
1488         cast<LoadSDNode>(LHS)->getExtensionType() == ISD::ZEXTLOAD &&
1489         cast<LoadSDNode>(LHS)->getMemoryVT() == MVT::i16 &&
1490         LHS.getNode()->hasNUsesOfValue(1, 0)) {
1491       int16_t ValueofRHS = cast<ConstantSDNode>(RHS)->getZExtValue();
1492       if (ValueofRHS < 0 && isLegalArithImmed(-ValueofRHS)) {
1493         SDValue SExt =
1494             DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, LHS.getValueType(), LHS,
1495                         DAG.getValueType(MVT::i16));
1496         Cmp = emitComparison(SExt, DAG.getConstant(ValueofRHS, dl,
1497                                                    RHS.getValueType()),
1498                              CC, dl, DAG);
1499         AArch64CC = changeIntCCToAArch64CC(CC);
1500       }
1501     }
1502
1503     if (!Cmp && (RHSC->isNullValue() || RHSC->isOne())) {
1504       if ((Cmp = emitConjunctionDisjunctionTree(DAG, LHS, AArch64CC))) {
1505         if ((CC == ISD::SETNE) ^ RHSC->isNullValue())
1506           AArch64CC = AArch64CC::getInvertedCondCode(AArch64CC);
1507       }
1508     }
1509   }
1510
1511   if (!Cmp) {
1512     Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
1513     AArch64CC = changeIntCCToAArch64CC(CC);
1514   }
1515   AArch64cc = DAG.getConstant(AArch64CC, dl, MVT_CC);
1516   return Cmp;
1517 }
1518
1519 static std::pair<SDValue, SDValue>
1520 getAArch64XALUOOp(AArch64CC::CondCode &CC, SDValue Op, SelectionDAG &DAG) {
1521   assert((Op.getValueType() == MVT::i32 || Op.getValueType() == MVT::i64) &&
1522          "Unsupported value type");
1523   SDValue Value, Overflow;
1524   SDLoc DL(Op);
1525   SDValue LHS = Op.getOperand(0);
1526   SDValue RHS = Op.getOperand(1);
1527   unsigned Opc = 0;
1528   switch (Op.getOpcode()) {
1529   default:
1530     llvm_unreachable("Unknown overflow instruction!");
1531   case ISD::SADDO:
1532     Opc = AArch64ISD::ADDS;
1533     CC = AArch64CC::VS;
1534     break;
1535   case ISD::UADDO:
1536     Opc = AArch64ISD::ADDS;
1537     CC = AArch64CC::HS;
1538     break;
1539   case ISD::SSUBO:
1540     Opc = AArch64ISD::SUBS;
1541     CC = AArch64CC::VS;
1542     break;
1543   case ISD::USUBO:
1544     Opc = AArch64ISD::SUBS;
1545     CC = AArch64CC::LO;
1546     break;
1547   // Multiply needs a little bit extra work.
1548   case ISD::SMULO:
1549   case ISD::UMULO: {
1550     CC = AArch64CC::NE;
1551     bool IsSigned = Op.getOpcode() == ISD::SMULO;
1552     if (Op.getValueType() == MVT::i32) {
1553       unsigned ExtendOpc = IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
1554       // For a 32 bit multiply with overflow check we want the instruction
1555       // selector to generate a widening multiply (SMADDL/UMADDL). For that we
1556       // need to generate the following pattern:
1557       // (i64 add 0, (i64 mul (i64 sext|zext i32 %a), (i64 sext|zext i32 %b))
1558       LHS = DAG.getNode(ExtendOpc, DL, MVT::i64, LHS);
1559       RHS = DAG.getNode(ExtendOpc, DL, MVT::i64, RHS);
1560       SDValue Mul = DAG.getNode(ISD::MUL, DL, MVT::i64, LHS, RHS);
1561       SDValue Add = DAG.getNode(ISD::ADD, DL, MVT::i64, Mul,
1562                                 DAG.getConstant(0, DL, MVT::i64));
1563       // On AArch64 the upper 32 bits are always zero extended for a 32 bit
1564       // operation. We need to clear out the upper 32 bits, because we used a
1565       // widening multiply that wrote all 64 bits. In the end this should be a
1566       // noop.
1567       Value = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, Add);
1568       if (IsSigned) {
1569         // The signed overflow check requires more than just a simple check for
1570         // any bit set in the upper 32 bits of the result. These bits could be
1571         // just the sign bits of a negative number. To perform the overflow
1572         // check we have to arithmetic shift right the 32nd bit of the result by
1573         // 31 bits. Then we compare the result to the upper 32 bits.
1574         SDValue UpperBits = DAG.getNode(ISD::SRL, DL, MVT::i64, Add,
1575                                         DAG.getConstant(32, DL, MVT::i64));
1576         UpperBits = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, UpperBits);
1577         SDValue LowerBits = DAG.getNode(ISD::SRA, DL, MVT::i32, Value,
1578                                         DAG.getConstant(31, DL, MVT::i64));
1579         // It is important that LowerBits is last, otherwise the arithmetic
1580         // shift will not be folded into the compare (SUBS).
1581         SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32);
1582         Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1583                        .getValue(1);
1584       } else {
1585         // The overflow check for unsigned multiply is easy. We only need to
1586         // check if any of the upper 32 bits are set. This can be done with a
1587         // CMP (shifted register). For that we need to generate the following
1588         // pattern:
1589         // (i64 AArch64ISD::SUBS i64 0, (i64 srl i64 %Mul, i64 32)
1590         SDValue UpperBits = DAG.getNode(ISD::SRL, DL, MVT::i64, Mul,
1591                                         DAG.getConstant(32, DL, MVT::i64));
1592         SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1593         Overflow =
1594             DAG.getNode(AArch64ISD::SUBS, DL, VTs,
1595                         DAG.getConstant(0, DL, MVT::i64),
1596                         UpperBits).getValue(1);
1597       }
1598       break;
1599     }
1600     assert(Op.getValueType() == MVT::i64 && "Expected an i64 value type");
1601     // For the 64 bit multiply
1602     Value = DAG.getNode(ISD::MUL, DL, MVT::i64, LHS, RHS);
1603     if (IsSigned) {
1604       SDValue UpperBits = DAG.getNode(ISD::MULHS, DL, MVT::i64, LHS, RHS);
1605       SDValue LowerBits = DAG.getNode(ISD::SRA, DL, MVT::i64, Value,
1606                                       DAG.getConstant(63, DL, MVT::i64));
1607       // It is important that LowerBits is last, otherwise the arithmetic
1608       // shift will not be folded into the compare (SUBS).
1609       SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1610       Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1611                      .getValue(1);
1612     } else {
1613       SDValue UpperBits = DAG.getNode(ISD::MULHU, DL, MVT::i64, LHS, RHS);
1614       SDVTList VTs = DAG.getVTList(MVT::i64, MVT::i32);
1615       Overflow =
1616           DAG.getNode(AArch64ISD::SUBS, DL, VTs,
1617                       DAG.getConstant(0, DL, MVT::i64),
1618                       UpperBits).getValue(1);
1619     }
1620     break;
1621   }
1622   } // switch (...)
1623
1624   if (Opc) {
1625     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::i32);
1626
1627     // Emit the AArch64 operation with overflow check.
1628     Value = DAG.getNode(Opc, DL, VTs, LHS, RHS);
1629     Overflow = Value.getValue(1);
1630   }
1631   return std::make_pair(Value, Overflow);
1632 }
1633
1634 SDValue AArch64TargetLowering::LowerF128Call(SDValue Op, SelectionDAG &DAG,
1635                                              RTLIB::Libcall Call) const {
1636   SmallVector<SDValue, 2> Ops(Op->op_begin(), Op->op_end());
1637   return makeLibCall(DAG, Call, MVT::f128, &Ops[0], Ops.size(), false,
1638                      SDLoc(Op)).first;
1639 }
1640
1641 static SDValue LowerXOR(SDValue Op, SelectionDAG &DAG) {
1642   SDValue Sel = Op.getOperand(0);
1643   SDValue Other = Op.getOperand(1);
1644
1645   // If neither operand is a SELECT_CC, give up.
1646   if (Sel.getOpcode() != ISD::SELECT_CC)
1647     std::swap(Sel, Other);
1648   if (Sel.getOpcode() != ISD::SELECT_CC)
1649     return Op;
1650
1651   // The folding we want to perform is:
1652   // (xor x, (select_cc a, b, cc, 0, -1) )
1653   //   -->
1654   // (csel x, (xor x, -1), cc ...)
1655   //
1656   // The latter will get matched to a CSINV instruction.
1657
1658   ISD::CondCode CC = cast<CondCodeSDNode>(Sel.getOperand(4))->get();
1659   SDValue LHS = Sel.getOperand(0);
1660   SDValue RHS = Sel.getOperand(1);
1661   SDValue TVal = Sel.getOperand(2);
1662   SDValue FVal = Sel.getOperand(3);
1663   SDLoc dl(Sel);
1664
1665   // FIXME: This could be generalized to non-integer comparisons.
1666   if (LHS.getValueType() != MVT::i32 && LHS.getValueType() != MVT::i64)
1667     return Op;
1668
1669   ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal);
1670   ConstantSDNode *CTVal = dyn_cast<ConstantSDNode>(TVal);
1671
1672   // The values aren't constants, this isn't the pattern we're looking for.
1673   if (!CFVal || !CTVal)
1674     return Op;
1675
1676   // We can commute the SELECT_CC by inverting the condition.  This
1677   // might be needed to make this fit into a CSINV pattern.
1678   if (CTVal->isAllOnesValue() && CFVal->isNullValue()) {
1679     std::swap(TVal, FVal);
1680     std::swap(CTVal, CFVal);
1681     CC = ISD::getSetCCInverse(CC, true);
1682   }
1683
1684   // If the constants line up, perform the transform!
1685   if (CTVal->isNullValue() && CFVal->isAllOnesValue()) {
1686     SDValue CCVal;
1687     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
1688
1689     FVal = Other;
1690     TVal = DAG.getNode(ISD::XOR, dl, Other.getValueType(), Other,
1691                        DAG.getConstant(-1ULL, dl, Other.getValueType()));
1692
1693     return DAG.getNode(AArch64ISD::CSEL, dl, Sel.getValueType(), FVal, TVal,
1694                        CCVal, Cmp);
1695   }
1696
1697   return Op;
1698 }
1699
1700 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
1701   EVT VT = Op.getValueType();
1702
1703   // Let legalize expand this if it isn't a legal type yet.
1704   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
1705     return SDValue();
1706
1707   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
1708
1709   unsigned Opc;
1710   bool ExtraOp = false;
1711   switch (Op.getOpcode()) {
1712   default:
1713     llvm_unreachable("Invalid code");
1714   case ISD::ADDC:
1715     Opc = AArch64ISD::ADDS;
1716     break;
1717   case ISD::SUBC:
1718     Opc = AArch64ISD::SUBS;
1719     break;
1720   case ISD::ADDE:
1721     Opc = AArch64ISD::ADCS;
1722     ExtraOp = true;
1723     break;
1724   case ISD::SUBE:
1725     Opc = AArch64ISD::SBCS;
1726     ExtraOp = true;
1727     break;
1728   }
1729
1730   if (!ExtraOp)
1731     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), Op.getOperand(1));
1732   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), Op.getOperand(1),
1733                      Op.getOperand(2));
1734 }
1735
1736 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
1737   // Let legalize expand this if it isn't a legal type yet.
1738   if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType()))
1739     return SDValue();
1740
1741   SDLoc dl(Op);
1742   AArch64CC::CondCode CC;
1743   // The actual operation that sets the overflow or carry flag.
1744   SDValue Value, Overflow;
1745   std::tie(Value, Overflow) = getAArch64XALUOOp(CC, Op, DAG);
1746
1747   // We use 0 and 1 as false and true values.
1748   SDValue TVal = DAG.getConstant(1, dl, MVT::i32);
1749   SDValue FVal = DAG.getConstant(0, dl, MVT::i32);
1750
1751   // We use an inverted condition, because the conditional select is inverted
1752   // too. This will allow it to be selected to a single instruction:
1753   // CSINC Wd, WZR, WZR, invert(cond).
1754   SDValue CCVal = DAG.getConstant(getInvertedCondCode(CC), dl, MVT::i32);
1755   Overflow = DAG.getNode(AArch64ISD::CSEL, dl, MVT::i32, FVal, TVal,
1756                          CCVal, Overflow);
1757
1758   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
1759   return DAG.getNode(ISD::MERGE_VALUES, dl, VTs, Value, Overflow);
1760 }
1761
1762 // Prefetch operands are:
1763 // 1: Address to prefetch
1764 // 2: bool isWrite
1765 // 3: int locality (0 = no locality ... 3 = extreme locality)
1766 // 4: bool isDataCache
1767 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG) {
1768   SDLoc DL(Op);
1769   unsigned IsWrite = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
1770   unsigned Locality = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
1771   unsigned IsData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
1772
1773   bool IsStream = !Locality;
1774   // When the locality number is set
1775   if (Locality) {
1776     // The front-end should have filtered out the out-of-range values
1777     assert(Locality <= 3 && "Prefetch locality out-of-range");
1778     // The locality degree is the opposite of the cache speed.
1779     // Put the number the other way around.
1780     // The encoding starts at 0 for level 1
1781     Locality = 3 - Locality;
1782   }
1783
1784   // built the mask value encoding the expected behavior.
1785   unsigned PrfOp = (IsWrite << 4) |     // Load/Store bit
1786                    (!IsData << 3) |     // IsDataCache bit
1787                    (Locality << 1) |    // Cache level bits
1788                    (unsigned)IsStream;  // Stream bit
1789   return DAG.getNode(AArch64ISD::PREFETCH, DL, MVT::Other, Op.getOperand(0),
1790                      DAG.getConstant(PrfOp, DL, MVT::i32), Op.getOperand(1));
1791 }
1792
1793 SDValue AArch64TargetLowering::LowerFP_EXTEND(SDValue Op,
1794                                               SelectionDAG &DAG) const {
1795   assert(Op.getValueType() == MVT::f128 && "Unexpected lowering");
1796
1797   RTLIB::Libcall LC;
1798   LC = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType());
1799
1800   return LowerF128Call(Op, DAG, LC);
1801 }
1802
1803 SDValue AArch64TargetLowering::LowerFP_ROUND(SDValue Op,
1804                                              SelectionDAG &DAG) const {
1805   if (Op.getOperand(0).getValueType() != MVT::f128) {
1806     // It's legal except when f128 is involved
1807     return Op;
1808   }
1809
1810   RTLIB::Libcall LC;
1811   LC = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType());
1812
1813   // FP_ROUND node has a second operand indicating whether it is known to be
1814   // precise. That doesn't take part in the LibCall so we can't directly use
1815   // LowerF128Call.
1816   SDValue SrcVal = Op.getOperand(0);
1817   return makeLibCall(DAG, LC, Op.getValueType(), &SrcVal, 1,
1818                      /*isSigned*/ false, SDLoc(Op)).first;
1819 }
1820
1821 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) {
1822   // Warning: We maintain cost tables in AArch64TargetTransformInfo.cpp.
1823   // Any additional optimization in this function should be recorded
1824   // in the cost tables.
1825   EVT InVT = Op.getOperand(0).getValueType();
1826   EVT VT = Op.getValueType();
1827
1828   if (VT.getSizeInBits() < InVT.getSizeInBits()) {
1829     SDLoc dl(Op);
1830     SDValue Cv =
1831         DAG.getNode(Op.getOpcode(), dl, InVT.changeVectorElementTypeToInteger(),
1832                     Op.getOperand(0));
1833     return DAG.getNode(ISD::TRUNCATE, dl, VT, Cv);
1834   }
1835
1836   if (VT.getSizeInBits() > InVT.getSizeInBits()) {
1837     SDLoc dl(Op);
1838     MVT ExtVT =
1839         MVT::getVectorVT(MVT::getFloatingPointVT(VT.getScalarSizeInBits()),
1840                          VT.getVectorNumElements());
1841     SDValue Ext = DAG.getNode(ISD::FP_EXTEND, dl, ExtVT, Op.getOperand(0));
1842     return DAG.getNode(Op.getOpcode(), dl, VT, Ext);
1843   }
1844
1845   // Type changing conversions are illegal.
1846   return Op;
1847 }
1848
1849 SDValue AArch64TargetLowering::LowerFP_TO_INT(SDValue Op,
1850                                               SelectionDAG &DAG) const {
1851   if (Op.getOperand(0).getValueType().isVector())
1852     return LowerVectorFP_TO_INT(Op, DAG);
1853
1854   // f16 conversions are promoted to f32.
1855   if (Op.getOperand(0).getValueType() == MVT::f16) {
1856     SDLoc dl(Op);
1857     return DAG.getNode(
1858         Op.getOpcode(), dl, Op.getValueType(),
1859         DAG.getNode(ISD::FP_EXTEND, dl, MVT::f32, Op.getOperand(0)));
1860   }
1861
1862   if (Op.getOperand(0).getValueType() != MVT::f128) {
1863     // It's legal except when f128 is involved
1864     return Op;
1865   }
1866
1867   RTLIB::Libcall LC;
1868   if (Op.getOpcode() == ISD::FP_TO_SINT)
1869     LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(), Op.getValueType());
1870   else
1871     LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(), Op.getValueType());
1872
1873   SmallVector<SDValue, 2> Ops(Op->op_begin(), Op->op_end());
1874   return makeLibCall(DAG, LC, Op.getValueType(), &Ops[0], Ops.size(), false,
1875                      SDLoc(Op)).first;
1876 }
1877
1878 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
1879   // Warning: We maintain cost tables in AArch64TargetTransformInfo.cpp.
1880   // Any additional optimization in this function should be recorded
1881   // in the cost tables.
1882   EVT VT = Op.getValueType();
1883   SDLoc dl(Op);
1884   SDValue In = Op.getOperand(0);
1885   EVT InVT = In.getValueType();
1886
1887   if (VT.getSizeInBits() < InVT.getSizeInBits()) {
1888     MVT CastVT =
1889         MVT::getVectorVT(MVT::getFloatingPointVT(InVT.getScalarSizeInBits()),
1890                          InVT.getVectorNumElements());
1891     In = DAG.getNode(Op.getOpcode(), dl, CastVT, In);
1892     return DAG.getNode(ISD::FP_ROUND, dl, VT, In, DAG.getIntPtrConstant(0, dl));
1893   }
1894
1895   if (VT.getSizeInBits() > InVT.getSizeInBits()) {
1896     unsigned CastOpc =
1897         Op.getOpcode() == ISD::SINT_TO_FP ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
1898     EVT CastVT = VT.changeVectorElementTypeToInteger();
1899     In = DAG.getNode(CastOpc, dl, CastVT, In);
1900     return DAG.getNode(Op.getOpcode(), dl, VT, In);
1901   }
1902
1903   return Op;
1904 }
1905
1906 SDValue AArch64TargetLowering::LowerINT_TO_FP(SDValue Op,
1907                                             SelectionDAG &DAG) const {
1908   if (Op.getValueType().isVector())
1909     return LowerVectorINT_TO_FP(Op, DAG);
1910
1911   // f16 conversions are promoted to f32.
1912   if (Op.getValueType() == MVT::f16) {
1913     SDLoc dl(Op);
1914     return DAG.getNode(
1915         ISD::FP_ROUND, dl, MVT::f16,
1916         DAG.getNode(Op.getOpcode(), dl, MVT::f32, Op.getOperand(0)),
1917         DAG.getIntPtrConstant(0, dl));
1918   }
1919
1920   // i128 conversions are libcalls.
1921   if (Op.getOperand(0).getValueType() == MVT::i128)
1922     return SDValue();
1923
1924   // Other conversions are legal, unless it's to the completely software-based
1925   // fp128.
1926   if (Op.getValueType() != MVT::f128)
1927     return Op;
1928
1929   RTLIB::Libcall LC;
1930   if (Op.getOpcode() == ISD::SINT_TO_FP)
1931     LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
1932   else
1933     LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(), Op.getValueType());
1934
1935   return LowerF128Call(Op, DAG, LC);
1936 }
1937
1938 SDValue AArch64TargetLowering::LowerFSINCOS(SDValue Op,
1939                                             SelectionDAG &DAG) const {
1940   // For iOS, we want to call an alternative entry point: __sincos_stret,
1941   // which returns the values in two S / D registers.
1942   SDLoc dl(Op);
1943   SDValue Arg = Op.getOperand(0);
1944   EVT ArgVT = Arg.getValueType();
1945   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
1946
1947   ArgListTy Args;
1948   ArgListEntry Entry;
1949
1950   Entry.Node = Arg;
1951   Entry.Ty = ArgTy;
1952   Entry.isSExt = false;
1953   Entry.isZExt = false;
1954   Args.push_back(Entry);
1955
1956   const char *LibcallName =
1957       (ArgVT == MVT::f64) ? "__sincos_stret" : "__sincosf_stret";
1958   SDValue Callee =
1959       DAG.getExternalSymbol(LibcallName, getPointerTy(DAG.getDataLayout()));
1960
1961   StructType *RetTy = StructType::get(ArgTy, ArgTy, nullptr);
1962   TargetLowering::CallLoweringInfo CLI(DAG);
1963   CLI.setDebugLoc(dl).setChain(DAG.getEntryNode())
1964     .setCallee(CallingConv::Fast, RetTy, Callee, std::move(Args), 0);
1965
1966   std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI);
1967   return CallResult.first;
1968 }
1969
1970 static SDValue LowerBITCAST(SDValue Op, SelectionDAG &DAG) {
1971   if (Op.getValueType() != MVT::f16)
1972     return SDValue();
1973
1974   assert(Op.getOperand(0).getValueType() == MVT::i16);
1975   SDLoc DL(Op);
1976
1977   Op = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, Op.getOperand(0));
1978   Op = DAG.getNode(ISD::BITCAST, DL, MVT::f32, Op);
1979   return SDValue(
1980       DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL, MVT::f16, Op,
1981                          DAG.getTargetConstant(AArch64::hsub, DL, MVT::i32)),
1982       0);
1983 }
1984
1985 static EVT getExtensionTo64Bits(const EVT &OrigVT) {
1986   if (OrigVT.getSizeInBits() >= 64)
1987     return OrigVT;
1988
1989   assert(OrigVT.isSimple() && "Expecting a simple value type");
1990
1991   MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy;
1992   switch (OrigSimpleTy) {
1993   default: llvm_unreachable("Unexpected Vector Type");
1994   case MVT::v2i8:
1995   case MVT::v2i16:
1996      return MVT::v2i32;
1997   case MVT::v4i8:
1998     return  MVT::v4i16;
1999   }
2000 }
2001
2002 static SDValue addRequiredExtensionForVectorMULL(SDValue N, SelectionDAG &DAG,
2003                                                  const EVT &OrigTy,
2004                                                  const EVT &ExtTy,
2005                                                  unsigned ExtOpcode) {
2006   // The vector originally had a size of OrigTy. It was then extended to ExtTy.
2007   // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
2008   // 64-bits we need to insert a new extension so that it will be 64-bits.
2009   assert(ExtTy.is128BitVector() && "Unexpected extension size");
2010   if (OrigTy.getSizeInBits() >= 64)
2011     return N;
2012
2013   // Must extend size to at least 64 bits to be used as an operand for VMULL.
2014   EVT NewVT = getExtensionTo64Bits(OrigTy);
2015
2016   return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N);
2017 }
2018
2019 static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG,
2020                                    bool isSigned) {
2021   EVT VT = N->getValueType(0);
2022
2023   if (N->getOpcode() != ISD::BUILD_VECTOR)
2024     return false;
2025
2026   for (const SDValue &Elt : N->op_values()) {
2027     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) {
2028       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
2029       unsigned HalfSize = EltSize / 2;
2030       if (isSigned) {
2031         if (!isIntN(HalfSize, C->getSExtValue()))
2032           return false;
2033       } else {
2034         if (!isUIntN(HalfSize, C->getZExtValue()))
2035           return false;
2036       }
2037       continue;
2038     }
2039     return false;
2040   }
2041
2042   return true;
2043 }
2044
2045 static SDValue skipExtensionForVectorMULL(SDNode *N, SelectionDAG &DAG) {
2046   if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND)
2047     return addRequiredExtensionForVectorMULL(N->getOperand(0), DAG,
2048                                              N->getOperand(0)->getValueType(0),
2049                                              N->getValueType(0),
2050                                              N->getOpcode());
2051
2052   assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR");
2053   EVT VT = N->getValueType(0);
2054   SDLoc dl(N);
2055   unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2;
2056   unsigned NumElts = VT.getVectorNumElements();
2057   MVT TruncVT = MVT::getIntegerVT(EltSize);
2058   SmallVector<SDValue, 8> Ops;
2059   for (unsigned i = 0; i != NumElts; ++i) {
2060     ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i));
2061     const APInt &CInt = C->getAPIntValue();
2062     // Element types smaller than 32 bits are not legal, so use i32 elements.
2063     // The values are implicitly truncated so sext vs. zext doesn't matter.
2064     Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32));
2065   }
2066   return DAG.getNode(ISD::BUILD_VECTOR, dl,
2067                      MVT::getVectorVT(TruncVT, NumElts), Ops);
2068 }
2069
2070 static bool isSignExtended(SDNode *N, SelectionDAG &DAG) {
2071   if (N->getOpcode() == ISD::SIGN_EXTEND)
2072     return true;
2073   if (isExtendedBUILD_VECTOR(N, DAG, true))
2074     return true;
2075   return false;
2076 }
2077
2078 static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) {
2079   if (N->getOpcode() == ISD::ZERO_EXTEND)
2080     return true;
2081   if (isExtendedBUILD_VECTOR(N, DAG, false))
2082     return true;
2083   return false;
2084 }
2085
2086 static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) {
2087   unsigned Opcode = N->getOpcode();
2088   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
2089     SDNode *N0 = N->getOperand(0).getNode();
2090     SDNode *N1 = N->getOperand(1).getNode();
2091     return N0->hasOneUse() && N1->hasOneUse() &&
2092       isSignExtended(N0, DAG) && isSignExtended(N1, DAG);
2093   }
2094   return false;
2095 }
2096
2097 static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) {
2098   unsigned Opcode = N->getOpcode();
2099   if (Opcode == ISD::ADD || Opcode == ISD::SUB) {
2100     SDNode *N0 = N->getOperand(0).getNode();
2101     SDNode *N1 = N->getOperand(1).getNode();
2102     return N0->hasOneUse() && N1->hasOneUse() &&
2103       isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG);
2104   }
2105   return false;
2106 }
2107
2108 static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) {
2109   // Multiplications are only custom-lowered for 128-bit vectors so that
2110   // VMULL can be detected.  Otherwise v2i64 multiplications are not legal.
2111   EVT VT = Op.getValueType();
2112   assert(VT.is128BitVector() && VT.isInteger() &&
2113          "unexpected type for custom-lowering ISD::MUL");
2114   SDNode *N0 = Op.getOperand(0).getNode();
2115   SDNode *N1 = Op.getOperand(1).getNode();
2116   unsigned NewOpc = 0;
2117   bool isMLA = false;
2118   bool isN0SExt = isSignExtended(N0, DAG);
2119   bool isN1SExt = isSignExtended(N1, DAG);
2120   if (isN0SExt && isN1SExt)
2121     NewOpc = AArch64ISD::SMULL;
2122   else {
2123     bool isN0ZExt = isZeroExtended(N0, DAG);
2124     bool isN1ZExt = isZeroExtended(N1, DAG);
2125     if (isN0ZExt && isN1ZExt)
2126       NewOpc = AArch64ISD::UMULL;
2127     else if (isN1SExt || isN1ZExt) {
2128       // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these
2129       // into (s/zext A * s/zext C) + (s/zext B * s/zext C)
2130       if (isN1SExt && isAddSubSExt(N0, DAG)) {
2131         NewOpc = AArch64ISD::SMULL;
2132         isMLA = true;
2133       } else if (isN1ZExt && isAddSubZExt(N0, DAG)) {
2134         NewOpc =  AArch64ISD::UMULL;
2135         isMLA = true;
2136       } else if (isN0ZExt && isAddSubZExt(N1, DAG)) {
2137         std::swap(N0, N1);
2138         NewOpc =  AArch64ISD::UMULL;
2139         isMLA = true;
2140       }
2141     }
2142
2143     if (!NewOpc) {
2144       if (VT == MVT::v2i64)
2145         // Fall through to expand this.  It is not legal.
2146         return SDValue();
2147       else
2148         // Other vector multiplications are legal.
2149         return Op;
2150     }
2151   }
2152
2153   // Legalize to a S/UMULL instruction
2154   SDLoc DL(Op);
2155   SDValue Op0;
2156   SDValue Op1 = skipExtensionForVectorMULL(N1, DAG);
2157   if (!isMLA) {
2158     Op0 = skipExtensionForVectorMULL(N0, DAG);
2159     assert(Op0.getValueType().is64BitVector() &&
2160            Op1.getValueType().is64BitVector() &&
2161            "unexpected types for extended operands to VMULL");
2162     return DAG.getNode(NewOpc, DL, VT, Op0, Op1);
2163   }
2164   // Optimizing (zext A + zext B) * C, to (S/UMULL A, C) + (S/UMULL B, C) during
2165   // isel lowering to take advantage of no-stall back to back s/umul + s/umla.
2166   // This is true for CPUs with accumulate forwarding such as Cortex-A53/A57
2167   SDValue N00 = skipExtensionForVectorMULL(N0->getOperand(0).getNode(), DAG);
2168   SDValue N01 = skipExtensionForVectorMULL(N0->getOperand(1).getNode(), DAG);
2169   EVT Op1VT = Op1.getValueType();
2170   return DAG.getNode(N0->getOpcode(), DL, VT,
2171                      DAG.getNode(NewOpc, DL, VT,
2172                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1),
2173                      DAG.getNode(NewOpc, DL, VT,
2174                                DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1));
2175 }
2176
2177 SDValue AArch64TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
2178                                                      SelectionDAG &DAG) const {
2179   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
2180   SDLoc dl(Op);
2181   switch (IntNo) {
2182   default: return SDValue();    // Don't custom lower most intrinsics.
2183   case Intrinsic::aarch64_thread_pointer: {
2184     EVT PtrVT = getPointerTy(DAG.getDataLayout());
2185     return DAG.getNode(AArch64ISD::THREAD_POINTER, dl, PtrVT);
2186   }
2187   case Intrinsic::aarch64_neon_smax:
2188     return DAG.getNode(ISD::SMAX, dl, Op.getValueType(),
2189                        Op.getOperand(1), Op.getOperand(2));
2190   case Intrinsic::aarch64_neon_umax:
2191     return DAG.getNode(ISD::UMAX, dl, Op.getValueType(),
2192                        Op.getOperand(1), Op.getOperand(2));
2193   case Intrinsic::aarch64_neon_smin:
2194     return DAG.getNode(ISD::SMIN, dl, Op.getValueType(),
2195                        Op.getOperand(1), Op.getOperand(2));
2196   case Intrinsic::aarch64_neon_umin:
2197     return DAG.getNode(ISD::UMIN, dl, Op.getValueType(),
2198                        Op.getOperand(1), Op.getOperand(2));
2199   }
2200 }
2201
2202 SDValue AArch64TargetLowering::LowerOperation(SDValue Op,
2203                                               SelectionDAG &DAG) const {
2204   switch (Op.getOpcode()) {
2205   default:
2206     llvm_unreachable("unimplemented operand");
2207     return SDValue();
2208   case ISD::BITCAST:
2209     return LowerBITCAST(Op, DAG);
2210   case ISD::GlobalAddress:
2211     return LowerGlobalAddress(Op, DAG);
2212   case ISD::GlobalTLSAddress:
2213     return LowerGlobalTLSAddress(Op, DAG);
2214   case ISD::SETCC:
2215     return LowerSETCC(Op, DAG);
2216   case ISD::BR_CC:
2217     return LowerBR_CC(Op, DAG);
2218   case ISD::SELECT:
2219     return LowerSELECT(Op, DAG);
2220   case ISD::SELECT_CC:
2221     return LowerSELECT_CC(Op, DAG);
2222   case ISD::JumpTable:
2223     return LowerJumpTable(Op, DAG);
2224   case ISD::ConstantPool:
2225     return LowerConstantPool(Op, DAG);
2226   case ISD::BlockAddress:
2227     return LowerBlockAddress(Op, DAG);
2228   case ISD::VASTART:
2229     return LowerVASTART(Op, DAG);
2230   case ISD::VACOPY:
2231     return LowerVACOPY(Op, DAG);
2232   case ISD::VAARG:
2233     return LowerVAARG(Op, DAG);
2234   case ISD::ADDC:
2235   case ISD::ADDE:
2236   case ISD::SUBC:
2237   case ISD::SUBE:
2238     return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
2239   case ISD::SADDO:
2240   case ISD::UADDO:
2241   case ISD::SSUBO:
2242   case ISD::USUBO:
2243   case ISD::SMULO:
2244   case ISD::UMULO:
2245     return LowerXALUO(Op, DAG);
2246   case ISD::FADD:
2247     return LowerF128Call(Op, DAG, RTLIB::ADD_F128);
2248   case ISD::FSUB:
2249     return LowerF128Call(Op, DAG, RTLIB::SUB_F128);
2250   case ISD::FMUL:
2251     return LowerF128Call(Op, DAG, RTLIB::MUL_F128);
2252   case ISD::FDIV:
2253     return LowerF128Call(Op, DAG, RTLIB::DIV_F128);
2254   case ISD::FP_ROUND:
2255     return LowerFP_ROUND(Op, DAG);
2256   case ISD::FP_EXTEND:
2257     return LowerFP_EXTEND(Op, DAG);
2258   case ISD::FRAMEADDR:
2259     return LowerFRAMEADDR(Op, DAG);
2260   case ISD::RETURNADDR:
2261     return LowerRETURNADDR(Op, DAG);
2262   case ISD::INSERT_VECTOR_ELT:
2263     return LowerINSERT_VECTOR_ELT(Op, DAG);
2264   case ISD::EXTRACT_VECTOR_ELT:
2265     return LowerEXTRACT_VECTOR_ELT(Op, DAG);
2266   case ISD::BUILD_VECTOR:
2267     return LowerBUILD_VECTOR(Op, DAG);
2268   case ISD::VECTOR_SHUFFLE:
2269     return LowerVECTOR_SHUFFLE(Op, DAG);
2270   case ISD::EXTRACT_SUBVECTOR:
2271     return LowerEXTRACT_SUBVECTOR(Op, DAG);
2272   case ISD::SRA:
2273   case ISD::SRL:
2274   case ISD::SHL:
2275     return LowerVectorSRA_SRL_SHL(Op, DAG);
2276   case ISD::SHL_PARTS:
2277     return LowerShiftLeftParts(Op, DAG);
2278   case ISD::SRL_PARTS:
2279   case ISD::SRA_PARTS:
2280     return LowerShiftRightParts(Op, DAG);
2281   case ISD::CTPOP:
2282     return LowerCTPOP(Op, DAG);
2283   case ISD::FCOPYSIGN:
2284     return LowerFCOPYSIGN(Op, DAG);
2285   case ISD::AND:
2286     return LowerVectorAND(Op, DAG);
2287   case ISD::OR:
2288     return LowerVectorOR(Op, DAG);
2289   case ISD::XOR:
2290     return LowerXOR(Op, DAG);
2291   case ISD::PREFETCH:
2292     return LowerPREFETCH(Op, DAG);
2293   case ISD::SINT_TO_FP:
2294   case ISD::UINT_TO_FP:
2295     return LowerINT_TO_FP(Op, DAG);
2296   case ISD::FP_TO_SINT:
2297   case ISD::FP_TO_UINT:
2298     return LowerFP_TO_INT(Op, DAG);
2299   case ISD::FSINCOS:
2300     return LowerFSINCOS(Op, DAG);
2301   case ISD::MUL:
2302     return LowerMUL(Op, DAG);
2303   case ISD::INTRINSIC_WO_CHAIN:
2304     return LowerINTRINSIC_WO_CHAIN(Op, DAG);
2305   }
2306 }
2307
2308 /// getFunctionAlignment - Return the Log2 alignment of this function.
2309 unsigned AArch64TargetLowering::getFunctionAlignment(const Function *F) const {
2310   return 2;
2311 }
2312
2313 //===----------------------------------------------------------------------===//
2314 //                      Calling Convention Implementation
2315 //===----------------------------------------------------------------------===//
2316
2317 #include "AArch64GenCallingConv.inc"
2318
2319 /// Selects the correct CCAssignFn for a given CallingConvention value.
2320 CCAssignFn *AArch64TargetLowering::CCAssignFnForCall(CallingConv::ID CC,
2321                                                      bool IsVarArg) const {
2322   switch (CC) {
2323   default:
2324     llvm_unreachable("Unsupported calling convention.");
2325   case CallingConv::WebKit_JS:
2326     return CC_AArch64_WebKit_JS;
2327   case CallingConv::GHC:
2328     return CC_AArch64_GHC;
2329   case CallingConv::C:
2330   case CallingConv::Fast:
2331     if (!Subtarget->isTargetDarwin())
2332       return CC_AArch64_AAPCS;
2333     return IsVarArg ? CC_AArch64_DarwinPCS_VarArg : CC_AArch64_DarwinPCS;
2334   }
2335 }
2336
2337 SDValue AArch64TargetLowering::LowerFormalArguments(
2338     SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
2339     const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc DL, SelectionDAG &DAG,
2340     SmallVectorImpl<SDValue> &InVals) const {
2341   MachineFunction &MF = DAG.getMachineFunction();
2342   MachineFrameInfo *MFI = MF.getFrameInfo();
2343
2344   // Assign locations to all of the incoming arguments.
2345   SmallVector<CCValAssign, 16> ArgLocs;
2346   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs,
2347                  *DAG.getContext());
2348
2349   // At this point, Ins[].VT may already be promoted to i32. To correctly
2350   // handle passing i8 as i8 instead of i32 on stack, we pass in both i32 and
2351   // i8 to CC_AArch64_AAPCS with i32 being ValVT and i8 being LocVT.
2352   // Since AnalyzeFormalArguments uses Ins[].VT for both ValVT and LocVT, here
2353   // we use a special version of AnalyzeFormalArguments to pass in ValVT and
2354   // LocVT.
2355   unsigned NumArgs = Ins.size();
2356   Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin();
2357   unsigned CurArgIdx = 0;
2358   for (unsigned i = 0; i != NumArgs; ++i) {
2359     MVT ValVT = Ins[i].VT;
2360     if (Ins[i].isOrigArg()) {
2361       std::advance(CurOrigArg, Ins[i].getOrigArgIndex() - CurArgIdx);
2362       CurArgIdx = Ins[i].getOrigArgIndex();
2363
2364       // Get type of the original argument.
2365       EVT ActualVT = getValueType(DAG.getDataLayout(), CurOrigArg->getType(),
2366                                   /*AllowUnknown*/ true);
2367       MVT ActualMVT = ActualVT.isSimple() ? ActualVT.getSimpleVT() : MVT::Other;
2368       // If ActualMVT is i1/i8/i16, we should set LocVT to i8/i8/i16.
2369       if (ActualMVT == MVT::i1 || ActualMVT == MVT::i8)
2370         ValVT = MVT::i8;
2371       else if (ActualMVT == MVT::i16)
2372         ValVT = MVT::i16;
2373     }
2374     CCAssignFn *AssignFn = CCAssignFnForCall(CallConv, /*IsVarArg=*/false);
2375     bool Res =
2376         AssignFn(i, ValVT, ValVT, CCValAssign::Full, Ins[i].Flags, CCInfo);
2377     assert(!Res && "Call operand has unhandled type");
2378     (void)Res;
2379   }
2380   assert(ArgLocs.size() == Ins.size());
2381   SmallVector<SDValue, 16> ArgValues;
2382   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2383     CCValAssign &VA = ArgLocs[i];
2384
2385     if (Ins[i].Flags.isByVal()) {
2386       // Byval is used for HFAs in the PCS, but the system should work in a
2387       // non-compliant manner for larger structs.
2388       EVT PtrVT = getPointerTy(DAG.getDataLayout());
2389       int Size = Ins[i].Flags.getByValSize();
2390       unsigned NumRegs = (Size + 7) / 8;
2391
2392       // FIXME: This works on big-endian for composite byvals, which are the common
2393       // case. It should also work for fundamental types too.
2394       unsigned FrameIdx =
2395         MFI->CreateFixedObject(8 * NumRegs, VA.getLocMemOffset(), false);
2396       SDValue FrameIdxN = DAG.getFrameIndex(FrameIdx, PtrVT);
2397       InVals.push_back(FrameIdxN);
2398
2399       continue;
2400     }
2401     
2402     if (VA.isRegLoc()) {
2403       // Arguments stored in registers.
2404       EVT RegVT = VA.getLocVT();
2405
2406       SDValue ArgValue;
2407       const TargetRegisterClass *RC;
2408
2409       if (RegVT == MVT::i32)
2410         RC = &AArch64::GPR32RegClass;
2411       else if (RegVT == MVT::i64)
2412         RC = &AArch64::GPR64RegClass;
2413       else if (RegVT == MVT::f16)
2414         RC = &AArch64::FPR16RegClass;
2415       else if (RegVT == MVT::f32)
2416         RC = &AArch64::FPR32RegClass;
2417       else if (RegVT == MVT::f64 || RegVT.is64BitVector())
2418         RC = &AArch64::FPR64RegClass;
2419       else if (RegVT == MVT::f128 || RegVT.is128BitVector())
2420         RC = &AArch64::FPR128RegClass;
2421       else
2422         llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering");
2423
2424       // Transform the arguments in physical registers into virtual ones.
2425       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2426       ArgValue = DAG.getCopyFromReg(Chain, DL, Reg, RegVT);
2427
2428       // If this is an 8, 16 or 32-bit value, it is really passed promoted
2429       // to 64 bits.  Insert an assert[sz]ext to capture this, then
2430       // truncate to the right size.
2431       switch (VA.getLocInfo()) {
2432       default:
2433         llvm_unreachable("Unknown loc info!");
2434       case CCValAssign::Full:
2435         break;
2436       case CCValAssign::BCvt:
2437         ArgValue = DAG.getNode(ISD::BITCAST, DL, VA.getValVT(), ArgValue);
2438         break;
2439       case CCValAssign::AExt:
2440       case CCValAssign::SExt:
2441       case CCValAssign::ZExt:
2442         // SelectionDAGBuilder will insert appropriate AssertZExt & AssertSExt
2443         // nodes after our lowering.
2444         assert(RegVT == Ins[i].VT && "incorrect register location selected");
2445         break;
2446       }
2447
2448       InVals.push_back(ArgValue);
2449
2450     } else { // VA.isRegLoc()
2451       assert(VA.isMemLoc() && "CCValAssign is neither reg nor mem");
2452       unsigned ArgOffset = VA.getLocMemOffset();
2453       unsigned ArgSize = VA.getValVT().getSizeInBits() / 8;
2454
2455       uint32_t BEAlign = 0;
2456       if (!Subtarget->isLittleEndian() && ArgSize < 8 &&
2457           !Ins[i].Flags.isInConsecutiveRegs())
2458         BEAlign = 8 - ArgSize;
2459
2460       int FI = MFI->CreateFixedObject(ArgSize, ArgOffset + BEAlign, true);
2461
2462       // Create load nodes to retrieve arguments from the stack.
2463       SDValue FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout()));
2464       SDValue ArgValue;
2465
2466       // For NON_EXTLOAD, generic code in getLoad assert(ValVT == MemVT)
2467       ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
2468       MVT MemVT = VA.getValVT();
2469
2470       switch (VA.getLocInfo()) {
2471       default:
2472         break;
2473       case CCValAssign::BCvt:
2474         MemVT = VA.getLocVT();
2475         break;
2476       case CCValAssign::SExt:
2477         ExtType = ISD::SEXTLOAD;
2478         break;
2479       case CCValAssign::ZExt:
2480         ExtType = ISD::ZEXTLOAD;
2481         break;
2482       case CCValAssign::AExt:
2483         ExtType = ISD::EXTLOAD;
2484         break;
2485       }
2486
2487       ArgValue = DAG.getExtLoad(
2488           ExtType, DL, VA.getLocVT(), Chain, FIN,
2489           MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI),
2490           MemVT, false, false, false, 0);
2491
2492       InVals.push_back(ArgValue);
2493     }
2494   }
2495
2496   // varargs
2497   if (isVarArg) {
2498     if (!Subtarget->isTargetDarwin()) {
2499       // The AAPCS variadic function ABI is identical to the non-variadic
2500       // one. As a result there may be more arguments in registers and we should
2501       // save them for future reference.
2502       saveVarArgRegisters(CCInfo, DAG, DL, Chain);
2503     }
2504
2505     AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>();
2506     // This will point to the next argument passed via stack.
2507     unsigned StackOffset = CCInfo.getNextStackOffset();
2508     // We currently pass all varargs at 8-byte alignment.
2509     StackOffset = ((StackOffset + 7) & ~7);
2510     AFI->setVarArgsStackIndex(MFI->CreateFixedObject(4, StackOffset, true));
2511   }
2512
2513   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
2514   unsigned StackArgSize = CCInfo.getNextStackOffset();
2515   bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
2516   if (DoesCalleeRestoreStack(CallConv, TailCallOpt)) {
2517     // This is a non-standard ABI so by fiat I say we're allowed to make full
2518     // use of the stack area to be popped, which must be aligned to 16 bytes in
2519     // any case:
2520     StackArgSize = RoundUpToAlignment(StackArgSize, 16);
2521
2522     // If we're expected to restore the stack (e.g. fastcc) then we'll be adding
2523     // a multiple of 16.
2524     FuncInfo->setArgumentStackToRestore(StackArgSize);
2525
2526     // This realignment carries over to the available bytes below. Our own
2527     // callers will guarantee the space is free by giving an aligned value to
2528     // CALLSEQ_START.
2529   }
2530   // Even if we're not expected to free up the space, it's useful to know how
2531   // much is there while considering tail calls (because we can reuse it).
2532   FuncInfo->setBytesInStackArgArea(StackArgSize);
2533
2534   return Chain;
2535 }
2536
2537 void AArch64TargetLowering::saveVarArgRegisters(CCState &CCInfo,
2538                                                 SelectionDAG &DAG, SDLoc DL,
2539                                                 SDValue &Chain) const {
2540   MachineFunction &MF = DAG.getMachineFunction();
2541   MachineFrameInfo *MFI = MF.getFrameInfo();
2542   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
2543   auto PtrVT = getPointerTy(DAG.getDataLayout());
2544
2545   SmallVector<SDValue, 8> MemOps;
2546
2547   static const MCPhysReg GPRArgRegs[] = { AArch64::X0, AArch64::X1, AArch64::X2,
2548                                           AArch64::X3, AArch64::X4, AArch64::X5,
2549                                           AArch64::X6, AArch64::X7 };
2550   static const unsigned NumGPRArgRegs = array_lengthof(GPRArgRegs);
2551   unsigned FirstVariadicGPR = CCInfo.getFirstUnallocated(GPRArgRegs);
2552
2553   unsigned GPRSaveSize = 8 * (NumGPRArgRegs - FirstVariadicGPR);
2554   int GPRIdx = 0;
2555   if (GPRSaveSize != 0) {
2556     GPRIdx = MFI->CreateStackObject(GPRSaveSize, 8, false);
2557
2558     SDValue FIN = DAG.getFrameIndex(GPRIdx, PtrVT);
2559
2560     for (unsigned i = FirstVariadicGPR; i < NumGPRArgRegs; ++i) {
2561       unsigned VReg = MF.addLiveIn(GPRArgRegs[i], &AArch64::GPR64RegClass);
2562       SDValue Val = DAG.getCopyFromReg(Chain, DL, VReg, MVT::i64);
2563       SDValue Store = DAG.getStore(
2564           Val.getValue(1), DL, Val, FIN,
2565           MachinePointerInfo::getStack(DAG.getMachineFunction(), i * 8), false,
2566           false, 0);
2567       MemOps.push_back(Store);
2568       FIN =
2569           DAG.getNode(ISD::ADD, DL, PtrVT, FIN, DAG.getConstant(8, DL, PtrVT));
2570     }
2571   }
2572   FuncInfo->setVarArgsGPRIndex(GPRIdx);
2573   FuncInfo->setVarArgsGPRSize(GPRSaveSize);
2574
2575   if (Subtarget->hasFPARMv8()) {
2576     static const MCPhysReg FPRArgRegs[] = {
2577         AArch64::Q0, AArch64::Q1, AArch64::Q2, AArch64::Q3,
2578         AArch64::Q4, AArch64::Q5, AArch64::Q6, AArch64::Q7};
2579     static const unsigned NumFPRArgRegs = array_lengthof(FPRArgRegs);
2580     unsigned FirstVariadicFPR = CCInfo.getFirstUnallocated(FPRArgRegs);
2581
2582     unsigned FPRSaveSize = 16 * (NumFPRArgRegs - FirstVariadicFPR);
2583     int FPRIdx = 0;
2584     if (FPRSaveSize != 0) {
2585       FPRIdx = MFI->CreateStackObject(FPRSaveSize, 16, false);
2586
2587       SDValue FIN = DAG.getFrameIndex(FPRIdx, PtrVT);
2588
2589       for (unsigned i = FirstVariadicFPR; i < NumFPRArgRegs; ++i) {
2590         unsigned VReg = MF.addLiveIn(FPRArgRegs[i], &AArch64::FPR128RegClass);
2591         SDValue Val = DAG.getCopyFromReg(Chain, DL, VReg, MVT::f128);
2592
2593         SDValue Store = DAG.getStore(
2594             Val.getValue(1), DL, Val, FIN,
2595             MachinePointerInfo::getStack(DAG.getMachineFunction(), i * 16),
2596             false, false, 0);
2597         MemOps.push_back(Store);
2598         FIN = DAG.getNode(ISD::ADD, DL, PtrVT, FIN,
2599                           DAG.getConstant(16, DL, PtrVT));
2600       }
2601     }
2602     FuncInfo->setVarArgsFPRIndex(FPRIdx);
2603     FuncInfo->setVarArgsFPRSize(FPRSaveSize);
2604   }
2605
2606   if (!MemOps.empty()) {
2607     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
2608   }
2609 }
2610
2611 /// LowerCallResult - Lower the result values of a call into the
2612 /// appropriate copies out of appropriate physical registers.
2613 SDValue AArch64TargetLowering::LowerCallResult(
2614     SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg,
2615     const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc DL, SelectionDAG &DAG,
2616     SmallVectorImpl<SDValue> &InVals, bool isThisReturn,
2617     SDValue ThisVal) const {
2618   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
2619                           ? RetCC_AArch64_WebKit_JS
2620                           : RetCC_AArch64_AAPCS;
2621   // Assign locations to each value returned by this call.
2622   SmallVector<CCValAssign, 16> RVLocs;
2623   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
2624                  *DAG.getContext());
2625   CCInfo.AnalyzeCallResult(Ins, RetCC);
2626
2627   // Copy all of the result registers out of their specified physreg.
2628   for (unsigned i = 0; i != RVLocs.size(); ++i) {
2629     CCValAssign VA = RVLocs[i];
2630
2631     // Pass 'this' value directly from the argument to return value, to avoid
2632     // reg unit interference
2633     if (i == 0 && isThisReturn) {
2634       assert(!VA.needsCustom() && VA.getLocVT() == MVT::i64 &&
2635              "unexpected return calling convention register assignment");
2636       InVals.push_back(ThisVal);
2637       continue;
2638     }
2639
2640     SDValue Val =
2641         DAG.getCopyFromReg(Chain, DL, VA.getLocReg(), VA.getLocVT(), InFlag);
2642     Chain = Val.getValue(1);
2643     InFlag = Val.getValue(2);
2644
2645     switch (VA.getLocInfo()) {
2646     default:
2647       llvm_unreachable("Unknown loc info!");
2648     case CCValAssign::Full:
2649       break;
2650     case CCValAssign::BCvt:
2651       Val = DAG.getNode(ISD::BITCAST, DL, VA.getValVT(), Val);
2652       break;
2653     }
2654
2655     InVals.push_back(Val);
2656   }
2657
2658   return Chain;
2659 }
2660
2661 bool AArch64TargetLowering::isEligibleForTailCallOptimization(
2662     SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg,
2663     bool isCalleeStructRet, bool isCallerStructRet,
2664     const SmallVectorImpl<ISD::OutputArg> &Outs,
2665     const SmallVectorImpl<SDValue> &OutVals,
2666     const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG &DAG) const {
2667   // For CallingConv::C this function knows whether the ABI needs
2668   // changing. That's not true for other conventions so they will have to opt in
2669   // manually.
2670   if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
2671     return false;
2672
2673   const MachineFunction &MF = DAG.getMachineFunction();
2674   const Function *CallerF = MF.getFunction();
2675   CallingConv::ID CallerCC = CallerF->getCallingConv();
2676   bool CCMatch = CallerCC == CalleeCC;
2677
2678   // Byval parameters hand the function a pointer directly into the stack area
2679   // we want to reuse during a tail call. Working around this *is* possible (see
2680   // X86) but less efficient and uglier in LowerCall.
2681   for (Function::const_arg_iterator i = CallerF->arg_begin(),
2682                                     e = CallerF->arg_end();
2683        i != e; ++i)
2684     if (i->hasByValAttr())
2685       return false;
2686
2687   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2688     if (IsTailCallConvention(CalleeCC) && CCMatch)
2689       return true;
2690     return false;
2691   }
2692
2693   // Externally-defined functions with weak linkage should not be
2694   // tail-called on AArch64 when the OS does not support dynamic
2695   // pre-emption of symbols, as the AAELF spec requires normal calls
2696   // to undefined weak functions to be replaced with a NOP or jump to the
2697   // next instruction. The behaviour of branch instructions in this
2698   // situation (as used for tail calls) is implementation-defined, so we
2699   // cannot rely on the linker replacing the tail call with a return.
2700   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2701     const GlobalValue *GV = G->getGlobal();
2702     const Triple &TT = getTargetMachine().getTargetTriple();
2703     if (GV->hasExternalWeakLinkage() &&
2704         (!TT.isOSWindows() || TT.isOSBinFormatELF() || TT.isOSBinFormatMachO()))
2705       return false;
2706   }
2707
2708   // Now we search for cases where we can use a tail call without changing the
2709   // ABI. Sibcall is used in some places (particularly gcc) to refer to this
2710   // concept.
2711
2712   // I want anyone implementing a new calling convention to think long and hard
2713   // about this assert.
2714   assert((!isVarArg || CalleeCC == CallingConv::C) &&
2715          "Unexpected variadic calling convention");
2716
2717   if (isVarArg && !Outs.empty()) {
2718     // At least two cases here: if caller is fastcc then we can't have any
2719     // memory arguments (we'd be expected to clean up the stack afterwards). If
2720     // caller is C then we could potentially use its argument area.
2721
2722     // FIXME: for now we take the most conservative of these in both cases:
2723     // disallow all variadic memory operands.
2724     SmallVector<CCValAssign, 16> ArgLocs;
2725     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
2726                    *DAG.getContext());
2727
2728     CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForCall(CalleeCC, true));
2729     for (const CCValAssign &ArgLoc : ArgLocs)
2730       if (!ArgLoc.isRegLoc())
2731         return false;
2732   }
2733
2734   // If the calling conventions do not match, then we'd better make sure the
2735   // results are returned in the same way as what the caller expects.
2736   if (!CCMatch) {
2737     SmallVector<CCValAssign, 16> RVLocs1;
2738     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), RVLocs1,
2739                     *DAG.getContext());
2740     CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForCall(CalleeCC, isVarArg));
2741
2742     SmallVector<CCValAssign, 16> RVLocs2;
2743     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), RVLocs2,
2744                     *DAG.getContext());
2745     CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForCall(CallerCC, isVarArg));
2746
2747     if (RVLocs1.size() != RVLocs2.size())
2748       return false;
2749     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2750       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2751         return false;
2752       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2753         return false;
2754       if (RVLocs1[i].isRegLoc()) {
2755         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2756           return false;
2757       } else {
2758         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2759           return false;
2760       }
2761     }
2762   }
2763
2764   // Nothing more to check if the callee is taking no arguments
2765   if (Outs.empty())
2766     return true;
2767
2768   SmallVector<CCValAssign, 16> ArgLocs;
2769   CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs,
2770                  *DAG.getContext());
2771
2772   CCInfo.AnalyzeCallOperands(Outs, CCAssignFnForCall(CalleeCC, isVarArg));
2773
2774   const AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
2775
2776   // If the stack arguments for this call would fit into our own save area then
2777   // the call can be made tail.
2778   return CCInfo.getNextStackOffset() <= FuncInfo->getBytesInStackArgArea();
2779 }
2780
2781 SDValue AArch64TargetLowering::addTokenForArgument(SDValue Chain,
2782                                                    SelectionDAG &DAG,
2783                                                    MachineFrameInfo *MFI,
2784                                                    int ClobberedFI) const {
2785   SmallVector<SDValue, 8> ArgChains;
2786   int64_t FirstByte = MFI->getObjectOffset(ClobberedFI);
2787   int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1;
2788
2789   // Include the original chain at the beginning of the list. When this is
2790   // used by target LowerCall hooks, this helps legalize find the
2791   // CALLSEQ_BEGIN node.
2792   ArgChains.push_back(Chain);
2793
2794   // Add a chain value for each stack argument corresponding
2795   for (SDNode::use_iterator U = DAG.getEntryNode().getNode()->use_begin(),
2796                             UE = DAG.getEntryNode().getNode()->use_end();
2797        U != UE; ++U)
2798     if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U))
2799       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
2800         if (FI->getIndex() < 0) {
2801           int64_t InFirstByte = MFI->getObjectOffset(FI->getIndex());
2802           int64_t InLastByte = InFirstByte;
2803           InLastByte += MFI->getObjectSize(FI->getIndex()) - 1;
2804
2805           if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
2806               (FirstByte <= InFirstByte && InFirstByte <= LastByte))
2807             ArgChains.push_back(SDValue(L, 1));
2808         }
2809
2810   // Build a tokenfactor for all the chains.
2811   return DAG.getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains);
2812 }
2813
2814 bool AArch64TargetLowering::DoesCalleeRestoreStack(CallingConv::ID CallCC,
2815                                                    bool TailCallOpt) const {
2816   return CallCC == CallingConv::Fast && TailCallOpt;
2817 }
2818
2819 bool AArch64TargetLowering::IsTailCallConvention(CallingConv::ID CallCC) const {
2820   return CallCC == CallingConv::Fast;
2821 }
2822
2823 /// LowerCall - Lower a call to a callseq_start + CALL + callseq_end chain,
2824 /// and add input and output parameter nodes.
2825 SDValue
2826 AArch64TargetLowering::LowerCall(CallLoweringInfo &CLI,
2827                                  SmallVectorImpl<SDValue> &InVals) const {
2828   SelectionDAG &DAG = CLI.DAG;
2829   SDLoc &DL = CLI.DL;
2830   SmallVector<ISD::OutputArg, 32> &Outs = CLI.Outs;
2831   SmallVector<SDValue, 32> &OutVals = CLI.OutVals;
2832   SmallVector<ISD::InputArg, 32> &Ins = CLI.Ins;
2833   SDValue Chain = CLI.Chain;
2834   SDValue Callee = CLI.Callee;
2835   bool &IsTailCall = CLI.IsTailCall;
2836   CallingConv::ID CallConv = CLI.CallConv;
2837   bool IsVarArg = CLI.IsVarArg;
2838
2839   MachineFunction &MF = DAG.getMachineFunction();
2840   bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet();
2841   bool IsThisReturn = false;
2842
2843   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
2844   bool TailCallOpt = MF.getTarget().Options.GuaranteedTailCallOpt;
2845   bool IsSibCall = false;
2846
2847   if (IsTailCall) {
2848     // Check if it's really possible to do a tail call.
2849     IsTailCall = isEligibleForTailCallOptimization(
2850         Callee, CallConv, IsVarArg, IsStructRet,
2851         MF.getFunction()->hasStructRetAttr(), Outs, OutVals, Ins, DAG);
2852     if (!IsTailCall && CLI.CS && CLI.CS->isMustTailCall())
2853       report_fatal_error("failed to perform tail call elimination on a call "
2854                          "site marked musttail");
2855
2856     // A sibling call is one where we're under the usual C ABI and not planning
2857     // to change that but can still do a tail call:
2858     if (!TailCallOpt && IsTailCall)
2859       IsSibCall = true;
2860
2861     if (IsTailCall)
2862       ++NumTailCalls;
2863   }
2864
2865   // Analyze operands of the call, assigning locations to each operand.
2866   SmallVector<CCValAssign, 16> ArgLocs;
2867   CCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(), ArgLocs,
2868                  *DAG.getContext());
2869
2870   if (IsVarArg) {
2871     // Handle fixed and variable vector arguments differently.
2872     // Variable vector arguments always go into memory.
2873     unsigned NumArgs = Outs.size();
2874
2875     for (unsigned i = 0; i != NumArgs; ++i) {
2876       MVT ArgVT = Outs[i].VT;
2877       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
2878       CCAssignFn *AssignFn = CCAssignFnForCall(CallConv,
2879                                                /*IsVarArg=*/ !Outs[i].IsFixed);
2880       bool Res = AssignFn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, CCInfo);
2881       assert(!Res && "Call operand has unhandled type");
2882       (void)Res;
2883     }
2884   } else {
2885     // At this point, Outs[].VT may already be promoted to i32. To correctly
2886     // handle passing i8 as i8 instead of i32 on stack, we pass in both i32 and
2887     // i8 to CC_AArch64_AAPCS with i32 being ValVT and i8 being LocVT.
2888     // Since AnalyzeCallOperands uses Ins[].VT for both ValVT and LocVT, here
2889     // we use a special version of AnalyzeCallOperands to pass in ValVT and
2890     // LocVT.
2891     unsigned NumArgs = Outs.size();
2892     for (unsigned i = 0; i != NumArgs; ++i) {
2893       MVT ValVT = Outs[i].VT;
2894       // Get type of the original argument.
2895       EVT ActualVT = getValueType(DAG.getDataLayout(),
2896                                   CLI.getArgs()[Outs[i].OrigArgIndex].Ty,
2897                                   /*AllowUnknown*/ true);
2898       MVT ActualMVT = ActualVT.isSimple() ? ActualVT.getSimpleVT() : ValVT;
2899       ISD::ArgFlagsTy ArgFlags = Outs[i].Flags;
2900       // If ActualMVT is i1/i8/i16, we should set LocVT to i8/i8/i16.
2901       if (ActualMVT == MVT::i1 || ActualMVT == MVT::i8)
2902         ValVT = MVT::i8;
2903       else if (ActualMVT == MVT::i16)
2904         ValVT = MVT::i16;
2905
2906       CCAssignFn *AssignFn = CCAssignFnForCall(CallConv, /*IsVarArg=*/false);
2907       bool Res = AssignFn(i, ValVT, ValVT, CCValAssign::Full, ArgFlags, CCInfo);
2908       assert(!Res && "Call operand has unhandled type");
2909       (void)Res;
2910     }
2911   }
2912
2913   // Get a count of how many bytes are to be pushed on the stack.
2914   unsigned NumBytes = CCInfo.getNextStackOffset();
2915
2916   if (IsSibCall) {
2917     // Since we're not changing the ABI to make this a tail call, the memory
2918     // operands are already available in the caller's incoming argument space.
2919     NumBytes = 0;
2920   }
2921
2922   // FPDiff is the byte offset of the call's argument area from the callee's.
2923   // Stores to callee stack arguments will be placed in FixedStackSlots offset
2924   // by this amount for a tail call. In a sibling call it must be 0 because the
2925   // caller will deallocate the entire stack and the callee still expects its
2926   // arguments to begin at SP+0. Completely unused for non-tail calls.
2927   int FPDiff = 0;
2928
2929   if (IsTailCall && !IsSibCall) {
2930     unsigned NumReusableBytes = FuncInfo->getBytesInStackArgArea();
2931
2932     // Since callee will pop argument stack as a tail call, we must keep the
2933     // popped size 16-byte aligned.
2934     NumBytes = RoundUpToAlignment(NumBytes, 16);
2935
2936     // FPDiff will be negative if this tail call requires more space than we
2937     // would automatically have in our incoming argument space. Positive if we
2938     // can actually shrink the stack.
2939     FPDiff = NumReusableBytes - NumBytes;
2940
2941     // The stack pointer must be 16-byte aligned at all times it's used for a
2942     // memory operation, which in practice means at *all* times and in
2943     // particular across call boundaries. Therefore our own arguments started at
2944     // a 16-byte aligned SP and the delta applied for the tail call should
2945     // satisfy the same constraint.
2946     assert(FPDiff % 16 == 0 && "unaligned stack on tail call");
2947   }
2948
2949   // Adjust the stack pointer for the new arguments...
2950   // These operations are automatically eliminated by the prolog/epilog pass
2951   if (!IsSibCall)
2952     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, DL,
2953                                                               true),
2954                                  DL);
2955
2956   SDValue StackPtr = DAG.getCopyFromReg(Chain, DL, AArch64::SP,
2957                                         getPointerTy(DAG.getDataLayout()));
2958
2959   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2960   SmallVector<SDValue, 8> MemOpChains;
2961   auto PtrVT = getPointerTy(DAG.getDataLayout());
2962
2963   // Walk the register/memloc assignments, inserting copies/loads.
2964   for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size(); i != e;
2965        ++i, ++realArgIdx) {
2966     CCValAssign &VA = ArgLocs[i];
2967     SDValue Arg = OutVals[realArgIdx];
2968     ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
2969
2970     // Promote the value if needed.
2971     switch (VA.getLocInfo()) {
2972     default:
2973       llvm_unreachable("Unknown loc info!");
2974     case CCValAssign::Full:
2975       break;
2976     case CCValAssign::SExt:
2977       Arg = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), Arg);
2978       break;
2979     case CCValAssign::ZExt:
2980       Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Arg);
2981       break;
2982     case CCValAssign::AExt:
2983       if (Outs[realArgIdx].ArgVT == MVT::i1) {
2984         // AAPCS requires i1 to be zero-extended to 8-bits by the caller.
2985         Arg = DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Arg);
2986         Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i8, Arg);
2987       }
2988       Arg = DAG.getNode(ISD::ANY_EXTEND, DL, VA.getLocVT(), Arg);
2989       break;
2990     case CCValAssign::BCvt:
2991       Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
2992       break;
2993     case CCValAssign::FPExt:
2994       Arg = DAG.getNode(ISD::FP_EXTEND, DL, VA.getLocVT(), Arg);
2995       break;
2996     }
2997
2998     if (VA.isRegLoc()) {
2999       if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i64) {
3000         assert(VA.getLocVT() == MVT::i64 &&
3001                "unexpected calling convention register assignment");
3002         assert(!Ins.empty() && Ins[0].VT == MVT::i64 &&
3003                "unexpected use of 'returned'");
3004         IsThisReturn = true;
3005       }
3006       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
3007     } else {
3008       assert(VA.isMemLoc());
3009
3010       SDValue DstAddr;
3011       MachinePointerInfo DstInfo;
3012
3013       // FIXME: This works on big-endian for composite byvals, which are the
3014       // common case. It should also work for fundamental types too.
3015       uint32_t BEAlign = 0;
3016       unsigned OpSize = Flags.isByVal() ? Flags.getByValSize() * 8
3017                                         : VA.getValVT().getSizeInBits();
3018       OpSize = (OpSize + 7) / 8;
3019       if (!Subtarget->isLittleEndian() && !Flags.isByVal() &&
3020           !Flags.isInConsecutiveRegs()) {
3021         if (OpSize < 8)
3022           BEAlign = 8 - OpSize;
3023       }
3024       unsigned LocMemOffset = VA.getLocMemOffset();
3025       int32_t Offset = LocMemOffset + BEAlign;
3026       SDValue PtrOff = DAG.getIntPtrConstant(Offset, DL);
3027       PtrOff = DAG.getNode(ISD::ADD, DL, PtrVT, StackPtr, PtrOff);
3028
3029       if (IsTailCall) {
3030         Offset = Offset + FPDiff;
3031         int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
3032
3033         DstAddr = DAG.getFrameIndex(FI, PtrVT);
3034         DstInfo =
3035             MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI);
3036
3037         // Make sure any stack arguments overlapping with where we're storing
3038         // are loaded before this eventual operation. Otherwise they'll be
3039         // clobbered.
3040         Chain = addTokenForArgument(Chain, DAG, MF.getFrameInfo(), FI);
3041       } else {
3042         SDValue PtrOff = DAG.getIntPtrConstant(Offset, DL);
3043
3044         DstAddr = DAG.getNode(ISD::ADD, DL, PtrVT, StackPtr, PtrOff);
3045         DstInfo = MachinePointerInfo::getStack(DAG.getMachineFunction(),
3046                                                LocMemOffset);
3047       }
3048
3049       if (Outs[i].Flags.isByVal()) {
3050         SDValue SizeNode =
3051             DAG.getConstant(Outs[i].Flags.getByValSize(), DL, MVT::i64);
3052         SDValue Cpy = DAG.getMemcpy(
3053             Chain, DL, DstAddr, Arg, SizeNode, Outs[i].Flags.getByValAlign(),
3054             /*isVol = */ false, /*AlwaysInline = */ false,
3055             /*isTailCall = */ false,
3056             DstInfo, MachinePointerInfo());
3057
3058         MemOpChains.push_back(Cpy);
3059       } else {
3060         // Since we pass i1/i8/i16 as i1/i8/i16 on stack and Arg is already
3061         // promoted to a legal register type i32, we should truncate Arg back to
3062         // i1/i8/i16.
3063         if (VA.getValVT() == MVT::i1 || VA.getValVT() == MVT::i8 ||
3064             VA.getValVT() == MVT::i16)
3065           Arg = DAG.getNode(ISD::TRUNCATE, DL, VA.getValVT(), Arg);
3066
3067         SDValue Store =
3068             DAG.getStore(Chain, DL, Arg, DstAddr, DstInfo, false, false, 0);
3069         MemOpChains.push_back(Store);
3070       }
3071     }
3072   }
3073
3074   if (!MemOpChains.empty())
3075     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOpChains);
3076
3077   // Build a sequence of copy-to-reg nodes chained together with token chain
3078   // and flag operands which copy the outgoing args into the appropriate regs.
3079   SDValue InFlag;
3080   for (auto &RegToPass : RegsToPass) {
3081     Chain = DAG.getCopyToReg(Chain, DL, RegToPass.first,
3082                              RegToPass.second, InFlag);
3083     InFlag = Chain.getValue(1);
3084   }
3085
3086   // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
3087   // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
3088   // node so that legalize doesn't hack it.
3089   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
3090       Subtarget->isTargetMachO()) {
3091     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3092       const GlobalValue *GV = G->getGlobal();
3093       bool InternalLinkage = GV->hasInternalLinkage();
3094       if (InternalLinkage)
3095         Callee = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, 0);
3096       else {
3097         Callee =
3098             DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_GOT);
3099         Callee = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, Callee);
3100       }
3101     } else if (ExternalSymbolSDNode *S =
3102                    dyn_cast<ExternalSymbolSDNode>(Callee)) {
3103       const char *Sym = S->getSymbol();
3104       Callee = DAG.getTargetExternalSymbol(Sym, PtrVT, AArch64II::MO_GOT);
3105       Callee = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, Callee);
3106     }
3107   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
3108     const GlobalValue *GV = G->getGlobal();
3109     Callee = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, 0);
3110   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
3111     const char *Sym = S->getSymbol();
3112     Callee = DAG.getTargetExternalSymbol(Sym, PtrVT, 0);
3113   }
3114
3115   // We don't usually want to end the call-sequence here because we would tidy
3116   // the frame up *after* the call, however in the ABI-changing tail-call case
3117   // we've carefully laid out the parameters so that when sp is reset they'll be
3118   // in the correct location.
3119   if (IsTailCall && !IsSibCall) {
3120     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, DL, true),
3121                                DAG.getIntPtrConstant(0, DL, true), InFlag, DL);
3122     InFlag = Chain.getValue(1);
3123   }
3124
3125   std::vector<SDValue> Ops;
3126   Ops.push_back(Chain);
3127   Ops.push_back(Callee);
3128
3129   if (IsTailCall) {
3130     // Each tail call may have to adjust the stack by a different amount, so
3131     // this information must travel along with the operation for eventual
3132     // consumption by emitEpilogue.
3133     Ops.push_back(DAG.getTargetConstant(FPDiff, DL, MVT::i32));
3134   }
3135
3136   // Add argument registers to the end of the list so that they are known live
3137   // into the call.
3138   for (auto &RegToPass : RegsToPass)
3139     Ops.push_back(DAG.getRegister(RegToPass.first,
3140                                   RegToPass.second.getValueType()));
3141
3142   // Add a register mask operand representing the call-preserved registers.
3143   const uint32_t *Mask;
3144   const AArch64RegisterInfo *TRI = Subtarget->getRegisterInfo();
3145   if (IsThisReturn) {
3146     // For 'this' returns, use the X0-preserving mask if applicable
3147     Mask = TRI->getThisReturnPreservedMask(MF, CallConv);
3148     if (!Mask) {
3149       IsThisReturn = false;
3150       Mask = TRI->getCallPreservedMask(MF, CallConv);
3151     }
3152   } else
3153     Mask = TRI->getCallPreservedMask(MF, CallConv);
3154
3155   assert(Mask && "Missing call preserved mask for calling convention");
3156   Ops.push_back(DAG.getRegisterMask(Mask));
3157
3158   if (InFlag.getNode())
3159     Ops.push_back(InFlag);
3160
3161   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3162
3163   // If we're doing a tall call, use a TC_RETURN here rather than an
3164   // actual call instruction.
3165   if (IsTailCall) {
3166     MF.getFrameInfo()->setHasTailCall();
3167     return DAG.getNode(AArch64ISD::TC_RETURN, DL, NodeTys, Ops);
3168   }
3169
3170   // Returns a chain and a flag for retval copy to use.
3171   Chain = DAG.getNode(AArch64ISD::CALL, DL, NodeTys, Ops);
3172   InFlag = Chain.getValue(1);
3173
3174   uint64_t CalleePopBytes = DoesCalleeRestoreStack(CallConv, TailCallOpt)
3175                                 ? RoundUpToAlignment(NumBytes, 16)
3176                                 : 0;
3177
3178   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, DL, true),
3179                              DAG.getIntPtrConstant(CalleePopBytes, DL, true),
3180                              InFlag, DL);
3181   if (!Ins.empty())
3182     InFlag = Chain.getValue(1);
3183
3184   // Handle result values, copying them out of physregs into vregs that we
3185   // return.
3186   return LowerCallResult(Chain, InFlag, CallConv, IsVarArg, Ins, DL, DAG,
3187                          InVals, IsThisReturn,
3188                          IsThisReturn ? OutVals[0] : SDValue());
3189 }
3190
3191 bool AArch64TargetLowering::CanLowerReturn(
3192     CallingConv::ID CallConv, MachineFunction &MF, bool isVarArg,
3193     const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context) const {
3194   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
3195                           ? RetCC_AArch64_WebKit_JS
3196                           : RetCC_AArch64_AAPCS;
3197   SmallVector<CCValAssign, 16> RVLocs;
3198   CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context);
3199   return CCInfo.CheckReturn(Outs, RetCC);
3200 }
3201
3202 SDValue
3203 AArch64TargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv,
3204                                    bool isVarArg,
3205                                    const SmallVectorImpl<ISD::OutputArg> &Outs,
3206                                    const SmallVectorImpl<SDValue> &OutVals,
3207                                    SDLoc DL, SelectionDAG &DAG) const {
3208   CCAssignFn *RetCC = CallConv == CallingConv::WebKit_JS
3209                           ? RetCC_AArch64_WebKit_JS
3210                           : RetCC_AArch64_AAPCS;
3211   SmallVector<CCValAssign, 16> RVLocs;
3212   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs,
3213                  *DAG.getContext());
3214   CCInfo.AnalyzeReturn(Outs, RetCC);
3215
3216   // Copy the result values into the output registers.
3217   SDValue Flag;
3218   SmallVector<SDValue, 4> RetOps(1, Chain);
3219   for (unsigned i = 0, realRVLocIdx = 0; i != RVLocs.size();
3220        ++i, ++realRVLocIdx) {
3221     CCValAssign &VA = RVLocs[i];
3222     assert(VA.isRegLoc() && "Can only return in registers!");
3223     SDValue Arg = OutVals[realRVLocIdx];
3224
3225     switch (VA.getLocInfo()) {
3226     default:
3227       llvm_unreachable("Unknown loc info!");
3228     case CCValAssign::Full:
3229       if (Outs[i].ArgVT == MVT::i1) {
3230         // AAPCS requires i1 to be zero-extended to i8 by the producer of the
3231         // value. This is strictly redundant on Darwin (which uses "zeroext
3232         // i1"), but will be optimised out before ISel.
3233         Arg = DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Arg);
3234         Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Arg);
3235       }
3236       break;
3237     case CCValAssign::BCvt:
3238       Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
3239       break;
3240     }
3241
3242     Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), Arg, Flag);
3243     Flag = Chain.getValue(1);
3244     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
3245   }
3246
3247   RetOps[0] = Chain; // Update chain.
3248
3249   // Add the flag if we have it.
3250   if (Flag.getNode())
3251     RetOps.push_back(Flag);
3252
3253   return DAG.getNode(AArch64ISD::RET_FLAG, DL, MVT::Other, RetOps);
3254 }
3255
3256 //===----------------------------------------------------------------------===//
3257 //  Other Lowering Code
3258 //===----------------------------------------------------------------------===//
3259
3260 SDValue AArch64TargetLowering::LowerGlobalAddress(SDValue Op,
3261                                                   SelectionDAG &DAG) const {
3262   EVT PtrVT = getPointerTy(DAG.getDataLayout());
3263   SDLoc DL(Op);
3264   const GlobalAddressSDNode *GN = cast<GlobalAddressSDNode>(Op);
3265   const GlobalValue *GV = GN->getGlobal();
3266   unsigned char OpFlags =
3267       Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
3268
3269   assert(cast<GlobalAddressSDNode>(Op)->getOffset() == 0 &&
3270          "unexpected offset in global node");
3271
3272   // This also catched the large code model case for Darwin.
3273   if ((OpFlags & AArch64II::MO_GOT) != 0) {
3274     SDValue GotAddr = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, OpFlags);
3275     // FIXME: Once remat is capable of dealing with instructions with register
3276     // operands, expand this into two nodes instead of using a wrapper node.
3277     return DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, GotAddr);
3278   }
3279
3280   if ((OpFlags & AArch64II::MO_CONSTPOOL) != 0) {
3281     assert(getTargetMachine().getCodeModel() == CodeModel::Small &&
3282            "use of MO_CONSTPOOL only supported on small model");
3283     SDValue Hi = DAG.getTargetConstantPool(GV, PtrVT, 0, 0, AArch64II::MO_PAGE);
3284     SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
3285     unsigned char LoFlags = AArch64II::MO_PAGEOFF | AArch64II::MO_NC;
3286     SDValue Lo = DAG.getTargetConstantPool(GV, PtrVT, 0, 0, LoFlags);
3287     SDValue PoolAddr = DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
3288     SDValue GlobalAddr = DAG.getLoad(
3289         PtrVT, DL, DAG.getEntryNode(), PoolAddr,
3290         MachinePointerInfo::getConstantPool(DAG.getMachineFunction()),
3291         /*isVolatile=*/false,
3292         /*isNonTemporal=*/true,
3293         /*isInvariant=*/true, 8);
3294     if (GN->getOffset() != 0)
3295       return DAG.getNode(ISD::ADD, DL, PtrVT, GlobalAddr,
3296                          DAG.getConstant(GN->getOffset(), DL, PtrVT));
3297     return GlobalAddr;
3298   }
3299
3300   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
3301     const unsigned char MO_NC = AArch64II::MO_NC;
3302     return DAG.getNode(
3303         AArch64ISD::WrapperLarge, DL, PtrVT,
3304         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_G3),
3305         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_G2 | MO_NC),
3306         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_G1 | MO_NC),
3307         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_G0 | MO_NC));
3308   } else {
3309     // Use ADRP/ADD or ADRP/LDR for everything else: the small model on ELF and
3310     // the only correct model on Darwin.
3311     SDValue Hi = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0,
3312                                             OpFlags | AArch64II::MO_PAGE);
3313     unsigned char LoFlags = OpFlags | AArch64II::MO_PAGEOFF | AArch64II::MO_NC;
3314     SDValue Lo = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, LoFlags);
3315
3316     SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
3317     return DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
3318   }
3319 }
3320
3321 /// \brief Convert a TLS address reference into the correct sequence of loads
3322 /// and calls to compute the variable's address (for Darwin, currently) and
3323 /// return an SDValue containing the final node.
3324
3325 /// Darwin only has one TLS scheme which must be capable of dealing with the
3326 /// fully general situation, in the worst case. This means:
3327 ///     + "extern __thread" declaration.
3328 ///     + Defined in a possibly unknown dynamic library.
3329 ///
3330 /// The general system is that each __thread variable has a [3 x i64] descriptor
3331 /// which contains information used by the runtime to calculate the address. The
3332 /// only part of this the compiler needs to know about is the first xword, which
3333 /// contains a function pointer that must be called with the address of the
3334 /// entire descriptor in "x0".
3335 ///
3336 /// Since this descriptor may be in a different unit, in general even the
3337 /// descriptor must be accessed via an indirect load. The "ideal" code sequence
3338 /// is:
3339 ///     adrp x0, _var@TLVPPAGE
3340 ///     ldr x0, [x0, _var@TLVPPAGEOFF]   ; x0 now contains address of descriptor
3341 ///     ldr x1, [x0]                     ; x1 contains 1st entry of descriptor,
3342 ///                                      ; the function pointer
3343 ///     blr x1                           ; Uses descriptor address in x0
3344 ///     ; Address of _var is now in x0.
3345 ///
3346 /// If the address of _var's descriptor *is* known to the linker, then it can
3347 /// change the first "ldr" instruction to an appropriate "add x0, x0, #imm" for
3348 /// a slight efficiency gain.
3349 SDValue
3350 AArch64TargetLowering::LowerDarwinGlobalTLSAddress(SDValue Op,
3351                                                    SelectionDAG &DAG) const {
3352   assert(Subtarget->isTargetDarwin() && "TLS only supported on Darwin");
3353
3354   SDLoc DL(Op);
3355   MVT PtrVT = getPointerTy(DAG.getDataLayout());
3356   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
3357
3358   SDValue TLVPAddr =
3359       DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3360   SDValue DescAddr = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, TLVPAddr);
3361
3362   // The first entry in the descriptor is a function pointer that we must call
3363   // to obtain the address of the variable.
3364   SDValue Chain = DAG.getEntryNode();
3365   SDValue FuncTLVGet =
3366       DAG.getLoad(MVT::i64, DL, Chain, DescAddr,
3367                   MachinePointerInfo::getGOT(DAG.getMachineFunction()), false,
3368                   true, true, 8);
3369   Chain = FuncTLVGet.getValue(1);
3370
3371   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3372   MFI->setAdjustsStack(true);
3373
3374   // TLS calls preserve all registers except those that absolutely must be
3375   // trashed: X0 (it takes an argument), LR (it's a call) and NZCV (let's not be
3376   // silly).
3377   const uint32_t *Mask =
3378       Subtarget->getRegisterInfo()->getTLSCallPreservedMask();
3379
3380   // Finally, we can make the call. This is just a degenerate version of a
3381   // normal AArch64 call node: x0 takes the address of the descriptor, and
3382   // returns the address of the variable in this thread.
3383   Chain = DAG.getCopyToReg(Chain, DL, AArch64::X0, DescAddr, SDValue());
3384   Chain =
3385       DAG.getNode(AArch64ISD::CALL, DL, DAG.getVTList(MVT::Other, MVT::Glue),
3386                   Chain, FuncTLVGet, DAG.getRegister(AArch64::X0, MVT::i64),
3387                   DAG.getRegisterMask(Mask), Chain.getValue(1));
3388   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Chain.getValue(1));
3389 }
3390
3391 /// When accessing thread-local variables under either the general-dynamic or
3392 /// local-dynamic system, we make a "TLS-descriptor" call. The variable will
3393 /// have a descriptor, accessible via a PC-relative ADRP, and whose first entry
3394 /// is a function pointer to carry out the resolution.
3395 ///
3396 /// The sequence is:
3397 ///    adrp  x0, :tlsdesc:var
3398 ///    ldr   x1, [x0, #:tlsdesc_lo12:var]
3399 ///    add   x0, x0, #:tlsdesc_lo12:var
3400 ///    .tlsdesccall var
3401 ///    blr   x1
3402 ///    (TPIDR_EL0 offset now in x0)
3403 ///
3404 ///  The above sequence must be produced unscheduled, to enable the linker to
3405 ///  optimize/relax this sequence.
3406 ///  Therefore, a pseudo-instruction (TLSDESC_CALLSEQ) is used to represent the
3407 ///  above sequence, and expanded really late in the compilation flow, to ensure
3408 ///  the sequence is produced as per above.
3409 SDValue AArch64TargetLowering::LowerELFTLSDescCallSeq(SDValue SymAddr, SDLoc DL,
3410                                                       SelectionDAG &DAG) const {
3411   EVT PtrVT = getPointerTy(DAG.getDataLayout());
3412
3413   SDValue Chain = DAG.getEntryNode();
3414   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
3415
3416   SmallVector<SDValue, 2> Ops;
3417   Ops.push_back(Chain);
3418   Ops.push_back(SymAddr);
3419
3420   Chain = DAG.getNode(AArch64ISD::TLSDESC_CALLSEQ, DL, NodeTys, Ops);
3421   SDValue Glue = Chain.getValue(1);
3422
3423   return DAG.getCopyFromReg(Chain, DL, AArch64::X0, PtrVT, Glue);
3424 }
3425
3426 SDValue
3427 AArch64TargetLowering::LowerELFGlobalTLSAddress(SDValue Op,
3428                                                 SelectionDAG &DAG) const {
3429   assert(Subtarget->isTargetELF() && "This function expects an ELF target");
3430   assert(getTargetMachine().getCodeModel() == CodeModel::Small &&
3431          "ELF TLS only supported in small memory model");
3432   // Different choices can be made for the maximum size of the TLS area for a
3433   // module. For the small address model, the default TLS size is 16MiB and the
3434   // maximum TLS size is 4GiB.
3435   // FIXME: add -mtls-size command line option and make it control the 16MiB
3436   // vs. 4GiB code sequence generation.
3437   const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
3438
3439   TLSModel::Model Model = getTargetMachine().getTLSModel(GA->getGlobal());
3440
3441   if (DAG.getTarget().Options.EmulatedTLS)
3442     return LowerToTLSEmulatedModel(GA, DAG);
3443
3444   if (!EnableAArch64ELFLocalDynamicTLSGeneration) {
3445     if (Model == TLSModel::LocalDynamic)
3446       Model = TLSModel::GeneralDynamic;
3447   }
3448
3449   SDValue TPOff;
3450   EVT PtrVT = getPointerTy(DAG.getDataLayout());
3451   SDLoc DL(Op);
3452   const GlobalValue *GV = GA->getGlobal();
3453
3454   SDValue ThreadBase = DAG.getNode(AArch64ISD::THREAD_POINTER, DL, PtrVT);
3455
3456   if (Model == TLSModel::LocalExec) {
3457     SDValue HiVar = DAG.getTargetGlobalAddress(
3458         GV, DL, PtrVT, 0, AArch64II::MO_TLS | AArch64II::MO_HI12);
3459     SDValue LoVar = DAG.getTargetGlobalAddress(
3460         GV, DL, PtrVT, 0,
3461         AArch64II::MO_TLS | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3462
3463     SDValue TPWithOff_lo =
3464         SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, ThreadBase,
3465                                    HiVar,
3466                                    DAG.getTargetConstant(0, DL, MVT::i32)),
3467                 0);
3468     SDValue TPWithOff =
3469         SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPWithOff_lo,
3470                                    LoVar,
3471                                    DAG.getTargetConstant(0, DL, MVT::i32)),
3472                 0);
3473     return TPWithOff;
3474   } else if (Model == TLSModel::InitialExec) {
3475     TPOff = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3476     TPOff = DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, TPOff);
3477   } else if (Model == TLSModel::LocalDynamic) {
3478     // Local-dynamic accesses proceed in two phases. A general-dynamic TLS
3479     // descriptor call against the special symbol _TLS_MODULE_BASE_ to calculate
3480     // the beginning of the module's TLS region, followed by a DTPREL offset
3481     // calculation.
3482
3483     // These accesses will need deduplicating if there's more than one.
3484     AArch64FunctionInfo *MFI =
3485         DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
3486     MFI->incNumLocalDynamicTLSAccesses();
3487
3488     // The call needs a relocation too for linker relaxation. It doesn't make
3489     // sense to call it MO_PAGE or MO_PAGEOFF though so we need another copy of
3490     // the address.
3491     SDValue SymAddr = DAG.getTargetExternalSymbol("_TLS_MODULE_BASE_", PtrVT,
3492                                                   AArch64II::MO_TLS);
3493
3494     // Now we can calculate the offset from TPIDR_EL0 to this module's
3495     // thread-local area.
3496     TPOff = LowerELFTLSDescCallSeq(SymAddr, DL, DAG);
3497
3498     // Now use :dtprel_whatever: operations to calculate this variable's offset
3499     // in its thread-storage area.
3500     SDValue HiVar = DAG.getTargetGlobalAddress(
3501         GV, DL, MVT::i64, 0, AArch64II::MO_TLS | AArch64II::MO_HI12);
3502     SDValue LoVar = DAG.getTargetGlobalAddress(
3503         GV, DL, MVT::i64, 0,
3504         AArch64II::MO_TLS | AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
3505
3506     TPOff = SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPOff, HiVar,
3507                                        DAG.getTargetConstant(0, DL, MVT::i32)),
3508                     0);
3509     TPOff = SDValue(DAG.getMachineNode(AArch64::ADDXri, DL, PtrVT, TPOff, LoVar,
3510                                        DAG.getTargetConstant(0, DL, MVT::i32)),
3511                     0);
3512   } else if (Model == TLSModel::GeneralDynamic) {
3513     // The call needs a relocation too for linker relaxation. It doesn't make
3514     // sense to call it MO_PAGE or MO_PAGEOFF though so we need another copy of
3515     // the address.
3516     SDValue SymAddr =
3517         DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, AArch64II::MO_TLS);
3518
3519     // Finally we can make a call to calculate the offset from tpidr_el0.
3520     TPOff = LowerELFTLSDescCallSeq(SymAddr, DL, DAG);
3521   } else
3522     llvm_unreachable("Unsupported ELF TLS access model");
3523
3524   return DAG.getNode(ISD::ADD, DL, PtrVT, ThreadBase, TPOff);
3525 }
3526
3527 SDValue AArch64TargetLowering::LowerGlobalTLSAddress(SDValue Op,
3528                                                      SelectionDAG &DAG) const {
3529   if (Subtarget->isTargetDarwin())
3530     return LowerDarwinGlobalTLSAddress(Op, DAG);
3531   else if (Subtarget->isTargetELF())
3532     return LowerELFGlobalTLSAddress(Op, DAG);
3533
3534   llvm_unreachable("Unexpected platform trying to use TLS");
3535 }
3536 SDValue AArch64TargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const {
3537   SDValue Chain = Op.getOperand(0);
3538   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
3539   SDValue LHS = Op.getOperand(2);
3540   SDValue RHS = Op.getOperand(3);
3541   SDValue Dest = Op.getOperand(4);
3542   SDLoc dl(Op);
3543
3544   // Handle f128 first, since lowering it will result in comparing the return
3545   // value of a libcall against zero, which is just what the rest of LowerBR_CC
3546   // is expecting to deal with.
3547   if (LHS.getValueType() == MVT::f128) {
3548     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
3549
3550     // If softenSetCCOperands returned a scalar, we need to compare the result
3551     // against zero to select between true and false values.
3552     if (!RHS.getNode()) {
3553       RHS = DAG.getConstant(0, dl, LHS.getValueType());
3554       CC = ISD::SETNE;
3555     }
3556   }
3557
3558   // Optimize {s|u}{add|sub|mul}.with.overflow feeding into a branch
3559   // instruction.
3560   unsigned Opc = LHS.getOpcode();
3561   if (LHS.getResNo() == 1 && isa<ConstantSDNode>(RHS) &&
3562       cast<ConstantSDNode>(RHS)->isOne() &&
3563       (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
3564        Opc == ISD::USUBO || Opc == ISD::SMULO || Opc == ISD::UMULO)) {
3565     assert((CC == ISD::SETEQ || CC == ISD::SETNE) &&
3566            "Unexpected condition code.");
3567     // Only lower legal XALUO ops.
3568     if (!DAG.getTargetLoweringInfo().isTypeLegal(LHS->getValueType(0)))
3569       return SDValue();
3570
3571     // The actual operation with overflow check.
3572     AArch64CC::CondCode OFCC;
3573     SDValue Value, Overflow;
3574     std::tie(Value, Overflow) = getAArch64XALUOOp(OFCC, LHS.getValue(0), DAG);
3575
3576     if (CC == ISD::SETNE)
3577       OFCC = getInvertedCondCode(OFCC);
3578     SDValue CCVal = DAG.getConstant(OFCC, dl, MVT::i32);
3579
3580     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CCVal,
3581                        Overflow);
3582   }
3583
3584   if (LHS.getValueType().isInteger()) {
3585     assert((LHS.getValueType() == RHS.getValueType()) &&
3586            (LHS.getValueType() == MVT::i32 || LHS.getValueType() == MVT::i64));
3587
3588     // If the RHS of the comparison is zero, we can potentially fold this
3589     // to a specialized branch.
3590     const ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS);
3591     if (RHSC && RHSC->getZExtValue() == 0) {
3592       if (CC == ISD::SETEQ) {
3593         // See if we can use a TBZ to fold in an AND as well.
3594         // TBZ has a smaller branch displacement than CBZ.  If the offset is
3595         // out of bounds, a late MI-layer pass rewrites branches.
3596         // 403.gcc is an example that hits this case.
3597         if (LHS.getOpcode() == ISD::AND &&
3598             isa<ConstantSDNode>(LHS.getOperand(1)) &&
3599             isPowerOf2_64(LHS.getConstantOperandVal(1))) {
3600           SDValue Test = LHS.getOperand(0);
3601           uint64_t Mask = LHS.getConstantOperandVal(1);
3602           return DAG.getNode(AArch64ISD::TBZ, dl, MVT::Other, Chain, Test,
3603                              DAG.getConstant(Log2_64(Mask), dl, MVT::i64),
3604                              Dest);
3605         }
3606
3607         return DAG.getNode(AArch64ISD::CBZ, dl, MVT::Other, Chain, LHS, Dest);
3608       } else if (CC == ISD::SETNE) {
3609         // See if we can use a TBZ to fold in an AND as well.
3610         // TBZ has a smaller branch displacement than CBZ.  If the offset is
3611         // out of bounds, a late MI-layer pass rewrites branches.
3612         // 403.gcc is an example that hits this case.
3613         if (LHS.getOpcode() == ISD::AND &&
3614             isa<ConstantSDNode>(LHS.getOperand(1)) &&
3615             isPowerOf2_64(LHS.getConstantOperandVal(1))) {
3616           SDValue Test = LHS.getOperand(0);
3617           uint64_t Mask = LHS.getConstantOperandVal(1);
3618           return DAG.getNode(AArch64ISD::TBNZ, dl, MVT::Other, Chain, Test,
3619                              DAG.getConstant(Log2_64(Mask), dl, MVT::i64),
3620                              Dest);
3621         }
3622
3623         return DAG.getNode(AArch64ISD::CBNZ, dl, MVT::Other, Chain, LHS, Dest);
3624       } else if (CC == ISD::SETLT && LHS.getOpcode() != ISD::AND) {
3625         // Don't combine AND since emitComparison converts the AND to an ANDS
3626         // (a.k.a. TST) and the test in the test bit and branch instruction
3627         // becomes redundant.  This would also increase register pressure.
3628         uint64_t Mask = LHS.getValueType().getSizeInBits() - 1;
3629         return DAG.getNode(AArch64ISD::TBNZ, dl, MVT::Other, Chain, LHS,
3630                            DAG.getConstant(Mask, dl, MVT::i64), Dest);
3631       }
3632     }
3633     if (RHSC && RHSC->getSExtValue() == -1 && CC == ISD::SETGT &&
3634         LHS.getOpcode() != ISD::AND) {
3635       // Don't combine AND since emitComparison converts the AND to an ANDS
3636       // (a.k.a. TST) and the test in the test bit and branch instruction
3637       // becomes redundant.  This would also increase register pressure.
3638       uint64_t Mask = LHS.getValueType().getSizeInBits() - 1;
3639       return DAG.getNode(AArch64ISD::TBZ, dl, MVT::Other, Chain, LHS,
3640                          DAG.getConstant(Mask, dl, MVT::i64), Dest);
3641     }
3642
3643     SDValue CCVal;
3644     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
3645     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CCVal,
3646                        Cmp);
3647   }
3648
3649   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3650
3651   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
3652   // clean.  Some of them require two branches to implement.
3653   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
3654   AArch64CC::CondCode CC1, CC2;
3655   changeFPCCToAArch64CC(CC, CC1, CC2);
3656   SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
3657   SDValue BR1 =
3658       DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, Chain, Dest, CC1Val, Cmp);
3659   if (CC2 != AArch64CC::AL) {
3660     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
3661     return DAG.getNode(AArch64ISD::BRCOND, dl, MVT::Other, BR1, Dest, CC2Val,
3662                        Cmp);
3663   }
3664
3665   return BR1;
3666 }
3667
3668 SDValue AArch64TargetLowering::LowerFCOPYSIGN(SDValue Op,
3669                                               SelectionDAG &DAG) const {
3670   EVT VT = Op.getValueType();
3671   SDLoc DL(Op);
3672
3673   SDValue In1 = Op.getOperand(0);
3674   SDValue In2 = Op.getOperand(1);
3675   EVT SrcVT = In2.getValueType();
3676
3677   if (SrcVT.bitsLT(VT))
3678     In2 = DAG.getNode(ISD::FP_EXTEND, DL, VT, In2);
3679   else if (SrcVT.bitsGT(VT))
3680     In2 = DAG.getNode(ISD::FP_ROUND, DL, VT, In2, DAG.getIntPtrConstant(0, DL));
3681
3682   EVT VecVT;
3683   EVT EltVT;
3684   uint64_t EltMask;
3685   SDValue VecVal1, VecVal2;
3686   if (VT == MVT::f32 || VT == MVT::v2f32 || VT == MVT::v4f32) {
3687     EltVT = MVT::i32;
3688     VecVT = (VT == MVT::v2f32 ? MVT::v2i32 : MVT::v4i32);
3689     EltMask = 0x80000000ULL;
3690
3691     if (!VT.isVector()) {
3692       VecVal1 = DAG.getTargetInsertSubreg(AArch64::ssub, DL, VecVT,
3693                                           DAG.getUNDEF(VecVT), In1);
3694       VecVal2 = DAG.getTargetInsertSubreg(AArch64::ssub, DL, VecVT,
3695                                           DAG.getUNDEF(VecVT), In2);
3696     } else {
3697       VecVal1 = DAG.getNode(ISD::BITCAST, DL, VecVT, In1);
3698       VecVal2 = DAG.getNode(ISD::BITCAST, DL, VecVT, In2);
3699     }
3700   } else if (VT == MVT::f64 || VT == MVT::v2f64) {
3701     EltVT = MVT::i64;
3702     VecVT = MVT::v2i64;
3703
3704     // We want to materialize a mask with the high bit set, but the AdvSIMD
3705     // immediate moves cannot materialize that in a single instruction for
3706     // 64-bit elements. Instead, materialize zero and then negate it.
3707     EltMask = 0;
3708
3709     if (!VT.isVector()) {
3710       VecVal1 = DAG.getTargetInsertSubreg(AArch64::dsub, DL, VecVT,
3711                                           DAG.getUNDEF(VecVT), In1);
3712       VecVal2 = DAG.getTargetInsertSubreg(AArch64::dsub, DL, VecVT,
3713                                           DAG.getUNDEF(VecVT), In2);
3714     } else {
3715       VecVal1 = DAG.getNode(ISD::BITCAST, DL, VecVT, In1);
3716       VecVal2 = DAG.getNode(ISD::BITCAST, DL, VecVT, In2);
3717     }
3718   } else {
3719     llvm_unreachable("Invalid type for copysign!");
3720   }
3721
3722   SDValue BuildVec = DAG.getConstant(EltMask, DL, VecVT);
3723
3724   // If we couldn't materialize the mask above, then the mask vector will be
3725   // the zero vector, and we need to negate it here.
3726   if (VT == MVT::f64 || VT == MVT::v2f64) {
3727     BuildVec = DAG.getNode(ISD::BITCAST, DL, MVT::v2f64, BuildVec);
3728     BuildVec = DAG.getNode(ISD::FNEG, DL, MVT::v2f64, BuildVec);
3729     BuildVec = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, BuildVec);
3730   }
3731
3732   SDValue Sel =
3733       DAG.getNode(AArch64ISD::BIT, DL, VecVT, VecVal1, VecVal2, BuildVec);
3734
3735   if (VT == MVT::f32)
3736     return DAG.getTargetExtractSubreg(AArch64::ssub, DL, VT, Sel);
3737   else if (VT == MVT::f64)
3738     return DAG.getTargetExtractSubreg(AArch64::dsub, DL, VT, Sel);
3739   else
3740     return DAG.getNode(ISD::BITCAST, DL, VT, Sel);
3741 }
3742
3743 SDValue AArch64TargetLowering::LowerCTPOP(SDValue Op, SelectionDAG &DAG) const {
3744   if (DAG.getMachineFunction().getFunction()->hasFnAttribute(
3745           Attribute::NoImplicitFloat))
3746     return SDValue();
3747
3748   if (!Subtarget->hasNEON())
3749     return SDValue();
3750
3751   // While there is no integer popcount instruction, it can
3752   // be more efficiently lowered to the following sequence that uses
3753   // AdvSIMD registers/instructions as long as the copies to/from
3754   // the AdvSIMD registers are cheap.
3755   //  FMOV    D0, X0        // copy 64-bit int to vector, high bits zero'd
3756   //  CNT     V0.8B, V0.8B  // 8xbyte pop-counts
3757   //  ADDV    B0, V0.8B     // sum 8xbyte pop-counts
3758   //  UMOV    X0, V0.B[0]   // copy byte result back to integer reg
3759   SDValue Val = Op.getOperand(0);
3760   SDLoc DL(Op);
3761   EVT VT = Op.getValueType();
3762
3763   if (VT == MVT::i32)
3764     Val = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, Val);
3765   Val = DAG.getNode(ISD::BITCAST, DL, MVT::v8i8, Val);
3766
3767   SDValue CtPop = DAG.getNode(ISD::CTPOP, DL, MVT::v8i8, Val);
3768   SDValue UaddLV = DAG.getNode(
3769       ISD::INTRINSIC_WO_CHAIN, DL, MVT::i32,
3770       DAG.getConstant(Intrinsic::aarch64_neon_uaddlv, DL, MVT::i32), CtPop);
3771
3772   if (VT == MVT::i64)
3773     UaddLV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, UaddLV);
3774   return UaddLV;
3775 }
3776
3777 SDValue AArch64TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
3778
3779   if (Op.getValueType().isVector())
3780     return LowerVSETCC(Op, DAG);
3781
3782   SDValue LHS = Op.getOperand(0);
3783   SDValue RHS = Op.getOperand(1);
3784   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
3785   SDLoc dl(Op);
3786
3787   // We chose ZeroOrOneBooleanContents, so use zero and one.
3788   EVT VT = Op.getValueType();
3789   SDValue TVal = DAG.getConstant(1, dl, VT);
3790   SDValue FVal = DAG.getConstant(0, dl, VT);
3791
3792   // Handle f128 first, since one possible outcome is a normal integer
3793   // comparison which gets picked up by the next if statement.
3794   if (LHS.getValueType() == MVT::f128) {
3795     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
3796
3797     // If softenSetCCOperands returned a scalar, use it.
3798     if (!RHS.getNode()) {
3799       assert(LHS.getValueType() == Op.getValueType() &&
3800              "Unexpected setcc expansion!");
3801       return LHS;
3802     }
3803   }
3804
3805   if (LHS.getValueType().isInteger()) {
3806     SDValue CCVal;
3807     SDValue Cmp =
3808         getAArch64Cmp(LHS, RHS, ISD::getSetCCInverse(CC, true), CCVal, DAG, dl);
3809
3810     // Note that we inverted the condition above, so we reverse the order of
3811     // the true and false operands here.  This will allow the setcc to be
3812     // matched to a single CSINC instruction.
3813     return DAG.getNode(AArch64ISD::CSEL, dl, VT, FVal, TVal, CCVal, Cmp);
3814   }
3815
3816   // Now we know we're dealing with FP values.
3817   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3818
3819   // If that fails, we'll need to perform an FCMP + CSEL sequence.  Go ahead
3820   // and do the comparison.
3821   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
3822
3823   AArch64CC::CondCode CC1, CC2;
3824   changeFPCCToAArch64CC(CC, CC1, CC2);
3825   if (CC2 == AArch64CC::AL) {
3826     changeFPCCToAArch64CC(ISD::getSetCCInverse(CC, false), CC1, CC2);
3827     SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
3828
3829     // Note that we inverted the condition above, so we reverse the order of
3830     // the true and false operands here.  This will allow the setcc to be
3831     // matched to a single CSINC instruction.
3832     return DAG.getNode(AArch64ISD::CSEL, dl, VT, FVal, TVal, CC1Val, Cmp);
3833   } else {
3834     // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't
3835     // totally clean.  Some of them require two CSELs to implement.  As is in
3836     // this case, we emit the first CSEL and then emit a second using the output
3837     // of the first as the RHS.  We're effectively OR'ing the two CC's together.
3838
3839     // FIXME: It would be nice if we could match the two CSELs to two CSINCs.
3840     SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
3841     SDValue CS1 =
3842         DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, FVal, CC1Val, Cmp);
3843
3844     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
3845     return DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, CS1, CC2Val, Cmp);
3846   }
3847 }
3848
3849 SDValue AArch64TargetLowering::LowerSELECT_CC(ISD::CondCode CC, SDValue LHS,
3850                                               SDValue RHS, SDValue TVal,
3851                                               SDValue FVal, SDLoc dl,
3852                                               SelectionDAG &DAG) const {
3853   // Handle f128 first, because it will result in a comparison of some RTLIB
3854   // call result against zero.
3855   if (LHS.getValueType() == MVT::f128) {
3856     softenSetCCOperands(DAG, MVT::f128, LHS, RHS, CC, dl);
3857
3858     // If softenSetCCOperands returned a scalar, we need to compare the result
3859     // against zero to select between true and false values.
3860     if (!RHS.getNode()) {
3861       RHS = DAG.getConstant(0, dl, LHS.getValueType());
3862       CC = ISD::SETNE;
3863     }
3864   }
3865
3866   // Handle integers first.
3867   if (LHS.getValueType().isInteger()) {
3868     assert((LHS.getValueType() == RHS.getValueType()) &&
3869            (LHS.getValueType() == MVT::i32 || LHS.getValueType() == MVT::i64));
3870
3871     unsigned Opcode = AArch64ISD::CSEL;
3872
3873     // If both the TVal and the FVal are constants, see if we can swap them in
3874     // order to for a CSINV or CSINC out of them.
3875     ConstantSDNode *CFVal = dyn_cast<ConstantSDNode>(FVal);
3876     ConstantSDNode *CTVal = dyn_cast<ConstantSDNode>(TVal);
3877
3878     if (CTVal && CFVal && CTVal->isAllOnesValue() && CFVal->isNullValue()) {
3879       std::swap(TVal, FVal);
3880       std::swap(CTVal, CFVal);
3881       CC = ISD::getSetCCInverse(CC, true);
3882     } else if (CTVal && CFVal && CTVal->isOne() && CFVal->isNullValue()) {
3883       std::swap(TVal, FVal);
3884       std::swap(CTVal, CFVal);
3885       CC = ISD::getSetCCInverse(CC, true);
3886     } else if (TVal.getOpcode() == ISD::XOR) {
3887       // If TVal is a NOT we want to swap TVal and FVal so that we can match
3888       // with a CSINV rather than a CSEL.
3889       ConstantSDNode *CVal = dyn_cast<ConstantSDNode>(TVal.getOperand(1));
3890
3891       if (CVal && CVal->isAllOnesValue()) {
3892         std::swap(TVal, FVal);
3893         std::swap(CTVal, CFVal);
3894         CC = ISD::getSetCCInverse(CC, true);
3895       }
3896     } else if (TVal.getOpcode() == ISD::SUB) {
3897       // If TVal is a negation (SUB from 0) we want to swap TVal and FVal so
3898       // that we can match with a CSNEG rather than a CSEL.
3899       ConstantSDNode *CVal = dyn_cast<ConstantSDNode>(TVal.getOperand(0));
3900
3901       if (CVal && CVal->isNullValue()) {
3902         std::swap(TVal, FVal);
3903         std::swap(CTVal, CFVal);
3904         CC = ISD::getSetCCInverse(CC, true);
3905       }
3906     } else if (CTVal && CFVal) {
3907       const int64_t TrueVal = CTVal->getSExtValue();
3908       const int64_t FalseVal = CFVal->getSExtValue();
3909       bool Swap = false;
3910
3911       // If both TVal and FVal are constants, see if FVal is the
3912       // inverse/negation/increment of TVal and generate a CSINV/CSNEG/CSINC
3913       // instead of a CSEL in that case.
3914       if (TrueVal == ~FalseVal) {
3915         Opcode = AArch64ISD::CSINV;
3916       } else if (TrueVal == -FalseVal) {
3917         Opcode = AArch64ISD::CSNEG;
3918       } else if (TVal.getValueType() == MVT::i32) {
3919         // If our operands are only 32-bit wide, make sure we use 32-bit
3920         // arithmetic for the check whether we can use CSINC. This ensures that
3921         // the addition in the check will wrap around properly in case there is
3922         // an overflow (which would not be the case if we do the check with
3923         // 64-bit arithmetic).
3924         const uint32_t TrueVal32 = CTVal->getZExtValue();
3925         const uint32_t FalseVal32 = CFVal->getZExtValue();
3926
3927         if ((TrueVal32 == FalseVal32 + 1) || (TrueVal32 + 1 == FalseVal32)) {
3928           Opcode = AArch64ISD::CSINC;
3929
3930           if (TrueVal32 > FalseVal32) {
3931             Swap = true;
3932           }
3933         }
3934         // 64-bit check whether we can use CSINC.
3935       } else if ((TrueVal == FalseVal + 1) || (TrueVal + 1 == FalseVal)) {
3936         Opcode = AArch64ISD::CSINC;
3937
3938         if (TrueVal > FalseVal) {
3939           Swap = true;
3940         }
3941       }
3942
3943       // Swap TVal and FVal if necessary.
3944       if (Swap) {
3945         std::swap(TVal, FVal);
3946         std::swap(CTVal, CFVal);
3947         CC = ISD::getSetCCInverse(CC, true);
3948       }
3949
3950       if (Opcode != AArch64ISD::CSEL) {
3951         // Drop FVal since we can get its value by simply inverting/negating
3952         // TVal.
3953         FVal = TVal;
3954       }
3955     }
3956
3957     SDValue CCVal;
3958     SDValue Cmp = getAArch64Cmp(LHS, RHS, CC, CCVal, DAG, dl);
3959
3960     EVT VT = TVal.getValueType();
3961     return DAG.getNode(Opcode, dl, VT, TVal, FVal, CCVal, Cmp);
3962   }
3963
3964   // Now we know we're dealing with FP values.
3965   assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64);
3966   assert(LHS.getValueType() == RHS.getValueType());
3967   EVT VT = TVal.getValueType();
3968   SDValue Cmp = emitComparison(LHS, RHS, CC, dl, DAG);
3969
3970   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
3971   // clean.  Some of them require two CSELs to implement.
3972   AArch64CC::CondCode CC1, CC2;
3973   changeFPCCToAArch64CC(CC, CC1, CC2);
3974   SDValue CC1Val = DAG.getConstant(CC1, dl, MVT::i32);
3975   SDValue CS1 = DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, FVal, CC1Val, Cmp);
3976
3977   // If we need a second CSEL, emit it, using the output of the first as the
3978   // RHS.  We're effectively OR'ing the two CC's together.
3979   if (CC2 != AArch64CC::AL) {
3980     SDValue CC2Val = DAG.getConstant(CC2, dl, MVT::i32);
3981     return DAG.getNode(AArch64ISD::CSEL, dl, VT, TVal, CS1, CC2Val, Cmp);
3982   }
3983
3984   // Otherwise, return the output of the first CSEL.
3985   return CS1;
3986 }
3987
3988 SDValue AArch64TargetLowering::LowerSELECT_CC(SDValue Op,
3989                                               SelectionDAG &DAG) const {
3990   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
3991   SDValue LHS = Op.getOperand(0);
3992   SDValue RHS = Op.getOperand(1);
3993   SDValue TVal = Op.getOperand(2);
3994   SDValue FVal = Op.getOperand(3);
3995   SDLoc DL(Op);
3996   return LowerSELECT_CC(CC, LHS, RHS, TVal, FVal, DL, DAG);
3997 }
3998
3999 SDValue AArch64TargetLowering::LowerSELECT(SDValue Op,
4000                                            SelectionDAG &DAG) const {
4001   SDValue CCVal = Op->getOperand(0);
4002   SDValue TVal = Op->getOperand(1);
4003   SDValue FVal = Op->getOperand(2);
4004   SDLoc DL(Op);
4005
4006   unsigned Opc = CCVal.getOpcode();
4007   // Optimize {s|u}{add|sub|mul}.with.overflow feeding into a select
4008   // instruction.
4009   if (CCVal.getResNo() == 1 &&
4010       (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
4011        Opc == ISD::USUBO || Opc == ISD::SMULO || Opc == ISD::UMULO)) {
4012     // Only lower legal XALUO ops.
4013     if (!DAG.getTargetLoweringInfo().isTypeLegal(CCVal->getValueType(0)))
4014       return SDValue();
4015
4016     AArch64CC::CondCode OFCC;
4017     SDValue Value, Overflow;
4018     std::tie(Value, Overflow) = getAArch64XALUOOp(OFCC, CCVal.getValue(0), DAG);
4019     SDValue CCVal = DAG.getConstant(OFCC, DL, MVT::i32);
4020
4021     return DAG.getNode(AArch64ISD::CSEL, DL, Op.getValueType(), TVal, FVal,
4022                        CCVal, Overflow);
4023   }
4024
4025   // Lower it the same way as we would lower a SELECT_CC node.
4026   ISD::CondCode CC;
4027   SDValue LHS, RHS;
4028   if (CCVal.getOpcode() == ISD::SETCC) {
4029     LHS = CCVal.getOperand(0);
4030     RHS = CCVal.getOperand(1);
4031     CC = cast<CondCodeSDNode>(CCVal->getOperand(2))->get();
4032   } else {
4033     LHS = CCVal;
4034     RHS = DAG.getConstant(0, DL, CCVal.getValueType());
4035     CC = ISD::SETNE;
4036   }
4037   return LowerSELECT_CC(CC, LHS, RHS, TVal, FVal, DL, DAG);
4038 }
4039
4040 SDValue AArch64TargetLowering::LowerJumpTable(SDValue Op,
4041                                               SelectionDAG &DAG) const {
4042   // Jump table entries as PC relative offsets. No additional tweaking
4043   // is necessary here. Just get the address of the jump table.
4044   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
4045   EVT PtrVT = getPointerTy(DAG.getDataLayout());
4046   SDLoc DL(Op);
4047
4048   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
4049       !Subtarget->isTargetMachO()) {
4050     const unsigned char MO_NC = AArch64II::MO_NC;
4051     return DAG.getNode(
4052         AArch64ISD::WrapperLarge, DL, PtrVT,
4053         DAG.getTargetJumpTable(JT->getIndex(), PtrVT, AArch64II::MO_G3),
4054         DAG.getTargetJumpTable(JT->getIndex(), PtrVT, AArch64II::MO_G2 | MO_NC),
4055         DAG.getTargetJumpTable(JT->getIndex(), PtrVT, AArch64II::MO_G1 | MO_NC),
4056         DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
4057                                AArch64II::MO_G0 | MO_NC));
4058   }
4059
4060   SDValue Hi =
4061       DAG.getTargetJumpTable(JT->getIndex(), PtrVT, AArch64II::MO_PAGE);
4062   SDValue Lo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT,
4063                                       AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
4064   SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
4065   return DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
4066 }
4067
4068 SDValue AArch64TargetLowering::LowerConstantPool(SDValue Op,
4069                                                  SelectionDAG &DAG) const {
4070   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
4071   EVT PtrVT = getPointerTy(DAG.getDataLayout());
4072   SDLoc DL(Op);
4073
4074   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
4075     // Use the GOT for the large code model on iOS.
4076     if (Subtarget->isTargetMachO()) {
4077       SDValue GotAddr = DAG.getTargetConstantPool(
4078           CP->getConstVal(), PtrVT, CP->getAlignment(), CP->getOffset(),
4079           AArch64II::MO_GOT);
4080       return DAG.getNode(AArch64ISD::LOADgot, DL, PtrVT, GotAddr);
4081     }
4082
4083     const unsigned char MO_NC = AArch64II::MO_NC;
4084     return DAG.getNode(
4085         AArch64ISD::WrapperLarge, DL, PtrVT,
4086         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
4087                                   CP->getOffset(), AArch64II::MO_G3),
4088         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
4089                                   CP->getOffset(), AArch64II::MO_G2 | MO_NC),
4090         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
4091                                   CP->getOffset(), AArch64II::MO_G1 | MO_NC),
4092         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
4093                                   CP->getOffset(), AArch64II::MO_G0 | MO_NC));
4094   } else {
4095     // Use ADRP/ADD or ADRP/LDR for everything else: the small memory model on
4096     // ELF, the only valid one on Darwin.
4097     SDValue Hi =
4098         DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, CP->getAlignment(),
4099                                   CP->getOffset(), AArch64II::MO_PAGE);
4100     SDValue Lo = DAG.getTargetConstantPool(
4101         CP->getConstVal(), PtrVT, CP->getAlignment(), CP->getOffset(),
4102         AArch64II::MO_PAGEOFF | AArch64II::MO_NC);
4103
4104     SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
4105     return DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
4106   }
4107 }
4108
4109 SDValue AArch64TargetLowering::LowerBlockAddress(SDValue Op,
4110                                                SelectionDAG &DAG) const {
4111   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
4112   EVT PtrVT = getPointerTy(DAG.getDataLayout());
4113   SDLoc DL(Op);
4114   if (getTargetMachine().getCodeModel() == CodeModel::Large &&
4115       !Subtarget->isTargetMachO()) {
4116     const unsigned char MO_NC = AArch64II::MO_NC;
4117     return DAG.getNode(
4118         AArch64ISD::WrapperLarge, DL, PtrVT,
4119         DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G3),
4120         DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G2 | MO_NC),
4121         DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G1 | MO_NC),
4122         DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G0 | MO_NC));
4123   } else {
4124     SDValue Hi = DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_PAGE);
4125     SDValue Lo = DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_PAGEOFF |
4126                                                              AArch64II::MO_NC);
4127     SDValue ADRP = DAG.getNode(AArch64ISD::ADRP, DL, PtrVT, Hi);
4128     return DAG.getNode(AArch64ISD::ADDlow, DL, PtrVT, ADRP, Lo);
4129   }
4130 }
4131
4132 SDValue AArch64TargetLowering::LowerDarwin_VASTART(SDValue Op,
4133                                                  SelectionDAG &DAG) const {
4134   AArch64FunctionInfo *FuncInfo =
4135       DAG.getMachineFunction().getInfo<AArch64FunctionInfo>();
4136
4137   SDLoc DL(Op);
4138   SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(),
4139                                  getPointerTy(DAG.getDataLayout()));
4140   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4141   return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
4142                       MachinePointerInfo(SV), false, false, 0);
4143 }
4144
4145 SDValue AArch64TargetLowering::LowerAAPCS_VASTART(SDValue Op,
4146                                                 SelectionDAG &DAG) const {
4147   // The layout of the va_list struct is specified in the AArch64 Procedure Call
4148   // Standard, section B.3.
4149   MachineFunction &MF = DAG.getMachineFunction();
4150   AArch64FunctionInfo *FuncInfo = MF.getInfo<AArch64FunctionInfo>();
4151   auto PtrVT = getPointerTy(DAG.getDataLayout());
4152   SDLoc DL(Op);
4153
4154   SDValue Chain = Op.getOperand(0);
4155   SDValue VAList = Op.getOperand(1);
4156   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4157   SmallVector<SDValue, 4> MemOps;
4158
4159   // void *__stack at offset 0
4160   SDValue Stack = DAG.getFrameIndex(FuncInfo->getVarArgsStackIndex(), PtrVT);
4161   MemOps.push_back(DAG.getStore(Chain, DL, Stack, VAList,
4162                                 MachinePointerInfo(SV), false, false, 8));
4163
4164   // void *__gr_top at offset 8
4165   int GPRSize = FuncInfo->getVarArgsGPRSize();
4166   if (GPRSize > 0) {
4167     SDValue GRTop, GRTopAddr;
4168
4169     GRTopAddr =
4170         DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(8, DL, PtrVT));
4171
4172     GRTop = DAG.getFrameIndex(FuncInfo->getVarArgsGPRIndex(), PtrVT);
4173     GRTop = DAG.getNode(ISD::ADD, DL, PtrVT, GRTop,
4174                         DAG.getConstant(GPRSize, DL, PtrVT));
4175
4176     MemOps.push_back(DAG.getStore(Chain, DL, GRTop, GRTopAddr,
4177                                   MachinePointerInfo(SV, 8), false, false, 8));
4178   }
4179
4180   // void *__vr_top at offset 16
4181   int FPRSize = FuncInfo->getVarArgsFPRSize();
4182   if (FPRSize > 0) {
4183     SDValue VRTop, VRTopAddr;
4184     VRTopAddr = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4185                             DAG.getConstant(16, DL, PtrVT));
4186
4187     VRTop = DAG.getFrameIndex(FuncInfo->getVarArgsFPRIndex(), PtrVT);
4188     VRTop = DAG.getNode(ISD::ADD, DL, PtrVT, VRTop,
4189                         DAG.getConstant(FPRSize, DL, PtrVT));
4190
4191     MemOps.push_back(DAG.getStore(Chain, DL, VRTop, VRTopAddr,
4192                                   MachinePointerInfo(SV, 16), false, false, 8));
4193   }
4194
4195   // int __gr_offs at offset 24
4196   SDValue GROffsAddr =
4197       DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(24, DL, PtrVT));
4198   MemOps.push_back(DAG.getStore(Chain, DL,
4199                                 DAG.getConstant(-GPRSize, DL, MVT::i32),
4200                                 GROffsAddr, MachinePointerInfo(SV, 24), false,
4201                                 false, 4));
4202
4203   // int __vr_offs at offset 28
4204   SDValue VROffsAddr =
4205       DAG.getNode(ISD::ADD, DL, PtrVT, VAList, DAG.getConstant(28, DL, PtrVT));
4206   MemOps.push_back(DAG.getStore(Chain, DL,
4207                                 DAG.getConstant(-FPRSize, DL, MVT::i32),
4208                                 VROffsAddr, MachinePointerInfo(SV, 28), false,
4209                                 false, 4));
4210
4211   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, MemOps);
4212 }
4213
4214 SDValue AArch64TargetLowering::LowerVASTART(SDValue Op,
4215                                             SelectionDAG &DAG) const {
4216   return Subtarget->isTargetDarwin() ? LowerDarwin_VASTART(Op, DAG)
4217                                      : LowerAAPCS_VASTART(Op, DAG);
4218 }
4219
4220 SDValue AArch64TargetLowering::LowerVACOPY(SDValue Op,
4221                                            SelectionDAG &DAG) const {
4222   // AAPCS has three pointers and two ints (= 32 bytes), Darwin has single
4223   // pointer.
4224   SDLoc DL(Op);
4225   unsigned VaListSize = Subtarget->isTargetDarwin() ? 8 : 32;
4226   const Value *DestSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
4227   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
4228
4229   return DAG.getMemcpy(Op.getOperand(0), DL, Op.getOperand(1),
4230                        Op.getOperand(2),
4231                        DAG.getConstant(VaListSize, DL, MVT::i32),
4232                        8, false, false, false, MachinePointerInfo(DestSV),
4233                        MachinePointerInfo(SrcSV));
4234 }
4235
4236 SDValue AArch64TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
4237   assert(Subtarget->isTargetDarwin() &&
4238          "automatic va_arg instruction only works on Darwin");
4239
4240   const Value *V = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
4241   EVT VT = Op.getValueType();
4242   SDLoc DL(Op);
4243   SDValue Chain = Op.getOperand(0);
4244   SDValue Addr = Op.getOperand(1);
4245   unsigned Align = Op.getConstantOperandVal(3);
4246   auto PtrVT = getPointerTy(DAG.getDataLayout());
4247
4248   SDValue VAList = DAG.getLoad(PtrVT, DL, Chain, Addr, MachinePointerInfo(V),
4249                                false, false, false, 0);
4250   Chain = VAList.getValue(1);
4251
4252   if (Align > 8) {
4253     assert(((Align & (Align - 1)) == 0) && "Expected Align to be a power of 2");
4254     VAList = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4255                          DAG.getConstant(Align - 1, DL, PtrVT));
4256     VAList = DAG.getNode(ISD::AND, DL, PtrVT, VAList,
4257                          DAG.getConstant(-(int64_t)Align, DL, PtrVT));
4258   }
4259
4260   Type *ArgTy = VT.getTypeForEVT(*DAG.getContext());
4261   uint64_t ArgSize = DAG.getDataLayout().getTypeAllocSize(ArgTy);
4262
4263   // Scalar integer and FP values smaller than 64 bits are implicitly extended
4264   // up to 64 bits.  At the very least, we have to increase the striding of the
4265   // vaargs list to match this, and for FP values we need to introduce
4266   // FP_ROUND nodes as well.
4267   if (VT.isInteger() && !VT.isVector())
4268     ArgSize = 8;
4269   bool NeedFPTrunc = false;
4270   if (VT.isFloatingPoint() && !VT.isVector() && VT != MVT::f64) {
4271     ArgSize = 8;
4272     NeedFPTrunc = true;
4273   }
4274
4275   // Increment the pointer, VAList, to the next vaarg
4276   SDValue VANext = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
4277                                DAG.getConstant(ArgSize, DL, PtrVT));
4278   // Store the incremented VAList to the legalized pointer
4279   SDValue APStore = DAG.getStore(Chain, DL, VANext, Addr, MachinePointerInfo(V),
4280                                  false, false, 0);
4281
4282   // Load the actual argument out of the pointer VAList
4283   if (NeedFPTrunc) {
4284     // Load the value as an f64.
4285     SDValue WideFP = DAG.getLoad(MVT::f64, DL, APStore, VAList,
4286                                  MachinePointerInfo(), false, false, false, 0);
4287     // Round the value down to an f32.
4288     SDValue NarrowFP = DAG.getNode(ISD::FP_ROUND, DL, VT, WideFP.getValue(0),
4289                                    DAG.getIntPtrConstant(1, DL));
4290     SDValue Ops[] = { NarrowFP, WideFP.getValue(1) };
4291     // Merge the rounded value with the chain output of the load.
4292     return DAG.getMergeValues(Ops, DL);
4293   }
4294
4295   return DAG.getLoad(VT, DL, APStore, VAList, MachinePointerInfo(), false,
4296                      false, false, 0);
4297 }
4298
4299 SDValue AArch64TargetLowering::LowerFRAMEADDR(SDValue Op,
4300                                               SelectionDAG &DAG) const {
4301   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4302   MFI->setFrameAddressIsTaken(true);
4303
4304   EVT VT = Op.getValueType();
4305   SDLoc DL(Op);
4306   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4307   SDValue FrameAddr =
4308       DAG.getCopyFromReg(DAG.getEntryNode(), DL, AArch64::FP, VT);
4309   while (Depth--)
4310     FrameAddr = DAG.getLoad(VT, DL, DAG.getEntryNode(), FrameAddr,
4311                             MachinePointerInfo(), false, false, false, 0);
4312   return FrameAddr;
4313 }
4314
4315 // FIXME? Maybe this could be a TableGen attribute on some registers and
4316 // this table could be generated automatically from RegInfo.
4317 unsigned AArch64TargetLowering::getRegisterByName(const char* RegName, EVT VT,
4318                                                   SelectionDAG &DAG) const {
4319   unsigned Reg = StringSwitch<unsigned>(RegName)
4320                        .Case("sp", AArch64::SP)
4321                        .Default(0);
4322   if (Reg)
4323     return Reg;
4324   report_fatal_error(Twine("Invalid register name \""
4325                               + StringRef(RegName)  + "\"."));
4326 }
4327
4328 SDValue AArch64TargetLowering::LowerRETURNADDR(SDValue Op,
4329                                                SelectionDAG &DAG) const {
4330   MachineFunction &MF = DAG.getMachineFunction();
4331   MachineFrameInfo *MFI = MF.getFrameInfo();
4332   MFI->setReturnAddressIsTaken(true);
4333
4334   EVT VT = Op.getValueType();
4335   SDLoc DL(Op);
4336   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
4337   if (Depth) {
4338     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
4339     SDValue Offset = DAG.getConstant(8, DL, getPointerTy(DAG.getDataLayout()));
4340     return DAG.getLoad(VT, DL, DAG.getEntryNode(),
4341                        DAG.getNode(ISD::ADD, DL, VT, FrameAddr, Offset),
4342                        MachinePointerInfo(), false, false, false, 0);
4343   }
4344
4345   // Return LR, which contains the return address. Mark it an implicit live-in.
4346   unsigned Reg = MF.addLiveIn(AArch64::LR, &AArch64::GPR64RegClass);
4347   return DAG.getCopyFromReg(DAG.getEntryNode(), DL, Reg, VT);
4348 }
4349
4350 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two
4351 /// i64 values and take a 2 x i64 value to shift plus a shift amount.
4352 SDValue AArch64TargetLowering::LowerShiftRightParts(SDValue Op,
4353                                                     SelectionDAG &DAG) const {
4354   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4355   EVT VT = Op.getValueType();
4356   unsigned VTBits = VT.getSizeInBits();
4357   SDLoc dl(Op);
4358   SDValue ShOpLo = Op.getOperand(0);
4359   SDValue ShOpHi = Op.getOperand(1);
4360   SDValue ShAmt = Op.getOperand(2);
4361   SDValue ARMcc;
4362   unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
4363
4364   assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
4365
4366   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64,
4367                                  DAG.getConstant(VTBits, dl, MVT::i64), ShAmt);
4368   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
4369   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64, ShAmt,
4370                                    DAG.getConstant(VTBits, dl, MVT::i64));
4371   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
4372
4373   SDValue Cmp = emitComparison(ExtraShAmt, DAG.getConstant(0, dl, MVT::i64),
4374                                ISD::SETGE, dl, DAG);
4375   SDValue CCVal = DAG.getConstant(AArch64CC::GE, dl, MVT::i32);
4376
4377   SDValue FalseValLo = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4378   SDValue TrueValLo = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
4379   SDValue Lo =
4380       DAG.getNode(AArch64ISD::CSEL, dl, VT, TrueValLo, FalseValLo, CCVal, Cmp);
4381
4382   // AArch64 shifts larger than the register width are wrapped rather than
4383   // clamped, so we can't just emit "hi >> x".
4384   SDValue FalseValHi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
4385   SDValue TrueValHi = Opc == ISD::SRA
4386                           ? DAG.getNode(Opc, dl, VT, ShOpHi,
4387                                         DAG.getConstant(VTBits - 1, dl,
4388                                                         MVT::i64))
4389                           : DAG.getConstant(0, dl, VT);
4390   SDValue Hi =
4391       DAG.getNode(AArch64ISD::CSEL, dl, VT, TrueValHi, FalseValHi, CCVal, Cmp);
4392
4393   SDValue Ops[2] = { Lo, Hi };
4394   return DAG.getMergeValues(Ops, dl);
4395 }
4396
4397 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two
4398 /// i64 values and take a 2 x i64 value to shift plus a shift amount.
4399 SDValue AArch64TargetLowering::LowerShiftLeftParts(SDValue Op,
4400                                                  SelectionDAG &DAG) const {
4401   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4402   EVT VT = Op.getValueType();
4403   unsigned VTBits = VT.getSizeInBits();
4404   SDLoc dl(Op);
4405   SDValue ShOpLo = Op.getOperand(0);
4406   SDValue ShOpHi = Op.getOperand(1);
4407   SDValue ShAmt = Op.getOperand(2);
4408   SDValue ARMcc;
4409
4410   assert(Op.getOpcode() == ISD::SHL_PARTS);
4411   SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64,
4412                                  DAG.getConstant(VTBits, dl, MVT::i64), ShAmt);
4413   SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
4414   SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i64, ShAmt,
4415                                    DAG.getConstant(VTBits, dl, MVT::i64));
4416   SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
4417   SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
4418
4419   SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
4420
4421   SDValue Cmp = emitComparison(ExtraShAmt, DAG.getConstant(0, dl, MVT::i64),
4422                                ISD::SETGE, dl, DAG);
4423   SDValue CCVal = DAG.getConstant(AArch64CC::GE, dl, MVT::i32);
4424   SDValue Hi =
4425       DAG.getNode(AArch64ISD::CSEL, dl, VT, Tmp3, FalseVal, CCVal, Cmp);
4426
4427   // AArch64 shifts of larger than register sizes are wrapped rather than
4428   // clamped, so we can't just emit "lo << a" if a is too big.
4429   SDValue TrueValLo = DAG.getConstant(0, dl, VT);
4430   SDValue FalseValLo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
4431   SDValue Lo =
4432       DAG.getNode(AArch64ISD::CSEL, dl, VT, TrueValLo, FalseValLo, CCVal, Cmp);
4433
4434   SDValue Ops[2] = { Lo, Hi };
4435   return DAG.getMergeValues(Ops, dl);
4436 }
4437
4438 bool AArch64TargetLowering::isOffsetFoldingLegal(
4439     const GlobalAddressSDNode *GA) const {
4440   // The AArch64 target doesn't support folding offsets into global addresses.
4441   return false;
4442 }
4443
4444 bool AArch64TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
4445   // We can materialize #0.0 as fmov $Rd, XZR for 64-bit and 32-bit cases.
4446   // FIXME: We should be able to handle f128 as well with a clever lowering.
4447   if (Imm.isPosZero() && (VT == MVT::f64 || VT == MVT::f32))
4448     return true;
4449
4450   if (VT == MVT::f64)
4451     return AArch64_AM::getFP64Imm(Imm) != -1;
4452   else if (VT == MVT::f32)
4453     return AArch64_AM::getFP32Imm(Imm) != -1;
4454   return false;
4455 }
4456
4457 //===----------------------------------------------------------------------===//
4458 //                          AArch64 Optimization Hooks
4459 //===----------------------------------------------------------------------===//
4460
4461 //===----------------------------------------------------------------------===//
4462 //                          AArch64 Inline Assembly Support
4463 //===----------------------------------------------------------------------===//
4464
4465 // Table of Constraints
4466 // TODO: This is the current set of constraints supported by ARM for the
4467 // compiler, not all of them may make sense, e.g. S may be difficult to support.
4468 //
4469 // r - A general register
4470 // w - An FP/SIMD register of some size in the range v0-v31
4471 // x - An FP/SIMD register of some size in the range v0-v15
4472 // I - Constant that can be used with an ADD instruction
4473 // J - Constant that can be used with a SUB instruction
4474 // K - Constant that can be used with a 32-bit logical instruction
4475 // L - Constant that can be used with a 64-bit logical instruction
4476 // M - Constant that can be used as a 32-bit MOV immediate
4477 // N - Constant that can be used as a 64-bit MOV immediate
4478 // Q - A memory reference with base register and no offset
4479 // S - A symbolic address
4480 // Y - Floating point constant zero
4481 // Z - Integer constant zero
4482 //
4483 //   Note that general register operands will be output using their 64-bit x
4484 // register name, whatever the size of the variable, unless the asm operand
4485 // is prefixed by the %w modifier. Floating-point and SIMD register operands
4486 // will be output with the v prefix unless prefixed by the %b, %h, %s, %d or
4487 // %q modifier.
4488
4489 /// getConstraintType - Given a constraint letter, return the type of
4490 /// constraint it is for this target.
4491 AArch64TargetLowering::ConstraintType
4492 AArch64TargetLowering::getConstraintType(StringRef Constraint) const {
4493   if (Constraint.size() == 1) {
4494     switch (Constraint[0]) {
4495     default:
4496       break;
4497     case 'z':
4498       return C_Other;
4499     case 'x':
4500     case 'w':
4501       return C_RegisterClass;
4502     // An address with a single base register. Due to the way we
4503     // currently handle addresses it is the same as 'r'.
4504     case 'Q':
4505       return C_Memory;
4506     }
4507   }
4508   return TargetLowering::getConstraintType(Constraint);
4509 }
4510
4511 /// Examine constraint type and operand type and determine a weight value.
4512 /// This object must already have been set up with the operand type
4513 /// and the current alternative constraint selected.
4514 TargetLowering::ConstraintWeight
4515 AArch64TargetLowering::getSingleConstraintMatchWeight(
4516     AsmOperandInfo &info, const char *constraint) const {
4517   ConstraintWeight weight = CW_Invalid;
4518   Value *CallOperandVal = info.CallOperandVal;
4519   // If we don't have a value, we can't do a match,
4520   // but allow it at the lowest weight.
4521   if (!CallOperandVal)
4522     return CW_Default;
4523   Type *type = CallOperandVal->getType();
4524   // Look at the constraint type.
4525   switch (*constraint) {
4526   default:
4527     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
4528     break;
4529   case 'x':
4530   case 'w':
4531     if (type->isFloatingPointTy() || type->isVectorTy())
4532       weight = CW_Register;
4533     break;
4534   case 'z':
4535     weight = CW_Constant;
4536     break;
4537   }
4538   return weight;
4539 }
4540
4541 std::pair<unsigned, const TargetRegisterClass *>
4542 AArch64TargetLowering::getRegForInlineAsmConstraint(
4543     const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
4544   if (Constraint.size() == 1) {
4545     switch (Constraint[0]) {
4546     case 'r':
4547       if (VT.getSizeInBits() == 64)
4548         return std::make_pair(0U, &AArch64::GPR64commonRegClass);
4549       return std::make_pair(0U, &AArch64::GPR32commonRegClass);
4550     case 'w':
4551       if (VT == MVT::f32)
4552         return std::make_pair(0U, &AArch64::FPR32RegClass);
4553       if (VT.getSizeInBits() == 64)
4554         return std::make_pair(0U, &AArch64::FPR64RegClass);
4555       if (VT.getSizeInBits() == 128)
4556         return std::make_pair(0U, &AArch64::FPR128RegClass);
4557       break;
4558     // The instructions that this constraint is designed for can
4559     // only take 128-bit registers so just use that regclass.
4560     case 'x':
4561       if (VT.getSizeInBits() == 128)
4562         return std::make_pair(0U, &AArch64::FPR128_loRegClass);
4563       break;
4564     }
4565   }
4566   if (StringRef("{cc}").equals_lower(Constraint))
4567     return std::make_pair(unsigned(AArch64::NZCV), &AArch64::CCRRegClass);
4568
4569   // Use the default implementation in TargetLowering to convert the register
4570   // constraint into a member of a register class.
4571   std::pair<unsigned, const TargetRegisterClass *> Res;
4572   Res = TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
4573
4574   // Not found as a standard register?
4575   if (!Res.second) {
4576     unsigned Size = Constraint.size();
4577     if ((Size == 4 || Size == 5) && Constraint[0] == '{' &&
4578         tolower(Constraint[1]) == 'v' && Constraint[Size - 1] == '}') {
4579       int RegNo;
4580       bool Failed = Constraint.slice(2, Size - 1).getAsInteger(10, RegNo);
4581       if (!Failed && RegNo >= 0 && RegNo <= 31) {
4582         // v0 - v31 are aliases of q0 - q31.
4583         // By default we'll emit v0-v31 for this unless there's a modifier where
4584         // we'll emit the correct register as well.
4585         Res.first = AArch64::FPR128RegClass.getRegister(RegNo);
4586         Res.second = &AArch64::FPR128RegClass;
4587       }
4588     }
4589   }
4590
4591   return Res;
4592 }
4593
4594 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
4595 /// vector.  If it is invalid, don't add anything to Ops.
4596 void AArch64TargetLowering::LowerAsmOperandForConstraint(
4597     SDValue Op, std::string &Constraint, std::vector<SDValue> &Ops,
4598     SelectionDAG &DAG) const {
4599   SDValue Result;
4600
4601   // Currently only support length 1 constraints.
4602   if (Constraint.length() != 1)
4603     return;
4604
4605   char ConstraintLetter = Constraint[0];
4606   switch (ConstraintLetter) {
4607   default:
4608     break;
4609
4610   // This set of constraints deal with valid constants for various instructions.
4611   // Validate and return a target constant for them if we can.
4612   case 'z': {
4613     // 'z' maps to xzr or wzr so it needs an input of 0.
4614     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
4615     if (!C || C->getZExtValue() != 0)
4616       return;
4617
4618     if (Op.getValueType() == MVT::i64)
4619       Result = DAG.getRegister(AArch64::XZR, MVT::i64);
4620     else
4621       Result = DAG.getRegister(AArch64::WZR, MVT::i32);
4622     break;
4623   }
4624
4625   case 'I':
4626   case 'J':
4627   case 'K':
4628   case 'L':
4629   case 'M':
4630   case 'N':
4631     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
4632     if (!C)
4633       return;
4634
4635     // Grab the value and do some validation.
4636     uint64_t CVal = C->getZExtValue();
4637     switch (ConstraintLetter) {
4638     // The I constraint applies only to simple ADD or SUB immediate operands:
4639     // i.e. 0 to 4095 with optional shift by 12
4640     // The J constraint applies only to ADD or SUB immediates that would be
4641     // valid when negated, i.e. if [an add pattern] were to be output as a SUB
4642     // instruction [or vice versa], in other words -1 to -4095 with optional
4643     // left shift by 12.
4644     case 'I':
4645       if (isUInt<12>(CVal) || isShiftedUInt<12, 12>(CVal))
4646         break;
4647       return;
4648     case 'J': {
4649       uint64_t NVal = -C->getSExtValue();
4650       if (isUInt<12>(NVal) || isShiftedUInt<12, 12>(NVal)) {
4651         CVal = C->getSExtValue();
4652         break;
4653       }
4654       return;
4655     }
4656     // The K and L constraints apply *only* to logical immediates, including
4657     // what used to be the MOVI alias for ORR (though the MOVI alias has now
4658     // been removed and MOV should be used). So these constraints have to
4659     // distinguish between bit patterns that are valid 32-bit or 64-bit
4660     // "bitmask immediates": for example 0xaaaaaaaa is a valid bimm32 (K), but
4661     // not a valid bimm64 (L) where 0xaaaaaaaaaaaaaaaa would be valid, and vice
4662     // versa.
4663     case 'K':
4664       if (AArch64_AM::isLogicalImmediate(CVal, 32))
4665         break;
4666       return;
4667     case 'L':
4668       if (AArch64_AM::isLogicalImmediate(CVal, 64))
4669         break;
4670       return;
4671     // The M and N constraints are a superset of K and L respectively, for use
4672     // with the MOV (immediate) alias. As well as the logical immediates they
4673     // also match 32 or 64-bit immediates that can be loaded either using a
4674     // *single* MOVZ or MOVN , such as 32-bit 0x12340000, 0x00001234, 0xffffedca
4675     // (M) or 64-bit 0x1234000000000000 (N) etc.
4676     // As a note some of this code is liberally stolen from the asm parser.
4677     case 'M': {
4678       if (!isUInt<32>(CVal))
4679         return;
4680       if (AArch64_AM::isLogicalImmediate(CVal, 32))
4681         break;
4682       if ((CVal & 0xFFFF) == CVal)
4683         break;
4684       if ((CVal & 0xFFFF0000ULL) == CVal)
4685         break;
4686       uint64_t NCVal = ~(uint32_t)CVal;
4687       if ((NCVal & 0xFFFFULL) == NCVal)
4688         break;
4689       if ((NCVal & 0xFFFF0000ULL) == NCVal)
4690         break;
4691       return;
4692     }
4693     case 'N': {
4694       if (AArch64_AM::isLogicalImmediate(CVal, 64))
4695         break;
4696       if ((CVal & 0xFFFFULL) == CVal)
4697         break;
4698       if ((CVal & 0xFFFF0000ULL) == CVal)
4699         break;
4700       if ((CVal & 0xFFFF00000000ULL) == CVal)
4701         break;
4702       if ((CVal & 0xFFFF000000000000ULL) == CVal)
4703         break;
4704       uint64_t NCVal = ~CVal;
4705       if ((NCVal & 0xFFFFULL) == NCVal)
4706         break;
4707       if ((NCVal & 0xFFFF0000ULL) == NCVal)
4708         break;
4709       if ((NCVal & 0xFFFF00000000ULL) == NCVal)
4710         break;
4711       if ((NCVal & 0xFFFF000000000000ULL) == NCVal)
4712         break;
4713       return;
4714     }
4715     default:
4716       return;
4717     }
4718
4719     // All assembler immediates are 64-bit integers.
4720     Result = DAG.getTargetConstant(CVal, SDLoc(Op), MVT::i64);
4721     break;
4722   }
4723
4724   if (Result.getNode()) {
4725     Ops.push_back(Result);
4726     return;
4727   }
4728
4729   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
4730 }
4731
4732 //===----------------------------------------------------------------------===//
4733 //                     AArch64 Advanced SIMD Support
4734 //===----------------------------------------------------------------------===//
4735
4736 /// WidenVector - Given a value in the V64 register class, produce the
4737 /// equivalent value in the V128 register class.
4738 static SDValue WidenVector(SDValue V64Reg, SelectionDAG &DAG) {
4739   EVT VT = V64Reg.getValueType();
4740   unsigned NarrowSize = VT.getVectorNumElements();
4741   MVT EltTy = VT.getVectorElementType().getSimpleVT();
4742   MVT WideTy = MVT::getVectorVT(EltTy, 2 * NarrowSize);
4743   SDLoc DL(V64Reg);
4744
4745   return DAG.getNode(ISD::INSERT_SUBVECTOR, DL, WideTy, DAG.getUNDEF(WideTy),
4746                      V64Reg, DAG.getConstant(0, DL, MVT::i32));
4747 }
4748
4749 /// getExtFactor - Determine the adjustment factor for the position when
4750 /// generating an "extract from vector registers" instruction.
4751 static unsigned getExtFactor(SDValue &V) {
4752   EVT EltType = V.getValueType().getVectorElementType();
4753   return EltType.getSizeInBits() / 8;
4754 }
4755
4756 /// NarrowVector - Given a value in the V128 register class, produce the
4757 /// equivalent value in the V64 register class.
4758 static SDValue NarrowVector(SDValue V128Reg, SelectionDAG &DAG) {
4759   EVT VT = V128Reg.getValueType();
4760   unsigned WideSize = VT.getVectorNumElements();
4761   MVT EltTy = VT.getVectorElementType().getSimpleVT();
4762   MVT NarrowTy = MVT::getVectorVT(EltTy, WideSize / 2);
4763   SDLoc DL(V128Reg);
4764
4765   return DAG.getTargetExtractSubreg(AArch64::dsub, DL, NarrowTy, V128Reg);
4766 }
4767
4768 // Gather data to see if the operation can be modelled as a
4769 // shuffle in combination with VEXTs.
4770 SDValue AArch64TargetLowering::ReconstructShuffle(SDValue Op,
4771                                                   SelectionDAG &DAG) const {
4772   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
4773   SDLoc dl(Op);
4774   EVT VT = Op.getValueType();
4775   unsigned NumElts = VT.getVectorNumElements();
4776
4777   struct ShuffleSourceInfo {
4778     SDValue Vec;
4779     unsigned MinElt;
4780     unsigned MaxElt;
4781
4782     // We may insert some combination of BITCASTs and VEXT nodes to force Vec to
4783     // be compatible with the shuffle we intend to construct. As a result
4784     // ShuffleVec will be some sliding window into the original Vec.
4785     SDValue ShuffleVec;
4786
4787     // Code should guarantee that element i in Vec starts at element "WindowBase
4788     // + i * WindowScale in ShuffleVec".
4789     int WindowBase;
4790     int WindowScale;
4791
4792     bool operator ==(SDValue OtherVec) { return Vec == OtherVec; }
4793     ShuffleSourceInfo(SDValue Vec)
4794         : Vec(Vec), MinElt(UINT_MAX), MaxElt(0), ShuffleVec(Vec), WindowBase(0),
4795           WindowScale(1) {}
4796   };
4797
4798   // First gather all vectors used as an immediate source for this BUILD_VECTOR
4799   // node.
4800   SmallVector<ShuffleSourceInfo, 2> Sources;
4801   for (unsigned i = 0; i < NumElts; ++i) {
4802     SDValue V = Op.getOperand(i);
4803     if (V.getOpcode() == ISD::UNDEF)
4804       continue;
4805     else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) {
4806       // A shuffle can only come from building a vector from various
4807       // elements of other vectors.
4808       return SDValue();
4809     }
4810
4811     // Add this element source to the list if it's not already there.
4812     SDValue SourceVec = V.getOperand(0);
4813     auto Source = std::find(Sources.begin(), Sources.end(), SourceVec);
4814     if (Source == Sources.end())
4815       Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec));
4816
4817     // Update the minimum and maximum lane number seen.
4818     unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue();
4819     Source->MinElt = std::min(Source->MinElt, EltNo);
4820     Source->MaxElt = std::max(Source->MaxElt, EltNo);
4821   }
4822
4823   // Currently only do something sane when at most two source vectors
4824   // are involved.
4825   if (Sources.size() > 2)
4826     return SDValue();
4827
4828   // Find out the smallest element size among result and two sources, and use
4829   // it as element size to build the shuffle_vector.
4830   EVT SmallestEltTy = VT.getVectorElementType();
4831   for (auto &Source : Sources) {
4832     EVT SrcEltTy = Source.Vec.getValueType().getVectorElementType();
4833     if (SrcEltTy.bitsLT(SmallestEltTy)) {
4834       SmallestEltTy = SrcEltTy;
4835     }
4836   }
4837   unsigned ResMultiplier =
4838       VT.getVectorElementType().getSizeInBits() / SmallestEltTy.getSizeInBits();
4839   NumElts = VT.getSizeInBits() / SmallestEltTy.getSizeInBits();
4840   EVT ShuffleVT = EVT::getVectorVT(*DAG.getContext(), SmallestEltTy, NumElts);
4841
4842   // If the source vector is too wide or too narrow, we may nevertheless be able
4843   // to construct a compatible shuffle either by concatenating it with UNDEF or
4844   // extracting a suitable range of elements.
4845   for (auto &Src : Sources) {
4846     EVT SrcVT = Src.ShuffleVec.getValueType();
4847
4848     if (SrcVT.getSizeInBits() == VT.getSizeInBits())
4849       continue;
4850
4851     // This stage of the search produces a source with the same element type as
4852     // the original, but with a total width matching the BUILD_VECTOR output.
4853     EVT EltVT = SrcVT.getVectorElementType();
4854     unsigned NumSrcElts = VT.getSizeInBits() / EltVT.getSizeInBits();
4855     EVT DestVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumSrcElts);
4856
4857     if (SrcVT.getSizeInBits() < VT.getSizeInBits()) {
4858       assert(2 * SrcVT.getSizeInBits() == VT.getSizeInBits());
4859       // We can pad out the smaller vector for free, so if it's part of a
4860       // shuffle...
4861       Src.ShuffleVec =
4862           DAG.getNode(ISD::CONCAT_VECTORS, dl, DestVT, Src.ShuffleVec,
4863                       DAG.getUNDEF(Src.ShuffleVec.getValueType()));
4864       continue;
4865     }
4866
4867     assert(SrcVT.getSizeInBits() == 2 * VT.getSizeInBits());
4868
4869     if (Src.MaxElt - Src.MinElt >= NumSrcElts) {
4870       // Span too large for a VEXT to cope
4871       return SDValue();
4872     }
4873
4874     if (Src.MinElt >= NumSrcElts) {
4875       // The extraction can just take the second half
4876       Src.ShuffleVec =
4877           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
4878                       DAG.getConstant(NumSrcElts, dl, MVT::i64));
4879       Src.WindowBase = -NumSrcElts;
4880     } else if (Src.MaxElt < NumSrcElts) {
4881       // The extraction can just take the first half
4882       Src.ShuffleVec =
4883           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
4884                       DAG.getConstant(0, dl, MVT::i64));
4885     } else {
4886       // An actual VEXT is needed
4887       SDValue VEXTSrc1 =
4888           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
4889                       DAG.getConstant(0, dl, MVT::i64));
4890       SDValue VEXTSrc2 =
4891           DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec,
4892                       DAG.getConstant(NumSrcElts, dl, MVT::i64));
4893       unsigned Imm = Src.MinElt * getExtFactor(VEXTSrc1);
4894
4895       Src.ShuffleVec = DAG.getNode(AArch64ISD::EXT, dl, DestVT, VEXTSrc1,
4896                                    VEXTSrc2,
4897                                    DAG.getConstant(Imm, dl, MVT::i32));
4898       Src.WindowBase = -Src.MinElt;
4899     }
4900   }
4901
4902   // Another possible incompatibility occurs from the vector element types. We
4903   // can fix this by bitcasting the source vectors to the same type we intend
4904   // for the shuffle.
4905   for (auto &Src : Sources) {
4906     EVT SrcEltTy = Src.ShuffleVec.getValueType().getVectorElementType();
4907     if (SrcEltTy == SmallestEltTy)
4908       continue;
4909     assert(ShuffleVT.getVectorElementType() == SmallestEltTy);
4910     Src.ShuffleVec = DAG.getNode(ISD::BITCAST, dl, ShuffleVT, Src.ShuffleVec);
4911     Src.WindowScale = SrcEltTy.getSizeInBits() / SmallestEltTy.getSizeInBits();
4912     Src.WindowBase *= Src.WindowScale;
4913   }
4914
4915   // Final sanity check before we try to actually produce a shuffle.
4916   DEBUG(
4917     for (auto Src : Sources)
4918       assert(Src.ShuffleVec.getValueType() == ShuffleVT);
4919   );
4920
4921   // The stars all align, our next step is to produce the mask for the shuffle.
4922   SmallVector<int, 8> Mask(ShuffleVT.getVectorNumElements(), -1);
4923   int BitsPerShuffleLane = ShuffleVT.getVectorElementType().getSizeInBits();
4924   for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) {
4925     SDValue Entry = Op.getOperand(i);
4926     if (Entry.getOpcode() == ISD::UNDEF)
4927       continue;
4928
4929     auto Src = std::find(Sources.begin(), Sources.end(), Entry.getOperand(0));
4930     int EltNo = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue();
4931
4932     // EXTRACT_VECTOR_ELT performs an implicit any_ext; BUILD_VECTOR an implicit
4933     // trunc. So only std::min(SrcBits, DestBits) actually get defined in this
4934     // segment.
4935     EVT OrigEltTy = Entry.getOperand(0).getValueType().getVectorElementType();
4936     int BitsDefined = std::min(OrigEltTy.getSizeInBits(),
4937                                VT.getVectorElementType().getSizeInBits());
4938     int LanesDefined = BitsDefined / BitsPerShuffleLane;
4939
4940     // This source is expected to fill ResMultiplier lanes of the final shuffle,
4941     // starting at the appropriate offset.
4942     int *LaneMask = &Mask[i * ResMultiplier];
4943
4944     int ExtractBase = EltNo * Src->WindowScale + Src->WindowBase;
4945     ExtractBase += NumElts * (Src - Sources.begin());
4946     for (int j = 0; j < LanesDefined; ++j)
4947       LaneMask[j] = ExtractBase + j;
4948   }
4949
4950   // Final check before we try to produce nonsense...
4951   if (!isShuffleMaskLegal(Mask, ShuffleVT))
4952     return SDValue();
4953
4954   SDValue ShuffleOps[] = { DAG.getUNDEF(ShuffleVT), DAG.getUNDEF(ShuffleVT) };
4955   for (unsigned i = 0; i < Sources.size(); ++i)
4956     ShuffleOps[i] = Sources[i].ShuffleVec;
4957
4958   SDValue Shuffle = DAG.getVectorShuffle(ShuffleVT, dl, ShuffleOps[0],
4959                                          ShuffleOps[1], &Mask[0]);
4960   return DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
4961 }
4962
4963 // check if an EXT instruction can handle the shuffle mask when the
4964 // vector sources of the shuffle are the same.
4965 static bool isSingletonEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) {
4966   unsigned NumElts = VT.getVectorNumElements();
4967
4968   // Assume that the first shuffle index is not UNDEF.  Fail if it is.
4969   if (M[0] < 0)
4970     return false;
4971
4972   Imm = M[0];
4973
4974   // If this is a VEXT shuffle, the immediate value is the index of the first
4975   // element.  The other shuffle indices must be the successive elements after
4976   // the first one.
4977   unsigned ExpectedElt = Imm;
4978   for (unsigned i = 1; i < NumElts; ++i) {
4979     // Increment the expected index.  If it wraps around, just follow it
4980     // back to index zero and keep going.
4981     ++ExpectedElt;
4982     if (ExpectedElt == NumElts)
4983       ExpectedElt = 0;
4984
4985     if (M[i] < 0)
4986       continue; // ignore UNDEF indices
4987     if (ExpectedElt != static_cast<unsigned>(M[i]))
4988       return false;
4989   }
4990
4991   return true;
4992 }
4993
4994 // check if an EXT instruction can handle the shuffle mask when the
4995 // vector sources of the shuffle are different.
4996 static bool isEXTMask(ArrayRef<int> M, EVT VT, bool &ReverseEXT,
4997                       unsigned &Imm) {
4998   // Look for the first non-undef element.
4999   const int *FirstRealElt = std::find_if(M.begin(), M.end(),
5000       [](int Elt) {return Elt >= 0;});
5001
5002   // Benefit form APInt to handle overflow when calculating expected element.
5003   unsigned NumElts = VT.getVectorNumElements();
5004   unsigned MaskBits = APInt(32, NumElts * 2).logBase2();
5005   APInt ExpectedElt = APInt(MaskBits, *FirstRealElt + 1);
5006   // The following shuffle indices must be the successive elements after the
5007   // first real element.
5008   const int *FirstWrongElt = std::find_if(FirstRealElt + 1, M.end(),
5009       [&](int Elt) {return Elt != ExpectedElt++ && Elt != -1;});
5010   if (FirstWrongElt != M.end())
5011     return false;
5012
5013   // The index of an EXT is the first element if it is not UNDEF.
5014   // Watch out for the beginning UNDEFs. The EXT index should be the expected
5015   // value of the first element.  E.g. 
5016   // <-1, -1, 3, ...> is treated as <1, 2, 3, ...>.
5017   // <-1, -1, 0, 1, ...> is treated as <2*NumElts-2, 2*NumElts-1, 0, 1, ...>.
5018   // ExpectedElt is the last mask index plus 1.
5019   Imm = ExpectedElt.getZExtValue();
5020
5021   // There are two difference cases requiring to reverse input vectors.
5022   // For example, for vector <4 x i32> we have the following cases,
5023   // Case 1: shufflevector(<4 x i32>,<4 x i32>,<-1, -1, -1, 0>)
5024   // Case 2: shufflevector(<4 x i32>,<4 x i32>,<-1, -1, 7, 0>)
5025   // For both cases, we finally use mask <5, 6, 7, 0>, which requires
5026   // to reverse two input vectors.
5027   if (Imm < NumElts)
5028     ReverseEXT = true;
5029   else
5030     Imm -= NumElts;
5031
5032   return true;
5033 }
5034
5035 /// isREVMask - Check if a vector shuffle corresponds to a REV
5036 /// instruction with the specified blocksize.  (The order of the elements
5037 /// within each block of the vector is reversed.)
5038 static bool isREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) {
5039   assert((BlockSize == 16 || BlockSize == 32 || BlockSize == 64) &&
5040          "Only possible block sizes for REV are: 16, 32, 64");
5041
5042   unsigned EltSz = VT.getVectorElementType().getSizeInBits();
5043   if (EltSz == 64)
5044     return false;
5045
5046   unsigned NumElts = VT.getVectorNumElements();
5047   unsigned BlockElts = M[0] + 1;
5048   // If the first shuffle index is UNDEF, be optimistic.
5049   if (M[0] < 0)
5050     BlockElts = BlockSize / EltSz;
5051
5052   if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
5053     return false;
5054
5055   for (unsigned i = 0; i < NumElts; ++i) {
5056     if (M[i] < 0)
5057       continue; // ignore UNDEF indices
5058     if ((unsigned)M[i] != (i - i % BlockElts) + (BlockElts - 1 - i % BlockElts))
5059       return false;
5060   }
5061
5062   return true;
5063 }
5064
5065 static bool isZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5066   unsigned NumElts = VT.getVectorNumElements();
5067   WhichResult = (M[0] == 0 ? 0 : 1);
5068   unsigned Idx = WhichResult * NumElts / 2;
5069   for (unsigned i = 0; i != NumElts; i += 2) {
5070     if ((M[i] >= 0 && (unsigned)M[i] != Idx) ||
5071         (M[i + 1] >= 0 && (unsigned)M[i + 1] != Idx + NumElts))
5072       return false;
5073     Idx += 1;
5074   }
5075
5076   return true;
5077 }
5078
5079 static bool isUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5080   unsigned NumElts = VT.getVectorNumElements();
5081   WhichResult = (M[0] == 0 ? 0 : 1);
5082   for (unsigned i = 0; i != NumElts; ++i) {
5083     if (M[i] < 0)
5084       continue; // ignore UNDEF indices
5085     if ((unsigned)M[i] != 2 * i + WhichResult)
5086       return false;
5087   }
5088
5089   return true;
5090 }
5091
5092 static bool isTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5093   unsigned NumElts = VT.getVectorNumElements();
5094   WhichResult = (M[0] == 0 ? 0 : 1);
5095   for (unsigned i = 0; i < NumElts; i += 2) {
5096     if ((M[i] >= 0 && (unsigned)M[i] != i + WhichResult) ||
5097         (M[i + 1] >= 0 && (unsigned)M[i + 1] != i + NumElts + WhichResult))
5098       return false;
5099   }
5100   return true;
5101 }
5102
5103 /// isZIP_v_undef_Mask - Special case of isZIPMask for canonical form of
5104 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5105 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>.
5106 static bool isZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5107   unsigned NumElts = VT.getVectorNumElements();
5108   WhichResult = (M[0] == 0 ? 0 : 1);
5109   unsigned Idx = WhichResult * NumElts / 2;
5110   for (unsigned i = 0; i != NumElts; i += 2) {
5111     if ((M[i] >= 0 && (unsigned)M[i] != Idx) ||
5112         (M[i + 1] >= 0 && (unsigned)M[i + 1] != Idx))
5113       return false;
5114     Idx += 1;
5115   }
5116
5117   return true;
5118 }
5119
5120 /// isUZP_v_undef_Mask - Special case of isUZPMask for canonical form of
5121 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5122 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>,
5123 static bool isUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5124   unsigned Half = VT.getVectorNumElements() / 2;
5125   WhichResult = (M[0] == 0 ? 0 : 1);
5126   for (unsigned j = 0; j != 2; ++j) {
5127     unsigned Idx = WhichResult;
5128     for (unsigned i = 0; i != Half; ++i) {
5129       int MIdx = M[i + j * Half];
5130       if (MIdx >= 0 && (unsigned)MIdx != Idx)
5131         return false;
5132       Idx += 2;
5133     }
5134   }
5135
5136   return true;
5137 }
5138
5139 /// isTRN_v_undef_Mask - Special case of isTRNMask for canonical form of
5140 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef".
5141 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>.
5142 static bool isTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) {
5143   unsigned NumElts = VT.getVectorNumElements();
5144   WhichResult = (M[0] == 0 ? 0 : 1);
5145   for (unsigned i = 0; i < NumElts; i += 2) {
5146     if ((M[i] >= 0 && (unsigned)M[i] != i + WhichResult) ||
5147         (M[i + 1] >= 0 && (unsigned)M[i + 1] != i + WhichResult))
5148       return false;
5149   }
5150   return true;
5151 }
5152
5153 static bool isINSMask(ArrayRef<int> M, int NumInputElements,
5154                       bool &DstIsLeft, int &Anomaly) {
5155   if (M.size() != static_cast<size_t>(NumInputElements))
5156     return false;
5157
5158   int NumLHSMatch = 0, NumRHSMatch = 0;
5159   int LastLHSMismatch = -1, LastRHSMismatch = -1;
5160
5161   for (int i = 0; i < NumInputElements; ++i) {
5162     if (M[i] == -1) {
5163       ++NumLHSMatch;
5164       ++NumRHSMatch;
5165       continue;
5166     }
5167
5168     if (M[i] == i)
5169       ++NumLHSMatch;
5170     else
5171       LastLHSMismatch = i;
5172
5173     if (M[i] == i + NumInputElements)
5174       ++NumRHSMatch;
5175     else
5176       LastRHSMismatch = i;
5177   }
5178
5179   if (NumLHSMatch == NumInputElements - 1) {
5180     DstIsLeft = true;
5181     Anomaly = LastLHSMismatch;
5182     return true;
5183   } else if (NumRHSMatch == NumInputElements - 1) {
5184     DstIsLeft = false;
5185     Anomaly = LastRHSMismatch;
5186     return true;
5187   }
5188
5189   return false;
5190 }
5191
5192 static bool isConcatMask(ArrayRef<int> Mask, EVT VT, bool SplitLHS) {
5193   if (VT.getSizeInBits() != 128)
5194     return false;
5195
5196   unsigned NumElts = VT.getVectorNumElements();
5197
5198   for (int I = 0, E = NumElts / 2; I != E; I++) {
5199     if (Mask[I] != I)
5200       return false;
5201   }
5202
5203   int Offset = NumElts / 2;
5204   for (int I = NumElts / 2, E = NumElts; I != E; I++) {
5205     if (Mask[I] != I + SplitLHS * Offset)
5206       return false;
5207   }
5208
5209   return true;
5210 }
5211
5212 static SDValue tryFormConcatFromShuffle(SDValue Op, SelectionDAG &DAG) {
5213   SDLoc DL(Op);
5214   EVT VT = Op.getValueType();
5215   SDValue V0 = Op.getOperand(0);
5216   SDValue V1 = Op.getOperand(1);
5217   ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Op)->getMask();
5218
5219   if (VT.getVectorElementType() != V0.getValueType().getVectorElementType() ||
5220       VT.getVectorElementType() != V1.getValueType().getVectorElementType())
5221     return SDValue();
5222
5223   bool SplitV0 = V0.getValueType().getSizeInBits() == 128;
5224
5225   if (!isConcatMask(Mask, VT, SplitV0))
5226     return SDValue();
5227
5228   EVT CastVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
5229                                 VT.getVectorNumElements() / 2);
5230   if (SplitV0) {
5231     V0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, CastVT, V0,
5232                      DAG.getConstant(0, DL, MVT::i64));
5233   }
5234   if (V1.getValueType().getSizeInBits() == 128) {
5235     V1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, CastVT, V1,
5236                      DAG.getConstant(0, DL, MVT::i64));
5237   }
5238   return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, V0, V1);
5239 }
5240
5241 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit
5242 /// the specified operations to build the shuffle.
5243 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS,
5244                                       SDValue RHS, SelectionDAG &DAG,
5245                                       SDLoc dl) {
5246   unsigned OpNum = (PFEntry >> 26) & 0x0F;
5247   unsigned LHSID = (PFEntry >> 13) & ((1 << 13) - 1);
5248   unsigned RHSID = (PFEntry >> 0) & ((1 << 13) - 1);
5249
5250   enum {
5251     OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3>
5252     OP_VREV,
5253     OP_VDUP0,
5254     OP_VDUP1,
5255     OP_VDUP2,
5256     OP_VDUP3,
5257     OP_VEXT1,
5258     OP_VEXT2,
5259     OP_VEXT3,
5260     OP_VUZPL, // VUZP, left result
5261     OP_VUZPR, // VUZP, right result
5262     OP_VZIPL, // VZIP, left result
5263     OP_VZIPR, // VZIP, right result
5264     OP_VTRNL, // VTRN, left result
5265     OP_VTRNR  // VTRN, right result
5266   };
5267
5268   if (OpNum == OP_COPY) {
5269     if (LHSID == (1 * 9 + 2) * 9 + 3)
5270       return LHS;
5271     assert(LHSID == ((4 * 9 + 5) * 9 + 6) * 9 + 7 && "Illegal OP_COPY!");
5272     return RHS;
5273   }
5274
5275   SDValue OpLHS, OpRHS;
5276   OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl);
5277   OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl);
5278   EVT VT = OpLHS.getValueType();
5279
5280   switch (OpNum) {
5281   default:
5282     llvm_unreachable("Unknown shuffle opcode!");
5283   case OP_VREV:
5284     // VREV divides the vector in half and swaps within the half.
5285     if (VT.getVectorElementType() == MVT::i32 ||
5286         VT.getVectorElementType() == MVT::f32)
5287       return DAG.getNode(AArch64ISD::REV64, dl, VT, OpLHS);
5288     // vrev <4 x i16> -> REV32
5289     if (VT.getVectorElementType() == MVT::i16 ||
5290         VT.getVectorElementType() == MVT::f16)
5291       return DAG.getNode(AArch64ISD::REV32, dl, VT, OpLHS);
5292     // vrev <4 x i8> -> REV16
5293     assert(VT.getVectorElementType() == MVT::i8);
5294     return DAG.getNode(AArch64ISD::REV16, dl, VT, OpLHS);
5295   case OP_VDUP0:
5296   case OP_VDUP1:
5297   case OP_VDUP2:
5298   case OP_VDUP3: {
5299     EVT EltTy = VT.getVectorElementType();
5300     unsigned Opcode;
5301     if (EltTy == MVT::i8)
5302       Opcode = AArch64ISD::DUPLANE8;
5303     else if (EltTy == MVT::i16 || EltTy == MVT::f16)
5304       Opcode = AArch64ISD::DUPLANE16;
5305     else if (EltTy == MVT::i32 || EltTy == MVT::f32)
5306       Opcode = AArch64ISD::DUPLANE32;
5307     else if (EltTy == MVT::i64 || EltTy == MVT::f64)
5308       Opcode = AArch64ISD::DUPLANE64;
5309     else
5310       llvm_unreachable("Invalid vector element type?");
5311
5312     if (VT.getSizeInBits() == 64)
5313       OpLHS = WidenVector(OpLHS, DAG);
5314     SDValue Lane = DAG.getConstant(OpNum - OP_VDUP0, dl, MVT::i64);
5315     return DAG.getNode(Opcode, dl, VT, OpLHS, Lane);
5316   }
5317   case OP_VEXT1:
5318   case OP_VEXT2:
5319   case OP_VEXT3: {
5320     unsigned Imm = (OpNum - OP_VEXT1 + 1) * getExtFactor(OpLHS);
5321     return DAG.getNode(AArch64ISD::EXT, dl, VT, OpLHS, OpRHS,
5322                        DAG.getConstant(Imm, dl, MVT::i32));
5323   }
5324   case OP_VUZPL:
5325     return DAG.getNode(AArch64ISD::UZP1, dl, DAG.getVTList(VT, VT), OpLHS,
5326                        OpRHS);
5327   case OP_VUZPR:
5328     return DAG.getNode(AArch64ISD::UZP2, dl, DAG.getVTList(VT, VT), OpLHS,
5329                        OpRHS);
5330   case OP_VZIPL:
5331     return DAG.getNode(AArch64ISD::ZIP1, dl, DAG.getVTList(VT, VT), OpLHS,
5332                        OpRHS);
5333   case OP_VZIPR:
5334     return DAG.getNode(AArch64ISD::ZIP2, dl, DAG.getVTList(VT, VT), OpLHS,
5335                        OpRHS);
5336   case OP_VTRNL:
5337     return DAG.getNode(AArch64ISD::TRN1, dl, DAG.getVTList(VT, VT), OpLHS,
5338                        OpRHS);
5339   case OP_VTRNR:
5340     return DAG.getNode(AArch64ISD::TRN2, dl, DAG.getVTList(VT, VT), OpLHS,
5341                        OpRHS);
5342   }
5343 }
5344
5345 static SDValue GenerateTBL(SDValue Op, ArrayRef<int> ShuffleMask,
5346                            SelectionDAG &DAG) {
5347   // Check to see if we can use the TBL instruction.
5348   SDValue V1 = Op.getOperand(0);
5349   SDValue V2 = Op.getOperand(1);
5350   SDLoc DL(Op);
5351
5352   EVT EltVT = Op.getValueType().getVectorElementType();
5353   unsigned BytesPerElt = EltVT.getSizeInBits() / 8;
5354
5355   SmallVector<SDValue, 8> TBLMask;
5356   for (int Val : ShuffleMask) {
5357     for (unsigned Byte = 0; Byte < BytesPerElt; ++Byte) {
5358       unsigned Offset = Byte + Val * BytesPerElt;
5359       TBLMask.push_back(DAG.getConstant(Offset, DL, MVT::i32));
5360     }
5361   }
5362
5363   MVT IndexVT = MVT::v8i8;
5364   unsigned IndexLen = 8;
5365   if (Op.getValueType().getSizeInBits() == 128) {
5366     IndexVT = MVT::v16i8;
5367     IndexLen = 16;
5368   }
5369
5370   SDValue V1Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V1);
5371   SDValue V2Cst = DAG.getNode(ISD::BITCAST, DL, IndexVT, V2);
5372
5373   SDValue Shuffle;
5374   if (V2.getNode()->getOpcode() == ISD::UNDEF) {
5375     if (IndexLen == 8)
5376       V1Cst = DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v16i8, V1Cst, V1Cst);
5377     Shuffle = DAG.getNode(
5378         ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
5379         DAG.getConstant(Intrinsic::aarch64_neon_tbl1, DL, MVT::i32), V1Cst,
5380         DAG.getNode(ISD::BUILD_VECTOR, DL, IndexVT,
5381                     makeArrayRef(TBLMask.data(), IndexLen)));
5382   } else {
5383     if (IndexLen == 8) {
5384       V1Cst = DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v16i8, V1Cst, V2Cst);
5385       Shuffle = DAG.getNode(
5386           ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
5387           DAG.getConstant(Intrinsic::aarch64_neon_tbl1, DL, MVT::i32), V1Cst,
5388           DAG.getNode(ISD::BUILD_VECTOR, DL, IndexVT,
5389                       makeArrayRef(TBLMask.data(), IndexLen)));
5390     } else {
5391       // FIXME: We cannot, for the moment, emit a TBL2 instruction because we
5392       // cannot currently represent the register constraints on the input
5393       // table registers.
5394       //  Shuffle = DAG.getNode(AArch64ISD::TBL2, DL, IndexVT, V1Cst, V2Cst,
5395       //                   DAG.getNode(ISD::BUILD_VECTOR, DL, IndexVT,
5396       //                               &TBLMask[0], IndexLen));
5397       Shuffle = DAG.getNode(
5398           ISD::INTRINSIC_WO_CHAIN, DL, IndexVT,
5399           DAG.getConstant(Intrinsic::aarch64_neon_tbl2, DL, MVT::i32),
5400           V1Cst, V2Cst,
5401           DAG.getNode(ISD::BUILD_VECTOR, DL, IndexVT,
5402                       makeArrayRef(TBLMask.data(), IndexLen)));
5403     }
5404   }
5405   return DAG.getNode(ISD::BITCAST, DL, Op.getValueType(), Shuffle);
5406 }
5407
5408 static unsigned getDUPLANEOp(EVT EltType) {
5409   if (EltType == MVT::i8)
5410     return AArch64ISD::DUPLANE8;
5411   if (EltType == MVT::i16 || EltType == MVT::f16)
5412     return AArch64ISD::DUPLANE16;
5413   if (EltType == MVT::i32 || EltType == MVT::f32)
5414     return AArch64ISD::DUPLANE32;
5415   if (EltType == MVT::i64 || EltType == MVT::f64)
5416     return AArch64ISD::DUPLANE64;
5417
5418   llvm_unreachable("Invalid vector element type?");
5419 }
5420
5421 SDValue AArch64TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
5422                                                    SelectionDAG &DAG) const {
5423   SDLoc dl(Op);
5424   EVT VT = Op.getValueType();
5425
5426   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
5427
5428   // Convert shuffles that are directly supported on NEON to target-specific
5429   // DAG nodes, instead of keeping them as shuffles and matching them again
5430   // during code selection.  This is more efficient and avoids the possibility
5431   // of inconsistencies between legalization and selection.
5432   ArrayRef<int> ShuffleMask = SVN->getMask();
5433
5434   SDValue V1 = Op.getOperand(0);
5435   SDValue V2 = Op.getOperand(1);
5436
5437   if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0],
5438                                        V1.getValueType().getSimpleVT())) {
5439     int Lane = SVN->getSplatIndex();
5440     // If this is undef splat, generate it via "just" vdup, if possible.
5441     if (Lane == -1)
5442       Lane = 0;
5443
5444     if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR)
5445       return DAG.getNode(AArch64ISD::DUP, dl, V1.getValueType(),
5446                          V1.getOperand(0));
5447     // Test if V1 is a BUILD_VECTOR and the lane being referenced is a non-
5448     // constant. If so, we can just reference the lane's definition directly.
5449     if (V1.getOpcode() == ISD::BUILD_VECTOR &&
5450         !isa<ConstantSDNode>(V1.getOperand(Lane)))
5451       return DAG.getNode(AArch64ISD::DUP, dl, VT, V1.getOperand(Lane));
5452
5453     // Otherwise, duplicate from the lane of the input vector.
5454     unsigned Opcode = getDUPLANEOp(V1.getValueType().getVectorElementType());
5455
5456     // SelectionDAGBuilder may have "helpfully" already extracted or conatenated
5457     // to make a vector of the same size as this SHUFFLE. We can ignore the
5458     // extract entirely, and canonicalise the concat using WidenVector.
5459     if (V1.getOpcode() == ISD::EXTRACT_SUBVECTOR) {
5460       Lane += cast<ConstantSDNode>(V1.getOperand(1))->getZExtValue();
5461       V1 = V1.getOperand(0);
5462     } else if (V1.getOpcode() == ISD::CONCAT_VECTORS) {
5463       unsigned Idx = Lane >= (int)VT.getVectorNumElements() / 2;
5464       Lane -= Idx * VT.getVectorNumElements() / 2;
5465       V1 = WidenVector(V1.getOperand(Idx), DAG);
5466     } else if (VT.getSizeInBits() == 64)
5467       V1 = WidenVector(V1, DAG);
5468
5469     return DAG.getNode(Opcode, dl, VT, V1, DAG.getConstant(Lane, dl, MVT::i64));
5470   }
5471
5472   if (isREVMask(ShuffleMask, VT, 64))
5473     return DAG.getNode(AArch64ISD::REV64, dl, V1.getValueType(), V1, V2);
5474   if (isREVMask(ShuffleMask, VT, 32))
5475     return DAG.getNode(AArch64ISD::REV32, dl, V1.getValueType(), V1, V2);
5476   if (isREVMask(ShuffleMask, VT, 16))
5477     return DAG.getNode(AArch64ISD::REV16, dl, V1.getValueType(), V1, V2);
5478
5479   bool ReverseEXT = false;
5480   unsigned Imm;
5481   if (isEXTMask(ShuffleMask, VT, ReverseEXT, Imm)) {
5482     if (ReverseEXT)
5483       std::swap(V1, V2);
5484     Imm *= getExtFactor(V1);
5485     return DAG.getNode(AArch64ISD::EXT, dl, V1.getValueType(), V1, V2,
5486                        DAG.getConstant(Imm, dl, MVT::i32));
5487   } else if (V2->getOpcode() == ISD::UNDEF &&
5488              isSingletonEXTMask(ShuffleMask, VT, Imm)) {
5489     Imm *= getExtFactor(V1);
5490     return DAG.getNode(AArch64ISD::EXT, dl, V1.getValueType(), V1, V1,
5491                        DAG.getConstant(Imm, dl, MVT::i32));
5492   }
5493
5494   unsigned WhichResult;
5495   if (isZIPMask(ShuffleMask, VT, WhichResult)) {
5496     unsigned Opc = (WhichResult == 0) ? AArch64ISD::ZIP1 : AArch64ISD::ZIP2;
5497     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
5498   }
5499   if (isUZPMask(ShuffleMask, VT, WhichResult)) {
5500     unsigned Opc = (WhichResult == 0) ? AArch64ISD::UZP1 : AArch64ISD::UZP2;
5501     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
5502   }
5503   if (isTRNMask(ShuffleMask, VT, WhichResult)) {
5504     unsigned Opc = (WhichResult == 0) ? AArch64ISD::TRN1 : AArch64ISD::TRN2;
5505     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V2);
5506   }
5507
5508   if (isZIP_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
5509     unsigned Opc = (WhichResult == 0) ? AArch64ISD::ZIP1 : AArch64ISD::ZIP2;
5510     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
5511   }
5512   if (isUZP_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
5513     unsigned Opc = (WhichResult == 0) ? AArch64ISD::UZP1 : AArch64ISD::UZP2;
5514     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
5515   }
5516   if (isTRN_v_undef_Mask(ShuffleMask, VT, WhichResult)) {
5517     unsigned Opc = (WhichResult == 0) ? AArch64ISD::TRN1 : AArch64ISD::TRN2;
5518     return DAG.getNode(Opc, dl, V1.getValueType(), V1, V1);
5519   }
5520
5521   SDValue Concat = tryFormConcatFromShuffle(Op, DAG);
5522   if (Concat.getNode())
5523     return Concat;
5524
5525   bool DstIsLeft;
5526   int Anomaly;
5527   int NumInputElements = V1.getValueType().getVectorNumElements();
5528   if (isINSMask(ShuffleMask, NumInputElements, DstIsLeft, Anomaly)) {
5529     SDValue DstVec = DstIsLeft ? V1 : V2;
5530     SDValue DstLaneV = DAG.getConstant(Anomaly, dl, MVT::i64);
5531
5532     SDValue SrcVec = V1;
5533     int SrcLane = ShuffleMask[Anomaly];
5534     if (SrcLane >= NumInputElements) {
5535       SrcVec = V2;
5536       SrcLane -= VT.getVectorNumElements();
5537     }
5538     SDValue SrcLaneV = DAG.getConstant(SrcLane, dl, MVT::i64);
5539
5540     EVT ScalarVT = VT.getVectorElementType();
5541
5542     if (ScalarVT.getSizeInBits() < 32 && ScalarVT.isInteger())
5543       ScalarVT = MVT::i32;
5544
5545     return DAG.getNode(
5546         ISD::INSERT_VECTOR_ELT, dl, VT, DstVec,
5547         DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ScalarVT, SrcVec, SrcLaneV),
5548         DstLaneV);
5549   }
5550
5551   // If the shuffle is not directly supported and it has 4 elements, use
5552   // the PerfectShuffle-generated table to synthesize it from other shuffles.
5553   unsigned NumElts = VT.getVectorNumElements();
5554   if (NumElts == 4) {
5555     unsigned PFIndexes[4];
5556     for (unsigned i = 0; i != 4; ++i) {
5557       if (ShuffleMask[i] < 0)
5558         PFIndexes[i] = 8;
5559       else
5560         PFIndexes[i] = ShuffleMask[i];
5561     }
5562
5563     // Compute the index in the perfect shuffle table.
5564     unsigned PFTableIndex = PFIndexes[0] * 9 * 9 * 9 + PFIndexes[1] * 9 * 9 +
5565                             PFIndexes[2] * 9 + PFIndexes[3];
5566     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
5567     unsigned Cost = (PFEntry >> 30);
5568
5569     if (Cost <= 4)
5570       return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl);
5571   }
5572
5573   return GenerateTBL(Op, ShuffleMask, DAG);
5574 }
5575
5576 static bool resolveBuildVector(BuildVectorSDNode *BVN, APInt &CnstBits,
5577                                APInt &UndefBits) {
5578   EVT VT = BVN->getValueType(0);
5579   APInt SplatBits, SplatUndef;
5580   unsigned SplatBitSize;
5581   bool HasAnyUndefs;
5582   if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) {
5583     unsigned NumSplats = VT.getSizeInBits() / SplatBitSize;
5584
5585     for (unsigned i = 0; i < NumSplats; ++i) {
5586       CnstBits <<= SplatBitSize;
5587       UndefBits <<= SplatBitSize;
5588       CnstBits |= SplatBits.zextOrTrunc(VT.getSizeInBits());
5589       UndefBits |= (SplatBits ^ SplatUndef).zextOrTrunc(VT.getSizeInBits());
5590     }
5591
5592     return true;
5593   }
5594
5595   return false;
5596 }
5597
5598 SDValue AArch64TargetLowering::LowerVectorAND(SDValue Op,
5599                                               SelectionDAG &DAG) const {
5600   BuildVectorSDNode *BVN =
5601       dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode());
5602   SDValue LHS = Op.getOperand(0);
5603   SDLoc dl(Op);
5604   EVT VT = Op.getValueType();
5605
5606   if (!BVN)
5607     return Op;
5608
5609   APInt CnstBits(VT.getSizeInBits(), 0);
5610   APInt UndefBits(VT.getSizeInBits(), 0);
5611   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
5612     // We only have BIC vector immediate instruction, which is and-not.
5613     CnstBits = ~CnstBits;
5614
5615     // We make use of a little bit of goto ickiness in order to avoid having to
5616     // duplicate the immediate matching logic for the undef toggled case.
5617     bool SecondTry = false;
5618   AttemptModImm:
5619
5620     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
5621       CnstBits = CnstBits.zextOrTrunc(64);
5622       uint64_t CnstVal = CnstBits.getZExtValue();
5623
5624       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
5625         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
5626         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5627         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
5628                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5629                                   DAG.getConstant(0, dl, MVT::i32));
5630         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5631       }
5632
5633       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
5634         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
5635         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5636         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
5637                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5638                                   DAG.getConstant(8, dl, MVT::i32));
5639         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5640       }
5641
5642       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
5643         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
5644         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5645         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
5646                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5647                                   DAG.getConstant(16, dl, MVT::i32));
5648         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5649       }
5650
5651       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
5652         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
5653         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5654         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
5655                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5656                                   DAG.getConstant(24, dl, MVT::i32));
5657         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5658       }
5659
5660       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
5661         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
5662         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5663         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
5664                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5665                                   DAG.getConstant(0, dl, MVT::i32));
5666         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5667       }
5668
5669       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
5670         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
5671         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5672         SDValue Mov = DAG.getNode(AArch64ISD::BICi, dl, MovTy, LHS,
5673                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5674                                   DAG.getConstant(8, dl, MVT::i32));
5675         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5676       }
5677     }
5678
5679     if (SecondTry)
5680       goto FailedModImm;
5681     SecondTry = true;
5682     CnstBits = ~UndefBits;
5683     goto AttemptModImm;
5684   }
5685
5686 // We can always fall back to a non-immediate AND.
5687 FailedModImm:
5688   return Op;
5689 }
5690
5691 // Specialized code to quickly find if PotentialBVec is a BuildVector that
5692 // consists of only the same constant int value, returned in reference arg
5693 // ConstVal
5694 static bool isAllConstantBuildVector(const SDValue &PotentialBVec,
5695                                      uint64_t &ConstVal) {
5696   BuildVectorSDNode *Bvec = dyn_cast<BuildVectorSDNode>(PotentialBVec);
5697   if (!Bvec)
5698     return false;
5699   ConstantSDNode *FirstElt = dyn_cast<ConstantSDNode>(Bvec->getOperand(0));
5700   if (!FirstElt)
5701     return false;
5702   EVT VT = Bvec->getValueType(0);
5703   unsigned NumElts = VT.getVectorNumElements();
5704   for (unsigned i = 1; i < NumElts; ++i)
5705     if (dyn_cast<ConstantSDNode>(Bvec->getOperand(i)) != FirstElt)
5706       return false;
5707   ConstVal = FirstElt->getZExtValue();
5708   return true;
5709 }
5710
5711 static unsigned getIntrinsicID(const SDNode *N) {
5712   unsigned Opcode = N->getOpcode();
5713   switch (Opcode) {
5714   default:
5715     return Intrinsic::not_intrinsic;
5716   case ISD::INTRINSIC_WO_CHAIN: {
5717     unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue();
5718     if (IID < Intrinsic::num_intrinsics)
5719       return IID;
5720     return Intrinsic::not_intrinsic;
5721   }
5722   }
5723 }
5724
5725 // Attempt to form a vector S[LR]I from (or (and X, BvecC1), (lsl Y, C2)),
5726 // to (SLI X, Y, C2), where X and Y have matching vector types, BvecC1 is a
5727 // BUILD_VECTORs with constant element C1, C2 is a constant, and C1 == ~C2.
5728 // Also, logical shift right -> sri, with the same structure.
5729 static SDValue tryLowerToSLI(SDNode *N, SelectionDAG &DAG) {
5730   EVT VT = N->getValueType(0);
5731
5732   if (!VT.isVector())
5733     return SDValue();
5734
5735   SDLoc DL(N);
5736
5737   // Is the first op an AND?
5738   const SDValue And = N->getOperand(0);
5739   if (And.getOpcode() != ISD::AND)
5740     return SDValue();
5741
5742   // Is the second op an shl or lshr?
5743   SDValue Shift = N->getOperand(1);
5744   // This will have been turned into: AArch64ISD::VSHL vector, #shift
5745   // or AArch64ISD::VLSHR vector, #shift
5746   unsigned ShiftOpc = Shift.getOpcode();
5747   if ((ShiftOpc != AArch64ISD::VSHL && ShiftOpc != AArch64ISD::VLSHR))
5748     return SDValue();
5749   bool IsShiftRight = ShiftOpc == AArch64ISD::VLSHR;
5750
5751   // Is the shift amount constant?
5752   ConstantSDNode *C2node = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
5753   if (!C2node)
5754     return SDValue();
5755
5756   // Is the and mask vector all constant?
5757   uint64_t C1;
5758   if (!isAllConstantBuildVector(And.getOperand(1), C1))
5759     return SDValue();
5760
5761   // Is C1 == ~C2, taking into account how much one can shift elements of a
5762   // particular size?
5763   uint64_t C2 = C2node->getZExtValue();
5764   unsigned ElemSizeInBits = VT.getVectorElementType().getSizeInBits();
5765   if (C2 > ElemSizeInBits)
5766     return SDValue();
5767   unsigned ElemMask = (1 << ElemSizeInBits) - 1;
5768   if ((C1 & ElemMask) != (~C2 & ElemMask))
5769     return SDValue();
5770
5771   SDValue X = And.getOperand(0);
5772   SDValue Y = Shift.getOperand(0);
5773
5774   unsigned Intrin =
5775       IsShiftRight ? Intrinsic::aarch64_neon_vsri : Intrinsic::aarch64_neon_vsli;
5776   SDValue ResultSLI =
5777       DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
5778                   DAG.getConstant(Intrin, DL, MVT::i32), X, Y,
5779                   Shift.getOperand(1));
5780
5781   DEBUG(dbgs() << "aarch64-lower: transformed: \n");
5782   DEBUG(N->dump(&DAG));
5783   DEBUG(dbgs() << "into: \n");
5784   DEBUG(ResultSLI->dump(&DAG));
5785
5786   ++NumShiftInserts;
5787   return ResultSLI;
5788 }
5789
5790 SDValue AArch64TargetLowering::LowerVectorOR(SDValue Op,
5791                                              SelectionDAG &DAG) const {
5792   // Attempt to form a vector S[LR]I from (or (and X, C1), (lsl Y, C2))
5793   if (EnableAArch64SlrGeneration) {
5794     SDValue Res = tryLowerToSLI(Op.getNode(), DAG);
5795     if (Res.getNode())
5796       return Res;
5797   }
5798
5799   BuildVectorSDNode *BVN =
5800       dyn_cast<BuildVectorSDNode>(Op.getOperand(0).getNode());
5801   SDValue LHS = Op.getOperand(1);
5802   SDLoc dl(Op);
5803   EVT VT = Op.getValueType();
5804
5805   // OR commutes, so try swapping the operands.
5806   if (!BVN) {
5807     LHS = Op.getOperand(0);
5808     BVN = dyn_cast<BuildVectorSDNode>(Op.getOperand(1).getNode());
5809   }
5810   if (!BVN)
5811     return Op;
5812
5813   APInt CnstBits(VT.getSizeInBits(), 0);
5814   APInt UndefBits(VT.getSizeInBits(), 0);
5815   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
5816     // We make use of a little bit of goto ickiness in order to avoid having to
5817     // duplicate the immediate matching logic for the undef toggled case.
5818     bool SecondTry = false;
5819   AttemptModImm:
5820
5821     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
5822       CnstBits = CnstBits.zextOrTrunc(64);
5823       uint64_t CnstVal = CnstBits.getZExtValue();
5824
5825       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
5826         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
5827         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5828         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5829                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5830                                   DAG.getConstant(0, dl, MVT::i32));
5831         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5832       }
5833
5834       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
5835         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
5836         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5837         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5838                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5839                                   DAG.getConstant(8, dl, MVT::i32));
5840         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5841       }
5842
5843       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
5844         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
5845         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5846         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5847                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5848                                   DAG.getConstant(16, dl, MVT::i32));
5849         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5850       }
5851
5852       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
5853         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
5854         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5855         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5856                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5857                                   DAG.getConstant(24, dl, MVT::i32));
5858         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5859       }
5860
5861       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
5862         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
5863         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5864         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5865                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5866                                   DAG.getConstant(0, dl, MVT::i32));
5867         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5868       }
5869
5870       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
5871         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
5872         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5873         SDValue Mov = DAG.getNode(AArch64ISD::ORRi, dl, MovTy, LHS,
5874                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5875                                   DAG.getConstant(8, dl, MVT::i32));
5876         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5877       }
5878     }
5879
5880     if (SecondTry)
5881       goto FailedModImm;
5882     SecondTry = true;
5883     CnstBits = UndefBits;
5884     goto AttemptModImm;
5885   }
5886
5887 // We can always fall back to a non-immediate OR.
5888 FailedModImm:
5889   return Op;
5890 }
5891
5892 // Normalize the operands of BUILD_VECTOR. The value of constant operands will
5893 // be truncated to fit element width.
5894 static SDValue NormalizeBuildVector(SDValue Op,
5895                                     SelectionDAG &DAG) {
5896   assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!");
5897   SDLoc dl(Op);
5898   EVT VT = Op.getValueType();
5899   EVT EltTy= VT.getVectorElementType();
5900
5901   if (EltTy.isFloatingPoint() || EltTy.getSizeInBits() > 16)
5902     return Op;
5903
5904   SmallVector<SDValue, 16> Ops;
5905   for (SDValue Lane : Op->ops()) {
5906     if (auto *CstLane = dyn_cast<ConstantSDNode>(Lane)) {
5907       APInt LowBits(EltTy.getSizeInBits(),
5908                     CstLane->getZExtValue());
5909       Lane = DAG.getConstant(LowBits.getZExtValue(), dl, MVT::i32);
5910     }
5911     Ops.push_back(Lane);
5912   }
5913   return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops);
5914 }
5915
5916 SDValue AArch64TargetLowering::LowerBUILD_VECTOR(SDValue Op,
5917                                                  SelectionDAG &DAG) const {
5918   SDLoc dl(Op);
5919   EVT VT = Op.getValueType();
5920   Op = NormalizeBuildVector(Op, DAG);
5921   BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode());
5922
5923   APInt CnstBits(VT.getSizeInBits(), 0);
5924   APInt UndefBits(VT.getSizeInBits(), 0);
5925   if (resolveBuildVector(BVN, CnstBits, UndefBits)) {
5926     // We make use of a little bit of goto ickiness in order to avoid having to
5927     // duplicate the immediate matching logic for the undef toggled case.
5928     bool SecondTry = false;
5929   AttemptModImm:
5930
5931     if (CnstBits.getHiBits(64) == CnstBits.getLoBits(64)) {
5932       CnstBits = CnstBits.zextOrTrunc(64);
5933       uint64_t CnstVal = CnstBits.getZExtValue();
5934
5935       // Certain magic vector constants (used to express things like NOT
5936       // and NEG) are passed through unmodified.  This allows codegen patterns
5937       // for these operations to match.  Special-purpose patterns will lower
5938       // these immediates to MOVIs if it proves necessary.
5939       if (VT.isInteger() && (CnstVal == 0 || CnstVal == ~0ULL))
5940         return Op;
5941
5942       // The many faces of MOVI...
5943       if (AArch64_AM::isAdvSIMDModImmType10(CnstVal)) {
5944         CnstVal = AArch64_AM::encodeAdvSIMDModImmType10(CnstVal);
5945         if (VT.getSizeInBits() == 128) {
5946           SDValue Mov = DAG.getNode(AArch64ISD::MOVIedit, dl, MVT::v2i64,
5947                                     DAG.getConstant(CnstVal, dl, MVT::i32));
5948           return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5949         }
5950
5951         // Support the V64 version via subregister insertion.
5952         SDValue Mov = DAG.getNode(AArch64ISD::MOVIedit, dl, MVT::f64,
5953                                   DAG.getConstant(CnstVal, dl, MVT::i32));
5954         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5955       }
5956
5957       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
5958         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
5959         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5960         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5961                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5962                                   DAG.getConstant(0, dl, MVT::i32));
5963         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5964       }
5965
5966       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
5967         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
5968         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5969         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5970                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5971                                   DAG.getConstant(8, dl, MVT::i32));
5972         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5973       }
5974
5975       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
5976         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
5977         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5978         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5979                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5980                                   DAG.getConstant(16, dl, MVT::i32));
5981         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5982       }
5983
5984       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
5985         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
5986         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
5987         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5988                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5989                                   DAG.getConstant(24, dl, MVT::i32));
5990         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
5991       }
5992
5993       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
5994         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
5995         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
5996         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
5997                                   DAG.getConstant(CnstVal, dl, MVT::i32),
5998                                   DAG.getConstant(0, dl, MVT::i32));
5999         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6000       }
6001
6002       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6003         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6004         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6005         SDValue Mov = DAG.getNode(AArch64ISD::MOVIshift, dl, MovTy,
6006                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6007                                   DAG.getConstant(8, dl, MVT::i32));
6008         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6009       }
6010
6011       if (AArch64_AM::isAdvSIMDModImmType7(CnstVal)) {
6012         CnstVal = AArch64_AM::encodeAdvSIMDModImmType7(CnstVal);
6013         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6014         SDValue Mov = DAG.getNode(AArch64ISD::MOVImsl, dl, MovTy,
6015                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6016                                   DAG.getConstant(264, dl, MVT::i32));
6017         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6018       }
6019
6020       if (AArch64_AM::isAdvSIMDModImmType8(CnstVal)) {
6021         CnstVal = AArch64_AM::encodeAdvSIMDModImmType8(CnstVal);
6022         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6023         SDValue Mov = DAG.getNode(AArch64ISD::MOVImsl, dl, MovTy,
6024                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6025                                   DAG.getConstant(272, dl, MVT::i32));
6026         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6027       }
6028
6029       if (AArch64_AM::isAdvSIMDModImmType9(CnstVal)) {
6030         CnstVal = AArch64_AM::encodeAdvSIMDModImmType9(CnstVal);
6031         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v16i8 : MVT::v8i8;
6032         SDValue Mov = DAG.getNode(AArch64ISD::MOVI, dl, MovTy,
6033                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6034         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6035       }
6036
6037       // The few faces of FMOV...
6038       if (AArch64_AM::isAdvSIMDModImmType11(CnstVal)) {
6039         CnstVal = AArch64_AM::encodeAdvSIMDModImmType11(CnstVal);
6040         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4f32 : MVT::v2f32;
6041         SDValue Mov = DAG.getNode(AArch64ISD::FMOV, dl, MovTy,
6042                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6043         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6044       }
6045
6046       if (AArch64_AM::isAdvSIMDModImmType12(CnstVal) &&
6047           VT.getSizeInBits() == 128) {
6048         CnstVal = AArch64_AM::encodeAdvSIMDModImmType12(CnstVal);
6049         SDValue Mov = DAG.getNode(AArch64ISD::FMOV, dl, MVT::v2f64,
6050                                   DAG.getConstant(CnstVal, dl, MVT::i32));
6051         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6052       }
6053
6054       // The many faces of MVNI...
6055       CnstVal = ~CnstVal;
6056       if (AArch64_AM::isAdvSIMDModImmType1(CnstVal)) {
6057         CnstVal = AArch64_AM::encodeAdvSIMDModImmType1(CnstVal);
6058         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6059         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6060                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6061                                   DAG.getConstant(0, dl, MVT::i32));
6062         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6063       }
6064
6065       if (AArch64_AM::isAdvSIMDModImmType2(CnstVal)) {
6066         CnstVal = AArch64_AM::encodeAdvSIMDModImmType2(CnstVal);
6067         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6068         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6069                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6070                                   DAG.getConstant(8, dl, MVT::i32));
6071         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6072       }
6073
6074       if (AArch64_AM::isAdvSIMDModImmType3(CnstVal)) {
6075         CnstVal = AArch64_AM::encodeAdvSIMDModImmType3(CnstVal);
6076         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6077         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6078                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6079                                   DAG.getConstant(16, dl, MVT::i32));
6080         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6081       }
6082
6083       if (AArch64_AM::isAdvSIMDModImmType4(CnstVal)) {
6084         CnstVal = AArch64_AM::encodeAdvSIMDModImmType4(CnstVal);
6085         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6086         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6087                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6088                                   DAG.getConstant(24, dl, MVT::i32));
6089         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6090       }
6091
6092       if (AArch64_AM::isAdvSIMDModImmType5(CnstVal)) {
6093         CnstVal = AArch64_AM::encodeAdvSIMDModImmType5(CnstVal);
6094         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6095         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6096                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6097                                   DAG.getConstant(0, dl, MVT::i32));
6098         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6099       }
6100
6101       if (AArch64_AM::isAdvSIMDModImmType6(CnstVal)) {
6102         CnstVal = AArch64_AM::encodeAdvSIMDModImmType6(CnstVal);
6103         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v8i16 : MVT::v4i16;
6104         SDValue Mov = DAG.getNode(AArch64ISD::MVNIshift, dl, MovTy,
6105                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6106                                   DAG.getConstant(8, dl, MVT::i32));
6107         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6108       }
6109
6110       if (AArch64_AM::isAdvSIMDModImmType7(CnstVal)) {
6111         CnstVal = AArch64_AM::encodeAdvSIMDModImmType7(CnstVal);
6112         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6113         SDValue Mov = DAG.getNode(AArch64ISD::MVNImsl, dl, MovTy,
6114                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6115                                   DAG.getConstant(264, dl, MVT::i32));
6116         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6117       }
6118
6119       if (AArch64_AM::isAdvSIMDModImmType8(CnstVal)) {
6120         CnstVal = AArch64_AM::encodeAdvSIMDModImmType8(CnstVal);
6121         MVT MovTy = (VT.getSizeInBits() == 128) ? MVT::v4i32 : MVT::v2i32;
6122         SDValue Mov = DAG.getNode(AArch64ISD::MVNImsl, dl, MovTy,
6123                                   DAG.getConstant(CnstVal, dl, MVT::i32),
6124                                   DAG.getConstant(272, dl, MVT::i32));
6125         return DAG.getNode(AArch64ISD::NVCAST, dl, VT, Mov);
6126       }
6127     }
6128
6129     if (SecondTry)
6130       goto FailedModImm;
6131     SecondTry = true;
6132     CnstBits = UndefBits;
6133     goto AttemptModImm;
6134   }
6135 FailedModImm:
6136
6137   // Scan through the operands to find some interesting properties we can
6138   // exploit:
6139   //   1) If only one value is used, we can use a DUP, or
6140   //   2) if only the low element is not undef, we can just insert that, or
6141   //   3) if only one constant value is used (w/ some non-constant lanes),
6142   //      we can splat the constant value into the whole vector then fill
6143   //      in the non-constant lanes.
6144   //   4) FIXME: If different constant values are used, but we can intelligently
6145   //             select the values we'll be overwriting for the non-constant
6146   //             lanes such that we can directly materialize the vector
6147   //             some other way (MOVI, e.g.), we can be sneaky.
6148   unsigned NumElts = VT.getVectorNumElements();
6149   bool isOnlyLowElement = true;
6150   bool usesOnlyOneValue = true;
6151   bool usesOnlyOneConstantValue = true;
6152   bool isConstant = true;
6153   unsigned NumConstantLanes = 0;
6154   SDValue Value;
6155   SDValue ConstantValue;
6156   for (unsigned i = 0; i < NumElts; ++i) {
6157     SDValue V = Op.getOperand(i);
6158     if (V.getOpcode() == ISD::UNDEF)
6159       continue;
6160     if (i > 0)
6161       isOnlyLowElement = false;
6162     if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V))
6163       isConstant = false;
6164
6165     if (isa<ConstantSDNode>(V) || isa<ConstantFPSDNode>(V)) {
6166       ++NumConstantLanes;
6167       if (!ConstantValue.getNode())
6168         ConstantValue = V;
6169       else if (ConstantValue != V)
6170         usesOnlyOneConstantValue = false;
6171     }
6172
6173     if (!Value.getNode())
6174       Value = V;
6175     else if (V != Value)
6176       usesOnlyOneValue = false;
6177   }
6178
6179   if (!Value.getNode())
6180     return DAG.getUNDEF(VT);
6181
6182   if (isOnlyLowElement)
6183     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value);
6184
6185   // Use DUP for non-constant splats.  For f32 constant splats, reduce to
6186   // i32 and try again.
6187   if (usesOnlyOneValue) {
6188     if (!isConstant) {
6189       if (Value.getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
6190           Value.getValueType() != VT)
6191         return DAG.getNode(AArch64ISD::DUP, dl, VT, Value);
6192
6193       // This is actually a DUPLANExx operation, which keeps everything vectory.
6194
6195       // DUPLANE works on 128-bit vectors, widen it if necessary.
6196       SDValue Lane = Value.getOperand(1);
6197       Value = Value.getOperand(0);
6198       if (Value.getValueType().getSizeInBits() == 64)
6199         Value = WidenVector(Value, DAG);
6200
6201       unsigned Opcode = getDUPLANEOp(VT.getVectorElementType());
6202       return DAG.getNode(Opcode, dl, VT, Value, Lane);
6203     }
6204
6205     if (VT.getVectorElementType().isFloatingPoint()) {
6206       SmallVector<SDValue, 8> Ops;
6207       EVT EltTy = VT.getVectorElementType();
6208       assert ((EltTy == MVT::f16 || EltTy == MVT::f32 || EltTy == MVT::f64) &&
6209               "Unsupported floating-point vector type");
6210       MVT NewType = MVT::getIntegerVT(EltTy.getSizeInBits());
6211       for (unsigned i = 0; i < NumElts; ++i)
6212         Ops.push_back(DAG.getNode(ISD::BITCAST, dl, NewType, Op.getOperand(i)));
6213       EVT VecVT = EVT::getVectorVT(*DAG.getContext(), NewType, NumElts);
6214       SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops);
6215       Val = LowerBUILD_VECTOR(Val, DAG);
6216       if (Val.getNode())
6217         return DAG.getNode(ISD::BITCAST, dl, VT, Val);
6218     }
6219   }
6220
6221   // If there was only one constant value used and for more than one lane,
6222   // start by splatting that value, then replace the non-constant lanes. This
6223   // is better than the default, which will perform a separate initialization
6224   // for each lane.
6225   if (NumConstantLanes > 0 && usesOnlyOneConstantValue) {
6226     SDValue Val = DAG.getNode(AArch64ISD::DUP, dl, VT, ConstantValue);
6227     // Now insert the non-constant lanes.
6228     for (unsigned i = 0; i < NumElts; ++i) {
6229       SDValue V = Op.getOperand(i);
6230       SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i64);
6231       if (!isa<ConstantSDNode>(V) && !isa<ConstantFPSDNode>(V)) {
6232         // Note that type legalization likely mucked about with the VT of the
6233         // source operand, so we may have to convert it here before inserting.
6234         Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Val, V, LaneIdx);
6235       }
6236     }
6237     return Val;
6238   }
6239
6240   // If all elements are constants and the case above didn't get hit, fall back
6241   // to the default expansion, which will generate a load from the constant
6242   // pool.
6243   if (isConstant)
6244     return SDValue();
6245
6246   // Empirical tests suggest this is rarely worth it for vectors of length <= 2.
6247   if (NumElts >= 4) {
6248     if (SDValue shuffle = ReconstructShuffle(Op, DAG))
6249       return shuffle;
6250   }
6251
6252   // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we
6253   // know the default expansion would otherwise fall back on something even
6254   // worse. For a vector with one or two non-undef values, that's
6255   // scalar_to_vector for the elements followed by a shuffle (provided the
6256   // shuffle is valid for the target) and materialization element by element
6257   // on the stack followed by a load for everything else.
6258   if (!isConstant && !usesOnlyOneValue) {
6259     SDValue Vec = DAG.getUNDEF(VT);
6260     SDValue Op0 = Op.getOperand(0);
6261     unsigned ElemSize = VT.getVectorElementType().getSizeInBits();
6262     unsigned i = 0;
6263     // For 32 and 64 bit types, use INSERT_SUBREG for lane zero to
6264     // a) Avoid a RMW dependency on the full vector register, and
6265     // b) Allow the register coalescer to fold away the copy if the
6266     //    value is already in an S or D register.
6267     // Do not do this for UNDEF/LOAD nodes because we have better patterns
6268     // for those avoiding the SCALAR_TO_VECTOR/BUILD_VECTOR.
6269     if (Op0.getOpcode() != ISD::UNDEF && Op0.getOpcode() != ISD::LOAD &&
6270         (ElemSize == 32 || ElemSize == 64)) {
6271       unsigned SubIdx = ElemSize == 32 ? AArch64::ssub : AArch64::dsub;
6272       MachineSDNode *N =
6273           DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, dl, VT, Vec, Op0,
6274                              DAG.getTargetConstant(SubIdx, dl, MVT::i32));
6275       Vec = SDValue(N, 0);
6276       ++i;
6277     }
6278     for (; i < NumElts; ++i) {
6279       SDValue V = Op.getOperand(i);
6280       if (V.getOpcode() == ISD::UNDEF)
6281         continue;
6282       SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i64);
6283       Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx);
6284     }
6285     return Vec;
6286   }
6287
6288   // Just use the default expansion. We failed to find a better alternative.
6289   return SDValue();
6290 }
6291
6292 SDValue AArch64TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
6293                                                       SelectionDAG &DAG) const {
6294   assert(Op.getOpcode() == ISD::INSERT_VECTOR_ELT && "Unknown opcode!");
6295
6296   // Check for non-constant or out of range lane.
6297   EVT VT = Op.getOperand(0).getValueType();
6298   ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(2));
6299   if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
6300     return SDValue();
6301
6302
6303   // Insertion/extraction are legal for V128 types.
6304   if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
6305       VT == MVT::v2i64 || VT == MVT::v4f32 || VT == MVT::v2f64 ||
6306       VT == MVT::v8f16)
6307     return Op;
6308
6309   if (VT != MVT::v8i8 && VT != MVT::v4i16 && VT != MVT::v2i32 &&
6310       VT != MVT::v1i64 && VT != MVT::v2f32 && VT != MVT::v4f16)
6311     return SDValue();
6312
6313   // For V64 types, we perform insertion by expanding the value
6314   // to a V128 type and perform the insertion on that.
6315   SDLoc DL(Op);
6316   SDValue WideVec = WidenVector(Op.getOperand(0), DAG);
6317   EVT WideTy = WideVec.getValueType();
6318
6319   SDValue Node = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, WideTy, WideVec,
6320                              Op.getOperand(1), Op.getOperand(2));
6321   // Re-narrow the resultant vector.
6322   return NarrowVector(Node, DAG);
6323 }
6324
6325 SDValue
6326 AArch64TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6327                                                SelectionDAG &DAG) const {
6328   assert(Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Unknown opcode!");
6329
6330   // Check for non-constant or out of range lane.
6331   EVT VT = Op.getOperand(0).getValueType();
6332   ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(1));
6333   if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
6334     return SDValue();
6335
6336
6337   // Insertion/extraction are legal for V128 types.
6338   if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
6339       VT == MVT::v2i64 || VT == MVT::v4f32 || VT == MVT::v2f64 ||
6340       VT == MVT::v8f16)
6341     return Op;
6342
6343   if (VT != MVT::v8i8 && VT != MVT::v4i16 && VT != MVT::v2i32 &&
6344       VT != MVT::v1i64 && VT != MVT::v2f32 && VT != MVT::v4f16)
6345     return SDValue();
6346
6347   // For V64 types, we perform extraction by expanding the value
6348   // to a V128 type and perform the extraction on that.
6349   SDLoc DL(Op);
6350   SDValue WideVec = WidenVector(Op.getOperand(0), DAG);
6351   EVT WideTy = WideVec.getValueType();
6352
6353   EVT ExtrTy = WideTy.getVectorElementType();
6354   if (ExtrTy == MVT::i16 || ExtrTy == MVT::i8)
6355     ExtrTy = MVT::i32;
6356
6357   // For extractions, we just return the result directly.
6358   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ExtrTy, WideVec,
6359                      Op.getOperand(1));
6360 }
6361
6362 SDValue AArch64TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op,
6363                                                       SelectionDAG &DAG) const {
6364   EVT VT = Op.getOperand(0).getValueType();
6365   SDLoc dl(Op);
6366   // Just in case...
6367   if (!VT.isVector())
6368     return SDValue();
6369
6370   ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(1));
6371   if (!Cst)
6372     return SDValue();
6373   unsigned Val = Cst->getZExtValue();
6374
6375   unsigned Size = Op.getValueType().getSizeInBits();
6376   if (Val == 0) {
6377     switch (Size) {
6378     case 8:
6379       return DAG.getTargetExtractSubreg(AArch64::bsub, dl, Op.getValueType(),
6380                                         Op.getOperand(0));
6381     case 16:
6382       return DAG.getTargetExtractSubreg(AArch64::hsub, dl, Op.getValueType(),
6383                                         Op.getOperand(0));
6384     case 32:
6385       return DAG.getTargetExtractSubreg(AArch64::ssub, dl, Op.getValueType(),
6386                                         Op.getOperand(0));
6387     case 64:
6388       return DAG.getTargetExtractSubreg(AArch64::dsub, dl, Op.getValueType(),
6389                                         Op.getOperand(0));
6390     default:
6391       llvm_unreachable("Unexpected vector type in extract_subvector!");
6392     }
6393   }
6394   // If this is extracting the upper 64-bits of a 128-bit vector, we match
6395   // that directly.
6396   if (Size == 64 && Val * VT.getVectorElementType().getSizeInBits() == 64)
6397     return Op;
6398
6399   return SDValue();
6400 }
6401
6402 bool AArch64TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
6403                                                EVT VT) const {
6404   if (VT.getVectorNumElements() == 4 &&
6405       (VT.is128BitVector() || VT.is64BitVector())) {
6406     unsigned PFIndexes[4];
6407     for (unsigned i = 0; i != 4; ++i) {
6408       if (M[i] < 0)
6409         PFIndexes[i] = 8;
6410       else
6411         PFIndexes[i] = M[i];
6412     }
6413
6414     // Compute the index in the perfect shuffle table.
6415     unsigned PFTableIndex = PFIndexes[0] * 9 * 9 * 9 + PFIndexes[1] * 9 * 9 +
6416                             PFIndexes[2] * 9 + PFIndexes[3];
6417     unsigned PFEntry = PerfectShuffleTable[PFTableIndex];
6418     unsigned Cost = (PFEntry >> 30);
6419
6420     if (Cost <= 4)
6421       return true;
6422   }
6423
6424   bool DummyBool;
6425   int DummyInt;
6426   unsigned DummyUnsigned;
6427
6428   return (ShuffleVectorSDNode::isSplatMask(&M[0], VT) || isREVMask(M, VT, 64) ||
6429           isREVMask(M, VT, 32) || isREVMask(M, VT, 16) ||
6430           isEXTMask(M, VT, DummyBool, DummyUnsigned) ||
6431           // isTBLMask(M, VT) || // FIXME: Port TBL support from ARM.
6432           isTRNMask(M, VT, DummyUnsigned) || isUZPMask(M, VT, DummyUnsigned) ||
6433           isZIPMask(M, VT, DummyUnsigned) ||
6434           isTRN_v_undef_Mask(M, VT, DummyUnsigned) ||
6435           isUZP_v_undef_Mask(M, VT, DummyUnsigned) ||
6436           isZIP_v_undef_Mask(M, VT, DummyUnsigned) ||
6437           isINSMask(M, VT.getVectorNumElements(), DummyBool, DummyInt) ||
6438           isConcatMask(M, VT, VT.getSizeInBits() == 128));
6439 }
6440
6441 /// getVShiftImm - Check if this is a valid build_vector for the immediate
6442 /// operand of a vector shift operation, where all the elements of the
6443 /// build_vector must have the same constant integer value.
6444 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) {
6445   // Ignore bit_converts.
6446   while (Op.getOpcode() == ISD::BITCAST)
6447     Op = Op.getOperand(0);
6448   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode());
6449   APInt SplatBits, SplatUndef;
6450   unsigned SplatBitSize;
6451   bool HasAnyUndefs;
6452   if (!BVN || !BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize,
6453                                     HasAnyUndefs, ElementBits) ||
6454       SplatBitSize > ElementBits)
6455     return false;
6456   Cnt = SplatBits.getSExtValue();
6457   return true;
6458 }
6459
6460 /// isVShiftLImm - Check if this is a valid build_vector for the immediate
6461 /// operand of a vector shift left operation.  That value must be in the range:
6462 ///   0 <= Value < ElementBits for a left shift; or
6463 ///   0 <= Value <= ElementBits for a long left shift.
6464 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) {
6465   assert(VT.isVector() && "vector shift count is not a vector type");
6466   int64_t ElementBits = VT.getVectorElementType().getSizeInBits();
6467   if (!getVShiftImm(Op, ElementBits, Cnt))
6468     return false;
6469   return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
6470 }
6471
6472 /// isVShiftRImm - Check if this is a valid build_vector for the immediate
6473 /// operand of a vector shift right operation. The value must be in the range:
6474 ///   1 <= Value <= ElementBits for a right shift; or
6475 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, int64_t &Cnt) {
6476   assert(VT.isVector() && "vector shift count is not a vector type");
6477   int64_t ElementBits = VT.getVectorElementType().getSizeInBits();
6478   if (!getVShiftImm(Op, ElementBits, Cnt))
6479     return false;
6480   return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits));
6481 }
6482
6483 SDValue AArch64TargetLowering::LowerVectorSRA_SRL_SHL(SDValue Op,
6484                                                       SelectionDAG &DAG) const {
6485   EVT VT = Op.getValueType();
6486   SDLoc DL(Op);
6487   int64_t Cnt;
6488
6489   if (!Op.getOperand(1).getValueType().isVector())
6490     return Op;
6491   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
6492
6493   switch (Op.getOpcode()) {
6494   default:
6495     llvm_unreachable("unexpected shift opcode");
6496
6497   case ISD::SHL:
6498     if (isVShiftLImm(Op.getOperand(1), VT, false, Cnt) && Cnt < EltSize)
6499       return DAG.getNode(AArch64ISD::VSHL, DL, VT, Op.getOperand(0),
6500                          DAG.getConstant(Cnt, DL, MVT::i32));
6501     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
6502                        DAG.getConstant(Intrinsic::aarch64_neon_ushl, DL,
6503                                        MVT::i32),
6504                        Op.getOperand(0), Op.getOperand(1));
6505   case ISD::SRA:
6506   case ISD::SRL:
6507     // Right shift immediate
6508     if (isVShiftRImm(Op.getOperand(1), VT, false, Cnt) && Cnt < EltSize) {
6509       unsigned Opc =
6510           (Op.getOpcode() == ISD::SRA) ? AArch64ISD::VASHR : AArch64ISD::VLSHR;
6511       return DAG.getNode(Opc, DL, VT, Op.getOperand(0),
6512                          DAG.getConstant(Cnt, DL, MVT::i32));
6513     }
6514
6515     // Right shift register.  Note, there is not a shift right register
6516     // instruction, but the shift left register instruction takes a signed
6517     // value, where negative numbers specify a right shift.
6518     unsigned Opc = (Op.getOpcode() == ISD::SRA) ? Intrinsic::aarch64_neon_sshl
6519                                                 : Intrinsic::aarch64_neon_ushl;
6520     // negate the shift amount
6521     SDValue NegShift = DAG.getNode(AArch64ISD::NEG, DL, VT, Op.getOperand(1));
6522     SDValue NegShiftLeft =
6523         DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
6524                     DAG.getConstant(Opc, DL, MVT::i32), Op.getOperand(0),
6525                     NegShift);
6526     return NegShiftLeft;
6527   }
6528
6529   return SDValue();
6530 }
6531
6532 static SDValue EmitVectorComparison(SDValue LHS, SDValue RHS,
6533                                     AArch64CC::CondCode CC, bool NoNans, EVT VT,
6534                                     SDLoc dl, SelectionDAG &DAG) {
6535   EVT SrcVT = LHS.getValueType();
6536   assert(VT.getSizeInBits() == SrcVT.getSizeInBits() &&
6537          "function only supposed to emit natural comparisons");
6538
6539   BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(RHS.getNode());
6540   APInt CnstBits(VT.getSizeInBits(), 0);
6541   APInt UndefBits(VT.getSizeInBits(), 0);
6542   bool IsCnst = BVN && resolveBuildVector(BVN, CnstBits, UndefBits);
6543   bool IsZero = IsCnst && (CnstBits == 0);
6544
6545   if (SrcVT.getVectorElementType().isFloatingPoint()) {
6546     switch (CC) {
6547     default:
6548       return SDValue();
6549     case AArch64CC::NE: {
6550       SDValue Fcmeq;
6551       if (IsZero)
6552         Fcmeq = DAG.getNode(AArch64ISD::FCMEQz, dl, VT, LHS);
6553       else
6554         Fcmeq = DAG.getNode(AArch64ISD::FCMEQ, dl, VT, LHS, RHS);
6555       return DAG.getNode(AArch64ISD::NOT, dl, VT, Fcmeq);
6556     }
6557     case AArch64CC::EQ:
6558       if (IsZero)
6559         return DAG.getNode(AArch64ISD::FCMEQz, dl, VT, LHS);
6560       return DAG.getNode(AArch64ISD::FCMEQ, dl, VT, LHS, RHS);
6561     case AArch64CC::GE:
6562       if (IsZero)
6563         return DAG.getNode(AArch64ISD::FCMGEz, dl, VT, LHS);
6564       return DAG.getNode(AArch64ISD::FCMGE, dl, VT, LHS, RHS);
6565     case AArch64CC::GT:
6566       if (IsZero)
6567         return DAG.getNode(AArch64ISD::FCMGTz, dl, VT, LHS);
6568       return DAG.getNode(AArch64ISD::FCMGT, dl, VT, LHS, RHS);
6569     case AArch64CC::LS:
6570       if (IsZero)
6571         return DAG.getNode(AArch64ISD::FCMLEz, dl, VT, LHS);
6572       return DAG.getNode(AArch64ISD::FCMGE, dl, VT, RHS, LHS);
6573     case AArch64CC::LT:
6574       if (!NoNans)
6575         return SDValue();
6576     // If we ignore NaNs then we can use to the MI implementation.
6577     // Fallthrough.
6578     case AArch64CC::MI:
6579       if (IsZero)
6580         return DAG.getNode(AArch64ISD::FCMLTz, dl, VT, LHS);
6581       return DAG.getNode(AArch64ISD::FCMGT, dl, VT, RHS, LHS);
6582     }
6583   }
6584
6585   switch (CC) {
6586   default:
6587     return SDValue();
6588   case AArch64CC::NE: {
6589     SDValue Cmeq;
6590     if (IsZero)
6591       Cmeq = DAG.getNode(AArch64ISD::CMEQz, dl, VT, LHS);
6592     else
6593       Cmeq = DAG.getNode(AArch64ISD::CMEQ, dl, VT, LHS, RHS);
6594     return DAG.getNode(AArch64ISD::NOT, dl, VT, Cmeq);
6595   }
6596   case AArch64CC::EQ:
6597     if (IsZero)
6598       return DAG.getNode(AArch64ISD::CMEQz, dl, VT, LHS);
6599     return DAG.getNode(AArch64ISD::CMEQ, dl, VT, LHS, RHS);
6600   case AArch64CC::GE:
6601     if (IsZero)
6602       return DAG.getNode(AArch64ISD::CMGEz, dl, VT, LHS);
6603     return DAG.getNode(AArch64ISD::CMGE, dl, VT, LHS, RHS);
6604   case AArch64CC::GT:
6605     if (IsZero)
6606       return DAG.getNode(AArch64ISD::CMGTz, dl, VT, LHS);
6607     return DAG.getNode(AArch64ISD::CMGT, dl, VT, LHS, RHS);
6608   case AArch64CC::LE:
6609     if (IsZero)
6610       return DAG.getNode(AArch64ISD::CMLEz, dl, VT, LHS);
6611     return DAG.getNode(AArch64ISD::CMGE, dl, VT, RHS, LHS);
6612   case AArch64CC::LS:
6613     return DAG.getNode(AArch64ISD::CMHS, dl, VT, RHS, LHS);
6614   case AArch64CC::LO:
6615     return DAG.getNode(AArch64ISD::CMHI, dl, VT, RHS, LHS);
6616   case AArch64CC::LT:
6617     if (IsZero)
6618       return DAG.getNode(AArch64ISD::CMLTz, dl, VT, LHS);
6619     return DAG.getNode(AArch64ISD::CMGT, dl, VT, RHS, LHS);
6620   case AArch64CC::HI:
6621     return DAG.getNode(AArch64ISD::CMHI, dl, VT, LHS, RHS);
6622   case AArch64CC::HS:
6623     return DAG.getNode(AArch64ISD::CMHS, dl, VT, LHS, RHS);
6624   }
6625 }
6626
6627 SDValue AArch64TargetLowering::LowerVSETCC(SDValue Op,
6628                                            SelectionDAG &DAG) const {
6629   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
6630   SDValue LHS = Op.getOperand(0);
6631   SDValue RHS = Op.getOperand(1);
6632   EVT CmpVT = LHS.getValueType().changeVectorElementTypeToInteger();
6633   SDLoc dl(Op);
6634
6635   if (LHS.getValueType().getVectorElementType().isInteger()) {
6636     assert(LHS.getValueType() == RHS.getValueType());
6637     AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
6638     SDValue Cmp =
6639         EmitVectorComparison(LHS, RHS, AArch64CC, false, CmpVT, dl, DAG);
6640     return DAG.getSExtOrTrunc(Cmp, dl, Op.getValueType());
6641   }
6642
6643   assert(LHS.getValueType().getVectorElementType() == MVT::f32 ||
6644          LHS.getValueType().getVectorElementType() == MVT::f64);
6645
6646   // Unfortunately, the mapping of LLVM FP CC's onto AArch64 CC's isn't totally
6647   // clean.  Some of them require two branches to implement.
6648   AArch64CC::CondCode CC1, CC2;
6649   bool ShouldInvert;
6650   changeVectorFPCCToAArch64CC(CC, CC1, CC2, ShouldInvert);
6651
6652   bool NoNaNs = getTargetMachine().Options.NoNaNsFPMath;
6653   SDValue Cmp =
6654       EmitVectorComparison(LHS, RHS, CC1, NoNaNs, CmpVT, dl, DAG);
6655   if (!Cmp.getNode())
6656     return SDValue();
6657
6658   if (CC2 != AArch64CC::AL) {
6659     SDValue Cmp2 =
6660         EmitVectorComparison(LHS, RHS, CC2, NoNaNs, CmpVT, dl, DAG);
6661     if (!Cmp2.getNode())
6662       return SDValue();
6663
6664     Cmp = DAG.getNode(ISD::OR, dl, CmpVT, Cmp, Cmp2);
6665   }
6666
6667   Cmp = DAG.getSExtOrTrunc(Cmp, dl, Op.getValueType());
6668
6669   if (ShouldInvert)
6670     return Cmp = DAG.getNOT(dl, Cmp, Cmp.getValueType());
6671
6672   return Cmp;
6673 }
6674
6675 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as
6676 /// MemIntrinsicNodes.  The associated MachineMemOperands record the alignment
6677 /// specified in the intrinsic calls.
6678 bool AArch64TargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info,
6679                                                const CallInst &I,
6680                                                unsigned Intrinsic) const {
6681   auto &DL = I.getModule()->getDataLayout();
6682   switch (Intrinsic) {
6683   case Intrinsic::aarch64_neon_ld2:
6684   case Intrinsic::aarch64_neon_ld3:
6685   case Intrinsic::aarch64_neon_ld4:
6686   case Intrinsic::aarch64_neon_ld1x2:
6687   case Intrinsic::aarch64_neon_ld1x3:
6688   case Intrinsic::aarch64_neon_ld1x4:
6689   case Intrinsic::aarch64_neon_ld2lane:
6690   case Intrinsic::aarch64_neon_ld3lane:
6691   case Intrinsic::aarch64_neon_ld4lane:
6692   case Intrinsic::aarch64_neon_ld2r:
6693   case Intrinsic::aarch64_neon_ld3r:
6694   case Intrinsic::aarch64_neon_ld4r: {
6695     Info.opc = ISD::INTRINSIC_W_CHAIN;
6696     // Conservatively set memVT to the entire set of vectors loaded.
6697     uint64_t NumElts = DL.getTypeAllocSize(I.getType()) / 8;
6698     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
6699     Info.ptrVal = I.getArgOperand(I.getNumArgOperands() - 1);
6700     Info.offset = 0;
6701     Info.align = 0;
6702     Info.vol = false; // volatile loads with NEON intrinsics not supported
6703     Info.readMem = true;
6704     Info.writeMem = false;
6705     return true;
6706   }
6707   case Intrinsic::aarch64_neon_st2:
6708   case Intrinsic::aarch64_neon_st3:
6709   case Intrinsic::aarch64_neon_st4:
6710   case Intrinsic::aarch64_neon_st1x2:
6711   case Intrinsic::aarch64_neon_st1x3:
6712   case Intrinsic::aarch64_neon_st1x4:
6713   case Intrinsic::aarch64_neon_st2lane:
6714   case Intrinsic::aarch64_neon_st3lane:
6715   case Intrinsic::aarch64_neon_st4lane: {
6716     Info.opc = ISD::INTRINSIC_VOID;
6717     // Conservatively set memVT to the entire set of vectors stored.
6718     unsigned NumElts = 0;
6719     for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) {
6720       Type *ArgTy = I.getArgOperand(ArgI)->getType();
6721       if (!ArgTy->isVectorTy())
6722         break;
6723       NumElts += DL.getTypeAllocSize(ArgTy) / 8;
6724     }
6725     Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts);
6726     Info.ptrVal = I.getArgOperand(I.getNumArgOperands() - 1);
6727     Info.offset = 0;
6728     Info.align = 0;
6729     Info.vol = false; // volatile stores with NEON intrinsics not supported
6730     Info.readMem = false;
6731     Info.writeMem = true;
6732     return true;
6733   }
6734   case Intrinsic::aarch64_ldaxr:
6735   case Intrinsic::aarch64_ldxr: {
6736     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType());
6737     Info.opc = ISD::INTRINSIC_W_CHAIN;
6738     Info.memVT = MVT::getVT(PtrTy->getElementType());
6739     Info.ptrVal = I.getArgOperand(0);
6740     Info.offset = 0;
6741     Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
6742     Info.vol = true;
6743     Info.readMem = true;
6744     Info.writeMem = false;
6745     return true;
6746   }
6747   case Intrinsic::aarch64_stlxr:
6748   case Intrinsic::aarch64_stxr: {
6749     PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType());
6750     Info.opc = ISD::INTRINSIC_W_CHAIN;
6751     Info.memVT = MVT::getVT(PtrTy->getElementType());
6752     Info.ptrVal = I.getArgOperand(1);
6753     Info.offset = 0;
6754     Info.align = DL.getABITypeAlignment(PtrTy->getElementType());
6755     Info.vol = true;
6756     Info.readMem = false;
6757     Info.writeMem = true;
6758     return true;
6759   }
6760   case Intrinsic::aarch64_ldaxp:
6761   case Intrinsic::aarch64_ldxp: {
6762     Info.opc = ISD::INTRINSIC_W_CHAIN;
6763     Info.memVT = MVT::i128;
6764     Info.ptrVal = I.getArgOperand(0);
6765     Info.offset = 0;
6766     Info.align = 16;
6767     Info.vol = true;
6768     Info.readMem = true;
6769     Info.writeMem = false;
6770     return true;
6771   }
6772   case Intrinsic::aarch64_stlxp:
6773   case Intrinsic::aarch64_stxp: {
6774     Info.opc = ISD::INTRINSIC_W_CHAIN;
6775     Info.memVT = MVT::i128;
6776     Info.ptrVal = I.getArgOperand(2);
6777     Info.offset = 0;
6778     Info.align = 16;
6779     Info.vol = true;
6780     Info.readMem = false;
6781     Info.writeMem = true;
6782     return true;
6783   }
6784   default:
6785     break;
6786   }
6787
6788   return false;
6789 }
6790
6791 // Truncations from 64-bit GPR to 32-bit GPR is free.
6792 bool AArch64TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
6793   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
6794     return false;
6795   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6796   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
6797   return NumBits1 > NumBits2;
6798 }
6799 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
6800   if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6801     return false;
6802   unsigned NumBits1 = VT1.getSizeInBits();
6803   unsigned NumBits2 = VT2.getSizeInBits();
6804   return NumBits1 > NumBits2;
6805 }
6806
6807 /// Check if it is profitable to hoist instruction in then/else to if.
6808 /// Not profitable if I and it's user can form a FMA instruction
6809 /// because we prefer FMSUB/FMADD.
6810 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const {
6811   if (I->getOpcode() != Instruction::FMul)
6812     return true;
6813
6814   if (I->getNumUses() != 1)
6815     return true;
6816
6817   Instruction *User = I->user_back();
6818
6819   if (User &&
6820       !(User->getOpcode() == Instruction::FSub ||
6821         User->getOpcode() == Instruction::FAdd))
6822     return true;
6823
6824   const TargetOptions &Options = getTargetMachine().Options;
6825   const DataLayout &DL = I->getModule()->getDataLayout();
6826   EVT VT = getValueType(DL, User->getOperand(0)->getType());
6827
6828   if (isFMAFasterThanFMulAndFAdd(VT) &&
6829       isOperationLegalOrCustom(ISD::FMA, VT) &&
6830       (Options.AllowFPOpFusion == FPOpFusion::Fast || Options.UnsafeFPMath))
6831     return false;
6832
6833   return true;
6834 }
6835
6836 // All 32-bit GPR operations implicitly zero the high-half of the corresponding
6837 // 64-bit GPR.
6838 bool AArch64TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
6839   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
6840     return false;
6841   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6842   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
6843   return NumBits1 == 32 && NumBits2 == 64;
6844 }
6845 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
6846   if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger())
6847     return false;
6848   unsigned NumBits1 = VT1.getSizeInBits();
6849   unsigned NumBits2 = VT2.getSizeInBits();
6850   return NumBits1 == 32 && NumBits2 == 64;
6851 }
6852
6853 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
6854   EVT VT1 = Val.getValueType();
6855   if (isZExtFree(VT1, VT2)) {
6856     return true;
6857   }
6858
6859   if (Val.getOpcode() != ISD::LOAD)
6860     return false;
6861
6862   // 8-, 16-, and 32-bit integer loads all implicitly zero-extend.
6863   return (VT1.isSimple() && !VT1.isVector() && VT1.isInteger() &&
6864           VT2.isSimple() && !VT2.isVector() && VT2.isInteger() &&
6865           VT1.getSizeInBits() <= 32);
6866 }
6867
6868 bool AArch64TargetLowering::isExtFreeImpl(const Instruction *Ext) const {
6869   if (isa<FPExtInst>(Ext))
6870     return false;
6871
6872   // Vector types are next free.
6873   if (Ext->getType()->isVectorTy())
6874     return false;
6875
6876   for (const Use &U : Ext->uses()) {
6877     // The extension is free if we can fold it with a left shift in an
6878     // addressing mode or an arithmetic operation: add, sub, and cmp.
6879
6880     // Is there a shift?
6881     const Instruction *Instr = cast<Instruction>(U.getUser());
6882
6883     // Is this a constant shift?
6884     switch (Instr->getOpcode()) {
6885     case Instruction::Shl:
6886       if (!isa<ConstantInt>(Instr->getOperand(1)))
6887         return false;
6888       break;
6889     case Instruction::GetElementPtr: {
6890       gep_type_iterator GTI = gep_type_begin(Instr);
6891       auto &DL = Ext->getModule()->getDataLayout();
6892       std::advance(GTI, U.getOperandNo());
6893       Type *IdxTy = *GTI;
6894       // This extension will end up with a shift because of the scaling factor.
6895       // 8-bit sized types have a scaling factor of 1, thus a shift amount of 0.
6896       // Get the shift amount based on the scaling factor:
6897       // log2(sizeof(IdxTy)) - log2(8).
6898       uint64_t ShiftAmt =
6899           countTrailingZeros(DL.getTypeStoreSizeInBits(IdxTy)) - 3;
6900       // Is the constant foldable in the shift of the addressing mode?
6901       // I.e., shift amount is between 1 and 4 inclusive.
6902       if (ShiftAmt == 0 || ShiftAmt > 4)
6903         return false;
6904       break;
6905     }
6906     case Instruction::Trunc:
6907       // Check if this is a noop.
6908       // trunc(sext ty1 to ty2) to ty1.
6909       if (Instr->getType() == Ext->getOperand(0)->getType())
6910         continue;
6911     // FALL THROUGH.
6912     default:
6913       return false;
6914     }
6915
6916     // At this point we can use the bfm family, so this extension is free
6917     // for that use.
6918   }
6919   return true;
6920 }
6921
6922 bool AArch64TargetLowering::hasPairedLoad(Type *LoadedType,
6923                                           unsigned &RequiredAligment) const {
6924   if (!LoadedType->isIntegerTy() && !LoadedType->isFloatTy())
6925     return false;
6926   // Cyclone supports unaligned accesses.
6927   RequiredAligment = 0;
6928   unsigned NumBits = LoadedType->getPrimitiveSizeInBits();
6929   return NumBits == 32 || NumBits == 64;
6930 }
6931
6932 bool AArch64TargetLowering::hasPairedLoad(EVT LoadedType,
6933                                           unsigned &RequiredAligment) const {
6934   if (!LoadedType.isSimple() ||
6935       (!LoadedType.isInteger() && !LoadedType.isFloatingPoint()))
6936     return false;
6937   // Cyclone supports unaligned accesses.
6938   RequiredAligment = 0;
6939   unsigned NumBits = LoadedType.getSizeInBits();
6940   return NumBits == 32 || NumBits == 64;
6941 }
6942
6943 /// \brief Lower an interleaved load into a ldN intrinsic.
6944 ///
6945 /// E.g. Lower an interleaved load (Factor = 2):
6946 ///        %wide.vec = load <8 x i32>, <8 x i32>* %ptr
6947 ///        %v0 = shuffle %wide.vec, undef, <0, 2, 4, 6>  ; Extract even elements
6948 ///        %v1 = shuffle %wide.vec, undef, <1, 3, 5, 7>  ; Extract odd elements
6949 ///
6950 ///      Into:
6951 ///        %ld2 = { <4 x i32>, <4 x i32> } call llvm.aarch64.neon.ld2(%ptr)
6952 ///        %vec0 = extractelement { <4 x i32>, <4 x i32> } %ld2, i32 0
6953 ///        %vec1 = extractelement { <4 x i32>, <4 x i32> } %ld2, i32 1
6954 bool AArch64TargetLowering::lowerInterleavedLoad(
6955     LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles,
6956     ArrayRef<unsigned> Indices, unsigned Factor) const {
6957   assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
6958          "Invalid interleave factor");
6959   assert(!Shuffles.empty() && "Empty shufflevector input");
6960   assert(Shuffles.size() == Indices.size() &&
6961          "Unmatched number of shufflevectors and indices");
6962
6963   const DataLayout &DL = LI->getModule()->getDataLayout();
6964
6965   VectorType *VecTy = Shuffles[0]->getType();
6966   unsigned VecSize = DL.getTypeAllocSizeInBits(VecTy);
6967
6968   // Skip illegal vector types.
6969   if (VecSize != 64 && VecSize != 128)
6970     return false;
6971
6972   // A pointer vector can not be the return type of the ldN intrinsics. Need to
6973   // load integer vectors first and then convert to pointer vectors.
6974   Type *EltTy = VecTy->getVectorElementType();
6975   if (EltTy->isPointerTy())
6976     VecTy =
6977         VectorType::get(DL.getIntPtrType(EltTy), VecTy->getVectorNumElements());
6978
6979   Type *PtrTy = VecTy->getPointerTo(LI->getPointerAddressSpace());
6980   Type *Tys[2] = {VecTy, PtrTy};
6981   static const Intrinsic::ID LoadInts[3] = {Intrinsic::aarch64_neon_ld2,
6982                                             Intrinsic::aarch64_neon_ld3,
6983                                             Intrinsic::aarch64_neon_ld4};
6984   Function *LdNFunc =
6985       Intrinsic::getDeclaration(LI->getModule(), LoadInts[Factor - 2], Tys);
6986
6987   IRBuilder<> Builder(LI);
6988   Value *Ptr = Builder.CreateBitCast(LI->getPointerOperand(), PtrTy);
6989
6990   CallInst *LdN = Builder.CreateCall(LdNFunc, Ptr, "ldN");
6991
6992   // Replace uses of each shufflevector with the corresponding vector loaded
6993   // by ldN.
6994   for (unsigned i = 0; i < Shuffles.size(); i++) {
6995     ShuffleVectorInst *SVI = Shuffles[i];
6996     unsigned Index = Indices[i];
6997
6998     Value *SubVec = Builder.CreateExtractValue(LdN, Index);
6999
7000     // Convert the integer vector to pointer vector if the element is pointer.
7001     if (EltTy->isPointerTy())
7002       SubVec = Builder.CreateIntToPtr(SubVec, SVI->getType());
7003
7004     SVI->replaceAllUsesWith(SubVec);
7005   }
7006
7007   return true;
7008 }
7009
7010 /// \brief Get a mask consisting of sequential integers starting from \p Start.
7011 ///
7012 /// I.e. <Start, Start + 1, ..., Start + NumElts - 1>
7013 static Constant *getSequentialMask(IRBuilder<> &Builder, unsigned Start,
7014                                    unsigned NumElts) {
7015   SmallVector<Constant *, 16> Mask;
7016   for (unsigned i = 0; i < NumElts; i++)
7017     Mask.push_back(Builder.getInt32(Start + i));
7018
7019   return ConstantVector::get(Mask);
7020 }
7021
7022 /// \brief Lower an interleaved store into a stN intrinsic.
7023 ///
7024 /// E.g. Lower an interleaved store (Factor = 3):
7025 ///        %i.vec = shuffle <8 x i32> %v0, <8 x i32> %v1,
7026 ///                                  <0, 4, 8, 1, 5, 9, 2, 6, 10, 3, 7, 11>
7027 ///        store <12 x i32> %i.vec, <12 x i32>* %ptr
7028 ///
7029 ///      Into:
7030 ///        %sub.v0 = shuffle <8 x i32> %v0, <8 x i32> v1, <0, 1, 2, 3>
7031 ///        %sub.v1 = shuffle <8 x i32> %v0, <8 x i32> v1, <4, 5, 6, 7>
7032 ///        %sub.v2 = shuffle <8 x i32> %v0, <8 x i32> v1, <8, 9, 10, 11>
7033 ///        call void llvm.aarch64.neon.st3(%sub.v0, %sub.v1, %sub.v2, %ptr)
7034 ///
7035 /// Note that the new shufflevectors will be removed and we'll only generate one
7036 /// st3 instruction in CodeGen.
7037 bool AArch64TargetLowering::lowerInterleavedStore(StoreInst *SI,
7038                                                   ShuffleVectorInst *SVI,
7039                                                   unsigned Factor) const {
7040   assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() &&
7041          "Invalid interleave factor");
7042
7043   VectorType *VecTy = SVI->getType();
7044   assert(VecTy->getVectorNumElements() % Factor == 0 &&
7045          "Invalid interleaved store");
7046
7047   unsigned NumSubElts = VecTy->getVectorNumElements() / Factor;
7048   Type *EltTy = VecTy->getVectorElementType();
7049   VectorType *SubVecTy = VectorType::get(EltTy, NumSubElts);
7050
7051   const DataLayout &DL = SI->getModule()->getDataLayout();
7052   unsigned SubVecSize = DL.getTypeAllocSizeInBits(SubVecTy);
7053
7054   // Skip illegal vector types.
7055   if (SubVecSize != 64 && SubVecSize != 128)
7056     return false;
7057
7058   Value *Op0 = SVI->getOperand(0);
7059   Value *Op1 = SVI->getOperand(1);
7060   IRBuilder<> Builder(SI);
7061
7062   // StN intrinsics don't support pointer vectors as arguments. Convert pointer
7063   // vectors to integer vectors.
7064   if (EltTy->isPointerTy()) {
7065     Type *IntTy = DL.getIntPtrType(EltTy);
7066     unsigned NumOpElts =
7067         dyn_cast<VectorType>(Op0->getType())->getVectorNumElements();
7068
7069     // Convert to the corresponding integer vector.
7070     Type *IntVecTy = VectorType::get(IntTy, NumOpElts);
7071     Op0 = Builder.CreatePtrToInt(Op0, IntVecTy);
7072     Op1 = Builder.CreatePtrToInt(Op1, IntVecTy);
7073
7074     SubVecTy = VectorType::get(IntTy, NumSubElts);
7075   }
7076
7077   Type *PtrTy = SubVecTy->getPointerTo(SI->getPointerAddressSpace());
7078   Type *Tys[2] = {SubVecTy, PtrTy};
7079   static const Intrinsic::ID StoreInts[3] = {Intrinsic::aarch64_neon_st2,
7080                                              Intrinsic::aarch64_neon_st3,
7081                                              Intrinsic::aarch64_neon_st4};
7082   Function *StNFunc =
7083       Intrinsic::getDeclaration(SI->getModule(), StoreInts[Factor - 2], Tys);
7084
7085   SmallVector<Value *, 5> Ops;
7086
7087   // Split the shufflevector operands into sub vectors for the new stN call.
7088   for (unsigned i = 0; i < Factor; i++)
7089     Ops.push_back(Builder.CreateShuffleVector(
7090         Op0, Op1, getSequentialMask(Builder, NumSubElts * i, NumSubElts)));
7091
7092   Ops.push_back(Builder.CreateBitCast(SI->getPointerOperand(), PtrTy));
7093   Builder.CreateCall(StNFunc, Ops);
7094   return true;
7095 }
7096
7097 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign,
7098                        unsigned AlignCheck) {
7099   return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) &&
7100           (DstAlign == 0 || DstAlign % AlignCheck == 0));
7101 }
7102
7103 EVT AArch64TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned DstAlign,
7104                                                unsigned SrcAlign, bool IsMemset,
7105                                                bool ZeroMemset,
7106                                                bool MemcpyStrSrc,
7107                                                MachineFunction &MF) const {
7108   // Don't use AdvSIMD to implement 16-byte memset. It would have taken one
7109   // instruction to materialize the v2i64 zero and one store (with restrictive
7110   // addressing mode). Just do two i64 store of zero-registers.
7111   bool Fast;
7112   const Function *F = MF.getFunction();
7113   if (Subtarget->hasFPARMv8() && !IsMemset && Size >= 16 &&
7114       !F->hasFnAttribute(Attribute::NoImplicitFloat) &&
7115       (memOpAlign(SrcAlign, DstAlign, 16) ||
7116        (allowsMisalignedMemoryAccesses(MVT::f128, 0, 1, &Fast) && Fast)))
7117     return MVT::f128;
7118
7119   if (Size >= 8 &&
7120       (memOpAlign(SrcAlign, DstAlign, 8) ||
7121        (allowsMisalignedMemoryAccesses(MVT::i64, 0, 1, &Fast) && Fast)))
7122     return MVT::i64;
7123
7124   if (Size >= 4 &&
7125       (memOpAlign(SrcAlign, DstAlign, 4) ||
7126        (allowsMisalignedMemoryAccesses(MVT::i32, 0, 1, &Fast) && Fast)))
7127     return MVT::i32;
7128
7129   return MVT::Other;
7130 }
7131
7132 // 12-bit optionally shifted immediates are legal for adds.
7133 bool AArch64TargetLowering::isLegalAddImmediate(int64_t Immed) const {
7134   if ((Immed >> 12) == 0 || ((Immed & 0xfff) == 0 && Immed >> 24 == 0))
7135     return true;
7136   return false;
7137 }
7138
7139 // Integer comparisons are implemented with ADDS/SUBS, so the range of valid
7140 // immediates is the same as for an add or a sub.
7141 bool AArch64TargetLowering::isLegalICmpImmediate(int64_t Immed) const {
7142   if (Immed < 0)
7143     Immed *= -1;
7144   return isLegalAddImmediate(Immed);
7145 }
7146
7147 /// isLegalAddressingMode - Return true if the addressing mode represented
7148 /// by AM is legal for this target, for a load/store of the specified type.
7149 bool AArch64TargetLowering::isLegalAddressingMode(const DataLayout &DL,
7150                                                   const AddrMode &AM, Type *Ty,
7151                                                   unsigned AS) const {
7152   // AArch64 has five basic addressing modes:
7153   //  reg
7154   //  reg + 9-bit signed offset
7155   //  reg + SIZE_IN_BYTES * 12-bit unsigned offset
7156   //  reg1 + reg2
7157   //  reg + SIZE_IN_BYTES * reg
7158
7159   // No global is ever allowed as a base.
7160   if (AM.BaseGV)
7161     return false;
7162
7163   // No reg+reg+imm addressing.
7164   if (AM.HasBaseReg && AM.BaseOffs && AM.Scale)
7165     return false;
7166
7167   // check reg + imm case:
7168   // i.e., reg + 0, reg + imm9, reg + SIZE_IN_BYTES * uimm12
7169   uint64_t NumBytes = 0;
7170   if (Ty->isSized()) {
7171     uint64_t NumBits = DL.getTypeSizeInBits(Ty);
7172     NumBytes = NumBits / 8;
7173     if (!isPowerOf2_64(NumBits))
7174       NumBytes = 0;
7175   }
7176
7177   if (!AM.Scale) {
7178     int64_t Offset = AM.BaseOffs;
7179
7180     // 9-bit signed offset
7181     if (Offset >= -(1LL << 9) && Offset <= (1LL << 9) - 1)
7182       return true;
7183
7184     // 12-bit unsigned offset
7185     unsigned shift = Log2_64(NumBytes);
7186     if (NumBytes && Offset > 0 && (Offset / NumBytes) <= (1LL << 12) - 1 &&
7187         // Must be a multiple of NumBytes (NumBytes is a power of 2)
7188         (Offset >> shift) << shift == Offset)
7189       return true;
7190     return false;
7191   }
7192
7193   // Check reg1 + SIZE_IN_BYTES * reg2 and reg1 + reg2
7194
7195   if (!AM.Scale || AM.Scale == 1 ||
7196       (AM.Scale > 0 && (uint64_t)AM.Scale == NumBytes))
7197     return true;
7198   return false;
7199 }
7200
7201 int AArch64TargetLowering::getScalingFactorCost(const DataLayout &DL,
7202                                                 const AddrMode &AM, Type *Ty,
7203                                                 unsigned AS) const {
7204   // Scaling factors are not free at all.
7205   // Operands                     | Rt Latency
7206   // -------------------------------------------
7207   // Rt, [Xn, Xm]                 | 4
7208   // -------------------------------------------
7209   // Rt, [Xn, Xm, lsl #imm]       | Rn: 4 Rm: 5
7210   // Rt, [Xn, Wm, <extend> #imm]  |
7211   if (isLegalAddressingMode(DL, AM, Ty, AS))
7212     // Scale represents reg2 * scale, thus account for 1 if
7213     // it is not equal to 0 or 1.
7214     return AM.Scale != 0 && AM.Scale != 1;
7215   return -1;
7216 }
7217
7218 bool AArch64TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
7219   VT = VT.getScalarType();
7220
7221   if (!VT.isSimple())
7222     return false;
7223
7224   switch (VT.getSimpleVT().SimpleTy) {
7225   case MVT::f32:
7226   case MVT::f64:
7227     return true;
7228   default:
7229     break;
7230   }
7231
7232   return false;
7233 }
7234
7235 const MCPhysReg *
7236 AArch64TargetLowering::getScratchRegisters(CallingConv::ID) const {
7237   // LR is a callee-save register, but we must treat it as clobbered by any call
7238   // site. Hence we include LR in the scratch registers, which are in turn added
7239   // as implicit-defs for stackmaps and patchpoints.
7240   static const MCPhysReg ScratchRegs[] = {
7241     AArch64::X16, AArch64::X17, AArch64::LR, 0
7242   };
7243   return ScratchRegs;
7244 }
7245
7246 bool
7247 AArch64TargetLowering::isDesirableToCommuteWithShift(const SDNode *N) const {
7248   EVT VT = N->getValueType(0);
7249     // If N is unsigned bit extraction: ((x >> C) & mask), then do not combine
7250     // it with shift to let it be lowered to UBFX.
7251   if (N->getOpcode() == ISD::AND && (VT == MVT::i32 || VT == MVT::i64) &&
7252       isa<ConstantSDNode>(N->getOperand(1))) {
7253     uint64_t TruncMask = N->getConstantOperandVal(1);
7254     if (isMask_64(TruncMask) &&
7255       N->getOperand(0).getOpcode() == ISD::SRL &&
7256       isa<ConstantSDNode>(N->getOperand(0)->getOperand(1)))
7257       return false;
7258   }
7259   return true;
7260 }
7261
7262 bool AArch64TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
7263                                                               Type *Ty) const {
7264   assert(Ty->isIntegerTy());
7265
7266   unsigned BitSize = Ty->getPrimitiveSizeInBits();
7267   if (BitSize == 0)
7268     return false;
7269
7270   int64_t Val = Imm.getSExtValue();
7271   if (Val == 0 || AArch64_AM::isLogicalImmediate(Val, BitSize))
7272     return true;
7273
7274   if ((int64_t)Val < 0)
7275     Val = ~Val;
7276   if (BitSize == 32)
7277     Val &= (1LL << 32) - 1;
7278
7279   unsigned LZ = countLeadingZeros((uint64_t)Val);
7280   unsigned Shift = (63 - LZ) / 16;
7281   // MOVZ is free so return true for one or fewer MOVK.
7282   return Shift < 3;
7283 }
7284
7285 // Generate SUBS and CSEL for integer abs.
7286 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
7287   EVT VT = N->getValueType(0);
7288
7289   SDValue N0 = N->getOperand(0);
7290   SDValue N1 = N->getOperand(1);
7291   SDLoc DL(N);
7292
7293   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
7294   // and change it to SUB and CSEL.
7295   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
7296       N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1 &&
7297       N1.getOpcode() == ISD::SRA && N1.getOperand(0) == N0.getOperand(0))
7298     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
7299       if (Y1C->getAPIntValue() == VT.getSizeInBits() - 1) {
7300         SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT),
7301                                   N0.getOperand(0));
7302         // Generate SUBS & CSEL.
7303         SDValue Cmp =
7304             DAG.getNode(AArch64ISD::SUBS, DL, DAG.getVTList(VT, MVT::i32),
7305                         N0.getOperand(0), DAG.getConstant(0, DL, VT));
7306         return DAG.getNode(AArch64ISD::CSEL, DL, VT, N0.getOperand(0), Neg,
7307                            DAG.getConstant(AArch64CC::PL, DL, MVT::i32),
7308                            SDValue(Cmp.getNode(), 1));
7309       }
7310   return SDValue();
7311 }
7312
7313 // performXorCombine - Attempts to handle integer ABS.
7314 static SDValue performXorCombine(SDNode *N, SelectionDAG &DAG,
7315                                  TargetLowering::DAGCombinerInfo &DCI,
7316                                  const AArch64Subtarget *Subtarget) {
7317   if (DCI.isBeforeLegalizeOps())
7318     return SDValue();
7319
7320   return performIntegerAbsCombine(N, DAG);
7321 }
7322
7323 SDValue
7324 AArch64TargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor,
7325                                      SelectionDAG &DAG,
7326                                      std::vector<SDNode *> *Created) const {
7327   // fold (sdiv X, pow2)
7328   EVT VT = N->getValueType(0);
7329   if ((VT != MVT::i32 && VT != MVT::i64) ||
7330       !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2()))
7331     return SDValue();
7332
7333   SDLoc DL(N);
7334   SDValue N0 = N->getOperand(0);
7335   unsigned Lg2 = Divisor.countTrailingZeros();
7336   SDValue Zero = DAG.getConstant(0, DL, VT);
7337   SDValue Pow2MinusOne = DAG.getConstant((1ULL << Lg2) - 1, DL, VT);
7338
7339   // Add (N0 < 0) ? Pow2 - 1 : 0;
7340   SDValue CCVal;
7341   SDValue Cmp = getAArch64Cmp(N0, Zero, ISD::SETLT, CCVal, DAG, DL);
7342   SDValue Add = DAG.getNode(ISD::ADD, DL, VT, N0, Pow2MinusOne);
7343   SDValue CSel = DAG.getNode(AArch64ISD::CSEL, DL, VT, Add, N0, CCVal, Cmp);
7344
7345   if (Created) {
7346     Created->push_back(Cmp.getNode());
7347     Created->push_back(Add.getNode());
7348     Created->push_back(CSel.getNode());
7349   }
7350
7351   // Divide by pow2.
7352   SDValue SRA =
7353       DAG.getNode(ISD::SRA, DL, VT, CSel, DAG.getConstant(Lg2, DL, MVT::i64));
7354
7355   // If we're dividing by a positive value, we're done.  Otherwise, we must
7356   // negate the result.
7357   if (Divisor.isNonNegative())
7358     return SRA;
7359
7360   if (Created)
7361     Created->push_back(SRA.getNode());
7362   return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), SRA);
7363 }
7364
7365 static SDValue performMulCombine(SDNode *N, SelectionDAG &DAG,
7366                                  TargetLowering::DAGCombinerInfo &DCI,
7367                                  const AArch64Subtarget *Subtarget) {
7368   if (DCI.isBeforeLegalizeOps())
7369     return SDValue();
7370
7371   // Multiplication of a power of two plus/minus one can be done more
7372   // cheaply as as shift+add/sub. For now, this is true unilaterally. If
7373   // future CPUs have a cheaper MADD instruction, this may need to be
7374   // gated on a subtarget feature. For Cyclone, 32-bit MADD is 4 cycles and
7375   // 64-bit is 5 cycles, so this is always a win.
7376   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
7377     APInt Value = C->getAPIntValue();
7378     EVT VT = N->getValueType(0);
7379     SDLoc DL(N);
7380     if (Value.isNonNegative()) {
7381       // (mul x, 2^N + 1) => (add (shl x, N), x)
7382       APInt VM1 = Value - 1;
7383       if (VM1.isPowerOf2()) {
7384         SDValue ShiftedVal =
7385             DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
7386                         DAG.getConstant(VM1.logBase2(), DL, MVT::i64));
7387         return DAG.getNode(ISD::ADD, DL, VT, ShiftedVal,
7388                            N->getOperand(0));
7389       }
7390       // (mul x, 2^N - 1) => (sub (shl x, N), x)
7391       APInt VP1 = Value + 1;
7392       if (VP1.isPowerOf2()) {
7393         SDValue ShiftedVal =
7394             DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
7395                         DAG.getConstant(VP1.logBase2(), DL, MVT::i64));
7396         return DAG.getNode(ISD::SUB, DL, VT, ShiftedVal,
7397                            N->getOperand(0));
7398       }
7399     } else {
7400       // (mul x, -(2^N - 1)) => (sub x, (shl x, N))
7401       APInt VNP1 = -Value + 1;
7402       if (VNP1.isPowerOf2()) {
7403         SDValue ShiftedVal =
7404             DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
7405                         DAG.getConstant(VNP1.logBase2(), DL, MVT::i64));
7406         return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0),
7407                            ShiftedVal);
7408       }
7409       // (mul x, -(2^N + 1)) => - (add (shl x, N), x)
7410       APInt VNM1 = -Value - 1;
7411       if (VNM1.isPowerOf2()) {
7412         SDValue ShiftedVal =
7413             DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
7414                         DAG.getConstant(VNM1.logBase2(), DL, MVT::i64));
7415         SDValue Add =
7416             DAG.getNode(ISD::ADD, DL, VT, ShiftedVal, N->getOperand(0));
7417         return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), Add);
7418       }
7419     }
7420   }
7421   return SDValue();
7422 }
7423
7424 static SDValue performVectorCompareAndMaskUnaryOpCombine(SDNode *N,
7425                                                          SelectionDAG &DAG) {
7426   // Take advantage of vector comparisons producing 0 or -1 in each lane to
7427   // optimize away operation when it's from a constant.
7428   //
7429   // The general transformation is:
7430   //    UNARYOP(AND(VECTOR_CMP(x,y), constant)) -->
7431   //       AND(VECTOR_CMP(x,y), constant2)
7432   //    constant2 = UNARYOP(constant)
7433
7434   // Early exit if this isn't a vector operation, the operand of the
7435   // unary operation isn't a bitwise AND, or if the sizes of the operations
7436   // aren't the same.
7437   EVT VT = N->getValueType(0);
7438   if (!VT.isVector() || N->getOperand(0)->getOpcode() != ISD::AND ||
7439       N->getOperand(0)->getOperand(0)->getOpcode() != ISD::SETCC ||
7440       VT.getSizeInBits() != N->getOperand(0)->getValueType(0).getSizeInBits())
7441     return SDValue();
7442
7443   // Now check that the other operand of the AND is a constant. We could
7444   // make the transformation for non-constant splats as well, but it's unclear
7445   // that would be a benefit as it would not eliminate any operations, just
7446   // perform one more step in scalar code before moving to the vector unit.
7447   if (BuildVectorSDNode *BV =
7448           dyn_cast<BuildVectorSDNode>(N->getOperand(0)->getOperand(1))) {
7449     // Bail out if the vector isn't a constant.
7450     if (!BV->isConstant())
7451       return SDValue();
7452
7453     // Everything checks out. Build up the new and improved node.
7454     SDLoc DL(N);
7455     EVT IntVT = BV->getValueType(0);
7456     // Create a new constant of the appropriate type for the transformed
7457     // DAG.
7458     SDValue SourceConst = DAG.getNode(N->getOpcode(), DL, VT, SDValue(BV, 0));
7459     // The AND node needs bitcasts to/from an integer vector type around it.
7460     SDValue MaskConst = DAG.getNode(ISD::BITCAST, DL, IntVT, SourceConst);
7461     SDValue NewAnd = DAG.getNode(ISD::AND, DL, IntVT,
7462                                  N->getOperand(0)->getOperand(0), MaskConst);
7463     SDValue Res = DAG.getNode(ISD::BITCAST, DL, VT, NewAnd);
7464     return Res;
7465   }
7466
7467   return SDValue();
7468 }
7469
7470 static SDValue performIntToFpCombine(SDNode *N, SelectionDAG &DAG,
7471                                      const AArch64Subtarget *Subtarget) {
7472   // First try to optimize away the conversion when it's conditionally from
7473   // a constant. Vectors only.
7474   if (SDValue Res = performVectorCompareAndMaskUnaryOpCombine(N, DAG))
7475     return Res;
7476
7477   EVT VT = N->getValueType(0);
7478   if (VT != MVT::f32 && VT != MVT::f64)
7479     return SDValue();
7480
7481   // Only optimize when the source and destination types have the same width.
7482   if (VT.getSizeInBits() != N->getOperand(0).getValueType().getSizeInBits())
7483     return SDValue();
7484
7485   // If the result of an integer load is only used by an integer-to-float
7486   // conversion, use a fp load instead and a AdvSIMD scalar {S|U}CVTF instead.
7487   // This eliminates an "integer-to-vector-move UOP and improve throughput.
7488   SDValue N0 = N->getOperand(0);
7489   if (Subtarget->hasNEON() && ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7490       // Do not change the width of a volatile load.
7491       !cast<LoadSDNode>(N0)->isVolatile()) {
7492     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
7493     SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(), LN0->getBasePtr(),
7494                                LN0->getPointerInfo(), LN0->isVolatile(),
7495                                LN0->isNonTemporal(), LN0->isInvariant(),
7496                                LN0->getAlignment());
7497
7498     // Make sure successors of the original load stay after it by updating them
7499     // to use the new Chain.
7500     DAG.ReplaceAllUsesOfValueWith(SDValue(LN0, 1), Load.getValue(1));
7501
7502     unsigned Opcode =
7503         (N->getOpcode() == ISD::SINT_TO_FP) ? AArch64ISD::SITOF : AArch64ISD::UITOF;
7504     return DAG.getNode(Opcode, SDLoc(N), VT, Load);
7505   }
7506
7507   return SDValue();
7508 }
7509
7510 /// An EXTR instruction is made up of two shifts, ORed together. This helper
7511 /// searches for and classifies those shifts.
7512 static bool findEXTRHalf(SDValue N, SDValue &Src, uint32_t &ShiftAmount,
7513                          bool &FromHi) {
7514   if (N.getOpcode() == ISD::SHL)
7515     FromHi = false;
7516   else if (N.getOpcode() == ISD::SRL)
7517     FromHi = true;
7518   else
7519     return false;
7520
7521   if (!isa<ConstantSDNode>(N.getOperand(1)))
7522     return false;
7523
7524   ShiftAmount = N->getConstantOperandVal(1);
7525   Src = N->getOperand(0);
7526   return true;
7527 }
7528
7529 /// EXTR instruction extracts a contiguous chunk of bits from two existing
7530 /// registers viewed as a high/low pair. This function looks for the pattern:
7531 /// (or (shl VAL1, #N), (srl VAL2, #RegWidth-N)) and replaces it with an
7532 /// EXTR. Can't quite be done in TableGen because the two immediates aren't
7533 /// independent.
7534 static SDValue tryCombineToEXTR(SDNode *N,
7535                                 TargetLowering::DAGCombinerInfo &DCI) {
7536   SelectionDAG &DAG = DCI.DAG;
7537   SDLoc DL(N);
7538   EVT VT = N->getValueType(0);
7539
7540   assert(N->getOpcode() == ISD::OR && "Unexpected root");
7541
7542   if (VT != MVT::i32 && VT != MVT::i64)
7543     return SDValue();
7544
7545   SDValue LHS;
7546   uint32_t ShiftLHS = 0;
7547   bool LHSFromHi = 0;
7548   if (!findEXTRHalf(N->getOperand(0), LHS, ShiftLHS, LHSFromHi))
7549     return SDValue();
7550
7551   SDValue RHS;
7552   uint32_t ShiftRHS = 0;
7553   bool RHSFromHi = 0;
7554   if (!findEXTRHalf(N->getOperand(1), RHS, ShiftRHS, RHSFromHi))
7555     return SDValue();
7556
7557   // If they're both trying to come from the high part of the register, they're
7558   // not really an EXTR.
7559   if (LHSFromHi == RHSFromHi)
7560     return SDValue();
7561
7562   if (ShiftLHS + ShiftRHS != VT.getSizeInBits())
7563     return SDValue();
7564
7565   if (LHSFromHi) {
7566     std::swap(LHS, RHS);
7567     std::swap(ShiftLHS, ShiftRHS);
7568   }
7569
7570   return DAG.getNode(AArch64ISD::EXTR, DL, VT, LHS, RHS,
7571                      DAG.getConstant(ShiftRHS, DL, MVT::i64));
7572 }
7573
7574 static SDValue tryCombineToBSL(SDNode *N,
7575                                 TargetLowering::DAGCombinerInfo &DCI) {
7576   EVT VT = N->getValueType(0);
7577   SelectionDAG &DAG = DCI.DAG;
7578   SDLoc DL(N);
7579
7580   if (!VT.isVector())
7581     return SDValue();
7582
7583   SDValue N0 = N->getOperand(0);
7584   if (N0.getOpcode() != ISD::AND)
7585     return SDValue();
7586
7587   SDValue N1 = N->getOperand(1);
7588   if (N1.getOpcode() != ISD::AND)
7589     return SDValue();
7590
7591   // We only have to look for constant vectors here since the general, variable
7592   // case can be handled in TableGen.
7593   unsigned Bits = VT.getVectorElementType().getSizeInBits();
7594   uint64_t BitMask = Bits == 64 ? -1ULL : ((1ULL << Bits) - 1);
7595   for (int i = 1; i >= 0; --i)
7596     for (int j = 1; j >= 0; --j) {
7597       BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(i));
7598       BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(j));
7599       if (!BVN0 || !BVN1)
7600         continue;
7601
7602       bool FoundMatch = true;
7603       for (unsigned k = 0; k < VT.getVectorNumElements(); ++k) {
7604         ConstantSDNode *CN0 = dyn_cast<ConstantSDNode>(BVN0->getOperand(k));
7605         ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(BVN1->getOperand(k));
7606         if (!CN0 || !CN1 ||
7607             CN0->getZExtValue() != (BitMask & ~CN1->getZExtValue())) {
7608           FoundMatch = false;
7609           break;
7610         }
7611       }
7612
7613       if (FoundMatch)
7614         return DAG.getNode(AArch64ISD::BSL, DL, VT, SDValue(BVN0, 0),
7615                            N0->getOperand(1 - i), N1->getOperand(1 - j));
7616     }
7617
7618   return SDValue();
7619 }
7620
7621 static SDValue performORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI,
7622                                 const AArch64Subtarget *Subtarget) {
7623   // Attempt to form an EXTR from (or (shl VAL1, #N), (srl VAL2, #RegWidth-N))
7624   if (!EnableAArch64ExtrGeneration)
7625     return SDValue();
7626   SelectionDAG &DAG = DCI.DAG;
7627   EVT VT = N->getValueType(0);
7628
7629   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
7630     return SDValue();
7631
7632   SDValue Res = tryCombineToEXTR(N, DCI);
7633   if (Res.getNode())
7634     return Res;
7635
7636   Res = tryCombineToBSL(N, DCI);
7637   if (Res.getNode())
7638     return Res;
7639
7640   return SDValue();
7641 }
7642
7643 static SDValue performBitcastCombine(SDNode *N,
7644                                      TargetLowering::DAGCombinerInfo &DCI,
7645                                      SelectionDAG &DAG) {
7646   // Wait 'til after everything is legalized to try this. That way we have
7647   // legal vector types and such.
7648   if (DCI.isBeforeLegalizeOps())
7649     return SDValue();
7650
7651   // Remove extraneous bitcasts around an extract_subvector.
7652   // For example,
7653   //    (v4i16 (bitconvert
7654   //             (extract_subvector (v2i64 (bitconvert (v8i16 ...)), (i64 1)))))
7655   //  becomes
7656   //    (extract_subvector ((v8i16 ...), (i64 4)))
7657
7658   // Only interested in 64-bit vectors as the ultimate result.
7659   EVT VT = N->getValueType(0);
7660   if (!VT.isVector())
7661     return SDValue();
7662   if (VT.getSimpleVT().getSizeInBits() != 64)
7663     return SDValue();
7664   // Is the operand an extract_subvector starting at the beginning or halfway
7665   // point of the vector? A low half may also come through as an
7666   // EXTRACT_SUBREG, so look for that, too.
7667   SDValue Op0 = N->getOperand(0);
7668   if (Op0->getOpcode() != ISD::EXTRACT_SUBVECTOR &&
7669       !(Op0->isMachineOpcode() &&
7670         Op0->getMachineOpcode() == AArch64::EXTRACT_SUBREG))
7671     return SDValue();
7672   uint64_t idx = cast<ConstantSDNode>(Op0->getOperand(1))->getZExtValue();
7673   if (Op0->getOpcode() == ISD::EXTRACT_SUBVECTOR) {
7674     if (Op0->getValueType(0).getVectorNumElements() != idx && idx != 0)
7675       return SDValue();
7676   } else if (Op0->getMachineOpcode() == AArch64::EXTRACT_SUBREG) {
7677     if (idx != AArch64::dsub)
7678       return SDValue();
7679     // The dsub reference is equivalent to a lane zero subvector reference.
7680     idx = 0;
7681   }
7682   // Look through the bitcast of the input to the extract.
7683   if (Op0->getOperand(0)->getOpcode() != ISD::BITCAST)
7684     return SDValue();
7685   SDValue Source = Op0->getOperand(0)->getOperand(0);
7686   // If the source type has twice the number of elements as our destination
7687   // type, we know this is an extract of the high or low half of the vector.
7688   EVT SVT = Source->getValueType(0);
7689   if (SVT.getVectorNumElements() != VT.getVectorNumElements() * 2)
7690     return SDValue();
7691
7692   DEBUG(dbgs() << "aarch64-lower: bitcast extract_subvector simplification\n");
7693
7694   // Create the simplified form to just extract the low or high half of the
7695   // vector directly rather than bothering with the bitcasts.
7696   SDLoc dl(N);
7697   unsigned NumElements = VT.getVectorNumElements();
7698   if (idx) {
7699     SDValue HalfIdx = DAG.getConstant(NumElements, dl, MVT::i64);
7700     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, Source, HalfIdx);
7701   } else {
7702     SDValue SubReg = DAG.getTargetConstant(AArch64::dsub, dl, MVT::i32);
7703     return SDValue(DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG, dl, VT,
7704                                       Source, SubReg),
7705                    0);
7706   }
7707 }
7708
7709 static SDValue performConcatVectorsCombine(SDNode *N,
7710                                            TargetLowering::DAGCombinerInfo &DCI,
7711                                            SelectionDAG &DAG) {
7712   SDLoc dl(N);
7713   EVT VT = N->getValueType(0);
7714   SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
7715
7716   // Optimize concat_vectors of truncated vectors, where the intermediate
7717   // type is illegal, to avoid said illegality,  e.g.,
7718   //   (v4i16 (concat_vectors (v2i16 (truncate (v2i64))),
7719   //                          (v2i16 (truncate (v2i64)))))
7720   // ->
7721   //   (v4i16 (truncate (vector_shuffle (v4i32 (bitcast (v2i64))),
7722   //                                    (v4i32 (bitcast (v2i64))),
7723   //                                    <0, 2, 4, 6>)))
7724   // This isn't really target-specific, but ISD::TRUNCATE legality isn't keyed
7725   // on both input and result type, so we might generate worse code.
7726   // On AArch64 we know it's fine for v2i64->v4i16 and v4i32->v8i8.
7727   if (N->getNumOperands() == 2 &&
7728       N0->getOpcode() == ISD::TRUNCATE &&
7729       N1->getOpcode() == ISD::TRUNCATE) {
7730     SDValue N00 = N0->getOperand(0);
7731     SDValue N10 = N1->getOperand(0);
7732     EVT N00VT = N00.getValueType();
7733
7734     if (N00VT == N10.getValueType() &&
7735         (N00VT == MVT::v2i64 || N00VT == MVT::v4i32) &&
7736         N00VT.getScalarSizeInBits() == 4 * VT.getScalarSizeInBits()) {
7737       MVT MidVT = (N00VT == MVT::v2i64 ? MVT::v4i32 : MVT::v8i16);
7738       SmallVector<int, 8> Mask(MidVT.getVectorNumElements());
7739       for (size_t i = 0; i < Mask.size(); ++i)
7740         Mask[i] = i * 2;
7741       return DAG.getNode(ISD::TRUNCATE, dl, VT,
7742                          DAG.getVectorShuffle(
7743                              MidVT, dl,
7744                              DAG.getNode(ISD::BITCAST, dl, MidVT, N00),
7745                              DAG.getNode(ISD::BITCAST, dl, MidVT, N10), Mask));
7746     }
7747   }
7748
7749   // Wait 'til after everything is legalized to try this. That way we have
7750   // legal vector types and such.
7751   if (DCI.isBeforeLegalizeOps())
7752     return SDValue();
7753
7754   // If we see a (concat_vectors (v1x64 A), (v1x64 A)) it's really a vector
7755   // splat. The indexed instructions are going to be expecting a DUPLANE64, so
7756   // canonicalise to that.
7757   if (N0 == N1 && VT.getVectorNumElements() == 2) {
7758     assert(VT.getVectorElementType().getSizeInBits() == 64);
7759     return DAG.getNode(AArch64ISD::DUPLANE64, dl, VT, WidenVector(N0, DAG),
7760                        DAG.getConstant(0, dl, MVT::i64));
7761   }
7762
7763   // Canonicalise concat_vectors so that the right-hand vector has as few
7764   // bit-casts as possible before its real operation. The primary matching
7765   // destination for these operations will be the narrowing "2" instructions,
7766   // which depend on the operation being performed on this right-hand vector.
7767   // For example,
7768   //    (concat_vectors LHS,  (v1i64 (bitconvert (v4i16 RHS))))
7769   // becomes
7770   //    (bitconvert (concat_vectors (v4i16 (bitconvert LHS)), RHS))
7771
7772   if (N1->getOpcode() != ISD::BITCAST)
7773     return SDValue();
7774   SDValue RHS = N1->getOperand(0);
7775   MVT RHSTy = RHS.getValueType().getSimpleVT();
7776   // If the RHS is not a vector, this is not the pattern we're looking for.
7777   if (!RHSTy.isVector())
7778     return SDValue();
7779
7780   DEBUG(dbgs() << "aarch64-lower: concat_vectors bitcast simplification\n");
7781
7782   MVT ConcatTy = MVT::getVectorVT(RHSTy.getVectorElementType(),
7783                                   RHSTy.getVectorNumElements() * 2);
7784   return DAG.getNode(ISD::BITCAST, dl, VT,
7785                      DAG.getNode(ISD::CONCAT_VECTORS, dl, ConcatTy,
7786                                  DAG.getNode(ISD::BITCAST, dl, RHSTy, N0),
7787                                  RHS));
7788 }
7789
7790 static SDValue tryCombineFixedPointConvert(SDNode *N,
7791                                            TargetLowering::DAGCombinerInfo &DCI,
7792                                            SelectionDAG &DAG) {
7793   // Wait 'til after everything is legalized to try this. That way we have
7794   // legal vector types and such.
7795   if (DCI.isBeforeLegalizeOps())
7796     return SDValue();
7797   // Transform a scalar conversion of a value from a lane extract into a
7798   // lane extract of a vector conversion. E.g., from foo1 to foo2:
7799   // double foo1(int64x2_t a) { return vcvtd_n_f64_s64(a[1], 9); }
7800   // double foo2(int64x2_t a) { return vcvtq_n_f64_s64(a, 9)[1]; }
7801   //
7802   // The second form interacts better with instruction selection and the
7803   // register allocator to avoid cross-class register copies that aren't
7804   // coalescable due to a lane reference.
7805
7806   // Check the operand and see if it originates from a lane extract.
7807   SDValue Op1 = N->getOperand(1);
7808   if (Op1.getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
7809     // Yep, no additional predication needed. Perform the transform.
7810     SDValue IID = N->getOperand(0);
7811     SDValue Shift = N->getOperand(2);
7812     SDValue Vec = Op1.getOperand(0);
7813     SDValue Lane = Op1.getOperand(1);
7814     EVT ResTy = N->getValueType(0);
7815     EVT VecResTy;
7816     SDLoc DL(N);
7817
7818     // The vector width should be 128 bits by the time we get here, even
7819     // if it started as 64 bits (the extract_vector handling will have
7820     // done so).
7821     assert(Vec.getValueType().getSizeInBits() == 128 &&
7822            "unexpected vector size on extract_vector_elt!");
7823     if (Vec.getValueType() == MVT::v4i32)
7824       VecResTy = MVT::v4f32;
7825     else if (Vec.getValueType() == MVT::v2i64)
7826       VecResTy = MVT::v2f64;
7827     else
7828       llvm_unreachable("unexpected vector type!");
7829
7830     SDValue Convert =
7831         DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VecResTy, IID, Vec, Shift);
7832     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, ResTy, Convert, Lane);
7833   }
7834   return SDValue();
7835 }
7836
7837 // AArch64 high-vector "long" operations are formed by performing the non-high
7838 // version on an extract_subvector of each operand which gets the high half:
7839 //
7840 //  (longop2 LHS, RHS) == (longop (extract_high LHS), (extract_high RHS))
7841 //
7842 // However, there are cases which don't have an extract_high explicitly, but
7843 // have another operation that can be made compatible with one for free. For
7844 // example:
7845 //
7846 //  (dupv64 scalar) --> (extract_high (dup128 scalar))
7847 //
7848 // This routine does the actual conversion of such DUPs, once outer routines
7849 // have determined that everything else is in order.
7850 // It also supports immediate DUP-like nodes (MOVI/MVNi), which we can fold
7851 // similarly here.
7852 static SDValue tryExtendDUPToExtractHigh(SDValue N, SelectionDAG &DAG) {
7853   switch (N.getOpcode()) {
7854   case AArch64ISD::DUP:
7855   case AArch64ISD::DUPLANE8:
7856   case AArch64ISD::DUPLANE16:
7857   case AArch64ISD::DUPLANE32:
7858   case AArch64ISD::DUPLANE64:
7859   case AArch64ISD::MOVI:
7860   case AArch64ISD::MOVIshift:
7861   case AArch64ISD::MOVIedit:
7862   case AArch64ISD::MOVImsl:
7863   case AArch64ISD::MVNIshift:
7864   case AArch64ISD::MVNImsl:
7865     break;
7866   default:
7867     // FMOV could be supported, but isn't very useful, as it would only occur
7868     // if you passed a bitcast' floating point immediate to an eligible long
7869     // integer op (addl, smull, ...).
7870     return SDValue();
7871   }
7872
7873   MVT NarrowTy = N.getSimpleValueType();
7874   if (!NarrowTy.is64BitVector())
7875     return SDValue();
7876
7877   MVT ElementTy = NarrowTy.getVectorElementType();
7878   unsigned NumElems = NarrowTy.getVectorNumElements();
7879   MVT NewVT = MVT::getVectorVT(ElementTy, NumElems * 2);
7880
7881   SDLoc dl(N);
7882   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NarrowTy,
7883                      DAG.getNode(N->getOpcode(), dl, NewVT, N->ops()),
7884                      DAG.getConstant(NumElems, dl, MVT::i64));
7885 }
7886
7887 static bool isEssentiallyExtractSubvector(SDValue N) {
7888   if (N.getOpcode() == ISD::EXTRACT_SUBVECTOR)
7889     return true;
7890
7891   return N.getOpcode() == ISD::BITCAST &&
7892          N.getOperand(0).getOpcode() == ISD::EXTRACT_SUBVECTOR;
7893 }
7894
7895 /// \brief Helper structure to keep track of ISD::SET_CC operands.
7896 struct GenericSetCCInfo {
7897   const SDValue *Opnd0;
7898   const SDValue *Opnd1;
7899   ISD::CondCode CC;
7900 };
7901
7902 /// \brief Helper structure to keep track of a SET_CC lowered into AArch64 code.
7903 struct AArch64SetCCInfo {
7904   const SDValue *Cmp;
7905   AArch64CC::CondCode CC;
7906 };
7907
7908 /// \brief Helper structure to keep track of SetCC information.
7909 union SetCCInfo {
7910   GenericSetCCInfo Generic;
7911   AArch64SetCCInfo AArch64;
7912 };
7913
7914 /// \brief Helper structure to be able to read SetCC information.  If set to
7915 /// true, IsAArch64 field, Info is a AArch64SetCCInfo, otherwise Info is a
7916 /// GenericSetCCInfo.
7917 struct SetCCInfoAndKind {
7918   SetCCInfo Info;
7919   bool IsAArch64;
7920 };
7921
7922 /// \brief Check whether or not \p Op is a SET_CC operation, either a generic or
7923 /// an
7924 /// AArch64 lowered one.
7925 /// \p SetCCInfo is filled accordingly.
7926 /// \post SetCCInfo is meanginfull only when this function returns true.
7927 /// \return True when Op is a kind of SET_CC operation.
7928 static bool isSetCC(SDValue Op, SetCCInfoAndKind &SetCCInfo) {
7929   // If this is a setcc, this is straight forward.
7930   if (Op.getOpcode() == ISD::SETCC) {
7931     SetCCInfo.Info.Generic.Opnd0 = &Op.getOperand(0);
7932     SetCCInfo.Info.Generic.Opnd1 = &Op.getOperand(1);
7933     SetCCInfo.Info.Generic.CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7934     SetCCInfo.IsAArch64 = false;
7935     return true;
7936   }
7937   // Otherwise, check if this is a matching csel instruction.
7938   // In other words:
7939   // - csel 1, 0, cc
7940   // - csel 0, 1, !cc
7941   if (Op.getOpcode() != AArch64ISD::CSEL)
7942     return false;
7943   // Set the information about the operands.
7944   // TODO: we want the operands of the Cmp not the csel
7945   SetCCInfo.Info.AArch64.Cmp = &Op.getOperand(3);
7946   SetCCInfo.IsAArch64 = true;
7947   SetCCInfo.Info.AArch64.CC = static_cast<AArch64CC::CondCode>(
7948       cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
7949
7950   // Check that the operands matches the constraints:
7951   // (1) Both operands must be constants.
7952   // (2) One must be 1 and the other must be 0.
7953   ConstantSDNode *TValue = dyn_cast<ConstantSDNode>(Op.getOperand(0));
7954   ConstantSDNode *FValue = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7955
7956   // Check (1).
7957   if (!TValue || !FValue)
7958     return false;
7959
7960   // Check (2).
7961   if (!TValue->isOne()) {
7962     // Update the comparison when we are interested in !cc.
7963     std::swap(TValue, FValue);
7964     SetCCInfo.Info.AArch64.CC =
7965         AArch64CC::getInvertedCondCode(SetCCInfo.Info.AArch64.CC);
7966   }
7967   return TValue->isOne() && FValue->isNullValue();
7968 }
7969
7970 // Returns true if Op is setcc or zext of setcc.
7971 static bool isSetCCOrZExtSetCC(const SDValue& Op, SetCCInfoAndKind &Info) {
7972   if (isSetCC(Op, Info))
7973     return true;
7974   return ((Op.getOpcode() == ISD::ZERO_EXTEND) &&
7975     isSetCC(Op->getOperand(0), Info));
7976 }
7977
7978 // The folding we want to perform is:
7979 // (add x, [zext] (setcc cc ...) )
7980 //   -->
7981 // (csel x, (add x, 1), !cc ...)
7982 //
7983 // The latter will get matched to a CSINC instruction.
7984 static SDValue performSetccAddFolding(SDNode *Op, SelectionDAG &DAG) {
7985   assert(Op && Op->getOpcode() == ISD::ADD && "Unexpected operation!");
7986   SDValue LHS = Op->getOperand(0);
7987   SDValue RHS = Op->getOperand(1);
7988   SetCCInfoAndKind InfoAndKind;
7989
7990   // If neither operand is a SET_CC, give up.
7991   if (!isSetCCOrZExtSetCC(LHS, InfoAndKind)) {
7992     std::swap(LHS, RHS);
7993     if (!isSetCCOrZExtSetCC(LHS, InfoAndKind))
7994       return SDValue();
7995   }
7996
7997   // FIXME: This could be generatized to work for FP comparisons.
7998   EVT CmpVT = InfoAndKind.IsAArch64
7999                   ? InfoAndKind.Info.AArch64.Cmp->getOperand(0).getValueType()
8000                   : InfoAndKind.Info.Generic.Opnd0->getValueType();
8001   if (CmpVT != MVT::i32 && CmpVT != MVT::i64)
8002     return SDValue();
8003
8004   SDValue CCVal;
8005   SDValue Cmp;
8006   SDLoc dl(Op);
8007   if (InfoAndKind.IsAArch64) {
8008     CCVal = DAG.getConstant(
8009         AArch64CC::getInvertedCondCode(InfoAndKind.Info.AArch64.CC), dl,
8010         MVT::i32);
8011     Cmp = *InfoAndKind.Info.AArch64.Cmp;
8012   } else
8013     Cmp = getAArch64Cmp(*InfoAndKind.Info.Generic.Opnd0,
8014                       *InfoAndKind.Info.Generic.Opnd1,
8015                       ISD::getSetCCInverse(InfoAndKind.Info.Generic.CC, true),
8016                       CCVal, DAG, dl);
8017
8018   EVT VT = Op->getValueType(0);
8019   LHS = DAG.getNode(ISD::ADD, dl, VT, RHS, DAG.getConstant(1, dl, VT));
8020   return DAG.getNode(AArch64ISD::CSEL, dl, VT, RHS, LHS, CCVal, Cmp);
8021 }
8022
8023 // The basic add/sub long vector instructions have variants with "2" on the end
8024 // which act on the high-half of their inputs. They are normally matched by
8025 // patterns like:
8026 //
8027 // (add (zeroext (extract_high LHS)),
8028 //      (zeroext (extract_high RHS)))
8029 // -> uaddl2 vD, vN, vM
8030 //
8031 // However, if one of the extracts is something like a duplicate, this
8032 // instruction can still be used profitably. This function puts the DAG into a
8033 // more appropriate form for those patterns to trigger.
8034 static SDValue performAddSubLongCombine(SDNode *N,
8035                                         TargetLowering::DAGCombinerInfo &DCI,
8036                                         SelectionDAG &DAG) {
8037   if (DCI.isBeforeLegalizeOps())
8038     return SDValue();
8039
8040   MVT VT = N->getSimpleValueType(0);
8041   if (!VT.is128BitVector()) {
8042     if (N->getOpcode() == ISD::ADD)
8043       return performSetccAddFolding(N, DAG);
8044     return SDValue();
8045   }
8046
8047   // Make sure both branches are extended in the same way.
8048   SDValue LHS = N->getOperand(0);
8049   SDValue RHS = N->getOperand(1);
8050   if ((LHS.getOpcode() != ISD::ZERO_EXTEND &&
8051        LHS.getOpcode() != ISD::SIGN_EXTEND) ||
8052       LHS.getOpcode() != RHS.getOpcode())
8053     return SDValue();
8054
8055   unsigned ExtType = LHS.getOpcode();
8056
8057   // It's not worth doing if at least one of the inputs isn't already an
8058   // extract, but we don't know which it'll be so we have to try both.
8059   if (isEssentiallyExtractSubvector(LHS.getOperand(0))) {
8060     RHS = tryExtendDUPToExtractHigh(RHS.getOperand(0), DAG);
8061     if (!RHS.getNode())
8062       return SDValue();
8063
8064     RHS = DAG.getNode(ExtType, SDLoc(N), VT, RHS);
8065   } else if (isEssentiallyExtractSubvector(RHS.getOperand(0))) {
8066     LHS = tryExtendDUPToExtractHigh(LHS.getOperand(0), DAG);
8067     if (!LHS.getNode())
8068       return SDValue();
8069
8070     LHS = DAG.getNode(ExtType, SDLoc(N), VT, LHS);
8071   }
8072
8073   return DAG.getNode(N->getOpcode(), SDLoc(N), VT, LHS, RHS);
8074 }
8075
8076 // Massage DAGs which we can use the high-half "long" operations on into
8077 // something isel will recognize better. E.g.
8078 //
8079 // (aarch64_neon_umull (extract_high vec) (dupv64 scalar)) -->
8080 //   (aarch64_neon_umull (extract_high (v2i64 vec)))
8081 //                     (extract_high (v2i64 (dup128 scalar)))))
8082 //
8083 static SDValue tryCombineLongOpWithDup(SDNode *N,
8084                                        TargetLowering::DAGCombinerInfo &DCI,
8085                                        SelectionDAG &DAG) {
8086   if (DCI.isBeforeLegalizeOps())
8087     return SDValue();
8088
8089   bool IsIntrinsic = N->getOpcode() == ISD::INTRINSIC_WO_CHAIN;
8090   SDValue LHS = N->getOperand(IsIntrinsic ? 1 : 0);
8091   SDValue RHS = N->getOperand(IsIntrinsic ? 2 : 1);
8092   assert(LHS.getValueType().is64BitVector() &&
8093          RHS.getValueType().is64BitVector() &&
8094          "unexpected shape for long operation");
8095
8096   // Either node could be a DUP, but it's not worth doing both of them (you'd
8097   // just as well use the non-high version) so look for a corresponding extract
8098   // operation on the other "wing".
8099   if (isEssentiallyExtractSubvector(LHS)) {
8100     RHS = tryExtendDUPToExtractHigh(RHS, DAG);
8101     if (!RHS.getNode())
8102       return SDValue();
8103   } else if (isEssentiallyExtractSubvector(RHS)) {
8104     LHS = tryExtendDUPToExtractHigh(LHS, DAG);
8105     if (!LHS.getNode())
8106       return SDValue();
8107   }
8108
8109   // N could either be an intrinsic or a sabsdiff/uabsdiff node.
8110   if (IsIntrinsic)
8111     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), N->getValueType(0),
8112                        N->getOperand(0), LHS, RHS);
8113   else
8114     return DAG.getNode(N->getOpcode(), SDLoc(N), N->getValueType(0),
8115                        LHS, RHS);
8116 }
8117
8118 static SDValue tryCombineShiftImm(unsigned IID, SDNode *N, SelectionDAG &DAG) {
8119   MVT ElemTy = N->getSimpleValueType(0).getScalarType();
8120   unsigned ElemBits = ElemTy.getSizeInBits();
8121
8122   int64_t ShiftAmount;
8123   if (BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(2))) {
8124     APInt SplatValue, SplatUndef;
8125     unsigned SplatBitSize;
8126     bool HasAnyUndefs;
8127     if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
8128                               HasAnyUndefs, ElemBits) ||
8129         SplatBitSize != ElemBits)
8130       return SDValue();
8131
8132     ShiftAmount = SplatValue.getSExtValue();
8133   } else if (ConstantSDNode *CVN = dyn_cast<ConstantSDNode>(N->getOperand(2))) {
8134     ShiftAmount = CVN->getSExtValue();
8135   } else
8136     return SDValue();
8137
8138   unsigned Opcode;
8139   bool IsRightShift;
8140   switch (IID) {
8141   default:
8142     llvm_unreachable("Unknown shift intrinsic");
8143   case Intrinsic::aarch64_neon_sqshl:
8144     Opcode = AArch64ISD::SQSHL_I;
8145     IsRightShift = false;
8146     break;
8147   case Intrinsic::aarch64_neon_uqshl:
8148     Opcode = AArch64ISD::UQSHL_I;
8149     IsRightShift = false;
8150     break;
8151   case Intrinsic::aarch64_neon_srshl:
8152     Opcode = AArch64ISD::SRSHR_I;
8153     IsRightShift = true;
8154     break;
8155   case Intrinsic::aarch64_neon_urshl:
8156     Opcode = AArch64ISD::URSHR_I;
8157     IsRightShift = true;
8158     break;
8159   case Intrinsic::aarch64_neon_sqshlu:
8160     Opcode = AArch64ISD::SQSHLU_I;
8161     IsRightShift = false;
8162     break;
8163   }
8164
8165   if (IsRightShift && ShiftAmount <= -1 && ShiftAmount >= -(int)ElemBits) {
8166     SDLoc dl(N);
8167     return DAG.getNode(Opcode, dl, N->getValueType(0), N->getOperand(1),
8168                        DAG.getConstant(-ShiftAmount, dl, MVT::i32));
8169   } else if (!IsRightShift && ShiftAmount >= 0 && ShiftAmount < ElemBits) {
8170     SDLoc dl(N);
8171     return DAG.getNode(Opcode, dl, N->getValueType(0), N->getOperand(1),
8172                        DAG.getConstant(ShiftAmount, dl, MVT::i32));
8173   }
8174
8175   return SDValue();
8176 }
8177
8178 // The CRC32[BH] instructions ignore the high bits of their data operand. Since
8179 // the intrinsics must be legal and take an i32, this means there's almost
8180 // certainly going to be a zext in the DAG which we can eliminate.
8181 static SDValue tryCombineCRC32(unsigned Mask, SDNode *N, SelectionDAG &DAG) {
8182   SDValue AndN = N->getOperand(2);
8183   if (AndN.getOpcode() != ISD::AND)
8184     return SDValue();
8185
8186   ConstantSDNode *CMask = dyn_cast<ConstantSDNode>(AndN.getOperand(1));
8187   if (!CMask || CMask->getZExtValue() != Mask)
8188     return SDValue();
8189
8190   return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, SDLoc(N), MVT::i32,
8191                      N->getOperand(0), N->getOperand(1), AndN.getOperand(0));
8192 }
8193
8194 static SDValue combineAcrossLanesIntrinsic(unsigned Opc, SDNode *N,
8195                                            SelectionDAG &DAG) {
8196   SDLoc dl(N);
8197   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0),
8198                      DAG.getNode(Opc, dl,
8199                                  N->getOperand(1).getSimpleValueType(),
8200                                  N->getOperand(1)),
8201                      DAG.getConstant(0, dl, MVT::i64));
8202 }
8203
8204 static SDValue performIntrinsicCombine(SDNode *N,
8205                                        TargetLowering::DAGCombinerInfo &DCI,
8206                                        const AArch64Subtarget *Subtarget) {
8207   SelectionDAG &DAG = DCI.DAG;
8208   unsigned IID = getIntrinsicID(N);
8209   switch (IID) {
8210   default:
8211     break;
8212   case Intrinsic::aarch64_neon_vcvtfxs2fp:
8213   case Intrinsic::aarch64_neon_vcvtfxu2fp:
8214     return tryCombineFixedPointConvert(N, DCI, DAG);
8215   case Intrinsic::aarch64_neon_saddv:
8216     return combineAcrossLanesIntrinsic(AArch64ISD::SADDV, N, DAG);
8217   case Intrinsic::aarch64_neon_uaddv:
8218     return combineAcrossLanesIntrinsic(AArch64ISD::UADDV, N, DAG);
8219   case Intrinsic::aarch64_neon_sminv:
8220     return combineAcrossLanesIntrinsic(AArch64ISD::SMINV, N, DAG);
8221   case Intrinsic::aarch64_neon_uminv:
8222     return combineAcrossLanesIntrinsic(AArch64ISD::UMINV, N, DAG);
8223   case Intrinsic::aarch64_neon_smaxv:
8224     return combineAcrossLanesIntrinsic(AArch64ISD::SMAXV, N, DAG);
8225   case Intrinsic::aarch64_neon_umaxv:
8226     return combineAcrossLanesIntrinsic(AArch64ISD::UMAXV, N, DAG);
8227   case Intrinsic::aarch64_neon_fmax:
8228     return DAG.getNode(ISD::FMAXNAN, SDLoc(N), N->getValueType(0),
8229                        N->getOperand(1), N->getOperand(2));
8230   case Intrinsic::aarch64_neon_fmin:
8231     return DAG.getNode(ISD::FMINNAN, SDLoc(N), N->getValueType(0),
8232                        N->getOperand(1), N->getOperand(2));
8233   case Intrinsic::aarch64_neon_sabd:
8234     return DAG.getNode(ISD::SABSDIFF, SDLoc(N), N->getValueType(0),
8235                        N->getOperand(1), N->getOperand(2));
8236   case Intrinsic::aarch64_neon_uabd:
8237     return DAG.getNode(ISD::UABSDIFF, SDLoc(N), N->getValueType(0),
8238                        N->getOperand(1), N->getOperand(2));
8239   case Intrinsic::aarch64_neon_fmaxnm:
8240     return DAG.getNode(ISD::FMAXNUM, SDLoc(N), N->getValueType(0),
8241                        N->getOperand(1), N->getOperand(2));
8242   case Intrinsic::aarch64_neon_fminnm:
8243     return DAG.getNode(ISD::FMINNUM, SDLoc(N), N->getValueType(0),
8244                        N->getOperand(1), N->getOperand(2));
8245   case Intrinsic::aarch64_neon_smull:
8246   case Intrinsic::aarch64_neon_umull:
8247   case Intrinsic::aarch64_neon_pmull:
8248   case Intrinsic::aarch64_neon_sqdmull:
8249     return tryCombineLongOpWithDup(N, DCI, DAG);
8250   case Intrinsic::aarch64_neon_sqshl:
8251   case Intrinsic::aarch64_neon_uqshl:
8252   case Intrinsic::aarch64_neon_sqshlu:
8253   case Intrinsic::aarch64_neon_srshl:
8254   case Intrinsic::aarch64_neon_urshl:
8255     return tryCombineShiftImm(IID, N, DAG);
8256   case Intrinsic::aarch64_crc32b:
8257   case Intrinsic::aarch64_crc32cb:
8258     return tryCombineCRC32(0xff, N, DAG);
8259   case Intrinsic::aarch64_crc32h:
8260   case Intrinsic::aarch64_crc32ch:
8261     return tryCombineCRC32(0xffff, N, DAG);
8262   }
8263   return SDValue();
8264 }
8265
8266 static SDValue performExtendCombine(SDNode *N,
8267                                     TargetLowering::DAGCombinerInfo &DCI,
8268                                     SelectionDAG &DAG) {
8269   // If we see something like (zext (sabd (extract_high ...), (DUP ...))) then
8270   // we can convert that DUP into another extract_high (of a bigger DUP), which
8271   // helps the backend to decide that an sabdl2 would be useful, saving a real
8272   // extract_high operation.
8273   if (!DCI.isBeforeLegalizeOps() && N->getOpcode() == ISD::ZERO_EXTEND &&
8274       (N->getOperand(0).getOpcode() == ISD::SABSDIFF ||
8275        N->getOperand(0).getOpcode() == ISD::UABSDIFF)) {
8276     SDNode *ABDNode = N->getOperand(0).getNode();
8277     SDValue NewABD = tryCombineLongOpWithDup(ABDNode, DCI, DAG);
8278     if (!NewABD.getNode())
8279       return SDValue();
8280
8281     return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), N->getValueType(0),
8282                        NewABD);
8283   }
8284
8285   // This is effectively a custom type legalization for AArch64.
8286   //
8287   // Type legalization will split an extend of a small, legal, type to a larger
8288   // illegal type by first splitting the destination type, often creating
8289   // illegal source types, which then get legalized in isel-confusing ways,
8290   // leading to really terrible codegen. E.g.,
8291   //   %result = v8i32 sext v8i8 %value
8292   // becomes
8293   //   %losrc = extract_subreg %value, ...
8294   //   %hisrc = extract_subreg %value, ...
8295   //   %lo = v4i32 sext v4i8 %losrc
8296   //   %hi = v4i32 sext v4i8 %hisrc
8297   // Things go rapidly downhill from there.
8298   //
8299   // For AArch64, the [sz]ext vector instructions can only go up one element
8300   // size, so we can, e.g., extend from i8 to i16, but to go from i8 to i32
8301   // take two instructions.
8302   //
8303   // This implies that the most efficient way to do the extend from v8i8
8304   // to two v4i32 values is to first extend the v8i8 to v8i16, then do
8305   // the normal splitting to happen for the v8i16->v8i32.
8306
8307   // This is pre-legalization to catch some cases where the default
8308   // type legalization will create ill-tempered code.
8309   if (!DCI.isBeforeLegalizeOps())
8310     return SDValue();
8311
8312   // We're only interested in cleaning things up for non-legal vector types
8313   // here. If both the source and destination are legal, things will just
8314   // work naturally without any fiddling.
8315   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8316   EVT ResVT = N->getValueType(0);
8317   if (!ResVT.isVector() || TLI.isTypeLegal(ResVT))
8318     return SDValue();
8319   // If the vector type isn't a simple VT, it's beyond the scope of what
8320   // we're  worried about here. Let legalization do its thing and hope for
8321   // the best.
8322   SDValue Src = N->getOperand(0);
8323   EVT SrcVT = Src->getValueType(0);
8324   if (!ResVT.isSimple() || !SrcVT.isSimple())
8325     return SDValue();
8326
8327   // If the source VT is a 64-bit vector, we can play games and get the
8328   // better results we want.
8329   if (SrcVT.getSizeInBits() != 64)
8330     return SDValue();
8331
8332   unsigned SrcEltSize = SrcVT.getVectorElementType().getSizeInBits();
8333   unsigned ElementCount = SrcVT.getVectorNumElements();
8334   SrcVT = MVT::getVectorVT(MVT::getIntegerVT(SrcEltSize * 2), ElementCount);
8335   SDLoc DL(N);
8336   Src = DAG.getNode(N->getOpcode(), DL, SrcVT, Src);
8337
8338   // Now split the rest of the operation into two halves, each with a 64
8339   // bit source.
8340   EVT LoVT, HiVT;
8341   SDValue Lo, Hi;
8342   unsigned NumElements = ResVT.getVectorNumElements();
8343   assert(!(NumElements & 1) && "Splitting vector, but not in half!");
8344   LoVT = HiVT = EVT::getVectorVT(*DAG.getContext(),
8345                                  ResVT.getVectorElementType(), NumElements / 2);
8346
8347   EVT InNVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
8348                                LoVT.getVectorNumElements());
8349   Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, Src,
8350                    DAG.getConstant(0, DL, MVT::i64));
8351   Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, Src,
8352                    DAG.getConstant(InNVT.getVectorNumElements(), DL, MVT::i64));
8353   Lo = DAG.getNode(N->getOpcode(), DL, LoVT, Lo);
8354   Hi = DAG.getNode(N->getOpcode(), DL, HiVT, Hi);
8355
8356   // Now combine the parts back together so we still have a single result
8357   // like the combiner expects.
8358   return DAG.getNode(ISD::CONCAT_VECTORS, DL, ResVT, Lo, Hi);
8359 }
8360
8361 /// Replace a splat of a scalar to a vector store by scalar stores of the scalar
8362 /// value. The load store optimizer pass will merge them to store pair stores.
8363 /// This has better performance than a splat of the scalar followed by a split
8364 /// vector store. Even if the stores are not merged it is four stores vs a dup,
8365 /// followed by an ext.b and two stores.
8366 static SDValue replaceSplatVectorStore(SelectionDAG &DAG, StoreSDNode *St) {
8367   SDValue StVal = St->getValue();
8368   EVT VT = StVal.getValueType();
8369
8370   // Don't replace floating point stores, they possibly won't be transformed to
8371   // stp because of the store pair suppress pass.
8372   if (VT.isFloatingPoint())
8373     return SDValue();
8374
8375   // Check for insert vector elements.
8376   if (StVal.getOpcode() != ISD::INSERT_VECTOR_ELT)
8377     return SDValue();
8378
8379   // We can express a splat as store pair(s) for 2 or 4 elements.
8380   unsigned NumVecElts = VT.getVectorNumElements();
8381   if (NumVecElts != 4 && NumVecElts != 2)
8382     return SDValue();
8383   SDValue SplatVal = StVal.getOperand(1);
8384   unsigned RemainInsertElts = NumVecElts - 1;
8385
8386   // Check that this is a splat.
8387   while (--RemainInsertElts) {
8388     SDValue NextInsertElt = StVal.getOperand(0);
8389     if (NextInsertElt.getOpcode() != ISD::INSERT_VECTOR_ELT)
8390       return SDValue();
8391     if (NextInsertElt.getOperand(1) != SplatVal)
8392       return SDValue();
8393     StVal = NextInsertElt;
8394   }
8395   unsigned OrigAlignment = St->getAlignment();
8396   unsigned EltOffset = NumVecElts == 4 ? 4 : 8;
8397   unsigned Alignment = std::min(OrigAlignment, EltOffset);
8398
8399   // Create scalar stores. This is at least as good as the code sequence for a
8400   // split unaligned store which is a dup.s, ext.b, and two stores.
8401   // Most of the time the three stores should be replaced by store pair
8402   // instructions (stp).
8403   SDLoc DL(St);
8404   SDValue BasePtr = St->getBasePtr();
8405   SDValue NewST1 =
8406       DAG.getStore(St->getChain(), DL, SplatVal, BasePtr, St->getPointerInfo(),
8407                    St->isVolatile(), St->isNonTemporal(), St->getAlignment());
8408
8409   unsigned Offset = EltOffset;
8410   while (--NumVecElts) {
8411     SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
8412                                     DAG.getConstant(Offset, DL, MVT::i64));
8413     NewST1 = DAG.getStore(NewST1.getValue(0), DL, SplatVal, OffsetPtr,
8414                           St->getPointerInfo(), St->isVolatile(),
8415                           St->isNonTemporal(), Alignment);
8416     Offset += EltOffset;
8417   }
8418   return NewST1;
8419 }
8420
8421 static SDValue performSTORECombine(SDNode *N,
8422                                    TargetLowering::DAGCombinerInfo &DCI,
8423                                    SelectionDAG &DAG,
8424                                    const AArch64Subtarget *Subtarget) {
8425   if (!DCI.isBeforeLegalize())
8426     return SDValue();
8427
8428   StoreSDNode *S = cast<StoreSDNode>(N);
8429   if (S->isVolatile())
8430     return SDValue();
8431
8432   // Cyclone has bad performance on unaligned 16B stores when crossing line and
8433   // page boundaries. We want to split such stores.
8434   if (!Subtarget->isCyclone())
8435     return SDValue();
8436
8437   // Don't split at -Oz.
8438   if (DAG.getMachineFunction().getFunction()->optForMinSize())
8439     return SDValue();
8440
8441   SDValue StVal = S->getValue();
8442   EVT VT = StVal.getValueType();
8443
8444   // Don't split v2i64 vectors. Memcpy lowering produces those and splitting
8445   // those up regresses performance on micro-benchmarks and olden/bh.
8446   if (!VT.isVector() || VT.getVectorNumElements() < 2 || VT == MVT::v2i64)
8447     return SDValue();
8448
8449   // Split unaligned 16B stores. They are terrible for performance.
8450   // Don't split stores with alignment of 1 or 2. Code that uses clang vector
8451   // extensions can use this to mark that it does not want splitting to happen
8452   // (by underspecifying alignment to be 1 or 2). Furthermore, the chance of
8453   // eliminating alignment hazards is only 1 in 8 for alignment of 2.
8454   if (VT.getSizeInBits() != 128 || S->getAlignment() >= 16 ||
8455       S->getAlignment() <= 2)
8456     return SDValue();
8457
8458   // If we get a splat of a scalar convert this vector store to a store of
8459   // scalars. They will be merged into store pairs thereby removing two
8460   // instructions.
8461   if (SDValue ReplacedSplat = replaceSplatVectorStore(DAG, S))
8462     return ReplacedSplat;
8463
8464   SDLoc DL(S);
8465   unsigned NumElts = VT.getVectorNumElements() / 2;
8466   // Split VT into two.
8467   EVT HalfVT =
8468       EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(), NumElts);
8469   SDValue SubVector0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HalfVT, StVal,
8470                                    DAG.getConstant(0, DL, MVT::i64));
8471   SDValue SubVector1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, HalfVT, StVal,
8472                                    DAG.getConstant(NumElts, DL, MVT::i64));
8473   SDValue BasePtr = S->getBasePtr();
8474   SDValue NewST1 =
8475       DAG.getStore(S->getChain(), DL, SubVector0, BasePtr, S->getPointerInfo(),
8476                    S->isVolatile(), S->isNonTemporal(), S->getAlignment());
8477   SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i64, BasePtr,
8478                                   DAG.getConstant(8, DL, MVT::i64));
8479   return DAG.getStore(NewST1.getValue(0), DL, SubVector1, OffsetPtr,
8480                       S->getPointerInfo(), S->isVolatile(), S->isNonTemporal(),
8481                       S->getAlignment());
8482 }
8483
8484 /// Target-specific DAG combine function for post-increment LD1 (lane) and
8485 /// post-increment LD1R.
8486 static SDValue performPostLD1Combine(SDNode *N,
8487                                      TargetLowering::DAGCombinerInfo &DCI,
8488                                      bool IsLaneOp) {
8489   if (DCI.isBeforeLegalizeOps())
8490     return SDValue();
8491
8492   SelectionDAG &DAG = DCI.DAG;
8493   EVT VT = N->getValueType(0);
8494
8495   unsigned LoadIdx = IsLaneOp ? 1 : 0;
8496   SDNode *LD = N->getOperand(LoadIdx).getNode();
8497   // If it is not LOAD, can not do such combine.
8498   if (LD->getOpcode() != ISD::LOAD)
8499     return SDValue();
8500
8501   LoadSDNode *LoadSDN = cast<LoadSDNode>(LD);
8502   EVT MemVT = LoadSDN->getMemoryVT();
8503   // Check if memory operand is the same type as the vector element.
8504   if (MemVT != VT.getVectorElementType())
8505     return SDValue();
8506
8507   // Check if there are other uses. If so, do not combine as it will introduce
8508   // an extra load.
8509   for (SDNode::use_iterator UI = LD->use_begin(), UE = LD->use_end(); UI != UE;
8510        ++UI) {
8511     if (UI.getUse().getResNo() == 1) // Ignore uses of the chain result.
8512       continue;
8513     if (*UI != N)
8514       return SDValue();
8515   }
8516
8517   SDValue Addr = LD->getOperand(1);
8518   SDValue Vector = N->getOperand(0);
8519   // Search for a use of the address operand that is an increment.
8520   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(), UE =
8521        Addr.getNode()->use_end(); UI != UE; ++UI) {
8522     SDNode *User = *UI;
8523     if (User->getOpcode() != ISD::ADD
8524         || UI.getUse().getResNo() != Addr.getResNo())
8525       continue;
8526
8527     // Check that the add is independent of the load.  Otherwise, folding it
8528     // would create a cycle.
8529     if (User->isPredecessorOf(LD) || LD->isPredecessorOf(User))
8530       continue;
8531     // Also check that add is not used in the vector operand.  This would also
8532     // create a cycle.
8533     if (User->isPredecessorOf(Vector.getNode()))
8534       continue;
8535
8536     // If the increment is a constant, it must match the memory ref size.
8537     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
8538     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
8539       uint32_t IncVal = CInc->getZExtValue();
8540       unsigned NumBytes = VT.getScalarSizeInBits() / 8;
8541       if (IncVal != NumBytes)
8542         continue;
8543       Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
8544     }
8545
8546     // Finally, check that the vector doesn't depend on the load.
8547     // Again, this would create a cycle.
8548     // The load depending on the vector is fine, as that's the case for the
8549     // LD1*post we'll eventually generate anyway.
8550     if (LoadSDN->isPredecessorOf(Vector.getNode()))
8551       continue;
8552
8553     SmallVector<SDValue, 8> Ops;
8554     Ops.push_back(LD->getOperand(0));  // Chain
8555     if (IsLaneOp) {
8556       Ops.push_back(Vector);           // The vector to be inserted
8557       Ops.push_back(N->getOperand(2)); // The lane to be inserted in the vector
8558     }
8559     Ops.push_back(Addr);
8560     Ops.push_back(Inc);
8561
8562     EVT Tys[3] = { VT, MVT::i64, MVT::Other };
8563     SDVTList SDTys = DAG.getVTList(Tys);
8564     unsigned NewOp = IsLaneOp ? AArch64ISD::LD1LANEpost : AArch64ISD::LD1DUPpost;
8565     SDValue UpdN = DAG.getMemIntrinsicNode(NewOp, SDLoc(N), SDTys, Ops,
8566                                            MemVT,
8567                                            LoadSDN->getMemOperand());
8568
8569     // Update the uses.
8570     SmallVector<SDValue, 2> NewResults;
8571     NewResults.push_back(SDValue(LD, 0));             // The result of load
8572     NewResults.push_back(SDValue(UpdN.getNode(), 2)); // Chain
8573     DCI.CombineTo(LD, NewResults);
8574     DCI.CombineTo(N, SDValue(UpdN.getNode(), 0));     // Dup/Inserted Result
8575     DCI.CombineTo(User, SDValue(UpdN.getNode(), 1));  // Write back register
8576
8577     break;
8578   }
8579   return SDValue();
8580 }
8581
8582 /// Target-specific DAG combine function for NEON load/store intrinsics
8583 /// to merge base address updates.
8584 static SDValue performNEONPostLDSTCombine(SDNode *N,
8585                                           TargetLowering::DAGCombinerInfo &DCI,
8586                                           SelectionDAG &DAG) {
8587   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8588     return SDValue();
8589
8590   unsigned AddrOpIdx = N->getNumOperands() - 1;
8591   SDValue Addr = N->getOperand(AddrOpIdx);
8592
8593   // Search for a use of the address operand that is an increment.
8594   for (SDNode::use_iterator UI = Addr.getNode()->use_begin(),
8595        UE = Addr.getNode()->use_end(); UI != UE; ++UI) {
8596     SDNode *User = *UI;
8597     if (User->getOpcode() != ISD::ADD ||
8598         UI.getUse().getResNo() != Addr.getResNo())
8599       continue;
8600
8601     // Check that the add is independent of the load/store.  Otherwise, folding
8602     // it would create a cycle.
8603     if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
8604       continue;
8605
8606     // Find the new opcode for the updating load/store.
8607     bool IsStore = false;
8608     bool IsLaneOp = false;
8609     bool IsDupOp = false;
8610     unsigned NewOpc = 0;
8611     unsigned NumVecs = 0;
8612     unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
8613     switch (IntNo) {
8614     default: llvm_unreachable("unexpected intrinsic for Neon base update");
8615     case Intrinsic::aarch64_neon_ld2:       NewOpc = AArch64ISD::LD2post;
8616       NumVecs = 2; break;
8617     case Intrinsic::aarch64_neon_ld3:       NewOpc = AArch64ISD::LD3post;
8618       NumVecs = 3; break;
8619     case Intrinsic::aarch64_neon_ld4:       NewOpc = AArch64ISD::LD4post;
8620       NumVecs = 4; break;
8621     case Intrinsic::aarch64_neon_st2:       NewOpc = AArch64ISD::ST2post;
8622       NumVecs = 2; IsStore = true; break;
8623     case Intrinsic::aarch64_neon_st3:       NewOpc = AArch64ISD::ST3post;
8624       NumVecs = 3; IsStore = true; break;
8625     case Intrinsic::aarch64_neon_st4:       NewOpc = AArch64ISD::ST4post;
8626       NumVecs = 4; IsStore = true; break;
8627     case Intrinsic::aarch64_neon_ld1x2:     NewOpc = AArch64ISD::LD1x2post;
8628       NumVecs = 2; break;
8629     case Intrinsic::aarch64_neon_ld1x3:     NewOpc = AArch64ISD::LD1x3post;
8630       NumVecs = 3; break;
8631     case Intrinsic::aarch64_neon_ld1x4:     NewOpc = AArch64ISD::LD1x4post;
8632       NumVecs = 4; break;
8633     case Intrinsic::aarch64_neon_st1x2:     NewOpc = AArch64ISD::ST1x2post;
8634       NumVecs = 2; IsStore = true; break;
8635     case Intrinsic::aarch64_neon_st1x3:     NewOpc = AArch64ISD::ST1x3post;
8636       NumVecs = 3; IsStore = true; break;
8637     case Intrinsic::aarch64_neon_st1x4:     NewOpc = AArch64ISD::ST1x4post;
8638       NumVecs = 4; IsStore = true; break;
8639     case Intrinsic::aarch64_neon_ld2r:      NewOpc = AArch64ISD::LD2DUPpost;
8640       NumVecs = 2; IsDupOp = true; break;
8641     case Intrinsic::aarch64_neon_ld3r:      NewOpc = AArch64ISD::LD3DUPpost;
8642       NumVecs = 3; IsDupOp = true; break;
8643     case Intrinsic::aarch64_neon_ld4r:      NewOpc = AArch64ISD::LD4DUPpost;
8644       NumVecs = 4; IsDupOp = true; break;
8645     case Intrinsic::aarch64_neon_ld2lane:   NewOpc = AArch64ISD::LD2LANEpost;
8646       NumVecs = 2; IsLaneOp = true; break;
8647     case Intrinsic::aarch64_neon_ld3lane:   NewOpc = AArch64ISD::LD3LANEpost;
8648       NumVecs = 3; IsLaneOp = true; break;
8649     case Intrinsic::aarch64_neon_ld4lane:   NewOpc = AArch64ISD::LD4LANEpost;
8650       NumVecs = 4; IsLaneOp = true; break;
8651     case Intrinsic::aarch64_neon_st2lane:   NewOpc = AArch64ISD::ST2LANEpost;
8652       NumVecs = 2; IsStore = true; IsLaneOp = true; break;
8653     case Intrinsic::aarch64_neon_st3lane:   NewOpc = AArch64ISD::ST3LANEpost;
8654       NumVecs = 3; IsStore = true; IsLaneOp = true; break;
8655     case Intrinsic::aarch64_neon_st4lane:   NewOpc = AArch64ISD::ST4LANEpost;
8656       NumVecs = 4; IsStore = true; IsLaneOp = true; break;
8657     }
8658
8659     EVT VecTy;
8660     if (IsStore)
8661       VecTy = N->getOperand(2).getValueType();
8662     else
8663       VecTy = N->getValueType(0);
8664
8665     // If the increment is a constant, it must match the memory ref size.
8666     SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
8667     if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) {
8668       uint32_t IncVal = CInc->getZExtValue();
8669       unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8;
8670       if (IsLaneOp || IsDupOp)
8671         NumBytes /= VecTy.getVectorNumElements();
8672       if (IncVal != NumBytes)
8673         continue;
8674       Inc = DAG.getRegister(AArch64::XZR, MVT::i64);
8675     }
8676     SmallVector<SDValue, 8> Ops;
8677     Ops.push_back(N->getOperand(0)); // Incoming chain
8678     // Load lane and store have vector list as input.
8679     if (IsLaneOp || IsStore)
8680       for (unsigned i = 2; i < AddrOpIdx; ++i)
8681         Ops.push_back(N->getOperand(i));
8682     Ops.push_back(Addr); // Base register
8683     Ops.push_back(Inc);
8684
8685     // Return Types.
8686     EVT Tys[6];
8687     unsigned NumResultVecs = (IsStore ? 0 : NumVecs);
8688     unsigned n;
8689     for (n = 0; n < NumResultVecs; ++n)
8690       Tys[n] = VecTy;
8691     Tys[n++] = MVT::i64;  // Type of write back register
8692     Tys[n] = MVT::Other;  // Type of the chain
8693     SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumResultVecs + 2));
8694
8695     MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N);
8696     SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, SDLoc(N), SDTys, Ops,
8697                                            MemInt->getMemoryVT(),
8698                                            MemInt->getMemOperand());
8699
8700     // Update the uses.
8701     std::vector<SDValue> NewResults;
8702     for (unsigned i = 0; i < NumResultVecs; ++i) {
8703       NewResults.push_back(SDValue(UpdN.getNode(), i));
8704     }
8705     NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs + 1));
8706     DCI.CombineTo(N, NewResults);
8707     DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
8708
8709     break;
8710   }
8711   return SDValue();
8712 }
8713
8714 // Checks to see if the value is the prescribed width and returns information
8715 // about its extension mode.
8716 static
8717 bool checkValueWidth(SDValue V, unsigned width, ISD::LoadExtType &ExtType) {
8718   ExtType = ISD::NON_EXTLOAD;
8719   switch(V.getNode()->getOpcode()) {
8720   default:
8721     return false;
8722   case ISD::LOAD: {
8723     LoadSDNode *LoadNode = cast<LoadSDNode>(V.getNode());
8724     if ((LoadNode->getMemoryVT() == MVT::i8 && width == 8)
8725        || (LoadNode->getMemoryVT() == MVT::i16 && width == 16)) {
8726       ExtType = LoadNode->getExtensionType();
8727       return true;
8728     }
8729     return false;
8730   }
8731   case ISD::AssertSext: {
8732     VTSDNode *TypeNode = cast<VTSDNode>(V.getNode()->getOperand(1));
8733     if ((TypeNode->getVT() == MVT::i8 && width == 8)
8734        || (TypeNode->getVT() == MVT::i16 && width == 16)) {
8735       ExtType = ISD::SEXTLOAD;
8736       return true;
8737     }
8738     return false;
8739   }
8740   case ISD::AssertZext: {
8741     VTSDNode *TypeNode = cast<VTSDNode>(V.getNode()->getOperand(1));
8742     if ((TypeNode->getVT() == MVT::i8 && width == 8)
8743        || (TypeNode->getVT() == MVT::i16 && width == 16)) {
8744       ExtType = ISD::ZEXTLOAD;
8745       return true;
8746     }
8747     return false;
8748   }
8749   case ISD::Constant:
8750   case ISD::TargetConstant: {
8751     if (std::abs(cast<ConstantSDNode>(V.getNode())->getSExtValue()) <
8752         1LL << (width - 1))
8753       return true;
8754     return false;
8755   }
8756   }
8757
8758   return true;
8759 }
8760
8761 // This function does a whole lot of voodoo to determine if the tests are
8762 // equivalent without and with a mask. Essentially what happens is that given a
8763 // DAG resembling:
8764 //
8765 //  +-------------+ +-------------+ +-------------+ +-------------+
8766 //  |    Input    | | AddConstant | | CompConstant| |     CC      |
8767 //  +-------------+ +-------------+ +-------------+ +-------------+
8768 //           |           |           |               |
8769 //           V           V           |    +----------+
8770 //          +-------------+  +----+  |    |
8771 //          |     ADD     |  |0xff|  |    |
8772 //          +-------------+  +----+  |    |
8773 //                  |           |    |    |
8774 //                  V           V    |    |
8775 //                 +-------------+   |    |
8776 //                 |     AND     |   |    |
8777 //                 +-------------+   |    |
8778 //                      |            |    |
8779 //                      +-----+      |    |
8780 //                            |      |    |
8781 //                            V      V    V
8782 //                           +-------------+
8783 //                           |     CMP     |
8784 //                           +-------------+
8785 //
8786 // The AND node may be safely removed for some combinations of inputs. In
8787 // particular we need to take into account the extension type of the Input,
8788 // the exact values of AddConstant, CompConstant, and CC, along with the nominal
8789 // width of the input (this can work for any width inputs, the above graph is
8790 // specific to 8 bits.
8791 //
8792 // The specific equations were worked out by generating output tables for each
8793 // AArch64CC value in terms of and AddConstant (w1), CompConstant(w2). The
8794 // problem was simplified by working with 4 bit inputs, which means we only
8795 // needed to reason about 24 distinct bit patterns: 8 patterns unique to zero
8796 // extension (8,15), 8 patterns unique to sign extensions (-8,-1), and 8
8797 // patterns present in both extensions (0,7). For every distinct set of
8798 // AddConstant and CompConstants bit patterns we can consider the masked and
8799 // unmasked versions to be equivalent if the result of this function is true for
8800 // all 16 distinct bit patterns of for the current extension type of Input (w0).
8801 //
8802 //   sub      w8, w0, w1
8803 //   and      w10, w8, #0x0f
8804 //   cmp      w8, w2
8805 //   cset     w9, AArch64CC
8806 //   cmp      w10, w2
8807 //   cset     w11, AArch64CC
8808 //   cmp      w9, w11
8809 //   cset     w0, eq
8810 //   ret
8811 //
8812 // Since the above function shows when the outputs are equivalent it defines
8813 // when it is safe to remove the AND. Unfortunately it only runs on AArch64 and
8814 // would be expensive to run during compiles. The equations below were written
8815 // in a test harness that confirmed they gave equivalent outputs to the above
8816 // for all inputs function, so they can be used determine if the removal is
8817 // legal instead.
8818 //
8819 // isEquivalentMaskless() is the code for testing if the AND can be removed
8820 // factored out of the DAG recognition as the DAG can take several forms.
8821
8822 static
8823 bool isEquivalentMaskless(unsigned CC, unsigned width,
8824                           ISD::LoadExtType ExtType, signed AddConstant,
8825                           signed CompConstant) {
8826   // By being careful about our equations and only writing the in term
8827   // symbolic values and well known constants (0, 1, -1, MaxUInt) we can
8828   // make them generally applicable to all bit widths.
8829   signed MaxUInt = (1 << width);
8830
8831   // For the purposes of these comparisons sign extending the type is
8832   // equivalent to zero extending the add and displacing it by half the integer
8833   // width. Provided we are careful and make sure our equations are valid over
8834   // the whole range we can just adjust the input and avoid writing equations
8835   // for sign extended inputs.
8836   if (ExtType == ISD::SEXTLOAD)
8837     AddConstant -= (1 << (width-1));
8838
8839   switch(CC) {
8840   case AArch64CC::LE:
8841   case AArch64CC::GT: {
8842     if ((AddConstant == 0) ||
8843         (CompConstant == MaxUInt - 1 && AddConstant < 0) ||
8844         (AddConstant >= 0 && CompConstant < 0) ||
8845         (AddConstant <= 0 && CompConstant <= 0 && CompConstant < AddConstant))
8846       return true;
8847   } break;
8848   case AArch64CC::LT:
8849   case AArch64CC::GE: {
8850     if ((AddConstant == 0) ||
8851         (AddConstant >= 0 && CompConstant <= 0) ||
8852         (AddConstant <= 0 && CompConstant <= 0 && CompConstant <= AddConstant))
8853       return true;
8854   } break;
8855   case AArch64CC::HI:
8856   case AArch64CC::LS: {
8857     if ((AddConstant >= 0 && CompConstant < 0) ||
8858        (AddConstant <= 0 && CompConstant >= -1 &&
8859         CompConstant < AddConstant + MaxUInt))
8860       return true;
8861   } break;
8862   case AArch64CC::PL:
8863   case AArch64CC::MI: {
8864     if ((AddConstant == 0) ||
8865         (AddConstant > 0 && CompConstant <= 0) ||
8866         (AddConstant < 0 && CompConstant <= AddConstant))
8867       return true;
8868   } break;
8869   case AArch64CC::LO:
8870   case AArch64CC::HS: {
8871     if ((AddConstant >= 0 && CompConstant <= 0) ||
8872         (AddConstant <= 0 && CompConstant >= 0 &&
8873          CompConstant <= AddConstant + MaxUInt))
8874       return true;
8875   } break;
8876   case AArch64CC::EQ:
8877   case AArch64CC::NE: {
8878     if ((AddConstant > 0 && CompConstant < 0) ||
8879         (AddConstant < 0 && CompConstant >= 0 &&
8880          CompConstant < AddConstant + MaxUInt) ||
8881         (AddConstant >= 0 && CompConstant >= 0 &&
8882          CompConstant >= AddConstant) ||
8883         (AddConstant <= 0 && CompConstant < 0 && CompConstant < AddConstant))
8884
8885       return true;
8886   } break;
8887   case AArch64CC::VS:
8888   case AArch64CC::VC:
8889   case AArch64CC::AL:
8890   case AArch64CC::NV:
8891     return true;
8892   case AArch64CC::Invalid:
8893     break;
8894   }
8895
8896   return false;
8897 }
8898
8899 static
8900 SDValue performCONDCombine(SDNode *N,
8901                            TargetLowering::DAGCombinerInfo &DCI,
8902                            SelectionDAG &DAG, unsigned CCIndex,
8903                            unsigned CmpIndex) {
8904   unsigned CC = cast<ConstantSDNode>(N->getOperand(CCIndex))->getSExtValue();
8905   SDNode *SubsNode = N->getOperand(CmpIndex).getNode();
8906   unsigned CondOpcode = SubsNode->getOpcode();
8907
8908   if (CondOpcode != AArch64ISD::SUBS)
8909     return SDValue();
8910
8911   // There is a SUBS feeding this condition. Is it fed by a mask we can
8912   // use?
8913
8914   SDNode *AndNode = SubsNode->getOperand(0).getNode();
8915   unsigned MaskBits = 0;
8916
8917   if (AndNode->getOpcode() != ISD::AND)
8918     return SDValue();
8919
8920   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(AndNode->getOperand(1))) {
8921     uint32_t CNV = CN->getZExtValue();
8922     if (CNV == 255)
8923       MaskBits = 8;
8924     else if (CNV == 65535)
8925       MaskBits = 16;
8926   }
8927
8928   if (!MaskBits)
8929     return SDValue();
8930
8931   SDValue AddValue = AndNode->getOperand(0);
8932
8933   if (AddValue.getOpcode() != ISD::ADD)
8934     return SDValue();
8935
8936   // The basic dag structure is correct, grab the inputs and validate them.
8937
8938   SDValue AddInputValue1 = AddValue.getNode()->getOperand(0);
8939   SDValue AddInputValue2 = AddValue.getNode()->getOperand(1);
8940   SDValue SubsInputValue = SubsNode->getOperand(1);
8941
8942   // The mask is present and the provenance of all the values is a smaller type,
8943   // lets see if the mask is superfluous.
8944
8945   if (!isa<ConstantSDNode>(AddInputValue2.getNode()) ||
8946       !isa<ConstantSDNode>(SubsInputValue.getNode()))
8947     return SDValue();
8948
8949   ISD::LoadExtType ExtType;
8950
8951   if (!checkValueWidth(SubsInputValue, MaskBits, ExtType) ||
8952       !checkValueWidth(AddInputValue2, MaskBits, ExtType) ||
8953       !checkValueWidth(AddInputValue1, MaskBits, ExtType) )
8954     return SDValue();
8955
8956   if(!isEquivalentMaskless(CC, MaskBits, ExtType,
8957                 cast<ConstantSDNode>(AddInputValue2.getNode())->getSExtValue(),
8958                 cast<ConstantSDNode>(SubsInputValue.getNode())->getSExtValue()))
8959     return SDValue();
8960
8961   // The AND is not necessary, remove it.
8962
8963   SDVTList VTs = DAG.getVTList(SubsNode->getValueType(0),
8964                                SubsNode->getValueType(1));
8965   SDValue Ops[] = { AddValue, SubsNode->getOperand(1) };
8966
8967   SDValue NewValue = DAG.getNode(CondOpcode, SDLoc(SubsNode), VTs, Ops);
8968   DAG.ReplaceAllUsesWith(SubsNode, NewValue.getNode());
8969
8970   return SDValue(N, 0);
8971 }
8972
8973 // Optimize compare with zero and branch.
8974 static SDValue performBRCONDCombine(SDNode *N,
8975                                     TargetLowering::DAGCombinerInfo &DCI,
8976                                     SelectionDAG &DAG) {
8977   SDValue NV = performCONDCombine(N, DCI, DAG, 2, 3);
8978   if (NV.getNode())
8979     N = NV.getNode();
8980   SDValue Chain = N->getOperand(0);
8981   SDValue Dest = N->getOperand(1);
8982   SDValue CCVal = N->getOperand(2);
8983   SDValue Cmp = N->getOperand(3);
8984
8985   assert(isa<ConstantSDNode>(CCVal) && "Expected a ConstantSDNode here!");
8986   unsigned CC = cast<ConstantSDNode>(CCVal)->getZExtValue();
8987   if (CC != AArch64CC::EQ && CC != AArch64CC::NE)
8988     return SDValue();
8989
8990   unsigned CmpOpc = Cmp.getOpcode();
8991   if (CmpOpc != AArch64ISD::ADDS && CmpOpc != AArch64ISD::SUBS)
8992     return SDValue();
8993
8994   // Only attempt folding if there is only one use of the flag and no use of the
8995   // value.
8996   if (!Cmp->hasNUsesOfValue(0, 0) || !Cmp->hasNUsesOfValue(1, 1))
8997     return SDValue();
8998
8999   SDValue LHS = Cmp.getOperand(0);
9000   SDValue RHS = Cmp.getOperand(1);
9001
9002   assert(LHS.getValueType() == RHS.getValueType() &&
9003          "Expected the value type to be the same for both operands!");
9004   if (LHS.getValueType() != MVT::i32 && LHS.getValueType() != MVT::i64)
9005     return SDValue();
9006
9007   if (isa<ConstantSDNode>(LHS) && cast<ConstantSDNode>(LHS)->isNullValue())
9008     std::swap(LHS, RHS);
9009
9010   if (!isa<ConstantSDNode>(RHS) || !cast<ConstantSDNode>(RHS)->isNullValue())
9011     return SDValue();
9012
9013   if (LHS.getOpcode() == ISD::SHL || LHS.getOpcode() == ISD::SRA ||
9014       LHS.getOpcode() == ISD::SRL)
9015     return SDValue();
9016
9017   // Fold the compare into the branch instruction.
9018   SDValue BR;
9019   if (CC == AArch64CC::EQ)
9020     BR = DAG.getNode(AArch64ISD::CBZ, SDLoc(N), MVT::Other, Chain, LHS, Dest);
9021   else
9022     BR = DAG.getNode(AArch64ISD::CBNZ, SDLoc(N), MVT::Other, Chain, LHS, Dest);
9023
9024   // Do not add new nodes to DAG combiner worklist.
9025   DCI.CombineTo(N, BR, false);
9026
9027   return SDValue();
9028 }
9029
9030 // vselect (v1i1 setcc) ->
9031 //     vselect (v1iXX setcc)  (XX is the size of the compared operand type)
9032 // FIXME: Currently the type legalizer can't handle VSELECT having v1i1 as
9033 // condition. If it can legalize "VSELECT v1i1" correctly, no need to combine
9034 // such VSELECT.
9035 static SDValue performVSelectCombine(SDNode *N, SelectionDAG &DAG) {
9036   SDValue N0 = N->getOperand(0);
9037   EVT CCVT = N0.getValueType();
9038
9039   if (N0.getOpcode() != ISD::SETCC || CCVT.getVectorNumElements() != 1 ||
9040       CCVT.getVectorElementType() != MVT::i1)
9041     return SDValue();
9042
9043   EVT ResVT = N->getValueType(0);
9044   EVT CmpVT = N0.getOperand(0).getValueType();
9045   // Only combine when the result type is of the same size as the compared
9046   // operands.
9047   if (ResVT.getSizeInBits() != CmpVT.getSizeInBits())
9048     return SDValue();
9049
9050   SDValue IfTrue = N->getOperand(1);
9051   SDValue IfFalse = N->getOperand(2);
9052   SDValue SetCC =
9053       DAG.getSetCC(SDLoc(N), CmpVT.changeVectorElementTypeToInteger(),
9054                    N0.getOperand(0), N0.getOperand(1),
9055                    cast<CondCodeSDNode>(N0.getOperand(2))->get());
9056   return DAG.getNode(ISD::VSELECT, SDLoc(N), ResVT, SetCC,
9057                      IfTrue, IfFalse);
9058 }
9059
9060 /// A vector select: "(select vL, vR, (setcc LHS, RHS))" is best performed with
9061 /// the compare-mask instructions rather than going via NZCV, even if LHS and
9062 /// RHS are really scalar. This replaces any scalar setcc in the above pattern
9063 /// with a vector one followed by a DUP shuffle on the result.
9064 static SDValue performSelectCombine(SDNode *N,
9065                                     TargetLowering::DAGCombinerInfo &DCI) {
9066   SelectionDAG &DAG = DCI.DAG;
9067   SDValue N0 = N->getOperand(0);
9068   EVT ResVT = N->getValueType(0);
9069
9070   if (N0.getOpcode() != ISD::SETCC)
9071     return SDValue();
9072
9073   // Make sure the SETCC result is either i1 (initial DAG), or i32, the lowered
9074   // scalar SetCCResultType. We also don't expect vectors, because we assume
9075   // that selects fed by vector SETCCs are canonicalized to VSELECT.
9076   assert((N0.getValueType() == MVT::i1 || N0.getValueType() == MVT::i32) &&
9077          "Scalar-SETCC feeding SELECT has unexpected result type!");
9078
9079   // If NumMaskElts == 0, the comparison is larger than select result. The
9080   // largest real NEON comparison is 64-bits per lane, which means the result is
9081   // at most 32-bits and an illegal vector. Just bail out for now.
9082   EVT SrcVT = N0.getOperand(0).getValueType();
9083
9084   // Don't try to do this optimization when the setcc itself has i1 operands.
9085   // There are no legal vectors of i1, so this would be pointless.
9086   if (SrcVT == MVT::i1)
9087     return SDValue();
9088
9089   int NumMaskElts = ResVT.getSizeInBits() / SrcVT.getSizeInBits();
9090   if (!ResVT.isVector() || NumMaskElts == 0)
9091     return SDValue();
9092
9093   SrcVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumMaskElts);
9094   EVT CCVT = SrcVT.changeVectorElementTypeToInteger();
9095
9096   // Also bail out if the vector CCVT isn't the same size as ResVT.
9097   // This can happen if the SETCC operand size doesn't divide the ResVT size
9098   // (e.g., f64 vs v3f32).
9099   if (CCVT.getSizeInBits() != ResVT.getSizeInBits())
9100     return SDValue();
9101
9102   // Make sure we didn't create illegal types, if we're not supposed to.
9103   assert(DCI.isBeforeLegalize() ||
9104          DAG.getTargetLoweringInfo().isTypeLegal(SrcVT));
9105
9106   // First perform a vector comparison, where lane 0 is the one we're interested
9107   // in.
9108   SDLoc DL(N0);
9109   SDValue LHS =
9110       DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, SrcVT, N0.getOperand(0));
9111   SDValue RHS =
9112       DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, SrcVT, N0.getOperand(1));
9113   SDValue SetCC = DAG.getNode(ISD::SETCC, DL, CCVT, LHS, RHS, N0.getOperand(2));
9114
9115   // Now duplicate the comparison mask we want across all other lanes.
9116   SmallVector<int, 8> DUPMask(CCVT.getVectorNumElements(), 0);
9117   SDValue Mask = DAG.getVectorShuffle(CCVT, DL, SetCC, SetCC, DUPMask.data());
9118   Mask = DAG.getNode(ISD::BITCAST, DL,
9119                      ResVT.changeVectorElementTypeToInteger(), Mask);
9120
9121   return DAG.getSelect(DL, ResVT, Mask, N->getOperand(1), N->getOperand(2));
9122 }
9123
9124 /// Get rid of unnecessary NVCASTs (that don't change the type).
9125 static SDValue performNVCASTCombine(SDNode *N) {
9126   if (N->getValueType(0) == N->getOperand(0).getValueType())
9127     return N->getOperand(0);
9128
9129   return SDValue();
9130 }
9131
9132 SDValue AArch64TargetLowering::PerformDAGCombine(SDNode *N,
9133                                                  DAGCombinerInfo &DCI) const {
9134   SelectionDAG &DAG = DCI.DAG;
9135   switch (N->getOpcode()) {
9136   default:
9137     break;
9138   case ISD::ADD:
9139   case ISD::SUB:
9140     return performAddSubLongCombine(N, DCI, DAG);
9141   case ISD::XOR:
9142     return performXorCombine(N, DAG, DCI, Subtarget);
9143   case ISD::MUL:
9144     return performMulCombine(N, DAG, DCI, Subtarget);
9145   case ISD::SINT_TO_FP:
9146   case ISD::UINT_TO_FP:
9147     return performIntToFpCombine(N, DAG, Subtarget);
9148   case ISD::OR:
9149     return performORCombine(N, DCI, Subtarget);
9150   case ISD::INTRINSIC_WO_CHAIN:
9151     return performIntrinsicCombine(N, DCI, Subtarget);
9152   case ISD::ANY_EXTEND:
9153   case ISD::ZERO_EXTEND:
9154   case ISD::SIGN_EXTEND:
9155     return performExtendCombine(N, DCI, DAG);
9156   case ISD::BITCAST:
9157     return performBitcastCombine(N, DCI, DAG);
9158   case ISD::CONCAT_VECTORS:
9159     return performConcatVectorsCombine(N, DCI, DAG);
9160   case ISD::SELECT:
9161     return performSelectCombine(N, DCI);
9162   case ISD::VSELECT:
9163     return performVSelectCombine(N, DCI.DAG);
9164   case ISD::STORE:
9165     return performSTORECombine(N, DCI, DAG, Subtarget);
9166   case AArch64ISD::BRCOND:
9167     return performBRCONDCombine(N, DCI, DAG);
9168   case AArch64ISD::CSEL:
9169     return performCONDCombine(N, DCI, DAG, 2, 3);
9170   case AArch64ISD::DUP:
9171     return performPostLD1Combine(N, DCI, false);
9172   case AArch64ISD::NVCAST:
9173     return performNVCASTCombine(N);
9174   case ISD::INSERT_VECTOR_ELT:
9175     return performPostLD1Combine(N, DCI, true);
9176   case ISD::INTRINSIC_VOID:
9177   case ISD::INTRINSIC_W_CHAIN:
9178     switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) {
9179     case Intrinsic::aarch64_neon_ld2:
9180     case Intrinsic::aarch64_neon_ld3:
9181     case Intrinsic::aarch64_neon_ld4:
9182     case Intrinsic::aarch64_neon_ld1x2:
9183     case Intrinsic::aarch64_neon_ld1x3:
9184     case Intrinsic::aarch64_neon_ld1x4:
9185     case Intrinsic::aarch64_neon_ld2lane:
9186     case Intrinsic::aarch64_neon_ld3lane:
9187     case Intrinsic::aarch64_neon_ld4lane:
9188     case Intrinsic::aarch64_neon_ld2r:
9189     case Intrinsic::aarch64_neon_ld3r:
9190     case Intrinsic::aarch64_neon_ld4r:
9191     case Intrinsic::aarch64_neon_st2:
9192     case Intrinsic::aarch64_neon_st3:
9193     case Intrinsic::aarch64_neon_st4:
9194     case Intrinsic::aarch64_neon_st1x2:
9195     case Intrinsic::aarch64_neon_st1x3:
9196     case Intrinsic::aarch64_neon_st1x4:
9197     case Intrinsic::aarch64_neon_st2lane:
9198     case Intrinsic::aarch64_neon_st3lane:
9199     case Intrinsic::aarch64_neon_st4lane:
9200       return performNEONPostLDSTCombine(N, DCI, DAG);
9201     default:
9202       break;
9203     }
9204   }
9205   return SDValue();
9206 }
9207
9208 // Check if the return value is used as only a return value, as otherwise
9209 // we can't perform a tail-call. In particular, we need to check for
9210 // target ISD nodes that are returns and any other "odd" constructs
9211 // that the generic analysis code won't necessarily catch.
9212 bool AArch64TargetLowering::isUsedByReturnOnly(SDNode *N,
9213                                                SDValue &Chain) const {
9214   if (N->getNumValues() != 1)
9215     return false;
9216   if (!N->hasNUsesOfValue(1, 0))
9217     return false;
9218
9219   SDValue TCChain = Chain;
9220   SDNode *Copy = *N->use_begin();
9221   if (Copy->getOpcode() == ISD::CopyToReg) {
9222     // If the copy has a glue operand, we conservatively assume it isn't safe to
9223     // perform a tail call.
9224     if (Copy->getOperand(Copy->getNumOperands() - 1).getValueType() ==
9225         MVT::Glue)
9226       return false;
9227     TCChain = Copy->getOperand(0);
9228   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
9229     return false;
9230
9231   bool HasRet = false;
9232   for (SDNode *Node : Copy->uses()) {
9233     if (Node->getOpcode() != AArch64ISD::RET_FLAG)
9234       return false;
9235     HasRet = true;
9236   }
9237
9238   if (!HasRet)
9239     return false;
9240
9241   Chain = TCChain;
9242   return true;
9243 }
9244
9245 // Return whether the an instruction can potentially be optimized to a tail
9246 // call. This will cause the optimizers to attempt to move, or duplicate,
9247 // return instructions to help enable tail call optimizations for this
9248 // instruction.
9249 bool AArch64TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
9250   if (!CI->isTailCall())
9251     return false;
9252
9253   return true;
9254 }
9255
9256 bool AArch64TargetLowering::getIndexedAddressParts(SDNode *Op, SDValue &Base,
9257                                                    SDValue &Offset,
9258                                                    ISD::MemIndexedMode &AM,
9259                                                    bool &IsInc,
9260                                                    SelectionDAG &DAG) const {
9261   if (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB)
9262     return false;
9263
9264   Base = Op->getOperand(0);
9265   // All of the indexed addressing mode instructions take a signed
9266   // 9 bit immediate offset.
9267   if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Op->getOperand(1))) {
9268     int64_t RHSC = (int64_t)RHS->getZExtValue();
9269     if (RHSC >= 256 || RHSC <= -256)
9270       return false;
9271     IsInc = (Op->getOpcode() == ISD::ADD);
9272     Offset = Op->getOperand(1);
9273     return true;
9274   }
9275   return false;
9276 }
9277
9278 bool AArch64TargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base,
9279                                                       SDValue &Offset,
9280                                                       ISD::MemIndexedMode &AM,
9281                                                       SelectionDAG &DAG) const {
9282   EVT VT;
9283   SDValue Ptr;
9284   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
9285     VT = LD->getMemoryVT();
9286     Ptr = LD->getBasePtr();
9287   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
9288     VT = ST->getMemoryVT();
9289     Ptr = ST->getBasePtr();
9290   } else
9291     return false;
9292
9293   bool IsInc;
9294   if (!getIndexedAddressParts(Ptr.getNode(), Base, Offset, AM, IsInc, DAG))
9295     return false;
9296   AM = IsInc ? ISD::PRE_INC : ISD::PRE_DEC;
9297   return true;
9298 }
9299
9300 bool AArch64TargetLowering::getPostIndexedAddressParts(
9301     SDNode *N, SDNode *Op, SDValue &Base, SDValue &Offset,
9302     ISD::MemIndexedMode &AM, SelectionDAG &DAG) const {
9303   EVT VT;
9304   SDValue Ptr;
9305   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
9306     VT = LD->getMemoryVT();
9307     Ptr = LD->getBasePtr();
9308   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
9309     VT = ST->getMemoryVT();
9310     Ptr = ST->getBasePtr();
9311   } else
9312     return false;
9313
9314   bool IsInc;
9315   if (!getIndexedAddressParts(Op, Base, Offset, AM, IsInc, DAG))
9316     return false;
9317   // Post-indexing updates the base, so it's not a valid transform
9318   // if that's not the same as the load's pointer.
9319   if (Ptr != Base)
9320     return false;
9321   AM = IsInc ? ISD::POST_INC : ISD::POST_DEC;
9322   return true;
9323 }
9324
9325 static void ReplaceBITCASTResults(SDNode *N, SmallVectorImpl<SDValue> &Results,
9326                                   SelectionDAG &DAG) {
9327   SDLoc DL(N);
9328   SDValue Op = N->getOperand(0);
9329
9330   if (N->getValueType(0) != MVT::i16 || Op.getValueType() != MVT::f16)
9331     return;
9332
9333   Op = SDValue(
9334       DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, DL, MVT::f32,
9335                          DAG.getUNDEF(MVT::i32), Op,
9336                          DAG.getTargetConstant(AArch64::hsub, DL, MVT::i32)),
9337       0);
9338   Op = DAG.getNode(ISD::BITCAST, DL, MVT::i32, Op);
9339   Results.push_back(DAG.getNode(ISD::TRUNCATE, DL, MVT::i16, Op));
9340 }
9341
9342 void AArch64TargetLowering::ReplaceNodeResults(
9343     SDNode *N, SmallVectorImpl<SDValue> &Results, SelectionDAG &DAG) const {
9344   switch (N->getOpcode()) {
9345   default:
9346     llvm_unreachable("Don't know how to custom expand this");
9347   case ISD::BITCAST:
9348     ReplaceBITCASTResults(N, Results, DAG);
9349     return;
9350   case ISD::FP_TO_UINT:
9351   case ISD::FP_TO_SINT:
9352     assert(N->getValueType(0) == MVT::i128 && "unexpected illegal conversion");
9353     // Let normal code take care of it by not adding anything to Results.
9354     return;
9355   }
9356 }
9357
9358 bool AArch64TargetLowering::useLoadStackGuardNode() const {
9359   return true;
9360 }
9361
9362 unsigned AArch64TargetLowering::combineRepeatedFPDivisors() const {
9363   // Combine multiple FDIVs with the same divisor into multiple FMULs by the
9364   // reciprocal if there are three or more FDIVs.
9365   return 3;
9366 }
9367
9368 TargetLoweringBase::LegalizeTypeAction
9369 AArch64TargetLowering::getPreferredVectorAction(EVT VT) const {
9370   MVT SVT = VT.getSimpleVT();
9371   // During type legalization, we prefer to widen v1i8, v1i16, v1i32  to v8i8,
9372   // v4i16, v2i32 instead of to promote.
9373   if (SVT == MVT::v1i8 || SVT == MVT::v1i16 || SVT == MVT::v1i32
9374       || SVT == MVT::v1f32)
9375     return TypeWidenVector;
9376
9377   return TargetLoweringBase::getPreferredVectorAction(VT);
9378 }
9379
9380 // Loads and stores less than 128-bits are already atomic; ones above that
9381 // are doomed anyway, so defer to the default libcall and blame the OS when
9382 // things go wrong.
9383 bool AArch64TargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const {
9384   unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits();
9385   return Size == 128;
9386 }
9387
9388 // Loads and stores less than 128-bits are already atomic; ones above that
9389 // are doomed anyway, so defer to the default libcall and blame the OS when
9390 // things go wrong.
9391 bool AArch64TargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const {
9392   unsigned Size = LI->getType()->getPrimitiveSizeInBits();
9393   return Size == 128;
9394 }
9395
9396 // For the real atomic operations, we have ldxr/stxr up to 128 bits,
9397 TargetLoweringBase::AtomicRMWExpansionKind
9398 AArch64TargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
9399   unsigned Size = AI->getType()->getPrimitiveSizeInBits();
9400   return Size <= 128 ? AtomicRMWExpansionKind::LLSC
9401                      : AtomicRMWExpansionKind::None;
9402 }
9403
9404 bool AArch64TargetLowering::hasLoadLinkedStoreConditional() const {
9405   return true;
9406 }
9407
9408 Value *AArch64TargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr,
9409                                              AtomicOrdering Ord) const {
9410   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
9411   Type *ValTy = cast<PointerType>(Addr->getType())->getElementType();
9412   bool IsAcquire = isAtLeastAcquire(Ord);
9413
9414   // Since i128 isn't legal and intrinsics don't get type-lowered, the ldrexd
9415   // intrinsic must return {i64, i64} and we have to recombine them into a
9416   // single i128 here.
9417   if (ValTy->getPrimitiveSizeInBits() == 128) {
9418     Intrinsic::ID Int =
9419         IsAcquire ? Intrinsic::aarch64_ldaxp : Intrinsic::aarch64_ldxp;
9420     Function *Ldxr = llvm::Intrinsic::getDeclaration(M, Int);
9421
9422     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
9423     Value *LoHi = Builder.CreateCall(Ldxr, Addr, "lohi");
9424
9425     Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo");
9426     Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi");
9427     Lo = Builder.CreateZExt(Lo, ValTy, "lo64");
9428     Hi = Builder.CreateZExt(Hi, ValTy, "hi64");
9429     return Builder.CreateOr(
9430         Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 64)), "val64");
9431   }
9432
9433   Type *Tys[] = { Addr->getType() };
9434   Intrinsic::ID Int =
9435       IsAcquire ? Intrinsic::aarch64_ldaxr : Intrinsic::aarch64_ldxr;
9436   Function *Ldxr = llvm::Intrinsic::getDeclaration(M, Int, Tys);
9437
9438   return Builder.CreateTruncOrBitCast(
9439       Builder.CreateCall(Ldxr, Addr),
9440       cast<PointerType>(Addr->getType())->getElementType());
9441 }
9442
9443 Value *AArch64TargetLowering::emitStoreConditional(IRBuilder<> &Builder,
9444                                                    Value *Val, Value *Addr,
9445                                                    AtomicOrdering Ord) const {
9446   Module *M = Builder.GetInsertBlock()->getParent()->getParent();
9447   bool IsRelease = isAtLeastRelease(Ord);
9448
9449   // Since the intrinsics must have legal type, the i128 intrinsics take two
9450   // parameters: "i64, i64". We must marshal Val into the appropriate form
9451   // before the call.
9452   if (Val->getType()->getPrimitiveSizeInBits() == 128) {
9453     Intrinsic::ID Int =
9454         IsRelease ? Intrinsic::aarch64_stlxp : Intrinsic::aarch64_stxp;
9455     Function *Stxr = Intrinsic::getDeclaration(M, Int);
9456     Type *Int64Ty = Type::getInt64Ty(M->getContext());
9457
9458     Value *Lo = Builder.CreateTrunc(Val, Int64Ty, "lo");
9459     Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 64), Int64Ty, "hi");
9460     Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext()));
9461     return Builder.CreateCall(Stxr, {Lo, Hi, Addr});
9462   }
9463
9464   Intrinsic::ID Int =
9465       IsRelease ? Intrinsic::aarch64_stlxr : Intrinsic::aarch64_stxr;
9466   Type *Tys[] = { Addr->getType() };
9467   Function *Stxr = Intrinsic::getDeclaration(M, Int, Tys);
9468
9469   return Builder.CreateCall(Stxr,
9470                             {Builder.CreateZExtOrBitCast(
9471                                  Val, Stxr->getFunctionType()->getParamType(0)),
9472                              Addr});
9473 }
9474
9475 bool AArch64TargetLowering::functionArgumentNeedsConsecutiveRegisters(
9476     Type *Ty, CallingConv::ID CallConv, bool isVarArg) const {
9477   return Ty->isArrayTy();
9478 }
9479
9480 bool AArch64TargetLowering::shouldNormalizeToSelectSequence(LLVMContext &,
9481                                                             EVT) const {
9482   return false;
9483 }